summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-fps/sauerbraten/sauerbraten-2007.12.27.ebuild')
-rw-r--r--games-fps/sauerbraten/sauerbraten-2007.12.27.ebuild61
1 files changed, 0 insertions, 61 deletions
diff --git a/games-fps/sauerbraten/sauerbraten-2007.12.27.ebuild b/games-fps/sauerbraten/sauerbraten-2007.12.27.ebuild
deleted file mode 100644
index 426462c572c9..000000000000
--- a/games-fps/sauerbraten/sauerbraten-2007.12.27.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/sauerbraten/sauerbraten-2007.12.27.ebuild,v 1.1 2008/01/07 22:32:30 mr_bones_ Exp $
-
-inherit eutils multilib games
-
-DESCRIPTION="free multiplayer/singleplayer first person shooter (major redesign of the Cube FPS)"
-HOMEPAGE="http://sauerbraten.org/"
-SRC_URI="mirror://sourceforge/sauerbraten/sauerbraten_2007_12_24_assassin_edition_linux.tar.bz2
- mirror://sourceforge/sauerbraten/patch-2007-12-27_linux.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-RESTRICT="strip"
-
-DEPEND="sys-libs/glibc
- x86? (
- media-libs/libsdl
- media-libs/sdl-mixer
- media-libs/sdl-image
- media-libs/libpng
- virtual/opengl
- )
- amd64? (
- app-emulation/emul-linux-x86-soundlibs
- app-emulation/emul-linux-x86-sdl
- )"
-
-S=${WORKDIR}/${PN}
-
-src_unpack() {
- unpack ${A}
- find -name CVS -print0 | xargs -0 rm -rf
-}
-
-src_install() {
- use amd64 && multilib_toolchain_setup x86
-
- exeinto "$(games_get_libdir)"/${PN}
- doexe bin_unix/linux_{client,server} || die
-
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r data packages || die
-
- local x
- for x in client server ; do
- newgamesbin "${FILESDIR}"/wrapper ${PN}_${x}-bin || die
- sed -i \
- -e "s:@GENTOO_GAMESDIR@:${GAMES_DATADIR}/${PN}:g" \
- -e "s:@GENTOO_EXEC@:$(games_get_libdir)/${PN}/linux_${x}:g" \
- "${D}/${GAMES_BINDIR}"/${PN}_${x}-bin
- done
-
- dohtml -r README.html docs
-
- make_desktop_entry ${PN}_client-bin ${PN}
-
- prepgamesdirs
-}