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:05 +0100
commit1cee26394f3f2aab4ea647b02dd26ee19442b65b (patch)
treeec99e3efc24d00ea357277a2d676bf24568d6811 /games-roguelike/wrogue/wrogue-0.8.0b.ebuild
parentgames-roguelike/stone-soup: Remove old (diff)
downloadgentoo-1cee26394f3f2aab4ea647b02dd26ee19442b65b.tar.gz
gentoo-1cee26394f3f2aab4ea647b02dd26ee19442b65b.tar.bz2
gentoo-1cee26394f3f2aab4ea647b02dd26ee19442b65b.zip
games-roguelike/wrogue: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-roguelike/wrogue/wrogue-0.8.0b.ebuild')
-rw-r--r--games-roguelike/wrogue/wrogue-0.8.0b.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/games-roguelike/wrogue/wrogue-0.8.0b.ebuild b/games-roguelike/wrogue/wrogue-0.8.0b.ebuild
deleted file mode 100644
index 72da1117d112..000000000000
--- a/games-roguelike/wrogue/wrogue-0.8.0b.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="Gothic science fantasy roguelike game"
-HOMEPAGE="https://freecode.com/projects/wrogue"
-SRC_URI="mirror://gentoo/${P}.zip"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="media-libs/libsdl[video]"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-src_prepare() {
- sed -i \
- -e "/AppData\[0\]/ s:AppData.*:strcpy(AppData, \"${GAMES_DATADIR}/${PN}/\");:" \
- src/lib/appdir.c \
- || die "sed failed"
- epatch "${FILESDIR}"/${P}-ldflags.patch
-}
-
-src_compile() {
- local myCPPFLAGS="-std=c99 -Iinclude -Ilib -Iui -Igenerate"
- local myCFLAGS="$(sdl-config --cflags) ${CFLAGS}"
- emake -C src -f linux.mak STRIP_BINARY=NO \
- CFLAGS="${myCPPFLAGS} ${myCFLAGS}" release
-}
-
-src_install() {
- dogamesbin ${PN}
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r data
- dodoc changes.txt
-
- newicon data/ui/icon.bmp ${PN}.bmp
- make_desktop_entry ${PN} "Warp Rogue" /usr/share/pixmaps/${PN}.bmp
-
- prepgamesdirs
-}