blob: c54f055a3c1cd06e74bdffab11bf28d4c4b4286a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/gcompris-6.5.ebuild,v 1.2 2005/03/17 07:01:52 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="full featured educational application for children from 3 to 10"
HOMEPAGE="http://gcompris.net"
SRC_URI="mirror://sourceforge/gcompris/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="python editor"
RDEPEND="virtual/x11
>=dev-libs/glib-2.0
=x11-libs/gtk+-2*
>=gnome-base/libgnomecanvas-2.0.2
>=dev-python/gnome-python-2.0
media-libs/sdl-mixer
media-libs/libsdl
dev-libs/libxml2
dev-libs/popt
games-board/gnuchess
python? ( dev-lang/python )
editor? (
>=gnome-base/libgnome-1.96.0
>=gnome-base/libgnomeui-1.96.0
)"
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"
econf \
--disable-dependency-tracking \
$(use_with python python /usr/bin/python) \
$(use_with 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"
use editor || rm -f "${D}/usr/share/applications/gcompris-edit.desktop"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
prepgamesdirs
}
|