diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2010-12-02 07:28:57 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2010-12-02 07:28:57 +0000 |
commit | f49276c1d8cfa99d5c076bae9a0977eb8f3d5102 (patch) | |
tree | 70ff1fbc37f4f2e0015797267f64cd788966170a /games-kids | |
parent | Removed automake restirction to 1.6 (diff) | |
download | gentoo-2-f49276c1d8cfa99d5c076bae9a0977eb8f3d5102.tar.gz gentoo-2-f49276c1d8cfa99d5c076bae9a0977eb8f3d5102.tar.bz2 gentoo-2-f49276c1d8cfa99d5c076bae9a0977eb8f3d5102.zip |
Version bump to 1.8.1 Bug #321363
(Portage version: 2.1.9.25/cvs/Linux i686)
Diffstat (limited to 'games-kids')
-rw-r--r-- | games-kids/tuxtype/ChangeLog | 10 | ||||
-rw-r--r-- | games-kids/tuxtype/tuxtype-1.5.16.ebuild | 7 | ||||
-rw-r--r-- | games-kids/tuxtype/tuxtype-1.8.1.ebuild | 40 |
3 files changed, 52 insertions, 5 deletions
diff --git a/games-kids/tuxtype/ChangeLog b/games-kids/tuxtype/ChangeLog index 1393bb2a517d..1ef9102fa3f3 100644 --- a/games-kids/tuxtype/ChangeLog +++ b/games-kids/tuxtype/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-kids/tuxtype -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxtype/ChangeLog,v 1.13 2008/07/31 19:54:14 mr_bones_ Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxtype/ChangeLog,v 1.14 2010/12/02 07:28:54 tupone Exp $ + +*tuxtype-1.8.1 (02 Dec 2010) + + 02 Dec 2010; Tupone Alfredo <tupone@gentoo.org> tuxtype-1.5.16.ebuild, + +tuxtype-1.8.1.ebuild: + Version bump to 1.8.1 Bug #321363 by Theofilos Intzoglou 31 Jul 2008; Michael Sterrett <mr_bones_@gentoo.org> tuxtype-1.5.16.ebuild: diff --git a/games-kids/tuxtype/tuxtype-1.5.16.ebuild b/games-kids/tuxtype/tuxtype-1.5.16.ebuild index d47c3a6cd452..62c47f60ac6e 100644 --- a/games-kids/tuxtype/tuxtype-1.5.16.ebuild +++ b/games-kids/tuxtype/tuxtype-1.5.16.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxtype/tuxtype-1.5.16.ebuild,v 1.3 2008/07/31 19:54:14 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxtype/tuxtype-1.5.16.ebuild,v 1.4 2010/12/02 07:28:57 tupone Exp $ inherit eutils games @@ -13,11 +13,12 @@ SLOT="0" KEYWORDS="amd64 ppc sparc x86" IUSE="" -DEPEND="media-libs/libsdl +RDEPEND="media-libs/libsdl media-libs/sdl-pango media-libs/sdl-mixer media-libs/sdl-image media-libs/sdl-ttf" +DEPEND="${RDEPEND}" S=${WORKDIR}/tuxtype_w_fonts-${PV} diff --git a/games-kids/tuxtype/tuxtype-1.8.1.ebuild b/games-kids/tuxtype/tuxtype-1.8.1.ebuild new file mode 100644 index 000000000000..920e8721bd53 --- /dev/null +++ b/games-kids/tuxtype/tuxtype-1.8.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-kids/tuxtype/tuxtype-1.8.1.ebuild,v 1.1 2010/12/02 07:28:54 tupone Exp $ +EAPI=2 + +inherit eutils games + +DESCRIPTION="Typing tutorial with lots of eye-candy" +HOMEPAGE="http://alioth.debian.org/projects/tux4kids/" +SRC_URI="http://alioth.debian.org/frs/download.php/3270/tuxtype_w_fonts-${PV}.tar.gz" + +LICENSE="GPL-2 OFL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="media-libs/libsdl + media-libs/sdl-pango + media-libs/sdl-mixer + media-libs/sdl-image + media-libs/sdl-ttf" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/tuxtype_w_fonts-${PV} + +src_prepare() { + sed -i \ + -e 's:$(prefix)/share:'${GAMES_DATADIR}':g' \ + -e 's:$(prefix)/doc/$(PACKAGE):/usr/share/doc/'${PF}':g' \ + $(find -name Makefile.in) || die "fixing Makefile paths" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + prepalldocs + rm -f "${D}"/usr/share/doc/${PF}/{COPYING,INSTALL}* + doicon ${PN}.ico + make_desktop_entry ${PN} TuxTyping /usr/share/pixmaps/${PN}.ico + prepgamesdirs +} |