From owner-svn-ports-head@FreeBSD.ORG Wed Dec 17 14:36:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86A51A8F; Wed, 17 Dec 2014 14:36:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59054692; Wed, 17 Dec 2014 14:36:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHEa3ki017952; Wed, 17 Dec 2014 14:36:03 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBHEa2YI017949; Wed, 17 Dec 2014 14:36:02 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201412171436.sBHEa2YI017949@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Wed, 17 Dec 2014 14:36:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374850 - head/dns/gdnsd2 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.18-1 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: Wed, 17 Dec 2014 14:36:03 -0000 Author: zi Date: Wed Dec 17 14:36:01 2014 New Revision: 374850 URL: https://svnweb.freebsd.org/changeset/ports/374850 QAT: https://qat.redports.org/buildarchive/r374850/ Log: - Mark IGNORE on 9.0-9.2 due to build failures - Remove trailing whitespace from pkg-descr - Bump PORTREVISION Modified: head/dns/gdnsd2/Makefile head/dns/gdnsd2/pkg-descr Modified: head/dns/gdnsd2/Makefile ============================================================================== --- head/dns/gdnsd2/Makefile Wed Dec 17 14:32:59 2014 (r374849) +++ head/dns/gdnsd2/Makefile Wed Dec 17 14:36:01 2014 (r374850) @@ -3,6 +3,7 @@ PORTNAME= gdnsd PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= https://github.com/blblack/gdnsd/releases/download/v${PORTVERSION}/ \ http://mirrors.rit.edu/zi/ \ @@ -42,6 +43,12 @@ URCU_DESC= Read-Copy-Update Support (Fa URCU_CONFIGURE_WITH= urcu URCU_LIB_DEPENDS= liburcu.so:${PORTSDIR}/sysutils/liburcu +.include + +.if (${OSVERSION} >= 900000 && ${OSVERSION} < 903000) +IGNORE= you must be running FreeBSD 9.3 or higher +.endif + post-patch: @${REINPLACE_CMD} -e 's|$${localstatedir}/lib/$${PACKAGE_NAME}|/var/db/${PORTNAME}|g' \ ${WRKSRC}/configure @@ -53,4 +60,4 @@ post-install: ${STAGEDIR}${PREFIX}/etc/gdnsd/zones \ ${STAGEDIR}/var/run/gdnsd -.include +.include Modified: head/dns/gdnsd2/pkg-descr ============================================================================== --- head/dns/gdnsd2/pkg-descr Wed Dec 17 14:32:59 2014 (r374849) +++ head/dns/gdnsd2/pkg-descr Wed Dec 17 14:36:01 2014 (r374850) @@ -1,13 +1,13 @@ gdnsd is an Authoritative-only DNS server. The initial g stands for Geographic, as gdnsd offers a plugin system for -geographic (or other sorts of) balancing, redirection, and -service-state-conscious failover. If you don't care about that feature, -it's still quite good at being a very fast, lean, and resilient +geographic (or other sorts of) balancing, redirection, and +service-state-conscious failover. If you don't care about that feature, +it's still quite good at being a very fast, lean, and resilient authoritative-only server for static DNS data. -gdnsd is written in C using libev and pthreads with a focus on high -performance, low latency service. It does not offer any form of caching or +gdnsd is written in C using libev and pthreads with a focus on high +performance, low latency service. It does not offer any form of caching or recursive service, and does not support DNSSEC. WWW: https://github.com/blblack/gdnsd/