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

EAPI=6

DIST_AUTHOR=HIDEAKIO
DIST_VERSION=0.18
inherit perl-module

DESCRIPTION="A Module::Build class for building XS modules"

SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 hppa ~ppc ~ppc64 x86"
IUSE="test examples"
RESTRICT="!test? ( test )"
# File::Basename -> perl
RDEPEND="
	dev-perl/Devel-CheckCompiler
	virtual/perl-Devel-PPPort
	virtual/perl-Exporter
	virtual/perl-ExtUtils-CBuilder
	virtual/perl-File-Path
	virtual/perl-XSLoader
	virtual/perl-parent
"
# File::Spec::Functions -> virtual/perl-File-Spec
# Test::More -> perl-Test-Simple
DEPEND="
	>=dev-perl/Module-Build-0.400.500
	${RDEPEND}
	test? (
		dev-perl/Capture-Tiny
		dev-perl/Cwd-Guard
		dev-perl/File-Copy-Recursive
		virtual/perl-File-Spec
		virtual/perl-File-Temp
		>=virtual/perl-Test-Simple-0.980.0
	)
"
src_install() {
	perl-module_src_install
	if use examples; then
		docompress -x usr/share/doc/${PF}/eg/
		insinto usr/share/doc/${PF}
		doins -r eg
	fi
}