blob: ef49558b1a95b4164078a0dd190b9b192437c3ff (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module
DESCRIPTION="Search normal or compressed mailbox using a regular expression or dates"
HOMEPAGE="https://github.com/coppit/grepmail"
SRC_URI="mirror://cpan/authors/id/D/DC/DCOPPIT/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-perl/Date-Manip
dev-perl/File-HomeDir
dev-perl/Inline
>=dev-perl/Mail-Mbox-MessageParser-1.40.01
dev-perl/TimeDate
virtual/perl-Digest-MD5
"
DEPEND="${RDEPEND}
test? (
dev-perl/Test-Compile
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
)
"
|