blob: 5837f6a39579261161830ea6c42af0134c8c1991 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR="REHSACK"
DIST_VERSION=${PV%.0}
inherit perl-module
DESCRIPTION="A module to implement some of AutoConf macros in pure perl"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-perl/Capture-Tiny
virtual/perl-Carp
virtual/perl-Exporter
>=virtual/perl-ExtUtils-CBuilder-0.280.220
virtual/perl-File-Spec
virtual/perl-File-Temp
>=virtual/perl-Scalar-List-Utils-1.180.0
virtual/perl-Text-ParseWords
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
test? ( >=virtual/perl-Test-Simple-0.900.0 )
"
|