blob: f9ac7e7b77b62104d6d9454599497e69774df8b7 (
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
49
50
51
52
53
54
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/orbital-eunuchs-sniper/orbital-eunuchs-sniper-1.29.ebuild,v 1.11 2007/02/07 08:17:12 nyhm Exp $
inherit eutils games
MY_PN=${PN//-/_}
DESCRIPTION="Snipe terrorists from your orbital base"
HOMEPAGE="http://icculus.org/oes/"
SRC_URI="http://filesingularity.timedoctor.org/${MY_PN}-${PV}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND=">=media-libs/libsdl-1.2.5-r1
>=media-libs/sdl-mixer-1.2.5-r1
>=media-libs/sdl-image-1.2.2"
S="${WORKDIR}/${MY_PN}-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e 's:datadir="$with_games_dir"::' configure \
|| die "sed configure failed"
cp -rf "${S}"{,.orig}
epatch "${FILESDIR}/${PV}-gentoo-paths.patch" \
"${FILESDIR}/${P}"-gcc41.patch
sed -i \
-e "s:GENTOO_DIR:${GAMES_DATADIR}/${MY_PN}:" src/snipe2d.cpp \
|| die "sed src/snipe2d.cpp failed"
epatch "${FILESDIR}/${PV}-ai.patch"
}
src_compile() {
egamesconf --with-games-dir="${GAMES_PREFIX}" || die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
rm -f "${D}/${GAMES_BINDIR}/"*
dodir "${GAMES_LIBDIR}/${PN}"
mv "${D}/${GAMES_DATADIR}/${MY_PN}/"snipe2d.* "${D}/${GAMES_LIBDIR}/${PN}/" \
|| die "mv failed"
games_make_wrapper snipe2d ./snipe2d.x86.dynamic "${GAMES_LIBDIR}/${PN}"
dodoc AUTHORS ChangeLog README TODO readme.txt || die "dodoc failed"
prepgamesdirs
}
|