blob: 32517fc5f5a2ea6c516bf41b23a5860cafb7f910 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/btanks/btanks-0.8.7686.ebuild,v 1.9 2009/05/30 06:39:49 mr_bones_ Exp $
EAPI=2
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/libsdl[joystick,video]
media-libs/libvorbis
virtual/opengl
dev-libs/expat
media-libs/smpeg
media-libs/sdl-image[jpeg,png]
media-libs/sdl-gfx"
DEPEND="${RDEPEND}
dev-util/scons
dev-util/pkgconfig"
src_prepare() {
rm -rf sdlx/gfx
epatch "${FILESDIR}"/${P}-scons-blows.patch
}
src_compile() {
local sconsopts=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[0-9]\+\).*/\1/; p }")
scons \
${sconsopts} \
prefix="${GAMES_PREFIX}" \
lib_dir="$(games_get_libdir)"/${PN} \
plugins_dir="$(games_get_libdir)"/${PN} \
resources_dir="${GAMES_DATADIR}"/${PN} \
|| die "scons failed"
}
src_install() {
dogamesbin build/release/engine/btanks || die "dogamesbin failed"
newgamesbin build/release/editor/bted btanksed || die "newgamesbin failed"
exeinto "$(games_get_libdir)"/${PN}
doexe build/release/*/*.so || die "doexe failed"
insinto "${GAMES_DATADIR}"/${PN}
doins -r data || die "doins failed"
newicon engine/src/bt.xpm ${PN}.xpm
make_desktop_entry ${PN} "Battle Tanks"
dodoc ChangeLog *.txt
prepgamesdirs
}
|