2021-01-07 23:55:14 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2017-04-13 06:46:38 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=6
|
|
|
|
|
|
|
|
DIST_VERSION=2.26
|
|
|
|
DIST_AUTHOR=RURBAN
|
|
|
|
inherit perl-module
|
|
|
|
|
|
|
|
DESCRIPTION="Interface to Bzip2 compression library"
|
|
|
|
|
|
|
|
SLOT="0"
|
2021-01-07 23:55:14 +03:00
|
|
|
KEYWORDS="amd64 ~ia64 ~mips sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
2017-04-13 06:46:38 +03:00
|
|
|
IUSE="test"
|
2019-12-11 07:26:00 +03:00
|
|
|
RESTRICT="!test? ( test )"
|
2017-04-13 06:46:38 +03:00
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
app-arch/bzip2
|
|
|
|
virtual/perl-Carp
|
|
|
|
virtual/perl-File-Spec
|
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
|
|
test? ( virtual/perl-Test-Simple )
|
|
|
|
"
|
|
|
|
|
|
|
|
src_test() {
|
|
|
|
perl_rm_files t/900_*.t
|
|
|
|
perl-module_src_test
|
|
|
|
}
|