From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Mar 15 18:00:19 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5E301065687 for ; Mon, 15 Mar 2010 18:00:19 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2D0AB8FC0A for ; Mon, 15 Mar 2010 18:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2FI0GZH082061 for ; Mon, 15 Mar 2010 18:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2FI0G1h082060; Mon, 15 Mar 2010 18:00:16 GMT (envelope-from gnats) Resent-Date: Mon, 15 Mar 2010 18:00:16 GMT Resent-Message-Id: <201003151800.o2FI0G1h082060@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 McAfee Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14310106566B for ; Mon, 15 Mar 2010 17:51:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id DC68E8FC36 for ; Mon, 15 Mar 2010 17:51:05 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id o2FHp5gj037743 for ; Mon, 15 Mar 2010 17:51:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id o2FHp5iO037742; Mon, 15 Mar 2010 17:51:05 GMT (envelope-from nobody) Message-Id: <201003151751.o2FHp5iO037742@www.freebsd.org> Date: Mon, 15 Mar 2010 17:51:05 GMT From: Sean McAfee To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/144767: devel/php5-phing port errors X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Mar 2010 18:00:20 -0000 >Number: 144767 >Category: ports >Synopsis: devel/php5-phing port errors >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Mar 15 18:00:15 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Sean McAfee >Release: 8.0Rp2 >Organization: Collaborative Fusion, Inc. >Environment: FreeBSD xxxxxx 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Fri Mar 12 18:45:01 EST 2010 smcafee@xxxxxx:/usr/obj/usr/src/sys/GENERIC amd64 >Description: There are two current issues with devel/php5-phing. 1.) The path in the /usr/local/bin/pear-phing wrapper script points to the wrong directory (/usr/local/share/pear/phing.php vs. /usr/local/share/pear/phing/phing.php) 2.) A file from the 2.3.1 release (ConfigurationException.php) is not included in the Makefile's FILES list, resulting in a broken installation. >How-To-Repeat: Compile the port, try to use it. >Fix: Patch is attached. Patch attached with submission follows: diff -ruN php5-phing.orig/Makefile php5-phing/Makefile --- php5-phing.orig/Makefile 2010-03-15 14:13:50.000000000 +0000 +++ php5-phing/Makefile 2010-03-15 14:14:25.000000000 +0000 @@ -37,7 +37,7 @@ BuildLogger.php TaskContainer.php BuildEvent.php Task.php \ TaskAdapter.php Phing.php RuntimeConfigurable.php BuildListener.php \ Project.php UnknownElement.php BuildException.php Target.php \ - phing.php \ + ConfigurationException.php phing.php \ util/regexp/RegexpEngine.php util/regexp/Regexp.php \ util/regexp/PregEngine.php \ util/SourceFileScanner.php util/ExtendedFileStream.php \ diff -ruN php5-phing.orig/files/patch-pear-phing php5-phing/files/patch-pear-phing --- php5-phing.orig/files/patch-pear-phing 1970-01-01 00:00:00.000000000 +0000 +++ php5-phing/files/patch-pear-phing 2010-03-15 14:26:45.000000000 +0000 @@ -0,0 +1,8 @@ +--- bin/pear-phing.orig 2010-03-15 10:18:17.000000000 -0400 ++++ bin/pear-phing 2010-03-15 10:18:00.000000000 -0400 +@@ -19,4 +19,4 @@ + export PHP_COMMAND + fi + +-$PHP_COMMAND -d html_errors=off -qC /usr/local/share/pear/phing.php -logger phing.listener.AnsiColorLogger "$@" ++$PHP_COMMAND -d html_errors=off -qC /usr/local/share/pear/phing/phing.php -logger phing.listener.AnsiColorLogger "$@" >Release-Note: >Audit-Trail: >Unformatted: