diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-06 18:17:28 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-06 18:17:28 +0000 |
commit | db8991fe2bf52c7ec519d24d45745d5a9ead3594 (patch) | |
tree | 7416aad3389665c8d295cf96c66081dcedbb37b7 /games-kids | |
parent | PYTHON_INSPET should also be filtered (diff) | |
download | gentoo-2-db8991fe2bf52c7ec519d24d45745d5a9ead3594.tar.gz gentoo-2-db8991fe2bf52c7ec519d24d45745d5a9ead3594.tar.bz2 gentoo-2-db8991fe2bf52c7ec519d24d45745d5a9ead3594.zip |
version bump (bug #90351)
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/gcompris/ChangeLog | 8 | ||||
-rw-r--r-- | games-kids/gcompris/Manifest | 4 | ||||
-rw-r--r-- | games-kids/gcompris/files/digest-gcompris-6.5.3 | 1 | ||||
-rw-r--r-- | games-kids/gcompris/gcompris-6.5.3.ebuild | 64 |
4 files changed, 75 insertions, 2 deletions
diff --git a/games-kids/gcompris/ChangeLog b/games-kids/gcompris/ChangeLog index c4f45b20aebe..bee8d1b1a348 100644 --- a/games-kids/gcompris/ChangeLog +++ b/games-kids/gcompris/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-kids/gcompris # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.13 2005/03/17 07:01:52 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.14 2005/06/06 18:17:28 mr_bones_ Exp $ + +*gcompris-6.5.3 (06 Jun 2005) + + 06 Jun 2005; Michael Sterrett <mr_bones_@gentoo.org> + +gcompris-6.5.3.ebuild: + version bump (bug #90351) 17 Mar 2005; Michael Sterrett <mr_bones_@gentoo.org> gcompris-6.5.ebuild: don't install the editor desktop file if editor wasn't installed diff --git a/games-kids/gcompris/Manifest b/games-kids/gcompris/Manifest index b48a6f3f5d21..5b513ea7fe59 100644 --- a/games-kids/gcompris/Manifest +++ b/games-kids/gcompris/Manifest @@ -1,6 +1,8 @@ -MD5 a76a31936725aa5b6c526addcbffbdc7 ChangeLog 2145 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 ddb472c19afc5981ea11da6b8be4e8bc gcompris-6.5.ebuild 1683 +MD5 a76a31936725aa5b6c526addcbffbdc7 ChangeLog 2145 +MD5 ddb472c19afc5981ea11da6b8be4e8bc gcompris-6.5.3.ebuild 1683 MD5 46a13f8cd1466857c71a81f3f1632754 gcompris-6.1.ebuild 1192 MD5 8f4750e2797fa26da627f6977a32ac8d files/digest-gcompris-6.5 66 +MD5 557b7f4481b6c30ca79251c8a19af714 files/digest-gcompris-6.5.3 68 MD5 ed46e5543c3cac51faffd85ee6f2163e files/digest-gcompris-6.1 66 diff --git a/games-kids/gcompris/files/digest-gcompris-6.5.3 b/games-kids/gcompris/files/digest-gcompris-6.5.3 new file mode 100644 index 000000000000..3e0d15c3f1e1 --- /dev/null +++ b/games-kids/gcompris/files/digest-gcompris-6.5.3 @@ -0,0 +1 @@ +MD5 11cc5c1fe2ebb583767884e18307534e gcompris-6.5.3.tar.gz 43519786 diff --git a/games-kids/gcompris/gcompris-6.5.3.ebuild b/games-kids/gcompris/gcompris-6.5.3.ebuild new file mode 100644 index 000000000000..c7c5efcddccc --- /dev/null +++ b/games-kids/gcompris/gcompris-6.5.3.ebuild @@ -0,0 +1,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.3.ebuild,v 1.1 2005/06/06 18:17:28 mr_bones_ 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="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 +} |