mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 16:07:42 +00:00
bind: version bump to 9.6-ESV-R5 and server option
Bump to version 9.6-ESV-R5. Also add the server option in case users just want the tools. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
2da2281cbc
commit
c36b5d89c5
@ -1,5 +1,6 @@
|
|||||||
config BR2_PACKAGE_BIND
|
config BR2_PACKAGE_BIND
|
||||||
bool "bind"
|
bool "bind"
|
||||||
|
depends on BR2_INET_IPV6
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
help
|
help
|
||||||
BIND (Berkeley Internet Name Domain) is an implementation of
|
BIND (Berkeley Internet Name Domain) is an implementation of
|
||||||
@ -21,11 +22,20 @@ config BR2_PACKAGE_BIND
|
|||||||
|
|
||||||
http://www.isc.org/sw/bind/
|
http://www.isc.org/sw/bind/
|
||||||
|
|
||||||
|
if BR2_PACKAGE_BIND
|
||||||
|
|
||||||
|
config BR2_PACKAGE_BIND_SERVER
|
||||||
|
bool "Install server components"
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
Install server components (named, lwresd)
|
||||||
|
|
||||||
config BR2_PACKAGE_BIND_TOOLS
|
config BR2_PACKAGE_BIND_TOOLS
|
||||||
bool "Install tools"
|
bool "Install tools"
|
||||||
depends on BR2_PACKAGE_BIND
|
|
||||||
help
|
help
|
||||||
Install tools (host, nslookup, dig, nsupdate)
|
Install tools (host, nslookup, dig, nsupdate)
|
||||||
|
|
||||||
comment "bind requires a toolchain with LARGEFILE support"
|
endif
|
||||||
depends on !BR2_LARGEFILE
|
|
||||||
|
comment "bind requires a toolchain with LARGEFILE and IPV6 support"
|
||||||
|
depends on !(BR2_LARGEFILE || BR2_INET_IPV6)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
BIND_VERSION = 9.6-ESV-R4
|
BIND_VERSION = 9.6-ESV-R5
|
||||||
BIND_SITE = ftp://ftp.isc.org/isc/bind9/$(BIND_VERSION)
|
BIND_SITE = ftp://ftp.isc.org/isc/bind9/$(BIND_VERSION)
|
||||||
BIND_MAKE = $(MAKE1)
|
BIND_MAKE = $(MAKE1)
|
||||||
BIND_TARGET_SBINS = lwresd named named-checkconf named-checkzone
|
BIND_TARGET_SBINS = lwresd named named-checkconf named-checkzone
|
||||||
@ -40,17 +40,25 @@ endef
|
|||||||
|
|
||||||
BIND_POST_INSTALL_TARGET_HOOKS += BIND_TARGET_INSTALL_FIXES
|
BIND_POST_INSTALL_TARGET_HOOKS += BIND_TARGET_INSTALL_FIXES
|
||||||
|
|
||||||
|
define BIND_TARGET_REMOVE_SERVER
|
||||||
|
rm -rf $(addprefix $(TARGET_DIR)/usr/sbin/, $(BIND_TARGET_SBINS))
|
||||||
|
endef
|
||||||
|
|
||||||
define BIND_TARGET_REMOVE_TOOLS
|
define BIND_TARGET_REMOVE_TOOLS
|
||||||
rm -rf $(addprefix $(TARGET_DIR)/usr/bin/, $(BIND_TARGET_BINS))
|
rm -rf $(addprefix $(TARGET_DIR)/usr/bin/, $(BIND_TARGET_BINS))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
ifneq ($(BR2_PACKAGE_BIND_SERVER),y)
|
||||||
|
BIND_POST_INSTALL_TARGET_HOOKS += BIND_TARGET_REMOVE_SERVER
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq ($(BR2_PACKAGE_BIND_TOOLS),y)
|
ifneq ($(BR2_PACKAGE_BIND_TOOLS),y)
|
||||||
BIND_POST_INSTALL_TARGET_HOOKS += BIND_TARGET_REMOVE_TOOLS
|
BIND_POST_INSTALL_TARGET_HOOKS += BIND_TARGET_REMOVE_TOOLS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define BIND_UNINSTALL_TARGET_CMDS
|
define BIND_UNINSTALL_TARGET_CMDS
|
||||||
rm -rf $(addprefix $(TARGET_DIR)/usr/sbin/, $(BIND_TARGET_SBINS))
|
$(BIND_TARGET_REMOVE_SERVER)
|
||||||
rm -rf $(addprefix $(TARGET_DIR)/usr/bin/, $(BIND_TARGET_BINS))
|
$(BIND_TARGET_REMOVE_TOOLS)
|
||||||
rm -rf $(addprefix $(TARGET_DIR)/usr/lib/, $(BIND_TARGET_LIBS))
|
rm -rf $(addprefix $(TARGET_DIR)/usr/lib/, $(BIND_TARGET_LIBS))
|
||||||
rm -f $(TARGET_DIR)/etc/init.d/S81named
|
rm -f $(TARGET_DIR)/etc/init.d/S81named
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user