Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-simulation/singularity: singularity-0.30.ebuild ChangeLog
Date: Fri, 30 Jan 2009 05:05:32
Message-Id: E1LSlZK-0003dQ-Me@stork.gentoo.org
1 mr_bones_ 09/01/30 05:05:30
2
3 Modified: ChangeLog
4 Added: singularity-0.30.ebuild
5 Log:
6 version bump - ebuild submitted by Sergey Zasenko via bug #256780
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28.1 i686)
8
9 Revision Changes Path
10 1.10 games-simulation/singularity/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/singularity/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/singularity/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/singularity/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 20 Jun 2008 18:06:57 -0000 1.9
23 +++ ChangeLog 30 Jan 2009 05:05:30 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-simulation/singularity
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v 1.9 2008/06/20 18:06:57 mr_bones_ Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/ChangeLog,v 1.10 2009/01/30 05:05:30 mr_bones_ Exp $
30 +
31 +*singularity-0.30 (30 Jan 2009)
32 +
33 + 30 Jan 2009; Michael Sterrett <mr_bones_@g.o>
34 + +singularity-0.30.ebuild:
35 + version bump - ebuild submitted by Sergey Zasenko via bug #256780
36
37 20 Jun 2008; Michael Sterrett <mr_bones_@g.o>
38 singularity-0.28a.ebuild:
39
40
41
42 1.1 games-simulation/singularity/singularity-0.30.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/singularity/singularity-0.30.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-simulation/singularity/singularity-0.30.ebuild?rev=1.1&content-type=text/plain
46
47 Index: singularity-0.30.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/singularity-0.30.ebuild,v 1.1 2009/01/30 05:05:30 mr_bones_ Exp $
52
53 EAPI=2
54 inherit eutils games
55
56 MUSIC=endgame-${PN}-music-006
57 DESCRIPTION="A simulation of a true AI. Go from computer to computer, pursued by the entire world"
58 HOMEPAGE="http://www.emhsoft.com/singularity/"
59 SRC_URI="http://www.emhsoft.com/singularity/${P}-src.tar.gz
60 music? ( http://endgame-singularity.googlecode.com/files/${MUSIC}.zip )"
61
62 LICENSE="GPL-2 CCPL-Attribution-ShareAlike-2.5"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="+music"
66
67 RDEPEND="dev-python/pygame"
68 DEPEND="${RDEPEND}
69 app-arch/unzip"
70
71 src_prepare() {
72 rm -f code/*.pyc data/*.html # Remove unecessary files
73 }
74
75 src_install() {
76 insinto "${GAMES_DATADIR}/${PN}"
77 doins -r code data ${PN}.py || die "doins failed"
78 if use music ; then
79 doins -r ../${MUSIC}/music || die "doins failed"
80 fi
81 games_make_wrapper ${PN} "python ${PN}.py" "${GAMES_DATADIR}/${PN}"
82 dodoc README.txt TODO Changelog AUTHORS
83 prepgamesdirs
84 }