summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/bind-utils/.footprint11
-rw-r--r--base/bind-utils/.md5sum1
-rw-r--r--base/bind-utils/Pkgfile24
3 files changed, 36 insertions, 0 deletions
diff --git a/base/bind-utils/.footprint b/base/bind-utils/.footprint
new file mode 100644
index 000000000..0e8b27a81
--- /dev/null
+++ b/base/bind-utils/.footprint
@@ -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/base/bind-utils/.md5sum b/base/bind-utils/.md5sum
new file mode 100644
index 000000000..e8c607435
--- /dev/null
+++ b/base/bind-utils/.md5sum
@@ -0,0 +1 @@
+44e0514e6105ddaa235394045d9aeb0c bind-9.4.1-P1.tar.gz
diff --git a/base/bind-utils/Pkgfile b/base/bind-utils/Pkgfile
new file mode 100644
index 000000000..0eb5cfc4f
--- /dev/null
+++ b/base/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.4.1-P1
+release=1
+source=(http://gd.tuwien.ac.at/infosys/servers/isc/bind9/9.4.1-P1/bind-9.4.1-P1.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
+
+
+}