summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-11-19 14:01:35 +0100
committerDavid Seifert <soap@gentoo.org>2017-11-19 14:34:07 +0100
commita43e49d962f273437ffe444f7a03582c061476aa (patch)
tree904c6a01757802afd2cbfcaa9098971fd7bbdb3a /games-action/0verkill/0verkill-0.16-r3.ebuild
parentgames-action/0verkill: Minor touchups (diff)
downloadgentoo-a43e49d962f273437ffe444f7a03582c061476aa.tar.gz
gentoo-a43e49d962f273437ffe444f7a03582c061476aa.tar.bz2
gentoo-a43e49d962f273437ffe444f7a03582c061476aa.zip
games-action/0verkill: Remove old
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'games-action/0verkill/0verkill-0.16-r3.ebuild')
-rw-r--r--games-action/0verkill/0verkill-0.16-r3.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/games-action/0verkill/0verkill-0.16-r3.ebuild b/games-action/0verkill/0verkill-0.16-r3.ebuild
deleted file mode 100644
index 3c347dd0a14d..000000000000
--- a/games-action/0verkill/0verkill-0.16-r3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils games
-
-DESCRIPTION="a bloody 2D action deathmatch-like game in ASCII-ART"
-HOMEPAGE="http://artax.karlin.mff.cuni.cz/~brain/0verkill/"
-SRC_URI="http://artax.karlin.mff.cuni.cz/~brain/0verkill/release/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X"
-
-DEPEND="X? ( x11-libs/libXpm )"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-docs.patch \
- "${FILESDIR}"/${P}-home-overflow.patch \
- "${FILESDIR}"/${P}-segv.patch \
- "${FILESDIR}"/${P}-gentoo-paths.patch \
- "${FILESDIR}"/${P}-ovflfix.patch \
- "${FILESDIR}"/${P}-CC.patch \
- "${FILESDIR}"/${P}-underflow-check.patch #136222 \
- sed -i \
- -e "s:data/:${GAMES_DATADIR}/${PN}/data/:" cfg.h || die
- sed -i \
- -e "s:@CFLAGS@ -O3 :@CFLAGS@ :" Makefile.in || die
- sed -i \
- -e "/gettimeofday/s/getopt/getopt calloc/" configure.in || die
- eautoreconf
-}
-
-src_configure() {
- egamesconf $(use_with X x)
-}
-
-src_install() {
- local x
- dogamesbin 0verkill
- for x in avi bot editor server test_server ; do
- newgamesbin ${x} 0verkill-${x}
- done
- if use X ; then
- dogamesbin x0verkill
- for x in avi editor ; do
- newgamesbin ${x} 0verkill-${x}
- done
- fi
-
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r data grx
-
- dohtml doc/*.html
- rm doc/*.html doc/README.OS2 doc/Readme\ Win32.txt doc/COPYING
- dodoc doc/*
-
- prepgamesdirs
-}