diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-09-10 00:47:52 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-09-10 00:47:52 +0000 |
commit | f6d5b87a378df3c9265fd902895be857292c4a9f (patch) | |
tree | 4880f815109058dfe4250f804e94092387bea778 /games-strategy/glob2 | |
parent | whitespace (diff) | |
download | gentoo-2-f6d5b87a378df3c9265fd902895be857292c4a9f.tar.gz gentoo-2-f6d5b87a378df3c9265fd902895be857292c4a9f.tar.bz2 gentoo-2-f6d5b87a378df3c9265fd902895be857292c4a9f.zip |
Version bump, bug #191634
(Portage version: 2.1.3.9)
Diffstat (limited to 'games-strategy/glob2')
-rw-r--r-- | games-strategy/glob2/ChangeLog | 7 | ||||
-rw-r--r-- | games-strategy/glob2/files/digest-glob2-0.9.1 | 3 | ||||
-rw-r--r-- | games-strategy/glob2/glob2-0.9.1.ebuild | 45 |
3 files changed, 54 insertions, 1 deletions
diff --git a/games-strategy/glob2/ChangeLog b/games-strategy/glob2/ChangeLog index 86f7ccf85614..e8f299a30324 100644 --- a/games-strategy/glob2/ChangeLog +++ b/games-strategy/glob2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-strategy/glob2 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.34 2007/04/19 08:05:07 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.35 2007/09/10 00:47:51 nyhm Exp $ + +*glob2-0.9.1 (10 Sep 2007) + + 10 Sep 2007; Tristan Heaven <nyhm@gentoo.org> +glob2-0.9.1.ebuild: + Version bump, bug #191634 *glob2-0.8.23 (19 Apr 2007) diff --git a/games-strategy/glob2/files/digest-glob2-0.9.1 b/games-strategy/glob2/files/digest-glob2-0.9.1 new file mode 100644 index 000000000000..b2272a0c8457 --- /dev/null +++ b/games-strategy/glob2/files/digest-glob2-0.9.1 @@ -0,0 +1,3 @@ +MD5 507da29c310f199f9b1a9a5f335b7a7a glob2-0.9.1.tar.gz 10077967 +RMD160 1b1ba987c696a857b74f33e8ff9dbbddc71bf9ec glob2-0.9.1.tar.gz 10077967 +SHA256 84bb86e403a0a2f62efc416ddc60ffd7c2323c97bc38a6a22a37526b88a2c405 glob2-0.9.1.tar.gz 10077967 diff --git a/games-strategy/glob2/glob2-0.9.1.ebuild b/games-strategy/glob2/glob2-0.9.1.ebuild new file mode 100644 index 000000000000..9ddc78c212e5 --- /dev/null +++ b/games-strategy/glob2/glob2-0.9.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.9.1.ebuild,v 1.1 2007/09/10 00:47:51 nyhm Exp $ + +inherit eutils games + +DESCRIPTION="Real Time Strategy (RTS) game involving a brave army of globs" +HOMEPAGE="http://globulation2.org/" +SRC_URI="http://dl.sv.nongnu.org/releases/glob2/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="virtual/opengl + virtual/glu + dev-libs/boost + media-libs/libsdl + media-libs/sdl-net + media-libs/sdl-ttf + media-libs/sdl-image + media-libs/libvorbis + media-libs/speex" +DEPEND="${RDEPEND} + dev-util/scons" + +src_compile() { + scons \ + CXXFLAGS="${CXXFLAGS}" \ + LINKFLAGS="${LDFLAGS}" \ + INSTALLDIR="${GAMES_DATADIR}"/${PN} \ + || die "scons failed again" +} + +src_install() { + dogamesbin src/${PN} || die "dogamesbin failed" + insinto "${GAMES_DATADIR}"/${PN} + doins -r campaigns data maps scripts || die "doins failed" + find "${D}/${GAMES_DATADIR}"/${PN} -name SConscript -exec rm -f {} \; + doicon data/icons/glob2-icon-48x48.png + domenu data/glob2.desktop + dodoc AUTHORS README TODO + prepgamesdirs +} |