Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 May 2013 06:12:41 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r318645 - in head/devel: . pecl-judy
Message-ID:  <201305210612.r4L6Cfoj043948@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305210612.r4L6Cfoj043948>