pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/courier-authlib Update security/courier-authl...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/89f9b1aa0e9c
branches:  trunk
changeset: 489231:89f9b1aa0e9c
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Fri Feb 18 22:12:43 2005 +0000

description:
Update security/courier-authlib to 0.54.  Changes from version 0.53
include:

        * userdb/makeuserdb.in: Report dangling symlinks.

diffstat:

 security/courier-authlib/DEINSTALL        |  17 ++++++++++-------
 security/courier-authlib/Makefile         |  10 +++++++---
 security/courier-authlib/Makefile.common  |   4 ++--
 security/courier-authlib/PLIST            |   3 ++-
 security/courier-authlib/distinfo         |   7 ++++---
 security/courier-authlib/patches/patch-ab |  22 ++++++++++++++++++++++
 6 files changed, 47 insertions(+), 16 deletions(-)

diffs (129 lines):

diff -r e775dcc392e0 -r 89f9b1aa0e9c security/courier-authlib/DEINSTALL
--- a/security/courier-authlib/DEINSTALL        Fri Feb 18 21:29:18 2005 +0000
+++ b/security/courier-authlib/DEINSTALL        Fri Feb 18 22:12:43 2005 +0000
@@ -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 -r e775dcc392e0 -r 89f9b1aa0e9c security/courier-authlib/Makefile
--- a/security/courier-authlib/Makefile Fri Feb 18 21:29:18 2005 +0000
+++ b/security/courier-authlib/Makefile Fri Feb 18 22:12:43 2005 +0000
@@ -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 @@
 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 ${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 -r e775dcc392e0 -r 89f9b1aa0e9c security/courier-authlib/Makefile.common
--- a/security/courier-authlib/Makefile.common  Fri Feb 18 21:29:18 2005 +0000
+++ b/security/courier-authlib/Makefile.common  Fri Feb 18 22:12:43 2005 +0000
@@ -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 -r e775dcc392e0 -r 89f9b1aa0e9c security/courier-authlib/PLIST
--- a/security/courier-authlib/PLIST    Fri Feb 18 21:29:18 2005 +0000
+++ b/security/courier-authlib/PLIST    Fri Feb 18 22:12:43 2005 +0000
@@ -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 -r e775dcc392e0 -r 89f9b1aa0e9c security/courier-authlib/distinfo
--- a/security/courier-authlib/distinfo Fri Feb 18 21:29:18 2005 +0000
+++ b/security/courier-authlib/distinfo Fri Feb 18 22:12:43 2005 +0000
@@ -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 -r e775dcc392e0 -r 89f9b1aa0e9c security/courier-authlib/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/courier-authlib/patches/patch-ab Fri Feb 18 22:12:43 2005 +0000
@@ -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



Home | Main Index | Thread Index | Old Index