From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 29 19:43:31 2013 Return-Path: Delivered-To: gnome@FreeBSD.org 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) Date: Fri, 29 Mar 2013 15:43:29 -0400 (EDT) Message-Id: <201303291943.r2TJhT85048562@thor.farley.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: [PATCH] textproc/libxml2: default options incorrectly evaluated From: "Sean C. Farley" X-send-pr-version: 3.113 X-GNATS-Notify: X-Spam-Status: No, score=-2.9 required=4.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.farley.org Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Mar 2013 19:43:31 -0000 >Submitter-Id: current-users >Originator: Sean C. Farley >Organization: >Confidential: no >Synopsis: [PATCH] textproc/libxml2: default options incorrectly evaluated >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 8.3-STABLE amd64 >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 ---