diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2009-10-08 18:33:16 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2009-10-08 18:33:16 +0000 |
commit | 7704cf6cfe3583f893bd70b48f0f840bf23cc40a (patch) | |
tree | c1b92f0c6b722044427d1d496c2634eb71bb1c05 /games-fps/ut2004-hamsterbash | |
parent | Change dependency string for boost to fix error with mixed testing/stable env... (diff) | |
download | gentoo-2-7704cf6cfe3583f893bd70b48f0f840bf23cc40a.tar.gz gentoo-2-7704cf6cfe3583f893bd70b48f0f840bf23cc40a.tar.bz2 gentoo-2-7704cf6cfe3583f893bd70b48f0f840bf23cc40a.zip |
EAPI=2
(Portage version: 2.2_rc44/cvs/Linux x86_64)
Diffstat (limited to 'games-fps/ut2004-hamsterbash')
-rw-r--r-- | games-fps/ut2004-hamsterbash/ChangeLog | 7 | ||||
-rw-r--r-- | games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild | 14 |
2 files changed, 15 insertions, 6 deletions
diff --git a/games-fps/ut2004-hamsterbash/ChangeLog b/games-fps/ut2004-hamsterbash/ChangeLog index 0880b0825064..734b70080cf7 100644 --- a/games-fps/ut2004-hamsterbash/ChangeLog +++ b/games-fps/ut2004-hamsterbash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/ut2004-hamsterbash -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004-hamsterbash/ChangeLog,v 1.2 2008/07/28 17:07:05 wolf31o2 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004-hamsterbash/ChangeLog,v 1.3 2009/10/08 18:33:16 nyhm Exp $ + + 08 Oct 2009; Tristan Heaven <nyhm@gentoo.org> ut2004-hamsterbash-1.ebuild: + EAPI=2 28 Jul 2008; Chris Gianelloni <wolf31o2@gentoo.org> metadata.xml: Removing myself from metadata.xml since I am retiring from the project. diff --git a/games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild b/games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild index 03e1fb477cd1..4de1acacbc36 100644 --- a/games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild +++ b/games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild,v 1.2 2009/10/01 22:24:54 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/ut2004-hamsterbash/ut2004-hamsterbash-1.ebuild,v 1.3 2009/10/08 18:33:16 nyhm Exp $ + +EAPI=2 MOD_DESC="Cute and violent hamster cage rampage mod" MOD_NAME="Hamster Bash" @@ -16,6 +18,10 @@ KEYWORDS="~amd64 ~x86" IUSE="dedicated opengl" src_unpack() { - unzip "${DISTDIR}"/HamsterBashFinal.zip - mv -f HamsterBash ${MOD_DIR} + unzip "${DISTDIR}"/${A} # unpack fails +} + +src_prepare() { + mv -f HamsterBash ${MOD_DIR} || die + rm -rf System } |