summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-02-06 08:16:24 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-02-06 08:16:24 +0000
commitda22cf2fa499a25baee7275adec2bcfd65b48759 (patch)
tree33ac9b7e2670de86d8bc601a78f1b7dfcaa46efc /games-misc/wumpus
parentremove unnecessary icon stuff (diff)
downloadgentoo-2-da22cf2fa499a25baee7275adec2bcfd65b48759.tar.gz
gentoo-2-da22cf2fa499a25baee7275adec2bcfd65b48759.tar.bz2
gentoo-2-da22cf2fa499a25baee7275adec2bcfd65b48759.zip
EAPI=5
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-misc/wumpus')
-rw-r--r--games-misc/wumpus/ChangeLog7
-rw-r--r--games-misc/wumpus/wumpus-1.4.ebuild12
2 files changed, 12 insertions, 7 deletions
diff --git a/games-misc/wumpus/ChangeLog b/games-misc/wumpus/ChangeLog
index 3dc35282f091..89f76d1d6be6 100644
--- a/games-misc/wumpus/ChangeLog
+++ b/games-misc/wumpus/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-misc/wumpus
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/ChangeLog,v 1.14 2013/11/14 22:02:15 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/ChangeLog,v 1.15 2015/02/06 08:16:24 mr_bones_ Exp $
+
+ 06 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org> wumpus-1.4.ebuild:
+ EAPI=5
14 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org> wumpus-1.4.ebuild:
tidy
diff --git a/games-misc/wumpus/wumpus-1.4.ebuild b/games-misc/wumpus/wumpus-1.4.ebuild
index ca4783fd28ab..318f27308f4e 100644
--- a/games-misc/wumpus/wumpus-1.4.ebuild
+++ b/games-misc/wumpus/wumpus-1.4.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/wumpus-1.4.ebuild,v 1.15 2013/11/14 22:02:15 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-misc/wumpus/wumpus-1.4.ebuild,v 1.16 2015/02/06 08:16:24 mr_bones_ Exp $
+EAPI=5
inherit toolchain-funcs games
DESCRIPTION="Classic Hunt the Wumpus Adventure Game"
@@ -16,6 +17,7 @@ KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND="sys-apps/less"
+RDEPEND=${DEPEND}
S=${WORKDIR}
@@ -32,13 +34,13 @@ src_compile() {
[ -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 "compile failed"
+ -o wump wump.c || die
}
src_install() {
- dogamesbin wump || die "dogamesbin failed"
+ dogamesbin wump
doman wump.6
insinto "${GAMES_DATADIR}/${PN}"
- doins wump.info || die "doins failed"
+ doins wump.info
prepgamesdirs
}