blob: 731cf4b4da1765062a9e714c00ec1fe4e238de21 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/battalion/battalion-1.4b.ebuild,v 1.8 2004/11/02 20:54:47 josejx Exp $
inherit games
DESCRIPTION="Be a rampaging monster and destroy the city."
HOMEPAGE="http://evlweb.eecs.uic.edu/aej/AndyBattalion.html"
SRC_URI="http://evlweb.eecs.uic.edu/aej/BATTALION/${PN}${PV}.tar.bz2"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86 ppc"
IUSE=""
RDEPEND="virtual/x11
virtual/opengl"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S="${WORKDIR}/${PN}${PV}"
dir="${GAMES_DATADIR}/${PN}"
src_unpack() {
unpack ${A}
cd "${S}"
# Modify data paths
sed -i \
-e "s:SOUNDS/:${dir}/SOUNDS/:" \
-e "s:MUSIC/:${dir}/MUSIC/:" \
audio.c || die "sed audio.c failed"
sed -i \
-e "s:DATA/:${dir}/DATA/:" \
-e "s:/usr/tmp:${GAMES_STATEDIR}:" \
battalion.c || die "sed battalion.c failed"
sed -i \
-e "s:TEXTURES/:${dir}/TEXTURES/:" \
graphics.c || die "sed graphics.c failed"
# Modify Makefile and add CFLAGS
sed -i \
-e "s:-O2:${CFLAGS}:" \
Makefile || die "sed Makefile failed"
# Only .raw sound files are used on Linux. The .au files are not needed.
rm {SOUNDS,MUSIC}/*.au
}
src_install() {
dogamesbin battalion || die "dogamesbin failed"
dodir "${dir}"
cp -r DATA MUSIC SOUNDS TEXTURES "${D}${dir}" || die "cp failed"
dodoc README
dodir "${GAMES_STATEDIR}"
touch "${D}${GAMES_STATEDIR}/battalion_hiscore"
fperms 660 "${GAMES_STATEDIR}/battalion_hiscore"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "Sound and music are not enabled by default."
einfo "Use the S and M keys to enable them in-game, or start the game with"
einfo "the -s and -m switches: battalion -s -m"
}
|