diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2013-11-03 09:49:31 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2013-11-03 09:49:31 +0000 |
commit | 7b05972823303c8b3e422bcbccee539b70d678cc (patch) | |
tree | 2c05e2c600aeb43dab172fb9db4e464e320e848d | |
parent | Deprecate as the project is no longer active. (diff) |
New port: pecl-event
This is a port of libevent to the PHP infrastructure.
WWW: http://pecl.php.net/package/event
PR: ports/179074
Submitted by: John Chen
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/pecl-event/Makefile | 27 | ||||
-rw-r--r-- | devel/pecl-event/distinfo | 2 | ||||
-rw-r--r-- | devel/pecl-event/pkg-descr | 3 |
4 files changed, 33 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index cbff97d9397b..dde37c67a725 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3240,6 +3240,7 @@ SUBDIR += pecl-dio SUBDIR += pecl-eio SUBDIR += pecl-ev + SUBDIR += pecl-event SUBDIR += pecl-expect SUBDIR += pecl-gearman SUBDIR += pecl-hidef diff --git a/devel/pecl-event/Makefile b/devel/pecl-event/Makefile new file mode 100644 index 000000000000..13088459e9f5 --- /dev/null +++ b/devel/pecl-event/Makefile @@ -0,0 +1,27 @@ +# Created by: John Chen <johnpupu@gmail.com> +# $FreeBSD$ + +PORTNAME= event +PORTVERSION= 1.8.1 +CATEGORIES= devel +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= johnpupu@gmail.com +COMMENT= Provides interface to libevent library + +LICENSE= PHP301 + +LIB_DEPENDS= libevent-2.0.so:${PORTSDIR}/devel/libevent2 + +USE_OPENSSL= yes +CONFIGURE_ARGS= --with-openssl-dir=${OPENSSLBASE} +USE_PHP= sockets +USE_PHP_BUILD= yes +USE_PHPEXT= yes +PHP_MODNAME= event +IGNORE_WITH_PHP=52 53 + +.include <bsd.port.mk> diff --git a/devel/pecl-event/distinfo b/devel/pecl-event/distinfo new file mode 100644 index 000000000000..c1af242999c5 --- /dev/null +++ b/devel/pecl-event/distinfo @@ -0,0 +1,2 @@ +SHA256 (PECL/event-1.8.1.tgz) = 8bababa437fd391d02fdc953005496f701bdfc3f46a0395806d4a7f5cda8d26c +SIZE (PECL/event-1.8.1.tgz) = 71747 diff --git a/devel/pecl-event/pkg-descr b/devel/pecl-event/pkg-descr new file mode 100644 index 000000000000..d8f7f41928cc --- /dev/null +++ b/devel/pecl-event/pkg-descr @@ -0,0 +1,3 @@ +This is a port of libevent to the PHP infrastructure. + +WWW: http://pecl.php.net/package/event |