summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-10-05 23:16:48 +1100
committerMichael Palimaka <kensington@gentoo.org>2017-10-05 23:16:56 +1100
commit8969b234d7a656788d3e15fbaea5151a389c88bb (patch)
tree7c4d228dd2a9ec18b7ffe76b965a9714d566c998
parentgames-roguelike/scourge: stabilise 0.21.1-r1 for amd64/x86 (diff)
downloadgentoo-8969b234d7a656788d3e15fbaea5151a389c88bb.tar.gz
gentoo-8969b234d7a656788d3e15fbaea5151a389c88bb.tar.bz2
gentoo-8969b234d7a656788d3e15fbaea5151a389c88bb.zip
games-roguelike/scourge: remove 0.21.1
Package-Manager: Portage-2.3.8, Repoman-2.3.3
-rw-r--r--games-roguelike/scourge/scourge-0.21.1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/games-roguelike/scourge/scourge-0.21.1.ebuild b/games-roguelike/scourge/scourge-0.21.1.ebuild
deleted file mode 100644
index 334de197824d..000000000000
--- a/games-roguelike/scourge/scourge-0.21.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils wxwidgets games
-
-DESCRIPTION="A graphical rogue-like adventure game"
-HOMEPAGE="https://sourceforge.net/projects/scourge/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.src.tar.gz
- mirror://sourceforge/${PN}/${P}.data.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="virtual/glu
- virtual/opengl
- media-libs/freetype:2
- media-libs/libsdl[joystick,video]
- media-libs/sdl-image[png]
- media-libs/sdl-net
- media-libs/sdl-mixer[vorbis]
- media-libs/sdl-ttf
- virtual/libintl"
-DEPEND="${RDEPEND}
- sys-devel/gettext"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- # bug #257601
- sed -i \
- -e '/AC_CHECK_HEADERS.*glext/ s:):, [#include <GL/gl.h>] ):' \
- configure.in || die
- sed -i \
- -e '/snprintf/s/tmp, 256/tmp, sizeof(tmp)/' \
- src/scourgehandler.cpp || die
- epatch "${FILESDIR}"/${P}-gcc47.patch \
- "${FILESDIR}"/${P}-automake-1.13.patch
- mv configure.{in,ac} || die
- eautoreconf
-}
-
-src_configure() {
- egamesconf \
- --with-data-dir="${GAMES_DATADIR}"/${PN} \
- --localedir=/usr/share/locale
-}
-
-src_install() {
- default
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r ../scourge_data/*
- doicon assets/scourge.png
- make_desktop_entry scourge S.C.O.U.R.G.E.
- prepgamesdirs
-}