blob: d43ba58ccb85791ac009b4b96b0266819ef00828 (
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
35
36
37
38
39
40
41
42
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/bowtie/bowtie-1.0.0.ebuild,v 1.1 2013/07/17 07:09:36 jlec Exp $
EAPI=5
inherit eutils toolchain-funcs
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 ~x64-macos"
DEPEND="app-arch/unzip"
RDEPEND=""
src_compile() {
unset CFLAGS
emake \
CC="$(tc-getCC)" \
CPP="$(tc-getCXX)" \
CXX="$(tc-getCXX)" \
EXTRA_FLAGS="${LDFLAGS}" \
RELEASE_FLAGS="${CXXFLAGS}"
}
src_install() {
dobin bowtie bowtie-*
exeinto /usr/share/${PN}/scripts
doexe scripts/*
insinto /usr/share/${PN}
doins -r genomes indexes
newman MANUAL bowtie.1
dodoc AUTHORS NEWS TUTORIAL doc/README
dohtml manual.html style.css
}
|