From owner-svn-ports-all@FreeBSD.ORG Fri Oct 12 07:04:46 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8107777E; Fri, 12 Oct 2012 07:04:46 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 69C7C8FC08; Fri, 12 Oct 2012 07:04:46 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9C74kBI059041; Fri, 12 Oct 2012 07:04:46 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9C74kIh059039; Fri, 12 Oct 2012 07:04:46 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201210120704.q9C74kIh059039@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 12 Oct 2012 07:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305758 - head/dns/libbind X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Oct 2012 07:04:46 -0000 Author: bapt Date: Fri Oct 12 07:04:45 2012 New Revision: 305758 URL: http://svn.freebsd.org/changeset/ports/305758 Log: Convert to new options framework Feature safe: yes Modified: head/dns/libbind/Makefile Modified: head/dns/libbind/Makefile ============================================================================== --- head/dns/libbind/Makefile Fri Oct 12 06:53:43 2012 (r305757) +++ head/dns/libbind/Makefile Fri Oct 12 07:04:45 2012 (r305758) @@ -17,18 +17,17 @@ MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --with-randomdev=/dev/random -OPTIONS= IPV6 "Compile with IPv6 support" on \ - THREADS "Compile with thread support" on +OPTIONS_DEFINE= IPV6 THREADS .include -.if !defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 .endif -.if !defined(WITHOUT_THREADS) +.if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+= --enable-threads .else CONFIGURE_ARGS+= --disable-threads