mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
77806be064
Although it won't cause any problem as long as English and Japanese are used for file names, it will be some problem if other languages are used. So fix that problem.
71 lines
2.4 KiB
Plaintext
71 lines
2.4 KiB
Plaintext
--- Makefile.orig Sat Sep 27 00:04:52 1997
|
|
+++ Makefile Wed Oct 15 17:09:58 1997
|
|
@@ -5,11 +5,11 @@
|
|
###########################################################################
|
|
|
|
# The base directory for all samba files
|
|
-BASEDIR = /usr/local/samba
|
|
+BASEDIR = $(PREFIX)
|
|
|
|
# The base manpages directory to put the man pages in
|
|
# Note: $(MANDIR)/man1, $(MANDIR)/man5 and $(MANDIR)/man8 must exist.
|
|
-MANDIR = /usr/local/man
|
|
+MANDIR = $(PREFIX)/man
|
|
|
|
# The directories to put things in. If you use multiple
|
|
# architectures or share the samba binaries across NFS then
|
|
@@ -18,9 +18,9 @@
|
|
# normally only applies to nmbd and smbd
|
|
# SBINDIR implies a secure binary directory
|
|
BINDIR = $(BASEDIR)/bin
|
|
-SBINDIR = $(BASEDIR)/bin
|
|
-LIBDIR = $(BASEDIR)/lib
|
|
-VARDIR = $(BASEDIR)/var
|
|
+SBINDIR = $(BASEDIR)/sbin
|
|
+ETCDIR = $(BASEDIR)/etc
|
|
+LOGDIR = /var/log
|
|
|
|
# The permissions to give the executables
|
|
INSTALLPERMS = 0755
|
|
@@ -45,13 +45,13 @@
|
|
# set these to where to find various files
|
|
# These can be overridden by command line switches (see smbd(8))
|
|
# or in smb.conf (see smb.conf(5))
|
|
-SMBLOGFILE = $(VARDIR)/log.smb
|
|
-NMBLOGFILE = $(VARDIR)/log.nmb
|
|
-CONFIGFILE = $(LIBDIR)/smb.conf
|
|
-LMHOSTSFILE = $(LIBDIR)/lmhosts
|
|
+SMBLOGFILE = $(LOGDIR)/smb
|
|
+NMBLOGFILE = $(LOGDIR)/nmb
|
|
+CONFIGFILE = $(ETCDIR)/smb.conf
|
|
+LMHOSTSFILE = $(ETCDIR)/lmhosts
|
|
|
|
# the directory where lock files go
|
|
-LOCKDIR = $(VARDIR)/locks
|
|
+LOCKDIR = /var/spool/lock
|
|
|
|
# set this to the default group you want your machine to appear in
|
|
# for browsing. This can also be set in nmbd (see nmbd(8))
|
|
@@ -383,8 +383,8 @@
|
|
# This is for FreeBSD
|
|
# contributed by kuku@acds.physik.rwth-aachen.de
|
|
# NOTE: You may need to add -DBSD44 if you have password problems
|
|
-# FLAGSM = -DFreeBSD -DFAST_SHARE_MODES
|
|
-# LIBSM = -lcrypt
|
|
+FLAGSM = -DFreeBSD -DFAST_SHARE_MODES
|
|
+LIBSM = -lcrypt
|
|
|
|
|
|
# This is for NEXTSTEP Release 2.X
|
|
@@ -684,8 +684,8 @@
|
|
install: installbin installman installscripts
|
|
|
|
installbin: all
|
|
- @$(SHELL) $(srcdir)installbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(LIBDIR) $(VARDIR) $(SPROGS)
|
|
- @$(SHELL) $(srcdir)installbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(LIBDIR) $(VARDIR) $(PROGS)
|
|
+ @$(SHELL) $(srcdir)installbin.sh $(INSTALLPERMS) $(BASEDIR) $(SBINDIR) $(ETCDIR) $(LOGDIR) $(SPROGS)
|
|
+ @$(SHELL) $(srcdir)installbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(ETCDIR) $(LOGDIR) $(PROGS)
|
|
|
|
installscripts:
|
|
@$(SHELL) $(srcdir)installscripts.sh $(INSTALLPERMS) $(BINDIR) $(SCRIPTS)
|