blob: e166a0334336e1ab66aec902e745050a966db6d9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.4-r1.ebuild,v 1.2 2010/01/06 20:47:57 tove Exp $
EAPI=2
MODULE_AUTHOR="DANIEL"
inherit perl-module
DESCRIPTION="Perl interface to Alec Muffett's Cracklib"
SLOT="0"
LICENSE="Artistic"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="test"
RDEPEND="sys-libs/cracklib"
DEPEND="${RDEPEND}
test? ( dev-perl/Pod-Coverage
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage )"
SRC_TEST="do"
PATCHES=( "${FILESDIR}"/1.4-disable-reversed-test.patch )
|