Ports using USES=php:phpize, php:ext, php:zend, and php:pecl are now flavored. They will automatically get flavors (php56, php70, php71, php72) depending of the versions they support (set with IGNORE_WITH_PHP). As a consequence, ports using USES=pear and USES=horde are also flavored. PR: 226242 Submitted by: mat Exp-run by: antoine Approved by: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D14208
26 lines
628 B
Makefile
26 lines
628 B
Makefile
# Created by: Wen Heping <wenheping@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= HTTP_Request2
|
|
PORTVERSION= 2.3.0
|
|
PORTEPOCH= 1
|
|
CATEGORIES= www pear
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= PEAR classes providing an easy way to perform HTTP requests
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/Net/URL2.php:net/pear-Net_URL2@${PHP_FLAVOR}
|
|
RUN_DEPENDS= ${PEARDIR}/Net/URL2.php:net/pear-Net_URL2@${PHP_FLAVOR}
|
|
|
|
OPTIONS_DEFINE= CURL FILEINFO ZLIB
|
|
CURL_DESC= PHP CURL extension support
|
|
FILEINF_DESC= PHP FILEINFO extension support
|
|
ZLI_DESC= PECL ZLIB support
|
|
|
|
USES= pear
|
|
|
|
CURL_USE= PHP=curl
|
|
FILEINFO_USE= PHP=fileinfo
|
|
ZLIB_USE= PHP=zlib
|
|
|
|
.include <bsd.port.mk>
|