diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-03-29 16:10:32 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-03-29 16:10:32 +0000 |
commit | 166707203d4e89d405e96d949eb5ac31e1f9ff5e (patch) | |
tree | ae57b3e467bbc87685ab567954f40f90c9d73de0 /games-fps | |
parent | Version bump (diff) | |
download | gentoo-2-166707203d4e89d405e96d949eb5ac31e1f9ff5e.tar.gz gentoo-2-166707203d4e89d405e96d949eb5ac31e1f9ff5e.tar.bz2 gentoo-2-166707203d4e89d405e96d949eb5ac31e1f9ff5e.zip |
use unpack_zip from unpacker.eclass instead of unzip
(Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'games-fps')
-rw-r--r-- | games-fps/quake2-data/ChangeLog | 7 | ||||
-rw-r--r-- | games-fps/quake2-data/quake2-data-3.20.ebuild | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/games-fps/quake2-data/ChangeLog b/games-fps/quake2-data/ChangeLog index 5ab8730a3f8e..17b65cac76c6 100644 --- a/games-fps/quake2-data/ChangeLog +++ b/games-fps/quake2-data/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/quake2-data -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-data/ChangeLog,v 1.16 2012/01/16 19:20:15 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-data/ChangeLog,v 1.17 2013/03/29 16:10:32 hasufell Exp $ + + 29 Mar 2013; Julian Ospald <hasufell@gentoo.org> quake2-data-3.20.ebuild: + use unpack_zip from unpacker.eclass instead of unzip 16 Jan 2012; Ulrich Müller <ulm@gentoo.org> quake2-data-3.20.ebuild: Migrate to cdrom.eclass, bug 398809. diff --git a/games-fps/quake2-data/quake2-data-3.20.ebuild b/games-fps/quake2-data/quake2-data-3.20.ebuild index ccb193e0678e..d922c4ad5c09 100644 --- a/games-fps/quake2-data/quake2-data-3.20.ebuild +++ b/games-fps/quake2-data/quake2-data-3.20.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-data/quake2-data-3.20.ebuild,v 1.26 2012/01/16 19:20:15 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-data/quake2-data-3.20.ebuild,v 1.27 2013/03/29 16:10:32 hasufell Exp $ EAPI=2 -inherit eutils cdrom games +inherit unpacker eutils cdrom games DESCRIPTION="iD Software's Quake 2 ... the data files" HOMEPAGE="http://www.idsoftware.com/" @@ -31,8 +31,7 @@ src_unpack() { export CDROM_NAME_SET=("Existing Install" "Ultimate Quake Edition" "Quake2 CD" "Quake4 Bonus DVD") cdrom_get_cds baseq2:Install/patch:Install:Movies # The .exe is just a self-extracting .zip - echo ">>> Unpacking ${A} to ${PWD}" - unzip -qo "${DISTDIR}/${A}" || die "Failed to unpack ${A}" + unpack_zip ${A} } src_install() { |