summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-05-05 20:20:27 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-05-05 20:20:27 +0000
commitee524e82c43e68851798f664c9419fc1b6f11379 (patch)
treecd8d5545a2294131a86a874be6212b591cc0991a /games-strategy
parentRespect CFLAGS/LDFLAGS; add ~amd64 keyword (diff)
downloadhistorical-ee524e82c43e68851798f664c9419fc1b6f11379.tar.gz
historical-ee524e82c43e68851798f664c9419fc1b6f11379.tar.bz2
historical-ee524e82c43e68851798f664c9419fc1b6f11379.zip
removed
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/glob2/glob2-0.9.2.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/games-strategy/glob2/glob2-0.9.2.ebuild b/games-strategy/glob2/glob2-0.9.2.ebuild
deleted file mode 100644
index 69a403459497..000000000000
--- a/games-strategy/glob2/glob2-0.9.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.9.2.ebuild,v 1.1 2008/02/24 09:19:30 mr_bones_ 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-3"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-RDEPEND="virtual/opengl
- virtual/glu
- >=dev-libs/boost-1.34
- 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-0.97"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i '1i SConsignFile()' SConstruct || die "sed failed"
-}
-
-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 {} \;
- newicon data/icons/glob2-icon-48x48.png ${PN}.png
- make_desktop_entry glob2 "Globulation 2"
- dodoc AUTHORS README*
- prepgamesdirs
-}