From owner-svn-ports-all@FreeBSD.ORG Mon Dec 3 18:31:25 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 0AD397CC; Mon, 3 Dec 2012 18:31:25 +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 E110D8FC1E; Mon, 3 Dec 2012 18:31:24 +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 qB3IVOeO004621; Mon, 3 Dec 2012 18:31:24 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB3IVOWk004616; Mon, 3 Dec 2012 18:31:24 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201212031831.qB3IVOWk004616@svn.freebsd.org> From: Ruslan Mahmatkhanov Date: Mon, 3 Dec 2012 18:31:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r308167 - in head/devel: . pear-pdepend-staticReflection 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: Mon, 03 Dec 2012 18:31:25 -0000 Author: rm Date: Mon Dec 3 18:31:24 2012 New Revision: 308167 URL: http://svnweb.freebsd.org/changeset/ports/308167 Log: The staticReflection component can be used as a drop-in replacement for PHP's internal reflection api. This component provides a generic reflection stack so that applications can switch between the internal and/or static reflection implementation. WWW: http://pear.pdepend.org/ PR: 172764 Submitted by: Gasol Wu Feature safe: yes Added: head/devel/pear-pdepend-staticReflection/ head/devel/pear-pdepend-staticReflection/Makefile (contents, props changed) head/devel/pear-pdepend-staticReflection/distinfo (contents, props changed) head/devel/pear-pdepend-staticReflection/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 3 18:28:40 2012 (r308166) +++ head/devel/Makefile Mon Dec 3 18:31:24 2012 (r308167) @@ -3066,6 +3066,7 @@ SUBDIR += pear-codegen SUBDIR += pear-ezc_Base SUBDIR += pear-ezc_ConsoleTools + SUBDIR += pear-pdepend-staticReflection SUBDIR += pecl-automap SUBDIR += pecl-bbcode SUBDIR += pecl-bcompiler Added: head/devel/pear-pdepend-staticReflection/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-pdepend-staticReflection/Makefile Mon Dec 3 18:31:24 2012 (r308167) @@ -0,0 +1,27 @@ +# Created by: Gasol Wu +# $FreeBSD$ + +PORTNAME= staticReflection +PORTVERSION= 1.0.0 +CATEGORIES= devel pear +MASTER_SITES= http://pear.pdepend.org/get/ +PKGNAMEPREFIX= pear-${PEAR_CHANNEL}_ + +MAINTAINER= gasol.wu@gmail.com +COMMENT= staticReflection package for PHP + +LICENSE= BSD + +BUILD_DEPENDS= pear>=1.6.0:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/pear.pdepend.org.reg:${PORTSDIR}/devel/pear-channel-pdepend +RUN_DEPENDS= pear>=1.6.0:${PORTSDIR}/devel/pear \ + ${PEARDIR}/.channels/pear.pdepend.org.reg:${PORTSDIR}/devel/pear-channel-pdepend + +USE_PHP= tokenizer +PEAR_CHANNEL= pdepend +PEAR_AUTOINSTALL= yes +IGNORE_WITH_PHP=52 + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/devel/pear-pdepend-staticReflection/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-pdepend-staticReflection/distinfo Mon Dec 3 18:31:24 2012 (r308167) @@ -0,0 +1,2 @@ +SHA256 (PEAR/staticReflection-1.0.0.tgz) = 54d68f07b088c408f7a51d289c1fc90c64892d9d82706a5d2280f4d267a15743 +SIZE (PEAR/staticReflection-1.0.0.tgz) = 41278 Added: head/devel/pear-pdepend-staticReflection/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-pdepend-staticReflection/pkg-descr Mon Dec 3 18:31:24 2012 (r308167) @@ -0,0 +1,6 @@ +The staticReflection component can be used as a drop-in replacement for PHP's +internal reflection api. This component provides a generic reflection stack so +that applications can switch between the internal and/or static reflection +implementation. + +WWW: http://pear.pdepend.org/