mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
bbee32d3f9
PR: 172590 Submitted by: Hirohisa Yamaguchi (umq.876-gmail.com) Feature safe: yes
37 lines
842 B
Makefile
37 lines
842 B
Makefile
# New ports collection makefile for: validns
|
|
# Date created: 2012-04-25
|
|
# Whom: Hirohisa Yamaguchi <umq@ueo.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= validns
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= dns security
|
|
MASTER_SITES= http://www.validns.net/download/
|
|
|
|
MAINTAINER= umq@ueo.co.jp
|
|
COMMENT= A high performance DNS/DNSSEC zone validator
|
|
|
|
LICENSE= BSD
|
|
|
|
LIB_DEPENDS= Judy:${PORTSDIR}/devel/judy
|
|
|
|
ALL_TARGET=
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= Changes README installation.mdwn notes.mdwn \
|
|
technical-notes.mdwn todo.mdwn usage.mdwn
|
|
|
|
.include <bsd.port.pre.mk>
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_DATA} ${MAN1:S,^,${WRKSRC}/,} ${PREFIX}/man/man1/
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|