blob: 3c13b421f8e028252bec49f4fd8571b600b8f4aa (
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
42
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
DIST_AUTHOR=DAGOLDEN
DIST_VERSION=1.01
inherit perl-module
DESCRIPTION="Replaces random number generation with non-random number generation"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~x86"
IUSE="test minimal examples"
RDEPEND="
virtual/perl-Carp
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.170.0
test? (
!minimal? (
virtual/perl-CPAN-Meta
>=virtual/perl-CPAN-Meta-Requirements-2.120.900
)
virtual/perl-File-Spec
virtual/perl-Scalar-List-Utils
virtual/perl-Test-Simple
virtual/perl-version
)
"
src_install() {
perl-module_src_install
if use examples; then
docompress -x /usr/share/doc/${PF}/examples
docinto examples/
dodoc -r examples/*
fi
}
|