mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
52ed0baa26
. By default, install things in a location that won't conflict with the other nethack ports. . Build and install the recover utility so that users can recover their game if it crashes (bump PORTREVISION for this). . Sync with the nethack34 port: . Use PKGNAMESUFFIX to select the graphics type. . Remove the COMMENT in the slave ports. . Take maintainership of nethack33 and nethack33-nox11. . Unbreak the nethack33-qt port.
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
$FreeBSD$
|
|
|
|
--- sys/unix/Makefile.doc.orig Fri Jan 14 13:49:48 2000
|
|
+++ sys/unix/Makefile.doc Mon Apr 19 14:29:46 2004
|
|
@@ -34,15 +34,15 @@
|
|
|
|
|
|
GAME = nethack
|
|
-MANDIR = /usr/man/man6
|
|
+MANDIR = ${MANPREFIX}/man/man
|
|
MANEXT = 6
|
|
|
|
# manual installation for most BSD-style systems
|
|
-GAMEMANCREATE = cp nethack.6
|
|
-LEVMANCREATE = cp lev_comp.6
|
|
-DGNMANCREATE = cp dgn_comp.6
|
|
-RCVRMANCREATE = cp recover.6
|
|
-DLBMANCREATE = cp dlb.6
|
|
+GAMEMANCREATE = ${BSD_INSTALL_MAN} nethack.6
|
|
+LEVMANCREATE = ${BSD_INSTALL_MAN} lev_comp.6
|
|
+DGNMANCREATE = ${BSD_INSTALL_MAN} dgn_comp.6
|
|
+RCVRMANCREATE = ${BSD_INSTALL_MAN} recover.6
|
|
+DLBMANCREATE = ${BSD_INSTALL_MAN} dlb.6
|
|
# manual installation for most SYSV-style systems
|
|
# GAMEMANCREATE = nroff -man nethack.6 >
|
|
# LEVMANCREATE = nroff -man lev_comp.6 >
|
|
@@ -51,11 +51,11 @@
|
|
# DLBMANCREATE = nroff -man dlb.6 >
|
|
|
|
manpages:
|
|
- -$(GAMEMANCREATE) $(MANDIR)/$(GAME).$(MANEXT)
|
|
- -$(LEVMANCREATE) $(MANDIR)/lev_comp.$(MANEXT)
|
|
- -$(DGNMANCREATE) $(MANDIR)/dgn_comp.$(MANEXT)
|
|
- -$(RCVRMANCREATE) $(MANDIR)/recover.$(MANEXT)
|
|
- -$(DLBMANCREATE) $(MANDIR)/dlb.$(MANEXT)
|
|
+ -$(GAMEMANCREATE) $(MANDIR)$(MANEXT)/%%HACKNAME%%.$(MANEXT)
|
|
+ -$(LEVMANCREATE) $(MANDIR)$(MANEXT)/lev_comp%%HACKEXT%%.$(MANEXT)
|
|
+ -$(DGNMANCREATE) $(MANDIR)$(MANEXT)/dgn_comp%%HACKEXT%%.$(MANEXT)
|
|
+ -$(RCVRMANCREATE) $(MANDIR)$(MANEXT)/recover%%HACKEXT%%.$(MANEXT)
|
|
+ -$(DLBMANCREATE) $(MANDIR)$(MANEXT)/dlb%%HACKEXT%%.$(MANEXT)
|
|
|
|
# manual creation for distribution
|
|
DISTRIB = Guidebook.txt nethack.txt lev_comp.txt dgn_comp.txt recover.txt dlb.txt
|