blob: 7a4579f1ec6a1e25e8563475294ac397e072e43f (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Email-Abstract/Email-Abstract-3.001.ebuild,v 1.1 2008/12/31 17:03:55 tove Exp $
inherit versionator
MY_P="${PN}-$(delete_version_separator 2)"
S=${WORKDIR}/${MY_P}
MODULE_AUTHOR=RJBS
inherit perl-module
DESCRIPTION="unified interface to mail representations"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
RDEPEND=">=virtual/perl-Class-ISA-0.20
>=dev-perl/Email-Simple-1.91
>=virtual/perl-Module-Pluggable-1.5
virtual/perl-Scalar-List-Utils
dev-lang/perl"
DEPEND="${RDEPEND}
test? ( virtual/perl-Test-Simple
>=dev-perl/Test-Pod-1.14
>=dev-perl/Test-Pod-Coverage-1.08 )"
SRC_TEST="do"
|