summaryrefslogtreecommitdiff
path: root/security/racoon/patches
diff options
context:
space:
mode:
authoritojun <itojun>2000-06-12 10:45:52 +0000
committeritojun <itojun>2000-06-12 10:45:52 +0000
commita3d2c723ee2bbe226b5ff01ddaf0fb86c82cd36c (patch)
tree393d43d5db40d79b1be97f1c84fa10203f2ddcf5 /security/racoon/patches
parentfbc21463a2f60b0591a73b7b98ecdd133e0aab08 (diff)
downloadpkgsrc-a3d2c723ee2bbe226b5ff01ddaf0fb86c82cd36c.tar.gz
build 20000612 KAME racoon IKE daemon, by pulling tar.gz from ftp.kame.net
(does not use anoncvs any more). changes in racoon itself is way too many to mention. for full changelog refer http://www.kame.net/dev/cvsweb.cgi/kame/CHANGELOG.
Diffstat (limited to 'security/racoon/patches')
-rw-r--r--security/racoon/patches/patch-aa38
-rw-r--r--security/racoon/patches/patch-ab19
-rw-r--r--security/racoon/patches/patch-ac22
-rw-r--r--security/racoon/patches/patch-ad14
4 files changed, 71 insertions, 22 deletions
diff --git a/security/racoon/patches/patch-aa b/security/racoon/patches/patch-aa
index 8cc41c6beb2..6fee80a43f2 100644
--- a/security/racoon/patches/patch-aa
+++ b/security/racoon/patches/patch-aa
@@ -1,23 +1,17 @@
-$NetBSD: patch-aa,v 1.1.1.1 2000/04/04 03:01:12 itojun Exp $
---- Makefile.in.orig Mon Apr 3 19:34:51 2000
-+++ Makefile.in Mon Apr 3 19:38:45 2000
-@@ -9,7 +9,7 @@
- OPTFLAG=@OPTFLAG@
- CFLAGS= @CFLAGS@ @CPPFLAGS@ @DEFS@ $(CPPFLAGS) $(OPTFLAG) -DIPSEC -I. -I$(srcdir) -Dss_family=__ss_family -Dss_len=__ss_len -DSYSCONFDIR=\"${sysconfdir}\"
- CFLAGS+=-DYY_NO_UNPUT
--LIBS= @LIBS@
-+LIBS= @LIBS@ -L${srcdir}/../libpfkey -lpfkey
- YFLAGS+=-d
+$NetBSD: patch-aa,v 1.2 2000/06/12 10:45:52 itojun Exp $
+--- ../libipsec/Makefile- Mon Jun 12 00:02:28 2000
++++ ../libipsec/Makefile Mon Jun 12 00:02:49 2000
+@@ -25,9 +25,10 @@
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ # SUCH DAMAGE.
- prefix= @prefix@
-@@ -78,10 +78,6 @@
- $(INSTALL) -o bin -g bin -m 444 racoon.conf.5 $(mandir)/man5
- -mkdir -p ${sysconfdir}/racoon
- for i in $(CONF); do \
-- if test ! -f ${sysconfdir}/racoon/$$i; then \
-- $(INSTALL) -o bin -g bin -m 444 samples/$$i \
-- ${sysconfdir}/racoon; \
-- fi; \
- $(INSTALL) -o bin -g bin -m 444 samples/$$i \
- ${sysconfdir}/racoon/$$i.dist; \
- done
+-.if exists(${.CURDIR}/../Makefile.opsys)
+-.include "${.CURDIR}/../Makefile.opsys"
+-.endif
++#.if exists(${.CURDIR}/../Makefile.opsys)
++#.include "${.CURDIR}/../Makefile.opsys"
++#.endif
++OPSYS!= uname -s
+
+ LIB= ipsec
+ CFLAGS+=-g
diff --git a/security/racoon/patches/patch-ab b/security/racoon/patches/patch-ab
new file mode 100644
index 00000000000..3cead189ddf
--- /dev/null
+++ b/security/racoon/patches/patch-ab
@@ -0,0 +1,19 @@
+$NetBSD: patch-ab,v 1.1 2000/06/12 10:45:53 itojun Exp $
+--- Makefile.in.orig Fri Jun 9 06:30:38 2000
++++ Makefile.in Mon Jun 12 00:20:22 2000
+@@ -77,15 +77,6 @@
+ $(INSTALL) -s -o bin -g bin -m 555 racoon $(prefix)/sbin
+ $(INSTALL) -o bin -g bin -m 444 racoon.8 $(mandir)/man8
+ $(INSTALL) -o bin -g bin -m 444 racoon.conf.5 $(mandir)/man5
+- -mkdir -p ${sysconfdir}/racoon
+- for i in $(CONF); do \
+- if test ! -f ${sysconfdir}/racoon/$$i; then \
+- $(INSTALL) -o bin -g bin -m 444 samples/$$i \
+- ${sysconfdir}/racoon; \
+- fi; \
+- $(INSTALL) -o bin -g bin -m 444 samples/$$i \
+- ${sysconfdir}/racoon/$$i.dist; \
+- done
+
+ clean:
+ -rm -f $(PROG) *.o *.core y.tab.h
diff --git a/security/racoon/patches/patch-ac b/security/racoon/patches/patch-ac
new file mode 100644
index 00000000000..5281d72ed83
--- /dev/null
+++ b/security/racoon/patches/patch-ac
@@ -0,0 +1,22 @@
+$NetBSD: patch-ac,v 1.1 2000/06/12 10:45:53 itojun Exp $
+--- samples/racoon.conf.sample- Mon Jun 12 00:27:22 2000
++++ samples/racoon.conf.sample Mon Jun 12 00:27:58 2000
+@@ -2,15 +2,15 @@
+
+ # "path" must be placed before it should be used.
+ # You can overwrite which you defined, but it should not use due to confusing.
+-#path include "/usr/local/v6/etc" ;
++#path include "/etc/racoon" ;
+ #include "remote.conf" ;
+
+ # search this file for pre_shared_key with various ID key.
+-path pre_shared_key "/usr/local/v6/etc/psk.txt" ;
++path pre_shared_key "/etc/racoon/psk.txt" ;
+
+ # racoon will search this directory if the certificate or certificate request
+ # is received.
+-#path certificate "/usr/local/openssl/certs" ;
++#path certificate "/usr/pkg/certs" ;
+
+ # personal information.
+ identifier user_fqdn "foo@kame.net";
diff --git a/security/racoon/patches/patch-ad b/security/racoon/patches/patch-ad
new file mode 100644
index 00000000000..d4719f3e71b
--- /dev/null
+++ b/security/racoon/patches/patch-ad
@@ -0,0 +1,14 @@
+$NetBSD: patch-ad,v 1.1 2000/06/12 10:45:53 itojun Exp $
+--- racoon.8- Mon Jun 12 00:46:13 2000
++++ racoon.8 Mon Jun 12 00:46:28 2000
+@@ -92,8 +92,8 @@
+ .El
+ .\"
+ .Sh FILES
+-.Bl -tag -width /usr/local/v6/etc/racoon.conf -compact
+-.It Pa /usr/local/v6/etc/racoon.conf
++.Bl -tag -width /etc/racoon/racoon.conf -compact
++.It Pa /etc/racoon/racoon.conf
+ default configuration file.
+ .It Pa /var/log/racoon.log
+ default log file.