PKGBUILDs/extra/dhcp/PKGBUILD

125 lines
4.4 KiB
Bash
Raw Normal View History

2020-01-25 18:32:09 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Daniel Isenmann <daniel @archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch FTBFS in bundled bind when built without atomics
# - disable atomics on v5/v6
# - above changes can probably be removed once bundled bind moves beyond 9.11.14
pkgbase=dhcp
pkgname=('dhcp' 'dhclient')
# separate patch levels with a period to maintain proper versioning.
2021-05-29 19:26:52 +00:00
_realver=4.4.2-P1
pkgver=${_realver/-/.}
2021-11-19 02:50:22 +00:00
pkgrel=2
2020-01-25 18:32:09 +00:00
arch=('x86_64')
license=('custom:isc-dhcp')
url='https://www.isc.org/dhcp/'
makedepends=('bash' 'iproute2' 'openldap')
2021-05-29 19:26:52 +00:00
validpgpkeys=('7E1C91AC8030A5A59D1EFAB9750F3C87723E4012') # Internet Systems Consortium, Inc. (Signing key, 2021-2022) <codesign@isc.org>
source=("https://downloads.isc.org/isc/${pkgbase}/${_realver}/${pkgbase}-${_realver}.tar.gz"{,.asc}
'0002-iproute2.patch'
'0003-117-fixed-gcc-10-compilation-issues.patch'
'fix-variable-name-in-conditional-block.patch'
2020-01-25 18:32:09 +00:00
'dhcp-sysusers.conf'
'dhcp-tmpfiles.conf'
'dhcpd4.service'
'dhcpd6.service'
2021-05-29 19:26:52 +00:00
'dhclient@.service')
sha256sums=('b05e04337539545a8faa0d6ac518defc61a07e5aec66a857f455e7f218c85a1a'
2020-01-25 18:32:09 +00:00
'SKIP'
2021-05-29 19:26:52 +00:00
'837a64189b949afae951655546967cc8f17f2f2cf370faabff00575364f0fcf7'
'ab652f408a0730caa996df11bea608f279c5547acc849d5562a592ea19f67727'
'895e655f320f3de0053d512d1915a3706f710f24c560ad811a48593a16ef3b34'
2020-01-25 18:32:09 +00:00
'b16083e6bb572ffacaa7cd97e7fde5fcfa1b6dbeb166f162e2ec6e8ec4b928d6'
'abcd30e9e8428e34d22ab4d3074ef4bd84c2b11f5868597111b47d6f56d204da'
'03fce30efab819b2d928085b0bab962a33ce56fc376acae98ad9b30aa278c9c8'
'f98a4438f4f69cab7cc5cce6927df4790ee993ebc8f88a169e63043c53d25625'
2021-05-29 19:26:52 +00:00
'86cd0b1e0ea1d47ab096f6ee925eee60545116fb887a155761eda589b30e4f0e')
2020-01-25 18:32:09 +00:00
prepare() {
2021-05-29 19:26:52 +00:00
cd "${srcdir}/${pkgbase}-${_realver}"
2020-01-25 18:32:09 +00:00
# no ifconfig, use ip from iproute2
patch -Np1 -i ../0002-iproute2.patch
2021-05-29 19:26:52 +00:00
# [#117] Fixed gcc 10 compilation issues
patch -Np1 -i ../0003-117-fixed-gcc-10-compilation-issues.patch
2020-01-25 18:32:09 +00:00
cd bind
bsdtar -xf bind.tar.gz
cd bind-9.*
patch -p1 -i "${srcdir}/fix-variable-name-in-conditional-block.patch"
}
build() {
2021-05-29 19:26:52 +00:00
cd "${srcdir}/${pkgbase}-${_realver}"
2020-01-25 18:32:09 +00:00
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && CONFIG='--with-bind-extra-config="--disable-atomic"'
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--enable-binary-leases \
--enable-paranoia \
--with-ldap \
--with-ldapcrypto \
--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 $CONFIG
make -j1
}
package_dhcp(){
pkgdesc="A DHCP server, client, and relay agent"
depends=('glibc' 'libldap')
backup=('etc/dhcpd.conf' 'etc/dhcpd6.conf')
2021-05-29 19:26:52 +00:00
cd "${srcdir}/${pkgbase}-${_realver}"
2020-01-25 18:32:09 +00:00
make DESTDIR="${pkgdir}" install
install -D -m644 "${srcdir}/dhcp-sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/dhcp.conf"
install -D -m644 "${srcdir}/dhcp-tmpfiles.conf" "${pkgdir}/usr/lib/tmpfiles.d/dhcp.conf"
install -D -m644 "${srcdir}/dhcpd4.service" "${pkgdir}/usr/lib/systemd/system/dhcpd4.service"
install -D -m644 "${srcdir}/dhcpd6.service" "${pkgdir}/usr/lib/systemd/system/dhcpd6.service"
# move and install config files in place
mv "${pkgdir}/etc/dhcpd.conf.example" "${pkgdir}/etc/dhcpd.conf"
install -D -m644 doc/examples/dhcpd-dhcpv6.conf "${pkgdir}/etc/dhcpd6.conf"
# Remove dhclient
make -C client DESTDIR="${pkgdir}" uninstall
# install license
install -m644 -D LICENSE "${pkgdir}/usr/share/licenses/dhcp/LICENSE"
}
package_dhclient(){
pkgdesc="A standalone DHCP client from the dhcp package"
2020-02-22 20:25:11 +00:00
depends=('glibc' 'bash' 'iproute2' 'run-parts')
2020-01-25 18:32:09 +00:00
provides=('dhcp-client')
2021-05-29 19:26:52 +00:00
cd "${srcdir}/${pkgbase}-${_realver}"
2020-01-25 18:32:09 +00:00
make -C client DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/dhclient"
mv "${pkgdir}/etc/dhclient.conf.example" "${pkgdir}/usr/share/dhclient/"
install -d "${pkgdir}/var/lib/dhclient"
# install dhclient linux script
install -m755 client/scripts/linux "${pkgdir}/usr/bin/dhclient-script"
# install license
install -m644 -D LICENSE "${pkgdir}/usr/share/licenses/dhclient/LICENSE"
# install systemd service unit
install -m644 -D "$srcdir/dhclient@.service" "${pkgdir}/usr/lib/systemd/system/dhclient@.service"
}