71b70418ca
* Remove MD5 line from distinfo. * Add IGNORE_WITH_PHP=4 as this requires php 5.2 or newer. PR: 152943 Submitted by: "Tom Judge" <tom@tomjudge.com> Approved by: maintainer timeout Feature safe: yes
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# New ports collection makefile for: pecl-memcached
|
|
# Date created: 2009-01-31
|
|
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= memcached
|
|
PORTVERSION= 1.0.2
|
|
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
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/pear:${PORTSDIR}/devel/pear
|
|
LIB_DEPENDS= memcached:${PORTSDIR}/databases/libmemcached
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/pear:${PORTSDIR}/devel/pear
|
|
|
|
LICENSE= PHP30
|
|
|
|
PHP_MODNAME= memcached
|
|
USE_PHP= json session
|
|
USE_PHPEXT= yes
|
|
USE_PHPIZE= yes
|
|
USE_PHP_BUILD= yes
|
|
CONFIGURE_ARGS+=--with-libmemcached-dir=${LOCALBASE}
|
|
IGNORE_WITH_PHP=4
|
|
|
|
OPTIONS= IGBINARY "Binary serializer support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_IGBINARY)
|
|
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.post.mk>
|