summaryrefslogtreecommitdiff
blob: c85b7c8bc8721297b62e62e2021da31046cfb77f (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/btanks/btanks-0.8.7479.ebuild,v 1.1 2008/08/04 20:47:09 mr_bones_ Exp $

inherit eutils games

DESCRIPTION="Fast 2D tank arcade game with multiplayer and split-screen modes"
HOMEPAGE="http://btanks.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=">=dev-lang/lua-5.1
	media-libs/openal
	media-libs/libsdl
	media-libs/libvorbis
	virtual/opengl
	dev-libs/expat
	media-libs/sdl-image"
DEPEND="${RDEPEND}
	dev-util/scons
	dev-util/pkgconfig"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch \
		"${FILESDIR}"/${P}-scons-blows.patch \
		"${FILESDIR}"/${P}-build.patch
}

src_compile() {
	scons \
		mode='release' \
		prefix=/usr \
		lib_dir="$(games_get_libdir)/${PN}" \
		resources_dir="${GAMES_DATADIR}/${PN}" \
		|| die 'scons'
}

src_install() {
	newgamesbin btanks btanks || die 'newgamesbin'
	newgamesbin bted btanksed || die 'newgamesbin'

	insinto "$(games_get_libdir)"/${PN}
	doins lib{mrt,bt,sdlx,clunk}.so || die 'doins for lib.so failed'

	exeinto "${GAMES_DATADIR}/${PN}"
	doexe libbt_objects.so || die 'doins for libbt_objects.so failed'
	insinto "${GAMES_DATADIR}/${PN}"
	doins -r data || die 'doins for data failed'
	dodoc ChangeLog *.txt

	newicon engine/src/bt.xpm ${PN}.xpm || die 'newicon'
	make_desktop_entry ${PN} 'Battle Tanks' ${PN}

	prepgamesdirs
}