diff options
author | pettai <pettai@pkgsrc.org> | 2011-04-20 10:44:46 +0000 |
---|---|---|
committer | pettai <pettai@pkgsrc.org> | 2011-04-20 10:44:46 +0000 |
commit | cee793c4fc6e6e4f87f2d9ec8845a976e61cb629 (patch) | |
tree | 2562b671397f46e3bb7d211c82d18e0addb1ebd3 /net | |
parent | fbb58e5b1bb7e352faa80032d0b2b461c4303078 (diff) | |
download | pkgsrc-cee793c4fc6e6e4f87f2d9ec8845a976e61cb629.tar.gz |
1.4.9:
Bug Fixes:
* Added explicit note on unbound-anchor usage: Please note usage of
unbound-anchor root anchor is at your own risk and under the terms of our
LICENSE (see that file in the source).
* Fix remove private address does not throw away entire response. [bugzilla: 361 ]
* Fix, time.elapsed variable not reset with stats_noreset.
* Fix no ADflag for NXDOMAIN in NSEC3 optout. And wildcard in optout.
* give config parse error for multiple names on a stub or forward zone.
* updated ldns tarball to 1.6.9(snapshot).
* iana portlist updated.
Diffstat (limited to 'net')
-rw-r--r-- | net/unbound/Makefile | 9 | ||||
-rw-r--r-- | net/unbound/distinfo | 8 | ||||
-rw-r--r-- | net/unbound/options.mk | 15 |
3 files changed, 26 insertions, 6 deletions
diff --git a/net/unbound/Makefile b/net/unbound/Makefile index c94389c3bc3..4ea95355cb7 100644 --- a/net/unbound/Makefile +++ b/net/unbound/Makefile @@ -1,15 +1,18 @@ -# $NetBSD: Makefile,v 1.13 2011/03/21 15:04:32 pettai Exp $ +# $NetBSD: Makefile,v 1.14 2011/04/20 10:44:46 pettai Exp $ -DISTNAME= unbound-1.4.8 +DISTNAME= unbound-1.4.9 CATEGORIES= net MASTER_SITES= http://www.unbound.net/downloads/ MAINTAINER= joerg@NetBSD.org HOMEPAGE= http://www.unbound.net/ COMMENT= DNS resolver and recursive server +LICENSE= modified-bsd PKG_DESTDIR_SUPPORT= user-destdir +BUILD_DEFS+= VARBASE + GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_TOOLS+= gmake @@ -41,6 +44,8 @@ UNBOUND_GROUP?= unbound PKG_GROUPS= ${UNBOUND_GROUP} PKG_USERS= ${UNBOUND_USER}:${UNBOUND_GROUP} +.include "options.mk" + .include "../../textproc/expat/buildlink3.mk" .include "../../net/ldns/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" diff --git a/net/unbound/distinfo b/net/unbound/distinfo index 6ef340400fd..c2a30e7e044 100644 --- a/net/unbound/distinfo +++ b/net/unbound/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2011/03/21 15:04:32 pettai Exp $ +$NetBSD: distinfo,v 1.12 2011/04/20 10:44:46 pettai Exp $ -SHA1 (unbound-1.4.8.tar.gz) = 557a9c10de9a83f88cd7c66d44488f1cb65de4fa -RMD160 (unbound-1.4.8.tar.gz) = 08082658e4b7f0e82e7e3feae1acea42e1956fb4 -Size (unbound-1.4.8.tar.gz) = 4474063 bytes +SHA1 (unbound-1.4.9.tar.gz) = f2ac7b4ef1d1b330e2dd5e2eedeb6fd2bbad8478 +RMD160 (unbound-1.4.9.tar.gz) = 9c34c55f776f4506afb775c8f44df84a64854073 +Size (unbound-1.4.9.tar.gz) = 4470329 bytes SHA1 (patch-ac) = 2ad1a444a425e8583c1212faa4479f0d65061bff diff --git a/net/unbound/options.mk b/net/unbound/options.mk new file mode 100644 index 00000000000..a6fc350510d --- /dev/null +++ b/net/unbound/options.mk @@ -0,0 +1,15 @@ +# $NetBSD: options.mk,v 1.1 2011/04/20 10:44:46 pettai Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.unbound +PKG_SUPPORTED_OPTIONS= libevent +PKG_SUGGESTED_OPTIONS= libevent + +.include "../../mk/bsd.options.mk" + +### +### libevent +### +.if !empty(PKG_OPTIONS:Mlibevent) +CONFIGURE_ARGS+= --with-libevent=${BUILDLINK_PREFIX.libevent} +.include "../../devel/libevent/buildlink3.mk" +.endif |