diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-03-10 08:51:20 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-03-10 08:51:20 +0000 |
commit | ac76f383ee640d2c7fc9c12923d8afa3fc9722b6 (patch) | |
tree | 752a475f43055973e1568590521e1aa71c02116d /games-action/supertuxkart | |
parent | Version bump. Fixed manifest (bug #212774). Fixed system-auth-winbind install... (diff) | |
download | gentoo-2-ac76f383ee640d2c7fc9c12923d8afa3fc9722b6.tar.gz gentoo-2-ac76f383ee640d2c7fc9c12923d8afa3fc9722b6.tar.bz2 gentoo-2-ac76f383ee640d2c7fc9c12923d8afa3fc9722b6.zip |
version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-action/supertuxkart')
-rw-r--r-- | games-action/supertuxkart/ChangeLog | 10 | ||||
-rw-r--r-- | games-action/supertuxkart/supertuxkart-0.4.ebuild | 36 |
2 files changed, 44 insertions, 2 deletions
diff --git a/games-action/supertuxkart/ChangeLog b/games-action/supertuxkart/ChangeLog index e4f69b41660f..63353c619454 100644 --- a/games-action/supertuxkart/ChangeLog +++ b/games-action/supertuxkart/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for games-action/supertuxkart -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.8 2007/07/22 00:16:44 nyhm Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.9 2008/03/10 08:51:20 mr_bones_ Exp $ + +*supertuxkart-0.4 (10 Mar 2008) + + 10 Mar 2008; Michael Sterrett <mr_bones_@gentoo.org> + +supertuxkart-0.4.ebuild: + version bump *supertuxkart-0.3 (22 Jul 2007) diff --git a/games-action/supertuxkart/supertuxkart-0.4.ebuild b/games-action/supertuxkart/supertuxkart-0.4.ebuild new file mode 100644 index 000000000000..f9cd4fcb0331 --- /dev/null +++ b/games-action/supertuxkart/supertuxkart-0.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.4.ebuild,v 1.1 2008/03/10 08:51:20 mr_bones_ Exp $ + +inherit eutils games + +DESCRIPTION="A kart racing game starring Tux, the linux penguin (TuxKart fork)" +HOMEPAGE="http://supertuxkart.sourceforge.net/" +SRC_URI="mirror://berlios/${PN}/${P}-src.tar.bz2 + mirror://gentoo/${PN}.png" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=media-libs/plib-1.8.4 + virtual/opengl + media-libs/libmikmod + media-libs/libvorbis + media-libs/openal + media-libs/freealut + media-libs/libsdl" + +src_compile() { + egamesconf --datadir="${GAMES_DATADIR_BASE}" || die + emake || die "emake failed" +} + +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 +} |