e05c948725
- Do not abuse DEFAULT_VERSIONS
37 lines
648 B
Makefile
37 lines
648 B
Makefile
# Created by: Benedikt Niessen <ports@niessen.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= redis
|
|
PORTVERSION= 2.2.7
|
|
CATEGORIES= databases
|
|
PKGNAMEPREFIX= php5-
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= PHP5-Extension for Redis
|
|
|
|
LICENSE= PHP301
|
|
|
|
USE_PHP= session
|
|
USE_PHP_BUILD= yes
|
|
USE_PHPEXT= yes
|
|
PHP_DEFAULT= 5.4
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= phpredis
|
|
GH_PROJECT= phpredis
|
|
|
|
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>
|