2016-10-09 15:46:47 +00:00
|
|
|
# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
|
|
|
|
# Maintainer: Sébastien Luttringer
|
|
|
|
# Contributor: Gaetan Bisson <bisson@archlinux.org>
|
|
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
# Contributor: Mario Vazquez <mario_vazq@hotmail.com>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - !makeflags - bind build doesn't like concurrency
|
|
|
|
# - --disable-seccomp, not supported for ARM
|
|
|
|
|
|
|
|
pkgbase=bind
|
|
|
|
pkgname=(bind bind-tools)
|
2017-07-30 16:19:01 +00:00
|
|
|
_pkgver=9.11.2
|
2016-10-09 15:46:47 +00:00
|
|
|
pkgver=${_pkgver//-/.}
|
2017-07-30 16:51:21 +00:00
|
|
|
pkgrel=2
|
2016-11-14 13:38:47 +00:00
|
|
|
url='https://www.isc.org/software/bind/'
|
2017-07-30 16:51:21 +00:00
|
|
|
license=('custom:MPL2')
|
2016-10-09 15:46:47 +00:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
options=('!emptydirs' '!makeflags')
|
|
|
|
makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
|
|
|
|
'idnkit' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'libseccomp')
|
|
|
|
validpgpkeys=('2B48A38AE1CF9886435F89EE45AC7857189CDBC5'
|
2017-01-12 13:37:29 +00:00
|
|
|
'ADBE9446286C794905F1E0756FA6EBC9911A4C02' #ISC, Inc)
|
|
|
|
'BE0E9748B718253A28BB89FFF1B11BF05CF02E57' #Internet Systems Consortium, Inc.
|
|
|
|
)
|
2016-11-14 13:38:47 +00:00
|
|
|
source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
|
2016-10-09 15:46:47 +00:00
|
|
|
'tmpfiles.conf'
|
|
|
|
'sysusers.conf'
|
|
|
|
'named.conf'
|
|
|
|
'named.service'
|
|
|
|
'localhost.zone'
|
|
|
|
'localhost.ip6.zone'
|
|
|
|
'127.0.0.zone'
|
2017-04-24 23:42:10 +00:00
|
|
|
'empty.zone')
|
2017-07-30 16:19:01 +00:00
|
|
|
sha1sums=('94154a30fcb0de87b57aeb26bbf31d6719c68307'
|
2016-10-09 15:46:47 +00:00
|
|
|
'SKIP'
|
|
|
|
'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
|
|
|
|
'9537f4835a1f736788d0733c7996a10db2d4eee4'
|
|
|
|
'c017aae379c32c7cb1aa1ad84776b83e3a5c139f'
|
2017-02-21 00:31:36 +00:00
|
|
|
'62b06487323dd0d515a4dc659b8ecd193c29107b'
|
2016-10-09 15:46:47 +00:00
|
|
|
'6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
|
|
|
|
'52da8f1c0247a11b16daa4e03d920e8f09315cbe'
|
|
|
|
'9c33726088342207ad06d33b2c13408290a0c8ad'
|
2017-04-24 23:42:10 +00:00
|
|
|
'4f4457b310cbbeadca2272eced062a9c2b2b42fe')
|
2016-10-09 15:46:47 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
msg2 'Getting a fresh version of root DNS'
|
|
|
|
# no more using source array, lack of versioning.
|
2017-03-15 00:12:13 +00:00
|
|
|
curl -o root.hint https://www.internic.net/zones/named.root
|
2016-10-09 15:46:47 +00:00
|
|
|
[[ -s root.hint ]]
|
2017-03-15 00:12:13 +00:00
|
|
|
cd bind-$_pkgver
|
|
|
|
# apply patch from the source array (should be a pacman feature)
|
|
|
|
local filename
|
|
|
|
for filename in "${source[@]}"; do
|
|
|
|
if [[ "$filename" =~ \.patch$ ]]; then
|
|
|
|
msg2 "Applying patch ${filename##*/}"
|
|
|
|
patch -p1 -N -i "$srcdir/${filename##*/}"
|
|
|
|
fi
|
|
|
|
done
|
2016-10-09 15:46:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd bind-$_pkgver
|
|
|
|
export CFLAGS+=' -DDIG_SIGCHASE'
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--sbindir=/usr/bin \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-static \
|
|
|
|
--enable-ipv6 \
|
|
|
|
--enable-filter-aaaa \
|
|
|
|
--enable-fixed-rrset \
|
|
|
|
--disable-seccomp \
|
|
|
|
--enable-full-report \
|
|
|
|
--with-python=/usr/bin/python \
|
|
|
|
--with-geoip \
|
|
|
|
--with-idn \
|
|
|
|
--with-openssl \
|
|
|
|
--with-libjson \
|
|
|
|
--with-libxml2 \
|
|
|
|
--with-libtool
|
2017-04-24 23:42:10 +00:00
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
2016-10-09 15:46:47 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package_bind() {
|
|
|
|
pkgdesc='The ISC DNS Server'
|
|
|
|
provides=('dns-server')
|
|
|
|
depends=('glibc' 'libxml2' 'libcap' 'libseccomp' 'openssl' 'geoip' 'json-c'
|
|
|
|
'bind-tools')
|
|
|
|
backup=('etc/named.conf'
|
|
|
|
'var/named/127.0.0.zone'
|
|
|
|
'var/named/localhost.zone'
|
|
|
|
'var/named/localhost.ip6.zone'
|
|
|
|
'var/named/empty.zone')
|
|
|
|
|
|
|
|
cd "bind-$_pkgver"
|
2017-07-30 16:51:21 +00:00
|
|
|
install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
|
|
|
|
install -Dm644 LICENSE COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/"
|
2016-10-09 15:46:47 +00:00
|
|
|
for _d in bin/{check,confgen,named,rndc}; do
|
|
|
|
(cd "$_d" && make DESTDIR="$pkgdir" install)
|
|
|
|
done
|
|
|
|
|
|
|
|
cd "$srcdir"
|
|
|
|
install -D -m644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
|
|
|
|
install -D -m644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
|
|
|
|
|
|
|
|
install -D -m644 named.service "$pkgdir/usr/lib/systemd/system/named.service"
|
|
|
|
install -D -m640 -o 0 -g 40 named.conf "$pkgdir/etc/named.conf"
|
|
|
|
|
|
|
|
install -d -m770 -o 0 -g 40 "$pkgdir/var/named"
|
|
|
|
install -m640 -o 0 -g 40 root.hint "$pkgdir/var/named"
|
|
|
|
install -m640 -o 0 -g 40 localhost.zone "$pkgdir/var/named"
|
|
|
|
install -m640 -o 0 -g 40 localhost.ip6.zone "$pkgdir/var/named"
|
|
|
|
install -m640 -o 0 -g 40 127.0.0.zone "$pkgdir/var/named"
|
|
|
|
install -m640 -o 0 -g 40 empty.zone "$pkgdir/var/named"
|
|
|
|
}
|
|
|
|
|
|
|
|
package_bind-tools() {
|
|
|
|
pkgdesc='The ISC DNS tools'
|
|
|
|
depends=('glibc' 'libcap' 'libseccomp' 'libxml2' 'zlib' 'krb5' 'e2fsprogs'
|
2016-10-17 23:42:21 +00:00
|
|
|
'openssl' 'readline' 'geoip' 'idnkit' 'dnssec-anchors' 'json-c')
|
2016-10-09 15:46:47 +00:00
|
|
|
optdepends=('python: for python scripts')
|
|
|
|
conflicts=('dnsutils')
|
|
|
|
replaces=('dnsutils' 'host')
|
|
|
|
provides=("dnsutils=$pkgver")
|
|
|
|
|
|
|
|
cd "bind-$_pkgver"
|
|
|
|
install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
make DESTDIR="$pkgdir" SUBDIRS="" install
|
|
|
|
(cd lib && make DESTDIR="$pkgdir" install)
|
|
|
|
for _d in bin/{dig,dnssec,delv,nsupdate,python,tools}; do
|
|
|
|
(cd "$_d" && make DESTDIR="$pkgdir" install)
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|