summaryrefslogtreecommitdiffstats
path: root/bind-utils
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /bind-utils
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'bind-utils')
-rw-r--r--bind-utils/.footprint.i68614
-rw-r--r--bind-utils/.footprint.x86_6414
-rw-r--r--bind-utils/.md5sum.i6861
-rw-r--r--bind-utils/.md5sum.x86_641
-rw-r--r--bind-utils/Pkgfile40
5 files changed, 70 insertions, 0 deletions
diff --git a/bind-utils/.footprint.i686 b/bind-utils/.footprint.i686
new file mode 100644
index 000000000..44186c6c7
--- /dev/null
+++ b/bind-utils/.footprint.i686
@@ -0,0 +1,14 @@
+drwxr-xr-x root/root usr/
+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/bind-utils/.footprint.x86_64 b/bind-utils/.footprint.x86_64
new file mode 100644
index 000000000..44186c6c7
--- /dev/null
+++ b/bind-utils/.footprint.x86_64
@@ -0,0 +1,14 @@
+drwxr-xr-x root/root usr/
+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/bind-utils/.md5sum.i686 b/bind-utils/.md5sum.i686
new file mode 100644
index 000000000..3da7ec8ef
--- /dev/null
+++ b/bind-utils/.md5sum.i686
@@ -0,0 +1 @@
+cf31117c5d35af34d4c0702970ad9fb7 bind-9.8.1.tar.gz
diff --git a/bind-utils/.md5sum.x86_64 b/bind-utils/.md5sum.x86_64
new file mode 100644
index 000000000..3da7ec8ef
--- /dev/null
+++ b/bind-utils/.md5sum.x86_64
@@ -0,0 +1 @@
+cf31117c5d35af34d4c0702970ad9fb7 bind-9.8.1.tar.gz
diff --git a/bind-utils/Pkgfile b/bind-utils/Pkgfile
new file mode 100644
index 000000000..f02b8ae98
--- /dev/null
+++ b/bind-utils/Pkgfile
@@ -0,0 +1,40 @@
+# Description: Outils de resolution de nom DNS
+# URL: http://www.isc.org/software/bind
+# Maintainer: NuTyX core team
+# Packager: fredjo
+
+name=bind-utils
+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
+
+ make -C lib/dns
+ make -C lib/isc
+ make -C lib/bind9
+ make -C lib/isccfg
+ make -C lib/lwres
+ 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
+}