blob: a0c3fea88d8508de3ea4459734b7994243b2bd05 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-games/gnome-games-2.14.2.1.ebuild,v 1.2 2006/07/01 17:24:30 sebastian Exp $
inherit eutils gnome2 autotools
DESCRIPTION="Collection of games for the GNOME desktop"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2 FDL-1.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="artworkextra guile"
RDEPEND=">=gnome-base/gconf-2
>=gnome-base/libgnomeui-2
>=gnome-base/libgnome-2
>=x11-libs/gtk+-2.8
>=gnome-base/librsvg-2
>=gnome-base/libglade-2
>=dev-libs/glib-2.6.3
>=gnome-base/gnome-vfs-2
>=x11-libs/cairo-1
guile? ( >=dev-util/guile-1.6.5 )
artworkextra? ( gnome-extra/gnome-games-extra-data )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
>=dev-util/intltool-0.29
>=sys-devel/gettext-0.10.40
>=app-text/scrollkeeper-0.3.8"
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO"
pkg_setup() {
GAMES_GROUP=${GAMES_GROUP:-games}
enewgroup "${GAMES_GROUP}"
G2CONF="--with-scores-group=${GAMES_GROUP} \
$(use_enable guile)"
}
src_unpack() {
gnome2_src_unpack
# Resolve symbols at execution time in setgid binaries
epatch ${FILESDIR}/${PN}-2.14.0-no_lazy_bindings.patch
# Implement --enable-guile switch
epatch ${FILESDIR}/${PN}-2.13.1-guile_switch.patch
eautoreconf
}
src_install() {
gnome2_src_install
# Documentation install for each of the games
for game in \
$(find . -maxdepth 1 -type d ! -name po ! -name libgames-support); do
docinto ${game}
for doc in AUTHORS ChangeLog NEWS README TODO; do
[ -s ${game}/${doc} ] && dodoc ${game}/${doc}
done
done
# Avoid overwriting previous .scores files
local basefile
for scorefile in ${D}/var/lib/games/*.scores; do
basefile=$(basename $scorefile)
if [ -s "${ROOT}/var/lib/games/${basefile}" ]; then
rm ${scorefile}
fi
done
}
|