diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-12-06 22:53:59 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-12-06 22:53:59 +0000 |
commit | 8f4436768fb1cef2ba616c7eb09f9d76ddf2c49f (patch) | |
tree | 1ead523289560f6f7b5e78a3328a499680a2cf5f | |
parent | Version bump and switched to gem. (diff) | |
download | gentoo-2-8f4436768fb1cef2ba616c7eb09f9d76ddf2c49f.tar.gz gentoo-2-8f4436768fb1cef2ba616c7eb09f9d76ddf2c49f.tar.bz2 gentoo-2-8f4436768fb1cef2ba616c7eb09f9d76ddf2c49f.zip |
version bump
(Portage version: 2.0.51.22-r3)
-rw-r--r-- | games-strategy/glob2/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/glob2/Manifest | 3 | ||||
-rw-r--r-- | games-strategy/glob2/files/digest-glob2-0.8.16 | 1 | ||||
-rw-r--r-- | games-strategy/glob2/glob2-0.8.16.ebuild | 53 |
4 files changed, 63 insertions, 1 deletions
diff --git a/games-strategy/glob2/ChangeLog b/games-strategy/glob2/ChangeLog index 04878f59d973..d819355ed81c 100644 --- a/games-strategy/glob2/ChangeLog +++ b/games-strategy/glob2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-strategy/glob2 # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.24 2005/10/12 22:55:55 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.25 2005/12/06 22:53:58 mr_bones_ Exp $ + +*glob2-0.8.16 (06 Dec 2005) + + 06 Dec 2005; Michael Sterrett <mr_bones_@gentoo.org> +glob2-0.8.16.ebuild: + version bump 12 Oct 2005; Michael Sterrett <mr_bones_@gentoo.org> glob2-0.8.15.ebuild: add desktop entry support (bug #109043) diff --git a/games-strategy/glob2/Manifest b/games-strategy/glob2/Manifest index 3f211449bb22..3f26fdc56b5e 100644 --- a/games-strategy/glob2/Manifest +++ b/games-strategy/glob2/Manifest @@ -1,4 +1,7 @@ MD5 be3faa436a456146cab34d1a7ba5e534 metadata.xml 546 MD5 25d510561aad18df0279755d4000097b ChangeLog 2895 +MD5 c86c80ad5094eb7ab590f18adb7db0dc out 22878 +MD5 db926e24a25a4e542b0bd9f40351ee60 glob2-0.8.16.ebuild 1285 MD5 bad48144211e306ea91a7571e7982fc9 glob2-0.8.15.ebuild 1073 +MD5 037d75d9848a508583262c6ab6653c9e files/digest-glob2-0.8.16 65 MD5 222d938fd35ab1fb95eaf828c73203d5 files/digest-glob2-0.8.15 65 diff --git a/games-strategy/glob2/files/digest-glob2-0.8.16 b/games-strategy/glob2/files/digest-glob2-0.8.16 new file mode 100644 index 000000000000..021d5e1fca85 --- /dev/null +++ b/games-strategy/glob2/files/digest-glob2-0.8.16 @@ -0,0 +1 @@ +MD5 c612c8278dde0f602fd8388bd961503c glob2-0.8.16.tar.gz 8868021 diff --git a/games-strategy/glob2/glob2-0.8.16.ebuild b/games-strategy/glob2/glob2-0.8.16.ebuild new file mode 100644 index 000000000000..2c3d060ab78b --- /dev/null +++ b/games-strategy/glob2/glob2-0.8.16.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.8.16.ebuild,v 1.1 2005/12/06 22:53:58 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="Real Time Strategy (RTS) game involving a brave army of globs" +HOMEPAGE="http://www.ysagoon.com/glob2/" +SRC_URI="http://epfl.ysagoon.com/~glob2/data/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ppc x86" +IUSE="" + +DEPEND="virtual/opengl + >=media-libs/libsdl-1.2.0 + media-libs/libpng + media-libs/sdl-net + media-libs/sdl-image + media-libs/libvorbis + >=media-libs/speex-1.1 + =media-libs/freetype-2* + sys-libs/zlib" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e "/^glob2linkdir/s:\$(datadir):/usr/share:" \ + data/Makefile.in \ + || die "sed failed" + sed -i \ + -e "/^glob2icondir/s:\$(datadir):/usr/share:" \ + data/icons/Makefile.in \ + || die "sed failed" +} + +src_compile() { + #./configure assumes that vorbis will be installed under PREFIX bug #46352 + egamesconf \ + --with-vorbis=/usr \ + --with-speex=/usr \ + --with-speex-includes=/usr/include/speex \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS README TODO + prepgamesdirs +} |