blob: 1c3cdb12a1b3ca0af350a86ccec748550f2ffea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_PN="php-code-coverage"
DESCRIPTION="Collection, processing, and rendering for PHP code coverage"
HOMEPAGE="http://phpunit.de"
SRC_URI="https://github.com/sebastianbergmann/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86"
IUSE=""
S="${WORKDIR}/${MY_PN}-${PV}"
RDEPEND="dev-php/fedora-autoloader
>=dev-php/File_Iterator-1.3
!>=dev-php/File_Iterator-2.0
>=dev-php/Text_Template-1.2
!>=dev-php/Text_Template-2.0
>=dev-php/PHP_TokenStream-1.4
!>=dev-php/PHP_TokenStream-3.0
>=dev-php/sebastian-environment-1.3.2
!>=dev-php/sebastian-environment-3.0
>=dev-php/sebastian-version-1.0
!>=dev-php/sebastian-version-3.0
dev-php/sebastian-code-unit-reverse-lookup
!>=dev-php/sebastian-code-unit-reverse-lookup-2.0
|| (
dev-lang/php:5.6[xml,xmlwriter]
dev-lang/php:7.0[xml,xmlwriter]
dev-lang/php:7.1[xml,xmlwriter]
)"
src_install() {
insinto /usr/share/php/PHP/CodeCoverage
doins -r src/*
doins "${FILESDIR}/autoload.php"
}
pkg_postinst() {
ewarn "This library now loads via /usr/share/php/PHP/CodeCoverage/autoload.php"
ewarn "Please update any scripts to require the autoloader"
}
|