Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-board/phalanx: phalanx-22.ebuild ChangeLog
Date: Fri, 05 Dec 2008 18:37:52
Message-Id: E1L8fYk-0002nw-AT@stork.gentoo.org
1 nyhm 08/12/05 18:37:50
2
3 Modified: phalanx-22.ebuild ChangeLog
4 Log:
5 Respect CC and LDFLAGS, bug #244068
6 (Portage version: 2.2_rc17/cvs/Linux 2.6.27.7 i686)
7
8 Revision Changes Path
9 1.5 games-board/phalanx/phalanx-22.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/phalanx/phalanx-22.ebuild?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/phalanx/phalanx-22.ebuild?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/phalanx/phalanx-22.ebuild?r1=1.4&r2=1.5
14
15 Index: phalanx-22.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-board/phalanx/phalanx-22.ebuild,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- phalanx-22.ebuild 24 Jul 2008 18:05:48 -0000 1.4
22 +++ phalanx-22.ebuild 5 Dec 2008 18:37:50 -0000 1.5
23 @@ -1,8 +1,8 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-board/phalanx/phalanx-22.ebuild,v 1.4 2008/07/24 18:05:48 ken69267 Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-board/phalanx/phalanx-22.ebuild,v 1.5 2008/12/05 18:37:50 nyhm Exp $
28
29 -inherit games
30 +inherit toolchain-funcs games
31
32 MY_PN="Phalanx"
33 MY_PV="XXII"
34 @@ -22,11 +22,16 @@
35 src_compile() {
36 # configure is not used in the project; confs are in Makefile,
37 # and here we override them:
38 - local define="-DGNUFUN"
39 + local define="-DGNUFUN" myvar
40 for myvar in "PBOOK" "SBOOK" "LEARN" ; do
41 define="${define} -D${myvar}_DIR=\"\\\"${GAMES_DATADIR}/${PN}\\\"\""
42 done
43 - emake DEFINES="${define}" CFLAGS="${CFLAGS}" || die "emake failed"
44 + emake \
45 + DEFINES="${define}" \
46 + CC="$(tc-getCC)" \
47 + CFLAGS="${CFLAGS}" \
48 + LDFLAGS="${LDFLAGS}" \
49 + || die "emake failed"
50 }
51
52 src_install() {
53
54
55
56 1.5 games-board/phalanx/ChangeLog
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/phalanx/ChangeLog?rev=1.5&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/phalanx/ChangeLog?rev=1.5&content-type=text/plain
60 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-board/phalanx/ChangeLog?r1=1.4&r2=1.5
61
62 Index: ChangeLog
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/games-board/phalanx/ChangeLog,v
65 retrieving revision 1.4
66 retrieving revision 1.5
67 diff -u -r1.4 -r1.5
68 --- ChangeLog 24 Jul 2008 18:05:48 -0000 1.4
69 +++ ChangeLog 5 Dec 2008 18:37:50 -0000 1.5
70 @@ -1,6 +1,9 @@
71 # ChangeLog for games-board/phalanx
72 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
73 -# $Header: /var/cvsroot/gentoo-x86/games-board/phalanx/ChangeLog,v 1.4 2008/07/24 18:05:48 ken69267 Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/games-board/phalanx/ChangeLog,v 1.5 2008/12/05 18:37:50 nyhm Exp $
75 +
76 + 05 Dec 2008; Tristan Heaven <nyhm@g.o> phalanx-22.ebuild:
77 + Respect CC and LDFLAGS, bug #244068
78
79 24 Jul 2008; Kenneth Prugh <ken69267@g.o> phalanx-22.ebuild:
80 amd64 stable, bug #232705