From owner-svn-ports-all@freebsd.org Wed Sep 2 22:39:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CFB99C832D; Wed, 2 Sep 2015 22:39:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.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 8D9F9F3E; Wed, 2 Sep 2015 22:39:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t82MdSsl066778; Wed, 2 Sep 2015 22:39:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t82MdSxJ066777; Wed, 2 Sep 2015 22:39:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201509022239.t82MdSxJ066777@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 2 Sep 2015 22:39:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395914 - 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.20 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: Wed, 02 Sep 2015 22:39:28 -0000 Author: amdmi3 Date: Wed Sep 2 22:39:27 2015 New Revision: 395914 URL: https://svnweb.freebsd.org/changeset/ports/395914 Log: - Switch to options helpers - Drop 8.x support Modified: head/dns/libbind/Makefile Modified: head/dns/libbind/Makefile ============================================================================== --- head/dns/libbind/Makefile Wed Sep 2 22:20:57 2015 (r395913) +++ head/dns/libbind/Makefile Wed Sep 2 22:39:27 2015 (r395914) @@ -22,26 +22,13 @@ CONFIGURE_ARGS= --localstatedir=/var --w OPTIONS_DEFINE= IPV6 THREADS OPTIONS_DEFAULT= IPV6 THREADS -.include - -.if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+= --enable-ipv6 -.else -CONFIGURE_ARGS+= --disable-ipv6 -.endif - -.if ${PORT_OPTIONS:MTHREADS} -CONFIGURE_ARGS+= --enable-threads -.else -CONFIGURE_ARGS+= --disable-threads -.endif +IPV6_CONFIGURE_ENABLE= ipv6 +THREADS_CONFIGURE_ENABLE= threads verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.asc -.if ${OSVERSION} > 900007 post-patch: ${REINPLACE_CMD} -e '/#include / d' ${WRKSRC}/irs/*.c -.endif -.include +.include