void-packages/srcpkgs/dhcp/template
2016-03-31 13:47:53 +02:00

57 lines
1.9 KiB
Bash

# Template file for 'dhcp'
pkgname=dhcp
_version=4.3.4
version=${_version//-/.}
revision=4
wrksrc="dhcp-${_version}"
build_style=gnu-configure
disable_parallel_build=yes
hostmakedepends="perl"
conf_files="/etc/dhcpd.conf"
short_desc="Server from the Internet Software Consortium's implementation of DHCP"
maintainer="Enno Boland <gottox@voidlinux.eu>"
license="ISC"
homepage="https://www.isc.org/software/dhcp"
distfiles="http://ftp.isc.org/isc/dhcp/${_version}/dhcp-${_version}.tar.gz"
checksum=f5115aee3dd3e6925de4ba47b80ab732ba48b481c8364b6ebade2d43698d607e
pre_configure() {
local _args=" --sbindir=/usr/bin --enable-paranoia
--with-srv-lease-file=/var/lib/dhcp/dhcpd.leases
--with-srv6-lease-file=/var/lib/dhcp/dhcpd6.leases
--with-cli-lease-file=/var/lib/dhclient/dhclient.leases
--with-cli6-lease-file=/var/lib/dhclient/dhclient6.leases
--with-randomdev=/dev/random"
local cargs="$(echo $configure_args | tr '\n' ' ')"
# patching bind Makefile to patch with a cross fix while building (WTF?!)
sed -i "s#./configure#patch -p0 < $FILESDIR/003_cross_fix.patch \&\& ./configure --with-randomdev=/dev/random $cargs#" bind/Makefile.in
# set real configure_args
export configure_args+="${_args}"
}
post_install() {
mv ${DESTDIR}/etc/dhclient.conf.example ${DESTDIR}/etc/dhclient.conf
mv ${DESTDIR}/etc/dhcpd.conf.example ${DESTDIR}/etc/dhcpd.conf
sed -i "s/^/#/" $DESTDIR/etc/dhclient.conf $DESTDIR/etc/dhcpd.conf
vsv dhcpd4
vsv dhcpd6
# Remove development stuff, useless...
rm -rf ${DESTDIR}/usr/include ${DESTDIR}/usr/lib ${DESTDIR}/usr/share/man/man3
vlicense LICENSE
}
dhclient_package() {
short_desc="Client from the Internet Software Consortium's implementation of DHCP"
conf_files="/etc/dhclient.conf"
make_dirs="/var/lib/dhclient 0755 root root"
pkg_install() {
vmove etc/dhclient.conf
vmove usr/bin/dhclient
vmove usr/share/man/man5/dhclient*
vmove usr/share/man/man8/dhclient*
vbin client/scripts/linux dhclient-script
vsv dhclient
}
}