aboutsummaryrefslogtreecommitdiffstats
path: root/security/gnupg
diff options
context:
space:
mode:
authorkuriyama <kuriyama@FreeBSD.org>2006-12-07 08:34:17 +0800
committerkuriyama <kuriyama@FreeBSD.org>2006-12-07 08:34:17 +0800
commit115becfe49433f4dd7497a18efd3e8ea53e22e88 (patch)
tree50a9b67a3d36a34bd63d45278b9885e15def1420 /security/gnupg
parent652999833f58a87e13286c1b11f8bc2a5ecbd447 (diff)
downloadfreebsd-ports-gnome-115becfe49433f4dd7497a18efd3e8ea53e22e88.tar.gz
freebsd-ports-gnome-115becfe49433f4dd7497a18efd3e8ea53e22e88.tar.zst
freebsd-ports-gnome-115becfe49433f4dd7497a18efd3e8ea53e22e88.zip
- Upgrade to 1.4.6 (including security fix).
Security: CVE-2006-6235 References: http://lists.gnupg.org/pipermail/gnupg-announce/2006q4/000491.html
Diffstat (limited to 'security/gnupg')
-rw-r--r--security/gnupg/Makefile6
-rw-r--r--security/gnupg/distinfo12
-rw-r--r--security/gnupg/files/patch-openfile.c12
3 files changed, 9 insertions, 21 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile
index 902f7dcefaf7..fb300277174b 100644
--- a/security/gnupg/Makefile
+++ b/security/gnupg/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= gnupg
-PORTVERSION= 1.4.5
-PORTREVISION= 2
+PORTVERSION= 1.4.6
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_GNUPG}
MASTER_SITE_SUBDIR= gnupg
@@ -21,13 +20,14 @@ USE_BZIP2= YES
USE_GMAKE= YES
GNU_CONFIGURE= YES
CONFIGURE_TARGET= --build ${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ARGS= --infodir=${PREFIX}/info --mandir=${PREFIX}/man
.if ${MACHINE_CPU:Mi586}
MACHINE_ARCH= i586
.endif
CFLAGS:= ${CFLAGS:S/-pipe//g}
MAN1= gpg.1 gpgv.1 gpg.ru.1
MAN7= gnupg.7
-INFO= gpg gpgv
+INFO= gnupg1
PORTDOCS= *
diff --git a/security/gnupg/distinfo b/security/gnupg/distinfo
index b40c93e6faf9..3bb0d5afe9de 100644
--- a/security/gnupg/distinfo
+++ b/security/gnupg/distinfo
@@ -1,6 +1,6 @@
-MD5 (gnupg-1.4.5.tar.bz2) = 811525965b4c0987e6418a7729a6444d
-SHA256 (gnupg-1.4.5.tar.bz2) = f30a2679ed6bed71b4af6919cd9b963c896fca64e42eeb0536788cb41b2e1805
-SIZE (gnupg-1.4.5.tar.bz2) = 3089617
-MD5 (gnupg-1.4.5.tar.bz2.sig) = 5e34f226515d46d2c6c7a56ad1d95c1e
-SHA256 (gnupg-1.4.5.tar.bz2.sig) = e0284086b4468f5b9970fe2adb7cd632be69693f5590e7c9a27f9271fb8497a2
-SIZE (gnupg-1.4.5.tar.bz2.sig) = 158
+MD5 (gnupg-1.4.6.tar.bz2) = ec8dc6df1bd83c1d7e1a1ea10653f9f4
+SHA256 (gnupg-1.4.6.tar.bz2) = fd5a72418e55669b88076c2a6f11c3a59bf92a2071008567e65ae12b7372008e
+SIZE (gnupg-1.4.6.tar.bz2) = 3149454
+MD5 (gnupg-1.4.6.tar.bz2.sig) = 8b905292140d60fe493fab7d5b22c96d
+SHA256 (gnupg-1.4.6.tar.bz2.sig) = fb9294762932b34f2fd5a4b168f4c3a248aa7403c2aed8bffa5f67274b1b052d
+SIZE (gnupg-1.4.6.tar.bz2.sig) = 158
diff --git a/security/gnupg/files/patch-openfile.c b/security/gnupg/files/patch-openfile.c
deleted file mode 100644
index 833b06cdafbf..000000000000
--- a/security/gnupg/files/patch-openfile.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- g10/openfile.c.orig Tue Nov 28 07:13:53 2006
-+++ g10/openfile.c Tue Nov 28 07:18:30 2006
-@@ -144,8 +144,8 @@
-
- s = _("Enter new filename");
-
-- n = strlen(s) + namelen + 10;
- defname = name && namelen? make_printable_string( name, namelen, 0): NULL;
-+ n = strlen(s) + (defname?strlen (defname):0) + 10;
- prompt = xmalloc(n);
- if( defname )
- sprintf(prompt, "%s [%s]: ", s, defname );