blob: 44499cf50933b18fe0891fba858a4d9412890f3e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Bio-SamTools/Bio-SamTools-1.29.ebuild,v 1.1 2011/07/20 00:43:13 weaver Exp $
EAPI=4
MODULE_AUTHOR="LDS"
inherit perl-module
DESCRIPTION="Read SAM/BAM database files"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sci-biology/bioperl
virtual/perl-ExtUtils-CBuilder
virtual/perl-Module-Build
sci-biology/samtools"
RDEPEND="${DEPEND}"
SRC_TEST=do
src_prepare() {
sed -i -e 's|my $HeaderFile = "bam.h";|my $HeaderFile = "bam/bam.h";|' \
-e 's|my $LibFile = "libbam.a";|my $LibFile = "libbam.so";|' Build.PL || die
sed -i -e 's|#include "bam.h"|#include "bam/bam.h"|' \
-e 's|#include "khash.h"|#include "bam/khash.h"|' \
-e 's|#include "faidx.h"|#include "bam/faidx.h"|' lib/Bio/DB/Sam.xs || die
perl-module_src_prepare
}
|