summaryrefslogtreecommitdiffstats
path: root/abs/core/dnsutils/PKGBUILD
blob: 672613ebbe8496afecc36e714c3d072f1741391f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# $Id: PKGBUILD 5888 2008-07-21 19:29:16Z kevin $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: mario <mario_vazq@hotmail.com>
pkgname=dnsutils
pkgver=9.5.0
_pkgver=9.5.0-P1
pkgrel=4
pkgdesc="Various DNS utilities - dig host nslookup nsupdate"
arch=(i686 x86_64)
url="http://www.isc.org/index.pl?/sw/bind/"
license=('custom:ISC')
depends=('openssl>=0.9.8e')
replaces=('bind-tools')
source=(ftp://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz
	bind.so_bsdcompat.diff tools-only.patch)
md5sums=('a4f9dd6d205d24ec89fa4e44d8188197' '447d58721cfee0e1e377b46f7d50b327'
         '329f7e15b8c45d3efefdf5b559bb878a')

build() {
  export MAKEFLAGS="-j1"

  cd ${startdir}/src/bind-${_pkgver}
  patch -Np0 -i ${startdir}/src/bind.so_bsdcompat.diff || return 1
  patch -Np1 -i ${startdir}/src/tools-only.patch || return 1
  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
              --with-openssl=yes --disable-linux-caps --without-libxml2
  make || return 1
  cd bin
  make DESTDIR=${startdir}/pkg install || return 1
  install -D -m644 ../COPYRIGHT $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
}