1################################################################################ 2# 3# bird 4# 5################################################################################ 6 7BIRD_VERSION = 2.0.8 8BIRD_SITE = ftp://bird.network.cz/pub/bird 9BIRD_LICENSE = GPL-2.0+ 10BIRD_LICENSE_FILES = README 11BIRD_CPE_ID_VENDOR = nic 12BIRD_SELINUX_MODULES = bird 13BIRD_DEPENDENCIES = host-flex host-bison 14BIRD_AUTORECONF = YES 15 16ifeq ($(BR2_PACKAGE_BIRD_CLIENT),y) 17BIRD_CONF_OPTS += --enable-client 18BIRD_DEPENDENCIES += ncurses readline 19else 20BIRD_CONF_OPTS += --disable-client 21endif 22 23ifeq ($(BR2_PACKAGE_LIBSSH),y) 24BIRD_CONF_OPTS += --enable-libssh 25BIRD_DEPENDENCIES += libssh 26else 27BIRD_CONF_OPTS += --disable-libssh 28endif 29 30BIRD_PROTOCOLS = \ 31 $(if $(BR2_PACKAGE_BIRD_BFD),bfd) \ 32 $(if $(BR2_PACKAGE_BIRD_BABEL),babel) \ 33 $(if $(BR2_PACKAGE_BIRD_BGP),bgp) \ 34 $(if $(BR2_PACKAGE_BIRD_MRT),mrt) \ 35 $(if $(BR2_PACKAGE_BIRD_OSPF),ospf) \ 36 $(if $(BR2_PACKAGE_BIRD_PERF),perf) \ 37 $(if $(BR2_PACKAGE_BIRD_PIPE),pipe) \ 38 $(if $(BR2_PACKAGE_BIRD_RADV),radv) \ 39 $(if $(BR2_PACKAGE_BIRD_RIP),rip) \ 40 $(if $(BR2_PACKAGE_BIRD_RPKI),rpki) \ 41 $(if $(BR2_PACKAGE_BIRD_STATIC),static) 42 43BIRD_CONF_OPTS += --with-protocols=$(subst $(space),$(comma),$(strip $(BIRD_PROTOCOLS))) 44 45$(eval $(autotools-package)) 46