blob: 12425b6b809cbf80ef5168dae4816e13a45e4536 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-strategy/gwp/gwp-0.4.0-r2.ebuild,v 1.5 2011/03/01 07:29:03 mr_bones_ Exp $
EAPI=2
inherit eutils gnome2
DESCRIPTION="GNOME client for the classic PBEM strategy game VGA Planets 3"
HOMEPAGE="http://gwp.lunix.com.ar/"
SRC_URI="http://gwp.lunix.com.ar/releases/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="nls opengl python"
RDEPEND="x11-libs/gtk+:2
=gnome-base/libgnomeui-2*
=gnome-base/libglade-2*
app-text/scrollkeeper
dev-libs/libpcre
nls? ( virtual/libintl )
opengl? ( =x11-libs/gtkglext-1* )
python? ( =dev-python/pygtk-2* )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_prepare() {
gnome2_src_prepare
epatch \
"${FILESDIR}"/${P}-gcc41.patch \
"${FILESDIR}"/${P}-exec-stack.patch
sed -i \
-e '/ -O1/d' \
-e '/ -g$/d' \
src/Makefile.in \
|| die "sed failed"
}
src_compile() {
gnome2_src_compile \
$(use_enable nls) \
$(use_enable opengl gtkglext) \
$(use_enable python)
}
src_install() {
DOCS="AUTHORS ChangeLog CHANGES README TODO" \
gnome2_src_install
rm -rf "${D}"/usr/share/doc/gwp
}
|