blob: dade585d8698b1dd56edb32b43b3a1fc65c67258 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Mail-IMAPClient/Mail-IMAPClient-2.2.9.ebuild,v 1.20 2007/10/11 11:23:34 corsair Exp $
inherit perl-module eutils
DESCRIPTION="IMAP client module for Perl"
HOMEPAGE="http://search.cpan.org/~djkernen/"
SRC_URI="mirror://cpan/modules/by-module/Mail/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="alpha amd64 arm ia64 ppc ~ppc64 s390 sh sparc x86"
IUSE=""
DEPEND=">=virtual/perl-libnet-1.0703
dev-perl/Parse-RecDescent
dev-lang/perl"
# Tests are not enabled for this package intentionally. They require
# an active imap server to connect to, as well as interaction.
#SRC_TEST="do"
mydoc="FAQ"
src_unpack(){
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-skiptest.patch
}
|