Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 4 Dec 2012 20:19:22 +0000 (UTC)
From:      Wesley Shields <wxs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r308266 - in head/dns/powerdns-devel: . files
Message-ID:  <201212042019.qB4KJMiU047780@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wxs
Date: Tue Dec  4 20:19:22 2012
New Revision: 308266
URL: http://svnweb.freebsd.org/changeset/ports/308266

Log:
  Update to 3.2.r1
  Add a patch to build with clang.
  
  PR:		ports/173861
  Submitted by:	Ralf van der Enden <tremere@cainites.net> (maintainer)
  Feature safe:	yes

Added:
  head/dns/powerdns-devel/files/patch-pdns__dnsreplay.cc   (contents, props changed)
  head/dns/powerdns-devel/files/patch-pdns_pdns_backends_bind_binddnssec_cc   (contents, props changed)
Deleted:
  head/dns/powerdns-devel/files/patch-pdns_Makefile_in
Modified:
  head/dns/powerdns-devel/Makefile   (contents, props changed)
  head/dns/powerdns-devel/distinfo   (contents, props changed)

Modified: head/dns/powerdns-devel/Makefile
==============================================================================
--- head/dns/powerdns-devel/Makefile	Tue Dec  4 20:17:47 2012	(r308265)
+++ head/dns/powerdns-devel/Makefile	Tue Dec  4 20:19:22 2012	(r308266)
@@ -1,8 +1,8 @@
 # $FreeBSD$
 
 PORTNAME=	powerdns
-PORTVERSION=	3.1.r3
-PORTREVISION?=	1
+PORTVERSION=	3.2.r1
+PORTREVISION?=	0
 PORTEPOCH=	1
 CATEGORIES=	dns ipv6
 MASTER_SITES=	http://powerdnssec.org/downloads/
@@ -14,7 +14,6 @@ COMMENT=	An advanced DNS server with mul
 
 LICENSE=	GPLv2
 
-BUILD_DEPENDS=	bjam:${PORTSDIR}/devel/boost-jam
 LIB_DEPENDS=	boost_serialization.[4-9]:${PORTSDIR}/devel/boost-libs
 #		botan.0:${PORTSDIR}/security/botan
 
@@ -35,7 +34,6 @@ CONFIGURE_ARGS=	--with-modules="" \
 		--with-dynmodules="pipe ${CONFIGURE_MODULES}" \
 		--sysconfdir="${PREFIX}/etc/pdns" \
 		--with-boost="${LOCALBASE}" \
-#		--enable-botan1.8
 SCRIPTS_ENV=	WRKDIRPREFIX="${WRKDIRPREFIX}" \
 		CURDIR2="${.CURDIR}" \
 		MKDIR="${MKDIR}" \

Modified: head/dns/powerdns-devel/distinfo
==============================================================================
--- head/dns/powerdns-devel/distinfo	Tue Dec  4 20:17:47 2012	(r308265)
+++ head/dns/powerdns-devel/distinfo	Tue Dec  4 20:19:22 2012	(r308266)
@@ -1,2 +1,2 @@
-SHA256 (pdns-3.1-rc3.tar.gz) = 82d7cd24b50f55af76ff6f81da2c330d1e1d3b56157ef2801188c5a002649797
-SIZE (pdns-3.1-rc3.tar.gz) = 1268629
+SHA256 (pdns-3.2-rc1.tar.gz) = c450828c042e6c893fb8f5232b67f7808f9cbb0d09296aa11b331cfe9ed6a7dd
+SIZE (pdns-3.2-rc1.tar.gz) = 1277305

Added: head/dns/powerdns-devel/files/patch-pdns__dnsreplay.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/powerdns-devel/files/patch-pdns__dnsreplay.cc	Tue Dec  4 20:19:22 2012	(r308266)
@@ -0,0 +1,10 @@
+--- ./pdns/dnsreplay.cc.orig	2012-12-04 13:37:13.000000000 -0500
++++ ./pdns/dnsreplay.cc	2012-12-04 13:37:43.000000000 -0500
+@@ -489,7 +489,6 @@
+ 
+   QuestionData qd;
+   try {
+-    dnsheader* dh=(dnsheader*)pr.d_payload;
+     if(!dh->qr) {
+       qd.d_assignedID = s_idmanager.peakID();
+       uint16_t tmp=dh->id;

Added: head/dns/powerdns-devel/files/patch-pdns_pdns_backends_bind_binddnssec_cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/dns/powerdns-devel/files/patch-pdns_pdns_backends_bind_binddnssec_cc	Tue Dec  4 20:19:22 2012	(r308266)
@@ -0,0 +1,16 @@
+--- pdns/backends/bind/binddnssec.cc	(revision 2874)
++++ pdns/backends/bind/binddnssec.cc	(revision 2888)
+@@ -29,6 +29,4 @@
+   if(!getArg("dnssec-db").empty())
+     throw runtime_error("bind-dnssec-db requires building PowerDNS with SQLite3");
+-
+-  d_dnssecdb->setLog(::arg().mustDo("query-logging"));
+ }
+ 
+@@ -80,4 +78,6 @@
+     throw runtime_error("Error opening DNSSEC database in BIND backend: "+se.txtReason());
+   }
++
++  d_dnssecdb->setLog(::arg().mustDo("query-logging"));
+ }
+ 
\ No newline at end of file



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212042019.qB4KJMiU047780>