summaryrefslogtreecommitdiff
path: root/games-engines/fife/fife-9999.ebuild
diff options
context:
space:
mode:
authorCtibor <ctibor.brancik@seznam.cz>2015-01-30 20:38:47 +0100
committerCtibor <ctibor.brancik@seznam.cz>2015-01-30 20:38:47 +0100
commit8c63f5900555fbb250d00d7dd0dba6d4593fbed3 (patch)
tree0c3704c9d44f9f6a5a5daf9b0b6100712158cd7e /games-engines/fife/fife-9999.ebuild
parentefe5d573092658a1fb6c9c41dfe41a3983a98450 (diff)
downloadbrancik-overlay-8c63f5900555fbb250d00d7dd0dba6d4593fbed3.tar.gz
brancik-overlay-8c63f5900555fbb250d00d7dd0dba6d4593fbed3.tar.bz2
Removed unnecessary ebuilds that have been added to the main tree already or are not needed anymore.
Diffstat (limited to 'games-engines/fife/fife-9999.ebuild')
-rwxr-xr-xgames-engines/fife/fife-9999.ebuild68
1 files changed, 0 insertions, 68 deletions
diff --git a/games-engines/fife/fife-9999.ebuild b/games-engines/fife/fife-9999.ebuild
deleted file mode 100755
index 580177e..0000000
--- a/games-engines/fife/fife-9999.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-PYTHON_DEPEND="2"
-
-inherit subversion python boost-utils
-
-DESCRIPTION="Flexible Isometric Free Engine"
-HOMEPAGE="http://fifengine.de/"
-
-ESVN_REPO_URI="http://fife.svn.cvsdude.com/engine/trunk"
-
-LICENSE="LGPL-2"
-
-SLOT="0"
-IUSE="opengl debug profile"
-
-RDEPEND="dev-libs/boost
- dev-python/pyyaml
- media-libs/libsdl
- media-libs/sdl-ttf
- media-libs/sdl-image[png]
- media-libs/libvorbis
- media-libs/libogg
- media-libs/openal
- sys-libs/zlib
- x11-libs/libXcursor
- opengl? ( virtual/opengl virtual/glu dev-games/guichan[opengl] )
- dev-games/guichan[sdl]
- media-libs/libpng
- x11-libs/libXext
-"
-
-DEPEND="${RDEPEND}
- dev-util/scons
- dev-lang/swig
-"
-
-src_prepare() {
- #remove bundled libs
- rm -r ext
- epatch "${FILESDIR}/${PN}-0.3.1-unbundle-libpng.patch"
-}
-
-src_compile() {
- local SCONS_ARGS=""
- if use debug; then
- SCONS_ARGS="$SCONS_ARGS --enable-debug"
- fi
-
- if ! use opengl; then
- SCONS_ARGS="$SCONS_ARGS --disable-opengl"
- fi
-
- if use profile; then
- SCONS_ARGS="$SCONS_ARGS --enable-profile"
- fi
-
- scons --python-prefix="${D}"/$(python_get_sitedir) --prefix="${D}"/usr "$SCONS_ARGS"
-}
-
-src_install() {
- add_boost_paths
- scons install-python --python-prefix="${D}/$(python_get_sitedir)" --prefix="${D}/usr" || die 'install failed'
-}