blob: 95f8b89f96b976adfeca63126c5d11a46319aac2 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/gnubg/gnubg-20101126.ebuild,v 1.4 2011/03/17 11:33:07 xarthisius Exp $
EAPI=2
PYTHON_DEPEND="python? 2"
inherit autotools eutils python games
DESCRIPTION="GNU BackGammon"
HOMEPAGE="http://www.gnubg.org/"
SRC_URI="http://www.gnubg.org/media/sources/${PN}-source-SNAPSHOT-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ppc64 x86 ~x86-fbsd"
IUSE="gtk opengl python threads"
GTK_DEPS="
x11-libs/gtk+:2
x11-libs/cairo
x11-libs/pango"
RDEPEND="dev-libs/glib:2
media-libs/libpng
dev-libs/libxml2
media-libs/freetype:2
media-libs/libcanberra
gtk? ( ${GTK_DEPS} )
opengl? (
${GTK_DEPS}
x11-libs/gtkglext
>=media-libs/ftgl-2.1.2-r1
)
sys-libs/readline
python? ( dev-lang/python )
media-fonts/ttf-bitstream-vera
virtual/libintl
dev-db/sqlite:3"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
S=${WORKDIR}/${PN}
pkg_setup() {
python_set_active_version 2
games_pkg_setup
}
src_prepare() {
# use ${T} instead of /tmp for constructing credits (bug #298275)
sed -i \
-e 's:/tmp:${T}:' \
credits.sh \
|| die 'sed failed'
epatch "${FILESDIR}"/${P}-build.patch
python_convert_shebangs -r 2 python-config
eautoreconf
}
src_configure() {
egamesconf \
--disable-dependency-tracking \
--localedir=/usr/share/locale \
--docdir=/usr/share/doc/${PF}/html \
$(use_enable threads) \
$(use_with python) \
$(use gtk || use opengl && echo --with-gtk) \
$(use_with opengl board3d)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto "${GAMES_DATADIR}/${PN}"
doins ${PN}.weights *bd || die "doins failed"
dodoc AUTHORS README NEWS
dosym /usr/share/fonts/ttf-bitstream-vera "${GAMES_DATADIR}"/${PN}/fonts
newicon textures/logo.png gnubg.png
make_desktop_entry "gnubg -w" "GNU Backgammon"
prepgamesdirs
}
|