blob: 8e34df643d39cee6f9d12cc90166fda86c2257d9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/pioneers/pioneers-0.9.33.ebuild,v 1.4 2007/03/12 13:50:22 genone Exp $
inherit eutils gnome2
MY_P="pioneers-${PV}"
DESCRIPTION="A clone of the popular board game The Settlers of Catan"
HOMEPAGE="http://pio.sourceforge.net/"
SRC_URI="mirror://sourceforge/pio/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls debug X"
RDEPEND=">=dev-libs/glib-2.4
>=gnome-base/libgnome-2.10
X? ( >=x11-libs/gtk+-2.4
>=app-text/scrollkeeper-0.3 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${MY_P}
src_compile() {
export G2CONF="${G2CONF} `use_enable nls`"
export G2CONF="${G2CONF} `use_enable debug`"
if use X ; then
gnome2_src_compile
else
elog
elog "Only building console server"
elog
econf ${G2CONF} || die "./configure failure"
emake || die "emake failed"
fi
}
src_install() {
DOCS="AUTHORS ChangeLog README TODO NEWS"
if use X ; then
gnome2_src_install
else
make DESTDIR=${D} install
dodoc ${DOCS}
fi
}
|