blob: cf7feed786d42cc5e971f2741de4ec51c3375fc3 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/bowtie/bowtie-0.9.9.2.ebuild,v 1.1 2009/05/02 23:48:39 weaver 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)
src_prepare() {
sed -i 's/$(CXX) $(RELEASE_FLAGS)/$(CXX) $(CXXFLAGS) $(RELEASE_FLAGS)/' "${S}/Makefile" || die
}
src_install() {
dobin bowtie bowtie-* || die
newman MANUAL bowtie.1
dodoc AUTHORS NEWS TUTORIAL
}
|