aboutsummaryrefslogtreecommitdiffstats
path: root/security/ipsec-tools
diff options
context:
space:
mode:
authorarved <arved@FreeBSD.org>2007-09-03 00:48:50 +0800
committerarved <arved@FreeBSD.org>2007-09-03 00:48:50 +0800
commita2b296bdd7d7422197055ae2c6e8c2daa7ce8277 (patch)
treee4f359e69ccbdd5a07734050eff31245796f6f4c /security/ipsec-tools
parentd39c7c5b20e7891635647115aa6bbb66b86f9f54 (diff)
downloadfreebsd-ports-gnome-a2b296bdd7d7422197055ae2c6e8c2daa7ce8277.tar.gz
freebsd-ports-gnome-a2b296bdd7d7422197055ae2c6e8c2daa7ce8277.tar.zst
freebsd-ports-gnome-a2b296bdd7d7422197055ae2c6e8c2daa7ce8277.zip
Update to 0.7
PR: 115978 Submitted by: VANHULLEBUS Yvan <vanhu@netasq.com>
Diffstat (limited to 'security/ipsec-tools')
-rw-r--r--security/ipsec-tools/Makefile2
-rw-r--r--security/ipsec-tools/distinfo6
-rw-r--r--security/ipsec-tools/files/patch-configure4
-rw-r--r--security/ipsec-tools/files/patch-src__racoon__eaytest.c20
-rw-r--r--security/ipsec-tools/files/patch-src__racoon__plog.c11
-rw-r--r--security/ipsec-tools/files/patch-src__racoon__var.h23
6 files changed, 6 insertions, 60 deletions
diff --git a/security/ipsec-tools/Makefile b/security/ipsec-tools/Makefile
index 0fed3ecbf534..61e1bfe9d83d 100644
--- a/security/ipsec-tools/Makefile
+++ b/security/ipsec-tools/Makefile
@@ -10,7 +10,7 @@
# - $LOCALBASE/sbin/setkey Vs /usr/sbin/setkey
PORTNAME= ipsec-tools
-PORTVERSION= 0.6.7
+PORTVERSION= 0.7
CATEGORIES= security
MASTER_SITES= SF
diff --git a/security/ipsec-tools/distinfo b/security/ipsec-tools/distinfo
index 749e34689f56..58eac3740d00 100644
--- a/security/ipsec-tools/distinfo
+++ b/security/ipsec-tools/distinfo
@@ -1,3 +1,3 @@
-MD5 (ipsec-tools-0.6.7.tar.bz2) = 4fb764f282dc21cf9a656c58e13dacbb
-SHA256 (ipsec-tools-0.6.7.tar.bz2) = 4239f836dc610a2443ded7ba35cb3b87de9d582c800e5d9eb5eed37defd61ef2
-SIZE (ipsec-tools-0.6.7.tar.bz2) = 723032
+MD5 (ipsec-tools-0.7.tar.bz2) = c0a586924edde35264ecfe94ad1c261f
+SHA256 (ipsec-tools-0.7.tar.bz2) = e99919b0ffcd86e10775ef039c340b50e45d6a4169a8465263c86b62addf0ff4
+SIZE (ipsec-tools-0.7.tar.bz2) = 645146
diff --git a/security/ipsec-tools/files/patch-configure b/security/ipsec-tools/files/patch-configure
index ce675f9cf664..40076f479141 100644
--- a/security/ipsec-tools/files/patch-configure
+++ b/security/ipsec-tools/files/patch-configure
@@ -72,6 +72,6 @@
+ LIBS="$LIBS -liconv"
+fi
+
- echo "$as_me:$LINENO: checking if iconv second argument needs const" >&5
- echo $ECHO_N "checking if iconv second argument needs const... $ECHO_C" >&6
+ { echo "$as_me:$LINENO: checking if iconv second argument needs const" >&5
+ echo $ECHO_N "checking if iconv second argument needs const... $ECHO_C" >&6; }
saved_CFLAGS=$CFLAGS
diff --git a/security/ipsec-tools/files/patch-src__racoon__eaytest.c b/security/ipsec-tools/files/patch-src__racoon__eaytest.c
deleted file mode 100644
index 5e4b39740475..000000000000
--- a/security/ipsec-tools/files/patch-src__racoon__eaytest.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- ./src/racoon/eaytest.c.orig Wed Jun 6 01:07:11 2007
-+++ ./src/racoon/eaytest.c Wed Jun 6 01:07:22 2007
-@@ -311,7 +311,7 @@
-
- printf("exact match: succeed.\n");
-
-- if (dnstr_w1) {
-+ if (dnstr_w1 != NULL) {
- asn1dn = eay_str2asn1dn(dnstr_w1, strlen(dnstr_w1));
- if (asn1dn == NULL || asn1dn->l == asn1dn0.l)
- errx(1, "asn1dn length wrong for wildcard 1\n");
-@@ -321,7 +321,7 @@
- printf("wildcard 1 match: succeed.\n");
- }
-
-- if (dnstr_w1) {
-+ if (dnstr_w1 != NULL) {
- asn1dn = eay_str2asn1dn(dnstr_w2, strlen(dnstr_w2));
- if (asn1dn == NULL || asn1dn->l == asn1dn0.l)
- errx(1, "asn1dn length wrong for wildcard 2\n");
diff --git a/security/ipsec-tools/files/patch-src__racoon__plog.c b/security/ipsec-tools/files/patch-src__racoon__plog.c
deleted file mode 100644
index b03a99eafa49..000000000000
--- a/security/ipsec-tools/files/patch-src__racoon__plog.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./src/racoon/plog.c.orig Wed Dec 7 18:19:51 2005
-+++ ./src/racoon/plog.c Wed Jun 6 00:49:18 2007
-@@ -224,7 +224,7 @@
- return;
- }
-
-- openlog(pname, LOG_NDELAY, LOG_DAEMON);
-+ openlog(pname, LOG_NDELAY, LOG_SECURITY);
- }
-
- void
diff --git a/security/ipsec-tools/files/patch-src__racoon__var.h b/security/ipsec-tools/files/patch-src__racoon__var.h
deleted file mode 100644
index 39c946b7aec5..000000000000
--- a/security/ipsec-tools/files/patch-src__racoon__var.h
+++ /dev/null
@@ -1,23 +0,0 @@
---- ./src/racoon/var.h.orig Wed Jun 6 01:06:51 2007
-+++ ./src/racoon/var.h Wed Jun 6 01:07:00 2007
-@@ -76,9 +76,9 @@
- do { \
- if (getnameinfo((x), sysdep_sa_len(x), (y), sizeof(y), (z), sizeof(z), \
- NIFLAGS) != 0) { \
-- if (y) \
-+ if (y != NULL) \
- strncpy((y), "(invalid)", sizeof(y)); \
-- if (z) \
-+ if (z != NULL) \
- strncpy((z), "(invalid)", sizeof(z)); \
- } \
- } while (0);
-@@ -87,7 +87,7 @@
- do { \
- if (getnameinfo((x), sysdep_sa_len(x), (y), sizeof(y), NULL, 0, \
- NIFLAGS) != 0) { \
-- if (y) \
-+ if (y != NULL) \
- strncpy((y), "(invalid)", sizeof(y)); \
- } \
- } while (0);