1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
--- tkman-2.1/Makefile Thu Jun 22 15:39:42 2000
+++ tkman-2.1-gentoo/Makefile Wed Apr 23 13:56:20 2003
@@ -26,14 +26,16 @@
### you need to localize the paths on these lines
#WISH = /usr/sww/tcl-8.3/bin/wish
-WISH = /private/share/bin/wish
+#WISH = /private/share/bin/wish
#WISH = /private/share/bin/wish8.3
#WISH = /usr/local/bin/wish8.3
+WISH = /usr/bin/wish
# the executable `tkman' is placed in BINDIR
# this should be a directory that's in your bin PATH
-BINDIR = /private/share/bin
+#BINDIR = /private/share/bin
#BINDIR = /usr/local/bin
+BINDIR = ${DESTDIR}/usr/bin
# OPTIONAL
@@ -81,7 +83,7 @@
# 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/share/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"
#masterbin = "/usr/bin /usr/local/bin /usr/sww/bin /usr/sww/share/bin /usr/sww/share/X11R5/bin"
@@ -202,9 +204,9 @@
# the right-topmost menu's Rebuild Database/Glimpse Index menu choice.
# 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 = ""
+glimpse = ""
# give the full path, if you'd like
#glimpse = /usr/sww/bin/glimpse
# variations (refer to the Glimpse manual page)
@@ -229,11 +231,11 @@
#glimpseindex = "glimpseindex -o -B"
# To shorten most index build times by incrementally building index when possible.
# For me, this drops indexing time from ~25 minutes to ~3 minutes, depending
-glimpseindex = "glimpseindex -o -B -f"
+#glimpseindex = "glimpseindex -o -B -f"
# -M 8 gives 8MB of main memory instead of default 2, which speeds up indexing, maybe
#glimpseindex = "glimpseindex -o -B -f -M 8"
# if you don't want give the power to index, disable glimpseindex here
-#glimpseindex = ""
+glimpseindex = ""
#glimpseindex = "/usr/sww/bin/glimpseindex -o -B"
# compressed manual pages are handled automatically; don't add -z to above
@@ -290,9 +292,9 @@
rman = rman
#rman = /private/phelps/bin/rman
-apropos = {man -k}
+#apropos = {man -k}
# Linux uses a shell script instead:
-#apropos = apropos
+apropos = apropos
# if don't have apropos (maybe on Windoze)
#apropos = ""
|