From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 29 19:50:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CD71F8D2 for ; Fri, 29 Mar 2013 19:50:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 99386841 for ; Fri, 29 Mar 2013 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2TJo0vr025560 for ; Fri, 29 Mar 2013 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2TJo0Yv025559; Fri, 29 Mar 2013 19:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 29 Mar 2013 19:50:00 GMT Resent-Message-Id: <201303291950.r2TJo0Yv025559@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Sean C. Farley" Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 91DC0851; Fri, 29 Mar 2013 19:43:31 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from mail.farley.org (mail.farley.org [IPv6:2001:470:1f07:14d3:2::11]) by mx1.freebsd.org (Postfix) with ESMTP id 4B3A7813; Fri, 29 Mar 2013 19:43:31 +0000 (UTC) Received: from thor.farley.org (root@thor.farley.org [IPv6:2001:470:1f07:14d3:1::5]) by mail.farley.org (8.14.6/8.14.6) with ESMTP id r2TJhTga056999; Fri, 29 Mar 2013 15:43:29 -0400 (EDT) (envelope-from scf@FreeBSD.org) Received: from thor.farley.org (localhost [127.0.0.1]) by thor.farley.org (8.14.5/8.14.5) with ESMTP id r2TJhTNJ048563; Fri, 29 Mar 2013 15:43:29 -0400 (EDT) (envelope-from scf@FreeBSD.org) Received: (from root@localhost) by thor.farley.org (8.14.5/8.14.5/Submit) id r2TJhT85048562; Fri, 29 Mar 2013 15:43:29 -0400 (EDT) (envelope-from scf@FreeBSD.org) Message-Id: <201303291943.r2TJhT85048562@thor.farley.org> Date: Fri, 29 Mar 2013 15:43:29 -0400 (EDT) From: "Sean C. Farley" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/177483: [PATCH] textproc/libxml2: default options incorrectly evaluated Cc: gnome@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Mar 2013 19:50:00 -0000 >Number: 177483 >Category: ports >Synopsis: [PATCH] textproc/libxml2: default options incorrectly evaluated >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 29 19:50:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Sean C. Farley >Release: FreeBSD 8.3-STABLE amd64 >Organization: >Environment: System: FreeBSD thor.farley.org 8.3-STABLE FreeBSD 8.3-STABLE #0 r243661M: Wed Nov 28 17:27:01 EST >Description: The evaluation for the SCHEMA and THREADS options are reversed. They are currently disabled if selected. This breaks the build of devel/py-lxml which needs the SCHEMA option enabled. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_7 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- libxml2-2.8.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 315556) +++ Makefile (working copy) @@ -47,11 +47,11 @@ .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 --- libxml2-2.8.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: