Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xfractint: ChangeLog xfractint-20.04_p09.ebuild
Date: Wed, 15 Oct 2008 17:26:51
Message-Id: E1KqA90-00076B-Qx@stork.gentoo.org
1 spock 08/10/15 17:26:46
2
3 Modified: ChangeLog
4 Added: xfractint-20.04_p09.ebuild
5 Log:
6 Version bump. Fix the new ebuild so that it respects the user's CFLAGS (bug #241550).
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27 x86_64)
8
9 Revision Changes Path
10 1.53 x11-misc/xfractint/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfractint/ChangeLog?rev=1.53&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfractint/ChangeLog?rev=1.53&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfractint/ChangeLog?r1=1.52&r2=1.53
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xfractint/ChangeLog,v
19 retrieving revision 1.52
20 retrieving revision 1.53
21 diff -u -r1.52 -r1.53
22 --- ChangeLog 14 Sep 2008 11:45:32 -0000 1.52
23 +++ ChangeLog 15 Oct 2008 17:26:46 -0000 1.53
24 @@ -1,6 +1,13 @@
25 # ChangeLog for x11-misc/xfractint
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/ChangeLog,v 1.52 2008/09/14 11:45:32 bluebird Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/ChangeLog,v 1.53 2008/10/15 17:26:46 spock Exp $
29 +
30 +*xfractint-20.04_p09 (15 Oct 2008)
31 +
32 + 15 Oct 2008; MichaƂ Januszewski <spock@g.o>
33 + +xfractint-20.04_p09.ebuild:
34 + Version bump. Fix the new ebuild so that it respects the user's CFLAGS
35 + (bug #241550).
36
37 14 Sep 2008; Friedrich Oslage <bluebird@g.o>
38 xfractint-20.04_p07.ebuild:
39
40
41
42 1.1 x11-misc/xfractint/xfractint-20.04_p09.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfractint/xfractint-20.04_p09.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xfractint/xfractint-20.04_p09.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xfractint-20.04_p09.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xfractint/xfractint-20.04_p09.ebuild,v 1.1 2008/10/15 17:26:46 spock Exp $
52
53 inherit eutils toolchain-funcs
54
55 MY_P=${P/_}
56
57 DESCRIPTION="a fractal generator"
58 HOMEPAGE="http://www.fractint.org"
59 SRC_URI="http://www.fractint.org/ftp/current/linux/${MY_P}.tar.gz"
60
61 LICENSE="freedist"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE=""
65
66 RDEPEND="x11-libs/libX11"
67 DEPEND="${RDEPEND}"
68 # x86? ( dev-lang/nasm )"
69
70 S="${WORKDIR}/${MY_P}"
71
72 src_compile() {
73 # Untested, any x86 archteam dev. is allowed to uncomment this.
74 local myasm="foo"
75 # use x86 && myasm="/usr/bin/nasm"
76 emake CC="$(tc-getCC)" AS="${myasm}" OPT="${CFLAGS}" || die "emake failed."
77 }
78
79 src_install() {
80 emake DESTDIR="${D}/usr" STRIP="true" install || die "emake install failed."
81 newenvd "${FILESDIR}"/xfractint.envd 60xfractint
82 }
83
84 pkg_postinst() {
85 elog "XFractInt requires the FRACTDIR variable to be set in order to start."
86 elog "Please re-login or \`source /etc/profile\` to have this variable set."
87 }