void-packages/srcpkgs/bind/template

79 lines
2.3 KiB
Text
Raw Normal View History

2012-01-31 12:52:16 +00:00
# Template file for 'bind'
pkgname=bind
2014-12-09 09:06:59 +00:00
_distver=9.9.6
_patchver=P1
version="${_distver}${_patchver}"
wrksrc="${pkgname}-${_distver}-${_patchver}"
2014-11-19 06:34:05 +00:00
revision=1
2012-01-31 12:52:16 +00:00
short_desc="Berkeley Internet Name Domain server"
maintainer="Juan RP <xtraeme@gmail.com>"
license="ISC"
2012-06-05 09:38:40 +00:00
homepage="http://www.isc.org/software/bind/"
update_site="http://ftp.isc.org/isc/bind9/"
update_pattern="9\.[\d.]+(?=/)"
2014-12-09 09:06:59 +00:00
distfiles="http://ftp.isc.org/isc/bind9/${_distver}-${_patchver}/bind-${_distver}-${_patchver}.tar.gz"
checksum=dfedcb2b414d2803accd1a9c21d183178a288f40a2486af5ec0d3369a8cb8526
2014-01-31 17:20:48 +00:00
build_style=gnu-configure
configure_args="--disable-static --enable-threads --enable-largefile
--with-libtool --enable-atomic --sysconfdir=/etc/named --enable-epoll
2014-01-31 17:20:48 +00:00
--enable-ipv6 --with-randomdev=/dev/urandom --with-ecdsa=yes --with-libtool
2014-11-19 06:34:05 +00:00
--with-openssl=$XBPS_CROSS_BASE/usr --without-gssapi --without-gost"
2012-01-31 12:52:16 +00:00
2014-11-19 06:34:05 +00:00
hostmakedepends="automake libtool perl"
2014-07-15 18:25:06 +00:00
makedepends="libressl-devel libxml2-devel libcap-devel readline-devel>=6.3"
conf_files="/etc/named/named.conf"
system_accounts="named"
named_desc="BIND DNS server"
named_homedir="/var/named"
make_dirs="/var/named 0770 root named"
build_options="systemd"
pre_configure() {
2014-11-19 06:34:05 +00:00
autoreconf -fi
# disable bin tests for now.
sed -e "s,tests,,g" -i bin/Makefile.in
}
2014-01-31 17:20:48 +00:00
post_install() {
if [ "$build_option_systemd" ]; then
vinstall ${FILESDIR}/named.service 644 usr/lib/systemd/system
fi
2014-10-13 15:28:52 +00:00
vsv named
2012-01-31 12:52:16 +00:00
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() {
2013-07-27 21:23:47 +00:00
short_desc+=" - Runtime libraries"
pkg_install() {
2013-07-27 21:23:47 +00:00
vmove "usr/lib/*.so.*"
}
}
bind-utils_package() {
2013-07-27 21:23:47 +00:00
short_desc+=" - DNS utils"
pkg_install() {
for f in dig host nslookup; do
vmove usr/bin/${f}
2013-04-15 16:01:03 +00:00
vmove usr/share/man/man1/$(basename ${f}).1
done
}
}
bind-devel_package() {
2014-07-15 18:25:06 +00:00
depends="bind-libs>=${version}_${revision}"
2013-07-27 21:23:47 +00:00
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
2013-07-27 21:23:47 +00:00
vmove "usr/lib/*.so"
}
}