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-util/datutil: datutil-2.31.ebuild ChangeLog
Date: Thu, 30 Oct 2008 08:21:29
Message-Id: E1KvSmU-00072b-CG@stork.gentoo.org
1 mr_bones_ 08/10/30 08:21:26
2
3 Modified: datutil-2.31.ebuild ChangeLog
4 Log:
5 clean up silly mess
6 (Portage version: 2.1.4.5)
7
8 Revision Changes Path
9 1.4 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.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?r1=1.3&r2=1.4
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.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- datutil-2.31.ebuild 29 Oct 2008 11:51:12 -0000 1.3
22 +++ datutil-2.31.ebuild 30 Oct 2008 08:21:26 -0000 1.4
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-util/datutil/datutil-2.31.ebuild,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.4 2008/10/30 08:21:26 mr_bones_ Exp $
28
29 inherit toolchain-funcs
30
31 @@ -22,13 +22,17 @@
32
33 src_unpack() {
34 unpack dutil${PV//.}.zip
35 - mkdir -p "${S}"/dev/datlib && cd "${S}"/dev/datlib
36 + cd "${S}"
37 + mkdir -p dev/datlib
38 + cd dev/datlib
39 unpack datlib${DL_PV//.}.zip
40 }
41
42 src_compile() {
43 - # Parallel make issue, see bug #244879
44 - emake -j1 CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
45 + # Parallel make issue, see bug #244879 (so make the dirs first)
46 + emake CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
47 + CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@# dlmaketree maketree || die "emake failed"
48 + emake CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
49 CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@# || die "emake failed"
50 }
51
52
53
54
55 1.4 games-util/datutil/ChangeLog
56
57 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.4&view=markup
58 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.4&content-type=text/plain
59 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?r1=1.3&r2=1.4
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v
64 retrieving revision 1.3
65 retrieving revision 1.4
66 diff -u -r1.3 -r1.4
67 --- ChangeLog 29 Oct 2008 11:51:12 -0000 1.3
68 +++ ChangeLog 30 Oct 2008 08:21:26 -0000 1.4
69 @@ -1,6 +1,9 @@
70 # ChangeLog for games-util/datutil
71 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
73 +# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.4 2008/10/30 08:21:26 mr_bones_ Exp $
74 +
75 + 30 Oct 2008; Michael Sterrett <mr_bones_@g.o> datutil-2.31.ebuild:
76 + clean up silly mess
77
78 29 Oct 2008; Diego Pettenò <flameeyes@g.o> datutil-2.31.ebuild:
79 Force -j1 during install, see bug #244879. Fail on emake failure.