Ticket #17948: Portfile.2

File Portfile.2, 1.5 KB (added by nerdling (Jeremy Lavergne), 16 years ago)

fixed lint, version bump to 1.2.1

Line 
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# $Id$
3
4PortSystem 1.0
5
6name            unbound
7version         1.2.1
8revision        1
9categories      net
10maintainers     nomaintainer
11description     Caching only namesever
12homepage        http://www.unbound.net/
13platforms       darwin
14
15set     unbounduser             unbound
16set     unboundgroup    unbound
17
18long_description        Unbound is a validating, recursive, and caching DNS \
19                                        server software product from NLnet Labs, VeriSign Inc.,\
20                                        Nominet, and Kirei. It is distributed free of charge \
21                                        in open source form under the BSD license.\
22                                        Unbound is designed as a set of modular components \
23                                        that incorporate modern features, such as enhanced \
24                                        security (DNSSEC) validation, Internet Protocol \
25                                        Version 6 (IPv6), and a client resolver library API \
26                                        as an integral part of the architecture.
27
28master_sites            http://unbound.net/downloads/
29
30checksums                       md5 5437f2a1e698d8aa73ba19a60662a654 \
31                                        sha1 996aea210b24f8c4bd1aa7a9584bc5b70b989b1b \
32                                        rmd160 c26d82d92e3342fe860d342a0717824b07d1c38d
33
34
35destroot {
36                addgroup ${unboundgroup}
37                set gid [existsgroup ${unboundgroup}]
38        adduser ${unbounduser} shell=/sbin/nologin gid=${gid} \
39                home=/dev/null \
40                realname=Unbound\ Resolver
41}
42
43# Make it run on boot
44startupitem.create      yes
45startupitem.name        unbound
46startupitem.start       ${prefix}/sbin/unbound
47startupitem.stop        "/bin/kill \$(cat ${prefix}/etc/unbound/unbound.pid)"
48