You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
821 B
40 lines
821 B
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
DIST_AUTHOR=YANICK
|
|
DIST_VERSION=1.17
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="A simple parallel processing fork manager"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ia64 ~ppc sparc x86 ~sparc-solaris ~x86-solaris"
|
|
IUSE="test minimal examples"
|
|
|
|
RDEPEND="
|
|
virtual/perl-Carp
|
|
virtual/perl-File-Path
|
|
virtual/perl-File-Temp
|
|
virtual/perl-Storable
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
test? (
|
|
!minimal? ( >=virtual/perl-CPAN-Meta-2.120.900 )
|
|
virtual/perl-IO
|
|
>=virtual/perl-Test-Simple-0.940.0
|
|
dev-perl/Test-Warn
|
|
)
|
|
"
|
|
src_install() {
|
|
perl-module_src_install
|
|
if use examples; then
|
|
docompress -x /usr/share/doc/${PF}/examples
|
|
insinto /usr/share/doc/${PF}/examples
|
|
doins -r examples/*
|
|
fi
|
|
}
|