blob: acae7e9d16f35bd4a0a1245c81a132a6680504e0 (
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
32
33
34
35
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MODULE_AUTHOR=SZABGAB
MODULE_VERSION=1.32
inherit perl-module
DESCRIPTION="Expect for Perl"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="test minimal"
RDEPEND="
virtual/perl-Carp
virtual/perl-Exporter
virtual/perl-IO
>=dev-perl/IO-Tty-1.110.0
!minimal? (
dev-perl/IO-Stty
)
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.640.0
test? (
virtual/perl-File-Temp
>=dev-perl/Test-Exception-0.320.0
virtual/perl-Test-Simple
)
"
SRC_TEST="do parallel"
|