blob: 58300f0a7f6cc78bbface0e98e3df539b0784f21 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
MODULE_AUTHOR=AVAR
MODULE_VERSION=0.08
inherit perl-module
DESCRIPTION="Test for and flip the taint flag without regex matches or eval"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
comment() { echo ''; }
COMMON_DEPEND="
virtual/perl-Test-Simple
virtual/perl-XSLoader
"
DEPEND="
${COMMON_DEPEND}
$(comment CONFIGURE REQUIRES)
>=virtual/perl-ExtUtils-MakeMaker-6.11 $(comment 6.110.0)
"
RDEPEND="
${COMMON_DEPEND}
"
SRC_TEST="do"
|