diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-06 13:42:12 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-06 13:42:12 +0000 |
commit | b26c2b8926bc9d939864d156dc07aecb734cdb03 (patch) | |
tree | c5b4f7e0cf1d0eaba9dbc29787488c5c4f7e3c4b /games-action/moon-buggy/moon-buggy-1.0.51.ebuild | |
parent | Adding lxde-base category metadat.xml (diff) | |
download | gentoo-2-b26c2b8926bc9d939864d156dc07aecb734cdb03.tar.gz gentoo-2-b26c2b8926bc9d939864d156dc07aecb734cdb03.tar.bz2 gentoo-2-b26c2b8926bc9d939864d156dc07aecb734cdb03.zip |
version bump (bug #253508)
(Portage version: 2.1.6.4/cvs/Linux 2.6.27.8 i686)
Diffstat (limited to 'games-action/moon-buggy/moon-buggy-1.0.51.ebuild')
-rw-r--r-- | games-action/moon-buggy/moon-buggy-1.0.51.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/games-action/moon-buggy/moon-buggy-1.0.51.ebuild b/games-action/moon-buggy/moon-buggy-1.0.51.ebuild new file mode 100644 index 000000000000..9563d0b2b4cb --- /dev/null +++ b/games-action/moon-buggy/moon-buggy-1.0.51.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/moon-buggy/moon-buggy-1.0.51.ebuild,v 1.1 2009/01/06 13:42:12 mr_bones_ Exp $ + +EAPI=2 +inherit autotools eutils games + +DESCRIPTION="A simple console game, where you drive a car across the moon's surface" +HOMEPAGE="http://www.seehuhn.de/comp/moon-buggy.html" +SRC_URI="http://www.seehuhn.de/data/${P}.tar.gz + esd? ( http://www.seehuhn.de/data/${PN}-sound-${PV}.tar.gz )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="esd" + +RDEPEND="esd? ( media-sound/esound )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_prepare() { + sed -i \ + -e '/$(DESTDIR)$(bindir)\/moon-buggy -c/d' \ + Makefile.am \ + || die "sed Makefile.am failed" + use esd && epatch sound.patch + rm -f missing + eautoreconf +} + +src_configure() { + egamesconf --sharedstatedir="${GAMES_STATEDIR}" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc ANNOUNCE AUTHORS ChangeLog NEWS README* TODO + touch "${D}${GAMES_STATEDIR}"/${PN}/mbscore + fperms 664 "${GAMES_STATEDIR}"/${PN}/mbscore + prepgamesdirs +} |