diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-02-22 21:03:36 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-02-22 21:03:36 +0000 |
commit | 240cca9f8bc665ab99d309be90c35ac30dd6be85 (patch) | |
tree | 1254f58dd6e1c39531f365feb71ce488275f6c8a /games-puzzle | |
parent | EAPI 5 (diff) | |
download | gentoo-2-240cca9f8bc665ab99d309be90c35ac30dd6be85.tar.gz gentoo-2-240cca9f8bc665ab99d309be90c35ac30dd6be85.tar.bz2 gentoo-2-240cca9f8bc665ab99d309be90c35ac30dd6be85.zip |
EAPI 5
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/penguzzle/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild | 17 |
2 files changed, 12 insertions, 12 deletions
diff --git a/games-puzzle/penguzzle/ChangeLog b/games-puzzle/penguzzle/ChangeLog index 513599613be6..17d1fc3be027 100644 --- a/games-puzzle/penguzzle/ChangeLog +++ b/games-puzzle/penguzzle/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/penguzzle -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/penguzzle/ChangeLog,v 1.7 2007/04/04 19:09:49 nyhm Exp $ +# Copyright 2000-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/penguzzle/ChangeLog,v 1.8 2015/02/22 21:03:36 tupone Exp $ + + 22 Feb 2015; Tupone Alfredo <tupone@gentoo.org> penguzzle-1.0-r1.ebuild: + EAPI 5 *penguzzle-1.0-r1 (04 Apr 2007) diff --git a/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild b/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild index 874e34ca8aea..5a395ecb2e22 100644 --- a/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild +++ b/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild,v 1.2 2007/04/23 11:46:53 nyhm Exp $ - +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/penguzzle/penguzzle-1.0-r1.ebuild,v 1.3 2015/02/22 21:03:36 tupone Exp $ +EAPI=5 inherit eutils games DESCRIPTION="Tcl/Tk variant of the well-known 15-puzzle game" @@ -19,10 +19,7 @@ DEPEND="app-arch/unzip" S=${WORKDIR}/${PN}${PV} -src_unpack() { - unpack ${A} - cd "${S}" - +src_prepare() { sed -i \ -e "s:~/puzz/images:${GAMES_DATADIR}/${PN}:" \ lib/init \ @@ -37,12 +34,12 @@ src_unpack() { src_install() { insinto "${GAMES_DATADIR}"/${PN} - doins images/img0.gif || die "doins img0.gif failed" + doins images/img0.gif insinto "$(games_get_libdir)"/${PN} - doins lib/init || die "doins init failed" + doins lib/init - dogamesbin bin/${PN} || die "dogamesbin failed" + dogamesbin bin/${PN} dodoc README prepgamesdirs |