blob: 70cf25593e42f7288ce10ad35c1a180cf9ba6a4f (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/scorched3d/scorched3d-39.1.ebuild,v 1.3 2005/09/20 15:38:23 mr_bones_ 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-20050504
>=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
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
prepgamesdirs
}
|