wok annotate dhcp/receipt @ rev 5676

Liferea: fix depends
author Antoine Bodin <gokhlayeh@mailoo.org>
date Tue Jun 01 16:38:44 2010 +0200 (2010-06-01)
parents bedf285c387c
children 07408a482374
rev   line source
pascal@1338 1 # SliTaz package receipt.
pascal@1338 2
pascal@1338 3 PACKAGE="dhcp"
erjo@3020 4 VERSION="4.1.1b1"
pascal@1338 5 CATEGORY="network"
pascal@1338 6 SHORT_DESC="Dynamic Host Configuration Protocol server."
pascal@1338 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1338 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1338 9 WEB_SITE="http://www.isc.org/products/DHCP/"
pascal@1338 10 WGET_URL="http://ftp.isc.org/isc/$PACKAGE/$TARBALL"
pascal@2488 11 DEPENDS="libcrypto"
pascal@1338 12 CONFIG_FILES="/etc/dhcpd.conf"
pascal@1338 13
pascal@1338 14 # Rules to configure and make the package.
pascal@1338 15 compile_rules()
pascal@1338 16 {
pascal@1338 17 cd $src
pascal@1338 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@3350 19 --disable-dhcpv6 \
pascal@1338 20 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
pascal@1338 21 make && make DESTDIR=$PWD/_pkg install
pascal@1338 22 }
pascal@1338 23
pascal@1338 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1338 25 genpkg_rules()
pascal@1338 26 {
pascal@5234 27 mkdir -p $fs/usr/sbin $fs/etc/init.d
pascal@1338 28 cp $_pkg/etc/dhcpd.conf $fs/etc
pascal@1338 29 cp $_pkg/usr/sbin/dhcpd $fs/usr/sbin
pascal@5234 30 cp stuff/dhcpd $fs/etc/init.d
pascal@1338 31 # Package all dhcp pkgs
pascal@1338 32 for i in $(cd $WOK; ls -d dhcp-*)
pascal@1338 33 do
pascal@1338 34 tazwok genpkg $i
pascal@1338 35 done
pascal@1338 36 }
pascal@1338 37