blob: adf90dde995abc80b0de6ec594713d2b1bfab0e8 (
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
|
# 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.ebuild,v 1.2 2005/08/09 20:52:56 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="gtk2 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() {
if use gtk2; then
need-wxwidgets gtk2 || die "You need to emerge wxGTK with USE='gtk2'"
else
need-wxwidgets gtk || die "No gtk1 version of x11-libs/wxGTK found"
fi
games_pkg_setup
}
src_compile() {
# work around portage bug: described in bug #73527
if use gtk2; then
need-wxwidgets gtk2 || die "You need to emerge wxGTK with USE='gtk2'"
else
need-wxwidgets gtk || die "No gtk1 version of x11-libs/wxGTK found"
fi
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
}
|