# Copyright 1999-2010 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.4 2010/04/05 12:08:12 phajdan.jr 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 / a #include ' "${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 || die } src_install() { einstall || die dodoc AUTHORS NEWS THANKS }