diff options
author | Juergen Daubert <jue@jue.li> | 2021-04-08 12:42:02 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-04-08 12:42:02 +0200 |
commit | 0b19e48d2ea4eeaa4df04273d5d3b85c0d3d735e (patch) | |
tree | a6aa17cb3a91eb4e3c4f29e4412e7b8d0bed0b83 /nsd | |
parent | f81a42db7b1504a71490747a4ab169f0f64dbafe (diff) | |
download | opt-0b19e48d2ea4eeaa4df04273d5d3b85c0d3d735e.tar.gz opt-0b19e48d2ea4eeaa4df04273d5d3b85c0d3d735e.tar.xz |
nsd: update to 4.3.6
Diffstat (limited to 'nsd')
-rw-r--r-- | nsd/.signature | 6 | ||||
-rw-r--r-- | nsd/Pkgfile | 45 |
2 files changed, 26 insertions, 25 deletions
diff --git a/nsd/.signature b/nsd/.signature index f9652097f..5f81e9f70 100644 --- a/nsd/.signature +++ b/nsd/.signature @@ -1,7 +1,7 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/QTRzylVXZdd77jkh2/Q+I62bA1RwfYQar/BOS4WAjd6mAsPb5jAXk7gss1X1rYylwApswSLMKhN//8F6r6ZjAg= -SHA256 (Pkgfile) = 34746093ef382cd71d2f869a6bebe16e19f12e52c9caa380064873a9f11b6ac2 +RWSE3ohX2g5d/RalLD2uo4YPoCfKtMs5AAjPWXgWcLQoqicWKAZomgWyMD9W6MCDW1xW+E83FDHAJPGmSyxcrs2h8NKK7ihthwM= +SHA256 (Pkgfile) = 9febc65448facc151e4591cfdcd0e1883e4fe8ffac30f84d0f01404ec424c9c5 SHA256 (.footprint) = e7c1c5de89399eb933cfdad3ceff7b6500a1726c7d8388d9ee9dfabcef8545bf -SHA256 (nsd-4.3.5.tar.gz) = 7da2b43e30b3d7f307722c608f719bfb169f0d985c764a34fa0669dc33484472 +SHA256 (nsd-4.3.6.tar.gz) = bee6c0cf5525acc41dade9ec9e29435299211b0de290059878f7e53249e75f18 SHA256 (README) = 0dcc9d869c404b81deb9713e40f5d60e9b1e144c8f59b0ce4c633f3f1139eb8e SHA256 (pre-install) = 3082d6ae0dc1d1e60942e91a2db33019b2b53c62a06d12db2be52b2a1524ea27 diff --git a/nsd/Pkgfile b/nsd/Pkgfile index 0d760d6bd..93cd41018 100644 --- a/nsd/Pkgfile +++ b/nsd/Pkgfile @@ -1,32 +1,33 @@ # Description: Authoritative only, high performance name server -# URL: http://www.nlnetlabs.nl/projects/nsd/ -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: openssl +# URL: http://www.nlnetlabs.nl/projects/nsd/ +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: openssl name=nsd -version=4.3.5 +version=4.3.6 release=1 source=(http://www.nlnetlabs.nl/downloads/nsd/$name-$version.tar.gz - README pre-install) + README pre-install) -build () { - cd $name-$version +build() { + cd $name-$version - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-dbfile=/var/lib/nsd/nsd.db \ - --with-pidfile=/var/run/nsd/nsd.pid \ - --with-xfrdir=/var/run/nsd \ - --without-libevent \ - --with-user=nsd - - make all nsd-mem - make DESTDIR=$PKG install + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-dbfile=/var/lib/nsd/nsd.db \ + --with-pidfile=/var/run/nsd/nsd.pid \ + --with-xfrdir=/var/run/nsd \ + --without-libevent \ + --with-user=nsd - install -m 0755 nsd-mem $PKG/usr/sbin - install -d $PKG/etc/rc.d - ln -s /usr/sbin/nsd-control $PKG/etc/rc.d/nsd + make all nsd-mem + make DESTDIR=$PKG install - chown nsd $PKG/var/{lib,run}/nsd + install -m 0755 nsd-mem $PKG/usr/sbin + install -d $PKG/etc/rc.d + ln -s /usr/sbin/nsd-control $PKG/etc/rc.d/nsd + + chown nsd $PKG/var/{lib,run}/nsd } |