diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-16 09:04:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-03-16 09:04:28 +0000 |
commit | fa24bdced13a5e93f44b8d2331155ff4a9f20d74 (patch) | |
tree | 7057baf689d0a64a859856ea4d2fbbde49582ea9 /games-kids/gcompris/gcompris-6.5.ebuild | |
parent | Stable amd64. (diff) | |
download | gentoo-2-fa24bdced13a5e93f44b8d2331155ff4a9f20d74.tar.gz gentoo-2-fa24bdced13a5e93f44b8d2331155ff4a9f20d74.tar.bz2 gentoo-2-fa24bdced13a5e93f44b8d2331155ff4a9f20d74.zip |
version bump (bug #82411)
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-kids/gcompris/gcompris-6.5.ebuild')
-rw-r--r-- | games-kids/gcompris/gcompris-6.5.ebuild | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/games-kids/gcompris/gcompris-6.5.ebuild b/games-kids/gcompris/gcompris-6.5.ebuild new file mode 100644 index 000000000000..2103c25d050b --- /dev/null +++ b/games-kids/gcompris/gcompris-6.5.ebuild @@ -0,0 +1,63 @@ +# 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.1 2005/03/16 09:04:28 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" + dodoc AUTHORS ChangeLog NEWS README THANKS TODO + prepgamesdirs +} |