mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
928d8c7cb6
make it compile on 9.x and silences a compiler warning. A new "Dynamic DNS Mode has been added, but is only slightly tested by the author of gen6dns (Holger.Zuleger(at)hznet.de), who would appreciate any feedback on this feature. Approved by: antoine (mentor, implicit)
25 lines
636 B
Makefile
25 lines
636 B
Makefile
# Created by: Stefan Esser <se@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gen6dns
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.hznet.de/tools/
|
|
|
|
MAINTAINER= se@FreeBSD.org
|
|
COMMENT= Tool to generate static DNS records for IPv6 hosts using SLAAC
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/gen6dns bin/soaserial ${MAN1PREFIX}/man/man1/gen6dns.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gen6dns ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/soaserial ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/gen6dns.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|