baed371a8c
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@gmail.com>
22 lines
407 B
Makefile
22 lines
407 B
Makefile
# Created by: Gasol Wu <gasol.wu@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@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>
|