46 lines
986 B
Bash
46 lines
986 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DIST_AUTHOR=HIDEAKIO
|
|
DIST_VERSION=0.16
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="A Module::Build class for building XS modules"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 hppa ~ppc ~x86"
|
|
IUSE="test examples"
|
|
# 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
|
|
}
|