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-puzzle/pingus: pingus-0.7.2.ebuild ChangeLog
Date: Thu, 28 Aug 2008 14:10:36
Message-Id: E1KYiCn-00073f-Ma@stork.gentoo.org
1 mr_bones_ 08/08/28 14:10:33
2
3 Modified: pingus-0.7.2.ebuild ChangeLog
4 Log:
5 Patch from Diego Pettenò to enable parallel build (bug #235987)
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.7 games-puzzle/pingus/pingus-0.7.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/pingus/pingus-0.7.2.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/pingus/pingus-0.7.2.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/pingus/pingus-0.7.2.ebuild?r1=1.6&r2=1.7
14
15 Index: pingus-0.7.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/pingus/pingus-0.7.2.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- pingus-0.7.2.ebuild 26 Jun 2008 17:34:02 -0000 1.6
22 +++ pingus-0.7.2.ebuild 28 Aug 2008 14:10:33 -0000 1.7
23 @@ -1,6 +1,6 @@
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-puzzle/pingus/pingus-0.7.2.ebuild,v 1.6 2008/06/26 17:34:02 nixnut Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/pingus-0.7.2.ebuild,v 1.7 2008/08/28 14:10:33 mr_bones_ Exp $
28
29 inherit eutils toolchain-funcs games
30
31 @@ -35,12 +35,15 @@
32 }
33
34 src_compile() {
35 + local sconsopts=$(echo "${MAKEOPTS}" | sed -e "s/.*\(-j[0-9]\+\).*/\1/")
36 + [[ ${MAKEOPTS/-s/} != ${MAKEOPTS} ]] && sconsopts="${sconsopts} -s"
37 +
38 scons configure \
39 CXX="$(tc-getCXX)" \
40 CCFLAGS="${CXXFLAGS}" \
41 LINKFLAGS="${LDFLAGS}" \
42 || die "scons configure failed"
43 - scons || die "scons failed"
44 + scons ${sconsopts} || die "scons failed"
45 }
46
47 src_install() {
48
49
50
51 1.21 games-puzzle/pingus/ChangeLog
52
53 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/pingus/ChangeLog?rev=1.21&view=markup
54 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/pingus/ChangeLog?rev=1.21&content-type=text/plain
55 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/pingus/ChangeLog?r1=1.20&r2=1.21
56
57 Index: ChangeLog
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/pingus/ChangeLog,v
60 retrieving revision 1.20
61 retrieving revision 1.21
62 diff -u -r1.20 -r1.21
63 --- ChangeLog 26 Jun 2008 17:34:02 -0000 1.20
64 +++ ChangeLog 28 Aug 2008 14:10:33 -0000 1.21
65 @@ -1,6 +1,9 @@
66 # ChangeLog for games-puzzle/pingus
67 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
68 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/ChangeLog,v 1.20 2008/06/26 17:34:02 nixnut Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pingus/ChangeLog,v 1.21 2008/08/28 14:10:33 mr_bones_ Exp $
70 +
71 + 28 Aug 2008; Michael Sterrett <mr_bones_@g.o> pingus-0.7.2.ebuild:
72 + Patch from Diego Pettenò to enable parallel build (bug #235987)
73
74 26 Jun 2008; nixnut <nixnut@g.o> pingus-0.7.2.ebuild:
75 Stable on ppc wrt bug 229493