From owner-svn-ports-head@FreeBSD.ORG Sun Nov 3 09:49:33 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 68A2F93D; Sun, 3 Nov 2013 09:49:33 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39E1A263B; Sun, 3 Nov 2013 09:49:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA39nXXV006823; Sun, 3 Nov 2013 09:49:33 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA39nWWR006819; Sun, 3 Nov 2013 09:49:32 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201311030949.rA39nWWR006819@svn.freebsd.org> From: Antoine Brodin Date: Sun, 3 Nov 2013 09:49:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332601 - in head/devel: . pecl-event X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Nov 2013 09:49:33 -0000 Author: antoine Date: Sun Nov 3 09:49:31 2013 New Revision: 332601 URL: http://svnweb.freebsd.org/changeset/ports/332601 Log: 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 Added: head/devel/pecl-event/ head/devel/pecl-event/Makefile (contents, props changed) head/devel/pecl-event/distinfo (contents, props changed) head/devel/pecl-event/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Nov 3 09:40:34 2013 (r332600) +++ head/devel/Makefile Sun Nov 3 09:49:31 2013 (r332601) @@ -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 Added: head/devel/pecl-event/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-event/Makefile Sun Nov 3 09:49:31 2013 (r332601) @@ -0,0 +1,27 @@ +# Created by: John Chen +# $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 Added: head/devel/pecl-event/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-event/distinfo Sun Nov 3 09:49:31 2013 (r332601) @@ -0,0 +1,2 @@ +SHA256 (PECL/event-1.8.1.tgz) = 8bababa437fd391d02fdc953005496f701bdfc3f46a0395806d4a7f5cda8d26c +SIZE (PECL/event-1.8.1.tgz) = 71747 Added: head/devel/pecl-event/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-event/pkg-descr Sun Nov 3 09:49:31 2013 (r332601) @@ -0,0 +1,3 @@ +This is a port of libevent to the PHP infrastructure. + +WWW: http://pecl.php.net/package/event