blob: 8c3610ac19e2749d661cc249405f8ca4fe9f7ee1 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/raxml/raxml-7.2.2.ebuild,v 1.3 2009/10/31 17:56:05 maekke Exp $
EAPI="2"
inherit toolchain-funcs
DESCRIPTION="A Program for Sequential, Parallel & Distributed Inference of Large Phylogenetic Trees"
HOMEPAGE="http://wwwkramer.in.tum.de/exelixis/software.html"
SRC_URI="http://wwwkramer.in.tum.de/exelixis/software/RAxML-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
IUSE="+threads"
KEYWORDS="amd64 x86"
# mpi is not supported in version 7.2.2. mpi is enabled by adding -DPARALLEL to CFLAGS
DEPEND="" # mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/RAxML-${PV}"
src_prepare() {
sed -i -e 's/CFLAGS =/CFLAGS := ${CFLAGS}/' \
-e 's/CC = gcc/CC = '$(tc-getCC)'/' \
Makefile.* || die
}
src_compile() {
emake -f Makefile.gcc || die
emake -f Makefile.SSE3.gcc clean && emake -f Makefile.SSE3.gcc || die
if use threads; then
emake -f Makefile.PTHREADS.gcc clean && emake -f Makefile.PTHREADS.gcc || die
emake -f Makefile.SSE3.PTHREADS.gcc clean && emake -f Makefile.SSE3.PTHREADS.gcc || die
fi
}
src_install() {
dobin raxmlHPC raxmlHPC-SSE3 || die
if use threads; then dobin raxmlHPC-PTHREADS raxmlHPC-PTHREADS-SSE3 || die; fi
}
|