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>
This commit is contained in:
Alex Dupre 2012-02-27 15:30:24 +00:00
parent ef0e1865f8
commit 54eb549b18
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=292309
4 changed files with 35 additions and 0 deletions

View file

@ -547,6 +547,7 @@
SUBDIR += pgtune
SUBDIR += pgworksheet
SUBDIR += php-adodb-ext
SUBDIR += php-mdcached
SUBDIR += php-sqlite3
SUBDIR += php-sqlrelay
SUBDIR += php4-dba

View file

@ -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>

View file

@ -0,0 +1,2 @@
SHA256 (mdcached-1.0.2.tgz) = c5d049331ac1ab869ad288a0416f40adc7454a37fe289898d0bc48b0b4f00db4
SIZE (mdcached-1.0.2.tgz) = 268736

View file

@ -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/