blob: 4e9aba5c1505be4f353e083215d6061939216fc2 (
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
36
37
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=DSKOLL
MODULE_VERSION=5.507
inherit perl-module
DESCRIPTION="A Perl module for parsing and creating MIME entities"
SLOT="0"
KEYWORDS="alpha amd64 ~arm64 hppa ia64 ~m68k ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="test"
RDEPEND="
>=virtual/perl-File-Path-1
>=virtual/perl-File-Spec-0.600.0
>=virtual/perl-File-Temp-0.180.0
virtual/perl-IO
>=virtual/perl-MIME-Base64-2.200.0
dev-perl/MailTools
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.590.0
test? (
dev-perl/Test-Deep
)
"
SRC_TEST="do"
# tests fail when done in parallel
src_test() {
perl_rm_files t/02-kwalitee.t t/02-pod-coverage.t t/02-pod.t
perl-module_src_test
}
|