123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- #
- # Copyright (C) 2006-2012 OpenWrt.org
- # 2014-2017 Noah Meyerhans <frodo@morgul.net>
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=bind
- PKG_VERSION:=9.10.4-P5
- PKG_RELEASE:=1
- USERID:=bind=57:bind=57
- PKG_MAINTAINER:=Noah Meyerhans <frodo@morgul.net>
- PKG_LICENSE := BSD-3-Clause
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:= \
- ftp://ftp.isc.org/isc/bind9/$(PKG_VERSION) \
- http://www.mirrorservice.org/sites/ftp.isc.org/isc/bind9/$(PKG_VERSION)
- PKG_MD5SUM:=c53a3e34e7aabb16820b036ae9afd3c9
- PKG_FIXUP:=autoreconf
- PKG_REMOVE_FILES:=aclocal.m4 libtool.m4
- PKG_INSTALL:=1
- PKG_USE_MIPS16:=0
- PKG_CONFIG_DEPENDS := \
- CONFIG_OPENSSL_WITH_EC \
- CONFIG_BIND_ENABLE_FILTER_AAAA
- include $(INCLUDE_DIR)/package.mk
- define Package/bind/Default
- SECTION:=net
- CATEGORY:=Network
- DEPENDS:=+bind-libs
- TITLE:=bind
- URL:=https://www.isc.org/software/bind
- SUBMENU:=IP Addresses and Names
- endef
- define Package/bind-libs
- SECTION:=libs
- CATEGORY:=Libraries
- DEPENDS:=+libopenssl
- TITLE:=bind shared libraries
- URL:=https://www.isc.org/software/bind
- endef
- define Package/bind-server
- $(call Package/bind/Default)
- TITLE+= DNS server
- endef
- define Package/bind-server/config
- source "$(SOURCE)/Config.in"
- endef
- define Package/bind-client
- $(call Package/bind/Default)
- TITLE+= dynamic DNS client
- endef
- define Package/bind-tools
- $(call Package/bind/Default)
- TITLE+= administration tools (all)
- endef
- define Package/bind-rndc
- $(call Package/bind/Default)
- TITLE+= administration tools (rndc and rndc-confgen only)
- endef
- define Package/bind-check
- $(call Package/bind/Default)
- TITLE+= administration tools (named-checkconf and named-checkzone only)
- endef
- define Package/bind-dnssec
- $(call Package/bind/Default)
- TITLE+= administration tools (dnssec-keygen and dnssec-signzone only)
- endef
- define Package/bind-host
- $(call Package/bind/Default)
- TITLE+= simple DNS client
- endef
- define Package/bind-dig
- $(call Package/bind/Default)
- TITLE+= DNS excavation tool
- endef
- export BUILD_CC="$(TARGET_CC)"
- CONFIGURE_ARGS += \
- --enable-shared \
- --enable-static \
- --with-randomdev="/dev/urandom" \
- --disable-threads \
- --disable-linux-caps \
- --with-openssl="$(STAGING_DIR)/usr" \
- --with-libjson=no \
- --with-libtool \
- --with-libxml2=no \
- --enable-epoll=yes \
- --with-gost=no \
- --with-gssapi=no \
- --with-ecdsa=$(if $(CONFIG_OPENSSL_WITH_EC),yes,no) \
- --with-readline=no \
- --sysconfdir=/etc/bind
- ifdef CONFIG_BIND_ENABLE_FILTER_AAAA
- CONFIGURE_ARGS += \
- --enable-filter-aaaa
- endif
- CONFIGURE_VARS += \
- BUILD_CC="$(TARGET_CC)" \
- define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR)/lib/dns \
- BUILD_CC="$(HOSTCC)" \
- CC="$(HOSTCC)" \
- CFLAGS="-O2" \
- LIBS="" \
- gen
- $(call Build/Compile/Default)
- endef
- define Package/bind-libs/install
- $(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib
- endef
- define Package/bind-server/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/named $(1)/usr/sbin/
- $(INSTALL_DIR) $(1)/etc/bind
- $(CP) \
- ./files/bind/db.0 \
- ./files/bind/db.127 \
- ./files/bind/db.255 \
- ./files/bind/db.local \
- ./files/bind/db.root \
- $(1)/etc/bind/
- $(CP) ./files/bind/named.conf.example $(1)/etc/bind/named.conf
- $(INSTALL_DIR) $(1)/etc/init.d
- $(INSTALL_BIN) ./files/named.init $(1)/etc/init.d/named
- find $(1)/etc/bind/ -name ".svn" | xargs rm -rf
- endef
- define Package/bind-server/conffiles
- /etc/bind/db.0
- /etc/bind/db.127
- /etc/bind/db.255
- /etc/bind/db.local
- /etc/bind/db.root
- /etc/bind/named.conf
- endef
- define Package/bind-client/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nsupdate $(1)/usr/bin/
- endef
- define Package/bind-tools/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dig $(1)/usr/bin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/host $(1)/usr/bin/
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-keygen $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-signzone $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/named-checkconf $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/named-checkzone $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/rndc $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/rndc-confgen $(1)/usr/sbin/
- endef
- define Package/bind-rndc/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/rndc $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/rndc-confgen $(1)/usr/sbin/
- endef
- define Package/bind-check/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/named-checkconf $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/named-checkzone $(1)/usr/sbin/
- endef
- define Package/bind-dnssec/install
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-keygen $(1)/usr/sbin/
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/dnssec-signzone $(1)/usr/sbin/
- endef
- define Package/bind-host/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/host $(1)/usr/bin/
- endef
- define Package/bind-dig/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dig $(1)/usr/bin/
- endef
- $(eval $(call BuildPackage,bind-libs))
- $(eval $(call BuildPackage,bind-server))
- $(eval $(call BuildPackage,bind-client))
- $(eval $(call BuildPackage,bind-tools))
- $(eval $(call BuildPackage,bind-rndc))
- $(eval $(call BuildPackage,bind-check))
- $(eval $(call BuildPackage,bind-dnssec))
- $(eval $(call BuildPackage,bind-host))
- $(eval $(call BuildPackage,bind-dig))
|