diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-28 23:36:44 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-28 23:36:44 +0000 |
commit | 959030fdb28fa5549ac37dbb335d3094d2e689d3 (patch) | |
tree | 6788f37060126aa335797945a71fc4fd7c20187d /games-arcade/moagg | |
parent | we work with bash3 too #58708 (diff) | |
download | historical-959030fdb28fa5549ac37dbb335d3094d2e689d3.tar.gz historical-959030fdb28fa5549ac37dbb335d3094d2e689d3.tar.bz2 historical-959030fdb28fa5549ac37dbb335d3094d2e689d3.zip |
version bump (bug #58480) - comments from Gard Spreemann
Diffstat (limited to 'games-arcade/moagg')
-rw-r--r-- | games-arcade/moagg/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/moagg/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/moagg/files/digest-moagg-0.13 | 2 | ||||
-rw-r--r-- | games-arcade/moagg/moagg-0.13.ebuild | 48 |
4 files changed, 59 insertions, 2 deletions
diff --git a/games-arcade/moagg/ChangeLog b/games-arcade/moagg/ChangeLog index c7cefd39afb8..dba2a98bfc60 100644 --- a/games-arcade/moagg/ChangeLog +++ b/games-arcade/moagg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/moagg # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/moagg/ChangeLog,v 1.2 2004/07/26 10:27:17 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/moagg/ChangeLog,v 1.3 2004/07/28 23:36:44 mr_bones_ Exp $ + +*moagg-0.13 (28 Jul 2004) + + 28 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> +moagg-0.13.ebuild: + version bump (bug #58480) - comments from Gard Spreemann 26 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> moagg-0.12.ebuild: work around reported sandbox errors diff --git a/games-arcade/moagg/Manifest b/games-arcade/moagg/Manifest index 4af43e3e2d12..d5adf76bfa0d 100644 --- a/games-arcade/moagg/Manifest +++ b/games-arcade/moagg/Manifest @@ -1,5 +1,7 @@ MD5 ff3c89cd9358d65ecbf06f85c1d6b4c7 moagg-0.12.ebuild 1095 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 894f667694e56ffbe5969342e4525186 ChangeLog 562 +MD5 044dd6357afb196da958125f22651886 ChangeLog 724 +MD5 f185c41d175a5612bb0d4209034368ba moagg-0.13.ebuild 1331 MD5 79ba754f5ae799f7cf0ba0049c89bf08 files/digest-moagg-0.12 135 MD5 993eabe58c12d6d73923eda539e8a0e0 files/0.12-Makefile.in.patch 1154 +MD5 5f05ea29fe30871e68d6728fd1b1e5e8 files/digest-moagg-0.13 135 diff --git a/games-arcade/moagg/files/digest-moagg-0.13 b/games-arcade/moagg/files/digest-moagg-0.13 new file mode 100644 index 000000000000..4db3df1b00b0 --- /dev/null +++ b/games-arcade/moagg/files/digest-moagg-0.13 @@ -0,0 +1,2 @@ +MD5 812c93f597131e340b3e1951ef6c79ce moagg-0.13-src.tar.bz2 176261 +MD5 75d7a329579654df94870647b0dec7cc moagg-0.13-data.tar.bz2 401280 diff --git a/games-arcade/moagg/moagg-0.13.ebuild b/games-arcade/moagg/moagg-0.13.ebuild new file mode 100644 index 000000000000..be7b9590d428 --- /dev/null +++ b/games-arcade/moagg/moagg-0.13.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/moagg/moagg-0.13.ebuild,v 1.1 2004/07/28 23:36:44 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="MOAGG (Mother Of All Gravity Games) combines several different gravity-type games" +HOMEPAGE="http://moagg.sourceforge.net" +SRC_URI="mirror://sourceforge/moagg/${P}-src.tar.bz2 + mirror://sourceforge/moagg/${P}-data.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND=">=media-libs/libsdl-1.2.6 + >=media-libs/sdl-mixer-1.2.4 + >=media-libs/sdl-gfx-2.0.8 + >=media-libs/freetype-2.1.4 + >=dev-libs/expat-1.95.6 + =media-libs/paragui-1.0*" + +src_unpack() { + unpack ${A} + cd ${S} + # We don't want the docs inside ${GAMES_DATADIR}/doc, so we don't + # let "make install" do the doc install. + sed -i \ + -e '/^install:/s/install-doc//' Makefile.in \ + || die "sed Makefile.in failed" +} + +src_compile() { + # Turn off all the tests as they try to access /dev/svga, thus violating + # the sandbox. + egamesconf \ + --disable-sdltest \ + --disable-freetypetest \ + --disable-paraguitest \ + --disable-testsuite || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog README TODO doc/*.tex + prepgamesdirs +} |