Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xdesktopwaves: xdesktopwaves-1.3-r1.ebuild ChangeLog
Date: Mon, 08 Feb 2010 19:16:58
Message-Id: E1NeZ6O-0003Nv-4k@stork.gentoo.org
1 jer 10/02/08 19:16:56
2
3 Modified: ChangeLog
4 Added: xdesktopwaves-1.3-r1.ebuild
5 Log:
6 Respect CC, LDFLAGS, CFLAGS (bug #241548).
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.14 x11-misc/xdesktopwaves/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdesktopwaves/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdesktopwaves/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdesktopwaves/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdesktopwaves/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 23 Mar 2008 22:41:42 -0000 1.13
23 +++ ChangeLog 8 Feb 2010 19:16:55 -0000 1.14
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/xdesktopwaves
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdesktopwaves/ChangeLog,v 1.13 2008/03/23 22:41:42 opfer Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdesktopwaves/ChangeLog,v 1.14 2010/02/08 19:16:55 jer Exp $
30 +
31 +*xdesktopwaves-1.3-r1 (08 Feb 2010)
32 +
33 + 08 Feb 2010; Jeroen Roovers <jer@g.o> +xdesktopwaves-1.3-r1.ebuild,
34 + +files/xdesktopwaves-1.3-gentoo.patch:
35 + Respect CC, LDFLAGS, CFLAGS (bug #241548).
36
37 23 Mar 2008; Christian Faulhammer <opfer@g.o>
38 xdesktopwaves-1.3.ebuild:
39
40
41
42 1.1 x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xdesktopwaves-1.3-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xdesktopwaves/xdesktopwaves-1.3-r1.ebuild,v 1.1 2010/02/08 19:16:55 jer Exp $
52
53 EAPI="2"
54
55 inherit eutils toolchain-funcs
56
57 DESCRIPTION="A cellular automata setting the background of your X Windows desktop under water"
58 HOMEPAGE="http://xdesktopwaves.sourceforge.net/"
59 LICENSE="GPL-2"
60 RDEPEND="x11-libs/libXext"
61 DEPEND="${RDEPEND}
62 x11-proto/xextproto"
63
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE=""
67
68 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${P}-gentoo.patch
72 }
73
74 src_compile() {
75 tc-export CC
76 emake || die "failed building program"
77 cd xdwapi
78 emake || die "failed building demo"
79 }
80
81 src_install() {
82 dobin xdesktopwaves xdwapi/xdwapidemo
83 doman xdesktopwaves.1
84 insinto /usr/share/pixmaps
85 doins xdesktopwaves.xpm
86 make_desktop_entry xdesktopwaves "xdesktopwaves" xdesktopwaves.xpm
87 dodoc README
88 }
89
90 pkg_preinst() {
91 elog "To see what xdesktopwaves is able to do, start it by running"
92 elog "'xdesktopwaves' and then run 'xdwapidemo'. You should see the"
93 elog "supported effects on your desktop"
94 }