diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-03-29 15:35:58 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-03-29 15:35:58 +0000 |
commit | ffa4aa4284e8176039d9a954f9726bc1b9bb9a84 (patch) | |
tree | ed6ddca937563847c40c5e4139c771a4291051ad /games-action | |
parent | Stable for HPPA (bug #462220). (diff) | |
download | gentoo-2-ffa4aa4284e8176039d9a954f9726bc1b9bb9a84.tar.gz gentoo-2-ffa4aa4284e8176039d9a954f9726bc1b9bb9a84.tar.bz2 gentoo-2-ffa4aa4284e8176039d9a954f9726bc1b9bb9a84.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-action')
-rw-r--r-- | games-action/shadowgrounds-bin/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/games-action/shadowgrounds-bin/ChangeLog b/games-action/shadowgrounds-bin/ChangeLog index 4093b00ca664..823318b3aa12 100644 --- a/games-action/shadowgrounds-bin/ChangeLog +++ b/games-action/shadowgrounds-bin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/shadowgrounds-bin -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/shadowgrounds-bin/ChangeLog,v 1.2 2011/04/21 08:49:37 vapier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/shadowgrounds-bin/ChangeLog,v 1.3 2013/03/29 15:35:58 hasufell Exp $ + + 29 Mar 2013; Julian Ospald <hasufell@gentoo.org> + shadowgrounds-bin-0_beta12.ebuild: + use unpack_zip from unpacker.eclass instead of unzip 21 Apr 2011; Mike Frysinger <vapier@gentoo.org> shadowgrounds-bin-0_beta12.ebuild: diff --git a/games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild b/games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild index ec344dd29b9d..f494f6c9ee1e 100644 --- a/games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild +++ b/games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild,v 1.2 2011/04/21 08:49:37 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/shadowgrounds-bin/shadowgrounds-bin-0_beta12.ebuild,v 1.3 2013/03/29 15:35:58 hasufell Exp $ -inherit games eutils +inherit unpacker games eutils DESCRIPTION="an epic action experience combining modern technology with addictive playability" HOMEPAGE="http://shadowgroundsgame.com/" @@ -37,7 +37,7 @@ pkg_nofetch() { src_unpack() { # manually run unzip as the initial seek causes it to exit(1) - unzip -q "${DISTDIR}/${A}" + unpack_zip ${A} rm lib*/lib{gcc_s,m,rt,selinux}.so.? } |