wok-6.x rev 22536
updated bind packages (9.11.0 -> 9.14.9)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 03 14:27:20 2020 +0100 (2020-01-03) |
parents | 12c4c5c2917b |
children | a353ccd3c0fb |
files | bind-client/receipt bind-dev/receipt bind/receipt libbind/receipt |
line diff
1.1 --- a/bind-client/receipt Fri Jan 03 13:49:45 2020 +0100 1.2 +++ b/bind-client/receipt Fri Jan 03 14:27:20 2020 +0100 1.3 @@ -1,21 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="bind-client" 1.7 -VERSION="9.11.0" 1.8 +VERSION="9.14.9" 1.9 CATEGORY="network" 1.10 SHORT_DESC="Domain Name System client." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="ISC" 1.13 -WEB_SITE="https://www.isc.org/" 1.14 +WEB_SITE="https://www.isc.org/bind/" 1.15 + 1.16 +DEPENDS="gcc83-lib-base attr libbind libcrypto libpcap readline" 1.17 WANTED="bind" 1.18 1.19 -DEPENDS="libbind libcrypto attr libpcap readline" 1.20 - 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr 1.25 - cp -a $install/usr/bin $fs/usr 1.26 + cp -a $install/usr/bin $fs/usr 1.27 } 1.28 1.29 post_remove()
2.1 --- a/bind-dev/receipt Fri Jan 03 13:49:45 2020 +0100 2.2 +++ b/bind-dev/receipt Fri Jan 03 14:27:20 2020 +0100 2.3 @@ -1,20 +1,21 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="bind-dev" 2.7 -VERSION="9.11.0" 2.8 +VERSION="9.14.9" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Domain Name System development files." 2.11 +SHORT_DESC="Domain Name System - development files." 2.12 MAINTAINER="pascal.bellard@slitaz.org" 2.13 LICENSE="ISC" 2.14 -WEB_SITE="https://www.isc.org/" 2.15 +WEB_SITE="https://www.isc.org/bind/" 2.16 + 2.17 WANTED="bind" 2.18 2.19 # Rules to gen a SliTaz package suitable for Tazpkg. 2.20 genpkg_rules() 2.21 { 2.22 mkdir -p $fs/usr/lib 2.23 - cp -a $install/usr/lib/*a $fs/usr/lib 2.24 - cp -a $install/usr/include $fs/usr 2.25 + 2.26 + cp -a $install/usr/lib/*a $fs/usr/lib 2.27 + cp -a $install/usr/include $fs/usr 2.28 find $fs -type f -name '*.la' -exec chmod a+x \{\} \; 2.29 } 2.30 -
3.1 --- a/bind/receipt Fri Jan 03 13:49:45 2020 +0100 3.2 +++ b/bind/receipt Fri Jan 03 14:27:20 2020 +0100 3.3 @@ -1,29 +1,42 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="bind" 3.7 -VERSION="9.11.0" 3.8 +VERSION="9.14.9" 3.9 CATEGORY="network" 3.10 +TAGS="DNS daemon" 3.11 SHORT_DESC="Domain Name System daemon." 3.12 MAINTAINER="pascal.bellard@slitaz.org" 3.13 LICENSE="ISC" 3.14 +WEB_SITE="https://www.isc.org/bind/" 3.15 + 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WEB_SITE="https://www.isc.org/" 3.18 -WGET_URL="http://ftp.isc.org/isc/bind9/$VERSION/$TARBALL" 3.19 +WGET_URL="https://ftp.isc.org/isc/bind9/$VERSION/$TARBALL" 3.20 + 3.21 +DEPENDS="attr gcc83-lib-base libbind libcrypto openssl perl" 3.22 +BUILD_DEPENDS="gcc83 krb5-dev libcap-dev libtool openssl-dev 3.23 + perl python python-ply readline-dev" 3.24 + 3.25 CONFIG_FILES="/etc/bind" 3.26 TAZPANEL_DAEMON="edit::/etc/bind/named.conf|man|options|web::$WEB_SITE" 3.27 -TAGS="DNS daemon" 3.28 - 3.29 -DEPENDS="libbind libcrypto attr openssl perl" 3.30 -BUILD_DEPENDS="libtool libcap-dev openssl-dev perl krb5-dev readline-dev" 3.31 3.32 # Rules to configure and make the package. 3.33 compile_rules() 3.34 { 3.35 mkdir -p $DESTDIR/etc/bind 3.36 - ./configure --prefix=/usr --infodir=/usr/share/info \ 3.37 - --sysconfdir=/etc/bind --localstatedir=/var --with-libtool \ 3.38 - --mandir=/usr/share/man --with-openssl $CONFIGURE_ARGS && \ 3.39 - make && make DESTDIR=$DESTDIR install && \ 3.40 + 3.41 + ./configure \ 3.42 + CC=gcc-83 \ 3.43 + CXX=g++-83 \ 3.44 + --prefix=/usr \ 3.45 + --infodir=/usr/share/info \ 3.46 + --sysconfdir=/etc/bind \ 3.47 + --localstatedir=/var \ 3.48 + --with-libtool \ 3.49 + --mandir=/usr/share/man \ 3.50 + --with-openssl \ 3.51 + $CONFIGURE_ARGS && 3.52 + make && 3.53 + make DESTDIR=$DESTDIR install && 3.54 LD_LIBRARY_PATH=$DESTDIR/usr/lib \ 3.55 $DESTDIR/usr/bin/dig ns . @a.root-servers.net. > $DESTDIR/etc/bind/db.root 3.56 } 3.57 @@ -31,10 +44,12 @@ 3.58 # Rules to gen a SliTaz package suitable for Tazpkg. 3.59 genpkg_rules() 3.60 { 3.61 - mkdir -p $fs/usr $fs/var/cache/bind 3.62 - cp -a $install/usr/sbin $fs/usr 3.63 - cp -a $install/etc $fs 3.64 - cp -a $stuff/etc $fs 3.65 + mkdir -p $fs/usr 3.66 + mkdir -p $fs/var/cache/bind 3.67 + 3.68 + cp -a $install/usr/sbin $fs/usr 3.69 + cp -a $install/etc $fs 3.70 + cp -a $stuff/etc $fs 3.71 } 3.72 3.73 # Post message when installing. 3.74 @@ -44,6 +59,7 @@ 3.75 grep -qs allow-recursion "$1/etc/bind/named.conf.options" || 3.76 sed -i "s/.*directory.*/\\tallow-recursion { $localnets };\\n&/" \ 3.77 "$1/etc/bind/named.conf.options" 3.78 + 3.79 #[ -x "$1/usr/bin/ssh-keygen" ] && 3.80 #chroot "$1/" "hostname -f | xargs ssh-keygen -r" | \ 3.81 # sed 's/^/update add /;s/ IN / 3600&/;/ SSHFP . 1 /d;' \
4.1 --- a/libbind/receipt Fri Jan 03 13:49:45 2020 +0100 4.2 +++ b/libbind/receipt Fri Jan 03 14:27:20 2020 +0100 4.3 @@ -1,20 +1,19 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="libbind" 4.7 -VERSION="9.11.0" 4.8 +VERSION="9.14.9" 4.9 CATEGORY="development" 4.10 -SHORT_DESC="Domain Name System shared libraries." 4.11 +SHORT_DESC="Domain Name System - shared libraries." 4.12 MAINTAINER="pascal.bellard@slitaz.org" 4.13 LICENSE="ISC" 4.14 -WEB_SITE="https://www.isc.org/" 4.15 +WEB_SITE="https://www.isc.org/bind/" 4.16 + 4.17 +DEPENDS="attr gcc83-lib-base libcap libcrypto libkrb5 libxml2 zlib" 4.18 WANTED="bind" 4.19 4.20 -DEPENDS="libcrypto libcap libxml2 zlib attr libkrb5" 4.21 - 4.22 # Rules to gen a SliTaz package suitable for Tazpkg. 4.23 genpkg_rules() 4.24 { 4.25 mkdir -p $fs/usr/lib 4.26 - cp -a $install/usr/lib/*.so* $fs/usr/lib 4.27 + cp -a $install/usr/lib/*.so* $fs/usr/lib 4.28 } 4.29 -