blob: 9a124f52755c73c8b73d43c5300f128f79044cca (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-0.9.2.ebuild,v 1.1 2005/06/07 05:08:17 mr_bones_ Exp $
inherit eutils flag-o-matic games
DESCRIPTION="A fantasy turn-based strategy game"
HOMEPAGE="http://www.wesnoth.org/"
SRC_URI="!lite? ( mirror://sourceforge/wesnoth/${P}.tar.gz )
lite? ( mirror://sourceforge/wesnoth/${PN}-lite-${PV}.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="editor gnome kde lite nls server tools"
DEPEND=">=media-libs/libsdl-1.2.7
>=media-libs/sdl-image-1.2
>=media-libs/sdl-mixer-1.2
>=media-libs/freetype-2
media-libs/sdl-net
sys-libs/zlib
virtual/x11"
src_unpack() {
if use lite ; then
unpack ${PN}-lite-${PV}.tar.gz
S=${WORKDIR}/${PN}-lite-${PV}
else
unpack ${P}.tar.gz
fi
}
src_compile() {
if use lite ; then
S=${WORKDIR}/${PN}-lite-${PV}
fi
cd "${S}"
filter-flags -ftracer -fomit-frame-pointer
egamesconf \
--disable-dependency-tracking \
$(use_enable server) \
$(use_enable server campaign-server) \
$(use_enable editor) \
$(use_enable tools) \
$(use_enable nls) \
$(use_with gnome) \
$(use_with kde) \
|| die
emake || die "emake failed"
}
src_install() {
if use lite ; then
S=${WORKDIR}/${PN}-lite-${PV}
fi
cd "${S}"
make DESTDIR="${D}" install || die "make install failed"
mv "${D}${GAMES_DATADIR}/"{icons,applnk,applications} "${D}/usr/share/"
dodoc MANUAL changelog
prepgamesdirs
}
|