aboutsummaryrefslogtreecommitdiff
blob: 96b7146eee94bfea89badcac8ef70b2c73003181 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

inherit git-r3 toolchain-funcs

DESCRIPTION="STAR aligner: align RNA-seq reads to reference genome uncompressed suffix arrays"
HOMEPAGE="http://code.google.com/p/rna-star/"
EGIT_REPO_URI="https://github.com/alexdobin/STAR.git"
# http://rna-star.googlecode.com/files/STARmanual_2.3.0.1.pdf

LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""

# contains bundled version sci-biology/htslib-0.0.1
DEPEND=""
RDEPEND="${DEPEND}"

# contains bundled STAR-Fusion
src_prepare(){
	sed -e "s/= gcc/= $(tc-getCC)/;s/-O2/${CFLAGS}/g" -i source/htslib/Makefile || die
	sed -e "s/-O3/${CFLAGS}/g" -i source/Makefile || die
}

src_compile(){
	cd source || die
	emake STAR
}

src_install(){
	dobin source/STAR
	dodoc doc/STARmanual.pdf
}