summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2002-10-22 18:30:58 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2002-10-22 18:30:58 +0000
commit09566ad638da377a62159f265673f7373c2e808d (patch)
tree882ff5fb6cb2a19a1a5f2694a0bebedad0a9b16b /net
parentUpdate Dominik Rothert's (MAINTAINER) email address. (diff)
Add Dynamic Tunnel Configuration Protocol daemon and client
dtcpc and dtcps implement Dynamic Tunnel Configuration Protocol (DTCP for short) proposed by Trumpet: http://jazz-1.trumpet.com.au/ipv6-draft/dtcp-draft-prt-13-may-1999.htm
Notes
Notes: svn path=/head/; revision=68601
Diffstat (limited to 'net')
-rw-r--r--net/Makefile1
-rw-r--r--net/dtcp/Makefile41
-rw-r--r--net/dtcp/distinfo1
-rw-r--r--net/dtcp/pkg-comment1
-rw-r--r--net/dtcp/pkg-descr8
-rw-r--r--net/dtcp/pkg-plist4
6 files changed, 56 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile
index b5d079cba034..270e85cccdbf 100644
--- a/net/Makefile
+++ b/net/Makefile
@@ -108,6 +108,7 @@
SUBDIR += docsis
SUBDIR += domtools
SUBDIR += driftnet
+ SUBDIR += dtcp
SUBDIR += easysoap
SUBDIR += echolot
SUBDIR += echoping
diff --git a/net/dtcp/Makefile b/net/dtcp/Makefile
new file mode 100644
index 000000000000..07a882d5d0e7
--- /dev/null
+++ b/net/dtcp/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: dtcp
+# Date Created: Sep 27 2002
+# Whom: Hajimu UMEMOTO <ume@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= dtcp
+PORTVERSION= 20021022
+#PORTREVISION= 0
+CATEGORIES= net ipv6
+MASTER_SITES= http://www.imasy.or.jp/~ume/ipv6/
+
+MAINTAINER= ume@FreeBSD.org
+
+.if !defined(DTCP_CLIENT_ONLY)
+RUN_DEPENDS= qpopauth:${PORTSDIR}/mail/qpopper
+.endif
+
+USE_RUBY= yes
+
+WRKSRC= ${WRKDIR}/dtcp
+
+MAN8= dtcpc.8 dtcps.8
+MANCOMPRESSED= yes
+
+pre-everything:
+.if !defined(DTCP_CLIENT_ONLY)
+ @${ECHO} ""
+ @${ECHO} "If you don't use DTCP server, you don't need qpopper."
+ @${ECHO} "In that case, You may use DTCP_CLIENT_ONLY=yes to avoid building qpopper."
+ @${ECHO} ""
+.endif
+
+post-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/dtcpc.sh \
+ ${PREFIX}/etc/rc.d/dtcpc.sh.sample
+ ${INSTALL_SCRIPT} ${WRKSRC}/dtcps.sh \
+ ${PREFIX}/etc/rc.d/dtcps.sh.sample
+
+.include <bsd.port.mk>
diff --git a/net/dtcp/distinfo b/net/dtcp/distinfo
new file mode 100644
index 000000000000..737ab48b5bee
--- /dev/null
+++ b/net/dtcp/distinfo
@@ -0,0 +1 @@
+MD5 (dtcp-20021022.tar.gz) = 9ba30009540098b1bed34fa769977809
diff --git a/net/dtcp/pkg-comment b/net/dtcp/pkg-comment
new file mode 100644
index 000000000000..8f60238cbe38
--- /dev/null
+++ b/net/dtcp/pkg-comment
@@ -0,0 +1 @@
+Dynamic Tunnel Configuration Protocol daemon and client
diff --git a/net/dtcp/pkg-descr b/net/dtcp/pkg-descr
new file mode 100644
index 000000000000..7bf46ec51c3b
--- /dev/null
+++ b/net/dtcp/pkg-descr
@@ -0,0 +1,8 @@
+Dynamic Tunnel Configuration Protocol daemon and client
+
+dtcpc and dtcps implement Dynamic Tunnel Configuration Protocol (DTCP
+for short) proposed by Trumpet:
+
+ http://jazz-1.trumpet.com.au/ipv6-draft/dtcp-draft-prt-13-may-1999.htm
+
+- Hajimu UMEMOTO <ume@FreeBSD.org>
diff --git a/net/dtcp/pkg-plist b/net/dtcp/pkg-plist
new file mode 100644
index 000000000000..eaaced62c158
--- /dev/null
+++ b/net/dtcp/pkg-plist
@@ -0,0 +1,4 @@
+sbin/dtcpc
+sbin/dtcps
+etc/rc.d/dtcpc.sh.sample
+etc/rc.d/dtcps.sh.sample