Line 0
Link Here
|
|
|
1 |
--- huskybse/huskymak.cfg.orig 2007-02-23 21:47:15.000000000 +0000 |
2 |
+++ huskybse/huskymak.cfg 2013-03-25 19:36:08.000000000 +0000 |
3 |
@@ -38,7 +38,7 @@ CFGDIR=$(PREFIX)/etc/fido |
4 |
# will not be compiled, and you won't know how to use the software ;-). |
5 |
# You should take care that this directory is listed in the INFOPATH |
6 |
# environment variable (if necessary, modify your /etc/profile file). |
7 |
-# INFODIR=/usr/local/info |
8 |
+INFODIR=$(PREFIX)/info |
9 |
|
10 |
# The same as above, but for DVI documentation. This requires a working |
11 |
# "texi2dvi" program. |
12 |
@@ -46,7 +46,7 @@ CFGDIR=$(PREFIX)/etc/fido |
13 |
|
14 |
# The same as above, but for HTML documentation. This requires a working |
15 |
# "texi2html" program. |
16 |
-#HTMLDIR=$(PREFIX)/lib/husky |
17 |
+HTMLDIR=$(PREFIX)/share/doc/husky |
18 |
|
19 |
# Name of the config file of MSGED TE: |
20 |
MSGEDCFG=\"$(CFGDIR)/msged.cfg\" |
21 |
@@ -102,7 +102,7 @@ RM=rm |
22 |
|
23 |
# The "install" program. |
24 |
# On Linux and FreeBSD/NetBSD, use this: |
25 |
-INSTALL=install |
26 |
+INSTALL= |
27 |
# On Tru64 Unix, use this: |
28 |
# INSTALL=installbsd |
29 |
# On Solaris, use this: |
30 |
@@ -116,7 +116,7 @@ MKDIR=mkdir |
31 |
|
32 |
# update dynamic library cache |
33 |
# If your operating system does not need this, you may comment out this line. |
34 |
-LDCONFIG=/sbin/ldconfig |
35 |
+#LDCONFIG=/sbin/ldconfig |
36 |
|
37 |
# rename a file |
38 |
MV=mv |
39 |
@@ -139,8 +139,8 @@ H2PAS=h2pas |
40 |
OSTYPE=UNIX |
41 |
|
42 |
# short name of operating system (used for PID lines etc.) |
43 |
-UNAME=LNX |
44 |
-#UNAME=BSD |
45 |
+#UNAME=LNX |
46 |
+UNAME=BSD |
47 |
#UNAME=OS2 |
48 |
#UNAME=BEOS |
49 |
|
50 |
@@ -151,7 +151,7 @@ DEBUG=0 |
51 |
SHORTNAMES=0 |
52 |
|
53 |
# Perl support |
54 |
-PERL=0 |
55 |
+PERL=1 |
56 |
|
57 |
# ZipInternal packer |
58 |
USE_HPTZIP=0 |
59 |
@@ -179,7 +179,7 @@ EXENAMEFLAG=-o |
60 |
WARNFLAGS=-Wall |
61 |
|
62 |
# C-compiler: optimization |
63 |
-OPTCFLAGS=-c -s -O3 -fomit-frame-pointer -fstrength-reduce -fPIC |
64 |
+OPTCFLAGS=-c -fPIC |
65 |
|
66 |
ifeq ( $(DYNLIBS), 0 ) |
67 |
ifeq ($(OSTYPE), UNIX) |
68 |
@@ -216,29 +216,22 @@ OPTLFLAGS=-s |
69 |
DEBLFLAGS=-g |
70 |
|
71 |
# options for installing programs |
72 |
-OPTIBOPT=-c -s -m 555 |
73 |
-DEBIBOPT=-c -m 555 |
74 |
- |
75 |
-ifeq ($(DEBUG), 1) |
76 |
- IBOPT = $(DEBIBOPT) |
77 |
-else |
78 |
- IBOPT = $(OPTIBOPT) |
79 |
-endif |
80 |
+IBOPT=$(BSD_INSTALL_PROGRAM) |
81 |
|
82 |
# options for installing scripts |
83 |
-ISOPT=-c -m 555 |
84 |
+ISOPT=$(BSD_INSTALL_SCRIPT) |
85 |
|
86 |
# options for installing shared libs |
87 |
-ILOPT=-c -m 555 |
88 |
+ILOPT=$(BSD_INSTALL_LIB) |
89 |
|
90 |
# options for installing static libs |
91 |
-ISLOPT=-c -m 444 |
92 |
+ISLOPT=$(BSD_INSTALL_LIB) |
93 |
|
94 |
# options for installing man-pages |
95 |
-IMOPT=-c -m 444 |
96 |
+IMOPT=$(BSD_INSTALL_MAN) |
97 |
|
98 |
# options for installing includes |
99 |
-IIOPT=-c -m 444 |
100 |
+IIOPT=$(BSD_INSTALL_DATA) |
101 |
|
102 |
# options for making links |
103 |
LNOPT=-sf |