diff options
author | erwin <erwin@FreeBSD.org> | 2014-07-23 16:30:09 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2014-07-23 16:30:09 +0800 |
commit | 81a33940b5320f07244e9249c8a780b8742c71ab (patch) | |
tree | 1c4acfcd402b35ed692b87513af871d068fb3fd4 /dns/opendnssec | |
parent | 087673959c983dd6612a37a4354eb385258470d3 (diff) | |
download | freebsd-ports-gnome-81a33940b5320f07244e9249c8a780b8742c71ab.tar.gz freebsd-ports-gnome-81a33940b5320f07244e9249c8a780b8742c71ab.tar.zst freebsd-ports-gnome-81a33940b5320f07244e9249c8a780b8742c71ab.zip |
- Fix location of libsofthsm.so [1]
- Fix depency on sqlite with non-default LOCALBASE [2]
- Update to 1.4.6
Updates:
Signer Engine: Print secondary server address when logging notify reply errors.
Build: Fixed various OpenBSD compatibility issues found by Patrik Lundin <patrik.lundin.swe () gmail.com>.
OPENDNSSEC-621: conf.xml: New options: <PidFile> for both enforcer and signer, and <SocketFile> for the signer.
New tool: ods-getconf: to retrieve a configuration value from conf.xml given an expression.
Bugfixes:
OPENDNSSEC-469: ods-ksmutil: 'zone add' command when zonelist.xml.backup can't be written zone is still added to database, solved it by checking the zonelist.xml.backup is writable before adding zones, and add error message when add zone failed.
OPENDNSSEC-617: Signer Engine: Fix DNS Input Adapter to not reject zone the first time due to RFC 1982 serial arethmetic.
OPENDNSSEC-619: memory leak when signer failed, solved it by add ldns_rr_free(signature) in libhsm.c
OPENDNSSEC-627: Signer Engine: Unable to update serial after restart when the backup files has been removed.
OPENDNSSEC-628: Signer Engine: Ingored notifies log level is changed from debug to info.
OPENDNSSEC-630: Signer Engine: Fix inbound zone transfer for root zone.
libhsm: Fixed a few other memory leaks.
simple-dnskey-mailer.sh: Fix syntax error. (by Patrik Lundin https://github.com/eest)
PR: 191272 [1], 192021 [2], 192023 [3]
Submitted by: Andrew Fyfe <andrew@neptune-one.net> [1],
jhujhiti@adjectivism.org [2],
Jaap Akkerhuis <jaap@NLnetLabs.nl> (maintainer) [3]
Diffstat (limited to 'dns/opendnssec')
-rw-r--r-- | dns/opendnssec/Makefile | 9 | ||||
-rw-r--r-- | dns/opendnssec/distinfo | 4 | ||||
-rw-r--r-- | dns/opendnssec/pkg-plist | 2 |
3 files changed, 9 insertions, 6 deletions
diff --git a/dns/opendnssec/Makefile b/dns/opendnssec/Makefile index 02c499ea2400..5fdfb8cc0915 100644 --- a/dns/opendnssec/Makefile +++ b/dns/opendnssec/Makefile @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= opendnssec -PORTVERSION= 1.4.5 -PORTREVISION= 2 +PORTVERSION= 1.4.6 CATEGORIES= dns -MASTER_SITES= http://dist.opendnssec.org/source/ +MASTER_SITES= http://dist.opendnssec.org/source/ MAINTAINER= jaap@NLnetLabs.nl COMMENT= Tool suite for maintaining DNSSEC @@ -53,13 +52,15 @@ SCRIPTDATA= migrate_adapters_1.mysql migrate_keyshare_mysql.pl \ .endif .if ${PORT_OPTIONS:MSQLITE} +CONFIGURE_ARGS+= --with-sqlite3=${LOCALBASE} +CONFIGURE_ARGS+= --with-database-backend=sqlite3 BUILD_DEPENDS+= sqlite3>=3.3.9:${PORTSDIR}/databases/sqlite3 SCRIPTDATA= database_create.sqlite3 migrate_keyshare_sqlite3.pl \ migrate_adapters_1.sqlite3 migrate_to_ng_sqlite.pl .endif .if ${PORT_OPTIONS:MSOFTHSM} -CONFIGURE_ARGS+= --with-pkcs11-softhsm=${LOCALBASE}/lib/libsofthsm.so +CONFIGURE_ARGS+= --with-pkcs11-softhsm=${LOCALBASE}/lib/softhsm/libsofthsm.so RUN_DEPENDS+= softhsm>=1.2.0:${PORTSDIR}/security/softhsm .endif diff --git a/dns/opendnssec/distinfo b/dns/opendnssec/distinfo index 8ff3180c791c..e46aea181a35 100644 --- a/dns/opendnssec/distinfo +++ b/dns/opendnssec/distinfo @@ -1,2 +1,2 @@ -SHA256 (opendnssec-1.4.5.tar.gz) = c4d4366497ab096c6887c51f7518d546a0419a44dfad1f57d4ec9e67bb95019b -SIZE (opendnssec-1.4.5.tar.gz) = 1009953 +SHA256 (opendnssec-1.4.6.tar.gz) = 53f9c454f331822925d76c9d9e5e7cb3fe2dfb03e3c467f67f9412f10d0fd5ec +SIZE (opendnssec-1.4.6.tar.gz) = 1014314 diff --git a/dns/opendnssec/pkg-plist b/dns/opendnssec/pkg-plist index e4c0edf824c6..abea12ba1897 100644 --- a/dns/opendnssec/pkg-plist +++ b/dns/opendnssec/pkg-plist @@ -1,3 +1,4 @@ +bin/ods-getconf bin/ods-hsmspeed bin/ods-hsmutil bin/ods-kaspcheck @@ -42,6 +43,7 @@ man/man5/ods-timing.5.gz man/man7/opendnssec.7.gz man/man8/ods-control.8.gz man/man8/ods-enforcerd.8.gz +man/man8/ods-getconf.8.gz man/man8/ods-signer.8.gz man/man8/ods-signerd.8.gz @owner opendnssec |