diff options
author | will <will@FreeBSD.org> | 2000-10-29 04:45:17 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-10-29 04:45:17 +0000 |
commit | bbaa6504b30189b9b240fb462f5733340cbef7d7 (patch) | |
tree | 6c1d86f365eea4e24bc6b2b9b8bdcd3fe3a25584 /dns/bind9/Makefile | |
parent | 56ea761b664d9ff80db9c32618b73e388239283b (diff) | |
download | FreeBSD-ports-bbaa6504b30189b9b240fb462f5733340cbef7d7.zip FreeBSD-ports-bbaa6504b30189b9b240fb462f5733340cbef7d7.tar.gz |
Update to BIND version 9.0.0, now with better DNSSEC support among lots
of other neat things like that. Sorry for the delay.
Repo-copy by: asami
Diffstat (limited to 'dns/bind9/Makefile')
-rw-r--r-- | dns/bind9/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dns/bind9/Makefile b/dns/bind9/Makefile new file mode 100644 index 0000000..dc3eac5 --- /dev/null +++ b/dns/bind9/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: bind +# Date created: 6 October 2000 +# Whom: will +# +# $FreeBSD$ +# + +PORTNAME= bind +PORTVERSION= 9.0.0 +CATEGORIES= net +MASTER_SITES= ftp://ftp.isc.org/isc/bind9/${PORTVERSION}/ \ + ftp://ftp.sunet.se/pub/network/isc/bind9/${PORTVERSION}/ + +MAINTAINER= ports@FreeBSD.org + +GNU_CONFIGURE= yes + +MAN1= host.1 +MAN5= rndc.conf.5 +MAN8= lwresd.8 named.8 nsupdate.8 rndc.8 dnssec-keygen.8 dnssec-makekeyset.8 \ + dnssec-signkey.8 dnssec-signzone.8 + +post-install: +.for NUM in 1 5 8 + ${INSTALL_MAN} ${WRKSRC}/doc/man/bin/*.${NUM} ${MANPREFIX}/man/man${NUM} +.endfor + ${INSTALL_MAN} ${WRKSRC}/doc/man/dnssec/* ${MANPREFIX}/man/man8 + +.include <bsd.port.mk> |