diff options
author | piernov <piernov@piernov.org> | 2011-10-23 14:11:18 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2011-10-23 14:11:18 +0200 |
commit | 76f0e22404881225432fd3e0f1025abc4d90c165 (patch) | |
tree | 4cf288e348b23fcc874c56a40af3bc9d7cda1292 /extra | |
parent | 70367335f7c5a6f908314d402a0bf08d7b2c3ac5 (diff) | |
download | nutyx-extra-76f0e22404881225432fd3e0f1025abc4d90c165.tar.gz nutyx-extra-76f0e22404881225432fd3e0f1025abc4d90c165.tar.bz2 nutyx-extra-76f0e22404881225432fd3e0f1025abc4d90c165.tar.xz nutyx-extra-76f0e22404881225432fd3e0f1025abc4d90c165.zip |
bind-utils 9.8.1-1 màj port
Diffstat (limited to 'extra')
-rw-r--r-- | extra/bind-utils/.footprint.i686 | 3 | ||||
-rw-r--r-- | extra/bind-utils/.footprint.x86_64 | 3 | ||||
-rw-r--r-- | extra/bind-utils/.md5sum.i686 | 2 | ||||
-rw-r--r-- | extra/bind-utils/.md5sum.x86_64 | 2 | ||||
-rw-r--r-- | extra/bind-utils/Pkgfile | 22 |
5 files changed, 27 insertions, 5 deletions
diff --git a/extra/bind-utils/.footprint.i686 b/extra/bind-utils/.footprint.i686 index 0e8b27a81..44186c6c7 100644 --- a/extra/bind-utils/.footprint.i686 +++ b/extra/bind-utils/.footprint.i686 @@ -3,9 +3,12 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/dig -rwxr-xr-x root/root usr/bin/host -rwxr-xr-x root/root usr/bin/nslookup +-rwxr-xr-x root/root usr/bin/query-loc +-rwxr-xr-x root/root usr/bin/queryperf drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/man/ drwxr-xr-x root/root usr/share/man/man1/ -rw-r--r-- root/root usr/share/man/man1/dig.1.gz -rw-r--r-- root/root usr/share/man/man1/host.1.gz -rw-r--r-- root/root usr/share/man/man1/nslookup.1.gz +-rw-r--r-- root/root usr/share/man/man1/query-loc.1.gz diff --git a/extra/bind-utils/.footprint.x86_64 b/extra/bind-utils/.footprint.x86_64 index 0e8b27a81..44186c6c7 100644 --- a/extra/bind-utils/.footprint.x86_64 +++ b/extra/bind-utils/.footprint.x86_64 @@ -3,9 +3,12 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/dig -rwxr-xr-x root/root usr/bin/host -rwxr-xr-x root/root usr/bin/nslookup +-rwxr-xr-x root/root usr/bin/query-loc +-rwxr-xr-x root/root usr/bin/queryperf drwxr-xr-x root/root usr/share/ drwxr-xr-x root/root usr/share/man/ drwxr-xr-x root/root usr/share/man/man1/ -rw-r--r-- root/root usr/share/man/man1/dig.1.gz -rw-r--r-- root/root usr/share/man/man1/host.1.gz -rw-r--r-- root/root usr/share/man/man1/nslookup.1.gz +-rw-r--r-- root/root usr/share/man/man1/query-loc.1.gz diff --git a/extra/bind-utils/.md5sum.i686 b/extra/bind-utils/.md5sum.i686 index 629b3a714..3da7ec8ef 100644 --- a/extra/bind-utils/.md5sum.i686 +++ b/extra/bind-utils/.md5sum.i686 @@ -1 +1 @@ -207477c4cf95f2db5be0ded8a22669e0 bind-9.7.3.tar.gz +cf31117c5d35af34d4c0702970ad9fb7 bind-9.8.1.tar.gz diff --git a/extra/bind-utils/.md5sum.x86_64 b/extra/bind-utils/.md5sum.x86_64 index 629b3a714..3da7ec8ef 100644 --- a/extra/bind-utils/.md5sum.x86_64 +++ b/extra/bind-utils/.md5sum.x86_64 @@ -1 +1 @@ -207477c4cf95f2db5be0ded8a22669e0 bind-9.7.3.tar.gz +cf31117c5d35af34d4c0702970ad9fb7 bind-9.8.1.tar.gz diff --git a/extra/bind-utils/Pkgfile b/extra/bind-utils/Pkgfile index 8ef9af0cd..f02b8ae98 100644 --- a/extra/bind-utils/Pkgfile +++ b/extra/bind-utils/Pkgfile @@ -4,14 +4,28 @@ # Packager: fredjo name=bind-utils -version=9.7.3 +version=9.8.1 release=1 source=(http://ftp.isc.org/isc/bind9/$version/bind-$version.tar.gz) build(){ cd bind-$version + + cd contrib/queryperf + ./configure + make CFLAGS="$CFLAGS" + cd ../.. + + cd contrib/query-loc-* + sed "s|-lnsl|-lnsl -lresolv|g" -i configure* + rm configure && autoconf + ./configure + make CFLAGS="$CFLAGS" + cd ../.. + ./configure --prefix=/usr \ - --mandir=/usr/share/man + --mandir=/usr/share/man + make -C lib/dns make -C lib/isc make -C lib/bind9 @@ -20,5 +34,7 @@ build(){ make -C bin/dig make -C bin/dig DESTDIR=$PKG install - + install -m0755 contrib/queryperf/queryperf $PKG/usr/bin + install -m0755 contrib/query-loc-*/query-loc $PKG/usr/bin + install -m0644 contrib/query-loc-*/query-loc.1 $PKG/usr/share/man/man1 } |