void-packages/srcpkgs/dhcp/template

52 lines
1.7 KiB
Bash
Raw Normal View History

2015-03-28 17:55:09 +00:00
# Template file for 'dhcp'
pkgname=dhcp
2016-10-05 05:29:48 +00:00
version=4.3.5
revision=1
2015-03-28 17:55:09 +00:00
build_style=gnu-configure
2016-01-11 19:20:32 +00:00
disable_parallel_build=yes
2015-03-28 17:55:09 +00:00
hostmakedepends="perl"
2015-05-13 07:33:48 +00:00
conf_files="/etc/dhcpd.conf"
2015-03-28 17:55:09 +00:00
short_desc="Server from the Internet Software Consortium's implementation of DHCP"
maintainer="Enno Boland <gottox@voidlinux.eu>"
2015-03-28 17:55:09 +00:00
license="ISC"
homepage="https://www.isc.org/software/dhcp"
2016-04-20 07:55:34 +00:00
distfiles="http://ftp.isc.org/isc/dhcp/${version}/dhcp-${version}.tar.gz"
2016-10-05 05:29:48 +00:00
checksum=eb95936bf15d2393c55dd505bc527d1d4408289cec5a9fa8abb99f7577e7f954
pre_configure() {
2015-06-02 09:00:24 +00:00
local _args=" --sbindir=/usr/bin --enable-paranoia
2015-05-13 07:33:48 +00:00
--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
2016-03-31 11:47:53 +00:00
--with-cli6-lease-file=/var/lib/dhclient/dhclient6.leases
--with-randomdev=/dev/random"
2015-05-26 11:31:08 +00:00
local cargs="$(echo $configure_args | tr '\n' ' ')"
2015-05-13 07:33:48 +00:00
# set real configure_args
2015-05-13 07:33:48 +00:00
export configure_args+="${_args}"
}
2015-03-28 17:55:09 +00:00
post_install() {
2015-05-13 07:33:48 +00:00
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
2015-03-28 17:55:09 +00:00
vsv dhcpd4
vsv dhcpd6
2015-03-29 07:10:46 +00:00
# Remove development stuff, useless...
rm -rf ${DESTDIR}/usr/include ${DESTDIR}/usr/lib ${DESTDIR}/usr/share/man/man3
2016-02-11 05:08:34 +00:00
vlicense LICENSE
2015-03-28 17:55:09 +00:00
}
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"
2015-03-28 17:55:09 +00:00
pkg_install() {
vmove etc/dhclient.conf
2015-06-02 09:00:24 +00:00
vmove usr/bin/dhclient
2015-03-28 17:55:09 +00:00
vmove usr/share/man/man5/dhclient*
vmove usr/share/man/man8/dhclient*
2015-06-02 09:00:24 +00:00
vbin client/scripts/linux dhclient-script
2015-03-28 17:55:09 +00:00
vsv dhclient
}
}