diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-05-27 13:31:14 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-05-27 13:31:14 +0000 |
commit | 683001082b446f9ee8f9570815deb82390327b5b (patch) | |
tree | 3b6031d7003edb8a084f3582eecd7e28b09c0cda /games-strategy | |
parent | Marking Apache-DBI-1.06 ~ppc64 as a dep to bug 165190 (diff) | |
download | gentoo-2-683001082b446f9ee8f9570815deb82390327b5b.tar.gz gentoo-2-683001082b446f9ee8f9570815deb82390327b5b.tar.bz2 gentoo-2-683001082b446f9ee8f9570815deb82390327b5b.zip |
Version bump
(Portage version: 2.1.2.8)
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/outerspace/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/outerspace/files/digest-outerspace-0.5.63 | 3 | ||||
-rw-r--r-- | games-strategy/outerspace/outerspace-0.5.63.ebuild | 41 |
3 files changed, 50 insertions, 1 deletions
diff --git a/games-strategy/outerspace/ChangeLog b/games-strategy/outerspace/ChangeLog index aacd7d860a43..888cd74aa443 100644 --- a/games-strategy/outerspace/ChangeLog +++ b/games-strategy/outerspace/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-strategy/outerspace # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/outerspace/ChangeLog,v 1.5 2007/05/20 21:21:58 nyhm Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/outerspace/ChangeLog,v 1.6 2007/05/27 13:31:14 nyhm Exp $ + +*outerspace-0.5.63 (27 May 2007) + + 27 May 2007; Tristan Heaven <nyhm@gentoo.org> +outerspace-0.5.63.ebuild: + Version bump *outerspace-0.5.62 (20 May 2007) diff --git a/games-strategy/outerspace/files/digest-outerspace-0.5.63 b/games-strategy/outerspace/files/digest-outerspace-0.5.63 new file mode 100644 index 000000000000..d33a8104a7e7 --- /dev/null +++ b/games-strategy/outerspace/files/digest-outerspace-0.5.63 @@ -0,0 +1,3 @@ +MD5 b425a06659a55206e2eebbecf8a7e25e OuterSpace-0.5.63.tar.gz 1682327 +RMD160 c1ff88707013035909fc7e48e00b21ef07113cd4 OuterSpace-0.5.63.tar.gz 1682327 +SHA256 163609c5b2b6124d6e10ccd7516a817ab323dbc7c6dd8ea99188bc8507ff6640 OuterSpace-0.5.63.tar.gz 1682327 diff --git a/games-strategy/outerspace/outerspace-0.5.63.ebuild b/games-strategy/outerspace/outerspace-0.5.63.ebuild new file mode 100644 index 000000000000..ae0851411883 --- /dev/null +++ b/games-strategy/outerspace/outerspace-0.5.63.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/outerspace/outerspace-0.5.63.ebuild,v 1.1 2007/05/27 13:31:14 nyhm Exp $ + +inherit eutils games + +MY_PN=${PN/outerspace/OuterSpace} +MY_P=${MY_PN}-${PV} +DESCRIPTION="on-line strategy game taking place in the dangerous universe" +HOMEPAGE="http://www.ospace.net/" +SRC_URI="mirror://sourceforge/ospace/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-python/pygame-1.7 + >=dev-lang/python-2.4" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd "${S}" + sed -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \ + -e "s:@GENTOO_LIBDIR@:$(games_get_libdir)/${PN}:" \ + "${FILESDIR}"/${PN} > ${PN} \ + || die "sed failed" +} + +src_install() { + insinto "$(games_get_libdir)"/${PN} + doins -r osc.py lib libsrvr || die "doins lib failed" + insinto "${GAMES_DATADIR}"/${PN} + doins -r res || die "doins data failed" + dogamesbin ${PN} || die "dogamesbin failed" + newicon res/icon32.png ${PN}.png + make_desktop_entry ${PN} ${MY_PN} + prepgamesdirs +} |