blob: c26cb0c4171297bae0d51e89a4803eeadc2c82c7 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=SZABGAB
MODULE_VERSION=2.17
inherit perl-module
DESCRIPTION="Perl module for Term-ProgressBar"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-perl/Class-MethodMaker
dev-perl/TermReadKey
"
DEPEND="${RDEPEND}
test? (
>=dev-perl/Test-Exception-0.310.0
>=dev-perl/Capture-Tiny-0.130.0
)
"
SRC_TEST="do"
|