freebsd-ports/net/dhcp6/Makefile
Hiroki Sato fd77224193 Update to 20080615.2. Changes include:
- Remove the PID file just before dhcp6c actually exits.
- Set a DHCPv6 state keyword to an environment variable "REASON" which
  is passed to the client script when receiving a REPLY message instead of
  "NBI".
- Add a signal handler for SIGUSR1 to forcibly exit without
  releasing the obtained addresses.
- Add a new script event "EXIT", which is invoked when dhcp6c exits.

Reference:	https://github.com/hrs-allbsd/wide-dhcpv6/pull/5
2017-03-01 06:12:29 +00:00

35 lines
789 B
Makefile

# Created by: Munechika SUMIKAWA <sumikawa@FreeBSD.org>
# $FreeBSD$
PORTNAME= dhcp6
PORTVERSION= 20080615.2
DISTVERSIONPREFIX= v
CATEGORIES= net ipv6
MAINTAINER= hrs@FreeBSD.org
COMMENT= KAME DHCP6 client, server, and relay
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
USE_GITHUB= yes
GH_ACCOUNT= hrs-allbsd
GH_PROJECT= wide-dhcpv6
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --sysconfdir=${LOCALBASE}/etc \
--with-localdbdir=/var/db
USE_RC_SUBR= dhcp6c dhcp6relay dhcp6s
PORTDOCS= README
OPTIONS_DEFINE= DOCS
post-install:
cd ${WRKSRC} && ${INSTALL_DATA} \
dhcp6c.conf.sample dhcp6s.conf.sample \
${STAGEDIR}${PREFIX}/etc
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>