101 lines
3.8 KiB
Text
101 lines
3.8 KiB
Text
$NetBSD: patch-aa,v 1.9 2009/12/12 18:00:19 asau Exp $
|
|
|
|
--- Makefile.orig 2009-12-12 20:50:01.000000000 +0300
|
|
+++ Makefile 2009-12-12 20:57:13.000000000 +0300
|
|
@@ -25,13 +25,13 @@
|
|
|
|
### you need to localize the paths on these lines
|
|
|
|
-WISH = /usr/local/bin/wish8.4
|
|
+WISH = ${LOCALBASE}/bin/wish
|
|
#WISH = /usr/sww/tcl-8.4/bin/wish
|
|
#WISH = /private/share/bin/wish8.4
|
|
|
|
# the executable `tkman' is placed in BINDIR
|
|
# this should be a directory that's in your bin PATH
|
|
-BINDIR = /usr/local/bin
|
|
+BINDIR = ${PREFIX}/bin
|
|
#BINDIR = /private/share/bin
|
|
|
|
|
|
@@ -80,11 +80,25 @@
|
|
# 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 = /usr/share/man ${LOCALBASE}/man ${X11BASE}/man
|
|
+.if (${PREFIX} != ${LOCALBASE}) && (${PREFIX} != ${X11BASE})
|
|
+mastermen += ${PREFIX}/man
|
|
+.endif
|
|
+.if (${PREFIX} != "/usr/local")
|
|
+mastermen += /usr/local/man
|
|
+.endif
|
|
+#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 = /bin /sbin /usr/bin /usr/sbin
|
|
+masterbin += ${LOCALBASE}/bin ${LOCALBASE}/sbin ${X11BASE}/bin
|
|
+.if (${PREFIX} != ${LOCALBASE}) && (${PREFIX} != ${X11BASE})
|
|
+masterbin += ${PREFIX}/bin
|
|
+.endif
|
|
+.if (${PREFIX} != "/usr/local")
|
|
+masterbin += /usr/local/bin /usr/local/sbin
|
|
+.endif
|
|
|
|
# names of common printers, in addition to default printer (PRINTER or LPDEST)
|
|
# (individual users can edit this list in the Preferences panel)
|
|
@@ -113,7 +127,7 @@
|
|
# 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 -}
|
|
-manformat = {groff -te -Tlatin1 -man /tmp/ll -}
|
|
+#manformat = {groff -te -Tlatin1 -man /tmp/ll -}
|
|
# Ultrix users should uncomment the following line (you don't have eqn)
|
|
#manformat = {tbl | nroff -man }
|
|
# HP-UX uses a number of macros that groff doesn't define, so use the builtin nroff
|
|
@@ -121,7 +135,7 @@
|
|
# space between the .de and the macro name, and groff doesn't like this.)
|
|
#manformat = {tbl | neqn | nroff -man }
|
|
# BSD macros (.Sh, .Ss, .PP, ...) need -mandoc
|
|
-#manformat = {groff -Tascii -te -mandoc}
|
|
+manformat = {groff -Tascii -te -mandoc}
|
|
# BSDI
|
|
#manformat = {tbl | eqn -Tascii | nroff -man }
|
|
# It's actually legal to leave this empty if all the pages you'll ever
|
|
@@ -349,8 +363,8 @@
|
|
echo 'set manx(mintcl) $(mintcl)' >> tkman
|
|
echo 'set manx(mintk) $(mintk)' >> tkman
|
|
echo 'set manx(newuser) $(newuser)' >> tkman
|
|
- echo 'set manx(mastermen) $(mastermen)' >> tkman
|
|
- echo 'set manx(masterbin) $(masterbin)' >> tkman
|
|
+ echo 'set manx(mastermen) "$(mastermen)"' >> tkman
|
|
+ echo 'set manx(masterbin) "$(masterbin)"' >> tkman
|
|
echo 'set man(zcat) $(zcat)' >> tkman
|
|
echo 'set man(compress) $(compress)' >> tkman
|
|
echo 'set man(apropos) $(apropos)' >> tkman
|
|
@@ -428,6 +442,9 @@
|
|
echo 'image create bitmap texRebus -data {' >> tkman
|
|
cat xbm/tex.xbm >> tkman
|
|
echo '}' >> tkman
|
|
+ echo 'set manx(netbsd-bindings) {' >> tkman
|
|
+ cat contrib/netbsd_bindings.tcl >> tkman
|
|
+ echo '}' >> tkman
|
|
echo 'set manx(solaris-bindings) {' >> tkman
|
|
cat contrib/solaris_bindings.tcl >> tkman
|
|
echo '}' >> tkman
|
|
@@ -456,10 +473,8 @@
|
|
chmod +x retkman
|
|
|
|
install: tkman retkman
|
|
- $(CP) tkman $(BINDIR)
|
|
- chmod +rx $(BINDIR)/tkman
|
|
- $(CP) retkman $(BINDIR)
|
|
- chmod +rx $(BINDIR)/retkman
|
|
+ $(BSD_INSTALL_SCRIPT) tkman $(DESTDIR)$(BINDIR)
|
|
+ $(BSD_INSTALL_SCRIPT) retkman $(DESTDIR)$(BINDIR)
|
|
@echo 'You also need RosettaMan to run TkMan.'
|
|
|
|
test: dox tkman
|