blob: b24c2c56215e724ae3aa66d04ef0ebd885af94d2 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/WWW-Mechanize/WWW-Mechanize-1.50.ebuild,v 1.1 2008/10/27 11:34:08 tove Exp $
MODULE_AUTHOR=PETDANCE
inherit perl-module
DESCRIPTION="Handy web browsing in a Perl object"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~x86"
IUSE="test"
# Bug in the tests - improper use of HTTP::Server
SRC_TEST="do"
# configure to run the local tests, but not the ones which access the Internet
myconf="--local --nolive"
RDEPEND="dev-lang/perl
dev-perl/IO-Socket-SSL
>=dev-perl/libwww-perl-5.815
dev-perl/HTTP-Response-Encoding
>=dev-perl/URI-1.25
>=dev-perl/HTML-Parser-3.34
dev-perl/Test-LongString"
DEPEND="${RDEPEND}
test? ( dev-perl/Test-Pod
dev-perl/Test-Taint
dev-perl/Test-Warn
dev-perl/Test-Memory-Cycle )"
|