void-packages/srcpkgs/bind/template

83 lines
2.4 KiB
Bash
Raw Normal View History

2012-01-31 13:52:16 +01:00
# Template file for 'bind'
pkgname=bind
2016-05-28 19:04:03 +02:00
_distver=9.10.4
2016-09-28 17:04:36 +02:00
_patchver=P3
2016-05-28 19:04:03 +02:00
version="${_distver}${_patchver}"
2016-09-28 04:10:39 +02:00
revision=2
2016-05-28 19:04:03 +02:00
wrksrc="${pkgname}-${_distver}-${_patchver}"
2012-01-31 13:52:16 +01:00
short_desc="Berkeley Internet Name Domain server"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2012-01-31 13:52:16 +01:00
license="ISC"
2012-06-05 11:38:40 +02:00
homepage="http://www.isc.org/software/bind/"
2016-05-28 19:04:03 +02:00
distfiles="http://ftp.isc.org/isc/bind9/${_distver}-${_patchver}/bind-${_distver}-${_patchver}.tar.gz"
2016-09-28 17:04:36 +02:00
checksum=a075e5ce89fddccb0e64d1777d59161387dd5151cf4e7d1a93875a487812baef
2016-04-29 07:23:01 +02:00
build_options="geoip seccomp"
build_options_default="geoip"
if [ -z "$CROSS_BUILD" ]; then
build_options_default+=" seccomp"
fi
2014-01-31 18:20:48 +01:00
build_style=gnu-configure
configure_args="--disable-static --enable-threads --enable-largefile
--with-libtool --enable-atomic --sysconfdir=/etc/named --enable-epoll
2016-04-29 07:23:01 +02:00
--enable-ipv6 --with-randomdev=/dev/random --with-ecdsa=yes --with-libtool
--with-openssl=${XBPS_CROSS_BASE}/usr --without-gssapi --without-gost
--enable-openssl-hash --with-readline --with-tuning=default
--enable-fetchlimit --enable-sit $(vopt_enable seccomp)
$(vopt_if geoip "--with-geoip=${XBPS_CROSS_BASE}/usr" "--without-geoip")"
2014-11-19 07:34:05 +01:00
hostmakedepends="automake libtool perl"
2016-04-29 07:23:01 +02:00
makedepends="libressl-devel libxml2-devel libcap-devel readline-devel
$(vopt_if geoip geoip-devel) $(vopt_if seccomp libseccomp-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() {
2014-11-19 07:34:05 +01:00
autoreconf -fi
# disable bin tests for now.
sed -e "s,tests,,g" -i bin/Makefile.in
}
2014-01-31 18:20:48 +01:00
post_install() {
2014-10-13 17:28:52 +02:00
vsv named
2012-01-31 13:52:16 +01: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
vlicense COPYRIGHT LICENSE
2012-01-31 13:52:16 +01:00
}
bind-libs_package() {
2013-07-27 23:23:47 +02:00
short_desc+=" - Runtime libraries"
pkg_install() {
2016-03-10 15:01:10 +01:00
vmove usr/lib/*.so.*
}
}
bind-utils_package() {
2013-07-27 23:23:47 +02:00
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() {
2014-07-15 20:25:06 +02:00
depends="bind-libs>=${version}_${revision}"
2013-07-27 23:23:47 +02: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
2016-03-10 15:01:10 +01:00
vmove usr/lib/*.so
}
}