blob: 666241a61763116e6bb2c58901b63808a7d5d956 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MODULE_AUTHOR=MLEHMANN
MODULE_VERSION=1.5
inherit perl-module
DESCRIPTION="A Perl interface to the uulib library"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="system-uulib test"
RDEPEND="
system-uulib? ( >=dev-libs/uulib-0.5.20-r1 )
"
DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.520.0
dev-perl/Canary-Stability
"
SRC_TEST="do parallel"
src_prepare() {
if use system-uulib; then
epatch "${FILESDIR}/${P}-unbundle.patch"
ewarn "Building with USE=system-uulib known to be problematic and cause"
ewarn " Convert::UUlib to segfault when used. ( Bug #559930 )"
use test || ewarn "use of FEATURES=test strongly recommended";
fi
perl-module_src_prepare
}
|