summaryrefslogtreecommitdiff
blob: d601672cf212305def1909594184fd8542a63ce4 (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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit toolchain-funcs

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="battalion HPND"
SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="
	virtual/glu
	virtual/opengl
	x11-libs/libX11"
RDEPEND=${DEPEND}

S=${WORKDIR}/${PN}${PV}
PATCHES=(
	"${FILESDIR}"/${P}-warning.patch
	"${FILESDIR}"/${PN}-1.4b-fix-build-system.patch
)

src_prepare() {
	default

	# Modify data paths
	sed -i \
		-e "s:SOUNDS/:${EPREFIX}/usr/share/${PN}/SOUNDS/:" \
		-e "s:MUSIC/:${EPREFIX}/usr/share/${PN}/MUSIC/:" \
		audio.c || die
	sed -i \
		-e "s:DATA/:${EPREFIX}/usr/share/${PN}/DATA/:" \
		-e "s:/usr/tmp:${EPREFIX}/var/${PN}:" \
		battalion.c || die
	sed -i \
		-e "s:TEXTURES/:${EPREFIX}/usr/share/${PN}/TEXTURES/:" \
		graphics.c || die

	# Only .raw sound files are used on Linux. The .au files are not needed.
	rm {SOUNDS,MUSIC}/*.au || die
}

src_configure() {
	tc-export CC
}

src_install() {
	dobin battalion
	einstalldocs

	insinto /usr/share/${PN}
	doins -r DATA MUSIC SOUNDS TEXTURES

	dodir /var/${PN}
	touch "${ED%/}"/var/${PN}/battalion_hiscore || die
	fperms 660 /var/${PN}/battalion_hiscore
}

pkg_postinst() {
	elog "Sound and music are not enabled by default."
	elog "Use the S and M keys to enable them in-game, or start the game with"
	elog "the -s and -m switches: battalion -s -m"
}