svn commit: r313275 - in head/devel: . pecl-eio
Martin Wilke
miwi at FreeBSD.org
Sat Mar 2 16:46:00 UTC 2013
Author: miwi
Date: Sat Mar 2 16:45:58 2013
New Revision: 313275
URL: http://svnweb.freebsd.org/changeset/ports/313275
Log:
This extension provides interface to the libeio library.
Libeio is a an asynchronous I/O library. Features basically include
asynchronous versions of POSIX API(read, write, open, close, stat, unlink,
fdatasync, mknod, readdir etc.); sendfile (native on Solaris, Linux, HP-UX,
FreeBSD); readahead. libeio itself emulates the system calls, if they are not
available on specific(UNIX-like) platform.
WWW: http://pecl.php.net/package/eio/
PR: ports/176323
Submitted by: Gasol Wu <gasol.wu at gmail.com>
Added:
head/devel/pecl-eio/
head/devel/pecl-eio/Makefile (contents, props changed)
head/devel/pecl-eio/distinfo (contents, props changed)
head/devel/pecl-eio/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Mar 2 16:44:28 2013 (r313274)
+++ head/devel/Makefile Sat Mar 2 16:45:58 2013 (r313275)
@@ -3167,6 +3167,7 @@
SUBDIR += pecl-bbcode
SUBDIR += pecl-bcompiler
SUBDIR += pecl-dio
+ SUBDIR += pecl-eio
SUBDIR += pecl-ev
SUBDIR += pecl-expect
SUBDIR += pecl-gearman
Added: head/devel/pecl-eio/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/pecl-eio/Makefile Sat Mar 2 16:45:58 2013 (r313275)
@@ -0,0 +1,22 @@
+# Created by: Gasol Wu <gasol.wu at gmail.com>
+# $FreeBSD$
+
+PORTNAME= eio
+PORTVERSION= 1.2.1
+CATEGORIES= devel
+MASTER_SITES= http://pecl.php.net/get/
+PKGNAMEPREFIX= pecl-
+EXTRACT_SUFX= .tgz
+DIST_SUBDIR= PECL
+
+MAINTAINER= gasol.wu at gmail.com
+COMMENT= Provides interface to the libeio library
+
+LICENSE= PHP301
+
+CONFIGURE_ARGS= --enable-eio
+USE_PHP= yes
+USE_PHPEXT= yes
+IGNORE_WITH_PHP= 52
+
+.include <bsd.port.mk>
Added: head/devel/pecl-eio/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/pecl-eio/distinfo Sat Mar 2 16:45:58 2013 (r313275)
@@ -0,0 +1,2 @@
+SHA256 (PECL/eio-1.2.1.tgz) = 6682e360728a327764813a4211fe80b29c2fb241b14cb051bd8f763b405146c5
+SIZE (PECL/eio-1.2.1.tgz) = 57296
Added: head/devel/pecl-eio/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/pecl-eio/pkg-descr Sat Mar 2 16:45:58 2013 (r313275)
@@ -0,0 +1,9 @@
+This extension provides interface to the libeio library.
+
+Libeio is a an asynchronous I/O library. Features basically include
+asynchronous versions of POSIX API(read, write, open, close, stat, unlink,
+fdatasync, mknod, readdir etc.); sendfile (native on Solaris, Linux, HP-UX,
+FreeBSD); readahead. libeio itself emulates the system calls, if they are not
+available on specific(UNIX-like) platform.
+
+WWW: http://pecl.php.net/package/eio/
More information about the svn-ports-all
mailing list