blob: 7fc97b6082ea68efbe25f6c508708346d62924e1 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
DIST_AUTHOR=JENSL
DIST_VERSION=0.5
inherit perl-module
DESCRIPTION="File::DirWalk - walk through a directory tree and run own code"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE="test"
RDEPEND="
>=virtual/perl-Carp-1.80.0
>=virtual/perl-File-Spec-3.250.100
"
DEPEND="${RDEPEND}
>=dev-perl/Module-Build-0.360.0
test? (
>=dev-perl/Test-Exception-0.270.0
>=virtual/perl-Test-Simple-0.720.0
)
"
PATCHES=(
"${FILESDIR}/${P}-qw-list.patch"
)
|