diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-06-21 01:33:26 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-06-21 01:33:26 +0000 |
commit | 07e7ddc255f735b06b849943f61db692647fe34f (patch) | |
tree | 7eef5547afdae9b5f7ca28bd704b7d897d3c835a | |
parent | Dropping old version (diff) | |
download | gentoo-2-07e7ddc255f735b06b849943f61db692647fe34f.tar.gz gentoo-2-07e7ddc255f735b06b849943f61db692647fe34f.tar.bz2 gentoo-2-07e7ddc255f735b06b849943f61db692647fe34f.zip |
version bump (bug #372415)
(Portage version: 2.1.9.42/cvs/Linux i686)
-rw-r--r-- | games-simulation/singularity/ChangeLog | 10 | ||||
-rw-r--r-- | games-simulation/singularity/singularity-0.30c.ebuild | 37 |
2 files changed, 45 insertions, 2 deletions
diff --git a/games-simulation/singularity/ChangeLog b/games-simulation/singularity/ChangeLog index af1f0eb5f88a..64d5eb927cca 100644 --- a/games-simulation/singularity/ChangeLog +++ b/games-simulation/singularity/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-simulation/singularity -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v 1.16 2010/09/19 18:22:16 hwoarang Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v 1.17 2011/06/21 01:33:26 mr_bones_ Exp $ + +*singularity-0.30c (21 Jun 2011) + + 21 Jun 2011; Michael Sterrett <mr_bones_@gentoo.org> + +singularity-0.30c.ebuild: + version bump (bug #372415) 19 Sep 2010; Markos Chandras <hwoarang@gentoo.org> singularity-0.30b.ebuild: diff --git a/games-simulation/singularity/singularity-0.30c.ebuild b/games-simulation/singularity/singularity-0.30c.ebuild new file mode 100644 index 000000000000..6f16b540e5ce --- /dev/null +++ b/games-simulation/singularity/singularity-0.30c.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/singularity-0.30c.ebuild,v 1.1 2011/06/21 01:33:26 mr_bones_ Exp $ + +EAPI=2 +inherit eutils games + +MUSIC=endgame-${PN}-music-006 +DESCRIPTION="A simulation of a true AI. Go from computer to computer, pursued by the entire world" +HOMEPAGE="http://www.emhsoft.com/singularity/" +SRC_URI="http://endgame-singularity.googlecode.com/files/${P}-src.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 + media-libs/sdl-mixer[vorbis]" +DEPEND="${RDEPEND} + app-arch/unzip" + +src_prepare() { + rm -f code/{,*}/*.pyc data/*.html # Remove unecessary files +} + +src_install() { + insinto "${GAMES_DATADIR}/${PN}" + doins -r code data ${PN}.py || die "doins failed" + if use music ; then + doins -r ../${MUSIC}/music || die "doins failed" + fi + games_make_wrapper ${PN} "python ${PN}.py" "${GAMES_DATADIR}/${PN}" + dodoc README.txt TODO Changelog AUTHORS + prepgamesdirs +} |