1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | # # Copyright (C) 2010-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # include $(TOPDIR)/rules.mk PKG_NAME:=unbound PKG_VERSION:=1.4.22 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.unbound.net/downloads PKG_MD5SUM:=59728c74fef8783f8bad1d7451eba97f PKG_BUILD_DEPENDS:=libexpat PKG_BUILD_PARALLEL:=1 PKG_FIXUP:=autoreconf PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/unbound/Default TITLE:=A validating, recursive & caching DNS resolver URL:=http://www.unbound.net/ DEPENDS:=+libopenssl endef define Package/unbound $(call Package/unbound/Default) SECTION:=net CATEGORY:=Network SUBMENU:=IP Addresses and Names TITLE+= (daemon) DEPENDS+= +libunbound endef define Package/unbound/description This package contains the Unbound daemon. endef define Package/unbound-anchor $(call Package/unbound/Default) SECTION:=net CATEGORY:=Network SUBMENU:=IP Addresses and Names TITLE+= (anchor utility) DEPENDS+= +unbound +libexpat endef define Package/unbound-anchor/description This package contains the Unbound anchor utility. endef define Package/unbound-control $(call Package/unbound/Default) SECTION:=net CATEGORY:=Network SUBMENU:=IP Addresses and Names TITLE+= (control utility) DEPENDS+= +unbound endef define Package/unbound-control/description This package contains the Unbound control utility. endef define Package/unbound-control-setup $(call Package/unbound/Default) SECTION:=net CATEGORY:=Network SUBMENU:=IP Addresses and Names TITLE+= (control setup utility) DEPENDS+= +unbound-control +openssl-util endef define Package/unbound-control-setup/description This package contains the Unbound control setup utility. endef define Package/unbound-host $(call Package/unbound/Default) SECTION:=net CATEGORY:=Network SUBMENU:=IP Addresses and Names TITLE+= (DNS lookup utility) DEPENDS+= +libunbound endef define Package/unbound-host/description This package contains the Unbound DNS lookup utility. endef define Package/libunbound $(call Package/unbound/Default) SECTION:=libs CATEGORY:=Libraries TITLE+= (library) endef define Package/libunbound/description This package contains the Unbound shared library. endef CONFIGURE_ARGS += \ --disable-ecdsa \ --disable-gost \ --enable-allsymbols \ --with-libexpat="$(STAGING_DIR)/usr" \ --with-ssl="$(STAGING_DIR)/usr" \ --without-pthreads define Package/unbound/conffiles /etc/unbound/unbound.conf endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/unbound.h $(1)/usr/include/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunbound.{so*,a,la} $(1)/usr/lib/ endef define Package/unbound/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) \ $(PKG_INSTALL_DIR)/usr/sbin/unbound \ $(PKG_INSTALL_DIR)/usr/sbin/unbound-checkconf \ $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/etc/unbound $(INSTALL_CONF) \ $(PKG_INSTALL_DIR)/etc/unbound/unbound.conf \ $(1)/etc/unbound/ $(INSTALL_CONF) ./files/root.key $(1)/etc/unbound/ $(INSTALL_CONF) ./files/named.cache $(1)/etc/unbound/ $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/unbound.init $(1)/etc/init.d/unbound endef define Package/unbound-anchor/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/unbound-anchor $(1)/usr/sbin/ endef define Package/unbound-control/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/unbound-control $(1)/usr/sbin/ endef define Package/unbound-control-setup/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/unbound-control-setup $(1)/usr/sbin/ endef define Package/unbound-host/install $(INSTALL_DIR) $(1)/usr/sbin $(CP) $(PKG_INSTALL_DIR)/usr/sbin/unbound-host $(1)/usr/sbin/ endef define Package/libunbound/install $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunbound.so.* $(1)/usr/lib/ endef $(eval $(call BuildPackage,unbound)) $(eval $(call BuildPackage,unbound-anchor)) $(eval $(call BuildPackage,unbound-control)) $(eval $(call BuildPackage,unbound-control-setup)) $(eval $(call BuildPackage,unbound-host)) $(eval $(call BuildPackage,libunbound)) |