mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
databases/php56-redis: NEW PORT - PHP5 extension for Redis
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: 194270 Submitted by: Daniel Ylitalo <daniel at blodan.se> Approved by: mentors (implicit)
This commit is contained in:
parent
39325ab315
commit
6a35852f0c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=372639
@ -626,6 +626,7 @@
|
||||
SUBDIR += php56-pdo_pgsql
|
||||
SUBDIR += php56-pdo_sqlite
|
||||
SUBDIR += php56-pgsql
|
||||
SUBDIR += php56-redis
|
||||
SUBDIR += php56-sqlite3
|
||||
SUBDIR += php56-sybase_ct
|
||||
SUBDIR += phpminiadmin
|
||||
@ -763,9 +764,10 @@
|
||||
SUBDIR += py-rrdtool_lgpl
|
||||
SUBDIR += py-south
|
||||
SUBDIR += py-sqlalchemy
|
||||
SUBDIR += py-sqlalchemy-devel
|
||||
SUBDIR += py-sqlalchemy-migrate
|
||||
SUBDIR += py-sqlalchemy06
|
||||
SUBDIR += py-sqlalchemy07
|
||||
SUBDIR += py-sqlalchemy08
|
||||
SUBDIR += py-sqlite3
|
||||
SUBDIR += py-sqlite3dbm
|
||||
SUBDIR += py-sqlkit
|
||||
|
40
databases/php56-redis/Makefile
Normal file
40
databases/php56-redis/Makefile
Normal file
@ -0,0 +1,40 @@
|
||||
# Created by: Benedikt Niessen <ports@niessen.ch>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= redis
|
||||
PORTVERSION= 2.2.5
|
||||
CATEGORIES= databases
|
||||
PKGNAMEPREFIX= php5-
|
||||
|
||||
MAINTAINER= m.tsatsenko@gmail.com
|
||||
COMMENT= PHP5 extension for Redis
|
||||
|
||||
LICENSE= PHP301
|
||||
|
||||
GITVERSION= 0f0661e
|
||||
|
||||
USE_PHP= session
|
||||
USE_PHP_BUILD= yes
|
||||
USE_PHPEXT= yes
|
||||
DEFAULT_VERSIONS+= php=56
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= nicolasff
|
||||
GH_PROJECT= phpredis
|
||||
GH_COMMIT= 8dac89e
|
||||
|
||||
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/php56-redis/distinfo
Normal file
2
databases/php56-redis/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (redis-2.2.5.tar.gz) = c1c4cccce4c140da58c00b19a41f5bd2d218811733711984fc3e8b73cd4c6b33
|
||||
SIZE (redis-2.2.5.tar.gz) = 131005
|
8
databases/php56-redis/pkg-descr
Normal file
8
databases/php56-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 New Issue
Block a user