From owner-svn-ports-head@FreeBSD.ORG Sun May 19 14:27:58 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 21A8599C; Sun, 19 May 2013 14:27:58 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0275CBEC; Sun, 19 May 2013 14:27:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4JERvYb096588; Sun, 19 May 2013 14:27:57 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4JERu07096584; Sun, 19 May 2013 14:27:56 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201305191427.r4JERu07096584@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 May 2013 14:27:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318527 - in head/dns/powerdns-recursor: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 May 2013 14:27:58 -0000 Author: rakuco Date: Sun May 19 14:27:56 2013 New Revision: 318527 URL: http://svnweb.freebsd.org/changeset/ports/318527 Log: Update to 3.5.1. Changelog is here: http://doc.powerdns.com/html/changelog.html#changelog-recursor-3.5.1 Also pet the Makefile: - Change ${LOCALBASE} to ${PREFIX} where applicable - Fix overwrite of recursor.conf by changing to bsd.port.pre/post.mk (and thus fixing ${PREFIX}) PR: ports/178340 Submitted by: Ralf van der Enden Approved by: Sten Spans (maintainer) Modified: head/dns/powerdns-recursor/Makefile head/dns/powerdns-recursor/distinfo head/dns/powerdns-recursor/files/patch-makefile head/dns/powerdns-recursor/files/patch-manpages Modified: head/dns/powerdns-recursor/Makefile ============================================================================== --- head/dns/powerdns-recursor/Makefile Sun May 19 14:17:52 2013 (r318526) +++ head/dns/powerdns-recursor/Makefile Sun May 19 14:27:56 2013 (r318527) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= powerdns-recursor -PORTVERSION= 3.3 +PORTVERSION= 3.5.1 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ \ http://mirrors.evolva.ro/powerdns.com/releases/ @@ -22,14 +22,16 @@ OPTIONS_DEFAULT= SETUID SETUID_DESC= Run as pdns_recursor user STATIC_DESC= Build static binaries -CXXFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CXXFLAGS+= -I${PREFIX}/include +LDFLAGS+= -L${PREFIX}/lib MAN8= rec_control.8 pdns_recursor.8 SUB_FILES= pkg-message .include +.include + .if ${ARCH} == "sparc64" BROKEN= Does not compile on sparc64 .endif @@ -46,8 +48,8 @@ GROUPS= pdns USE_LUA=5.1 LUA_COMPS=lua MAKE_ENV+=LUA=1 -MAKE_ENV+=LUA_CPPFLAGS_CONFIG=-I${LOCALBASE}/include/lua51 -MAKE_ENV+="LUA_LIBS_CONFIG=-L${LOCALBASE}/lib/lua51/ -llua" +MAKE_ENV+=LUA_CPPFLAGS_CONFIG=-I${PREFIX}/include/lua51 +MAKE_ENV+="LUA_LIBS_CONFIG=-L${PREFIX}/lib/lua51/ -llua" .endif .if ${PORT_OPTIONS:MSTATIC} @@ -78,4 +80,4 @@ post-install: @${INSTALL_MAN} ${WRKSRC}/*.8 ${PREFIX}/man/man8/ @${CAT} ${PKGMESSAGE} -.include +.include Modified: head/dns/powerdns-recursor/distinfo ============================================================================== --- head/dns/powerdns-recursor/distinfo Sun May 19 14:17:52 2013 (r318526) +++ head/dns/powerdns-recursor/distinfo Sun May 19 14:27:56 2013 (r318527) @@ -1,2 +1,2 @@ -SHA256 (pdns-recursor-3.3.tar.bz2) = 7b62d97f2bb02bb0ba366dabb5e504338b949a572b9062ec2198012fc3b525bc -SIZE (pdns-recursor-3.3.tar.bz2) = 145785 +SHA256 (pdns-recursor-3.5.1.tar.bz2) = 30655996d1963e259d4fc8648184031bf9cb83f64510d0b00539d3ce698b2824 +SIZE (pdns-recursor-3.5.1.tar.bz2) = 176413 Modified: head/dns/powerdns-recursor/files/patch-makefile ============================================================================== --- head/dns/powerdns-recursor/files/patch-makefile Sun May 19 14:17:52 2013 (r318526) +++ head/dns/powerdns-recursor/files/patch-makefile Sun May 19 14:27:56 2013 (r318527) @@ -27,8 +27,8 @@ $(DESTDIR)/$(SBINDIR)/pdns_recursor --config > $(DESTDIR)/$(CONFIGDIR)/recursor.conf-dist - -mkdir -p $(DESTDIR)/usr/share/man/man1 - cp pdns_recursor.1 rec_control.1 $(DESTDIR)/usr/share/man/man1 -+ mv pdns_recursor.1 pdns_recursor.8 -+ mv rec_control.1 rec_control.8 ++ cp pdns_recursor.1 pdns_recursor.8 ++ cp rec_control.1 rec_control.8 $(OS_SPECIFIC_INSTALL) clean: binclean Modified: head/dns/powerdns-recursor/files/patch-manpages ============================================================================== --- head/dns/powerdns-recursor/files/patch-manpages Sun May 19 14:17:52 2013 (r318526) +++ head/dns/powerdns-recursor/files/patch-manpages Sun May 19 14:27:56 2013 (r318527) @@ -1,58 +1,58 @@ ---- pdns_recursor.1.orig 2010-09-21 18:22:09.000000000 +0200 -+++ pdns_recursor.1 2010-09-27 09:24:15.000000000 +0200 +--- rec_control.1.orig 2013-04-15 09:40:40.000000000 +0200 ++++ rec_control.1 2013-04-16 20:20:23.142475518 +0200 @@ -7,7 +7,7 @@ - .\" Source: [FIXME: source] + .\" Source: \ \& 3.0 .\" Language: English .\" --.TH "PDNS_RECURSOR" "1" "02/10/2010" "[FIXME: source]" "[FIXME: manual]" -+.TH "PDNS_RECURSOR" "8" "02/10/2010" "[FIXME: source]" "[FIXME: manual]" +-.TH "REC_CONTROL" "1" "05/03/2013" "\ \& 3\&.0" "\ \&" ++.TH "REC_CONTROL" "8" "05/03/2013" "\ \& 3\&.0" "\ \&" .\" ----------------------------------------------------------------- - .\" * set default formatting + .\" * Define some portability stuff .\" ----------------------------------------------------------------- -@@ -25,7 +25,7 @@ - \fIpdns_recursor\fR [\-\-daemon] [\-\-local\-address] [\-\-help, \-h] [\-\-allow\-from] +@@ -34,7 +34,7 @@ + \fIrec_control\fR [\-\-help] [\-\-socket\-dir] [\-\-socket\-pid] command \&.\&. .SH "DESCRIPTION" .sp --pdns_recursor(1) is a high performance, simple and secure recursing nameserver\&. It currently powers over two million internet connections\&. -+pdns_recursor(8) is a high performance, simple and secure recursing nameserver\&. It currently powers over two million internet connections\&. - .sp - The recursor is configured via a configuration file, but each item in that file can be overridden on the command line\&. +-rec_control(1) allows the operator to control a running instance of the pdns_recursor\&. ++rec_control(8) allows the operator to control a running instance of the pdns_recursor\&. .sp -@@ -264,7 +264,7 @@ + The commands that can be passed to the recursor are described on \m[blue]\fBhttp://doc\&.powerdns\&.com/rec\-control\&.html\fR\m[] + .SH "EXAMPLES" +@@ -142,7 +142,7 @@ Website: \m[blue]\fBhttp://wiki\&.powerdns\&.com\fR\m[], \m[blue]\fBhttp://www\&.powerdns\&.com\fR\m[] .SH "SEE ALSO" .sp --rec_control(1) -+rec_control(8) +-pdns_recursor(1) ++pdns_recursor(8) .SH "COPYING" .sp Copyright \(co 2006 PowerDNS\&.COM BV\&. Free use of this software is granted under the terms of the GNU General Public License (GPL) version 2\&. ---- rec_control.1.orig 2010-09-21 18:22:09.000000000 +0200 -+++ rec_control.1 2010-09-27 09:22:54.000000000 +0200 +--- pdns_recursor.1.orig 2013-05-03 10:17:59.000000000 +0200 ++++ pdns_recursor.1 2013-05-03 18:41:34.355622682 +0200 @@ -7,7 +7,7 @@ - .\" Source: [FIXME: source] + .\" Source: \ \& 3.0 .\" Language: English .\" --.TH "REC_CONTROL" "1" "08/30/2010" "[FIXME: source]" "[FIXME: manual]" -+.TH "REC_CONTROL" "8" "08/30/2010" "[FIXME: source]" "[FIXME: manual]" +-.TH "PDNS_RECURSOR" "1" "05/03/2013" "\ \& 3\&.0" "\ \&" ++.TH "PDNS_RECURSOR" "8" "05/03/2013" "\ \& 3\&.0" "\ \&" .\" ----------------------------------------------------------------- - .\" * set default formatting + .\" * Define some portability stuff .\" ----------------------------------------------------------------- -@@ -25,7 +25,7 @@ - \fIrec_control\fR [\-\-help] [\-\-socket\-dir] [\-\-socket\-pid] command \&.\&. +@@ -34,7 +34,7 @@ + \fIpdns_recursor\fR [\-\-daemon] [\-\-local\-address] [\-\-help, \-h] [\-\-allow\-from] .SH "DESCRIPTION" .sp --rec_control(1) allows the operator to control a running instance of the pdns_recursor\&. -+rec_control(8) allows the operator to control a running instance of the pdns_recursor\&. +-pdns_recursor(1) is a high performance, simple and secure recursing nameserver\&. It currently powers over two million internet connections\&. ++pdns_recursor(8) is a high performance, simple and secure recursing nameserver\&. It currently powers over two million internet connections\&. .sp - The commands that can be passed to the recursor are described on \m[blue]\fBhttp://doc\&.powerdns\&.com/rec\-control\&.html\fR\m[] - .SH "EXAMPLES" -@@ -133,7 +133,7 @@ + The recursor is configured via a configuration file, but each item in that file can be overridden on the command line\&. + .sp +@@ -273,7 +273,7 @@ Website: \m[blue]\fBhttp://wiki\&.powerdns\&.com\fR\m[], \m[blue]\fBhttp://www\&.powerdns\&.com\fR\m[] .SH "SEE ALSO" .sp --pdns_recursor(1) -+pdns_recursor(8) +-rec_control(1) ++rec_control(8) .SH "COPYING" .sp Copyright \(co 2006 PowerDNS\&.COM BV\&. Free use of this software is granted under the terms of the GNU General Public License (GPL) version 2\&.