1517ce49fc
- Take maintainership of a few ports
39 lines
1 KiB
Makefile
39 lines
1 KiB
Makefile
# Created by: Gea-Suan Lin <gslin@gslin.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= memcached
|
|
PORTVERSION= 2.1.0
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pecl.php.net/get/
|
|
PKGNAMEPREFIX= pecl-
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= PECL
|
|
|
|
MAINTAINER= gslin@gslin.org
|
|
COMMENT= PHP extension for interfacing with memcached via libmemcached library
|
|
|
|
LICENSE= PHP30
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/pear:${PORTSDIR}/devel/pear
|
|
LIB_DEPENDS= libmemcached.so:${PORTSDIR}/databases/libmemcached
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/pear:${PORTSDIR}/devel/pear
|
|
|
|
PHP_MODNAME= memcached
|
|
USE_PHP= json session
|
|
USE_PHPEXT= yes
|
|
USE_PHPIZE= yes
|
|
USE_PHP_BUILD= yes
|
|
CONFIGURE_ARGS+=--with-libmemcached-dir=${LOCALBASE}
|
|
|
|
OPTIONS_DEFINE= IGBINARY
|
|
IGBINARY_DESC= Binary serializer support
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MIGBINARY}
|
|
CONFIGURE_ARGS+=--enable-memcached-igbinary
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/igbinary.so:${PORTSDIR}/converters/igbinary
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/igbinary.so:${PORTSDIR}/converters/igbinary
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|