From owner-svn-ports-head@FreeBSD.ORG Mon Dec 3 15:55:57 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4786AD61; Mon, 3 Dec 2012 15:55:57 +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 20E0E8FC12; Mon, 3 Dec 2012 15:55:57 +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 qB3FtuGr066378; Mon, 3 Dec 2012 15:55:57 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB3Ftutg066373; Mon, 3 Dec 2012 15:55:56 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201212031555.qB3Ftutg066373@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Mon, 3 Dec 2012 15:55:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308154 - in head/devel: . pear-ezc_Base X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Dec 2012 15:55:57 -0000 Author: rm Date: Mon Dec 3 15:55:56 2012 New Revision: 308154 URL: http://svnweb.freebsd.org/changeset/ports/308154 Log: The Base component provides the basic functionality, such as autoloading, that all eZ Components need to function properly. The Base component needs to be loaded specifically. Base can also autoload external class reposito- ries from outside the eZ Components. Aside from the autoload functionality, the Base component also contains a number of generic Exception classes that all inherit from the ezcBaseExce- ption class. WWW: http://ezcomponents.org/ PR: 172759 Submitted by: Gasol Wu Feature safe: yes Added: head/devel/pear-ezc_Base/ head/devel/pear-ezc_Base/Makefile (contents, props changed) head/devel/pear-ezc_Base/distinfo (contents, props changed) head/devel/pear-ezc_Base/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 3 15:12:11 2012 (r308153) +++ head/devel/Makefile Mon Dec 3 15:55:56 2012 (r308154) @@ -3062,6 +3062,7 @@ SUBDIR += pear-channel-symfony2 SUBDIR += pear-channel-theseer SUBDIR += pear-codegen + SUBDIR += pear-ezc_Base SUBDIR += pecl-automap SUBDIR += pecl-bbcode SUBDIR += pecl-bcompiler Added: head/devel/pear-ezc_Base/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-ezc_Base/Makefile Mon Dec 3 15:55:56 2012 (r308154) @@ -0,0 +1,25 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= Base +PORTVERSION= 1.8 +CATEGORIES= devel pear +MASTER_SITES= http://components.ez.no/get/ +PKGNAMEPREFIX= pear-${PEAR_CHANNEL}_ + +MAINTAINER= gasol.wu@gmail.com +COMMENT= Base package that all ezc components packages rely on + +LICENSE= BSD + +BUILD_DEPENDS= pear>=1.4.2:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/components.ez.no.reg:${PORTSDIR}/devel/pear-channel-ezc +RUN_DEPENDS= pear>=1.4.2:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/components.ez.no.reg:${PORTSDIR}/devel/pear-channel-ezc + +PEAR_CHANNEL= ezc +PEAR_AUTOINSTALL= yes + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/devel/pear-ezc_Base/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-ezc_Base/distinfo Mon Dec 3 15:55:56 2012 (r308154) @@ -0,0 +1,2 @@ +SHA256 (PEAR/Base-1.8.tgz) = 394229a2bcbd13f53c5e9b528706fdcfe7f858b27a0aefd473851062a1639625 +SIZE (PEAR/Base-1.8.tgz) = 236357 Added: head/devel/pear-ezc_Base/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-ezc_Base/pkg-descr Mon Dec 3 15:55:56 2012 (r308154) @@ -0,0 +1,10 @@ +The Base component provides the basic functionality, such as autoloading, +that all eZ Components need to function properly. The Base component needs +to be loaded specifically. Base can also autoload external class reposito- +ries from outside the eZ Components. + +Aside from the autoload functionality, the Base component also contains a +number of generic Exception classes that all inherit from the ezcBaseExce- +ption class. + +WWW: http://ezcomponents.org/