diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-09-02 03:01:39 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-09-02 03:01:39 +0000 |
commit | dc16618f7291d018679d16cf9bd9c9896f627cc6 (patch) | |
tree | 8d8fcc9229074add38830b0e3335118ceaa4a251 /games-action | |
parent | revert previous commit. Bug 273173. (diff) | |
download | gentoo-2-dc16618f7291d018679d16cf9bd9c9896f627cc6.tar.gz gentoo-2-dc16618f7291d018679d16cf9bd9c9896f627cc6.tar.bz2 gentoo-2-dc16618f7291d018679d16cf9bd9c9896f627cc6.zip |
version bump (bug #283432)
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/supertuxkart/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/supertuxkart/supertuxkart-0.6.2.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/games-action/supertuxkart/ChangeLog b/games-action/supertuxkart/ChangeLog index 4df784c7a9e7..d477ee45eea1 100644 --- a/games-action/supertuxkart/ChangeLog +++ b/games-action/supertuxkart/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-action/supertuxkart # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.12 2009/05/31 17:08:06 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.13 2009/09/02 03:01:39 mr_bones_ Exp $ + +*supertuxkart-0.6.2 (02 Sep 2009) + + 02 Sep 2009; Michael Sterrett <mr_bones_@gentoo.org> + +supertuxkart-0.6.2.ebuild: + version bump (bug #283432) 31 May 2009; Michael Sterrett <mr_bones_@gentoo.org> supertuxkart-0.6.1a.ebuild: diff --git a/games-action/supertuxkart/supertuxkart-0.6.2.ebuild b/games-action/supertuxkart/supertuxkart-0.6.2.ebuild new file mode 100644 index 000000000000..a3073da2e302 --- /dev/null +++ b/games-action/supertuxkart/supertuxkart-0.6.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.6.2.ebuild,v 1.1 2009/09/02 03:01:39 mr_bones_ Exp $ + +EAPI=2 +inherit autotools eutils games + +DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)" +HOMEPAGE="http://supertuxkart.sourceforge.net/" +SRC_URI="mirror://sourceforge/supertuxkart/files/SuperTuxKart/${PV}/${P}-src.tar.bz2 + mirror://gentoo/${PN}.png" + +LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0 CCPL-Attribution-2.0 CCPL-Sampling-Plus-1.0 public-domain as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=media-libs/plib-1.8.4 + virtual/opengl + virtual/glut + virtual/glu + net-libs/enet + media-libs/libmikmod + media-libs/libvorbis + media-libs/openal + media-libs/libsdl[X,video,audio,joystick]" + +src_prepare() { + sed -i \ + -e '/ENETTREE/d' \ + -e '/src\/enet\/Makefile/d' \ + configure.ac \ + || die "sed failed" + sed -i \ + -e '/SUBDIRS/s/doc//' \ + -e '/pkgdata/d' \ + Makefile.am \ + || die "sed failed" + sed -i \ + -e '/pkgdatadir/s:/games::' \ + -e '/desktop/d' \ + -e '/icon/d' \ + $(find data -name Makefile.am) \ + || die "sed failed" + sed -i \ + -e '/bindir/d' \ + -e '/AM_CPPFLAGS/s:/games::' \ + src/Makefile.am \ + || die "sed failed" + rm -rf src/enet + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + doicon "${DISTDIR}"/${PN}.png + make_desktop_entry ${PN} SuperTuxKart + dodoc AUTHORS ChangeLog README TODO + prepgamesdirs +} |