72 lines
2.1 KiB
Bash
72 lines
2.1 KiB
Bash
# Template file for 'bind'
|
|
pkgname=bind
|
|
_distver=9.10.3
|
|
_patchver=""
|
|
version="${_distver}"
|
|
revision=1
|
|
wrksrc="${pkgname}-${_distver}${_patchver:+-${_patchver}}"
|
|
short_desc="Berkeley Internet Name Domain server"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="ISC"
|
|
homepage="http://www.isc.org/software/bind/"
|
|
distfiles="http://ftp.isc.org/isc/bind9/${_distver}${_patchver:+-${_patchver}}/bind-${_distver}${_patchver:+-${_patchver}}.tar.gz"
|
|
checksum=9ac33bd8754ab4b6ee449b1b2aa88e09f51cda088486f4ab1585acd920b98ff0
|
|
|
|
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/urandom --with-ecdsa=yes --with-libtool
|
|
--with-openssl=$XBPS_CROSS_BASE/usr --without-gssapi --without-gost"
|
|
hostmakedepends="automake libtool perl"
|
|
makedepends="libressl-devel libxml2-devel libcap-devel readline-devel"
|
|
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"
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
# disable bin tests for now.
|
|
sed -e "s,tests,,g" -i bin/Makefile.in
|
|
}
|
|
|
|
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/bin/isc-config.sh
|
|
vmove usr/bin/bind9-config
|
|
vmove usr/share/man/man1/isc-config.sh.1
|
|
vmove usr/share/man/man1/bind9-config.1
|
|
vmove usr/include
|
|
vmove usr/share/man/man3
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|