diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 07:49:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 07:49:45 +0000 |
commit | a50cd5bc73d6e2e7b82434ef2fe4f981c3597fde (patch) | |
tree | e4ef1931009b801f5f9a8caf6a14d2fdeb91495e /games-action | |
parent | Version bump (#49138). (diff) | |
download | historical-a50cd5bc73d6e2e7b82434ef2fe4f981c3597fde.tar.gz historical-a50cd5bc73d6e2e7b82434ef2fe4f981c3597fde.tar.bz2 historical-a50cd5bc73d6e2e7b82434ef2fe4f981c3597fde.zip |
sed in unpack; fix use invocation; tidy
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/bzflag/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/bzflag/Manifest | 4 | ||||
-rw-r--r-- | games-action/bzflag/bzflag-1.10.4.ebuild | 28 |
3 files changed, 21 insertions, 16 deletions
diff --git a/games-action/bzflag/ChangeLog b/games-action/bzflag/ChangeLog index 41ab6cf29dd9..211c43ad291f 100644 --- a/games-action/bzflag/ChangeLog +++ b/games-action/bzflag/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/bzflag # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.9 2004/05/27 22:39:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/ChangeLog,v 1.10 2004/06/03 07:49:45 mr_bones_ Exp $ + + 03 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> bzflag-1.10.4.ebuild: + sed in unpack; fix use invocation; tidy 27 May 2004; Michael Sterrett <mr_bones_@gentoo.org> bzflag-1.10.6.20040515.ebuild: diff --git a/games-action/bzflag/Manifest b/games-action/bzflag/Manifest index 0b6e3731808a..98ff9ef21835 100644 --- a/games-action/bzflag/Manifest +++ b/games-action/bzflag/Manifest @@ -1,7 +1,7 @@ -MD5 d1a6684694b3a580dcb7f792c88fb6ea ChangeLog 2905 +MD5 1514ca0b3ea3cb50b837f654a4b17326 ChangeLog 3025 MD5 58b1d46eb5b3f4db81baa736785e6cb8 bzflag-1.10.2.ebuild 840 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 49a5c07ddc044ac6a43ee5215b4f371e bzflag-1.10.4.ebuild 1039 +MD5 3f74add3f022492259c18344fea5f5bf bzflag-1.10.4.ebuild 990 MD5 4b213d71d53afa30209f1a35609c379d bzflag-1.10.6.20040515.ebuild 864 MD5 ef0f58d8eaa9ff60b2d3c2a31f9dc8d8 files/digest-bzflag-1.10.2 75 MD5 6fadc41f4074e508579a3a7ba2a4187d files/digest-bzflag-1.10.4 76 diff --git a/games-action/bzflag/bzflag-1.10.4.ebuild b/games-action/bzflag/bzflag-1.10.4.ebuild index ccbbdedeaf13..1ed7d1182558 100644 --- a/games-action/bzflag/bzflag-1.10.4.ebuild +++ b/games-action/bzflag/bzflag-1.10.4.ebuild @@ -1,41 +1,43 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-1.10.4.ebuild,v 1.3 2004/04/19 21:24:35 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/bzflag/bzflag-1.10.4.ebuild,v 1.4 2004/06/03 07:49:45 mr_bones_ Exp $ inherit games MY_P="${P}.20040125" -S="${WORKDIR}/${PN}-1.10.4.20040125" DESCRIPTION="OpenGL accelerated 3d tank combat simulator game" HOMEPAGE="http://www.BZFlag.org/" SRC_URI="mirror://sourceforge/bzflag/${MY_P}.tar.bz2" -IUSE="" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc amd64" +IUSE="" DEPEND="virtual/opengl" -src_compile () { - if [ "`use amd64`" ]; then - sed -e "s/-mcpu=\$host_cpu//" configure > configure.new - mv configure.new configure +S="${WORKDIR}/${PN}-1.10.4.20040125" + +src_unpack() { + unpack ${A} + cd ${S} + if use amd64 ; then + sed -i \ + -e "s/-mcpu=\$host_cpu//" configure \ + || die "sed failed" chmod +x configure fi - egamesconf || die - emake || die } src_install () { - make DESTDIR=${D} install || die "make install failed" - dodoc AUTHORS README.UNIX TODO README ChangeLog BUGS PORTING || \ - die "dodoc failed" + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS README.UNIX TODO README ChangeLog BUGS PORTING prepgamesdirs } pkg_postinst() { games_pkg_postinst + echo ewarn "This version of ${PN} breaks compatibility with all previous releases" echo } |