blob: 8d4f1bfc8918b43fc23c1e2e5b8090c2962a0ee3 (
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
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
MODULE_AUTHOR=ETHER
MODULE_VERSION=1.75
inherit perl-module
DESCRIPTION="Handy web browsing in a Perl object"
SLOT="0"
KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="test"
RDEPEND="
dev-perl/IO-Socket-SSL
|| (
( >dev-perl/libwww-perl-6 dev-perl/HTML-Form )
<dev-perl/libwww-perl-6
)
>=dev-perl/URI-1.36
>=dev-perl/HTML-Parser-3.34
dev-perl/HTML-Tree
"
DEPEND="${RDEPEND}
test? (
dev-perl/PadWalker
dev-perl/Test-Exception
dev-perl/Test-NoWarnings
dev-perl/Test-Taint
>=dev-perl/Test-Warn-0.11
dev-perl/Test-Memory-Cycle
dev-perl/HTTP-Server-Simple
)
"
# configure to run the local tests, but not the ones which access the Internet
myconf="--local --nolive"
SRC_TEST=do
# MI makes these configure problems
src_prepare() {
use test && perl_rm_files t/pod.t t/pod-coverage.t
perl-module_src_prepare
}
|