diff options
author | sanpei <sanpei@FreeBSD.org> | 2005-05-03 15:35:57 +0800 |
---|---|---|
committer | sanpei <sanpei@FreeBSD.org> | 2005-05-03 15:35:57 +0800 |
commit | 01ac2a61e503d04082987d7c37e624af16def0e7 (patch) | |
tree | f674bd296ad5bf61240e216cec58e0e86c5b8921 /dns/doc/Makefile | |
parent | eb94334ca511f1f30d9b850fad380788e2402948 (diff) | |
download | freebsd-ports-gnome-01ac2a61e503d04082987d7c37e624af16def0e7.tar.gz freebsd-ports-gnome-01ac2a61e503d04082987d7c37e624af16def0e7.tar.zst freebsd-ports-gnome-01ac2a61e503d04082987d7c37e624af16def0e7.zip |
Update to version 2.2.3
BROKEN on 4.x: This version of DOC requires DiG Version-9.x to run.
Diffstat (limited to 'dns/doc/Makefile')
-rw-r--r-- | dns/doc/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/dns/doc/Makefile b/dns/doc/Makefile index 6f759e8d467f..bf6d33345243 100644 --- a/dns/doc/Makefile +++ b/dns/doc/Makefile @@ -6,19 +6,26 @@ # PORTNAME= doc -PORTVERSION= 2.1.4 -PORTREVISION= 1 +PORTVERSION= 2.2.3 CATEGORIES= net MASTER_SITES= ftp://ftp.shub-internet.org/pub/shub/brad/dns/ MAINTAINER= sanpei@FreeBSD.org COMMENT= Diagnose unhealthy DNS domains +USE_BZIP2= yes + AUX_DIR= lib/doc -AUX_FILES= doc1.awk doc3.awk doc4.awk INFO RFC.XXXX +AUX_FILES= doc-1.awk doc-3.awk doc-4.awk INFO RFC.XXXX MAN8= doc.8 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "This version of DOC requires DiG Version-9.x to run on 4.x." +.endif + do-build: @${MV} ${WRKSRC}/doc ${WRKSRC}/doc.org @${SED} -e 's|$${PREFIX}|${PREFIX}|g' -e 's|$${AUX_DIR}|${AUX_DIR}|g' ${WRKSRC}/doc.org \ @@ -34,4 +41,4 @@ do-install: @${INSTALL_DATA} ${WRKSRC}/doc.8 ${PREFIX}/man/man8/doc.8 .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |