diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-08-17 02:41:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-08-17 02:41:35 +0000 |
commit | bafedad3b82460c209a9958e913c3e6c73b3de42 (patch) | |
tree | 35f4eb9ca99b8bbb3b6bae0cb9db72146a3365b1 /games-kids | |
parent | Corrected missing dvips-secure.diff. (It was in the patch archive but not app... (diff) | |
download | gentoo-2-bafedad3b82460c209a9958e913c3e6c73b3de42.tar.gz gentoo-2-bafedad3b82460c209a9958e913c3e6c73b3de42.tar.bz2 gentoo-2-bafedad3b82460c209a9958e913c3e6c73b3de42.zip |
ver bump #41126
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/gcompris/ChangeLog | 7 | ||||
-rw-r--r-- | games-kids/gcompris/files/digest-gcompris-6.1 | 1 | ||||
-rw-r--r-- | games-kids/gcompris/gcompris-6.1.ebuild | 46 |
3 files changed, 53 insertions, 1 deletions
diff --git a/games-kids/gcompris/ChangeLog b/games-kids/gcompris/ChangeLog index dc3de36d25f8..e199896f2b88 100644 --- a/games-kids/gcompris/ChangeLog +++ b/games-kids/gcompris/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-kids/gcompris # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.9 2004/07/03 22:24:39 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/ChangeLog,v 1.10 2004/08/17 02:41:35 vapier Exp $ + +*gcompris-6.1 (16 Aug 2004) + + 16 Aug 2004; Mike Frysinger <vapier@gentoo.org> +gcompris-6.1.ebuild: + Version bump #41126 by Felix von Leitner. 03 Jul 2004; Tom Martin <slarti@gentoo.org> gcompris-4.2-r1.ebuild: Added to ~amd64, thanks to Ingo Kemper <viper@globalworld.de> for reporting in diff --git a/games-kids/gcompris/files/digest-gcompris-6.1 b/games-kids/gcompris/files/digest-gcompris-6.1 new file mode 100644 index 000000000000..ed3d470fdb07 --- /dev/null +++ b/games-kids/gcompris/files/digest-gcompris-6.1 @@ -0,0 +1 @@ +MD5 d62021893caf824dfd7e22853d174184 gcompris-6.1.tar.gz 34805253 diff --git a/games-kids/gcompris/gcompris-6.1.ebuild b/games-kids/gcompris/gcompris-6.1.ebuild new file mode 100644 index 000000000000..2420b32c5510 --- /dev/null +++ b/games-kids/gcompris/gcompris-6.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-kids/gcompris/gcompris-6.1.ebuild,v 1.1 2004/08/17 02:41:35 vapier Exp $ + +inherit games eutils + +DESCRIPTION="full featured educational application for children from 3 to 10" +HOMEPAGE="http://ofset.sourceforge.net/gcompris/" +SRC_URI="mirror://sourceforge/gcompris/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="python editor" + +DEPEND="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 + sys-apps/texinfo + app-text/texi2html + python? ( dev-lang/python ) + editor? ( + >=gnome-base/libgnome-1.96.0 + >=gnome-base/libgnomeui-1.96.0 + )" + +src_compile() { + export GNUCHESS="${GAMES_BINDIR}/gnuchess" + econf \ + `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" + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} |