summaryrefslogtreecommitdiff
blob: 48695bb9dadb7a75a64f5df0d90243d7abb45c54 (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DIST_AUTHOR=MATTN
DIST_VERSION=1.14
inherit perl-module toolchain-funcs

DESCRIPTION="check that a library is available"

SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"

RDEPEND="
	virtual/perl-Exporter
	virtual/perl-File-Spec
	>=virtual/perl-File-Temp-0.160.0
"
BDEPEND="${RDEPEND}
	virtual/perl-ExtUtils-MakeMaker
	test? (
		dev-perl/Capture-Tiny
		>=dev-perl/Mock-Config-0.20.0
		>=virtual/perl-Test-Simple-0.880.0
	)
"
PATCHES=(
	"${FILESDIR}/${PN}-1.14-test-toolchain.patch"
)
src_test() {
	unset LD
	[[ -n "${CCLD}" ]] && export LD="${CCLD}"
	tc-export AR RANLIB
	perl-module_src_test
}