blob: e82a03df6ed786ccd7f6e966b51df89c9ad38eee (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/gcompris-9.2.2.ebuild,v 1.8 2010/10/21 11:43:36 tupone Exp $
EAPI=2
PYTHON_DEPEND="python? 2:2.6"
PYTHON_USE_WITH_OPT="python"
PYTHON_USE_WITH="sqlite threads"
inherit autotools eutils python versionator games
DESCRIPTION="full featured educational application for children from 2 to 10"
HOMEPAGE="http://gcompris.net/"
SRC_URI="mirror://sourceforge/gcompris/${PN}-$(replace_version_separator 2 -).tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="debug gnet python"
RDEPEND="x11-libs/gtk+:2
media-libs/gstreamer:0.10
media-libs/gst-plugins-good
media-plugins/gst-plugins-ogg
media-plugins/gst-plugins-vorbis
media-libs/sdl-mixer
media-libs/libsdl
dev-libs/libxml2
dev-libs/popt
virtual/libintl
games-board/gnuchess
dev-db/sqlite:3
gnet? ( net-libs/gnet:2 )
python? ( dev-python/pygtk )"
DEPEND="${RDEPEND}
gnome-base/gnome-common
dev-perl/XML-Parser
sys-devel/gettext
sys-apps/texinfo
app-text/texi2html
dev-util/pkgconfig"
RDEPEND="${RDEPEND}
media-gfx/tuxpaint
sci-electronics/gnucap"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-2)
pkg_setup() {
if use python; then
python_set_active_version 2
python_pkg_setup
fi
games_pkg_setup
}
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch \
"${FILESDIR}"/${P}-gtk2.22.patch
cp /usr/share/gettext/config.rpath .
if has_version '>=x11-libs/gtk+-2.20:2' ; then
sed -i \
-e 's:GTK_WIDGET_REALIZED:gtk_widget_get_realized:g' \
-e 's:GTK_WIDGET_VISIBLE:gtk_widget_get_visible:g' \
-e 's:GTK_WIDGET_DRAWABLE:gtk_widget_is_drawable:g' \
-e 's:GTK_WIDGET_HAS_FOCUS:gtk_widget_has_focus:g' \
-e 's:GTK_WIDGET_HAS_FOCUS:gtk_widget_has_focus:g' \
-e 's:GTK_WIDGET_MAPPED:gtk_widget_get_mapped:g' \
./src/goocanvas/src/goocanvaswidget.c \
./src/goocanvas/src/goocanvas.c \
./src/goocanvas/src/goocanvasatk.c \
|| die 'sed failed'
fi
eautoreconf
}
src_configure() {
GNUCHESS="${GAMES_BINDIR}"/gnuchess \
egamesconf \
--disable-dependency-tracking \
--datarootdir="${GAMES_DATADIR}" \
--datadir="${GAMES_DATADIR}" \
--localedir=/usr/share/locale \
--infodir=/usr/share/info \
$(use_with python python "$(PYTHON -a)") \
$(use_enable debug) \
$(use_enable gnet) \
--enable-sqlite \
--enable-py-build-only
}
src_compile() {
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
prepgamesdirs
}
|