dev-php/pecl-mailparse: new revision of v2.1.6 supporting php-5.6.

Version 2.1.6 of pecl-mailparse supports php-5.6.x, but said support
was never added to the ebuild. This commit adds it, and upgrades the
ebuild to EAPI=6 and the new revision of php-ext-pecl-r3.eclass.

Gentoo-Bug: 588034

Package-Manager: portage-2.2.28
This commit is contained in:
Michael Orlitzky
2016-07-13 13:00:14 -04:00
parent f51fc3240b
commit 7e6dbb60ae
2 changed files with 32 additions and 32 deletions

View File

@@ -1,32 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PHP_EXT_NAME="mailparse"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS="README"
USE_PHP="php5-5 php5-4"
inherit php-ext-pecl-r2
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
DESCRIPTION="A PHP extension for parsing and working with RFC822 and RFC2045 (MIME) compliant messages"
LICENSE="PHP-2.02"
SLOT="0"
IUSE=""
for target in ${USE_PHP}; do
slot=${target/php}
slot=${slot/-/.}
PHPUSEDEPEND="${PHPUSEDEPEND}
php_targets_${target}? ( dev-lang/php:${slot}[unicode] )"
done
RDEPEND="${PHPUSEDEPEND}"
DEPEND="${RDEPEND}
dev-util/re2c"

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PHP_EXT_NAME="mailparse"
DOCS=( README )
USE_PHP="php5-5 php5-6"
inherit php-ext-pecl-r3
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
DESCRIPTION="PHP extension for parsing RFC822 and RFC2045 (MIME) messages"
LICENSE="PHP-2.02"
SLOT="0"
IUSE=""
for _target in ${USE_PHP}; do
_slot=${_target/php}
_slot=${_slot/-/.}
_PHPUSEDEPEND="${_PHPUSEDEPEND}
php_targets_${_target}? ( dev-lang/php:${_slot}[unicode] )"
done
unset slot target
RDEPEND="${_PHPUSEDEPEND}"
unset _PHPUSEDEPEND
DEPEND="${RDEPEND}
dev-util/re2c"