summaryrefslogtreecommitdiffstats
path: root/extra/bind-utils
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-10-16 15:10:22 +0200
committertnut <tnut at nutyx dot com>2011-10-16 15:10:22 +0200
commit760c80ab5ca3dd765f362f6cb3dd92c18558da36 (patch)
tree402898a4b9a69999e9b0407e47ca88575fe11f19 /extra/bind-utils
parent87e3d40ef2c392b25d6a622917c5bb8f9ce09f70 (diff)
downloadnutyx-pakxe-760c80ab5ca3dd765f362f6cb3dd92c18558da36.tar.gz
nutyx-pakxe-760c80ab5ca3dd765f362f6cb3dd92c18558da36.tar.bz2
nutyx-pakxe-760c80ab5ca3dd765f362f6cb3dd92c18558da36.tar.xz
nutyx-pakxe-760c80ab5ca3dd765f362f6cb3dd92c18558da36.zip
bind-utils dans extra
Diffstat (limited to 'extra/bind-utils')
-rw-r--r--extra/bind-utils/.footprint.i68611
-rw-r--r--extra/bind-utils/.footprint.x86_6411
-rw-r--r--extra/bind-utils/.md5sum.i6861
-rw-r--r--extra/bind-utils/.md5sum.x86_641
-rw-r--r--extra/bind-utils/Pkgfile24
5 files changed, 48 insertions, 0 deletions
diff --git a/extra/bind-utils/.footprint.i686 b/extra/bind-utils/.footprint.i686
new file mode 100644
index 000000000..0e8b27a81
--- /dev/null
+++ b/extra/bind-utils/.footprint.i686
@@ -0,0 +1,11 @@
+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
+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
diff --git a/extra/bind-utils/.footprint.x86_64 b/extra/bind-utils/.footprint.x86_64
new file mode 100644
index 000000000..0e8b27a81
--- /dev/null
+++ b/extra/bind-utils/.footprint.x86_64
@@ -0,0 +1,11 @@
+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
+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
diff --git a/extra/bind-utils/.md5sum.i686 b/extra/bind-utils/.md5sum.i686
new file mode 100644
index 000000000..629b3a714
--- /dev/null
+++ b/extra/bind-utils/.md5sum.i686
@@ -0,0 +1 @@
+207477c4cf95f2db5be0ded8a22669e0 bind-9.7.3.tar.gz
diff --git a/extra/bind-utils/.md5sum.x86_64 b/extra/bind-utils/.md5sum.x86_64
new file mode 100644
index 000000000..629b3a714
--- /dev/null
+++ b/extra/bind-utils/.md5sum.x86_64
@@ -0,0 +1 @@
+207477c4cf95f2db5be0ded8a22669e0 bind-9.7.3.tar.gz
diff --git a/extra/bind-utils/Pkgfile b/extra/bind-utils/Pkgfile
new file mode 100644
index 000000000..8ef9af0cd
--- /dev/null
+++ b/extra/bind-utils/Pkgfile
@@ -0,0 +1,24 @@
+# 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.7.3
+release=1
+source=(http://ftp.isc.org/isc/bind9/$version/bind-$version.tar.gz)
+
+build(){
+ cd bind-$version
+ ./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
+
+
+}