diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-04 04:20:24 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-04 04:20:24 +0000 |
commit | e661ce25afad8cc5a6a024df8121a1845da4cd25 (patch) | |
tree | db796ddedf57a6775ef619e30cee39f70dad9868 /games-action | |
parent | Add sanity checks to keep from breaking the host system. (diff) | |
download | historical-e661ce25afad8cc5a6a024df8121a1845da4cd25.tar.gz historical-e661ce25afad8cc5a6a024df8121a1845da4cd25.tar.bz2 historical-e661ce25afad8cc5a6a024df8121a1845da4cd25.zip |
fix parallel build (bug #82536)
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/dungeon/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/dungeon/Manifest | 5 | ||||
-rw-r--r-- | games-action/dungeon/dungeon-3.2.3.ebuild | 35 | ||||
-rw-r--r-- | games-action/dungeon/files/dungeon-3.2.3-makefile.patch | 13 |
4 files changed, 38 insertions, 22 deletions
diff --git a/games-action/dungeon/ChangeLog b/games-action/dungeon/ChangeLog index 19280442cf2b..3026eca2267f 100644 --- a/games-action/dungeon/ChangeLog +++ b/games-action/dungeon/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/dungeon -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/dungeon/ChangeLog,v 1.6 2004/12/20 13:13:24 josejx Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/dungeon/ChangeLog,v 1.7 2005/03/04 04:20:24 mr_bones_ Exp $ + + 03 Mar 2005; Michael Sterrett <mr_bones_@gentoo.org> dungeon-3.2.3.ebuild: + fix parallel build (bug #82536) 20 Dec 2004; Joseph Jezak <josejx@gentoo.org> dungeon-3.2.3.ebuild: Marked ppc stable. diff --git a/games-action/dungeon/Manifest b/games-action/dungeon/Manifest index eb733eec9ea7..aee8fde79396 100644 --- a/games-action/dungeon/Manifest +++ b/games-action/dungeon/Manifest @@ -1,5 +1,6 @@ -MD5 492eac7914436f7449d36b3b89460ced ChangeLog 709 -MD5 c600cb31d3eb053400390d38def9ccc3 dungeon-3.2.3.ebuild 1157 +MD5 b155dc8022b38fedeba4a90d9628fff9 ChangeLog 824 +MD5 4e7f9deb99f9d31b3d55e45b0184cd55 dungeon-3.2.3.ebuild 1154 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 dacd3331c5237e5969c7af30b21c0efd files/digest-dungeon-3.2.3 69 MD5 83d60b8270358676653aa6a81fda0efa files/dungeon.6 8276 +MD5 cfdad3d5e5940cc72f84de4d76bf9ec9 files/dungeon-3.2.3-makefile.patch 252 diff --git a/games-action/dungeon/dungeon-3.2.3.ebuild b/games-action/dungeon/dungeon-3.2.3.ebuild index ca0ed1ee89ac..633ef0a07115 100644 --- a/games-action/dungeon/dungeon-3.2.3.ebuild +++ b/games-action/dungeon/dungeon-3.2.3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/dungeon/dungeon-3.2.3.ebuild,v 1.7 2004/12/20 13:13:24 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/dungeon/dungeon-3.2.3.ebuild,v 1.8 2005/03/04 04:20:24 mr_bones_ Exp $ -inherit games +inherit eutils games DESCRIPTION="A linux port of the Dungeon game once distributed by DECUS" HOMEPAGE="http://www.ibiblio.org/linsearch/lsms/dungeon-3.2.3.html" @@ -10,40 +10,39 @@ SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/games/textrpg/${P}.src.tar.gz" LICENSE="as-is" SLOT="0" -KEYWORDS="x86 ppc" +KEYWORDS="ppc x86" IUSE="" -RDEPEND="virtual/libc" -DEPEND="${RDEPEND} - dev-lang/f2c - >=sys-apps/sed-4" +DEPEND="dev-lang/f2c" -S="${WORKDIR}/dungn32c" - -DATS="${GAMES_DATADIR}/${PN}" +S=${WORKDIR}/dungn32c +DATS=${GAMES_DATADIR}/${PN} src_unpack() { unpack ${A} - cd ${S} - sed -i \ - -e "s:-O:${CFLAGS}:g" Makefile \ - || die "sed Makefile failed" + cd "${S}" + epatch "${FILESDIR}/${P}-makefile.patch" } src_compile() { - make game.c || die "make game.c failed" + local f + + # f2c steps on itself + for f in *.f + do + emake ${f/.f/.c} || die "emake failed" + done sed -i \ -re "s:d(indx|text).dat:${DATS}/&:g" \ -e "s:ofnmlen = [^;]+:&+${#DATS}+1:g" \ game.c || die "sed game.c failed" - emake || die "emake failed" } src_install() { dogamesbin dungeon || die "dogamesbin failed" insinto "${DATS}" - doins dindx.dat dtext.dat + doins dindx.dat dtext.dat || die "doins failed" doman "${FILESDIR}/dungeon.6" dodoc README *.txt *.doc prepgamesdirs diff --git a/games-action/dungeon/files/dungeon-3.2.3-makefile.patch b/games-action/dungeon/files/dungeon-3.2.3-makefile.patch new file mode 100644 index 000000000000..b73bb4323451 --- /dev/null +++ b/games-action/dungeon/files/dungeon-3.2.3-makefile.patch @@ -0,0 +1,13 @@ +--- Makefile.orig 2005-03-03 11:12:07.000000000 -0500 ++++ Makefile 2005-03-03 11:50:42.000000000 -0500 +@@ -12,9 +12,8 @@ + + FC = f2c + FFLAGS = -A -C -Nn802 -NL400 #-c +-CFLAGS = -O + +-.f.c: ++%.c: %.f + $(FC) $(FFLAGS) $< + + all: dungeon textcnv bin2txt |