summaryrefslogtreecommitdiff
path: root/games/nethack33-qt/Makefile
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1997-04-06 02:45:30 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1997-04-06 02:45:30 +0000
commit724bd478c9c540ebb1c2f304f5f0eb783b27ce09 (patch)
tree91f0df3a2c960c82c5b34c7d04267850bb142099 /games/nethack33-qt/Makefile
parentAdded p5-Net-DNS (diff)
NetHack with Qt interface. Version 0.9 (for NetHack 3.2.2)
by Warwick Allison warwick@cs.uq.edu.au. The Qt interface has these extra features: Tiles (graphics) in the inventory and other item-menu windows. The player cursor changes colour as your relative hit-points drop. The message window greys-out older message. The item menus allow a count (click to left of icon - hidden feature). Icons for the major attributes and player states. Menus (only needed by newbie dungeon fodder). Variable size fonts and tiles. More space for the map as messages and status are side-by-side. You rarely need to put the mouse in a pop-up to interact with it. Macros - hidden feature - F1=multi-rest F2=multi-search F3=try-it It is much easier to code, so new feature-requests are more easily done. Sound support See: http://www.uq.edu.au/~cswallis/nhqt/
Notes
Notes: svn path=/head/; revision=6147
Diffstat (limited to 'games/nethack33-qt/Makefile')
-rw-r--r--games/nethack33-qt/Makefile59
1 files changed, 59 insertions, 0 deletions
diff --git a/games/nethack33-qt/Makefile b/games/nethack33-qt/Makefile
new file mode 100644
index 000000000000..483e458f4174
--- /dev/null
+++ b/games/nethack33-qt/Makefile
@@ -0,0 +1,59 @@
+# New ports collection makefile for: nethack-qt
+# Version required: 3.2.2
+# Date created: So 6 Apr 1997 04:25:57 MET DST
+# Whom: Andreas Klemm <andreas@klemm.gtn.com>
+#
+# $Id$
+#
+
+DISTNAME= nethack-3.2.2
+PKGNAME= nethack-3.2.2-qt
+CATEGORIES= games x11
+MASTER_SITES= ftp://ftp.uu.net/pub/games/nethack/sources/ \
+ http://www.uq.edu.au/~cswallis/nhqt/ \
+ http://student.uq.edu.au/~s002434/ \
+ ${MASTER_SITE_GNU}
+QT_PATCH= nhqt0.9.tar.gz
+QT_SOUND= nhs.tar.gz
+DISTFILES= nethack-3.2.2.tar.gz ${QT_PATCH} ${QT_SOUND}
+
+MAINTAINER= andreas@FreeBSD.ORG
+
+LIB_DEPENDS= Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
+RUN_DEPENDS= auplay:${PORTSDIR}/audio/nas
+
+EXTRACT_ONLY= nethack-3.2.2.tar.gz
+USE_GMAKE= yes
+SHELL= /bin/sh
+MAN6= dgn_comp.6 dlb.6 lev_comp.6 nethack.6 recover.6
+
+pre-configure:
+ @cd ${WRKSRC}/win; tar xvzf ${DISTDIR}/${QT_PATCH}
+ @cd ${WRKSRC}; patch < win/Qt/nhqt.patch
+ @cd ${WRKSRC}/sys/unix; ${SHELL} setup.sh
+ @cd ${WRKSRC}/src; patch < ${FILESDIR}/src-Makefile.diff
+ @cd ${WRKSRC}/src; patch < ${FILESDIR}/src-sounds.c.diff
+ @cd ${WRKSRC}; patch < ${FILESDIR}/include-unixconf.h.diff
+
+post-install:
+ @cd ${WRKSRC}/doc; chmod 644 *.6
+ @cd ${WRKSRC}/doc; PREFIX=${PREFIX} ${MAKE} manpages
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${PREFIX}/share/doc/nethack
+ ${CP} ${WRKSRC}/doc/Guidebook.txt ${PREFIX}/share/doc/nethack
+.endif
+ @cd ${PREFIX}/lib/nethackdir; tar xzf ${DISTDIR}/${QT_SOUND}
+ @cd ${PREFIX}/lib/nethackdir; chown games.games *.au .nethackrc
+ @cd ${PREFIX}/lib/nethackdir; chmod 444 *.au .nethackrc
+ echo "-----------------------"
+ echo "post-installation hints
+ echo "-----------------------"
+ echo "a) Add this to your user environment:"
+ echo " setenv AUDIOSERVER `hostname`:0"
+ echo "b) Start the NAS audio server"
+ echo " auvoxware -aa & # -aa allows any host access"
+ echo "c) Copy the example nethackrc file from $FILESDIR to your"
+ echo " login directory:"
+ echo " cp $FILESDIR/sample.nethackrc $HOME/.nethackrc"
+
+.include <bsd.port.mk>