svn commit: r318645 - in head/devel: . pecl-judy
Martin Wilke
miwi at FreeBSD.org
Tue May 21 06:12:42 UTC 2013
Author: miwi
Date: Tue May 21 06:12:41 2013
New Revision: 318645
URL: http://svnweb.freebsd.org/changeset/ports/318645
Log:
PHP Judy implements sparse dynamic arrays (aka Judy Arrays). This extension
is based on the Judy C library. A Judy array consumes memory only when it is
populated, yet can grow to take advantage of all available memory if desired.
Judy's key benefits are scalability, high performance, and memory efficiency.
WWW: http://pecl.php.net/package/Judy
PR: ports/177535
Submitted by: Gasol Wu <gasol.wu at gmail.com>
Added:
head/devel/pecl-judy/
head/devel/pecl-judy/Makefile (contents, props changed)
head/devel/pecl-judy/distinfo (contents, props changed)
head/devel/pecl-judy/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue May 21 06:10:06 2013 (r318644)
+++ head/devel/Makefile Tue May 21 06:12:41 2013 (r318645)
@@ -3212,6 +3212,7 @@
SUBDIR += pecl-inclued
SUBDIR += pecl-inotify
SUBDIR += pecl-intl
+ SUBDIR += pecl-judy
SUBDIR += pecl-libevent
SUBDIR += pecl-mcve
SUBDIR += pecl-ncurses
Added: head/devel/pecl-judy/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/pecl-judy/Makefile Tue May 21 06:12:41 2013 (r318645)
@@ -0,0 +1,25 @@
+# Created by: Gasol Wu <gasol.wu at gmail.com>
+# $FreeBSD$
+
+PORTNAME= judy
+PORTVERSION= 0.1.6
+CATEGORIES= devel
+MASTER_SITES= http://pecl.php.net/get/
+PKGNAMEPREFIX= pecl-
+DISTNAME= Judy-${PORTVERSION}
+EXTRACT_SUFX= .tgz
+DIST_SUBDIR= PECL
+
+MAINTAINER= gasol.wu at gmail.com
+COMMENT= PHP Judy implements sparse dynamic arrays
+
+LICENSE= PHP301
+
+RUN_DEPENDS= Judy>=0:${PORTSDIR}/devel/judy
+BUILD_DEPENDS= Judy>=0:${PORTSDIR}/devel/judy
+
+CONFIGURE_ARGS= --with-judy=${LOCALBASE}
+USE_PHP= yes
+USE_PHPEXT= yes
+
+.include <bsd.port.mk>
Added: head/devel/pecl-judy/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/pecl-judy/distinfo Tue May 21 06:12:41 2013 (r318645)
@@ -0,0 +1,2 @@
+SHA256 (PECL/Judy-0.1.6.tgz) = e02a652f529189216410597fb6b64ec62976d66931bb2479168434f46ce26be6
+SIZE (PECL/Judy-0.1.6.tgz) = 19349
Added: head/devel/pecl-judy/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/pecl-judy/pkg-descr Tue May 21 06:12:41 2013 (r318645)
@@ -0,0 +1,6 @@
+PHP Judy implements sparse dynamic arrays (aka Judy Arrays). This extension
+is based on the Judy C library. A Judy array consumes memory only when it is
+populated, yet can grow to take advantage of all available memory if desired.
+Judy's key benefits are scalability, high performance, and memory efficiency.
+
+WWW: http://pecl.php.net/package/Judy
More information about the svn-ports-all
mailing list