aboutsummaryrefslogtreecommitdiffstats
path: root/openwrt/package/bind
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-07 11:57:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-10-07 11:57:20 +0000
commitd58a09110ccfa95f06c983fe796806f2e035c9d2 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /openwrt/package/bind
parentaf034797eeb62b62ac05442d5a688b28ccd0f16b (diff)
downloadupstream-d58a09110ccfa95f06c983fe796806f2e035c9d2.tar.gz
upstream-d58a09110ccfa95f06c983fe796806f2e035c9d2.tar.bz2
upstream-d58a09110ccfa95f06c983fe796806f2e035c9d2.zip
move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the developers are ready
SVN-Revision: 4944
Diffstat (limited to 'openwrt/package/bind')
-rw-r--r--openwrt/package/bind/Config.in113
-rw-r--r--openwrt/package/bind/Makefile138
-rw-r--r--openwrt/package/bind/files/bind/db.012
-rw-r--r--openwrt/package/bind/files/bind/db.12713
-rw-r--r--openwrt/package/bind/files/bind/db.25512
-rw-r--r--openwrt/package/bind/files/bind/db.local13
-rw-r--r--openwrt/package/bind/files/bind/db.root45
-rw-r--r--openwrt/package/bind/files/bind/named.conf.example45
-rwxr-xr-xopenwrt/package/bind/files/named.init5
-rw-r--r--openwrt/package/bind/ipkg/bind-check.control5
-rw-r--r--openwrt/package/bind/ipkg/bind-client.control5
-rw-r--r--openwrt/package/bind/ipkg/bind-dig.control5
-rw-r--r--openwrt/package/bind/ipkg/bind-dnssec.control5
-rw-r--r--openwrt/package/bind/ipkg/bind-host.control5
-rw-r--r--openwrt/package/bind/ipkg/bind-rndc.control5
-rw-r--r--openwrt/package/bind/ipkg/bind-server.conffiles6
-rw-r--r--openwrt/package/bind/ipkg/bind-server.control6
-rw-r--r--openwrt/package/bind/ipkg/bind-tools.control5
-rw-r--r--openwrt/package/bind/patches/cross-compile.patch178
19 files changed, 0 insertions, 621 deletions
diff --git a/openwrt/package/bind/Config.in b/openwrt/package/bind/Config.in
deleted file mode 100644
index 34a33c4503..0000000000
--- a/openwrt/package/bind/Config.in
+++ /dev/null
@@ -1,113 +0,0 @@
-menu "bind.............................. A DNS server implementation"
-
-config BR2_COMPILE_BIND
- tristate
- default n
- depends BR2_PACKAGE_BIND_CLIENT || BR2_PACKAGE_BIND_SERVER || BR2_PACKAGE_BIND_TOOLS || BR2_PACKAGE_BIND_RNDC || BR2_PACKAGE_BIND_CHECK || BR2_PACKAGE_BIND_DNSSEC || BR2_PACKAGE_BIND_HOST || BR2_PACKAGE_BIND_DIG
-
-config BR2_PACKAGE_BIND_TOOLS
- prompt "bind-tools........................ Bind administration tools"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- dig, host, nsupdate, dnssec-keygen, dnssec-signzone, named-checkconf, named-checkzone, rndc, rndc-confgen
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-config BR2_PACKAGE_BIND_RNDC
- prompt "bind-rndc......................... Bind administration tools (rndc & rndc-confgen only)"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- rndc, rndc-confgen
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-config BR2_PACKAGE_BIND_CHECK
- prompt "bind-check........................ Bind administration tools (named-checkconf & named-checkzone only)"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- named-checkconf, named-checkzone
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-config BR2_PACKAGE_BIND_DNSSEC
- prompt "bind-dnssec....................... Bind administration tools (dnssec-keygen & dnssec-signzone only)"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- dnssec-keygen, dnssec-signzone
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-config BR2_PACKAGE_BIND_HOST
- prompt "bind-host......................... A simple DNS client"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- host
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-config BR2_PACKAGE_BIND_DIG
- prompt "bind-dig.......................... A DNS client"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- dig
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-
-config BR2_PACKAGE_BIND_CLIENT
- prompt "bind-client....................... A dynamic DNS client"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- A DNS dynamic client (nsupdate)
-
- http://www.isc.org/sw/bind/
-
- Depends: openssl
-
-config BR2_PACKAGE_BIND_SERVER
- prompt "bind-server....................... A DNS server"
- tristate
- default m if CONFIG_DEVEL
- select BR2_COMPILE_BIND
- select BR2_PACKAGE_LIBOPENSSL
- help
- A DNS server (named)
-
- http://www.isc.org/sw/bind/
-
- Depends: libopenssl
-
-endmenu
diff --git a/openwrt/package/bind/Makefile b/openwrt/package/bind/Makefile
deleted file mode 100644
index f635ef4ea1..0000000000
--- a/openwrt/package/bind/Makefile
+++ /dev/null
@@ -1,138 +0,0 @@
-# $Id$
-
-include $(TOPDIR)/rules.mk
-
-PKG_NAME:=bind
-PKG_VERSION:=9.3.1
-PKG_RELEASE:=1
-PKG_MD5SUM:=9ff3204eea27184ea0722f37e43fc95d
-
-PKG_SOURCE_URL:=ftp://ftp.isc.org/isc/bind9/9.3.1/
-PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
-PKG_CAT:=zcat
-
-PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
-PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
-PKG_INIT_LEVEL:=60
-
-include $(TOPDIR)/package/rules.mk
-
-$(eval $(call PKG_template,BIND_SERVER,bind-server,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_CLIENT,bind-client,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_TOOLS,bind-tools,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_RNDC,bind-rndc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_CHECK,bind-check,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_DNSSEC,bind-dnssec,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_HOST,bind-host,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(eval $(call PKG_template,BIND_DIG,bind-dig,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-
-
-$(PKG_BUILD_DIR)/.configured:
- (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
- $(TARGET_CONFIGURE_OPTS) \
- CFLAGS="$(strip $(TARGET_CFLAGS))" \
- CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
- LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
- ./configure \
- --target=$(GNU_TARGET_NAME) \
- --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) \
- --program-prefix="" \
- --program-suffix="" \
- --prefix=/usr \
- --exec-prefix=/usr \
- --bindir=/usr/bin \
- --datadir=/usr/share \
- --includedir=/usr/include \
- --infodir=/usr/share/info \
- --libdir=/usr/lib \
- --libexecdir=/usr/lib \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --sbindir=/usr/sbin \
- --sysconfdir=/etc \
- $(DISABLE_LARGEFILE) \
- $(DISABLE_NLS) \
- --enable-shared \
- --enable-static \
- --enable-ipv6 \
- --with-randomdev=/dev/urandom \
- --disable-threads \
- --with-openssl=$(STAGING_DIR)/usr/ \
- );
- touch $(PKG_BUILD_DIR)/.configured
-
-$(PKG_BUILD_DIR)/.built:
- $(MAKE) -C $(PKG_BUILD_DIR)/lib/dns \
- CC="$(HOSTCC)" \
- CFLAGS="-O2" \
- gen
- rm -rf $(PKG_INSTALL_DIR)
- mkdir -p $(PKG_INSTALL_DIR)
- $(MAKE) -C $(PKG_BUILD_DIR) \
- DESTDIR="$(PKG_INSTALL_DIR)" \
- all install
- touch $@
-
-$(IPKG_BIND_SERVER):
- install -d -m0755 $(IDIR_BIND_SERVER)/usr/sbin
- install -d -m0755 $(IDIR_BIND_SERVER)/etc/init.d
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/named $(IDIR_BIND_SERVER)/usr/sbin/
- $(CP) files/bind $(IDIR_BIND_SERVER)/etc
- $(CP) files/named.init $(IDIR_BIND_SERVER)/etc/init.d/S$(PKG_INIT_LEVEL)named
- find $(IDIR_BIND_SERVER)/etc/bind -name ".svn" | xargs rm -rf
- $(RSTRIP) $(IDIR_BIND_SERVER)
- $(IPKG_BUILD) $(IDIR_BIND_SERVER) $(PACKAGE_DIR)
-
-$(IPKG_BIND_CLIENT):
- install -d -m0755 $(IDIR_BIND_CLIENT)/usr/bin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/nsupdate $(IDIR_BIND_CLIENT)/usr/bin/
- $(RSTRIP) $(IDIR_BIND_CLIENT)
- $(IPKG_BUILD) $(IDIR_BIND_CLIENT) $(PACKAGE_DIR)
-
-$(IPKG_BIND_TOOLS):
- install -d -m0755 $(IDIR_BIND_TOOLS)/usr/bin
- install -d -m0755 $(IDIR_BIND_TOOLS)/usr/sbin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/dig $(IDIR_BIND_TOOLS)/usr/bin/
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/host $(IDIR_BIND_TOOLS)/usr/bin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-keygen $(IDIR_BIND_TOOLS)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-signzone $(IDIR_BIND_TOOLS)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/named-checkconf $(IDIR_BIND_TOOLS)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/named-checkzone $(IDIR_BIND_TOOLS)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/rndc $(IDIR_BIND_TOOLS)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/rndc-confgen $(IDIR_BIND_TOOLS)/usr/sbin/
- $(RSTRIP) $(IDIR_BIND_TOOLS)
- $(IPKG_BUILD) $(IDIR_BIND_TOOLS) $(PACKAGE_DIR)
-
-$(IPKG_BIND_RNDC):
- install -d -m0755 $(IDIR_BIND_RNDC)/usr/sbin
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/rndc $(IDIR_BIND_RNDC)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/rndc-confgen $(IDIR_BIND_RNDC)/usr/sbin/
- $(RSTRIP) $(IDIR_BIND_RNDC)
- $(IPKG_BUILD) $(IDIR_BIND_RNDC) $(PACKAGE_DIR)
-
-$(IPKG_BIND_CHECK):
- install -d -m0755 $(IDIR_BIND_CHECK)/usr/sbin
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/named-checkconf $(IDIR_BIND_CHECK)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/named-checkzone $(IDIR_BIND_CHECK)/usr/sbin/
- $(RSTRIP) $(IDIR_BIND_CHECK)
- $(IPKG_BUILD) $(IDIR_BIND_CHECK) $(PACKAGE_DIR)
-
-$(IPKG_BIND_DNSSEC):
- install -d -m0755 $(IDIR_BIND_DNSSEC)/usr/sbin
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-keygen $(IDIR_BIND_DNSSEC)/usr/sbin/
- $(CP) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-signzone $(IDIR_BIND_DNSSEC)/usr/sbin/
- $(RSTRIP) $(IDIR_BIND_DNSSEC)
- $(IPKG_BUILD) $(IDIR_BIND_DNSSEC) $(PACKAGE_DIR)
-
-$(IPKG_BIND_HOST):
- install -d -m0755 $(IDIR_BIND_HOST)/usr/bin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/host $(IDIR_BIND_HOST)/usr/bin/
- $(RSTRIP) $(IDIR_BIND_HOST)
- $(IPKG_BUILD) $(IDIR_BIND_HOST) $(PACKAGE_DIR)
-
-$(IPKG_BIND_DIG):
- install -d -m0755 $(IDIR_BIND_DIG)/usr/bin
- $(CP) $(PKG_INSTALL_DIR)/usr/bin/dig $(IDIR_BIND_DIG)/usr/bin/
- $(RSTRIP) $(IDIR_BIND_DIG)
- $(IPKG_BUILD) $(IDIR_BIND_DIG) $(PACKAGE_DIR)
diff --git a/openwrt/package/bind/files/bind/db.0 b/openwrt/package/bind/files/bind/db.0
deleted file mode 100644
index e3aabdbeed..0000000000
--- a/openwrt/package/bind/files/bind/db.0
+++ /dev/null
@@ -1,12 +0,0 @@
-;
-; BIND reverse data file for broadcast zone
-;
-$TTL 604800
-@ IN SOA localhost. root.localhost. (
- 1 ; Serial
- 604800 ; Refresh
- 86400 ; Retry
- 2419200 ; Expire
- 604800 ) ; Negative Cache TTL
-;
-@ IN NS localhost.
diff --git a/openwrt/package/bind/files/bind/db.127 b/openwrt/package/bind/files/bind/db.127
deleted file mode 100644
index cd05bef14a..0000000000
--- a/openwrt/package/bind/files/bind/db.127
+++ /dev/null
@@ -1,13 +0,0 @@
-;
-; BIND reverse data file for local loopback interface
-;
-$TTL 604800
-@ IN SOA localhost. root.localhost. (
- 1 ; Serial
- 604800 ; Refresh
- 86400 ; Retry
- 2419200 ; Expire
- 604800 ) ; Negative Cache TTL
-;
-@ IN NS localhost.
-1.0.0 IN PTR localhost.
diff --git a/openwrt/package/bind/files/bind/db.255 b/openwrt/package/bind/files/bind/db.255
deleted file mode 100644
index e3aabdbeed..0000000000
--- a/openwrt/package/bind/files/bind/db.255
+++ /dev/null
@@ -1,12 +0,0 @@
-;
-; BIND reverse data file for broadcast zone
-;
-$TTL 604800
-@ IN SOA localhost. root.localhost. (
- 1 ; Serial
- 604800 ; Refresh
- 86400 ; Retry
- 2419200 ; Expire
- 604800 ) ; Negative Cache TTL
-;
-@ IN NS localhost.
diff --git a/openwrt/package/bind/files/bind/db.local b/openwrt/package/bind/files/bind/db.local
deleted file mode 100644
index 66b4892351..0000000000
--- a/openwrt/package/bind/files/bind/db.local
+++ /dev/null
@@ -1,13 +0,0 @@
-;
-; BIND data file for local loopback interface
-;
-$TTL 604800
-@ IN SOA localhost. root.localhost. (
- 1 ; Serial
- 604800 ; Refresh
- 86400 ; Retry
- 2419200 ; Expire
- 604800 ) ; Negative Cache TTL
-;
-@ IN NS localhost.
-@ IN A 127.0.0.1
diff --git a/openwrt/package/bind/files/bind/db.root b/openwrt/package/bind/files/bind/db.root
deleted file mode 100644
index 01c20f0479..0000000000
--- a/openwrt/package/bind/files/bind/db.root
+++ /dev/null
@@ -1,45 +0,0 @@
-
-; <<>> DiG 9.2.3 <<>> ns . @a.root-servers.net.
-;; global options: printcmd
-;; Got answer:
-;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 18944
-;; flags: qr aa rd; QUERY: 1, ANSWER: 13, AUTHORITY: 0, ADDITIONAL: 13
-
-;; QUESTION SECTION:
-;. IN NS
-
-;; ANSWER SECTION:
-. 518400 IN NS A.ROOT-SERVERS.NET.
-. 518400 IN NS B.ROOT-SERVERS.NET.
-. 518400 IN NS C.ROOT-SERVERS.NET.
-. 518400 IN NS D.ROOT-SERVERS.NET.
-. 518400 IN NS E.ROOT-SERVERS.NET.
-. 518400 IN NS F.ROOT-SERVERS.NET.
-. 518400 IN NS G.ROOT-SERVERS.NET.
-. 518400 IN NS H.ROOT-SERVERS.NET.
-. 518400 IN NS I.ROOT-SERVERS.NET.
-. 518400 IN NS J.ROOT-SERVERS.NET.
-. 518400 IN NS K.ROOT-SERVERS.NET.
-. 518400 IN NS L.ROOT-SERVERS.NET.
-. 518400 IN NS M.ROOT-SERVERS.NET.
-
-;; ADDITIONAL SECTION:
-A.ROOT-SERVERS.NET. 3600000 IN A 198.41.0.4
-B.ROOT-SERVERS.NET. 3600000 IN A 192.228.79.201
-C.ROOT-SERVERS.NET. 3600000 IN A 192.33.4.12
-D.ROOT-SERVERS.NET. 3600000 IN A 128.8.10.90
-E.ROOT-SERVERS.NET. 3600000 IN A 192.203.230.10
-F.ROOT-SERVERS.NET. 3600000 IN A 192.5.5.241
-G.ROOT-SERVERS.NET. 3600000 IN A 192.112.36.4
-H.ROOT-SERVERS.NET. 3600000 IN A 128.63.2.53
-I.ROOT-SERVERS.NET. 3600000 IN A 192.36.148.17
-J.ROOT-SERVERS.NET. 3600000 IN A 192.58.128.30
-K.ROOT-SERVERS.NET. 3600000 IN A 193.0.14.129
-L.ROOT-SERVERS.NET. 3600000 IN A 198.32.64.12
-M.ROOT-SERVERS.NET. 3600000 IN A 202.12.27.33
-
-;; Query time: 81 msec
-;; SERVER: 198.41.0.4#53(a.root-servers.net.)
-;; WHEN: Sun Feb 1 11:27:14 2004
-;; MSG SIZE rcvd: 436
-
diff --git a/openwrt/package/bind/files/bind/named.conf.example b/openwrt/package/bind/files/bind/named.conf.example
deleted file mode 100644
index 1624549552..0000000000
--- a/openwrt/package/bind/files/bind/named.conf.example
+++ /dev/null
@@ -1,45 +0,0 @@
-// This is the primary configuration file for the BIND DNS server named.
-
-options {
- directory "/tmp";
-
- // If your ISP provided one or more IP addresses for stable
- // nameservers, you probably want to use them as forwarders.
- // Uncomment the following block, and insert the addresses replacing
- // the all-0's placeholder.
-
- // forwarders {
- // 0.0.0.0;
- // };
-
- auth-nxdomain no; # conform to RFC1035
-};
-
-// prime the server with knowledge of the root servers
-zone "." {
- type hint;
- file "/etc/bind/db.root";
-};
-
-// be authoritative for the localhost forward and reverse zones, and for
-// broadcast zones as per RFC 1912
-
-zone "localhost" {
- type master;
- file "/etc/bind/db.local";
-};
-
-zone "127.in-addr.arpa" {
- type master;
- file "/etc/bind/db.127";
-};
-
-zone "0.in-addr.arpa" {
- type master;
- file "/etc/bind/db.0";
-};
-
-zone "255.in-addr.arpa" {
- type master;
- file "/etc/bind/db.255";
-};
diff --git a/openwrt/package/bind/files/named.init b/openwrt/package/bind/files/named.init
deleted file mode 100755
index 97860b3b25..0000000000
--- a/openwrt/package/bind/files/named.init
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-if [ -f /etc/bind/named.conf ]; then
- named -c /etc/bind/named.conf
-fi
diff --git a/openwrt/package/bind/ipkg/bind-check.control b/openwrt/package/bind/ipkg/bind-check.control
deleted file mode 100644
index b2ccae4af9..0000000000
--- a/openwrt/package/bind/ipkg/bind-check.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-check
-Priority: optional
-Section: net
-Description: named-checkconf & named-checkzone utilities
-Depends: libopenssl
diff --git a/openwrt/package/bind/ipkg/bind-client.control b/openwrt/package/bind/ipkg/bind-client.control
deleted file mode 100644
index 711da62837..0000000000
--- a/openwrt/package/bind/ipkg/bind-client.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-client
-Priority: optional
-Section: net
-Description: dynamic dns client
-Depends: libopenssl
diff --git a/openwrt/package/bind/ipkg/bind-dig.control b/openwrt/package/bind/ipkg/bind-dig.control
deleted file mode 100644
index 22a0ca88d7..0000000000
--- a/openwrt/package/bind/ipkg/bind-dig.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-dig
-Priority: optional
-Section: net
-Description: dig utility
-Depends: libopenssl
diff --git a/openwrt/package/bind/ipkg/bind-dnssec.control b/openwrt/package/bind/ipkg/bind-dnssec.control
deleted file mode 100644
index c808638758..0000000000
--- a/openwrt/package/bind/ipkg/bind-dnssec.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-dnssec
-Priority: optional
-Section: net
-Description: dnssec-keygen & dnssec-signzone utilities
-Depends: libopenssl
diff --git a/openwrt/package/bind/ipkg/bind-host.control b/openwrt/package/bind/ipkg/bind-host.control
deleted file mode 100644
index 02173621d3..0000000000
--- a/openwrt/package/bind/ipkg/bind-host.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-host
-Priority: optional
-Section: net
-Description: host utility
-Depends: libopenssl
diff --git a/openwrt/package/bind/ipkg/bind-rndc.control b/openwrt/package/bind/ipkg/bind-rndc.control
deleted file mode 100644
index ed3ed5efe7..0000000000
--- a/openwrt/package/bind/ipkg/bind-rndc.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-rndc
-Priority: optional
-Section: net
-Description: rndc & rndc-confgen utilities
-Depends: libopenssl
diff --git a/openwrt/package/bind/ipkg/bind-server.conffiles b/openwrt/package/bind/ipkg/bind-server.conffiles
deleted file mode 100644
index c4cfe37d57..0000000000
--- a/openwrt/package/bind/ipkg/bind-server.conffiles
+++ /dev/null
@@ -1,6 +0,0 @@
-/etc/bind/named.conf.example
-/etc/bind/db.0
-/etc/bind/db.127
-/etc/bind/db.255
-/etc/bind/db.local
-/etc/bind/db.root
diff --git a/openwrt/package/bind/ipkg/bind-server.control b/openwrt/package/bind/ipkg/bind-server.control
deleted file mode 100644
index 7a0f544140..0000000000
--- a/openwrt/package/bind/ipkg/bind-server.control
+++ /dev/null
@@ -1,6 +0,0 @@
-Package: bind-server
-Priority: optional
-Section: net
-Description: popular dns server
-Depends: libopenssl
-Conflicts: dnsmasq
diff --git a/openwrt/package/bind/ipkg/bind-tools.control b/openwrt/package/bind/ipkg/bind-tools.control
deleted file mode 100644
index 50a0b58e2a..0000000000
--- a/openwrt/package/bind/ipkg/bind-tools.control
+++ /dev/null
@@ -1,5 +0,0 @@
-Package: bind-tools
-Priority: optional
-Section: net
-Description: dig, host, nslookup, nsupdate, dnssec-keygen, dnssec-signzone, named-checkconf, named-checkzone, rndc, rndc-confgen
-Depends: libopenssl
diff --git a/openwrt/package/bind/patches/cross-compile.patch b/openwrt/package/bind/patches/cross-compile.patch
deleted file mode 100644
index 1fab97f818..0000000000
--- a/openwrt/package/bind/patches/cross-compile.patch
+++ /dev/null
@@ -1,178 +0,0 @@
---- bind-9.3.1/configure 2004-12-09 05:09:03.000000000 +0100
-+++ bind-9.3.1.patched/configure 2005-05-23 13:17:58.919886003 +0200
-@@ -23675,175 +23675,6 @@
- # which provides some (all?) of the desired functions.
- #
-
--echo "$as_me:$LINENO: checking for inet_ntop with IPv6 support" >&5
--echo $ECHO_N "checking for inet_ntop with IPv6 support... $ECHO_C" >&6
--if test "$cross_compiling" = yes; then
-- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
--See \`config.log' for more details." >&5
--echo "$as_me: error: cannot run test program while cross compiling
--See \`config.log' for more details." >&2;}
-- { (exit 1); exit 1; }; }
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#include <sys/types.h>
--#include <sys/socket.h>
--#include <netinet/in.h>
--#include <arpa/inet.h>
--main() {
--char a[16],b[64]; return(inet_ntop(AF_INET6, a, b, sizeof(b)) == (char*)0);}
--_ACEOF
--rm -f conftest$ac_exeext
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-- (eval $ac_link) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
-- ISC_PLATFORM_NEEDNTOP="#undef ISC_PLATFORM_NEEDNTOP"
--else
-- echo "$as_me: program exited with status $ac_status" >&5
--echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--( exit $ac_status )
--echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-- ISC_EXTRA_OBJS="$ISC_EXTRA_OBJS inet_ntop.$O"
-- ISC_EXTRA_SRCS="$ISC_EXTRA_SRCS inet_ntop.c"
-- ISC_PLATFORM_NEEDNTOP="#define ISC_PLATFORM_NEEDNTOP 1"
--fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--
--# On NetBSD 1.4.2 and maybe others, inet_pton() incorrectly accepts
--# addresses with less than four octets, like "1.2.3". Also leading
--# zeros should also be rejected.
--
--echo "$as_me:$LINENO: checking for working inet_pton with IPv6 support" >&5
--echo $ECHO_N "checking for working inet_pton with IPv6 support... $ECHO_C" >&6
--if test "$cross_compiling" = yes; then
-- echo "$as_me:$LINENO: result: assuming target platform has working inet_pton" >&5
--echo "${ECHO_T}assuming target platform has working inet_pton" >&6
-- ISC_PLATFORM_NEEDPTON="#undef ISC_PLATFORM_NEEDPTON"
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#include <sys/types.h>
--#include <sys/socket.h>
--#include <netinet/in.h>
--#include <arpa/inet.h>
--main() { char a[16]; return (inet_pton(AF_INET, "1.2.3", a) == 1 ? 1 :
-- inet_pton(AF_INET, "1.2.3.04", a) == 1 ? 1 :
-- (inet_pton(AF_INET6, "::1.2.3.4", a) != 1)); }
--_ACEOF
--rm -f conftest$ac_exeext
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-- (eval $ac_link) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
-- ISC_PLATFORM_NEEDPTON="#undef ISC_PLATFORM_NEEDPTON"
--else
-- echo "$as_me: program exited with status $ac_status" >&5
--echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--( exit $ac_status )
--echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-- ISC_EXTRA_OBJS="$ISC_EXTRA_OBJS inet_pton.$O"
-- ISC_EXTRA_SRCS="$ISC_EXTRA_SRCS inet_pton.c"
-- ISC_PLATFORM_NEEDPTON="#define ISC_PLATFORM_NEEDPTON 1"
--fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--echo "$as_me:$LINENO: checking for inet_aton" >&5
--echo $ECHO_N "checking for inet_aton... $ECHO_C" >&6
--cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#include <sys/types.h>
--#include <netinet/in.h>
--#include <arpa/inet.h>
--int
--main ()
--{
--struct in_addr in; inet_aton(0, &in); return (0);
-- ;
-- return 0;
--}
--_ACEOF
--rm -f conftest.$ac_objext conftest$ac_exeext
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
-- (eval $ac_link) 2>conftest.er1
-- ac_status=$?
-- grep -v '^ *+' conftest.er1 >conftest.err
-- rm -f conftest.er1
-- cat conftest.err >&5
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } &&
-- { ac_try='test -z "$ac_c_werror_flag"
-- || test ! -s conftest.err'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; } &&
-- { ac_try='test -s conftest$ac_exeext'
-- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-- (eval $ac_try) 2>&5
-- ac_status=$?
-- echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
-- ISC_PLATFORM_NEEDATON="#undef ISC_PLATFORM_NEEDATON"
--else
-- echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-- ISC_EXTRA_OBJS="$ISC_EXTRA_OBJS inet_aton.$O"
-- ISC_EXTRA_SRCS="$ISC_EXTRA_SRCS inet_aton.c"
-- ISC_PLATFORM_NEEDATON="#define ISC_PLATFORM_NEEDATON 1"
--fi
--rm -f conftest.err conftest.$ac_objext \
-- conftest$ac_exeext conftest.$ac_ext
--
--
--
--
-
- #
- # Look for a 4.4BSD-style sa_len member in struct sockaddr.