summaryrefslogtreecommitdiff
path: root/net/samba/Makefile
diff options
context:
space:
mode:
authorsalo <salo>2004-11-18 22:25:13 +0000
committersalo <salo>2004-11-18 22:25:13 +0000
commita9360c61973e28f732945f912a67074735a9cb9b (patch)
tree8bdd855e61fbb3ae90736a7b7ea517b9647a2075 /net/samba/Makefile
parent6dd4ce0e71ef205e6e1c93d0fffd4b0abee3557e (diff)
downloadpkgsrc-a9360c61973e28f732945f912a67074735a9cb9b.tar.gz
Pullup ticket 137 - requested by Juan Romero Pardines
security, build and usability fixes for samba Module Name: pkgsrc Committed By: jmmv Date: Sat Nov 6 11:07:17 UTC 2004 Modified Files: pkgsrc/net/samba: Makefile PLIST options.mk Log Message: When cups support is enabled, link smbspool into cups' backend directory as smb (as the manual says). This enables samba printing through cups (at least, the option appears in the web configuration form). Bump PKGREVISION to 2. --- Module Name: pkgsrc Committed By: grant Date: Tue Nov 9 08:21:27 UTC 2004 Modified Files: pkgsrc/net/samba: Makefile PLIST distinfo Log Message: update to samba-3.0.8. Common bugs fixed in 3.0.8 include: o Compile fixes for HP-UX o Fixes for the printer publishing code used when joined to an AD domain. o Incompatibilities with file system quotas. o Several bugs in the spoolss printing code and print system backends. o Inconsistencies in the username map functionality when configured on domain member servers. o Various compile warnings and errors on various platforms. o Fixes for kerberos interoperability with Windows 200x domains when using DES keys. o Fix for CAN-2004-0930 -- smbd remote DoS vulnerability. New features included in the 3.0.8 release are: o New migration functionality added the the net tool for files/directories, printers, and shares. o New experimental idmap backend for assigning uids/gids directly based on the user/group RID when acting as a member of single domain without any trusts. o Additional printer migration support for XP/2003 platforms. --- Module Name: pkgsrc Committed By: sketch Date: Fri Nov 12 08:42:58 UTC 2004 Modified Files: pkgsrc/net/samba: Makefile Log Message: Use ${VARBASE} instead of hardcoding /var. --- Module Name: pkgsrc Committed By: kim Date: Sat Nov 13 21:48:11 UTC 2004 Modified Files: pkgsrc/net/samba: Makefile distinfo Added Files: pkgsrc/net/samba/patches: patch-ag Log Message: Fix full name expansion (again).
Diffstat (limited to 'net/samba/Makefile')
-rw-r--r--net/samba/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/net/samba/Makefile b/net/samba/Makefile
index c893d3613ab..30ccb1af19a 100644
--- a/net/samba/Makefile
+++ b/net/samba/Makefile
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.129 2004/09/14 17:18:05 jlam Exp $
+# $NetBSD: Makefile,v 1.129.2.1 2004/11/18 22:25:13 salo Exp $
-DISTNAME= samba-3.0.7
+DISTNAME= samba-3.0.8
+PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.samba.org/pub/samba/old-versions/ \
ftp://ring.asahi-net.or.jp/pub/net/samba/old-versions/ \
@@ -35,7 +36,7 @@ SAMBA_LOCKDIR?= ${SAMBA_VARDIR}/db/samba
SAMBA_LOGDIR?= ${SAMBA_VARDIR}/log
SAMBA_PIDDIR?= ${SAMBA_VARDIR}/run
SAMBA_PRIVATE?= ${SAMBA_ETCDIR}/private
-SAMBA_VARDIR?= /var
+SAMBA_VARDIR?= ${VARBASE}
FILES_SUBST= SAMBA_ETCDIR=${SAMBA_ETCDIR}
FILES_SUBST+= SAMBA_LOCKDIR=${SAMBA_LOCKDIR}
@@ -145,5 +146,8 @@ post-install:
${INSTALL_DATA} $${file} ${EGDIR}/pam_smbpass/$${file}; \
done
.endif
+.if !empty(PKG_OPTIONS:Mcups)
+ cd ${PREFIX}/libexec/cups/backend && ${LN} -s ../../../bin/smbspool smb
+.endif
.include "../../mk/bsd.pkg.mk"