diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-04-15 06:36:14 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-04-15 06:36:14 +0000 |
commit | 338fef4c59a83bff1f92e7166442fa8f8924e9a9 (patch) | |
tree | 447d7d0eafdc91cc775e66773e9f8239b9ed4dc3 /games-arcade/triplexinvaders | |
parent | Stabilized wrong version, thanks to vanquirius for reporting (diff) | |
download | gentoo-2-338fef4c59a83bff1f92e7166442fa8f8924e9a9.tar.gz gentoo-2-338fef4c59a83bff1f92e7166442fa8f8924e9a9.tar.bz2 gentoo-2-338fef4c59a83bff1f92e7166442fa8f8924e9a9.zip |
touchups
(Portage version: 2.1.2.2)
Diffstat (limited to 'games-arcade/triplexinvaders')
-rw-r--r-- | games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild b/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild index 61bd9c3acb95..161fdc12f1e6 100644 --- a/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild +++ b/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild,v 1.3 2007/04/14 20:16:23 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild,v 1.4 2007/04/15 06:36:14 mr_bones_ Exp $ inherit eutils games @@ -10,7 +10,7 @@ SRC_URI="http://acm.jhu.edu/~arthur/invaders/${P}.zip" LICENSE="as-is" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~x86" IUSE="psyco" DEPEND="app-arch/unzip @@ -30,12 +30,13 @@ src_unpack() { } src_install() { - insinto "${GAMES_LIBDIR}/${PN}" + local libdir=$(games_get_libdir) + + insinto "${libdir}/${PN}" doins -r *.py || die "doins failed" insinto "${GAMES_DATADIR}/${PN}" doins -r models sound options.conf hiscores || die "doins failed" - games_make_wrapper ${PN} "python ./invaders.py" "${GAMES_LIBDIR}/${PN}" - dodoc README.txt TODO.txt || die "Installing doc failed" - + games_make_wrapper ${PN} "python ./invaders.py" "${libdir}/${PN}" + dodoc README.txt TODO.txt prepgamesdirs } |