new file mode 100644
@@ -0,0 +1,17 @@
+config BR2_PACKAGE_KEA
+
+ bool "kea"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ depends on BR2_USE_MMU
+ select BR2_PACKAGE_BOOST
+ select BR2_PACKAGE_OPENSSL
+ select BR2_PACKAGE_LOG4CPLUS
+
+ help
+ DHCP implementation from Internet Systems Consortium, Inc. that features fully
+ functional DHCPv4, DHCPv6 and Dynamic DNS servers.
+ Both DHCP servers fully support server discovery, address assignment, renewal,
+ rebinding and release. The DHCPv6 server supports prefix delegation. Both
+ servers support DNS Update mechanism, using stand-alone DDNS daemon
+
+ https://www.isc.org/kea
new file mode 100644
@@ -0,0 +1,3 @@
+# Locally computed - sha256
+sha256 8a50b63103734b59c3b8619ccd6766d2dfee3f02e3a5f9f3abc1cd55f70fa424 kea-2.6.2.tar.gz
+sha256 2768ea1cbc79ac048f0c34c5cb50cf7e7d4c13a83337ebfa147a700b876431d5 COPYING
new file mode 100644
@@ -0,0 +1,22 @@
+################################################################################
+#
+# kea
+#
+################################################################################
+
+KEA_VERSION = 2.6.2
+KEA_SOURCE = kea-$(KEA_VERSION).tar.gz
+KEA_SITE = https://dl.cloudsmith.io/public/isc/kea-2-6/raw/versions/$(KEA_VERSION)
+KEA_LICENSE = MPL 2.0
+KEA_LICENSE_FILES = COPYING
+
+KEA_DEPENDENCIES = host-pkgconf openssl boost log4cplus
+
+KEA_CONF_OPTS = "--with-openssl=$(STAGING_DIR)/usr"
+KEA_CONF_OPTS = "--with-log4cplus=$(STAGING_DIR)/usr"
+#KEA_CONF_OPTS = "--with-boost-include=$(STAGING_DIR)/usr"
+
+KEA_INSTALL_STAGING = YES
+KEA_INSTALL_TARGET = YES
+
+$(eval $(autotools-package))