diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:24 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:47:04 +0100 |
commit | 3fc7500c0cdbec9a9a1dd4c691b5d645e4d81f6c (patch) | |
tree | c38cbdd583804edfae9d65e7ef4250f047d6ec1a /games-misc/wumpus | |
parent | games-misc/sound-of-sorting: Remove old (diff) | |
download | gentoo-3fc7500c0cdbec9a9a1dd4c691b5d645e4d81f6c.tar.gz gentoo-3fc7500c0cdbec9a9a1dd4c691b5d645e4d81f6c.tar.bz2 gentoo-3fc7500c0cdbec9a9a1dd4c691b5d645e4d81f6c.zip |
games-misc/wumpus: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-misc/wumpus')
-rw-r--r-- | games-misc/wumpus/wumpus-1.4.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/games-misc/wumpus/wumpus-1.4.ebuild b/games-misc/wumpus/wumpus-1.4.ebuild deleted file mode 100644 index 3412e91d51d6..000000000000 --- a/games-misc/wumpus/wumpus-1.4.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 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 -} |