diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2008-11-05 20:56:17 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2008-11-05 20:56:17 +0000 |
commit | 666a8a4c10ab65bc21c1615fecbb995775d7b66b (patch) | |
tree | 7d767cead99161f5596007935a981b36be8ce26d /games-strategy/lightyears/lightyears-1.3a.ebuild | |
parent | amd64/x86 stable, bug #245252 (diff) | |
download | historical-666a8a4c10ab65bc21c1615fecbb995775d7b66b.tar.gz historical-666a8a4c10ab65bc21c1615fecbb995775d7b66b.tar.bz2 historical-666a8a4c10ab65bc21c1615fecbb995775d7b66b.zip |
Version bump to 1.3a. Bug #233011
Package-Manager: portage-2.1.4.5
Diffstat (limited to 'games-strategy/lightyears/lightyears-1.3a.ebuild')
-rw-r--r-- | games-strategy/lightyears/lightyears-1.3a.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/games-strategy/lightyears/lightyears-1.3a.ebuild b/games-strategy/lightyears/lightyears-1.3a.ebuild new file mode 100644 index 000000000000..178793f798f9 --- /dev/null +++ b/games-strategy/lightyears/lightyears-1.3a.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/lightyears/lightyears-1.3a.ebuild,v 1.1 2008/11/05 20:56:17 tupone Exp $ + +inherit eutils python games + +DESCRIPTION="a single-player game with a science-fiction theme" +HOMEPAGE="http://www.jwhitham.org.uk/20kly/" +SRC_URI="${HOMEPAGE}${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/python + dev-python/pygame" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}"-gentoo.patch + sed -i \ + -e "s:@GENTOO_LIBDIR@:$(games_get_libdir)/${PN}:" \ + -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \ + ${PN} || die "Changing library path failed" +} + +src_install() { + dogamesbin ${PN} || die "dogamesbin failed" + + insinto "$(games_get_libdir)/${PN}" + doins code/*.py || die "doins code failed" + + dodoc README.txt + + insinto "${GAMES_DATADIR}/${PN}" + doins -r data audio || die "doins data failed" + + newicon data/32.png ${PN}.png + make_desktop_entry ${PN} "Light Years Into Space" + prepgamesdirs +} + +pkg_postinst() { + python_mod_optimize "$(games_get_libdir)/${PN}" + games_pkg_postinst +} + +pkg_postrm() { + python_mod_cleanup "$(games_get_libdir)/${PN}" +} |