unbound: improve dependencies for okpg

Signed-off-by: Eric Luehrsen <ericluehrsen@gmail.com>
cherry pick 6505154a74
This commit is contained in:
Eric Luehrsen 2020-01-17 21:42:40 -05:00
parent 3ab34b50db
commit bc4f3c11cb

View file

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=unbound PKG_NAME:=unbound
PKG_VERSION:=1.9.6 PKG_VERSION:=1.9.6
PKG_RELEASE:=2 PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://nlnetlabs.nl/downloads/unbound PKG_SOURCE_URL:=https://nlnetlabs.nl/downloads/unbound
@ -40,7 +40,7 @@ endef
define Package/unbound-daemon define Package/unbound-daemon
$(call Package/unbound/Default) $(call Package/unbound/Default)
TITLE+= (daemon, light traffic) TITLE+= (daemon, light traffic)
DEPENDS+= +libunbound DEPENDS+= +libunbound-light
VARIANT:=light VARIANT:=light
endef endef
@ -63,17 +63,18 @@ define Package/unbound-daemon-heavy/description
'libpthread' to better handle large networks with heavy query loads. 'libpthread' to better handle large networks with heavy query loads.
endef endef
define Package/libunbound define Package/libunbound-light
$(call Package/unbound/Default) $(call Package/unbound/Default)
SECTION:=libs SECTION:=libs
CATEGORY:=Libraries CATEGORY:=Libraries
SUBMENU:=Networking SUBMENU:=Networking
TITLE+= (library, light traffic) TITLE+= (library, light traffic)
VARIANT:=light VARIANT:=light
PROVIDES:=libunbound
DEFAULT_VARIANT:=1 DEFAULT_VARIANT:=1
endef endef
define Package/libunbound/description define Package/libunbound-light/description
This package contains the Unbound shared library with basic includes This package contains the Unbound shared library with basic includes
necessary to meet the needs of UCI/LuCI configuration optoins. necessary to meet the needs of UCI/LuCI configuration optoins.
endef endef
@ -219,12 +220,12 @@ endef
Package/unbound-daemon-heavy/install = $(Package/unbound-daemon/install) Package/unbound-daemon-heavy/install = $(Package/unbound-daemon/install)
define Package/libunbound/install define Package/libunbound-light/install
$(INSTALL_DIR) $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libunbound.so.* $(1)/usr/lib/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunbound.so.* $(1)/usr/lib/
endef endef
Package/libunbound-heavy/install = $(Package/libunbound/install) Package/libunbound-heavy/install = $(Package/libunbound-light/install)
define Package/unbound-anchor/install define Package/unbound-anchor/install
$(INSTALL_DIR) $(1)/usr/sbin $(INSTALL_DIR) $(1)/usr/sbin
@ -253,7 +254,7 @@ endef
$(eval $(call BuildPackage,unbound-daemon)) $(eval $(call BuildPackage,unbound-daemon))
$(eval $(call BuildPackage,unbound-daemon-heavy)) $(eval $(call BuildPackage,unbound-daemon-heavy))
$(eval $(call BuildPackage,libunbound)) $(eval $(call BuildPackage,libunbound-light))
$(eval $(call BuildPackage,libunbound-heavy)) $(eval $(call BuildPackage,libunbound-heavy))
$(eval $(call BuildPackage,unbound-anchor)) $(eval $(call BuildPackage,unbound-anchor))
$(eval $(call BuildPackage,unbound-checkconf)) $(eval $(call BuildPackage,unbound-checkconf))