blob: 0f950b0aab19371ee56971a70b6d5a61c2ba86f8 (
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
41
42
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/triplexinvaders/triplexinvaders-1.08.ebuild,v 1.5 2007/04/25 15:15:14 nyhm Exp $
inherit eutils games
DESCRIPTION="An Alien Invaders style game with 3d graphics"
HOMEPAGE="http://triplexinvaders.infogami.com"
SRC_URI="http://acm.jhu.edu/~arthur/invaders/${P}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="psyco"
DEPEND="app-arch/unzip"
RDEPEND="dev-python/pygame
dev-python/pyopengl
psyco? ( dev-python/psyco )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}"-gentoo.patch
sed -i -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \
sound.py \
util.py \
hiscore.py \
options.py || die "sed failed"
}
src_install() {
local libdir=$(games_get_libdir)
insinto "${libdir}/${PN}"
doins -r *.py || die "doins failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r models sound options.conf hiscores || die "doins failed"
games_make_wrapper ${PN} "python ./invaders.py" "${libdir}/${PN}"
dodoc README.txt TODO.txt
prepgamesdirs
}
|