diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2018-03-08 19:48:41 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2018-03-08 19:48:41 +0000 |
commit | a1993564e04f29ecbaa05be740547c8677d423cd (patch) | |
tree | a942b9de6ec3ced252f123bf8a905b18d685aa72 /devel/pear-PHP_CodeCoverage/Makefile | |
parent | net/pear-Net_Sieve: Update to 1.4.3 (diff) |
Introduce PHP flavors.
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
Notes
Notes:
svn path=/head/; revision=463917
Diffstat (limited to 'devel/pear-PHP_CodeCoverage/Makefile')
-rw-r--r-- | devel/pear-PHP_CodeCoverage/Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/devel/pear-PHP_CodeCoverage/Makefile b/devel/pear-PHP_CodeCoverage/Makefile index f6b40bb3da1e..8d72260338e8 100644 --- a/devel/pear-PHP_CodeCoverage/Makefile +++ b/devel/pear-PHP_CodeCoverage/Makefile @@ -4,7 +4,6 @@ PORTNAME= PHP_CodeCoverage DISTVERSION= 5.2.2 CATEGORIES= devel pear -PKGNAMEPREFIX= pear- MAINTAINER= joneum@FreeBSD.org COMMENT= Library that provides PHP code coverage information @@ -12,15 +11,15 @@ COMMENT= Library that provides PHP code coverage information LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= pear-File_Iterator>=1.4.2:devel/pear-File_Iterator \ - pear-PHP_TokenStream>=1.4.11:devel/pear-PHP_TokenStream \ - pear-Text_Template>=1.2.0:textproc/pear-Text_Template \ - pear-channel-phpunit>=20110327:devel/pear-channel-phpunit -RUN_DEPENDS= pear-File_Iterator>=1.4.2:devel/pear-File_Iterator \ - pear-PHP_TokenStream>=1.4.11:devel/pear-PHP_TokenStream \ - pear-Text_Template>=1.2.0:textproc/pear-Text_Template \ - pear-channel-phpunit>=20110327:devel/pear-channel-phpunit +BUILD_DEPENDS= ${PEAR_PKGNAMEPREFIX}File_Iterator>=1.4.2:devel/pear-File_Iterator@${PHP_FLAVOR} \ + ${PEAR_PKGNAMEPREFIX}PHP_TokenStream>=1.4.11:devel/pear-PHP_TokenStream@${PHP_FLAVOR} \ + ${PEAR_PKGNAMEPREFIX}Text_Template>=1.2.0:textproc/pear-Text_Template@${PHP_FLAVOR} +RUN_DEPENDS= ${PEAR_PKGNAMEPREFIX}File_Iterator>=1.4.2:devel/pear-File_Iterator@${PHP_FLAVOR} \ + ${PEAR_PKGNAMEPREFIX}PHP_TokenStream>=1.4.11:devel/pear-PHP_TokenStream@${PHP_FLAVOR} \ + ${PEAR_PKGNAMEPREFIX}Text_Template>=1.2.0:textproc/pear-Text_Template@${PHP_FLAVOR} +USES= pear:env +PEAR_CHANNEL= phpunit USE_GITHUB= yes GH_ACCOUNT= sebastianbergmann GH_PROJECT= php-code-coverage @@ -32,7 +31,7 @@ DOM_DESC= Enable DOM support XDEBUG_DESC= Enable Xdebug support DOM_USE= PHP=dom -XDEBUG_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xdebug.so:devel/pecl-xdebug +XDEBUG_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xdebug.so:devel/pecl-xdebug@${PHP_FLAVOR} PHP_DIR= share/PHP |