1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/misc/tkman/files/patch-aa

110 lines
4.1 KiB
Plaintext
Raw Normal View History

1997-09-18 06:56:07 +00:00
--- Makefile.orig Thu Sep 18 01:33:17 1997
+++ Makefile Thu Sep 18 08:54:12 1997
@@ -39,13 +39,13 @@
### you need to localize the paths on these lines
1997-08-25 09:46:38 +00:00
#WISH = /usr/sww/tcl-8.0/bin/wish
1997-09-18 06:56:07 +00:00
-WISH = /private/share/bin/wish
1997-08-25 09:46:38 +00:00
-#WISH = /usr/local/bin/wish8.0
1997-09-18 06:56:07 +00:00
+#WISH = /private/share/bin/wish
1997-08-25 09:46:38 +00:00
+WISH = ${PREFIX}/bin/wish8.0
# the executable `tkman' is placed in BINDIR
# this should be a directory that's in your bin PATH
1997-09-18 06:56:07 +00:00
-BINDIR = /private/share/bin
-#BINDIR = /usr/local/bin
1997-09-18 06:56:07 +00:00
+#BINDIR = /private/share/bin
+BINDIR = ${PREFIX}/bin
1997-08-25 09:46:38 +00:00
# OPTIONAL
1997-09-18 06:56:07 +00:00
@@ -55,9 +55,9 @@
# This directory should not have any Texinfo source itself.
1997-08-25 09:46:38 +00:00
# More information is given in tkman-help.html
# if you don't have Texinfo files, leave this variable empty
-texinfodir = ""
+#texinfodir = ""
#texinfodir = /home/orodruin/h/bair/phelps/spine/tkman/info
-#texinfodir = /usr/local/info
+texinfodir = ${PREFIX}/info
1997-08-25 09:46:38 +00:00
# OPTIONAL
1997-09-18 06:56:07 +00:00
@@ -81,10 +81,12 @@
1997-08-25 09:46:38 +00:00
# will examine for matches if a search in the usual locations fails while searching
# for a man pages and displaying its associated binaries (if any).
# Use this feature carefully as a large number of directories can slow down startup.
-mastermen = "/usr/man /usr/local/man"
+#mastermen = "/usr/man /usr/local/man"
#mastermen = "/usr/man /usr/local/man /usr/sww/man /usr/share/man /usr/kerberos/man"
-masterbin = "/usr/bin /usr/local/bin"
+mastermen = "${PREFIX}/man usr/share/man ${X11BASE}/man"
+#masterbin = "/usr/bin /usr/local/bin"
#masterbin = "/usr/bin /usr/local/bin /usr/sww/bin /usr/sww/share/bin /usr/sww/share/X11R5/bin"
+masterbin = "/usr/bin ${PREFIX}/bin ${X11BASE}/bin"
1996-10-21 06:46:57 +00:00
1997-08-25 09:46:38 +00:00
# names of common printers, in addition to default printer (PRINTER or LPDEST)
1997-09-18 06:56:07 +00:00
@@ -101,13 +103,13 @@
1996-10-21 06:46:57 +00:00
# but seems to kill international characters, such as u-with-umlaut
#manformat = {tbl | neqn | nroff -man | col }
1997-08-25 09:46:38 +00:00
# ALTERNATIVES
-#manformat = {groff -Tascii -te -mandoc}
+manformat = {groff -Tascii -te -mandoc}
1997-08-25 09:46:38 +00:00
# Marco Melgazzi (marco@techie.com) prefers LONGER MAN PAGE LINES.
# The following line adds an entry in Preferences/See to set the length.
# You must use groff and the "/tmp/ll" path for this feature to take effect.
# lines are cached in .../man/cat<n>@<line-length>;
# that is, the line length is appended to the usual cache directory names
-manformat = {groff -te -Tascii -man /tmp/ll - 2>/dev/null}
+#manformat = {groff -te -Tascii -man /tmp/ll - 2>/dev/null}
# Ultrix users should uncomment the following line (you don't have eqn)
1996-10-21 06:46:57 +00:00
#manformat = {tbl | nroff -man }
1997-08-25 09:46:38 +00:00
# BSDI
1997-09-18 06:56:07 +00:00
@@ -153,7 +155,7 @@
1997-08-25 09:46:38 +00:00
# pick a printing pipeline for which your platform has all the constituants
-manprint = {groff -man -Tps -te -l}
+manprint = {groff -mandoc -Tps -te -l}
# alternatives
#manprint = {tbl | eqn | troff -man -t | lpr -t}
#manprint = {tbl | eqn | psroff -man}
1997-09-18 06:56:07 +00:00
@@ -177,7 +179,7 @@
1997-08-25 09:46:38 +00:00
# so how can you lose?
# BY DEFAULT ON (Boolean scope set to entire file)
-glimpse = "glimpse -W"
+#glimpse = "glimpse -W"
# IF YOU DON'T WANT TO BOTHER WITH GLIMPSE, you can disable it here
#glimpse = ""
# give the full path, if you'd like
1997-09-18 06:56:07 +00:00
@@ -185,6 +187,7 @@
# variations (refer to the Glimpse manual page)
1997-08-25 09:46:38 +00:00
# no characters treated as meta characters:
#glimpse = "glimpse -Wk"
+glimpse = "glimpse -z"
# glimpseindex indexes the manual pages, for each component of one's MANPATH,
# and places the results in a set of files named .glimpse_* in that MANPATH
1997-09-18 06:56:07 +00:00
@@ -226,7 +229,7 @@
# default MANPATH to use if user doesn't have a MANPATH environment variable set.
# Leave this empty to have TkMan calculate a MANPATH based on a users PATH
# (like Perl man does).
-manpathdef = ""
+manpathdef = /usr/share/man:${PREFIX}/man:/usr/X11R6/man
#manpathdef = /usr/man:/usr/local/man
#manpathdef = /usr/man:/usr/local/man:/usr/sww/man:/usr/sww/X11/man
# for SGI
1997-09-18 06:56:07 +00:00
@@ -397,8 +400,8 @@
chmod +rx $(BINDIR)/tkman
1997-08-25 09:46:38 +00:00
$(CP) retkman $(BINDIR)
chmod +rx $(BINDIR)/retkman
- @echo 'You also need RosettaMan to run TkMan.'
1997-08-25 09:46:38 +00:00
- @echo 'Have you installed the elided text patch to Tk?'
+# @echo 'You also need RosettaMan to run TkMan.'
1997-08-25 09:46:38 +00:00
+# @echo 'Have you installed the elided text patch to Tk?'
test: dox tkman
cp tkman $(BINDIR)