1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00
freebsd-ports/net/dhcp6/Makefile
Kurt Jaeger ff3c4f36c1 net/dhcp6: several fixes
- rcorder incorrect (Circular dependency on provision `DAEMON')
- command_flags do not need to be referenced inside of the command_args
- dhcp6s exits because of shutdown on non-connected UDP socket

PR:		216673, 217452, 228994
Submitted by:	tdb, Andrey Pevnev <apevnev@me.com>, leres, Dries Michiels <driesm.michiels@gmail.com>
Approved by:	hrs (maintainer timeout)
Differential Revision:	D16994
2018-09-02 21:02:10 +00:00

37 lines
806 B
Makefile

# Created by: Munechika SUMIKAWA <sumikawa@FreeBSD.org>
# $FreeBSD$
PORTNAME= dhcp6
PORTVERSION= 20080615.2
DISTVERSIONPREFIX= v
PORTREVISION= 2
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>