N: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
F: package/angularjs/
+N: Ilias Apalodimas <apalos@gmail.com>
+F: package/keepalived/
+
N: James Knight <james.knight@rockwellcollins.com>
F: package/atkmm/
F: package/cairomm/
source "package/irssi/Config.in"
source "package/iw/Config.in"
source "package/janus-gateway/Config.in"
+ source "package/keepalived/Config.in"
source "package/kismet/Config.in"
source "package/knock/Config.in"
source "package/leafnode2/Config.in"
--- /dev/null
+config BR2_PACKAGE_KEEPALIVED
+ bool "keepalived"
+ depends on BR2_USE_MMU
+ depends on !BR2_STATIC_LIBS # uses libdl
+ select BR2_PACKAGE_OPENSSL
+ select BR2_PACKAGE_POPT
+ help
+ The main goal of the keepalived project is to add a strong &
+ robust keepalive facility to the Linux Virtual Server
+ project. It implements a multilayer TCP/IP stack
+ checks. Keepalived implements a framework based on three
+ family checks: Layer3, Layer4 & Layer5. This framework gives
+ the daemon the ability of checking a LVS server pool
+ states. Keepalived can be sumarize as a LVS driving daemon.
+
+ http://www.keepalived.org/
+
+comment "keepalived needs a toolchain w/ dynamic library"
+ depends on BR2_USE_MMU
+ depends on BR2_STATIC_LIBS
--- /dev/null
+# From http://www.keepalived.org/download.html
+md5 744025d57c7f065c42fe925b0283897e keepalived-1.3.2.tar.gz
+sha1 449f06dfce07e05c1ebd516d0545182e1416f264 keepalived-1.3.2.tar.gz
--- /dev/null
+################################################################################
+#
+# keepalived
+#
+################################################################################
+
+KEEPALIVED_VERSION = 1.3.2
+KEEPALIVED_SITE = http://www.keepalived.org/software
+KEEPALIVED_DEPENDENCIES = host-pkgconf openssl popt
+KEEPALIVED_LICENSE = GPLv2+
+KEEPALIVED_LICENSE_FILES = COPYING
+KEEPALIVED_CONF_OPTS += --disable-dbus
+
+ifeq ($(BR2_PACKAGE_LIBNL),y)
+KEEPALIVED_DEPENDENCIES += libnfnetlink
+endif
+
+ifeq ($(BR2_PACKAGE_IPSET),y)
+KEEPALIVED_DEPENDENCIES += ipset
+KEEPALIVED_CONF_OPTS += --enable-libipset
+else
+KEEPALIVED_CONF_OPTS += --disable-libipset
+endif
+
+ifeq ($(BR2_PACKAGE_IPTABLES),y)
+KEEPALIVED_DEPENDENCIES += iptables
+KEEPALIVED_CONF_OPTS += --enable-libiptc
+else
+KEEPALIVED_CONF_OPTS += --disable-libiptc
+endif
+
+$(eval $(autotools-package))