diff options
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/quake3-alliance/ChangeLog | 8 | ||||
-rw-r--r-- | games-fps/quake3-alliance/quake3-alliance-3.3-r1.ebuild | 22 |
2 files changed, 23 insertions, 7 deletions
diff --git a/games-fps/quake3-alliance/ChangeLog b/games-fps/quake3-alliance/ChangeLog index 68e8ca8c2ffc..83793f8d1303 100644 --- a/games-fps/quake3-alliance/ChangeLog +++ b/games-fps/quake3-alliance/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-fps/quake3-alliance -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-alliance/ChangeLog,v 1.3 2006/10/23 19:49:50 wolf31o2 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-alliance/ChangeLog,v 1.4 2009/10/06 22:10:02 nyhm Exp $ + + 06 Oct 2009; Tristan Heaven <nyhm@gentoo.org> + quake3-alliance-3.3-r1.ebuild: + EAPI=2; fix unpack order; fix SRC_URI, bug #255676 *quake3-alliance-3.3-r1 (23 Oct 2006) diff --git a/games-fps/quake3-alliance/quake3-alliance-3.3-r1.ebuild b/games-fps/quake3-alliance/quake3-alliance-3.3-r1.ebuild index 7b68fa6e8665..016f47f7a477 100644 --- a/games-fps/quake3-alliance/quake3-alliance-3.3-r1.ebuild +++ b/games-fps/quake3-alliance/quake3-alliance-3.3-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2006 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/quake3-alliance/quake3-alliance-3.3-r1.ebuild,v 1.3 2009/10/01 21:15:10 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake3-alliance/quake3-alliance-3.3-r1.ebuild,v 1.4 2009/10/06 22:10:02 nyhm Exp $ + +EAPI=2 MOD_DESC="fast paced, off-handed grapple mod" MOD_NAME="Alliance" @@ -8,10 +10,20 @@ MOD_DIR="alliance" inherit games games-mods -SRC_URI="http://mir2.ovh.net/ftp.planetquake3.net/modifications/alliance/alliance30.zip - http://mir2.ovh.net/ftp.planetquake3.net/modifications/alliance/alliance30-33.zip" +SRC_URI="http://www.mirrorservice.org/sites/quakeunity.com/modifications/alliance/alliance30.zip + http://www.superkeff.net/mods/mods/alliance/alliance30.zip + http://www.mirrorservice.org/sites/quakeunity.com/modifications/alliance/alliance30-33.zip + http://www.superkeff.net/mods/mods/alliance/alliance30-33.zip" HOMEPAGE="http://www.planetquake.com/alliance/" LICENSE="freedist" -KEYWORDS="-* ~amd64 ~ppc ~x86" +KEYWORDS="~amd64 ~ppc ~x86" IUSE="dedicated opengl" + +src_unpack() { + unpack alliance30.zip alliance30-33.zip +} + +src_prepare() { + rm -f *.exe +} |