Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-simulation/lincity-ng: ChangeLog lincity-ng-2.0.ebuild
Date: Sat, 30 May 2009 06:25:12
Message-Id: E1MAI0E-0000Yy-5x@stork.gentoo.org
1 mr_bones_ 09/05/30 06:25:10
2
3 Modified: ChangeLog lincity-ng-2.0.ebuild
4 Log:
5 only use the -j part of MAKEOPTS (bug #271826)
6 (Portage version: 2.1.6.11/cvs/Linux i686)
7
8 Revision Changes Path
9 1.18 games-simulation/lincity-ng/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/lincity-ng/ChangeLog?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/lincity-ng/ChangeLog?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/lincity-ng/ChangeLog?r1=1.17&r2=1.18
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/ChangeLog,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- ChangeLog 6 Apr 2009 20:53:22 -0000 1.17
22 +++ ChangeLog 30 May 2009 06:25:10 -0000 1.18
23 @@ -1,6 +1,10 @@
24 # ChangeLog for games-simulation/lincity-ng
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/ChangeLog,v 1.17 2009/04/06 20:53:22 maekke Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/ChangeLog,v 1.18 2009/05/30 06:25:10 mr_bones_ Exp $
28 +
29 + 30 May 2009; Michael Sterrett <mr_bones_@g.o>
30 + lincity-ng-2.0.ebuild:
31 + only use the -j part of MAKEOPTS (bug #271826)
32
33 06 Apr 2009; Markus Meier <maekke@g.o> lincity-ng-2.0.ebuild:
34 amd64/x86 stable, bug #264705
35
36
37
38 1.3 games-simulation/lincity-ng/lincity-ng-2.0.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild?r1=1.2&r2=1.3
43
44 Index: lincity-ng-2.0.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- lincity-ng-2.0.ebuild 6 Apr 2009 20:53:22 -0000 1.2
51 +++ lincity-ng-2.0.ebuild 30 May 2009 06:25:10 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild,v 1.2 2009/04/06 20:53:22 maekke Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/lincity-ng/lincity-ng-2.0.ebuild,v 1.3 2009/05/30 06:25:10 mr_bones_ Exp $
57
58 EAPI=2
59 inherit eutils games
60 @@ -28,7 +28,7 @@
61 dev-util/ftjam"
62
63 src_compile() {
64 - local jamopts=$(echo "${MAKEOPTS}" | sed -e "s/.*\(-j[0-9]\+\).*/\1/")
65 + local jamopts=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[0-9]\+\).*/\1/; p }")
66 jam ${jamopts} || die "jam failed"
67 }