summaryrefslogtreecommitdiff
blob: df93f271249a3ae5a8341cdbb6d01339333e585f (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

MODULE_AUTHOR=ESH
MODULE_VERSION=0.17
inherit perl-module

DESCRIPTION="32-bit block cipher based on Skipjack"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test +recommended"
comment() { true;}
RDEPEND="
	$(comment perl 5.8.0)
	recommended? (
		$(comment Crypt::Skip32::XS)
		dev-perl/Crypt-Skip32-XS
		$(comment Crypt::CBC 2.22)
		>=dev-perl/Crypt-CBC-2.22
	)
"
DEPEND="
	$(comment --configure)
	dev-perl/Module-Build
	$(comment --build)
	test? (
		$(comment Test::More 0.62)
		>=virtual/perl-Test-Simple-0.62
		$(comment Test::NoWarnings 0.084)
		>=dev-perl/Test-NoWarnings-0.084
		recommended? (
			$(comment Test::Distribution)
			dev-perl/Test-Distribution
		)

	)
	${RDEPEND}
"