summaryrefslogtreecommitdiffstats
path: root/package/bind
diff options
context:
space:
mode:
authorwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-08 00:58:53 +0000
committerwbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-07-08 00:58:53 +0000
commit71aebce5c68234b31ac69cf184fb3e95a1c3f502 (patch)
treea2b3411d15340e739e9d9ab5e6261dd86d7a8bd2 /package/bind
parent325475a750a9ddd47b8d37b0fd0d262d03fd80ef (diff)
add atftp, bind and dhcp, not perfect, but first step
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1375 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/bind')
-rw-r--r--package/bind/Config.in10
-rw-r--r--package/bind/Makefile98
-rw-r--r--package/bind/ipkg/bind.control7
3 files changed, 115 insertions, 0 deletions
diff --git a/package/bind/Config.in b/package/bind/Config.in
new file mode 100644
index 000000000..a820670b4
--- /dev/null
+++ b/package/bind/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_BIND
+ tristate "bind - popular dns server"
+ default m if CONFIG_DEVEL
+ select BR2_PACKAGE_LIBOPENSSL
+ help
+ DNS server implementation
+
+ http://www.isc.org/
+
+ Depends: openssl
diff --git a/package/bind/Makefile b/package/bind/Makefile
new file mode 100644
index 000000000..d0bfe3433
--- /dev/null
+++ b/package/bind/Makefile
@@ -0,0 +1,98 @@
+# $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
+
+include $(TOPDIR)/package/rules.mk
+
+$(eval $(call PKG_template,BIND,bind,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
+
+$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
+ (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
+ ./configure \
+ --target=$(GNU_HOST_NAME) \
+ --host=$(GNU_HOST_NAME) \
+ --build=$(GNU_HOST_NAME) \
+ --program-prefix="" \
+ --program-suffix="" \
+ --prefix=/usr \
+ --exec-prefix=/usr \
+ --bindir=/usr/bin \
+ --datadir=/usr/share \
+ --includedir=/usr/include \
+ --libdir=/usr/lib \
+ --libexecdir=/usr/lib \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --sbindir=/usr/sbin \
+ --sysconfdir=/etc \
+ --without-openssl \
+ --without-ipv6 \
+ $(DISABLE_LARGEFILE) \
+ $(DISABLE_NLS) \
+ );
+
+ $(MAKE) -C $(PKG_BUILD_DIR)/lib/isc
+ $(MAKE) -C $(PKG_BUILD_DIR)/lib/dns
+ $(MAKE) -C $(PKG_BUILD_DIR)/lib/isc clean
+ cp $(PKG_BUILD_DIR)/lib/dns/gen $(PKG_BUILD_DIR)
+ $(MAKE) -C $(PKG_BUILD_DIR)/lib/dns clean
+ cp $(PKG_BUILD_DIR)/gen $(PKG_BUILD_DIR)/lib/dns/gen
+ (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/random \
+ --disable-threads \
+ --with-openssl=$(STAGING_DIR)/usr/ \
+ );
+ touch $(PKG_BUILD_DIR)/.configured
+
+$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured
+ $(MAKE) -C $(PKG_BUILD_DIR)
+ mkdir -p $(PKG_INSTALL_DIR)
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ install
+ touch $(PKG_BUILD_DIR)/.built
+
+$(IPKG_BIND):
+ install -d -m0755 $(IDIR_BIND)/usr/sbin
+ cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/named $(IDIR_BIND)/usr/sbin/
+ $(RSTRIP) $(IDIR_BIND)
+ $(IPKG_BUILD) $(IDIR_BIND) $(PACKAGE_DIR)
diff --git a/package/bind/ipkg/bind.control b/package/bind/ipkg/bind.control
new file mode 100644
index 000000000..89daea59b
--- /dev/null
+++ b/package/bind/ipkg/bind.control
@@ -0,0 +1,7 @@
+Package: bind
+Priority: optional
+Section: net
+Maintainer: Waldemar Brodkorb <wbx@dass-it.de>
+Source: buildroot internal
+Description: popular dns server
+Depends: libopenssl