diff options
author | rm <rm@FreeBSD.org> | 2012-12-04 02:31:24 +0800 |
---|---|---|
committer | rm <rm@FreeBSD.org> | 2012-12-04 02:31:24 +0800 |
commit | 75c5345ac3fae1983c5cedf2b0e8096f8929077a (patch) | |
tree | dc066c87707990965a92543e7cfe53bbcb676c25 | |
parent | 5633097adfed36501f87ea50e657871049131ce9 (diff) | |
download | freebsd-ports-graphics-75c5345ac3fae1983c5cedf2b0e8096f8929077a.tar.gz freebsd-ports-graphics-75c5345ac3fae1983c5cedf2b0e8096f8929077a.tar.zst freebsd-ports-graphics-75c5345ac3fae1983c5cedf2b0e8096f8929077a.zip |
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 <gasol.wu@gmail.com>
Feature safe: yes
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/pear-pdepend-staticReflection/Makefile | 27 | ||||
-rw-r--r-- | devel/pear-pdepend-staticReflection/distinfo | 2 | ||||
-rw-r--r-- | devel/pear-pdepend-staticReflection/pkg-descr | 6 |
4 files changed, 36 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 061654df211..65e6ff3cdd4 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -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 diff --git a/devel/pear-pdepend-staticReflection/Makefile b/devel/pear-pdepend-staticReflection/Makefile new file mode 100644 index 00000000000..810c6cfe261 --- /dev/null +++ b/devel/pear-pdepend-staticReflection/Makefile @@ -0,0 +1,27 @@ +# Created by: Gasol Wu <gasol.wu@gmail.com> +# $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 <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include <bsd.port.post.mk> diff --git a/devel/pear-pdepend-staticReflection/distinfo b/devel/pear-pdepend-staticReflection/distinfo new file mode 100644 index 00000000000..a26a62f6a40 --- /dev/null +++ b/devel/pear-pdepend-staticReflection/distinfo @@ -0,0 +1,2 @@ +SHA256 (PEAR/staticReflection-1.0.0.tgz) = 54d68f07b088c408f7a51d289c1fc90c64892d9d82706a5d2280f4d267a15743 +SIZE (PEAR/staticReflection-1.0.0.tgz) = 41278 diff --git a/devel/pear-pdepend-staticReflection/pkg-descr b/devel/pear-pdepend-staticReflection/pkg-descr new file mode 100644 index 00000000000..4765e08ab05 --- /dev/null +++ b/devel/pear-pdepend-staticReflection/pkg-descr @@ -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/ |