blob: d54b7d630ae357a05fbddb0e4e2499ef7013e98a (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/wesnoth/wesnoth-1.4.7.ebuild,v 1.3 2009/01/06 02:17:20 mr_bones_ Exp $
EAPI=2
inherit eutils toolchain-funcs flag-o-matic games
MY_PV=${PV/_/}
DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
HOMEPAGE="http://www.wesnoth.org/"
SRC_URI="mirror://sourceforge/wesnoth/${PN}-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="dedicated editor lite nls server smallgui static tinygui tools"
RDEPEND=">=media-libs/libsdl-1.2.7[X]
media-libs/sdl-net
dev-libs/boost
!dedicated? (
x11-libs/libX11
>=media-libs/sdl-mixer-1.2[vorbis]
>=media-libs/sdl-image-1.2[png,jpeg]
dev-lang/python
>=media-libs/freetype-2 )
nls? ( virtual/libintl )"
# the configure script is broken and checks for freetype even if
# it won't be used. until it's either patched out or upstream fixes
# it, just make it a DEPEND.
# reported by Miika Linnapuomi
DEPEND="${RDEPEND}
!dedicated? (
smallgui? ( media-gfx/imagemagick )
tinygui? ( media-gfx/imagemagick )
)
dedicated? (
>=media-libs/sdl-mixer-1.2[vorbis]
>=media-libs/sdl-image-1.2[png]
>=media-libs/freetype-2 )
nls? ( sys-devel/gettext )"
S=${WORKDIR}/${PN}-${MY_PV}
pkg_setup() {
if use !dedicated && use smallgui && use tinygui ; then
ewarn "USE=tinygui overrides USE=smallgui"
ebeep
epause 10
fi
games_pkg_setup
}
src_unpack() {
unpack ${A}
if use dedicated || use server ; then
sed \
-e "s:GAMES_BINDIR:${GAMES_BINDIR}:" \
-e "s:GAMES_STATEDIR:${GAMES_STATEDIR}:" \
-e "s/GAMES_USER_DED/${GAMES_USER_DED}/" \
-e "s/GAMES_GROUP/${GAMES_GROUP}/" "${FILESDIR}"/wesnothd.rc \
> "${T}"/wesnothd \
|| die "sed failed"
fi
if ! use nls ; then
cd "${S}"
sed -i \
-e '/^MAN_LANG/d' \
doc/man/Makefile.in \
|| die "sed failed"
fi
}
src_compile() {
local myconf
filter-flags -ftracer -fomit-frame-pointer
if [[ $(gcc-major-version) -eq 3 ]] ; then
filter-flags -fstack-protector
append-flags -fno-stack-protector
fi
if use dedicated || use server ; then
myconf="${myconf} --enable-server"
myconf="${myconf} --enable-campaign-server"
myconf="${myconf} --with-server-uid=${GAMES_USER_DED}"
myconf="${myconf} --with-server-gid=${GAMES_GROUP}"
fi
egamesconf \
--disable-dependency-tracking \
--without-fribidi \
--with-localedir=/usr/share/locale \
--with-icondir=/usr/share/icons \
--with-desktopdir=/usr/share/applications \
--docdir=/usr/share/doc/${PF} \
--enable-python-install \
$(use_enable smallgui) \
$(use_enable tinygui) \
$(use_enable lite) \
$(use_enable static) \
$(use_enable editor) \
$(use_enable tools) \
$(use_enable nls) \
$(use_enable nls dummy-locales) \
$(use_enable !dedicated game) \
${myconf} \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc changelog
if use dedicated || use server; then
keepdir "${GAMES_STATEDIR}/run/wesnothd"
doinitd "${T}"/wesnothd || die "doinitd failed"
fi
prepgamesdirs
}
|