Bug 175124 - [NEW PORT] devel/pecl-ev: ev provides interface to libev library - high performance
Summary: [NEW PORT] devel/pecl-ev: ev provides interface to libev library - high perfo...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-08 06:40 UTC by johnpupu
Modified: 2013-01-27 15:00 UTC (History)
0 users

See Also:


Attachments
pecl-ev-0.2.1.patch (35 bytes, patch)
2013-01-08 06:40 UTC, johnpupu
no flags Details | Diff
patch-ev.c (333 bytes, text/x-csrc; charset=US-ASCII)
2013-01-08 08:24 UTC, johnpupu
no flags Details
pecl-ev.shar (1.75 KB, application/x-shar)
2013-01-09 07:11 UTC, johnpupu
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description johnpupu 2013-01-08 06:40:00 UTC
ev provides interface to libev library - high performance
full-featured event loop written in C.
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-01-27 14:55:59 UTC
Author: vanilla
Date: Sun Jan 27 14:55:46 2013
New Revision: 311070
URL: http://svnweb.freebsd.org/changeset/ports/311070

Log:
  Add pecl-ev 0.2.2, libev extension for PHP.
  
  PR:		ports/175124
  Submitted by:	John Chen <johnpupu@gmail.com>

Added:
  head/devel/pecl-ev/
  head/devel/pecl-ev/Makefile   (contents, props changed)
  head/devel/pecl-ev/distinfo   (contents, props changed)
  head/devel/pecl-ev/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan 27 14:31:37 2013	(r311069)
+++ head/devel/Makefile	Sun Jan 27 14:55:46 2013	(r311070)
@@ -3138,6 +3138,7 @@
     SUBDIR += pecl-bbcode
     SUBDIR += pecl-bcompiler
     SUBDIR += pecl-dio
+    SUBDIR += pecl-ev
     SUBDIR += pecl-expect
     SUBDIR += pecl-gearman
     SUBDIR += pecl-hidef

Added: head/devel/pecl-ev/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-ev/Makefile	Sun Jan 27 14:55:46 2013	(r311070)
@@ -0,0 +1,33 @@
+# Created by: John Chen <johnpupu@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	ev
+PORTVERSION=	0.2.2
+CATEGORIES=	devel
+MASTER_SITES=	http://pecl.php.net/get/
+PKGNAMEPREFIX=	pecl-
+EXTRACT_SUFX=	.tgz
+DIST_SUBDIR=	PECL
+
+MAINTAINER=	johnpupu@gmail.com
+COMMENT=	Libev extension for PHP
+
+LICENSE=	PHP301
+
+USE_PHP_BUILD=	yes
+USE_PHPIZE=	yes
+USE_PHPEXT=	yes
+PHP_MODNAME=	ev
+IGNORE_WITH_PHP=4 52 53
+
+.include <bsd.port.pre.mk>
+
+.if exists(${LOCALBASE}/include/php/ext/sockets/php_sockets.h)
+USE_PHP=	sockets
+CONFIGURE_ARGS+=	--enable-ev-sockets
+.else
+USE_PHP=	yes
+CONFIGURE_ARGS+=	--disable-ev-sockets
+.endif
+
+.include <bsd.port.post.mk>

Added: head/devel/pecl-ev/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-ev/distinfo	Sun Jan 27 14:55:46 2013	(r311070)
@@ -0,0 +1,2 @@
+SHA256 (PECL/ev-0.2.2.tgz) = 059b17ec9a1c8f77bdc5531433b565392b7e53860e5208fa50e83443c5ea580b
+SIZE (PECL/ev-0.2.2.tgz) = 93696

Added: head/devel/pecl-ev/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/pecl-ev/pkg-descr	Sun Jan 27 14:55:46 2013	(r311070)
@@ -0,0 +1,3 @@
+This is a PHP binding for lib library.
+
+WWW: http://pecl.php.net/package/ev
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 2 Vanilla I. Shu freebsd_committer freebsd_triage 2013-01-27 14:56:00 UTC
State Changed
From-To: open->closed

Committed, thanks. 

I add some detect rule to fix build fail when php5-sockets not installed.