Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-strategy/xconq: ChangeLog xconq-7.4.1.ebuild
Date: Thu, 07 Oct 2010 10:02:44
Message-Id: 20101007090655.8590B20051@flycatcher.gentoo.org
1 tupone 10/10/07 09:06:55
2
3 Modified: ChangeLog xconq-7.4.1.ebuild
4 Log:
5 Respect LDFLAGS. Bug #339871
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.16 games-strategy/xconq/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/xconq/ChangeLog?rev=1.16&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/xconq/ChangeLog?rev=1.16&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/xconq/ChangeLog?r1=1.15&r2=1.16
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-strategy/xconq/ChangeLog,v
18 retrieving revision 1.15
19 retrieving revision 1.16
20 diff -u -r1.15 -r1.16
21 --- ChangeLog 25 Sep 2010 12:12:28 -0000 1.15
22 +++ ChangeLog 7 Oct 2010 09:06:55 -0000 1.16
23 @@ -1,6 +1,9 @@
24 # ChangeLog for games-strategy/xconq
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/xconq/ChangeLog,v 1.15 2010/09/25 12:12:28 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/xconq/ChangeLog,v 1.16 2010/10/07 09:06:55 tupone Exp $
28 +
29 + 07 Oct 2010; Alfredo Tupone <tupone@g.o> xconq-7.4.1.ebuild:
30 + Respect LDFLAGS. Bug #339871 by flameeyes@g.o
31
32 25 Sep 2010; Samuli Suominen <ssuominen@g.o> xconq-7.4.1.ebuild,
33 +files/xconq-make-382.patch:
34
35
36
37 1.15 games-strategy/xconq/xconq-7.4.1.ebuild
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild?rev=1.15&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild?rev=1.15&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild?r1=1.14&r2=1.15
42
43 Index: xconq-7.4.1.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild,v
46 retrieving revision 1.14
47 retrieving revision 1.15
48 diff -u -r1.14 -r1.15
49 --- xconq-7.4.1.ebuild 25 Sep 2010 12:12:28 -0000 1.14
50 +++ xconq-7.4.1.ebuild 7 Oct 2010 09:06:55 -0000 1.15
51 @@ -1,6 +1,7 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild,v 1.14 2010/09/25 12:12:28 ssuominen Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/xconq/xconq-7.4.1.ebuild,v 1.15 2010/10/07 09:06:55 tupone Exp $
56 +EAPI="2"
57
58 inherit eutils games
59
60 @@ -19,21 +20,21 @@
61 dev-lang/tk
62 dev-lang/tcl"
63
64 -src_unpack() {
65 - unpack ${A}
66 - cd "${S}"
67 - epatch \
68 - "${FILESDIR}"/${PN}-gcc-3.4.patch \
69 - "${FILESDIR}"/${PN}-tkconq.patch \
70 - "${FILESDIR}"/${PN}-make-382.patch
71 -}
72 +PATCHES=( "${FILESDIR}"/${PN}-gcc-3.4.patch
73 + "${FILESDIR}"/${PN}-tkconq.patch
74 + "${FILESDIR}"/${PN}-make-382.patch
75 + )
76
77 -src_compile() {
78 +src_configure() {
79 egamesconf \
80 --enable-alternate-scoresdir="${GAMES_STATEDIR}"/${PN} \
81 || die
82 +}
83 +
84 +src_compile() {
85 emake \
86 CFLAGS="${CFLAGS}" \
87 + LDFLAGS="${LDFLAGS}" \
88 datadir="${GAMES_DATADIR}"/${PN} \
89 || die "emake failed"
90 }