diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-05-13 02:27:56 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-05-13 02:27:56 +0000 |
commit | 7c36b351f382a08a446921a612508447209406f4 (patch) | |
tree | 4c217979bc898484365a22714a1bd7ee5966dd73 | |
parent | - Update to 1.7 (diff) |
A compatible Threading API for PHP5.3+
WWW: http://pecl.php.net/package/pthreads
PR: ports/178299
Submitted by: John Chen <johnpupu@gmail.com>
Notes
Notes:
svn path=/head/; revision=317990
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/pecl-pthreads/Makefile | 24 | ||||
-rw-r--r-- | devel/pecl-pthreads/distinfo | 2 | ||||
-rw-r--r-- | devel/pecl-pthreads/pkg-descr | 3 |
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 1c340b2e6a67..31d35d3ba6fe 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3209,6 +3209,7 @@ SUBDIR += pecl-operator SUBDIR += pecl-params SUBDIR += pecl-parsekit + SUBDIR += pecl-pthreads SUBDIR += pecl-runkit SUBDIR += pecl-scream SUBDIR += pecl-shape diff --git a/devel/pecl-pthreads/Makefile b/devel/pecl-pthreads/Makefile new file mode 100644 index 000000000000..d6efb737595d --- /dev/null +++ b/devel/pecl-pthreads/Makefile @@ -0,0 +1,24 @@ +# Created by: John Chen <johnpupu@gmail.com> +# $FreeBSD$ + +PORTNAME= pthreads +PORTVERSION= 0.0.44 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= johnpupu@gmail.com +COMMENT= A compatible Threading API for PHP5.3+ + +LICENSE= PHP301 + +USE_PHP= yes +USE_PHP_BUILD= yes +USE_PHPIZE= yes +USE_PHPEXT= yes +PHP_MODNAME= pthreads +IGNORE_WITH_PHP=4 52 + +.include <bsd.port.mk> diff --git a/devel/pecl-pthreads/distinfo b/devel/pecl-pthreads/distinfo new file mode 100644 index 000000000000..c7f39081808c --- /dev/null +++ b/devel/pecl-pthreads/distinfo @@ -0,0 +1,2 @@ +SHA256 (PECL/pthreads-0.0.44.tgz) = a66e658e972007355f9e136cd805126c80d396fe7507118236e53c1681f97c93 +SIZE (PECL/pthreads-0.0.44.tgz) = 58921 diff --git a/devel/pecl-pthreads/pkg-descr b/devel/pecl-pthreads/pkg-descr new file mode 100644 index 000000000000..ff1c2d5d9a26 --- /dev/null +++ b/devel/pecl-pthreads/pkg-descr @@ -0,0 +1,3 @@ +A compatible Threading API for PHP5.3+ + +WWW: http://pecl.php.net/package/pthreads |