blob: 16233b13da96283954a46f0459ae8fbd5c491473 (
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
|
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DIST_AUTHOR=MARTO
DIST_VERSION=4.61
inherit perl-module
DESCRIPTION="Framework for building reusable web-applications"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="minimal test"
RESTRICT="!test? ( test )"
RDEPEND="
!minimal? (
>=dev-perl/CGI-PSGI-0.90.0
)
>=dev-perl/CGI-4.210.0
virtual/perl-Carp
dev-perl/Class-ISA
dev-perl/HTML-Template
virtual/perl-Scalar-List-Utils
virtual/perl-libnet
"
DEPEND="
dev-perl/Module-Build
"
BDEPEND="${RDEPEND}
>=dev-perl/Module-Build-0.420.0
test? (
dev-perl/Test-Requires
>=virtual/perl-Test-Simple-0.470.0
)
"
|