# Template file for 'bind' pkgname=bind #_distver=9.9.4 #_patchver=P2 #version=${_distver}${_patchver} #wrksrc=${pkgname}-${_distver}-${_patchver} version=9.9.5 revision=3 short_desc="Berkeley Internet Name Domain server" maintainer="Juan RP " license="ISC" homepage="http://www.isc.org/software/bind/" distfiles="http://ftp.isc.org/isc/bind9/${version}/bind-${version}.tar.gz" checksum=d4b64c1dde442145a316679acff2df4008aa117ae52dfa3a6bc69efecc7840d1 build_style=gnu-configure configure_args="--disable-static --enable-threads --enable-largefile --with-libtool --enable-atomic --sysconfdir=/etc/named --enable-epoll --with-gost=no --enable-ipv6 --with-randomdev=/dev/urandom --with-ecdsa=yes --with-libtool --with-openssl=$XBPS_CROSS_BASE/usr --with-gssapi=$XBPS_CROSS_BASE/usr --with-libxml2=$XBPS_CROSS_BASE/usr" hostmakedepends="automake libtool perl libxml2-devel" makedepends="openssl-devel mit-krb5-devel libxml2-devel libcap-devel readline-devel>=6.3" 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" make_dirs="/var/named 0770 root named" pre_configure() { # disable bin tests for now. sed -e "s,tests,,g" -i bin/Makefile.in rm -f aclocal.m4 libtool autoreconf -fi } post_install() { vinstall ${FILESDIR}/named.service 644 usr/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 } bind-libs_package() { short_desc+=" - Runtime libraries" pkg_install() { vmove "usr/lib/*.so.*" } } bind-utils_package() { short_desc+=" - DNS utils" pkg_install() { for f in dig host nslookup; do vmove usr/bin/${f} vmove usr/share/man/man1/$(basename ${f}).1 done } } bind-devel_package() { depends="bind-libs>=$version" short_desc+=" - development files" pkg_install() { vmove usr/bin/isc-config.sh vmove usr/share/man/man1/isc-config.sh.1 vmove usr/include vmove usr/share/man/man3 vmove "usr/lib/*.so" } }