blob: 15b10ea7bfc1d107951a053d4412836142fcbe19 (
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
48
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=JKEENAN
DIST_VERSION=6.11
DIST_EXAMPLES=("demo/*")
inherit perl-module toolchain-funcs
DESCRIPTION="Powerful feature-rich perl source code profiler"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
RDEPEND="
>=dev-perl/File-Which-1.90.0
virtual/perl-Getopt-Long
dev-perl/JSON-MaybeXS
virtual/perl-Scalar-List-Utils
virtual/perl-XSLoader
sys-libs/zlib:0=
"
DEPEND="
sys-libs/zlib:0=
"
BDEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/Capture-Tiny
>=dev-perl/Test-Differences-0.60.0
>=virtual/perl-Test-Simple-0.840.0
)
"
PERL_RM_FILES=(
t/68-hashline.t
t/71-moose.t
t/72-autodie.t
t/90-pod.t
t/91-pod_coverage.t
t/92-file_port.t
)
src_configure() {
tc-export CPP
perl-module_src_configure
}
|