Upgrade, 3.1.3 -> 3.2.0.

This commit is contained in:
Satoshi Asami 1996-04-22 07:49:03 +00:00
parent d9d990ef97
commit c7c917a901
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3014
40 changed files with 288 additions and 144 deletions

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev

View file

@ -1,27 +1,35 @@
# New ports collection makefile for: nethack # New ports collection makefile for: nethack
# Version required: 3.1.3 # Version required: 3.2.0
# Date created: 27 March 1995 # Date created: 27 March 1995
# Whom: asami # 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 DISTNAME= nethack-3.2.0
PKGNAME= nethack-3.1.3
CATEGORIES+= games CATEGORIES+= games
MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.games/ MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ \
EXTRACT_SUFX= .tar.Z ftp://ftp.win.tue.nl/pub/games/nethack/General/Source/NH32/sources/
MAINTAINER= asami@FreeBSD.ORG MAINTAINER= asami@FreeBSD.ORG
WRKSRC= ${WRKDIR}/nethack313 NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
SHELL= /bin/sh SHELL= /bin/sh
pre-configure: pre-configure:
@cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
pre-install: post-install:
@cd ${WRKSRC}/doc; ${MAKE} manpages @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> .include <bsd.port.mk>

View file

@ -1 +1 @@
MD5 (nethack3.1.3.tar.Z) = f196ed9659814cd85beeee10e60b7e73 MD5 (nethack-3.2.0.tar.gz) = ad80565db2ada50f6535a4375daf372d

View file

@ -1 +1 @@
A dungeon explorin', slashin', hackin' game A dungeon explorin', slashin', hackin' game.

View file

@ -1,6 +1,6 @@
This is version 3.1.3 of nethack. You and your puppy (or kitten) will This is nethack. You and your puppy (or kitten) will explore the deep
explore the deep dungeons to retrieve the long-lost magical item that dungeons to retrieve the long-lost magical item that causes so much
causes so much trouble to anyone. trouble to anyone.
Take care, and try not to miss meals. Take care, and try not to miss meals.

View file

@ -1,7 +1,11 @@
bin/nethack bin/nethack
lib/nethackdir/save @exec mkdir %D/lib/nethackdir/save
@exec chmod 775 %D/lib/nethackdir/save
@exec chown games.games %D/lib/nethackdir/save
@unexec rmdir %D/lib/nethackdir/save
lib/nethackdir/nethack lib/nethackdir/nethack
man/man6/dgn_comp.6.gz man/man6/dgn_comp.6.gz
man/man6/dlb.6.gz
man/man6/lev_comp.6.gz man/man6/lev_comp.6.gz
man/man6/nethack.6.gz man/man6/nethack.6.gz
man/man6/recover.6.gz man/man6/recover.6.gz
@ -69,7 +73,11 @@ lib/nethackdir/air.lev
lib/nethackdir/asmodeus.lev lib/nethackdir/asmodeus.lev
lib/nethackdir/astral.lev lib/nethackdir/astral.lev
lib/nethackdir/baalz.lev lib/nethackdir/baalz.lev
lib/nethackdir/bigroom.lev lib/nethackdir/bigrm-1.lev
lib/nethackdir/bigrm-2.lev
lib/nethackdir/bigrm-3.lev
lib/nethackdir/bigrm-4.lev
lib/nethackdir/bigrm-5.lev
lib/nethackdir/castle.lev lib/nethackdir/castle.lev
lib/nethackdir/cmdhelp lib/nethackdir/cmdhelp
lib/nethackdir/data lib/nethackdir/data
@ -87,9 +95,11 @@ lib/nethackdir/license
lib/nethackdir/logfile lib/nethackdir/logfile
lib/nethackdir/medusa-1.lev lib/nethackdir/medusa-1.lev
lib/nethackdir/medusa-2.lev lib/nethackdir/medusa-2.lev
lib/nethackdir/mine_end.lev
lib/nethackdir/minefill.lev lib/nethackdir/minefill.lev
lib/nethackdir/minetown.lev lib/nethackdir/minend-1.lev
lib/nethackdir/minend-2.lev
lib/nethackdir/minetn-1.lev
lib/nethackdir/minetn-2.lev
lib/nethackdir/opthelp lib/nethackdir/opthelp
lib/nethackdir/options lib/nethackdir/options
lib/nethackdir/oracle.lev lib/nethackdir/oracle.lev