blob: 6661a76520839469d9b43a22268b573f3bb3d03d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/perl-core/bignum/bignum-0.25.ebuild,v 1.5 2014/07/10 22:11:02 dilfridge Exp $
EAPI=3
MODULE_AUTHOR=FLORA
inherit perl-module
DESCRIPTION="Transparent BigNumber/BigRational support for Perl"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 ~ppc-macos ~x86-solaris"
IUSE="test"
RDEPEND=">=virtual/perl-Math-BigInt-1.88
>=virtual/perl-Math-BigRat-0.21"
DEPEND="${RDEPEND}
test? ( dev-perl/Test-Pod
>=dev-perl/Test-Pod-Coverage-1.08 )"
SRC_TEST="do"
|