aef5a66670
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
24 lines
554 B
Makefile
24 lines
554 B
Makefile
# Created by: Ivan Voras <ivoras@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mdcached
|
|
PORTVERSION= 1.0.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMEPREFIX= php-
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ivoras@FreeBSD.org
|
|
COMMENT= The PHP client library for Bullet Cache (mdcached)
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
LIB_DEPENDS= libmdcached.so:databases/mdcached
|
|
|
|
USES= php:ext
|
|
IGNORE_WITH_PHP= 70
|
|
CONFIGURE_ARGS= --enable-mdcached
|
|
WRKSRC_SUBDIR= ${PORTNAME}/client_php/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|