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
27 lines
550 B
Makefile
27 lines
550 B
Makefile
# Created by: JoeHorn <joehorn@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= adodb-ext
|
|
PORTVERSION= 5.04
|
|
PORTREVISION= 4
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://phplens.com/lens/dl/
|
|
PKGNAMEPREFIX= php-
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ADOdb Extension
|
|
|
|
WRKSRC= ${WRKDIR}/adodb-${PORTVERSION:S/.//}
|
|
|
|
USES= dos2unix php:ext zip
|
|
IGNORE_WITH_PHP=56 70
|
|
PHP_MODNAME= adodb
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PHP_VER} == "55"
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-php54-adodb.c
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|