blob: 08d61a48a329fbdbb3a6a7631513db14c90cb58c (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/gcompris-6.5.3-r1.ebuild,v 1.4 2006/12/05 18:13:13 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="full featured educational application for children from 2 to 10"
HOMEPAGE="http://gcompris.net"
SRC_URI="mirror://sourceforge/gcompris/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="x11-libs/libXrandr
>=dev-libs/glib-2.0
=x11-libs/gtk+-2*
>=gnome-base/libgnomecanvas-2.0.2
media-libs/sdl-mixer
media-libs/libsdl
dev-libs/libxml2
dev-libs/popt
games-board/gnuchess"
DEPEND="${RDEPEND}
sys-apps/texinfo
app-text/texi2html"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/^install-data-am/s/install-libgcomprisincludeHEADERS//' \
src/gcompris/Makefile.in \
|| die "sed failed"
}
src_compile() {
export GNUCHESS="${GAMES_BINDIR}/gnuchess"
# $(use_with editor) - editor didn't compile for me.
# $(use_with python python /usr/bin/python) - doesn't seem to work with 2.4
econf \
--disable-dependency-tracking \
--without-python \
--without-editor \
|| die
emake -j1 || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed"
# Crashed for me
rm -rf "${D}/usr/share/gcompris/boards/watercycle"*
rm -f "${D}/usr/share/gcompris/boards/followline.xml"
# mailing list reports crash
rm -f "${D}/usr/share/gcompris/boards/click_on_letter.xml"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
prepgamesdirs
}
|