diff options
Diffstat (limited to 'extra/bind/PKGBUILD')
-rw-r--r-- | extra/bind/PKGBUILD | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/extra/bind/PKGBUILD b/extra/bind/PKGBUILD index b559d2c54..371393099 100644 --- a/extra/bind/PKGBUILD +++ b/extra/bind/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 122962 2011-05-07 14:45:29Z bisson $ +# $Id: PKGBUILD 123947 2011-05-14 15:17:07Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: judd <jvinet@zeroflux.org> # Contributor: Mario Vazquez <mario_vazq@hotmail.com> @@ -8,7 +8,7 @@ pkgname=bind # Use a period and not a hyphen before the patch level for proper versioning. pkgver=9.8.0.P1 _pkgver=9.8.0-P1 -pkgrel=1 +pkgrel=2 pkgdesc='Berkeley Internet Name Daemon (BIND) is the reference implementation of the Domain Name System (DNS) protocols' arch=('i686' 'x86_64') @@ -19,7 +19,7 @@ backup=('etc/logrotate.d/named' 'etc/conf.d/named' 'etc/named.conf' 'etc/rndc.key') -depends=('openssl' 'libxml2') +depends=('openssl' 'krb5' 'libxml2') options=('!makeflags' '!libtool') source=("http://ftp.isc.org/isc/bind9/${_pkgver}/${pkgname}-${_pkgver}.tar.gz" 'ftp://ftp.rs.internic.net/domain/db.cache' @@ -51,9 +51,17 @@ build() { patch -p1 -i "${srcdir}"/notools.patch ./configure \ - --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --with-libtool --enable-static=no --disable-linux-caps \ - --with-openssl=yes --with-libxml2=yes + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --disable-linux-caps \ + --with-openssl \ + --with-gssapi \ + --with-libxml2 \ + --with-libtool \ + --with-dlz-dlopen \ + make } |