wok view bind/receipt @ rev 6153

Up: libcdio, libcdio-dev, libcdio-utils to 0.82.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Sep 09 20:36:57 2010 +0000 (2010-09-09)
parents 395ec8205cff
children d20d9a5651e9
line source
1 # SliTaz package receipt.
3 PACKAGE="bind"
4 VERSION="9.7.0-P1"
5 CATEGORY="network"
6 SHORT_DESC="Domain Name System daemon."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.isc.org/products/BIND/"
10 DEPENDS="libbind libcrypto attr"
11 BUILD_DEPENDS="libtool libcap-dev"
12 WGET_URL="http://ftp.isc.org/isc/bind9/$VERSION/$TARBALL"
13 CONFIG_FILES="/etc/bind"
14 TAGS="DNS daemon"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 mkdir -p _pkg/etc/bind
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --sysconfdir=/etc/bind --localstatedir=/var --with-libtool \
23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
24 make && make DESTDIR=$PWD/_pkg install && \
25 LD_LIBRARY_PATH=$src/_pkg/usr/lib \
26 _pkg/usr/bin/dig ns . @a.root-servers.net. > _pkg/etc/bind/db.root
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr $fs/var/cache/bind
33 cp -a $_pkg/usr/sbin $fs/usr
34 cp -a $_pkg/etc $fs
35 cp -a stuff/etc $fs
36 # Package all bind pkgs
37 for i in libbind $(cd $WOK; ls -d bind-*)
38 do
39 tazwok genpkg $i
40 done
41 }