wok view dhcp/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 98fc9beddbba
children e9130cce9043
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.isc.org/products/DHCP/"
10 WGET_URL="http://ftp.isc.org/isc/$PACKAGE/$TARBALL"
11 DEPENDS="libcrypto"
12 BUILD_DEPENDS="perl"
13 CONFIG_FILES="/etc/dhcpd.conf"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 grep -q MYEOL includes/dhctoken.h ||
20 sed -i "s/SEMI/MYEOL = '\\\\n',\n\tQUESTION = '?',\n\t&/" \
21 includes/dhctoken.h
22 sed -i 's/== NOERROR/== (isc_result_t) NOERROR/' server/ddns.c
23 ./configure --prefix=/usr --infodir=/usr/share/info \
24 --disable-dhcpv6 \
25 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
26 make && make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/sbin $fs/etc/init.d
33 cp $_pkg/etc/dhcpd.conf $fs/etc
34 cp $_pkg/usr/sbin/dhcpd $fs/usr/sbin
35 cp $stuff/dhcpd $fs/etc/init.d
36 }