diff options
author | nemoliu <nemoliu@FreeBSD.org> | 2010-01-13 14:33:07 +0800 |
---|---|---|
committer | nemoliu <nemoliu@FreeBSD.org> | 2010-01-13 14:33:07 +0800 |
commit | e4fd3fa46ca27dac4a3cecad9167f8abc469e9af (patch) | |
tree | c91678af5d1a785cc01c8fcf6529f13648ba777f /dns | |
parent | ccfcf5a3ee93cd05cc030cda57769786d7677a09 (diff) | |
download | freebsd-ports-gnome-e4fd3fa46ca27dac4a3cecad9167f8abc469e9af.tar.gz freebsd-ports-gnome-e4fd3fa46ca27dac4a3cecad9167f8abc469e9af.tar.zst freebsd-ports-gnome-e4fd3fa46ca27dac4a3cecad9167f8abc469e9af.zip |
Add autotrust 0.3.1, a a tool to automatically update DNSSEC trust
anchors.
PR: ports/142523
Submitted by: Jaap Akkerhuis <jaap at nlnetlabs.nl>
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/autotrust/Makefile | 28 | ||||
-rw-r--r-- | dns/autotrust/distinfo | 3 | ||||
-rw-r--r-- | dns/autotrust/pkg-descr | 5 |
4 files changed, 37 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index 80fab19cbb9f..cc5f53dd2e92 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -5,6 +5,7 @@ SUBDIR += adns SUBDIR += ares + SUBDIR += autotrust SUBDIR += bind9 SUBDIR += bind9-sdb-ldap SUBDIR += bind9-sdb-postgresql diff --git a/dns/autotrust/Makefile b/dns/autotrust/Makefile new file mode 100644 index 000000000000..775dbde70c89 --- /dev/null +++ b/dns/autotrust/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: autotrust +# Date created: 2010-01-09 +# Whom: Jaap Akkerhuis <jaap@nlnetlabs.nl> +# +# $FreeBSD$ +# + +PORTNAME= autotrust +PORTVERSION= 0.3.1 +CATEGORIES= dns +MASTER_SITES= http://www.nlnetlabs.nl/downloads/autotrust/ +DISTNAME= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= jaap@bartok.nlnetlabs.nl +COMMENT= A a tool to automatically update DNSSEC trust anchors + +BUILD_DEPENDS+= ldns:${PORTSDIR}/dns/ldns +BUILD_DEPENDS+= unbound:${PORTSDIR}/dns/unbound + +MAN8= autotrust.8 + +PLIST_FILES= sbin/autotrust \ + etc/autotrust/autotrust.conf.sample +PLIST_DIRS= etc/autotrust + +GNU_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/dns/autotrust/distinfo b/dns/autotrust/distinfo new file mode 100644 index 000000000000..78df05d27528 --- /dev/null +++ b/dns/autotrust/distinfo @@ -0,0 +1,3 @@ +MD5 (autotrust-0.3.1.tar.gz) = ff0177aa0df8c645829fc26de2ac0b54 +SHA256 (autotrust-0.3.1.tar.gz) = d0eaeaf65e26fcd0117d9b6dc056f88278f9bf82f379d5fbfccfd9c53d8b86a7 +SIZE (autotrust-0.3.1.tar.gz) = 305193 diff --git a/dns/autotrust/pkg-descr b/dns/autotrust/pkg-descr new file mode 100644 index 000000000000..1ab330644759 --- /dev/null +++ b/dns/autotrust/pkg-descr @@ -0,0 +1,5 @@ +Autotrust is a command line tool to automatically update your DNSSEC +trust anchors. It is intended to run from a cron job and can run +next to any validating resolver. It makes use of ldns and libunbound. + +WWW: http://www.nlnetlabs.nl/projects/autotrust/ |