wok view dhcp/receipt @ rev 20567

clisp, dhcp: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 12 23:58:13 2018 +0100 (2018-12-12)
parents eb8067417980
children a1d1bad5f192
line source
1 # SliTaz package receipt.
3 PACKAGE="dhcp"
4 VERSION="4.2.2"
5 CATEGORY="network"
6 SHORT_DESC="Dynamic Host Configuration Protocol server."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="ISC"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.isc.org/products/DHCP/"
11 WGET_URL="http://ftp.isc.org/isc/$PACKAGE/$TARBALL"
12 CONFIG_FILES="/etc/dhcpd.conf"
14 DEPENDS="libcrypto"
15 BUILD_DEPENDS="perl file"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 grep -q MYEOL includes/dhctoken.h ||
21 sed -i "s/SEMI/MYEOL = '\\\\n',\n\tQUESTION = '?',\n\t&/" \
22 includes/dhctoken.h
23 sed -i 's/== NOERROR/== (isc_result_t) NOERROR/' server/ddns.c
24 ./configure --prefix=/usr --infodir=/usr/share/info \
25 --disable-dhcpv6 \
26 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/sbin $fs/etc/init.d
34 cp $install/etc/dhcpd.conf $fs/etc
35 cp $install/usr/sbin/dhcpd $fs/usr/sbin
36 cp $stuff/dhcpd $fs/etc/init.d
37 }