mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-06-01 03:17:28 -07:00
Package-Manager: Portage-2.3.5, Repoman-2.3.2 RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"
29 lines
725 B
Bash
29 lines
725 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Mock Object library for PHPUnit"
|
|
HOMEPAGE="http://phpunit.de"
|
|
SRC_URI="https://github.com/sebastianbergmann/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-php/fedora-autoloader
|
|
>=dev-php/Text_Template-1.2
|
|
!>=dev-php/Text_Template-2.0
|
|
<dev-php/doctrine-instantiator-2.0
|
|
<dev-php/sebastian-exporter-3.0
|
|
!<dev-php/phpunit-5.4.0
|
|
>=dev-lang/php-5.6:*"
|
|
|
|
src_install() {
|
|
insinto /usr/share/php/PHPUnit/
|
|
doins -r src/*
|
|
insinto /usr/share/php/PHPUnit/Framework/MockObject
|
|
doins "${FILESDIR}/autoload.php"
|
|
}
|