blob: 05d0f1776885a6e565a9b4bb8d23dd88fb46e125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2004 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.5 2004/06/24 22:58:39 agriffis Exp $
inherit games gcc
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="x86"
IUSE=""
DEPEND="virtual/glibc
sys-apps/less"
S=${WORKDIR}
src_unpack() {
for i in wump.{info,c,6} ; do
cp ${DISTDIR}/${i} ${S}/
done
}
src_compile() {
touch pathnames.h
[ -z "${PAGER}" ] && PAGER=/usr/bin/less
$(gcc-getCC) -Dlint -D_PATH_PAGER=\"${PAGER}\" \
-D_PATH_WUMPINFO=\"${GAMES_DATADIR}/${PN}/wump.info\" ${CFLAGS} \
-o wump wump.c
}
src_install() {
dogamesbin wump || die
doman wump.6
insinto ${GAMES_DATADIR}/${PN}
doins wump.info
prepgamesdirs
}
|