From owner-svn-ports-head@FreeBSD.ORG Fri Oct 19 10:53:41 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C558A4F8; Fri, 19 Oct 2012 10:53:41 +0000 (UTC) (envelope-from zeising@freebsd.org) Received: from mail.lysator.liu.se (mail.lysator.liu.se [IPv6:2001:6b0:17:f0a0::3]) by mx1.freebsd.org (Postfix) with ESMTP id 62EF78FC12; Fri, 19 Oct 2012 10:53:41 +0000 (UTC) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id B4E5840004; Fri, 19 Oct 2012 12:53:40 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id A9D8340007; Fri, 19 Oct 2012 12:53:40 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on bernadotte.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.3.1 X-Spam-Score: 0.0 Received: from mx.daemonic.se (h-45-105.a163.priv.bahnhof.se [94.254.45.105]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id 58E6340004; Fri, 19 Oct 2012 12:53:40 +0200 (CEST) Received: from mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) by mx.daemonic.se (Postfix) with ESMTPS id 3XjkWR6S67z8ggx; Fri, 19 Oct 2012 12:53:39 +0200 (CEST) X-Virus-Scanned: amavisd-new at daemonic.se Received: from mx.daemonic.se ([IPv6:2001:470:dca9:0:1::3]) (using TLS with cipher CAMELLIA256-SHA) by mailscanner.daemonic.se (mailscanner.daemonic.se [IPv6:2001:470:dca9:0:1::6]) (amavisd-new, port 10025) with ESMTPS id V_rBY4d0Iwyx; Fri, 19 Oct 2012 12:53:37 +0200 (CEST) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2001:470:dca9:0:1::4]) by mx.daemonic.se (Postfix) with ESMTPS id 3XjkWP4cR5z8ggv; Fri, 19 Oct 2012 12:53:37 +0200 (CEST) Received: from tifa.daemonic.se (78-69-168-131-no84.tbcn.telia.com [78.69.168.131]) by mail.daemonic.se (Postfix) with ESMTPSA id 3XjkWP45gwz9Ctq; Fri, 19 Oct 2012 12:53:37 +0200 (CEST) Received: from tifa.daemonic.se (localhost [127.0.0.1]) by tifa.daemonic.se (Postfix) with ESMTP id E53A022AFA; Fri, 19 Oct 2012 12:53:36 +0200 (CEST) Message-ID: <50813130.4090100@freebsd.org> Date: Fri, 19 Oct 2012 12:53:36 +0200 From: Niclas Zeising User-Agent: Mutt/1.5.21 MIME-Version: 1.0 To: Erwin Lansing Subject: Re: svn commit: r306113 - head/dns/bind99 References: <201210191017.q9JAHSt0060717@svn.freebsd.org> <50812FD9.3040301@freebsd.org> In-Reply-To: <50812FD9.3040301@freebsd.org> Content-Type: multipart/mixed; boundary="------------040808050306060404040600" X-Virus-Scanned: ClamAV using ClamSMTP Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org 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: Fri, 19 Oct 2012 10:53:41 -0000 This is a multi-part message in MIME format. --------------040808050306060404040600 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 10/19/12 12:47, Niclas Zeising wrote: > On 10/19/12 12:17, Erwin Lansing wrote: >> Author: erwin >> Date: Fri Oct 19 10:17:27 2012 >> New Revision: 306113 >> URL: http://svn.freebsd.org/changeset/ports/306113 >> >> Log: >> Update to 9.9.2 >> > > You have to add --without-python to CONFIGURE_ARGS, otherwise bind99 > configure will pick up python if it is installed, and then build/install > another couple of tools. > See the release notes for bind 9.9.2 for details. > Regards! Here is a patch for that. Regards! -- Niclas Zeising --------------040808050306060404040600 Content-Type: text/x-patch; name="ports.bind99.pythonfix.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ports.bind99.pythonfix.diff" Index: dns/bind99/Makefile =================================================================== --- dns/bind99/Makefile (revision 306113) +++ dns/bind99/Makefile (working copy) @@ -20,7 +20,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps \ --disable-symtable \ - --with-randomdev=/dev/random + --with-randomdev=/dev/random \ + --without-python CONFLICTS= bind9*-9.[45678].* bind9-sdb-* host-* bind-tools-9.* --------------040808050306060404040600--