Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-util/datutil: datutil-2.31.ebuild ChangeLog
Date: Wed, 29 Oct 2008 11:51:14
Message-Id: E1Kv9Zw-0007ty-67@stork.gentoo.org
1 flameeyes 08/10/29 11:51:12
2
3 Modified: datutil-2.31.ebuild ChangeLog
4 Log:
5 Force -j1 during install, see bug #244879. Fail on emake failure.
6 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)
7
8 Revision Changes Path
9 1.3 games-util/datutil/datutil-2.31.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?r1=1.2&r2=1.3
14
15 Index: datutil-2.31.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- datutil-2.31.ebuild 12 May 2007 17:57:28 -0000 1.2
22 +++ datutil-2.31.ebuild 29 Oct 2008 11:51:12 -0000 1.3
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.2 2007/05/12 17:57:28 drizzt Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
29
30 inherit toolchain-funcs
31
32 @@ -27,8 +27,9 @@
33 }
34
35 src_compile() {
36 - emake CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
37 - CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@#
38 + # Parallel make issue, see bug #244879
39 + emake -j1 CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
40 + CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@# || die "emake failed"
41 }
42
43 src_install() {
44
45
46
47 1.3 games-util/datutil/ChangeLog
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.3&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.3&content-type=text/plain
51 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?r1=1.2&r2=1.3
52
53 Index: ChangeLog
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v
56 retrieving revision 1.2
57 retrieving revision 1.3
58 diff -u -r1.2 -r1.3
59 --- ChangeLog 12 May 2007 17:57:28 -0000 1.2
60 +++ ChangeLog 29 Oct 2008 11:51:12 -0000 1.3
61 @@ -1,6 +1,9 @@
62 # ChangeLog for games-util/datutil
63 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
64 -# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.2 2007/05/12 17:57:28 drizzt Exp $
65 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
66 +# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
67 +
68 + 29 Oct 2008; Diego Pettenò <flameeyes@g.o> datutil-2.31.ebuild:
69 + Force -j1 during install, see bug #244879. Fail on emake failure.
70
71 12 May 2007; Timothy Redaelli <drizzt@g.o> datutil-2.31.ebuild:
72 Add ~amd64 keyword.