Index: head/dns/powerdns-recursor/Makefile =================================================================== --- head/dns/powerdns-recursor/Makefile (revision 450631) +++ head/dns/powerdns-recursor/Makefile (revision 450632) @@ -1,58 +1,58 @@ # Created by: sten@blinkenlights.nl # $FreeBSD$ PORTNAME= recursor PORTVERSION= 4.0.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ PKGNAMEPREFIX= powerdns- DISTNAME= pdns-${PORTNAME}-${PORTVERSION} MAINTAINER= tremere@cainites.net COMMENT= Advanced DNS recursor LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs LIB_DEPENDS= libboost_context.so:devel/boost-libs BROKEN_armv6= fails to compile: use of overloaded operator << is ambiguous BROKEN_sparc64= fails to compile: json11.cpp: undefined reference to std::__throw_out_of_range_fmt BROKEN_powerpc64= fails to compile: dnslabeltext.cc: undefined reference to std::__cxx11::basic_string USES= compiler:c++11-lib cpe gmake localbase pkgconfig ssl tar:bzip2 GNU_CONFIGURE= YES CXXFLAGS+= -D_GLIBCXX_USE_C99 CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/pdns CPE_VENDOR= powerdns USE_RC_SUBR= pdns-recursor OPTIONS_DEFINE= OPTALGO SETUID OPTIONS_DEFAULT= LUA SETUID OPTIONS_RADIO= LUA_RG OPTIONS_RADIO_LUA_RG= LUA LUAJIT LUAJIT_DESC= Enable LuaJIT LUA_RG_DESC= Lua Engine OPTALGO_DESC= Enable optional algorithms (12 & 15) SETUID_DESC= Run as pdns_recursor user LUA_CONFIGURE_WITH= lua LUA_USES= lua LUAJIT_CONFIGURE_WITH= luajit LUAJIT_LIB_DEPENDS= libluajit-5.1.so.2:lang/luajit OPTALGO_CONFIGURE_ON= --enable-botan1.10 \ --enable-libsodium OPTALGO_LIB_DEPENDS= libbotan-1.10.so:security/botan110 \ libsodium.so:security/libsodium SETUID_VARS= USERS=pdns_recursor GROUPS=pdns SETUID_EXTRA_PATCHES= ${PATCHDIR}/extrapatch-setuid SUB_FILES= pkg-message .include Index: head/dns/powerdns-recursor/files/patch-botan110signers.cc =================================================================== --- head/dns/powerdns-recursor/files/patch-botan110signers.cc (nonexistent) +++ head/dns/powerdns-recursor/files/patch-botan110signers.cc (revision 450632) @@ -0,0 +1,15 @@ +https://github.com/PowerDNS/pdns/pull/5498/commits/0f8f34997afc2c3609b2f3df72ca808940d2a778#diff-a69f1deeeb9a0d7ebabc200a4c24c9f9L184 +--- botan110signers.cc.orig 2017-07-04 15:43:07 UTC ++++ botan110signers.cc +@@ -181,8 +181,9 @@ std::string GOSTDNSCryptoKeyEngine::getP + + std::string GOSTDNSCryptoKeyEngine::getPublicKeyString() const + { +- const BigInt&x =d_key->public_point().get_affine_x(); +- const BigInt&y =d_key->public_point().get_affine_y(); ++ std::shared_ptr pk = d_pubkey ? d_pubkey : d_key; ++ const BigInt&x =pk->public_point().get_affine_x(); ++ const BigInt&y =pk->public_point().get_affine_y(); + + size_t part_size = std::max(x.bytes(), y.bytes()); + Property changes on: head/dns/powerdns-recursor/files/patch-botan110signers.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property