aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcy <cy@FreeBSD.org>2011-11-17 04:38:49 +0800
committercy <cy@FreeBSD.org>2011-11-17 04:38:49 +0800
commitcf1f1dab69f4310675b00768e578c43d4b95ca2c (patch)
treed2711f2657a280a4a758a85d1a8318a5c30ee3cc
parent81eaa5c8ca880c6ba97ca15e62fdf9e282d22ce5 (diff)
downloadfreebsd-ports-gnome-cf1f1dab69f4310675b00768e578c43d4b95ca2c.tar.gz
freebsd-ports-gnome-cf1f1dab69f4310675b00768e578c43d4b95ca2c.tar.zst
freebsd-ports-gnome-cf1f1dab69f4310675b00768e578c43d4b95ca2c.zip
Update 1.9.1 --> 1.9.2. This is a bugfix release.
Feature safe: yes
-rw-r--r--security/krb5/Makefile3
-rw-r--r--security/krb5/distinfo4
-rw-r--r--security/krb5/files/patch-ax3
-rw-r--r--security/krb5/files/patch-lib-rpc-clnt_tcp.c21
4 files changed, 4 insertions, 27 deletions
diff --git a/security/krb5/Makefile b/security/krb5/Makefile
index e817b3721539..d2f74991057a 100644
--- a/security/krb5/Makefile
+++ b/security/krb5/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= krb5
-PORTVERSION= 1.9.1
-PORTREVISION= 1
+PORTVERSION= 1.9.2
CATEGORIES= security
MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/
#PATCH_SITES= http://web.mit.edu/kerberos/advisories/
diff --git a/security/krb5/distinfo b/security/krb5/distinfo
index c27c551bb077..d59c3fe745ff 100644
--- a/security/krb5/distinfo
+++ b/security/krb5/distinfo
@@ -1,2 +1,2 @@
-SHA256 (krb5-1.9.1-signed.tar) = 525e258aa7401427a5a9edee0051f83b6151bf96a979ca526393932c90484c8e
-SIZE (krb5-1.9.1-signed.tar) = 11888640
+SHA256 (krb5-1.9.2-signed.tar) = 96b213345b02862b5fef61ef1dd26f643f07e4207496c35179cea35ddb7ae68c
+SIZE (krb5-1.9.2-signed.tar) = 12185600
diff --git a/security/krb5/files/patch-ax b/security/krb5/files/patch-ax
index 6cbb8289f93e..8396b35c215b 100644
--- a/security/krb5/files/patch-ax
+++ b/security/krb5/files/patch-ax
@@ -2,8 +2,7 @@
+++ ../doc/Makefile 2007-10-25 14:04:48.000000000 -0700
@@ -1,8 +1,8 @@
SRCDIR=../src
--DVI=texi2dvi4a2ps # texi2dvi
-+DVI=texi2dvi # texi2dvi
+ DVI=texi2dvi
DVIPS=dvips -o "$@"
PSPDF=ps2pdf
-INFO=makeinfo
diff --git a/security/krb5/files/patch-lib-rpc-clnt_tcp.c b/security/krb5/files/patch-lib-rpc-clnt_tcp.c
deleted file mode 100644
index 8427e25152e1..000000000000
--- a/security/krb5/files/patch-lib-rpc-clnt_tcp.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- lib/rpc/clnt_tcp.c.orig 2011-09-06 02:05:14.000000000 +0000
-+++ lib/rpc/clnt_tcp.c 2011-09-06 02:10:30.000000000 +0000
-@@ -187,9 +187,16 @@
- ct->ct_sock = *sockp;
- ct->ct_wait.tv_usec = 0;
- ct->ct_waitset = FALSE;
-- if (raddr == NULL)
-- memset(&ct->ct_addr, 0, sizeof(ct->ct_addr));
-+ if (raddr == NULL) {
-+ /* Get the remote address from the socket, if it's IPv4. */
-+ struct sockaddr_in sin;
-+ socklen_t len = sizeof(sin);
-+ int ret = getpeername(ct->ct_sock, (struct sockaddr *)&sin, &len);
-+ if (ret == 0 && len == sizeof(sin) && sin.sin_family == AF_INET)
-+ ct->ct_addr = sin;
- else
-+ memset(&ct->ct_addr, 0, sizeof(ct->ct_addr));
-+ } else
- ct->ct_addr = *raddr;
-
- /*