diff options
author | Alex Dupre <ale@FreeBSD.org> | 2012-02-27 15:30:24 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2012-02-27 15:30:24 +0000 |
commit | 54eb549b1870ad5f6e5360cd09e4c0e4b046b73a (patch) | |
tree | cd51a58a44e9ae8321f11b8ae0af1e1f1215c06d | |
parent | Bullet Cache is a memory database intended to be used much like memcached, (diff) |
Bullet Cache is a memory database intended to be used much like memcached,
but offering much higher flexibility through use of record tags which can be
used to perform bulk operations on sets of records.
This port contains the PHP client module for Bullet Cache.
WWW: http://mdcached.sourceforge.net/
PR: ports/164872
Submitted by: Ivan Voras <ivoras@FreeBSD.org>
Notes
Notes:
svn path=/head/; revision=292309
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/php-mdcached/Makefile | 25 | ||||
-rw-r--r-- | databases/php-mdcached/distinfo | 2 | ||||
-rw-r--r-- | databases/php-mdcached/pkg-descr | 7 |
4 files changed, 35 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index cd006eecf9d2..f68d6c87959e 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -547,6 +547,7 @@ SUBDIR += pgtune SUBDIR += pgworksheet SUBDIR += php-adodb-ext + SUBDIR += php-mdcached SUBDIR += php-sqlite3 SUBDIR += php-sqlrelay SUBDIR += php4-dba diff --git a/databases/php-mdcached/Makefile b/databases/php-mdcached/Makefile new file mode 100644 index 000000000000..7516152e55ec --- /dev/null +++ b/databases/php-mdcached/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: php-mdcached +# Date created: 8 February 2012 +# Whom: Ivan Voras <ivoras@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= mdcached +PORTVERSION= 1.0.2 +CATEGORIES= databases devel +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMEPREFIX= php- +EXTRACT_SUFX= .tgz + +MAINTAINER= ivoras@FreeBSD.org +COMMENT= The PHP client library for Bullet Cache (mdcached) + +LIB_DEPENDS= mdcached.1:${PORTSDIR}/databases/mdcached + +USE_PHP= yes +USE_PHPEXT= yes +CONFIGURE_ARGS= --enable-mdcached +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME}/client_php/${PORTNAME} + +.include <bsd.port.mk> diff --git a/databases/php-mdcached/distinfo b/databases/php-mdcached/distinfo new file mode 100644 index 000000000000..4d8ed95c60de --- /dev/null +++ b/databases/php-mdcached/distinfo @@ -0,0 +1,2 @@ +SHA256 (mdcached-1.0.2.tgz) = c5d049331ac1ab869ad288a0416f40adc7454a37fe289898d0bc48b0b4f00db4 +SIZE (mdcached-1.0.2.tgz) = 268736 diff --git a/databases/php-mdcached/pkg-descr b/databases/php-mdcached/pkg-descr new file mode 100644 index 000000000000..279b4b0bff5b --- /dev/null +++ b/databases/php-mdcached/pkg-descr @@ -0,0 +1,7 @@ +Bullet Cache is a memory database intended to be used much like memcached, +but offering much higher flexibility through use of record tags which can be +used to perform bulk operations on sets of records. + +This port contains the PHP client module for Bullet Cache. + +WWW: http://mdcached.sourceforge.net/ |