void-packages/srcpkgs/bind/template
2021-03-05 16:24:06 +01:00

76 lines
2.4 KiB
Bash

# Template file for 'bind'
pkgname=bind
version=9.16.12
revision=2
_fullver="${version}${_patchver:+-${_patchver}}"
wrksrc="${pkgname}-${_fullver}"
build_style=gnu-configure
configure_args="--disable-static --enable-threads --enable-largefile
--with-libtool --enable-atomic --sysconfdir=/etc/named --enable-epoll
--enable-ipv6 --with-randomdev=/dev/random --with-ecdsa=yes --with-eddsa=no
--with-libtool --with-openssl=${XBPS_CROSS_BASE}/usr --with-gssapi=/usr/bin
--without-gost --enable-openssl-hash --with-readline --with-tuning=default
--without-python --enable-fetchlimit --enable-sit
--with-libidn2 --disable-backtrace
$(vopt_if geoip "--with-geoip=${XBPS_CROSS_BASE}/usr" "--without-geoip")"
hostmakedepends="automake libtool perl pkg-config"
makedepends="openssl-devel libxml2-devel libcap-devel readline-devel mit-krb5-devel
libatomic-devel libidn2-devel libuv-devel $(vopt_if geoip geoip-devel)"
checkdepends="python3-pytest"
short_desc="Berkeley Internet Name Domain server"
maintainer="Randy McCaskill <randy@mccaskill.us>"
license="MPL-2.0"
homepage="https://www.isc.org/downloads/bind/"
changelog="https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/CHANGES"
distfiles="https://ftp.isc.org/isc/bind9/${_fullver}/bind-${_fullver}.tar.xz"
checksum=9914af9311fd349cab441097898d94fb28d0bfd9bf6ed04fe1f97f042644da7f
# guarantee subpackage ordering
subpackages="bind-libs bind-utils bind-devel"
# requires special network setup
make_check=extended
conf_files="/etc/named/named.conf"
system_accounts="named"
named_descr="BIND DNS server"
named_homedir="/var/named"
make_dirs="/var/named 0770 root named"
build_options="geoip"
build_options_default="geoip"
post_install() {
vsv named
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
vlicense COPYRIGHT LICENSE
}
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/${f}.1
done
}
}
bind-devel_package() {
depends="bind-libs>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
}
}