This extension provides an API for communicating with Redis database,
a persistent key-value database with built-in net interface written in ANSI-C for Posix systems. It is a fork of alfonsojimenez's phpredis, adding many methods and fixing a lot of issues. WWW: https://github.com/nicolasff/phpredis PR: ports/189414 Submitted by: Arjan Koole <arjan@blackoak.net>
This commit is contained in:
parent
5bc7c11af1
commit
59975d569b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=356472
4 changed files with 49 additions and 0 deletions
|
@ -622,6 +622,7 @@
|
|||
SUBDIR += php55-pdo_pgsql
|
||||
SUBDIR += php55-pdo_sqlite
|
||||
SUBDIR += php55-pgsql
|
||||
SUBDIR += php55-redis
|
||||
SUBDIR += php55-sqlite3
|
||||
SUBDIR += php55-sybase_ct
|
||||
SUBDIR += phpminiadmin
|
||||
|
|
38
databases/php55-redis/Makefile
Normal file
38
databases/php55-redis/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Created by: Arjan Koole <arjan@blackoak.net>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= redis
|
||||
PORTVERSION= 2.2.4
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= https://github.com/nicolasff/phpredis/tarball/${PORTVERSION}/
|
||||
PKGNAMEPREFIX= php55-
|
||||
DISTNAME= nicolasff-phpredis-${PORTVERSION}-0-g${GITVERSION}
|
||||
|
||||
MAINTAINER= m.tsatsenko@gmail.com
|
||||
COMMENT= PHP5-Extension for Redis
|
||||
|
||||
LICENSE= PHP301
|
||||
|
||||
GITVERSION= 0f0661e
|
||||
WRKSRC= ${WRKDIR}/nicolasff-phpredis-${GITVERSION}
|
||||
|
||||
USE_PHP= session
|
||||
USE_PHP_BUILD= yes
|
||||
USE_PHPEXT= yes
|
||||
DEFAULT_PHP_VER=55
|
||||
|
||||
PHP_MODNAME= redis
|
||||
|
||||
OPTIONS_DEFINE= IGBINARY
|
||||
IGBINARY_DESC= Build with Igbinary serializer
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MIGBINARY}
|
||||
USE_PHP+= igbinary
|
||||
CONFIGURE_ARGS+=--enable-redis-igbinary
|
||||
.else
|
||||
CONFIGURE_ARGS+=--disable-redis-igbinary
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
2
databases/php55-redis/distinfo
Normal file
2
databases/php55-redis/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (nicolasff-phpredis-2.2.4-0-g0f0661e.tar.gz) = cb4273cfe5c15dc0e43945ea74978fe9345ac1e2f4902c798ed63ce6a588d02d
|
||||
SIZE (nicolasff-phpredis-2.2.4-0-g0f0661e.tar.gz) = 122108
|
8
databases/php55-redis/pkg-descr
Normal file
8
databases/php55-redis/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
This extension provides an API for communicating with Redis database,
|
||||
a persistent key-value database with built-in net interface written
|
||||
in ANSI-C for Posix systems.
|
||||
|
||||
It is a fork of alfonsojimenez's phpredis, adding many methods and
|
||||
fixing a lot of issues.
|
||||
|
||||
WWW: https://github.com/nicolasff/phpredis
|
Loading…
Reference in a new issue