Skip to content

Commit

Permalink
pdns-recursor: Build rec-5.0.1, adding Rust dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Otto Moerbeek <otto@drijf.net>
  • Loading branch information
omoerbeek authored and Habbie committed Jan 12, 2024
1 parent 2c90f76 commit db869f7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
13 changes: 10 additions & 3 deletions net/pdns-recursor/Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=pdns-recursor
PKG_VERSION:=4.9.2
PKG_RELEASE:=1
PKG_VERSION:=5.0.1
PKG_RELEASE:=0

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://downloads.powerdns.com/releases/
PKG_HASH:=4cb8180458ecfb528a3d9a34ba2844b6cd2ed69ca1c461dde24a0ebd66829144
PKG_HASH:=70a3b0bfde350e94cdb0746b06d06e6d2f3dc0e171be3b12caef9f3c38468ca3

PKG_MAINTAINER:=Peter van Dijk <peter.van.dijk@powerdns.com>
PKG_LICENCE:=GPL-2.0-only
Expand All @@ -17,8 +17,12 @@ PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1

PKG_BUILD_DEPENDS:=rust/host

include $(INCLUDE_DIR)/package.mk

include ../../lang/rust/rust-values.mk

define Package/pdns-recursor
SECTION:=net
CATEGORY:=Network
Expand Down Expand Up @@ -52,6 +56,9 @@ CONFIGURE_ARGS += \
--enable-reproducible \
--disable-silent-rules

MAKE_VARS += RUSTC_TARGET_ARCH=$(RUSTC_TARGET_ARCH)
MAKE_VARS += RUST_TARGET=--target=$(RUSTC_TARGET_ARCH)

define Package/pdns-recursor/install
$(INSTALL_DIR) $(1)/etc/powerdns
$(INSTALL_CONF) ./files/recursor.conf-dist $(1)/etc/powerdns/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
--- a/Makefile.am
+++ b/Makefile.am
@@ -507,12 +507,6 @@ $(srcdir)/effective_tld_names.dat:
@@ -527,15 +527,6 @@ $(srcdir)/effective_tld_names.dat:
pubsuffix.cc: $(srcdir)/effective_tld_names.dat
$(AM_V_GEN)./mkpubsuffixcc

-## Config file
-sysconf_DATA = recursor.conf-dist
-sysconf_DATA = recursor.conf-dist recursor.yml-dist
-
-recursor.conf-dist: pdns_recursor
- $(AM_V_GEN)./pdns_recursor --config=default > $@
-
-recursor.yml-dist: pdns_recursor
- dir=$$(mktemp -d) && touch "$$dir/recursor.yml" && ./pdns_recursor --config-dir="$$dir" --config=default 2> /dev/null > $@ && rm "$$dir/recursor.yml" && rmdir "$$dir"
-
## Manpages
MANPAGES=pdns_recursor.1 \
Expand Down

0 comments on commit db869f7

Please sign in to comment.