summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorpettai <pettai>2011-03-12 16:46:05 +0000
committerpettai <pettai>2011-03-12 16:46:05 +0000
commit02359987b2b73bce88b9ff938c2a24ef2dae7874 (patch)
tree5b8f76bd735815248466ef24d1c3eb0cecb29c80 /security
parenta533f487446ae4015fca25f6706d3362da212b89 (diff)
downloadpkgsrc-02359987b2b73bce88b9ff938c2a24ef2dae7874.tar.gz
zkt 1.0 -- 15. June 2010
* feat "/dev/urandom" check added to checkconfig() * feat Config compability switch (-C) added to zkt-conf * feat zkt-ls has a new switch -s to change sorting of domains from subdomain before parent to subdomain below the parent * feat "zkt-ls -T" prints only parent trust anchor zkt 1.0rc1 -- 1. Apr 2010 (The 1.0 release was sponsored by DOMINIC(r) ) * feat Several config parameter are printed now in a more consistent and user friendly form. SerialFormat "Incremental" could be abbreviated as "inc" on input. * bug use of AC_ARG_ENABLE macros changed in a way that it is possible to use it as a "--disable-FEATURE" switch. * port no longer checking for malloc() in configue script. Mainly because it checks only if malloc(0) is allowed and we do not need this. * port --disable-color-mode added to configure script * bug Makro PRINT_AGE_OF_YEAR renamed to PRINT_AGE_WITH_YEAR in configure.ac * misc man page zkt-keyman added * misc New command zkt-keyman added as replacement for dnssec-zkt's key management functionality * misc man page zkt-ls added * port Check for ncurses added to Makefile.in * misc Color mode (Option -C) added to zkt-ls (experimental) New source file tcap.c. * misc Deprecate "single linked list" version of ZKT. The binary tree version is the default for years, so the VERSION string does no longer contain a "T". Now, if someone insist on the single link list version (configure --disable-tree) a "S" is added to the version string. Anyway, the code for the single link list version does no longer have the same functionality and will be removed in one of the later releases. * misc New command zkt-ls added as replacement for dnssec-zkt's key listing functionality * func New key algorithms RSASHA256 and RSAHSHA512 added to dki.[ch] and zconf.c New parameter NSEC3 added. Now it's possible to configure an NSEC3_OPTOUT zone. * bug Token parsing function gettok() fixed to recognize tokens with dashes ("zone-statistics" was seen as "zone"). Thanks to Andreas Baess for finding this bug. * bug Fixed bug in (re)salting dynamic zones. sig_zone() and gensalt() needs parameter change for this * func New option -a added to zkt-conf * func In zconf.c CONF_TIMEINT parameter are now able to recognize "unset" values (which is represented internaly as 0) * func Set Max_TTL to sig lifetime for dynamic zones or if Max_TTL is less than 1. max_ttl checks in checkconfig() fixed. * func printconfigdiff() added to zconf.c and used by zkt-conf. Now local configs are printed as diff to site wide config. * misc man page zkt-signer.8 changed to new command syntax * func Per domain logging added. Use parameter LogDomainDir to enable it. For more details see file README.logging. * func distribute.sh supports new action type "distkeys" but is currently not used * misc LOG_FNAMETMPL changed and moved from config_zkt.h to log.h * misc Default soa serial format changed from "Incremental" to "Unixtime" * func dnssec-signer command renamed to zkt-signer. Man page updated. * func New command zkt-conf added as replacement for dnssec-zkt -Z * misc timeint2str() is now global (zconf.c) * func zfparse.c - a rudimentary zone file parser scans minimum and maximum ttl values; adds $INCLUDE dnskey.db zkt 0.99d -- Not released * func Option SIG_DnsKeyKSK for DNSKEY signing with KSK only added * misc BIND 9.7 compability
Diffstat (limited to 'security')
-rw-r--r--security/zkt/Makefile24
-rw-r--r--security/zkt/PLIST14
-rw-r--r--security/zkt/distinfo8
3 files changed, 34 insertions, 12 deletions
diff --git a/security/zkt/Makefile b/security/zkt/Makefile
index c4ff1dd94fe..f6a22797212 100644
--- a/security/zkt/Makefile
+++ b/security/zkt/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1.1.1 2010/03/13 19:19:51 pettai Exp $
+# $NetBSD: Makefile,v 1.2 2011/03/12 16:46:05 pettai Exp $
#
-DISTNAME= zkt-0.99c
+DISTNAME= zkt-1.0
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=zkt/}
@@ -21,14 +21,28 @@ INSTALLATION_DIRS= sbin share/doc/zkt ${PKGMANDIR}/man8 etc/zkt
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dnssec-zkt \
${DESTDIR}${PREFIX}/sbin/dnssec-zkt
- ${INSTALL_PROGRAM} ${WRKSRC}/dnssec-signer \
+ ${INSTALL_PROGRAM} ${WRKSRC}/zkt-conf \
+ ${DESTDIR}${PREFIX}/sbin/zkt-conf
+ ${INSTALL_PROGRAM} ${WRKSRC}/zkt-keyman \
+ ${DESTDIR}${PREFIX}/sbin/zkt-keyman
+ ${INSTALL_PROGRAM} ${WRKSRC}/zkt-ls \
+ ${DESTDIR}${PREFIX}/sbin/zkt-ls
+ ${INSTALL_PROGRAM} ${WRKSRC}/zkt-signer \
+ ${DESTDIR}${PREFIX}/sbin/zkt-signer
+ ${LN} -f ${DESTDIR}${PREFIX}/sbin/zkt-signer \
${DESTDIR}${PREFIX}/sbin/dnssec-signer
${INSTALL_PROGRAM} ${WRKSRC}/zkt-soaserial \
${DESTDIR}${PREFIX}/sbin/zkt-soaserial
${INSTALL_MAN} ${WRKSRC}/man/dnssec-zkt.8 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/dnssec-zkt.8
- ${INSTALL_MAN} ${WRKSRC}/man/dnssec-signer.8 \
- ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/dnssec-signer.8
+ ${INSTALL_MAN} ${WRKSRC}/man/zkt-conf.8 \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/zkt-conf.8
+ ${INSTALL_MAN} ${WRKSRC}/man/zkt-ls.8 \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/zkt-ls.8
+ ${INSTALL_MAN} ${WRKSRC}/man/zkt-keyman.8 \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/zkt-keyman.8
+ ${INSTALL_MAN} ${WRKSRC}/man/zkt-signer.8 \
+ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/zkt-signer.8
${INSTALL_DATA} ${WRKSRC}/README \
${DESTDIR}${PREFIX}/share/doc/zkt/README
${INSTALL_DATA} ${WRKSRC}/README.logging \
diff --git a/security/zkt/PLIST b/security/zkt/PLIST
index 6a580733e74..54c1f5ff96c 100644
--- a/security/zkt/PLIST
+++ b/security/zkt/PLIST
@@ -1,8 +1,16 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2010/03/13 19:19:51 pettai Exp $
-man/man8/dnssec-signer.8
+@comment $NetBSD: PLIST,v 1.2 2011/03/12 16:46:05 pettai Exp $
man/man8/dnssec-zkt.8
-sbin/dnssec-signer
+man/man8/zkt-conf.8
+man/man8/zkt-keyman.8
+man/man8/zkt-ls.8
+man/man8/zkt-signer.8
sbin/dnssec-zkt
+sbin/zkt-conf
+sbin/zkt-keyman
+sbin/zkt-ls
+sbin/zkt-signer
+sbin/dnssec-signer
sbin/zkt-soaserial
share/doc/zkt/README
share/doc/zkt/README.logging
+@pkgdir etc/zkt
diff --git a/security/zkt/distinfo b/security/zkt/distinfo
index 81c1dca4515..5ddc163f88a 100644
--- a/security/zkt/distinfo
+++ b/security/zkt/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2010/03/13 19:19:51 pettai Exp $
+$NetBSD: distinfo,v 1.2 2011/03/12 16:46:05 pettai Exp $
-SHA1 (zkt-0.99c.tar.gz) = 306302167a2628d0a3c82720f651299a4e5f2018
-RMD160 (zkt-0.99c.tar.gz) = d37f42a2f7e484eaf58b4ea47381c9edadd438e4
-Size (zkt-0.99c.tar.gz) = 288922 bytes
+SHA1 (zkt-1.0.tar.gz) = c4ecf607854943dab9cb05478b5b4a09cfec0acc
+RMD160 (zkt-1.0.tar.gz) = 9a52acd41ac136907f0050bd4258fb2040e40adc
+Size (zkt-1.0.tar.gz) = 331260 bytes