diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-02-12 07:44:19 +0800 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-02-12 07:44:19 +0800 |
commit | 9e36817427aac5edbdea3808c078f973472e43cf (patch) | |
tree | e9ca2e634a161e9c4f182998ee314f50e14dc915 /www | |
parent | 583eaf674cafabf9f2c7429e0da44ce1f94ec9eb (diff) | |
download | freebsd-ports-gnome-9e36817427aac5edbdea3808c078f973472e43cf.tar.gz freebsd-ports-gnome-9e36817427aac5edbdea3808c078f973472e43cf.tar.zst freebsd-ports-gnome-9e36817427aac5edbdea3808c078f973472e43cf.zip |
AMFEXT is a PHP extension written in C that implements encoding and decoding
of AMF and AMF3 messages for the PHP language. It has been based on some of
the experience gained with AMFPP, a native code for encoding and decoding C.
The native encoding and decoding is extremely fast and memory efficient
respect existing PHP implementation, and the flexibility has been
provided using callbacks to the PHP code.
WWW: http://www.teslacore.it/wiki/index.php?title=AMFEXT
PR: ports/109037
Submitted by: Piotr Rybicki <meritus at innervision.pl>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/pecl-amfext/Makefile | 27 | ||||
-rw-r--r-- | www/pecl-amfext/distinfo | 3 | ||||
-rw-r--r-- | www/pecl-amfext/pecl-amfext-0.8.7.tbz | bin | 0 -> 23306 bytes | |||
-rw-r--r-- | www/pecl-amfext/pkg-descr | 9 |
5 files changed, 40 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index f498b62d049b..d5f9b0780762 100644 --- a/www/Makefile +++ b/www/Makefile @@ -886,6 +886,7 @@ SUBDIR += pear-Text_Wiki SUBDIR += pear-UDDI SUBDIR += pecl-APC + SUBDIR += pecl-amfext SUBDIR += pecl-mnogosearch SUBDIR += pecl-pecl_http SUBDIR += pecl-tidy diff --git a/www/pecl-amfext/Makefile b/www/pecl-amfext/Makefile new file mode 100644 index 000000000000..7db89e1807a5 --- /dev/null +++ b/www/pecl-amfext/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: pecl-amfext +# Date created: 11 February 2007 +# Whom: Piotr Rybicki <meritus@innervision.pl> +# +# $FreeBSD$ +# + +PORTNAME= amfext +PORTVERSION= 0.8.7 +CATEGORIES= www +MASTER_SITES= http://www.teslacore.it/projects/amfext/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .zip +DIST_SUBDIR= PECL + +MAINTAINER= meritus@innervision.pl +COMMENT= Implements encoding and decoding of AMF and AMF3 messages + +USE_PHP= yes +USE_PHPEXT= yes +USE_ZIP= yes +PHP_MODNAME= amf + +CONFIGURE_ARGS= --enable-amf +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/php/ext/standard" + +.include <bsd.port.mk> diff --git a/www/pecl-amfext/distinfo b/www/pecl-amfext/distinfo new file mode 100644 index 000000000000..5efb7750236f --- /dev/null +++ b/www/pecl-amfext/distinfo @@ -0,0 +1,3 @@ +MD5 (PECL/amfext-0.8.7.zip) = d2bf4054e8ef3ad6af856806b10215aa +SHA256 (PECL/amfext-0.8.7.zip) = 26a79cbd200899d4ef14a53625807bd350ff088856a52ee68d04c492cfc43dc4 +SIZE (PECL/amfext-0.8.7.zip) = 57815 diff --git a/www/pecl-amfext/pecl-amfext-0.8.7.tbz b/www/pecl-amfext/pecl-amfext-0.8.7.tbz Binary files differnew file mode 100644 index 000000000000..caa36258502a --- /dev/null +++ b/www/pecl-amfext/pecl-amfext-0.8.7.tbz diff --git a/www/pecl-amfext/pkg-descr b/www/pecl-amfext/pkg-descr new file mode 100644 index 000000000000..17a1c1db713a --- /dev/null +++ b/www/pecl-amfext/pkg-descr @@ -0,0 +1,9 @@ +AMFEXT is a PHP extension written in C that implements encoding and decoding +of AMF and AMF3 messages for the PHP language. It has been based on some of +the experience gained with AMFPP, a native code for encoding and decoding C. + +The native encoding and decoding is extremely fast and memory efficient +respect existing PHP implementation, and the flexibility has been +provided using callbacks to the PHP code. + +WWW: http://www.teslacore.it/wiki/index.php?title=AMFEXT |