bind: update to 9.9.3-P3.

This commit is contained in:
Juan RP 2013-07-27 23:23:47 +02:00
parent 6b083c3927
commit 69c73b24f5

View file

@ -1,6 +1,6 @@
# Template file for 'bind' # Template file for 'bind'
pkgname=bind pkgname=bind
_distver=9.9.2 _distver=9.9.3
_patchver=P2 _patchver=P2
version="${_distver}.${_patchver}" version="${_distver}.${_patchver}"
wrksrc="bind-${_distver}-${_patchver}" wrksrc="bind-${_distver}-${_patchver}"
@ -10,7 +10,7 @@ maintainer="Juan RP <xtraeme@gmail.com>"
license="ISC" license="ISC"
homepage="http://www.isc.org/software/bind/" homepage="http://www.isc.org/software/bind/"
distfiles="http://ftp.isc.org/isc/bind9/${_distver}-${_patchver}/bind-${_distver}-${_patchver}.tar.gz" distfiles="http://ftp.isc.org/isc/bind9/${_distver}-${_patchver}/bind-${_distver}-${_patchver}.tar.gz"
checksum=ff822734e3550969251411e20f6f7397d14a912613a42af423752e93fdb565d2 checksum=5e8ab06c7b73f38b47ce9ad12ca0afa7c714bbba2f6b7421c26c0d8b84b6c678
long_desc=" long_desc="
BIND is by far the most widely used DNS software on the Internet. It provides BIND is by far the most widely used DNS software on the Internet. It provides
a robust and stable platform on top of which organizations can build a robust and stable platform on top of which organizations can build
@ -63,14 +63,14 @@ do_install() {
} }
bind-libs_package() { bind-libs_package() {
short_desc="Berkeley Internet Name Domain server - Runtime libraries" short_desc+=" - Runtime libraries"
pkg_install() { pkg_install() {
vmove "usr/lib/*.so*" vmove "usr/lib/*.so.*"
} }
} }
bind-utils_package() { bind-utils_package() {
short_desc="Berkeley Internet Name Domain server - DNS utils" short_desc+=" - DNS utils"
pkg_install() { pkg_install() {
for f in dig host nslookup; do for f in dig host nslookup; do
vmove usr/bin/${f} vmove usr/bin/${f}
@ -81,12 +81,13 @@ bind-utils_package() {
bind-devel_package() { bind-devel_package() {
depends="bind-libs>=$version" depends="bind-libs>=$version"
short_desc="Berkeley Internet Name Domain server - development files" short_desc+=" - development files"
pkg_install() { pkg_install() {
vmove usr/bin/isc-config.sh vmove usr/bin/isc-config.sh
vmove usr/share/man/man1/isc-config.sh.1 vmove usr/share/man/man1/isc-config.sh.1
vmove usr/include vmove usr/include
vmove usr/share/man/man3 vmove usr/share/man/man3
vmove "usr/lib/*.so"
} }
} }