blob: 0b8a1194c4f33fec47879cfc23b3a84536f5b4a0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-39.1-r1.ebuild,v 1.1 2006/05/12 18:40:23 wolf31o2 Exp $
inherit wxwidgets games
DESCRIPTION="Multi-player tank battle in 3D (OpenGL)"
HOMEPAGE="http://www.scorched3d.co.uk/"
SRC_URI="mirror://sourceforge/scorched3d/Scorched3D-${PV}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="mysql"
DEPEND="virtual/opengl
media-libs/openal
media-libs/freealut
>=media-libs/libsdl-1.2.5
>=media-libs/sdl-net-1.2.5
=x11-libs/wxGTK-2.4*
>=media-libs/freetype-2
mysql? ( dev-db/mysql )"
S=${WORKDIR}/scorched
pkg_setup() {
need-wxwidgets gtk2 || die "You need to emerge wxGTK with USE='gtk2'"
games_pkg_setup
}
src_compile() {
# work around portage bug: described in bug #73527
need-wxwidgets gtk2 || die "You need to emerge wxGTK with USE='gtk2'"
egamesconf \
--disable-dependency-tracking \
--exec_prefix="${GAMES_PREFIX}" \
--datadir="${GAMES_DATADIR}/${PN}" \
--with-docdir="/usr/share/doc/${PF}" \
$(use_with mysql) \
|| die
sed -i \
-e 's/lopenal/lopenal -lalut/' \
src/scorched/Makefile || die "sed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
insinto "${GAMES_DATADIR}/scorched3d/data/globalmods/apoc/data/textures/explode/"
doins "${FILESDIR}/smoke-orange.bmp" || die "doins failed" #bug #105237
prepgamesdirs
}
|