5ae8688c07
With hat: portmgr
34 lines
937 B
Makefile
34 lines
937 B
Makefile
# Created by: Piotr Kubaj <pkubaj@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nsec3walker
|
|
PORTVERSION= 20101223
|
|
CATEGORIES= dns
|
|
MASTER_SITES= https://dnscurve.org/
|
|
|
|
MAINTAINER= pkubaj@FreeBSD.org
|
|
COMMENT= Walk NSEC3 secured DNSSEC zones
|
|
|
|
DEPRECATED= Uses deprecated version of python
|
|
EXPIRATION_DATE= 2020-09-15
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsddb>0:databases/py-bsddb@${PY_FLAVOR} \
|
|
dig:dns/bind-tools
|
|
|
|
USES= python:2.7 shebangfix ssl
|
|
|
|
SHEBANG_FILES= ${WRKSRC}/collect ${WRKSRC}/unhash
|
|
PLIST_FILES= bin/collect \
|
|
bin/dicthashes \
|
|
bin/query \
|
|
bin/randomhashes \
|
|
bin/unhash
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/collect ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dicthashes ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/query ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/randomhashes ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/unhash ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|