|
|
@ -1,21 +1,22 @@ |
|
|
|
include $(TOPDIR)/rules.mk |
|
|
|
|
|
|
|
PKG_NAME:=pdns-recursor |
|
|
|
PKG_VERSION:=4.2.2 |
|
|
|
PKG_VERSION:=4.3.4 |
|
|
|
PKG_RELEASE:=1 |
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
|
|
|
PKG_SOURCE_URL:=https://downloads.powerdns.com/releases/ |
|
|
|
PKG_HASH:=9502de8ab7dde3fe5ecb3dea0f6dd8f9c96ca5e09b06f3d58d2f123abf6f7204 |
|
|
|
PKG_HASH:=38dd6935830d9e9f14f6cb53f88914bab09e50e57ac8aed5b5b9a4386d8328d1 |
|
|
|
|
|
|
|
PKG_MAINTAINER:=James Taylor <james@jtaylor.id.au> |
|
|
|
PKG_LICENCE:=GPL-2.0-only |
|
|
|
PKG_LICENCE_FILES:=COPYING |
|
|
|
PKG_CPE_ID:=cpe:/a:powerdns:recursor |
|
|
|
|
|
|
|
PKG_INSTALL:=1 |
|
|
|
PKG_FIXUP:=autoreconf |
|
|
|
PKG_INSTALL:=1 |
|
|
|
PKG_BUILD_PARALLEL:=1 |
|
|
|
PKG_BUILD_DEPENDS:=protobuf/host |
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk |
|
|
|
|
|
|
@ -25,7 +26,7 @@ define Package/pdns-recursor |
|
|
|
SUBMENU:=IP Addresses and Names |
|
|
|
USERID:=pdns:pdns |
|
|
|
TITLE:=PowerDNS Recursor |
|
|
|
DEPENDS:=+boost +boost-context +libatomic +liblua +libopenssl +protobuf |
|
|
|
DEPENDS:=+boost +boost-context +boost-filesystem +libatomic +liblua +libopenssl +protobuf |
|
|
|
URL:=https://www.powerdns.com/recursor.html |
|
|
|
endef |
|
|
|
|
|
|
@ -39,7 +40,7 @@ define Package/pdns-recursor/conffiles |
|
|
|
/etc/init.d/pdns-recursor |
|
|
|
endef |
|
|
|
|
|
|
|
CONFIGURE_ARGS+= \
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--sysconfdir=/etc/powerdns \
|
|
|
|
--with-lua=lua \
|
|
|
|
--without-libcap \
|
|
|
@ -48,6 +49,10 @@ CONFIGURE_ARGS+= \ |
|
|
|
--without-net-snmp \
|
|
|
|
--disable-silent-rules |
|
|
|
|
|
|
|
CONFIGURE_VARS += \
|
|
|
|
boost_cv_lib_context=yes \
|
|
|
|
boost_cv_lib_context_LIBS=-lboost_context |
|
|
|
|
|
|
|
define Package/pdns-recursor/install |
|
|
|
$(INSTALL_DIR) $(1)/etc/powerdns |
|
|
|
$(INSTALL_CONF) ./files/recursor.conf-dist $(1)/etc/powerdns/ |
|
|
|