blob: cae88aa66a0f00481226bf2f57294e0422af6bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-simulation/singularity/singularity-0.26a.ebuild,v 1.2 2007/10/14 07:26:57 mr_bones_ Exp $
inherit eutils games
MUSIC=endgame-${PN}-music-001
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://www.emhsoft.com/singularity/${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 code/*.pyc data/*.html # Remove unecessary files
epatch "${FILESDIR}/${P}-musicdir.patch"
}
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
}
|