blob: 3b2f5bcf4ed82139a2080cc44f530b3de127f9ee (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=LEONT
MODULE_VERSION=0.010
inherit perl-module
DESCRIPTION='Check for presence of dependencies'
SLOT="0"
KEYWORDS="amd64 ~arm ~hppa ppc x86"
IUSE="test"
RESTRICT="!test? ( test )"
# rdep Test::Builder -> perl-Test-Simple
RDEPEND="
>=virtual/perl-CPAN-Meta-2.120.920
>=dev-perl/CPAN-Meta-Check-0.7.0
>=virtual/perl-Exporter-5.570.0
virtual/perl-Scalar-List-Utils
virtual/perl-Test-Simple
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
test? (
virtual/perl-File-Spec
>=virtual/perl-Test-Simple-0.880.0
)
"
SRC_TEST="do"
|