void-packages/srcpkgs/unbound/template
Christian Neukirchen c19a58d1a7 unbound: fix check for libressl-2.2.2.
Since 2.2.2, LibreSSL uses an indirect macro to define
LIBRESSL_VERSION_TEXT, breaking the check in unbound's configure.

Without this, reallocarray is used inspite of no prototype
declaration, thus the return value of realloc will be truncated to
32-bit which results in immediate segfault on 64-bit architectures.

Closes #2232.
2015-08-10 17:27:21 +02:00

42 lines
1.2 KiB
Bash

# Template file for 'unbound'
pkgname=unbound
version=1.5.4
revision=3
build_pie=yes
build_style=gnu-configure
configure_args="--with-libevent --with-conf-file=/etc/unbound/unbound.conf
--with-pidfile=/run/unbound.pid --with-ssl=${XBPS_CROSS_BASE}/usr
--with-libevent=${XBPS_CROSS_BASE}/usr --with-libexpat=${XBPS_CROSS_BASE}/usr
--with-rootkey-file=/etc/dns/root.key --sbindir=/usr/bin"
conf_files="/etc/unbound/unbound.conf"
makedepends="libressl-devel expat-devel libevent-devel"
depends="dnssec-anchors"
system_accounts="unbound"
short_desc="Validating, recursive, and caching DNS resolver"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="BSD"
homepage="http://unbound.net/"
distfiles="http://unbound.net/downloads/${pkgname}-${version}.tar.gz"
checksum=a1e1c1a578cf8447cb51f6033714035736a0f04444854a983123c094cc6fb137
post_extract() {
sed -i 's/OPENSSL_VERSION_TEXT/_VERSION_TEXT/g' configure
}
post_install() {
vsconf doc/example.conf unbound.conf
vinstall ${FILESDIR}/unbound.conf 644 etc/unbound
vsv unbound
}
unbound-devel_package() {
depends="unbound>=$version $makedepends"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/share/man/man3
}
}