Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xfishtank: ChangeLog xfishtank-2.1-r1.ebuild
Date: Fri, 03 Sep 2010 07:47:51
Message-Id: 20100903074738.DC9A720051@flycatcher.gentoo.org
1 xarthisius 10/09/03 07:47:38
2
3 Modified: ChangeLog
4 Added: xfishtank-2.1-r1.ebuild
5 Log:
6 Respect CC,CFLAGS,LDFLAGS wrt bug 334969. Thanks to Diego for the report. Fix implicit funcions declarations. Fix SIGSEGV on amd64. Keyword ~amd64
7
8 (Portage version: 2.2_rc73/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.15 x11-misc/xfishtank/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfishtank/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfishtank/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfishtank/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfishtank/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 4 May 2009 09:16:05 -0000 1.14
24 +++ ChangeLog 3 Sep 2010 07:47:38 -0000 1.15
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-misc/xfishtank
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfishtank/ChangeLog,v 1.14 2009/05/04 09:16:05 nelchael Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfishtank/ChangeLog,v 1.15 2010/09/03 07:47:38 xarthisius Exp $
31 +
32 +*xfishtank-2.1-r1 (03 Sep 2010)
33 +
34 + 03 Sep 2010; Kacper Kowalik <xarthisius@g.o>
35 + +xfishtank-2.1-r1.ebuild, +files/xfishtank-2.1-implicits.patch:
36 + Respect CC,CFLAGS,LDFLAGS wrt bug 334969. Thanks to Diego for the report.
37 + Fix implicit funcions declarations. Fix SIGSEGV on amd64. Keyword ~amd64
38
39 04 May 2009; Krzysiek Pawlik <nelchael@g.o> xfishtank-2.1.ebuild:
40 Do not strip binaries during install.
41
42
43
44 1.1 x11-misc/xfishtank/xfishtank-2.1-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfishtank/xfishtank-2.1-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xfishtank/xfishtank-2.1-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: xfishtank-2.1-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xfishtank/xfishtank-2.1-r1.ebuild,v 1.1 2010/09/03 07:47:38 xarthisius Exp $
54
55 EAPI=2
56
57 inherit eutils toolchain-funcs
58
59 MY_P=${P}tp
60
61 DESCRIPTION="Turns your root window into an aquarium."
62 HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/demos/"
63 SRC_URI="http://www.ibiblio.org/pub/Linux/X11/demos/${MY_P}.tar.gz"
64
65 LICENSE="public-domain"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
68 IUSE=""
69
70 RDEPEND="x11-libs/libX11
71 x11-libs/libXt
72 x11-libs/libXext"
73 DEPEND="${RDEPEND}
74 x11-proto/xproto
75 x11-misc/imake"
76
77 S=${WORKDIR}/${MY_P}
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${P}-implicits.patch
81 }
82
83 src_compile() {
84 xmkmf || die
85 emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" \
86 EXTRA_LDOPTIONS="${LDFLAGS}" ${PN} || die
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die
91 dodoc README README.Linux README.TrueColor README.Why.2.1tp || die
92 }