diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-04-18 19:25:01 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-04-18 19:25:01 +0000 |
commit | ca745c4a8aa4cdf68f224dc5dabf2156688eb5d3 (patch) | |
tree | 0a1fcf826cb8de610bff2359d239af3f0e4a1739 /games-simulation/singularity | |
parent | fix ChangeLog header (diff) | |
download | gentoo-2-ca745c4a8aa4cdf68f224dc5dabf2156688eb5d3.tar.gz gentoo-2-ca745c4a8aa4cdf68f224dc5dabf2156688eb5d3.tar.bz2 gentoo-2-ca745c4a8aa4cdf68f224dc5dabf2156688eb5d3.zip |
version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-simulation/singularity')
-rw-r--r-- | games-simulation/singularity/ChangeLog | 8 | ||||
-rw-r--r-- | games-simulation/singularity/singularity-0.27.ebuild | 39 |
2 files changed, 46 insertions, 1 deletions
diff --git a/games-simulation/singularity/ChangeLog b/games-simulation/singularity/ChangeLog index 981dd15521a6..1910bdb05bcf 100644 --- a/games-simulation/singularity/ChangeLog +++ b/games-simulation/singularity/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-simulation/singularity # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v 1.6 2008/02/14 03:58:08 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v 1.7 2008/04/18 19:25:01 mr_bones_ Exp $ + +*singularity-0.27 (18 Apr 2008) + + 18 Apr 2008; Michael Sterrett <mr_bones_@gentoo.org> + +singularity-0.27.ebuild: + version bump 14 Feb 2008; Michael Sterrett <mr_bones_@gentoo.org> singularity-0.26a.ebuild: diff --git a/games-simulation/singularity/singularity-0.27.ebuild b/games-simulation/singularity/singularity-0.27.ebuild new file mode 100644 index 000000000000..bd8e66ebb8d8 --- /dev/null +++ b/games-simulation/singularity/singularity-0.27.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/singularity-0.27.ebuild,v 1.1 2008/04/18 19:25:01 mr_bones_ Exp $ + +inherit eutils games + +MUSIC=endgame-${PN}-music-005 + +DESCRIPTION="A simulation of a true AI. Go from computer to computer, pursued by the entire world. Keep hidden, and you might have a chance." +HOMEPAGE="http://www.emhsoft.com/singularity/" +SRC_URI="http://www.emhsoft.com/singularity/${PN}_${PV}.tar.gz + music? ( http://endgame-singularity.googlecode.com/files/${MUSIC}.zip )" + +LICENSE="GPL-2 CCPL-Attribution-ShareAlike-2.5" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="music" + +RDEPEND="dev-python/pygame" +DEPEND="${RDEPEND} + app-arch/unzip" + +src_unpack() { + unpack ${A} + cd "${S}" + + rm -f code/*.pyc data/*.html # Remove unecessary files +} + +src_install() { + insinto "${GAMES_DATADIR}/${PN}" + doins -r code data || die "doins failed" + if use music ; then + doins -r ../${MUSIC}/music || die "doins failed" + fi + games_make_wrapper singularity "python ./singularity.py" "${GAMES_DATADIR}/${PN}/code" + dodoc README.txt TODO Changelog AUTHORS + prepgamesdirs +} |