summaryrefslogtreecommitdiff
path: root/games-rpg/planeshift
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-12-12 03:30:58 +0200
committerGluzskiy Alexandr <sss123next@list.ru>2010-12-12 03:30:58 +0200
commit79c46ac8e5c3c0ab7e01050eb6178aac7c1dc52e (patch)
tree8093811434b15503824bfe78ade9c3e0ecbd7133 /games-rpg/planeshift
parent88812708bf99b87a1d8ae88a8d8a2788e4e44d46 (diff)
deleted: games-rpg/planeshift/planeshift-9999.ebuild
Diffstat (limited to 'games-rpg/planeshift')
-rw-r--r--games-rpg/planeshift/planeshift-9999.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/games-rpg/planeshift/planeshift-9999.ebuild b/games-rpg/planeshift/planeshift-9999.ebuild
deleted file mode 100644
index d8186be..0000000
--- a/games-rpg/planeshift/planeshift-9999.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="1"
-
-inherit eutils autotools subversion games
-
-DESCRIPTION="A 3D Fantasy MMORPG"
-HOMEPAGE="http://planeshift.it"
-SRC_URI=""
-RESTRICT="mirror"
-
-IUSE="mysql"
-SLOT=""
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~amd64"
-
-ESVN_REPO_URI="https://planeshift.svn.sourceforge.net/svnroot/planeshift/stable"
-ESVN_STORE_DIR="${DISTDIR}/svn-src"
-ESVN_PROJECT="${PN/-svn}"
-ESVN_BOOTSTRAP="./autogen.sh"
-
-RDEPEND="${DEPEND}
-"
-DEPEND="${COMMON_DEPEND}
- sys-devel/autoconf
- sys-devel/automake
- dev-util/ftjam
- dev-games/crystalspace
- mysql? ( virtual/mysql )
-"
-
-S="${WORKDIR}/${P/_/}"
-
-pkg_setup() {
- games_pkg_setup
-}
-
-src_unpack(){
- subversion_src_unpack
- cd "${S}"
-# eautoreconf
-}
-
-src_compile() {
- econf \
- --enable-cpu-specific-optimizations=maximum \
- || die "econf failed"
- jam -q || die "emake failed"
-}
-
-src_install() {
- for installTarget in install_bin install_plugin install_lib \
- install_include install_data install_config
- do
- jam -q -s DESTDIR="${D}" ${installTarget} \
- || die "jam ${installTarget} failed"
- done
- prepgamesdirs
-}
-
-#pkg_postinst() {
-#}
-