blob: 905c5e8b3929bd855f7b045b74d01b6b53bcf8e7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/phobiaiii/phobiaiii-1.0-r1.ebuild,v 1.4 2004/07/14 14:21:32 agriffis Exp $
inherit games
DESCRIPTION="Just a moment ago, you were safe inside your ship, behind five inch armour"
HOMEPAGE="http://www.lynxlabs.com/phobiaIII/"
SRC_URI="ftp://ftp.edome.net/demot/actionpelit/phobia3-linux.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
RDEPEND="kde-base/arts
media-sound/esound
media-libs/audiofile
media-libs/sdl-mixer
virtual/x11
media-libs/libvorbis
media-libs/libogg
>=sys-libs/lib-compat-1.3
media-libs/libsdl
media-libs/smpeg"
S=${WORKDIR}/phobia3
src_install() {
dodoc README
rm -rf README src
dodir ${GAMES_PREFIX_OPT}/${PN}
mv * ${D}/${GAMES_PREFIX_OPT}/${PN}/
dogamesbin ${FILESDIR}/phobiaIII
if has_version '<sys-libs/glibc-2.3.2' ; then
dosed '/LD_PRELOAD/s:.*::' ${GAMES_BINDIR}/phobiaIII
fi
prepgamesdirs
}
|