games-misc/wumpus: Remove old
authorDavid Seifert <soap@gentoo.org>
Wed, 20 Dec 2017 21:30:24 +0000 (22:30 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 21 Dec 2017 01:47:04 +0000 (02:47 +0100)
Package-Manager: Portage-2.3.16, Repoman-2.3.6

games-misc/wumpus/wumpus-1.4.ebuild [deleted file]

diff --git a/games-misc/wumpus/wumpus-1.4.ebuild b/games-misc/wumpus/wumpus-1.4.ebuild
deleted file mode 100644 (file)
index 3412e91..0000000
+++ /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 toolchain-funcs games
-
-DESCRIPTION="Classic Hunt the Wumpus Adventure Game"
-HOMEPAGE="http://cvsweb.netbsd.org/bsdweb.cgi/src/games/wump/"
-SRC_URI="ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-release-1-6/src/games/wump/wump.c
-       ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-release-1-6/src/games/wump/wump.6
-       ftp://ftp.netbsd.org/pub/NetBSD/NetBSD-release-1-6/src/games/wump/wump.info"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="sys-apps/less"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}
-
-src_unpack() {
-       local i
-
-       for i in wump.{info,c,6} ; do
-               cp "${DISTDIR}"/${i} "${S}/"
-       done
-}
-
-src_compile() {
-       touch pathnames.h
-       [ -z "${PAGER}" ] && PAGER=/usr/bin/less
-       $(tc-getCC) ${LDFLAGS} -Dlint -D_PATH_PAGER=\"${PAGER}\" \
-               -D_PATH_WUMPINFO=\""${GAMES_DATADIR}"/${PN}/wump.info\" ${CFLAGS} \
-               -o wump wump.c || die
-}
-
-src_install() {
-       dogamesbin wump
-       doman wump.6
-       insinto "${GAMES_DATADIR}/${PN}"
-       doins wump.info
-       prepgamesdirs
-}