summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-02-18 22:12:43 +0000
committerjlam <jlam@pkgsrc.org>2005-02-18 22:12:43 +0000
commit6db647b41a133df247c95d15e125cb68eb498315 (patch)
treeca649ba53718b814017889c597ade873afaff3bf /security
parent70ebc5b321f08b50c1d570334ad77859b8f8a1cd (diff)
downloadpkgsrc-6db647b41a133df247c95d15e125cb68eb498315.tar.gz
Update security/courier-authlib to 0.54. Changes from version 0.53
include: * userdb/makeuserdb.in: Report dangling symlinks.
Diffstat (limited to 'security')
-rw-r--r--security/courier-authlib/DEINSTALL17
-rw-r--r--security/courier-authlib/Makefile10
-rw-r--r--security/courier-authlib/Makefile.common4
-rw-r--r--security/courier-authlib/PLIST3
-rw-r--r--security/courier-authlib/distinfo7
-rw-r--r--security/courier-authlib/patches/patch-ab22
6 files changed, 47 insertions, 16 deletions
diff --git a/security/courier-authlib/DEINSTALL b/security/courier-authlib/DEINSTALL
index 82e9db36334..134ac8c90b3 100644
--- a/security/courier-authlib/DEINSTALL
+++ b/security/courier-authlib/DEINSTALL
@@ -1,16 +1,19 @@
-# $NetBSD: DEINSTALL,v 1.1.1.1 2005/02/10 03:21:30 jlam Exp $
+# $NetBSD: DEINSTALL,v 1.2 2005/02/18 22:12:43 jlam Exp $
case ${STAGE} in
DEINSTALL)
#
- # Note some additional files that are may be created by the
- # sysadmin that can probably be removed.
+ # Note some additional files that may be created by the sysadmin
+ # that can probably be removed.
#
if ${TEST} -x ./+FILES; then
- { ${ECHO} "# FILE: ${PKG_SYSCONFDIR}/userdb . /dev/null";
- ${ECHO} "# FILE: ${PKG_SYSCONFDIR}/userdb.dat . /dev/null";
- ${ECHO} "# FILE: ${PKG_SYSCONFDIR}/userdbshadow.dat . /dev/null";
- } >> ./+FILES
+ for file in \
+ ${PKG_SYSCONFDIR}/userdb \
+ ${PKG_SYSCONFDIR}/userdb.dat \
+ ${PKG_SYSCONFDIR}/userdbshadow.dat
+ do
+ ${ECHO} "# FILE: $file . /dev/null" >> ./+FILES
+ done
fi
;;
diff --git a/security/courier-authlib/Makefile b/security/courier-authlib/Makefile
index 371e8a71ab5..6639ef9784e 100644
--- a/security/courier-authlib/Makefile
+++ b/security/courier-authlib/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.2 2005/02/10 03:50:03 jlam Exp $
+# $NetBSD: Makefile,v 1.3 2005/02/18 22:12:43 jlam Exp $
.include "Makefile.common"
-DISTNAME= courier-authlib-0.53
+DISTNAME= courier-authlib-0.54
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=courier/}
EXTRACT_SUFX= .tar.bz2
@@ -43,6 +43,8 @@ AUTHEXAMPLEDIR= share/examples/courier-authlib
FILES_SUBST+= AUTHLIBEXECDIR=${AUTHLIBEXECDIR}
FILES_SUBST+= AUTHEXAMPLEDIR=${AUTHEXAMPLEDIR}
+PKG_SYSCONFSUBDIR?= courier
+
EGDIR= ${PREFIX}/${AUTHEXAMPLEDIR}
RCD_SCRIPTS= authdaemond
GEN_FILES= authdaemonrc
@@ -73,9 +75,11 @@ GENERATE_PLIST+= ${ECHO} "@dirrm ${AUTHEXAMPLEDIR}";
GENERATE_PLIST+= ${ECHO} "@dirrm ${AUTHLIBEXECDIR}";
GENERATE_PLIST+= ${ECHO} "@dirrm ${AUTHLIBDIR}";
-INSTALLATION_DIRS= ${EGDIR} ${PREFIX}/sbin
+INSTALLATION_DIRS= bin sbin
post-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/makedat/makedat ${PREFIX}/bin
+ ${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/authldap.schema ${EGDIR}
${INSTALL_SCRIPT} ${WRKSRC}/sysconftool ${PREFIX}/sbin
diff --git a/security/courier-authlib/Makefile.common b/security/courier-authlib/Makefile.common
index 622b147d16f..8d762bbe2c7 100644
--- a/security/courier-authlib/Makefile.common
+++ b/security/courier-authlib/Makefile.common
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.common,v 1.2 2005/02/10 03:50:03 jlam Exp $
+# $NetBSD: Makefile.common,v 1.3 2005/02/18 22:12:43 jlam Exp $
COURIER_USER?= courier
-COURIER_GROUP?= courier
+COURIER_GROUP?= mail
FILES_SUBST+= COURIER_USER=${COURIER_USER}
FILES_SUBST+= COURIER_GROUP=${COURIER_GROUP}
diff --git a/security/courier-authlib/PLIST b/security/courier-authlib/PLIST
index 6d83cdb06ef..5fcdd4e3604 100644
--- a/security/courier-authlib/PLIST
+++ b/security/courier-authlib/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2005/02/10 03:21:30 jlam Exp $
+@comment $NetBSD: PLIST,v 1.2 2005/02/18 22:12:43 jlam Exp $
bin/courierauthconfig
+bin/makedat
include/courier_auth_config.h
include/courierauth.h
include/courierauthdebug.h
diff --git a/security/courier-authlib/distinfo b/security/courier-authlib/distinfo
index 76240e00b24..fee0c639629 100644
--- a/security/courier-authlib/distinfo
+++ b/security/courier-authlib/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.1.1.1 2005/02/10 03:21:30 jlam Exp $
+$NetBSD: distinfo,v 1.2 2005/02/18 22:12:43 jlam Exp $
-SHA1 (courier-authlib-0.53.tar.bz2) = 98ee21462a81452c4b637b66b1e71ab1d49e0caa
-Size (courier-authlib-0.53.tar.bz2) = 1966836 bytes
+SHA1 (courier-authlib-0.54.tar.bz2) = a13765f0eaaf93cb937dcd371ed65045f4c3bc44
+Size (courier-authlib-0.54.tar.bz2) = 1966155 bytes
SHA1 (patch-aa) = ef333fefd1331d577d9fdad50d7dcc6e28283d58
+SHA1 (patch-ab) = 9a7d3901ce0628e34e2b69ddc77fb613653e0c2a
diff --git a/security/courier-authlib/patches/patch-ab b/security/courier-authlib/patches/patch-ab
new file mode 100644
index 00000000000..f0da31f905f
--- /dev/null
+++ b/security/courier-authlib/patches/patch-ab
@@ -0,0 +1,22 @@
+$NetBSD: patch-ab,v 1.1 2005/02/18 22:12:43 jlam Exp $
+
+--- configure.orig 2005-02-13 06:26:31.000000000 -0500
++++ configure
+@@ -25547,7 +25547,7 @@ rm -f authdaemonrc.h authldaprc.h authmy
+
+ result=""
+
+-if test -x "$COURIERCONFIG"
++if false
+ then
+ $COURIERCONFIG >conftest.out || exit 1
+ sed -n '/^mail/p' <conftest.out >conftest2.out || exit 1
+@@ -25559,7 +25559,7 @@ then
+ result=" (from courier-config)"
+ fi
+
+-if test -x "$bindir/courierauthconfig"
++if false
+ then
+ $bindir/courierauthconfig --configfiles >conftest.out || exit 1
+ sed -n '/^mail/p' <conftest.out >conftest2.out || exit 1