From 6214e3e7ecebf39e9c1ba504ddcceed98690be4f Mon Sep 17 00:00:00 2001 From: sumikawa Date: Sat, 31 Jul 2004 20:27:38 +0000 Subject: kame-dhcp6 is an open-source implementation of Dynamic Host Configuration Protocol for IPv6 (DHCPv6) developed by the KAME project. The implementation mainly conforms to the following standards: - RFC3315: Dynamic Host Configuration Protocol for IPv6 (DHCPv6) - RFC3319: Dynamic Host Configuration Protocol (DHCPv6) Options for Session Initiation Protocol (SIP) Servers - RFC3633: IPv6 Prefix Options for Dynamic Host Configuration Protocol (DHCP) - RFC3646: DNS Configuration options for Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Note that the current implementation does not support IPv6 address allocation by DHCPv6, and there is no plan to implement that feature at the moment. The main purpose of this implementation is to provide a way of IPv6 prefix delegation (RFC3633) and to provide some "stateless" configuration information such as DNS recursive server addresses. WWW: http://www.kame.net/ --- net/dhcp6/Makefile | 39 +++++++++++++++++++++++++++++++++++++++ net/dhcp6/distinfo | 2 ++ net/dhcp6/pkg-descr | 22 ++++++++++++++++++++++ net/dhcp6/pkg-plist | 9 +++++++++ 4 files changed, 72 insertions(+) create mode 100644 net/dhcp6/Makefile create mode 100644 net/dhcp6/distinfo create mode 100644 net/dhcp6/pkg-descr create mode 100644 net/dhcp6/pkg-plist (limited to 'net/dhcp6') diff --git a/net/dhcp6/Makefile b/net/dhcp6/Makefile new file mode 100644 index 000000000000..a42a60a020b4 --- /dev/null +++ b/net/dhcp6/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: dhcp6 +# Date created: 30 July 2004 +# Whom: sumikawa +# +# $FreeBSD$ +# + +PORTNAME= dhcp6 +PORTVERSION= 20040731a +CATEGORIES= net +MASTER_SITES= ftp://ftp.kame.net/pub/kame/misc/ +DISTNAME= kame-${PORTNAME}-${PORTVERSION} + +MAINTAINER= sumikawa@FreeBSD.org +COMMENT= KAME DHCP6 client and server + +WRKSRC= ${WRKDIR}/${PORTNAME} +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --sysconfdir=${LOCALBASE}/etc --with-localdbdir=/var/db +USE_REINPLACE= yes + +MAN5= dhcp6c.conf.5 dhcp6s.conf.5 +MAN8= dhcp6c.8 dhcp6s.8 dhcp6relay.8 dhcp6sctl.8 + +post-patch: +.for file in ${MAN5} ${MAN8} + ${REINPLACE_CMD} -e 's|/usr/local/v6/etc|${LOCALBASE}/etc|' \ + ${WRKSRC}/${file} +.endfor + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/COPYRIGHT ${DOCSDIR} +.endif + ${INSTALL_DATA} ${WRKSRC}/dhcp6c.conf.sample ${PREFIX}/etc + ${INSTALL_DATA} ${WRKSRC}/dhcp6s.conf.sample ${PREFIX}/etc + +.include diff --git a/net/dhcp6/distinfo b/net/dhcp6/distinfo new file mode 100644 index 000000000000..b935b53c46b0 --- /dev/null +++ b/net/dhcp6/distinfo @@ -0,0 +1,2 @@ +MD5 (kame-dhcp6-20040731a.tar.gz) = 99bb4c5cece598ded90d874cfa68c431 +SIZE (kame-dhcp6-20040731a.tar.gz) = 158400 diff --git a/net/dhcp6/pkg-descr b/net/dhcp6/pkg-descr new file mode 100644 index 000000000000..dce52f79d0d1 --- /dev/null +++ b/net/dhcp6/pkg-descr @@ -0,0 +1,22 @@ +kame-dhcp6 is an open-source implementation of Dynamic Host +Configuration Protocol for IPv6 (DHCPv6) developed by the KAME +project. + +The implementation mainly conforms to the following standards: + +- RFC3315: Dynamic Host Configuration Protocol for IPv6 (DHCPv6) +- RFC3319: Dynamic Host Configuration Protocol (DHCPv6) Options + for Session Initiation Protocol (SIP) Servers +- RFC3633: IPv6 Prefix Options for Dynamic Host Configuration + Protocol (DHCP) +- RFC3646: DNS Configuration options for Dynamic Host + Configuration Protocol for IPv6 (DHCPv6) + +Note that the current implementation does not support IPv6 address +allocation by DHCPv6, and there is no plan to implement that feature +at the moment. The main purpose of this implementation is to provide +a way of IPv6 prefix delegation (RFC3633) and to provide some +"stateless" configuration information such as DNS recursive server +addresses. + +WWW: http://www.kame.net/ diff --git a/net/dhcp6/pkg-plist b/net/dhcp6/pkg-plist new file mode 100644 index 000000000000..463a48fe5b5c --- /dev/null +++ b/net/dhcp6/pkg-plist @@ -0,0 +1,9 @@ +sbin/dhcp6c +sbin/dhcp6s +sbin/dhcp6relay +sbin/dhcp6sctl +etc/dhcp6s.conf.sample +etc/dhcp6c.conf.sample +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT +%%PORTDOCS%%@dirrm %%DOCSDIR%% -- cgit