public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-util/datutil: datutil-2.31.ebuild ChangeLog
@ 2008-10-29 11:51 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-10-29 11:51 UTC (permalink / raw
  To: gentoo-commits

flameeyes    08/10/29 11:51:12

  Modified:             datutil-2.31.ebuild ChangeLog
  Log:
  Force -j1 during install, see bug #244879. Fail on emake failure.
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo-r1 x86_64)

Revision  Changes    Path
1.3                  games-util/datutil/datutil-2.31.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?r1=1.2&r2=1.3

Index: datutil-2.31.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- datutil-2.31.ebuild	12 May 2007 17:57:28 -0000	1.2
+++ datutil-2.31.ebuild	29 Oct 2008 11:51:12 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.2 2007/05/12 17:57:28 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
 
 inherit toolchain-funcs
 
@@ -27,8 +27,9 @@
 }
 
 src_compile() {
-	emake CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
-	CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@#
+	# Parallel make issue, see bug #244879
+	emake -j1 CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
+	CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@# || die "emake failed"
 }
 
 src_install() {



1.3                  games-util/datutil/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?r1=1.2&r2=1.3

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	12 May 2007 17:57:28 -0000	1.2
+++ ChangeLog	29 Oct 2008 11:51:12 -0000	1.3
@@ -1,6 +1,9 @@
 # ChangeLog for games-util/datutil
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.2 2007/05/12 17:57:28 drizzt Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
+
+  29 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> datutil-2.31.ebuild:
+  Force -j1 during install, see bug #244879. Fail on emake failure.
 
   12 May 2007; Timothy Redaelli <drizzt@gentoo.org> datutil-2.31.ebuild:
   Add ~amd64 keyword.






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-util/datutil: datutil-2.31.ebuild ChangeLog
@ 2008-10-30  8:21 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2008-10-30  8:21 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    08/10/30 08:21:26

  Modified:             datutil-2.31.ebuild ChangeLog
  Log:
  clean up silly mess
  (Portage version: 2.1.4.5)

Revision  Changes    Path
1.4                  games-util/datutil/datutil-2.31.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/datutil-2.31.ebuild?r1=1.3&r2=1.4

Index: datutil-2.31.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- datutil-2.31.ebuild	29 Oct 2008 11:51:12 -0000	1.3
+++ datutil-2.31.ebuild	30 Oct 2008 08:21:26 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/datutil-2.31.ebuild,v 1.4 2008/10/30 08:21:26 mr_bones_ Exp $
 
 inherit toolchain-funcs
 
@@ -22,13 +22,17 @@
 
 src_unpack() {
 	unpack dutil${PV//.}.zip
-	mkdir -p "${S}"/dev/datlib && cd "${S}"/dev/datlib
+	cd "${S}"
+	mkdir -p dev/datlib
+	cd dev/datlib
 	unpack datlib${DL_PV//.}.zip
 }
 
 src_compile() {
-	# Parallel make issue, see bug #244879
-	emake -j1 CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
+	# Parallel make issue, see bug #244879 (so make the dirs first)
+	emake CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
+	CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@# dlmaketree maketree || die "emake failed"
+	emake CC="$(tc-getCC)" LD="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
 	CFLAGS="${CFLAGS} -Idev" LOGIQX=. EXT= UPX=@# || die "emake failed"
 }
 



1.4                  games-util/datutil/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-util/datutil/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	29 Oct 2008 11:51:12 -0000	1.3
+++ ChangeLog	30 Oct 2008 08:21:26 -0000	1.4
@@ -1,6 +1,9 @@
 # ChangeLog for games-util/datutil
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.3 2008/10/29 11:51:12 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/datutil/ChangeLog,v 1.4 2008/10/30 08:21:26 mr_bones_ Exp $
+
+  30 Oct 2008; Michael Sterrett <mr_bones_@gentoo.org> datutil-2.31.ebuild:
+  clean up silly mess
 
   29 Oct 2008; Diego Pettenò <flameeyes@gentoo.org> datutil-2.31.ebuild:
   Force -j1 during install, see bug #244879. Fail on emake failure.






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-10-30  8:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-30  8:21 [gentoo-commits] gentoo-x86 commit in games-util/datutil: datutil-2.31.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-29 11:51 Diego Petteno (flameeyes)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox