Commits
Jeremy Lavergne authored b3e79180a7e
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup compiler_blacklist_versions 1.0 |
5 5 | |
6 6 | name unbound |
7 - | version 1.6.8 |
7 + | version 1.7.0 |
8 8 | categories net |
9 9 | license BSD |
10 10 | maintainers {snc @nerdling} |
11 11 | |
12 12 | description Validating, recursive, and caching DNS resolver. |
13 13 | |
14 14 | homepage http://unbound.net/ |
15 15 | platforms darwin |
16 16 | depends_lib path:lib/libssl.dylib:openssl port:expat |
17 17 | |
23 23 | Nominet, and Kirei. It is distributed free of charge \ |
24 24 | in open source form under the BSD license.\ |
25 25 | Unbound is designed as a set of modular components \ |
26 26 | that incorporate modern features, such as enhanced \ |
27 27 | security (DNSSEC) validation, Internet Protocol \ |
28 28 | Version 6 (IPv6), and a client resolver library API \ |
29 29 | as an integral part of the architecture. |
30 30 | |
31 31 | master_sites http://unbound.net/downloads/ |
32 32 | |
33 - | checksums rmd160 69aea28bd7587fef8aab7c3e9aa7d886184a930b \ |
34 - | sha256 e3b428e33f56a45417107448418865fe08d58e0e7fea199b855515f60884dd49 |
33 + | checksums rmd160 abc59d2b8b52bab5784fe56ccb8b7ed10e8830fe \ |
34 + | sha256 94dd9071fb13d8ccd122a3ac67c4524a3324d0e771fc7a8a7c49af8abfb926a2 |
35 35 | |
36 36 | configure.args-append --with-pidfile=${prefix}/var/run/${name}/${name}.pid \ |
37 37 | --with-ssl=${prefix} \ |
38 38 | --with-rootkey-file=${prefix}/etc/${name}/root.key |
39 39 | |
40 40 | if {${os.major} == 10} { |
41 41 | compiler.blacklist *llvm-gcc-4.2 *gcc-4.0 gcc-3.3 clang |
42 42 | } |
43 43 | |
44 44 | variant libevent description {Build with libevent (slower, but allows use of large outgoing port ranges)} { |