Files
gentoo/dev-perl/Devel-CallChecker/Devel-CallChecker-0.8.0-r1.ebuild
Andreas K. Hüttel 563d070cf6 dev-perl/Devel-CallChecker: Stable for amd64
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
2021-05-23 15:25:33 +02:00

47 lines
1009 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DIST_AUTHOR=ZEFRAM
DIST_VERSION=0.008
inherit perl-module
DESCRIPTION="Custom OP checking attached to subroutines"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-perl/DynaLoader-Functions-0.1.0
virtual/perl-Exporter
virtual/perl-XSLoader
virtual/perl-parent
"
DEPEND="
dev-perl/Module-Build
"
BDEPEND="${RDEPEND}
dev-perl/Module-Build
test? (
>=virtual/perl-ExtUtils-CBuilder-0.150.0
virtual/perl-ExtUtils-ParseXS
virtual/perl-File-Spec
virtual/perl-IO
virtual/perl-Test-Simple
)
"
PERL_RM_FILES=(
t/pod_cvg.t
t/pod_syn.t
)
src_configure() {
unset LD
[[ -n "${CCLD}" ]] && export LD="${CCLD}"
perl-module_src_configure
}
src_compile() {
./Build --config optimize="${CFLAGS}" build || die
}