summaryrefslogtreecommitdiffstats
path: root/extra/bind-utils
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2011-10-16 15:18:00 +0200
committerpiernov <piernov@piernov.org>2011-10-16 15:18:00 +0200
commit18797577ce0f23e543efa27b59ec880584e578f7 (patch)
tree69fd2394315029fc85998cb02b9495d811e9f130 /extra/bind-utils
parentb561dc2d78be93031af1112d7fe011b74a40ba99 (diff)
parent7ee441736b2a9a7a567b25dbdbda9b6941fbaf9f (diff)
downloadnutyx-pakxe-18797577ce0f23e543efa27b59ec880584e578f7.tar.gz
nutyx-pakxe-18797577ce0f23e543efa27b59ec880584e578f7.tar.bz2
nutyx-pakxe-18797577ce0f23e543efa27b59ec880584e578f7.tar.xz
nutyx-pakxe-18797577ce0f23e543efa27b59ec880584e578f7.zip
Merge branch 'master' of ssh://kiao.no-ip.info:443/~/pakxe
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
+
+
+}