blob: 5621f607db81abf717da0e2ed8b434f0477276ac (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=LEONT
DIST_VERSION=0.008
inherit perl-module
DESCRIPTION="Signal masks made easy"
SLOT="0"
KEYWORDS="amd64 ~riscv ~x86"
IUSE="minimal"
RDEPEND="
!minimal? ( dev-perl/Thread-SigMask )
virtual/perl-Carp
dev-perl/IPC-Signal
"
BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
test? (
virtual/perl-File-Spec
virtual/perl-IO
virtual/perl-Test-Simple
)
"
PERL_RM_FILES=( t/release-pod-syntax.t )
|