summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:26 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:49:29 +0100
commit09cc07ad017fa40d7a02c4047880f97d2d9db5c3 (patch)
tree2fd99672291985d7641336fe8cc66dc175f3ae4c /games-rpg
parentgames-rpg/dragonhunt: Remove old (diff)
downloadgentoo-09cc07ad017fa40d7a02c4047880f97d2d9db5c3.tar.gz
gentoo-09cc07ad017fa40d7a02c4047880f97d2d9db5c3.tar.bz2
gentoo-09cc07ad017fa40d7a02c4047880f97d2d9db5c3.zip
games-rpg/egoboo: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-rpg')
-rw-r--r--games-rpg/egoboo/egoboo-2.8.1.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/games-rpg/egoboo/egoboo-2.8.1.ebuild b/games-rpg/egoboo/egoboo-2.8.1.ebuild
deleted file mode 100644
index e2fef4314146..000000000000
--- a/games-rpg/egoboo/egoboo-2.8.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="A 3d dungeon crawling adventure in the spirit of NetHack"
-HOMEPAGE="http://egoboo.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="virtual/opengl
- virtual/glu
- media-libs/libsdl[joystick,video]
- media-libs/sdl-image
- media-libs/sdl-mixer[vorbis]
- media-libs/sdl-ttf
- net-libs/enet:0
- dev-games/physfs"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- edos2unix src/game/platform/file_linux.c \
- src/game/network.c \
- src/game/Makefile
- epatch "${FILESDIR}"/${P}-gentoo.patch
- sed -i \
- -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \
- -e "s:@GENTOO_CONFDIR@:${GAMES_SYSCONFDIR}/${PN}:" \
- src/game/platform/file_linux.c || die "sed failed"
- rm -rf src/enet || die
-}
-
-src_compile() {
- emake -C src/game PROJ_NAME=egoboo-2.x
-}
-
-src_install() {
- dodoc BUGS.txt Changelog.txt doc/*.txt doc/*.pdf
-
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r basicdat modules
- insinto "${GAMES_SYSCONFDIR}/${PN}"
- doins -r controls.txt setup.txt
-
- newgamesbin src/game/egoboo-2.x ${PN}
-
- newicon basicdat/icon.bmp ${PN}.bmp
- make_desktop_entry ${PN} Egoboo /usr/share/pixmaps/${PN}.bmp
-
- prepgamesdirs
-}