forked from Lainports/freebsd-ports
file, so the order remains the same. Every PHP (or Zend) extension now installs its own .ini file in /usr/local/etc/php. A PHP extension will be automatically activated when installed. The order into which extensions are loaded is automatically guessed. In some very rare cases, the guess will be wrong, and PHP_MOD_PRIO will need to be set. Refer to the USES=php section of the Porter's Handbook for more information. Convert ports touching etc/php/extensions.ini manually, or telling the OP to do it. And finally, bump PORTREVISION for all php extensions. PR: 210697 Submitted by: mat Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D7022
38 lines
692 B
Makefile
38 lines
692 B
Makefile
# Created by: Arjan Koole <arjan@blackoak.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= redis
|
|
PORTVERSION= 2.2.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= php55-
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= PHP5-Extension for Redis
|
|
|
|
LICENSE= PHP301
|
|
|
|
BROKEN_powerpc64= Does not build
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= nicolasff
|
|
GH_PROJECT= phpredis
|
|
|
|
USES= php:ext
|
|
USE_PHP= session:build
|
|
PHP_DEFAULT= 5.5
|
|
IGNORE_WITH_PHP= 56 70
|
|
|
|
OPTIONS_DEFINE= IGBINARY
|
|
IGBINARY_DESC= Build with Igbinary serializer
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MIGBINARY}
|
|
USE_PHP+= igbinary:build
|
|
CONFIGURE_ARGS+=--enable-redis-igbinary
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-redis-igbinary
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|