mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
86 lines
2.6 KiB
Bash
86 lines
2.6 KiB
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Samir Benmendil <ram-z[at]chakra-project[dot]org>
|
|
|
|
pkgbase=dhcp
|
|
pkgname=('dhcp'
|
|
'dhclient')
|
|
# separate patch levels with a period to maintain proper versioning.
|
|
pkgver=4.2.4.1
|
|
_pkgver=4.2.4-P1
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
license=('custom:isc-dhcp')
|
|
url="https://www.isc.org/software/dhcp"
|
|
source=(ftp://ftp.isc.org/isc/${pkgbase}/${_pkgver}/${pkgbase}-${_pkgver}.tar.gz
|
|
dhcp4 dhcp6 dhcp.conf.d
|
|
dhcp-4.1.1-missing-ipv6-not-fatal.patch
|
|
dhclient-script-pathFixes.patch)
|
|
md5sums=('0ca7181024651f6323951d5498c8020b'
|
|
'c49b1497837ba56c54e401a66e1bab9b'
|
|
'12c2f3ae47ed23eb698eb7f1bfd80f20'
|
|
'8f357e46e1efcbb746f38737a3f977a2'
|
|
'fd64aeb4f399dcc41ea43089a3811094'
|
|
'0fc1241ef7879d8be0fe140deb8ae48d')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${_pkgver}
|
|
|
|
# Define _GNU_SOURCE to fix IPV6.
|
|
sed '/^CFLAGS="$CFLAGS/ s/INGS"/INGS -D_GNU_SOURCE"/' -i configure
|
|
|
|
# Make not having ipv6 non-fatal.
|
|
patch -p0 -i ${srcdir}/dhcp-4.1.1-missing-ipv6-not-fatal.patch
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--with-srv-lease-file=/var/state/dhcp/dhcpd.leases \
|
|
--with-srv6-lease-file=/var/state/dhcp/dhcpd6.leases \
|
|
--with-cli-lease-file=/var/state/dhclient/dhclient.leases \
|
|
--with-cli6-lease-file=/var/state/dhclient/dhclient6.leases
|
|
|
|
make
|
|
|
|
patch -i "${srcdir}/dhclient-script-pathFixes.patch" client/scripts/linux
|
|
}
|
|
|
|
package_dhcp(){
|
|
pkgdesc="A DHCP server, client, and relay agent"
|
|
depends=('openssl>=0.9.8a')
|
|
backup=('etc/dhcpd.conf' 'etc/conf.d/dhcp')
|
|
install=dhcp.install
|
|
|
|
cd "${srcdir}/${pkgname}-${_pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -D -m755 "${srcdir}/dhcp4" "${pkgdir}/etc/rc.d/dhcp4"
|
|
install -D -m755 "${srcdir}/dhcp6" "${pkgdir}/etc/rc.d/dhcp6"
|
|
install -D -m644 "${srcdir}/dhcp.conf.d" "${pkgdir}/etc/conf.d/${pkgbase}"
|
|
mkdir -p "${pkgdir}/var/state/dhcp"
|
|
|
|
# Remove dhclient
|
|
make -C client DESTDIR="${pkgdir}" uninstall
|
|
|
|
# install licenses
|
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/dhcp/LICENSE"
|
|
}
|
|
|
|
package_dhclient(){
|
|
pkgdesc="dhclient is standalone client from the dhcp package"
|
|
depends=('bash' 'iproute2' 'net-tools')
|
|
|
|
cd "${srcdir}/${pkgname}-${_pkgver}"
|
|
make -C client DESTDIR="${pkgdir}" install
|
|
|
|
#move dhclient.conf to dhclient.conf.example
|
|
mv "${pkgdir}"/etc/dhclient.conf{,.example}
|
|
|
|
install -d "${pkgdir}/var/state/dhclient"
|
|
|
|
# install dhclient linux script
|
|
install -Dm755 client/scripts/linux "${pkgdir}/sbin/dhclient-script"
|
|
|
|
# install licenses
|
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/dhclient/LICENSE"
|
|
}
|