blob: 55483d4911ae43b47f9a73029b461609a2e03565 (
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
62
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/warzone2100-2.2.4.ebuild,v 1.5 2010/01/23 15:45:33 ranger Exp $
EAPI=2
inherit versionator games
MY_PV=$(get_version_component_range -2)
DESCRIPTION="3D real-time strategy game"
HOMEPAGE="http://wz2100.net/"
SRC_URI="mirror://sourceforge/warzone2100/${P}.tar.gz
videos? ( http://download.gna.org/warzone/videos/sequences-${MY_PV}.wz )"
LICENSE="GPL-2 CCPL-Attribution-ShareAlike-3.0 public-domain"
SLOT="0"
KEYWORDS="amd64 ppc x86"
# upstream requested debug support
IUSE="debug nls videos"
RDEPEND="dev-db/sqlite:3
>=dev-games/physfs-2[zip]
dev-libs/popt
media-libs/libogg
media-libs/libpng
media-libs/libsdl[opengl,video]
media-libs/libtheora
media-libs/libvorbis
media-libs/openal
media-libs/sdl-net
media-libs/quesoglc
virtual/glu
virtual/opengl
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
app-arch/zip
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
RDEPEND="${RDEPEND}
media-fonts/dejavu"
src_configure() {
egamesconf \
--disable-dependency-tracking \
--docdir=/usr/share/doc/${PF} \
--localedir=/usr/share/locale \
--with-distributor="Gentoo ${PF}" \
--with-icondir=/usr/share/pixmaps \
--with-applicationdir=/usr/share/applications \
$(use_enable debug debug relaxed) \
$(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -f "${D}"/usr/share/doc/${PF}/COPYING*
if use videos ; then
insinto "${GAMES_DATADIR}"/${PN}
newins "${DISTDIR}"/sequences-${MY_PV}.wz sequences.wz \
|| die "newins failed"
fi
prepgamesdirs
}
|