f595668f6b
Approved by: ak Differential Revision: https://reviews.freebsd.org/D10159
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: rodrigc@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hostdb
|
|
PORTVERSION= 1.004
|
|
PORTREVISION= 1
|
|
CATEGORIES= dns
|
|
|
|
MAINTAINER= rodrigc@FreeBSD.org
|
|
COMMENT= Generate DNS and DHCP config files from single source
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= shebangfix tar:tgz
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= TomOnTime
|
|
GH_TAGNAME= fb23e67642514f5
|
|
|
|
NO_BUILD= yes
|
|
|
|
HOSTDB_EXAMPLES_DIRS= example1/out example1/ example2 hiddenmaster
|
|
HOSTDB_EXAMPLES_DIRS+= mailserverexample/out mailserverexample
|
|
|
|
SHEBANG_FILES= bin/mkdestinations bin/mknamedconf bin/zone2hostdbhelper \
|
|
bin/mkzones bin/canonzone bin/genrange
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
pre-install:
|
|
${FIND} ${WRKSRC} -name "*\.orig" -delete
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/* ${STAGEDIR}${PREFIX}/bin
|
|
.for dir in ${HOSTDB_EXAMPLES_DIRS}
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/
|
|
.endfor
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|