# Template file for 'bind'
pkgname=bind
_distver=9.8.1
_patchver=P1
version=${_distver}.${_patchver}
wrksrc=${pkgname}-${_distver}-${_patchver}
homepage="http://www.isc.org/software/bind/"
distfiles="http://ftp.isc.org/isc/bind9/${_distver}-${_patchver}/bind-${_distver}-${_patchver}.tar.gz"
build_style=gnu-configure
configure_args="--disable-static --with-openssl --with-libxml2
--enable-threads --enable-largefile --enable-ipv6 --with-libtool
--enable-atomic --sysconfdir=/etc/named"
short_desc="Berkeley Internet Name Domain server"
maintainer="Juan RP <xtraeme@gmail.com>"
license="ISC"
checksum=867fdd52d3436c6ab6d357108d7f9eaaf03f1422652e6e61c742816ff7f87929
long_desc="
 BIND is by far the most widely used DNS software on the Internet. It provides
 a robust and stable platform on top of which organizations can build
 distributed computing systems with the knowledge that those systems are fully
 compliant with published DNS standards."

subpackages="bind-libs bind-utils bind-devel"

make_dirs="
/var/named	0770	root	named
/var/run/named	0770	root	named"

systemd_services="named.service true"
conf_files="/etc/named/named.conf"
system_accounts="named"
named_desc="BIND DNS server"
named_homedir="/var/named"
named_shell="/bin/false"

Add_dependency build perl ">=0"
Add_dependency build openssl-devel
Add_dependency build mit-krb5-devel
Add_dependency build libxml2-devel
Add_dependency build libcap-devel

pre_build() {
	# temporary fix for issue reported upstream
	ln -s .libs/driver.o bin/tests/system/dlzexternal/
}

post_install() {
	vinstall ${FILESDIR}/named.service 644 lib/systemd/system
	vinstall ${FILESDIR}/named.logrotate 600 etc/logrotate.d named
	vinstall ${FILESDIR}/named.conf 640 etc/named

	vinstall bin/tests/system/common/root.hint 640 var/named
	vinstall ${FILESDIR}/127.0.0.zone 640 var/named
	vinstall ${FILESDIR}/localhost.zone 640 var/named
}