32 lines
919 B
Bash
32 lines
919 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sci-biology/bowtie/bowtie-0.12.3.ebuild,v 1.3 2010/07/16 17:22:29 hwoarang Exp $
|
|
|
|
EAPI="2"
|
|
|
|
DESCRIPTION="An ultrafast memory-efficient short read aligner"
|
|
HOMEPAGE="http://bowtie-bio.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/bowtie-bio/${P}-src.zip"
|
|
|
|
LICENSE="Artistic"
|
|
SLOT="0"
|
|
IUSE=""
|
|
KEYWORDS="amd64 x86"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND=""
|
|
|
|
# NB: Bundles code from Maq (http://maq.sf.net) and the SeqAn library (http://www.seqan.de)
|
|
# TODO: properly report system CFLAGS in -DCOMPILE_OPTIONS
|
|
|
|
src_prepare() {
|
|
sed -i 's/$(CXX) $(RELEASE_FLAGS)/$(CXX) $(CXXFLAGS) $(RELEASE_FLAGS)/' "${S}/Makefile" || die
|
|
}
|
|
|
|
src_install() {
|
|
dobin bowtie bowtie-* || die
|
|
exeinto /usr/share/${PN}/scripts
|
|
doexe scripts/* || die
|
|
newman MANUAL bowtie.1
|
|
dodoc AUTHORS NEWS TUTORIAL
|
|
}
|