summaryrefslogtreecommitdiff
path: root/net/ct/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/ct/files')
-rw-r--r--net/ct/files/patch-Makefile34
-rw-r--r--net/ct/files/patch-Makefile.inc8
-rw-r--r--net/ct/files/patch-dd-Makefile24
-rw-r--r--net/ct/files/patch-default-addr-select-Makefile24
-rw-r--r--net/ct/files/patch-icmp-Makefile21
-rw-r--r--net/ct/files/patch-ipsec-Makefile24
-rw-r--r--net/ct/files/patch-ipsec-udp-Makefile21
-rw-r--r--net/ct/files/patch-ipsec4-Makefile24
-rw-r--r--net/ct/files/patch-ipsec4-udp-Makefile24
-rw-r--r--net/ct/files/patch-mip6-cn-20-Makefile24
-rw-r--r--net/ct/files/patch-mip6-ha-20-Makefile24
-rw-r--r--net/ct/files/patch-mip6-mn-20-Makefile24
-rw-r--r--net/ct/files/patch-natpt-Makefile24
-rw-r--r--net/ct/files/patch-nd-Makefile24
-rw-r--r--net/ct/files/patch-pd-Makefile24
-rw-r--r--net/ct/files/patch-pmtu-Makefile21
-rw-r--r--net/ct/files/patch-robust-Makefile24
-rw-r--r--net/ct/files/patch-router-select-Makefile22
-rw-r--r--net/ct/files/patch-spec-Makefile24
-rw-r--r--net/ct/files/patch-stateless-addrconf-Makefile22
-rw-r--r--net/ct/files/patch-tunnel-Makefile21
21 files changed, 482 insertions, 0 deletions
diff --git a/net/ct/files/patch-Makefile b/net/ct/files/patch-Makefile
new file mode 100644
index 000000000000..871bcfaec809
--- /dev/null
+++ b/net/ct/files/patch-Makefile
@@ -0,0 +1,34 @@
+--- Makefile.orig 2005-02-16 17:41:53.000000000 +0900
++++ Makefile 2013-06-17 01:31:29.000000000 +0900
+@@ -4,22 +4,20 @@
+ # $TAHI: ct/Makefile,v 1.22.8.1 2005/02/16 08:41:53 akisada Exp $
+ #
+
+-INSTALL_DIR=$(PREFIX)/ct
+-DOC_DIR=$(PREFIX)/doc
++INSTALL_DIR=$(PREFIX)/v6eval/ct
++DOC_DIR=$(PREFIX)/v6eval/doc
+ DOCFILES= 00README.ct CHANGELOG.ct INSTALL.ct
+-CRFILES= COPYRIGHT
+
+ all:
+
+ afterinstall:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -d -o root -g wheel -m 755 $(DOC_DIR)
+- install -c -o bin -g bin -m 444 $(CRFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(DOCFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(DOCFILES) $(DOC_DIR)
+- install -c -o bin -g bin -m 444 index.html $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.inc $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ install -d -m 555 $(DOC_DIR)
++ ${BSD_INSTALL_DATA} $(DOCFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(DOCFILES) $(DOC_DIR)
++ ${BSD_INSTALL_DATA} index.html $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.inc $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
+ .include "Makefile.inc"
diff --git a/net/ct/files/patch-Makefile.inc b/net/ct/files/patch-Makefile.inc
new file mode 100644
index 000000000000..dc10a2ae26e0
--- /dev/null
+++ b/net/ct/files/patch-Makefile.inc
@@ -0,0 +1,8 @@
+--- Makefile.inc.orig 2013-06-17 01:17:58.000000000 +0900
++++ Makefile.inc 2013-06-17 01:18:14.000000000 +0900
+@@ -1,4 +1,4 @@
+-PREFIX=/usr/local/v6eval
++PREFIX?= %%PREFIX%%/v6eval
+
+ .ifndef AUTORUN
+ AUTORUN = $(PREFIX)/bin/autorun
diff --git a/net/ct/files/patch-dd-Makefile b/net/ct/files/patch-dd-Makefile
new file mode 100644
index 000000000000..a8da87ba3106
--- /dev/null
+++ b/net/ct/files/patch-dd-Makefile
@@ -0,0 +1,24 @@
+--- dd/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ dd/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,4 +1,4 @@
+-INSTALL_DIR=$(PREFIX)/ct/dd
++INSTALL_DIR=$(PREFIX)/v6eval/ct/dd
+
+ SFILES= *.seq *.pm *.pl *.sh
+ DFILES= *.def *.tmpl
+@@ -11,10 +11,10 @@
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(SFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(DFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(ETCFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(SFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(DFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(ETCFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "./Makefile.test"
diff --git a/net/ct/files/patch-default-addr-select-Makefile b/net/ct/files/patch-default-addr-select-Makefile
new file mode 100644
index 000000000000..79da5fdb2f1f
--- /dev/null
+++ b/net/ct/files/patch-default-addr-select-Makefile
@@ -0,0 +1,24 @@
+--- default-addr-select/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ default-addr-select/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,16 +3,16 @@
+ #
+ # $TAHI: ct/default-addr-select/Makefile,v 1.1 2002/09/25 12:07:24 kenta Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/default-addr-select
++INSTALL_DIR=$(PREFIX)/v6eval/ct/default-addr-select
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-icmp-Makefile b/net/ct/files/patch-icmp-Makefile
new file mode 100644
index 000000000000..f5dd628d0050
--- /dev/null
+++ b/net/ct/files/patch-icmp-Makefile
@@ -0,0 +1,21 @@
+--- icmp/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ icmp/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,13 +1,13 @@
+-INSTALL_DIR=$(PREFIX)/ct/icmp
++INSTALL_DIR=$(PREFIX)/v6eval/ct/icmp
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-ipsec-Makefile b/net/ct/files/patch-ipsec-Makefile
new file mode 100644
index 000000000000..db5b2f9b3f9c
--- /dev/null
+++ b/net/ct/files/patch-ipsec-Makefile
@@ -0,0 +1,24 @@
+--- ipsec/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ ipsec/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,16 +3,16 @@
+ #
+ # $TAHI: ct/ipsec/Makefile,v 1.9 2003/06/10 12:11:16 ozoe Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/ipsec
++INSTALL_DIR=$(PREFIX)/v6eval/ct/ipsec
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* *.html 00README .footer *.tmpl
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-ipsec-udp-Makefile b/net/ct/files/patch-ipsec-udp-Makefile
new file mode 100644
index 000000000000..59d8ff2daa19
--- /dev/null
+++ b/net/ct/files/patch-ipsec-udp-Makefile
@@ -0,0 +1,21 @@
+--- ipsec-udp/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ ipsec-udp/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,14 +3,14 @@
+ #
+ # $TAHI: ct/ipsec-udp/Makefile,v 1.2 2003/06/10 10:48:48 akisada Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/ipsec-udp
++INSTALL_DIR=$(PREFIX)/v6eval/ct/ipsec-udp
+ FILES = *.def INDEX* *.html 00README .footer *.tmpl
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-ipsec4-Makefile b/net/ct/files/patch-ipsec4-Makefile
new file mode 100644
index 000000000000..4f0846c2600f
--- /dev/null
+++ b/net/ct/files/patch-ipsec4-Makefile
@@ -0,0 +1,24 @@
+--- ipsec4/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ ipsec4/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,16 +3,16 @@
+ #
+ # $TAHI: ct/ipsec4/Makefile,v 1.8 2001/10/05 06:38:59 masaxmasa Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/ipsec4
++INSTALL_DIR=$(PREFIX)/v6eval/ct/ipsec4
+ XFILES = *.seq
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-ipsec4-udp-Makefile b/net/ct/files/patch-ipsec4-udp-Makefile
new file mode 100644
index 000000000000..8290459cf63c
--- /dev/null
+++ b/net/ct/files/patch-ipsec4-udp-Makefile
@@ -0,0 +1,24 @@
+--- ipsec4-udp/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ ipsec4-udp/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,16 +3,16 @@
+ #
+ # $TAHI: ct/ipsec4-udp/Makefile,v 1.5 2001/10/05 06:39:01 masaxmasa Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/ipsec4-udp
++INSTALL_DIR=$(PREFIX)/v6eval/ct/ipsec4-udp
+ XFILES = *.seq
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-mip6-cn-20-Makefile b/net/ct/files/patch-mip6-cn-20-Makefile
new file mode 100644
index 000000000000..0bc37572e1db
--- /dev/null
+++ b/net/ct/files/patch-mip6-cn-20-Makefile
@@ -0,0 +1,24 @@
+--- mip6-cn-20/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ mip6-cn-20/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -43,16 +43,16 @@
+ #
+ ################################################################
+
+-INSTALL_DIR = $(PREFIX)/ct/mip6-cn-20
++INSTALL_DIR = $(PREFIX)/v6eval/ct/mip6-cn-20
+ XFILES = *.seq *.pm
+ FILES = *.def *.html INDEX .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-mip6-ha-20-Makefile b/net/ct/files/patch-mip6-ha-20-Makefile
new file mode 100644
index 000000000000..86daf10bd7af
--- /dev/null
+++ b/net/ct/files/patch-mip6-ha-20-Makefile
@@ -0,0 +1,24 @@
+--- mip6-ha-20/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ mip6-ha-20/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -42,16 +42,16 @@
+ # $TAHI: ct/mip6-ha-20/Makefile,v 1.3 2003/06/04 07:19:14 akisada Exp $
+ #
+
+-INSTALL_DIR = $(PREFIX)/ct/mip6-ha-20
++INSTALL_DIR = $(PREFIX)/v6eval/ct/mip6-ha-20
+ XFILES = *.seq *.pm
+ FILES = *.def *.html INDEX .footer *.tmpl
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-mip6-mn-20-Makefile b/net/ct/files/patch-mip6-mn-20-Makefile
new file mode 100644
index 000000000000..62dcdf1ae3ae
--- /dev/null
+++ b/net/ct/files/patch-mip6-mn-20-Makefile
@@ -0,0 +1,24 @@
+--- mip6-mn-20/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ mip6-mn-20/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -42,16 +42,16 @@
+ # $Author?$
+ #
+
+-INSTALL_DIR = $(PREFIX)/ct/mip6-mn-20
++INSTALL_DIR = $(PREFIX)/v6eval/ct/mip6-mn-20
+ XFILES = *.seq
+ FILES = *.def *.html INDEX_mn .footer *.pm
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-natpt-Makefile b/net/ct/files/patch-natpt-Makefile
new file mode 100644
index 000000000000..7e556e32a8dc
--- /dev/null
+++ b/net/ct/files/patch-natpt-Makefile
@@ -0,0 +1,24 @@
+--- natpt/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ natpt/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -42,16 +42,16 @@
+ # $TAHI: ct/natpt/Makefile,v 1.5 2001/10/19 08:28:45 akisada Exp $
+ #
+
+-INSTALL_DIR = $(PREFIX)/ct/natpt
++INSTALL_DIR = $(PREFIX)/v6eval/ct/natpt
+ XFILES = *.seq
+ FILES = *.def *.html INDEX_router .footer natpt.pm 00README TODO
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-nd-Makefile b/net/ct/files/patch-nd-Makefile
new file mode 100644
index 000000000000..36bcaf3fb3a3
--- /dev/null
+++ b/net/ct/files/patch-nd-Makefile
@@ -0,0 +1,24 @@
+--- nd/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ nd/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,4 +1,4 @@
+-INSTALL_DIR=$(PREFIX)/ct/nd
++INSTALL_DIR=$(PREFIX)/v6eval/ct/nd
+
+ SFILES= *.seq *.pm
+ DFILES= *.def
+@@ -13,10 +13,10 @@
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(SFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(DFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(ETCFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(SFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(DFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(ETCFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "./Makefile.test"
diff --git a/net/ct/files/patch-pd-Makefile b/net/ct/files/patch-pd-Makefile
new file mode 100644
index 000000000000..7e34030b9a6d
--- /dev/null
+++ b/net/ct/files/patch-pd-Makefile
@@ -0,0 +1,24 @@
+--- pd/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ pd/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,4 +1,4 @@
+-INSTALL_DIR=$(PREFIX)/ct/pd
++INSTALL_DIR=$(PREFIX)/v6eval/ct/pd
+
+ SFILES= *.seq *.pm
+ DFILES= *.def *.tmpl
+@@ -12,10 +12,10 @@
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(SFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(DFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(ETCFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(SFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(DFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(ETCFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "./Makefile.test"
diff --git a/net/ct/files/patch-pmtu-Makefile b/net/ct/files/patch-pmtu-Makefile
new file mode 100644
index 000000000000..35ca0385a878
--- /dev/null
+++ b/net/ct/files/patch-pmtu-Makefile
@@ -0,0 +1,21 @@
+--- pmtu/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ pmtu/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,13 +1,13 @@
+-INSTALL_DIR=$(PREFIX)/ct/pmtu
++INSTALL_DIR=$(PREFIX)/v6eval/ct/pmtu
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-robust-Makefile b/net/ct/files/patch-robust-Makefile
new file mode 100644
index 000000000000..092a2241b293
--- /dev/null
+++ b/net/ct/files/patch-robust-Makefile
@@ -0,0 +1,24 @@
+--- robust/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ robust/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,16 +3,16 @@
+ #
+ # $TAHI: ct/robust/Makefile,v 1.5 2001/10/05 06:39:14 masaxmasa Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/robust
++INSTALL_DIR=$(PREFIX)/v6eval/ct/robust
+ XFILES = *.seq
+ FILES = *.def INDEX* *.html .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-router-select-Makefile b/net/ct/files/patch-router-select-Makefile
new file mode 100644
index 000000000000..81380fadd5f6
--- /dev/null
+++ b/net/ct/files/patch-router-select-Makefile
@@ -0,0 +1,22 @@
+--- router-select/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ router-select/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,4 +1,4 @@
+-INSTALL_DIR=$(PREFIX)/ct/router-select
++INSTALL_DIR=$(PREFIX)/v6eval/ct/router-select
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* .footer *.html
+
+@@ -7,9 +7,9 @@
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "../Makefile.inc"
diff --git a/net/ct/files/patch-spec-Makefile b/net/ct/files/patch-spec-Makefile
new file mode 100644
index 000000000000..f8d467c85b08
--- /dev/null
+++ b/net/ct/files/patch-spec-Makefile
@@ -0,0 +1,24 @@
+--- spec/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ spec/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -3,16 +3,16 @@
+ #
+ # $TAHI: ct/spec/Makefile,v 1.6 2001/10/05 06:39:17 masaxmasa Exp $
+ #
+-INSTALL_DIR=$(PREFIX)/ct/spec
++INSTALL_DIR=$(PREFIX)/v6eval/ct/spec
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"
diff --git a/net/ct/files/patch-stateless-addrconf-Makefile b/net/ct/files/patch-stateless-addrconf-Makefile
new file mode 100644
index 000000000000..ab0f53e20773
--- /dev/null
+++ b/net/ct/files/patch-stateless-addrconf-Makefile
@@ -0,0 +1,22 @@
+--- stateless-addrconf/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ stateless-addrconf/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,4 +1,4 @@
+-INSTALL_DIR=$(PREFIX)/ct/stateless-addrconf
++INSTALL_DIR=$(PREFIX)/v6eval/ct/stateless-addrconf
+ XFILES = *.seq *.pm
+ FILES = *.def *.pktdesc INDEX* *.html 00README .footer
+
+@@ -7,9 +7,9 @@
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "../Makefile.inc"
diff --git a/net/ct/files/patch-tunnel-Makefile b/net/ct/files/patch-tunnel-Makefile
new file mode 100644
index 000000000000..e907b7e7e836
--- /dev/null
+++ b/net/ct/files/patch-tunnel-Makefile
@@ -0,0 +1,21 @@
+--- tunnel/Makefile.orig 2013-06-17 01:19:37.000000000 +0900
++++ tunnel/Makefile 2013-06-17 01:23:46.000000000 +0900
+@@ -1,13 +1,13 @@
+-INSTALL_DIR=$(PREFIX)/ct/tunnel
++INSTALL_DIR=$(PREFIX)/v6eval/ct/tunnel
+ XFILES = *.seq *.pm
+ FILES = *.def INDEX* *.html 00README .footer
+
+ all:
+
+ install:
+- install -d -o bin -g bin -m 755 $(INSTALL_DIR)
+- install -c -o bin -g bin -m 555 $(XFILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 $(FILES) $(INSTALL_DIR)
+- install -c -o bin -g bin -m 444 Makefile.test $(INSTALL_DIR)/Makefile
++ install -d -m 555 $(INSTALL_DIR)
++ ${BSD_INSTALL_SCRIPT} $(XFILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} $(FILES) $(INSTALL_DIR)
++ ${BSD_INSTALL_DATA} Makefile.test $(INSTALL_DIR)/Makefile
+
+ .include "Makefile.test"