blob: 1f65545de303f80ed6c3f6b9681372305c41da19 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/mrbayes/mrbayes-3.1.2.ebuild,v 1.6 2008/03/17 00:08:00 dberkholz Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Bayesian Inference of Phylogeny"
LICENSE="GPL-2"
HOMEPAGE="http://mrbayes.csit.fsu.edu/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
SLOT="0"
IUSE="mpi readline"
KEYWORDS="~amd64 x86"
DEPEND="mpi? ( virtual/mpi )
readline? ( sys-libs/readline )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -e "s:OPTFLAGS ?= -O3:CFLAGS = ${CFLAGS}:" \
-e "s:CC = gcc:CC = $(tc-getCC):" \
-i Makefile || die "Patching CC/CFLAGS."
if use mpi; then
sed -e "s:MPI ?= no:MPI=yes:" -i Makefile || die "Patching MPI support."
fi
if ! use readline; then
sed -e "s:USEREADLINE ?= yes:USEREADLINE=no:" \
-i Makefile || die "Patching readline support."
else
# Only needed for OSX with an old (4.x) version of
# libreadline, but it doesn't hurt for other distributions.
epatch "${FILESDIR}"/mb_readline_312.patch
fi
}
src_install() {
dobin mb || die "Installation failed."
}
|