blob: 14dfbf23cf715953dd44d7e86fb881c97bcee2e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=unbound
pkgver=1.4.13
pkgrel=1
pkgdesc="Unbound is a validating, recursive, and caching DNS resolver"
pkgusers="unbound"
pkggroups="unbound"
url="http://unbound.net/"
arch="all"
license="BSD"
depends="dnssec-root"
depends_dev="openssl-dev expat-dev ldns-dev libevent-dev"
makedepends="$depends_dev python-dev swig"
install="$pkgname.pre-install"
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs py-unbound:py"
source="http://unbound.net/downloads/unbound-$pkgver.tar.gz
unbound-1.4.12-gentoo.patch
unbound.initd"
_builddir="$srcdir"/unbound-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-pidfile=/var/run/unbound/unbound.pid \
--with-username=unbound \
--with-libevent \
--with-ldns \
--with-pthreads \
--with-rootkey-file=/usr/share/dnssec/root-anchors.txt \
--disable-static \
--disable-rpath \
--with-ssl \
--with-pythonmodule \
--with-pyunbound \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la \
"$pkgdir"/usr/lib/python*/*/*.la || return 1
install -D contrib/update-anchor.sh \
"$pkgdir"/usr/share/$pkgname/update-anchor.sh \
|| return 1
install -m755 -D "$srcdir"/unbound.initd \
"$pkgdir"/etc/init.d/unbound || return 1
install -d -o unbound -g unbound "$pkgdir"/var/run/unbound
}
libs() {
pkgdesc="unbound shared libraries"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/lib*.so.* "$subpkgdir"/usr/lib/
}
py() {
pkgdesc="Python bindings to libunbound"
mkdir -p "$subpkgdir"/usr/lib/
mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
}
md5sums="7e3b27dee2b97640dd2e1783253317ab unbound-1.4.13.tar.gz
a6d84d596e40da79fcd52529b7fb5046 unbound-1.4.12-gentoo.patch
ebf2b5f8e1be2c4dbec9c5fad1e0e0de unbound.initd"
|