blob: 1147cec5a486d570da84ccf83f105c98c535700f (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR=LDS
DIST_VERSION=1.43
inherit perl-module toolchain-funcs
DESCRIPTION="Read SAM/BAM database files"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="|| ( Apache-2.0 Artistic-2 GPL-1+ )"
RDEPEND="
>=sci-biology/bioperl-1.6.9
sci-biology/samtools:0.1-legacy=
"
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-CBuilder
>=dev-perl/Module-Build-0.420.0
"
PATCHES=(
"${FILESDIR}"/${PN}-1.430.0-legacy.patch
)
src_prepare() {
perl-module_src_prepare
tc-export CC
}
|