gentoo/dev-perl/Parallel-Prefork/Parallel-Prefork-0.180.0-r1.ebuild
Yu Gu 8ea41b2d08
dev-perl/Parallel-Prefork: Keyword 0.180.0-r1 riscv, #872365
Signed-off-by: Yu Gu <guyu2876@gmail.com>
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
2022-09-27 14:01:53 +02:00

37 lines
776 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=KAZUHO
DIST_VERSION=0.18
inherit perl-module
DESCRIPTION="A simple prefork server framework"
SLOT="0"
KEYWORDS="amd64 ~riscv ~x86"
RDEPEND="
>=dev-perl/Class-Accessor-Lite-0.40.0
dev-perl/List-MoreUtils
>=dev-perl/Proc-Wait3-0.30.0
dev-perl/Scope-Guard
dev-perl/Signal-Mask
"
BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.420.0
test? (
dev-perl/Test-Requires
dev-perl/Test-SharedFork
)
"
PATCHES=( "${FILESDIR}/${P}-RT113449.patch" )
src_prepare() {
sed -i -e 's/use inc::Module::Install/use lib q[.]; use inc::Module::Install/' Makefile.PL ||
die "Can't patch Makefile.PL for 5.26 dot-in-inc"
perl-module_src_prepare
}