supersedes by ports/177409 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 Generated with FreeBSD Port Tools 0.99_7 (mode: new)
Responsible Changed From-To: freebsd-ports-bugs->miwi miwi@ wants this port PRs (via the GNATS Auto Assign Tool)
Sorry for wrong description. ports/177409 has superseded by this ports.
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@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@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@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 _______________________________________________ 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"
State Changed From-To: open->closed Committed. Thanks!