From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 9 11:00:50 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E53BA16A4CE for ; Thu, 9 Dec 2004 11:00:50 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB15A43D68 for ; Thu, 9 Dec 2004 11:00:50 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iB9B0om0042967 for ; Thu, 9 Dec 2004 11:00:50 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iB9B0oX4042966; Thu, 9 Dec 2004 11:00:50 GMT (envelope-from gnats) Date: Thu, 9 Dec 2004 11:00:50 GMT Message-Id: <200412091100.iB9B0oX4042966@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Mike Brown Subject: Re: ports/74568: Update textproc/py-xml to 0.8.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mike Brown List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Dec 2004 11:00:51 -0000 The following reply was made to PR ports/74568; it has been noted by GNATS. From: Mike Brown To: freebsd-gnats-submit@FreeBSD.org, marcus@corp.grupos.com.br Cc: vs@FreeBSD.org Subject: Re: ports/74568: Update textproc/py-xml to 0.8.4 Date: Thu, 09 Dec 2004 03:50:18 -0700 Thanks for the note; I never saw the original PR. Also I am new to porting and have been recovering from a disk crash, so I've been slow to produce updates for the PyXML and 4Suite ports. I'd prefer not to accept this patch as-is. We need to remove the long-deprecated --with-xslt option that is currently in the Makefile, and instead add --with-xpath as an option (off by default). I was going to make it something like this: # XSLT support in PyXML is deprecated and broken, and may render PyXML # incompatible with modern versions of 4Suite, so as of PyXML 0.8.4, # this port will not install the PyXML's xml.xslt package (this is the # default when PyXML is installed independently, anyway). Currently, # there is no XSLT support for minidom, but it is possible to convert # a minidom document to a format used by various XSLT processors. # # PyXML's XPath support (xml.xpath) for minidom is functional, however, # and may be installed by setting WITH_XPATH=yes. # .if defined(WITH_XPATH) PYDISTUTILS_BUILDARGS+= --with-xpath PYDISTUTILS_INSTALLARGS+= --with-xpath .else PYDISTUTILS_BUILDARGS+= --without-xpath PYDISTUTILS_INSTALLARGS+= --without-xpath .endif