From owner-svn-ports-head@FreeBSD.ORG Fri Mar 29 20:12:13 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 91F18E6; Fri, 29 Mar 2013 20:12:13 +0000 (UTC) (envelope-from kwm@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 840D98FC; Fri, 29 Mar 2013 20:12:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2TKCD83022500; Fri, 29 Mar 2013 20:12:13 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2TKCD1J022499; Fri, 29 Mar 2013 20:12:13 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201303292012.r2TKCD1J022499@svn.freebsd.org> From: Koop Mast Date: Fri, 29 Mar 2013 20:12:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315569 - head/textproc/libxml2 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: Fri, 29 Mar 2013 20:12:13 -0000 Author: kwm Date: Fri Mar 29 20:12:12 2013 New Revision: 315569 URL: http://svnweb.freebsd.org/changeset/ports/315569 Log: Fix options evaluation that got mixed up in the OptionsNG converstion. PR: ports/177480 Submitted by: scf@ Pointyhat for: kwm Modified: head/textproc/libxml2/Makefile Modified: head/textproc/libxml2/Makefile ============================================================================== --- head/textproc/libxml2/Makefile Fri Mar 29 19:55:58 2013 (r315568) +++ head/textproc/libxml2/Makefile Fri Mar 29 20:12:12 2013 (r315569) @@ -1,13 +1,10 @@ -# New ports collection makefile for: libxml2 -# Date created: 28 September 1998 -# Whom: Yukihiro Nakai -# +# Created by: Yukihiro Nakai # $FreeBSD$ # $MCom: ports/textproc/libxml2/Makefile,v 1.15 2012/11/26 19:55:23 kwm Exp $ PORTNAME= libxml2 PORTVERSION= 2.8.0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= textproc gnome MASTER_SITES= ftp://xmlsoft.org/libxml2/ \ ftp://gd.tuwien.ac.at/pub/libxml/ @@ -47,11 +44,11 @@ THREAD_ALLOC_DESC= Per-thread memory (DE .include -.if ${PORT_OPTIONS:MSCHEMA} +.if ! ${PORT_OPTIONS:MSCHEMA} CONFIGURE_ARGS+= --without-schemas .endif -.if ${PORT_OPTIONS:MTHREADS} +.if ! ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+= --without-threads .endif