1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/net/samba3/files/patch-aa
Paul Traina 64dd01aae8 Make Samba follow the freebsd /usr/local directory hierarchy properly.
Logs go to /var/log, configuration files in /usr/local/etc, binaries in
/usr/local/bin and /usr/local/sbin.

Reviewed by:	gpalmer (a long time ago)
1996-07-24 18:28:06 +00:00

139 lines
4.4 KiB
Plaintext

*** Makefile.orig Mon Jan 15 00:02:02 1996
--- Makefile Wed Jul 24 11:23:26 1996
***************
*** 5,19 ****
# The base manpages directory to put the man pages in
# Note: $(MANDIR)/man1, $(MANDIR)/man5 and $(MANDIR)/man8 must exist.
! MANDIR = /usr/local/man
# The directories to put things in. If you use multiple
# architectures or share the samba binaries across NFS then
# you will probably want to change this layout.
! BASEDIR = /usr/local/samba
! BINDIR = $(BASEDIR)/bin
! LIBDIR = $(BASEDIR)/lib
! VARDIR = $(BASEDIR)/var
# WARNING: If you are upgrading, make sure you put all the files
# in the right spot! The default positions have changed!
--- 5,19 ----
# The base manpages directory to put the man pages in
# Note: $(MANDIR)/man1, $(MANDIR)/man5 and $(MANDIR)/man8 must exist.
! MANDIR = ${PREFIX}/man
# The directories to put things in. If you use multiple
# architectures or share the samba binaries across NFS then
# you will probably want to change this layout.
! BINDIR = $(PREFIX)/bin
! SBINDIR = $(PREFIX)/sbin
! ETCDIR = $(PREFIX)/etc
! LOGDIR = /var/log
# WARNING: If you are upgrading, make sure you put all the files
# in the right spot! The default positions have changed!
***************
*** 41,53 ****
# 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
# the directory where lock files go
! LOCKDIR = $(VARDIR)/locks
# 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))
--- 41,53 ----
# 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 = $(LOGDIR)/smb
! NMBLOGFILE = $(LOGDIR)/nmb
! CONFIGFILE = $(ETCDIR)/smb.conf
! LMHOSTSFILE = $(ETCDIR)/lmhosts
# the directory where lock files go
! 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))
***************
*** 276,283 ****
# 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
! # LIBSM = -lcrypt
# This is for NEXTSTEP Release 2.X
--- 276,283 ----
# 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 -DBSD44
! LIBSM = -lcrypt
# This is for NEXTSTEP Release 2.X
***************
*** 452,462 ****
CFLAGS = $(CFLAGS5) $(DCE_FLAGS) $(DES_FLAGS) $(PASSWD_FLAGS) $(VTP_FLAGS)
LIBS = $(LIBS1) $(LIBSM) $(DCE_LIBS) $(DES_LIB)
! PROGS1 = smbd smbclient nmbd testparm testprns smbrun smbstatus smbpasswd
PROGS = $(PROGS1) nmblookup
! SCRIPTS = smbtar addtosmbpass
! all : CHECK $(PROGS)
CHECK :
@$(SHELL) $(srcdir)/checkos.sh $(FLAGSM)
--- 452,465 ----
CFLAGS = $(CFLAGS5) $(DCE_FLAGS) $(DES_FLAGS) $(PASSWD_FLAGS) $(VTP_FLAGS)
LIBS = $(LIBS1) $(LIBSM) $(DCE_LIBS) $(DES_LIB)
! PROGS1 = smbclient smbrun smbstatus smbpasswd
PROGS = $(PROGS1) nmblookup
! SCRIPTS = smbtar
!
! SPROGS = smbd nmbd testparm testprns
! SSCRIPTS = addtosmbpass
! all : CHECK $(PROGS) $(SPROGS)
CHECK :
@$(SHELL) $(srcdir)/checkos.sh $(FLAGSM)
***************
*** 520,530 ****
install: installbin installman
installbin: all
! @$(SHELL) $(srcdir)/installbin.sh $(INSTALLPERMS) $(BASEDIR) $(BINDIR) $(LIBDIR) $(VARDIR) $(PROGS) $(SCRIPTS)
# revert to the previously installed version
revert:
@$(SHELL) $(srcdir)/revert.sh $(BINDIR) $(PROGS) $(SCRIPTS)
installman:
@$(SHELL) $(srcdir)/installman.sh $(MANDIR)
--- 523,535 ----
install: installbin installman
installbin: all
! @$(SHELL) $(srcdir)/installbin.sh $(INSTALLPERMS) $(PREFIX) $(BINDIR) $(ETCDIR) $(LOGDIR) $(PROGS) $(SCRIPTS)
! @$(SHELL) $(srcdir)/installbin.sh $(INSTALLPERMS) $(PREFIX) $(SBINDIR) $(ETCDIR) $(LOGDIR) $(SPROGS) $(SSCRIPTS)
# revert to the previously installed version
revert:
@$(SHELL) $(srcdir)/revert.sh $(BINDIR) $(PROGS) $(SCRIPTS)
+ @$(SHELL) $(srcdir)/revert.sh $(SBINDIR) $(SPROGS) $(SSCRIPTS)
installman:
@$(SHELL) $(srcdir)/installman.sh $(MANDIR)