blob: c48205258f041aea66247a38902c7fce1156affd (
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
43
44
45
46
47
48
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/mutantstorm-demo/mutantstorm-demo-1.33.ebuild,v 1.5 2005/09/26 17:34:21 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="shoot through crazy psychedelic 3D environments"
HOMEPAGE="http://www.pompom.org.uk/"
SRC_URI="ftp://ggdev-1.homelan.com/mutantstorm/MutantStormDemo_${PV/./_}.sh.bin"
LICENSE="POMPOM"
SLOT="0"
KEYWORDS="-* x86 ~amd64"
IUSE=""
S=${WORKDIR}
RDEPEND="virtual/opengl
amd64? (
app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-soundlibs
app-emulation/emul-linux-x86-compat
app-emulation/emul-linux-x86-sdl )"
pkg_setup() {
check_license POMPOM
games_pkg_setup
}
src_unpack() {
unpack_makeself
}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir ${dir} ${GAMES_BINDIR}
cp -r menu script styles ${D}/${dir}/
exeinto ${dir}
doexe bin/Linux/x86/*
dosym ${dir}/mutantstormdemo ${GAMES_BINDIR}/mutantstorm-demo
insinto ${dir}
doins README.txt buy_me mutant.xpm pompom readme.htm
prepgamesdirs
}
|