diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-11-28 23:25:40 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-11-28 23:47:53 +0100 |
commit | 819737304ba33c3c1cec4d5d580bca5b169c4f07 (patch) | |
tree | 498d2037811cc681f9ca7c65f66d60fe484d63c7 /dev-php | |
parent | dev-php/pecl-raphf: add PHP 7.4 support (diff) | |
download | gentoo-819737304ba33c3c1cec4d5d580bca5b169c4f07.tar.gz gentoo-819737304ba33c3c1cec4d5d580bca5b169c4f07.tar.bz2 gentoo-819737304ba33c3c1cec4d5d580bca5b169c4f07.zip |
dev-php/pecl-http: add PHP 7.4 support
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-http/pecl-http-3.2.3.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dev-php/pecl-http/pecl-http-3.2.3.ebuild b/dev-php/pecl-http/pecl-http-3.2.3.ebuild index 564462685ed2..9d6429e44565 100644 --- a/dev-php/pecl-http/pecl-http-3.2.3.ebuild +++ b/dev-php/pecl-http/pecl-http-3.2.3.ebuild @@ -9,11 +9,11 @@ PHP_EXT_INI="yes" PHP_EXT_ZENDEXT="no" PHP_INI_NAME="50-http" -USE_PHP="php5-6 php7-1 php7-2 php7-3" +USE_PHP="php5-6 php7-1 php7-2 php7-3 php7-4" inherit php-ext-pecl-r3 -USE_PHP="php7-1 php7-2 php7-3" +USE_PHP="php7-1 php7-2 php7-3 php7-4" KEYWORDS="~amd64 ~x86" @@ -24,22 +24,23 @@ IUSE="ssl curl_ssl_gnutls curl_ssl_libressl curl_ssl_nss +curl_ssl_openssl" DEPEND="app-arch/brotli:= dev-libs/libevent - dev-php/pecl-propro:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?] - dev-php/pecl-raphf:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?] + dev-php/pecl-propro:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?] + dev-php/pecl-raphf:7[php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?,php_targets_php7-4?] net-dns/libidn2 sys-libs/zlib ssl? ( net-misc/curl[ssl,curl_ssl_gnutls=,curl_ssl_libressl=,curl_ssl_nss=,curl_ssl_openssl=] ) !ssl? ( net-misc/curl[-ssl] ) php_targets_php7-1? ( dev-lang/php:7.1[hash,session,iconv] ) php_targets_php7-2? ( dev-lang/php:7.2[hash,session,iconv] ) - php_targets_php7-3? ( dev-lang/php:7.3[hash,session,iconv] )" + php_targets_php7-3? ( dev-lang/php:7.3[hash,session,iconv] ) + php_targets_php7-4? ( dev-lang/php:7.4[session,iconv] )" RDEPEND="${DEPEND} php_targets_php5-6? ( dev-php/pecl-http:2[php_targets_php5-6] )" PHP_EXT_ECONF_ARGS=( --with-http --without-http-shared-deps --without-http-libidn-dir ) src_prepare() { - if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 ; then + if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then php-ext-source-r3_src_prepare else default_src_prepare @@ -47,7 +48,7 @@ src_prepare() { } src_install() { - if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 ; then + if use php_targets_php7-1 || use php_targets_php7-2 || use php_targets_php7-3 || use php_targets_php7-4 ; then php-ext-pecl-r3_src_install fi } |