blob: ca2c4d3959b0de6ce846230c2573d437e5b642a8 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/tophat/tophat-1.0.12.ebuild,v 1.5 2012/04/25 16:39:53 jlec Exp $
EAPI="2"
inherit autotools
DESCRIPTION="A fast splice junction mapper for RNA-Seq reads"
HOMEPAGE="http://tophat.cbcb.umd.edu/"
SRC_URI="http://tophat.cbcb.umd.edu/downloads/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
IUSE=""
KEYWORDS="amd64 x86"
DEPEND=""
RDEPEND="sci-biology/bowtie"
src_prepare() {
# fix gcc-4.4 missing include
sed -i '/#include <string>/ a #include <stdio.h>' "${S}/src/gff_juncs.cpp" || die
# fix parallel make race
sed -i -e 's/\$(top_builddir)\/src\///g' src/Makefile.am || die
# remove broken arch-dependent CFLAGS setting
perl -i -ne 'print unless /case "\${host_cpu}-\${host_os}" in/../^esac/' configure.ac || die
eautoreconf
}
src_install() {
einstall || die
dodoc AUTHORS NEWS THANKS
}
|