diff options
author | jlam <jlam@pkgsrc.org> | 2004-04-26 06:58:28 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-04-26 06:58:28 +0000 |
commit | f532365632d9aefaf8258a1f6bfaa8c1676ace53 (patch) | |
tree | 139f2ef8fd2f818482874960a2ac3857a338e9e4 | |
parent | 8b3b759c3d809b6bffe9bb72fc63d1d6662206d1 (diff) | |
download | pkgsrc-f532365632d9aefaf8258a1f6bfaa8c1676ace53.tar.gz |
Updated security/mit-krb5 to 1.3.3. Changes from version 1.3.2 include:
[2284] Fixed accept_sec_context to use a replay cache in the
GSS_C_NO_CREDENTIAL case.
[2453] The AES string-to-key function no longer returns a pointer to
stack memory when given a password longer than 64 characters.
[2277] In sendto_kdc, a socket leak on connection failure was fixed.
[2384] A memory leak in the TCP handling code in the KDC has been fixed.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | security/mit-krb5/Makefile | 18 | ||||
-rw-r--r-- | security/mit-krb5/distinfo | 6 |
3 files changed, 12 insertions, 15 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 26e61cd59b4..a0931bc557b 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.5739 2004/04/26 04:47:21 jlam Exp $ +$NetBSD: CHANGES,v 1.5740 2004/04/26 06:58:32 jlam Exp $ Changes to the packages collection and infrastructure in 2004: @@ -2244,3 +2244,4 @@ Changes to the packages collection and infrastructure in 2004: Added swiggle-0.3.2 [snj 2004-04-26] Updated perl58 to 5.8.4 [jlam 2004-04-26] Added perl-thread-5.8.4 as perl58-thread [jlam 2004-04-26] + Updated mit-krb5 to 1.3.3 [jlam 2004-04-26] diff --git a/security/mit-krb5/Makefile b/security/mit-krb5/Makefile index c595bcd54da..f84cadf17c5 100644 --- a/security/mit-krb5/Makefile +++ b/security/mit-krb5/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2004/04/08 17:22:59 reed Exp $ +# $NetBSD: Makefile,v 1.4 2004/04/26 06:58:28 jlam Exp $ -DISTNAME= krb5-1.3.2 +DISTNAME= krb5-1.3.3 PKGNAME= mit-${DISTNAME} WRKSRC= ${WRKDIR}/${DISTNAME}/src CATEGORIES= security @@ -9,11 +9,7 @@ MAINTAINER= jlam@NetBSD.org HOMEPAGE= http://web.mit.edu/kerberos/www/ COMMENT= MIT Kerberos 5 authentication system -RESTRICTED= "Redistribution not permitted" -NO_SRC_ON_FTP= ${RESTRICTED} -NO_SRC_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_FTP= ${RESTRICTED} -NO_BIN_ON_CDROM= ${RESTRICTED} +RESTRICTED= "Redistribution is restricted by U.S. export regulations" .include "../../mk/bsd.prefs.mk" @@ -93,10 +89,10 @@ INSTALLATION_DIRS= bin info lib sbin pre-configure: @cd ${WRKSRC}; ${FIND} . -name configure -print | \ - while read file; do \ - (dir=`${DIRNAME} $$file`; \ + ${XARGS} -n 1 ${DIRNAME} | \ + while read dir; do \ ${ECHO} "=> Generating configure in $$dir"; \ - cd $$dir && ${AUTOCONF} -I ${WRKSRC} -f); \ + (cd $$dir && ${AUTOCONF} -I ${WRKSRC} -f); \ done post-install: @@ -104,7 +100,7 @@ post-install: ${INSTALL_MAN} $$info ${PREFIX}/${INFO_DIR} ; \ for file in $$info-[0-9]*; do \ if [ -f "$$file" ]; then \ - ${INSTALL_MAN} $$file ${PREFIX}/${INFO_DIR} \ + ${INSTALL_MAN} $$file ${PREFIX}/${INFO_DIR}; \ fi; \ done; \ done diff --git a/security/mit-krb5/distinfo b/security/mit-krb5/distinfo index 3039645c840..090a1b2b009 100644 --- a/security/mit-krb5/distinfo +++ b/security/mit-krb5/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.3 2004/03/30 20:17:42 jlam Exp $ +$NetBSD: distinfo,v 1.4 2004/04/26 06:58:28 jlam Exp $ -SHA1 (krb5-1.3.2.tar) = f647b4ff3524a511dd1713661b6bf4afdd11a61b -Size (krb5-1.3.2.tar) = 6328320 bytes +SHA1 (krb5-1.3.3.tar) = b6df806c11f2425c0f80b07e78a99ebd7c357150 +Size (krb5-1.3.3.tar) = 6359040 bytes SHA1 (patch-aa) = 2f4e62e7c8cdee2f58f8dd5b385faea0253c0aa5 SHA1 (patch-ab) = b9f2f54f9ecfe9eaa168bb68b695a454ac044b9d SHA1 (patch-ac) = e1282a6f00e439d83444f5d8f81dceab863ab1d5 |