diff options
author | Gary Palmer <gpalmer@FreeBSD.org> | 1995-02-11 18:28:43 +0000 |
---|---|---|
committer | Gary Palmer <gpalmer@FreeBSD.org> | 1995-02-11 18:28:43 +0000 |
commit | 5533eb253531cc196a1b096bbbfac2d0c887afbc (patch) | |
tree | 16e9a5b78d1d8a53e52fcd43ab31c52c69e302ad /net/samba-devel | |
parent | db51bf54ec6b70ab1e7a5c13eb4778f05685b554 (diff) | |
download | ports-5533eb253531cc196a1b096bbbfac2d0c887afbc.tar.gz ports-5533eb253531cc196a1b096bbbfac2d0c887afbc.zip |
Notes
Diffstat (limited to 'net/samba-devel')
-rw-r--r-- | net/samba-devel/Makefile | 15 | ||||
-rw-r--r-- | net/samba-devel/distinfo | 1 | ||||
-rw-r--r-- | net/samba-devel/files/patch-aa | 74 |
3 files changed, 90 insertions, 0 deletions
diff --git a/net/samba-devel/Makefile b/net/samba-devel/Makefile new file mode 100644 index 000000000000..2e6a497902f2 --- /dev/null +++ b/net/samba-devel/Makefile @@ -0,0 +1,15 @@ +# New ports collection makefile for: samba +# Version required: 1.9.02 +# Date created: 11th Feb 1995 +# Whom: gpalmer +# +# $Id$ +# + +DISTNAME= samba-1.9.02 +MASTER_SITES= ftp://nimbus.anu.edu.au/pub/tridge/samba/ + +pre-install: + @mkdir -p /usr/local/samba + +.include <bsd.port.mk> diff --git a/net/samba-devel/distinfo b/net/samba-devel/distinfo new file mode 100644 index 000000000000..b8ed8609576e --- /dev/null +++ b/net/samba-devel/distinfo @@ -0,0 +1 @@ +MD5 (samba-1.9.02.tar.gz) = da2c2de0f30669421e36f8c9bb39e929 diff --git a/net/samba-devel/files/patch-aa b/net/samba-devel/files/patch-aa new file mode 100644 index 000000000000..561f074f02bf --- /dev/null +++ b/net/samba-devel/files/patch-aa @@ -0,0 +1,74 @@ +*** Makefile.orig Tue Jan 24 16:30:54 1995 +--- Makefile Sat Feb 11 10:11:05 1995 +*************** +*** 5,16 **** + + # 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 +--- 5,16 ---- + + # 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. +! BASEDIR = ${PREFIX}/samba + BINDIR = $(BASEDIR)/bin + LIBDIR = $(BASEDIR)/lib + VARDIR = $(BASEDIR)/var +*************** +*** 195,202 **** + + # This is for FreeBSD + # contributed by kuku@acds.physik.rwth-aachen.de +! # FLAGSM = -DFreeBSD -DUSE_DIRECT +! # LIBSM = -lcrypt + + + # This is for NeXT. Note that versions of NeXT less than 3.2 +--- 195,202 ---- + + # This is for FreeBSD + # contributed by kuku@acds.physik.rwth-aachen.de +! FLAGSM = -DFreeBSD -DUSE_DIRECT +! LIBSM = -lcrypt + + + # This is for NeXT. Note that versions of NeXT less than 3.2 +*************** +*** 380,386 **** + chmod u=rw,go=r $(MANDIR)/man5/smb.conf.5 + chmod u=rw,go=r $(MANDIR)/man8/smbd.8 + chmod u=rw,go=r $(MANDIR)/man8/nmbd.8 +! + source: + tar cfv sources.tar COPYING README THANKS \ + Makefile announce bugs change-log \ +--- 380,395 ---- + chmod u=rw,go=r $(MANDIR)/man5/smb.conf.5 + chmod u=rw,go=r $(MANDIR)/man8/smbd.8 + chmod u=rw,go=r $(MANDIR)/man8/nmbd.8 +! @echo "Comrpessing manpages" +! @gzip -9f $(MANDIR)/man1/smbstatus.1 +! @gzip -9f $(MANDIR)/man1/smbclient.1 +! @gzip -9f $(MANDIR)/man1/smbrun.1 +! @gzip -9f $(MANDIR)/man1/testparm.1 +! @gzip -9f $(MANDIR)/man1/testprns.1 +! @gzip -9f $(MANDIR)/man5/smb.conf.5 +! @gzip -9f $(MANDIR)/man8/smbd.8 +! @gzip -9f $(MANDIR)/man8/nmbd.8 +! + source: + tar cfv sources.tar COPYING README THANKS \ + Makefile announce bugs change-log \ |