diff options
Diffstat (limited to 'games/nethack34/Makefile')
-rw-r--r-- | games/nethack34/Makefile | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/games/nethack34/Makefile b/games/nethack34/Makefile index 1aa415d65224..c99f035cccae 100644 --- a/games/nethack34/Makefile +++ b/games/nethack34/Makefile @@ -1,27 +1,35 @@ # New ports collection makefile for: nethack -# Version required: 3.1.3 +# Version required: 3.2.0 # Date created: 27 March 1995 # Whom: asami # -# $Id: Makefile,v 1.3 1995/04/01 12:45:05 jkh Exp $ +# $Id: Makefile,v 1.4 1995/04/11 00:20:17 asami Exp $ # -DISTNAME= nethack3.1.3 -PKGNAME= nethack-3.1.3 +DISTNAME= nethack-3.2.0 CATEGORIES+= games -MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ -EXTRACT_SUFX= .tar.Z +MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \ + ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/ MAINTAINER= asami@FreeBSD.ORG -WRKSRC= ${WRKDIR}/nethack313 +NO_WRKSUBDIR= yes USE_GMAKE= yes SHELL= /bin/sh pre-configure: @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh -pre-install: - @cd ${WRKSRC}/doc; ${MAKE} manpages +post-install: + @cd ${WRKSRC}/doc; PREFIX=${PREFIX} ${MAKE} manpages +.if !defined(NOMANCOMPRESS) + for file in dgn_comp dlb lev_comp nethack recover; do \ + gzip -9nf ${PREFIX}/man/man6/$$file.6; \ + done +.endif +.if !defined(NOPORTDOCS) + mkdir -p ${PREFIX}/share/doc/nethack + cp ${WRKSRC}/doc/Guidebook.txt ${PREFIX}/share/doc/nethack +.endif .include <bsd.port.mk> |