Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdesktopwaves/
Date: Mon, 06 Feb 2017 22:48:39
Message-Id: 1486421219.21a6ee18b9bd70f4f008604f1fcac95c15746cbf.soap@gentoo
1 commit: 21a6ee18b9bd70f4f008604f1fcac95c15746cbf
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 6 17:50:34 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 22:46:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a6ee18
7
8 x11-misc/xdesktopwaves: EAPI bump 2 -> 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3853
12
13 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild | 42 ++++++++++++++++++++++
14 1 file changed, 42 insertions(+)
15
16 diff --git a/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
17 new file mode 100644
18 index 00000000..c4a5b06
19 --- /dev/null
20 +++ b/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r2.ebuild
21 @@ -0,0 +1,42 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=6
27 +
28 +inherit eutils toolchain-funcs
29 +
30 +DESCRIPTION="A cellular automata setting the background of your X Windows desktop under water"
31 +HOMEPAGE="http://xdesktopwaves.sourceforge.net/"
32 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
33 +LICENSE="GPL-2"
34 +
35 +SLOT="0"
36 +RDEPEND="x11-libs/libXext"
37 +DEPEND="${RDEPEND}
38 + x11-proto/xextproto"
39 +KEYWORDS="~amd64 ~ppc ~x86"
40 +IUSE=""
41 +
42 +PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
43 +
44 +src_compile() {
45 + tc-export CC
46 + emake
47 + emake -C xdwapi
48 +}
49 +
50 +src_install() {
51 + dobin xdesktopwaves xdwapi/xdwapidemo
52 + doman xdesktopwaves.1
53 + insinto /usr/share/pixmaps
54 + doins xdesktopwaves.xpm
55 + make_desktop_entry xdesktopwaves
56 + einstalldocs
57 +}
58 +
59 +pkg_preinst() {
60 + elog "To see what xdesktopwaves is able to do, start it by running"
61 + elog "'xdesktopwaves' and then run 'xdwapidemo'. You should see the"
62 + elog "supported effects on your desktop"
63 +}