From owner-svn-ports-all@FreeBSD.ORG Wed Dec 19 20:08:41 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 688BEFA3; Wed, 19 Dec 2012 20:08:41 +0000 (UTC) (envelope-from rm@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 4433C8FC0A; Wed, 19 Dec 2012 20:08:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBJK8fmt075467; Wed, 19 Dec 2012 20:08:41 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBJK8e7V075462; Wed, 19 Dec 2012 20:08:40 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201212192008.qBJK8e7V075462@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Wed, 19 Dec 2012 20:08:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309259 - in head/devel: . pear-TheSeer_fXSL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Dec 2012 20:08:41 -0000 Author: rm Date: Wed Dec 19 20:08:40 2012 New Revision: 309259 URL: http://svnweb.freebsd.org/changeset/ports/309259 Log: The classes contained within this repository extend the standard XSLTProcess to use exceptions at all occasions of errors instead of PHP warnings, notices or semi completed transformations. They also add various custom methods and short- cuts for convinience and to allow a nicer API to implement callbacks to the PHP stack. WWW: https://github.com/theseer/fXSL/ PR: 172766 Submitted by: Gasol Wu Added: head/devel/pear-TheSeer_fXSL/ head/devel/pear-TheSeer_fXSL/Makefile (contents, props changed) head/devel/pear-TheSeer_fXSL/distinfo (contents, props changed) head/devel/pear-TheSeer_fXSL/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Dec 19 20:07:45 2012 (r309258) +++ head/devel/Makefile Wed Dec 19 20:08:40 2012 (r309259) @@ -3053,6 +3053,7 @@ SUBDIR += pear-Text_Diff SUBDIR += pear-TheSeer_DirectoryScanner SUBDIR += pear-TheSeer_fDOMDocument + SUBDIR += pear-TheSeer_fXSL SUBDIR += pear-VFS SUBDIR += pear-Validate SUBDIR += pear-Validate_AU Added: head/devel/pear-TheSeer_fXSL/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-TheSeer_fXSL/Makefile Wed Dec 19 20:08:40 2012 (r309259) @@ -0,0 +1,27 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= fXSL +PORTVERSION= 1.0.4 +CATEGORIES= devel pear +MASTER_SITES= http://pear.netpirates.net/get/ +PKGNAMEPREFIX= pear-TheSeer_ +EXTRACT_SUFX= .tgz + +MAINTAINER= gasol.wu@gmail.com +COMMENT= XSL wrapper / extension to the PHP 5.x XSLTProcessor + +BUILD_DEPENDS= pear>=1.9.1:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/pear.netpirates.net.reg:${PORTSDIR}/devel/pear-channel-theseer +RUN_DEPENDS= pear>=1.9.1:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/pear.netpirates.net.reg:${PORTSDIR}/devel/pear-channel-theseer + +USE_PHP= dom xml xsl +PEAR_CHANNEL= theseer +PEAR_AUTOINSTALL= yes + +IGNORE_WITH_PHP=52 + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/devel/pear-TheSeer_fXSL/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-TheSeer_fXSL/distinfo Wed Dec 19 20:08:40 2012 (r309259) @@ -0,0 +1,2 @@ +SHA256 (PEAR/fXSL-1.0.4.tgz) = ef80433d097f0519c6d7fdbf64b9fb0842ec588d154f81ac1f66838c2462ac77 +SIZE (PEAR/fXSL-1.0.4.tgz) = 5798 Added: head/devel/pear-TheSeer_fXSL/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-TheSeer_fXSL/pkg-descr Wed Dec 19 20:08:40 2012 (r309259) @@ -0,0 +1,7 @@ +The classes contained within this repository extend the standard XSLTProcess to +use exceptions at all occasions of errors instead of PHP warnings, notices or +semi completed transformations. They also add various custom methods and short- +cuts for convinience and to allow a nicer API to implement callbacks to the PHP +stack. + +WWW: https://github.com/theseer/fXSL/