blob: 066e01d5a710e45365ff34a89c67d6cc2ad573f2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/mrbayes/mrbayes-3.1.1.ebuild,v 1.5 2006/09/12 20:48:24 ribosome Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Bayesian Inference of Phylogeny"
HOMEPAGE="http://mrbayes.csit.fsu.edu/"
SRC_URI="mirror://sourceforge/${PN}/${P}_src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc-macos x86"
IUSE="mpi"
DEPEND="mpi? ( virtual/mpi )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -e "s:OPTFLAGS ?= -O3:OPTFLAGS = ${CFLAGS}:" \
-e "s:CC = gcc:CC = $(tc-getCC):" \
-i Makefile || die
if use mpi; then
sed -e "s:MPI ?= no:MPI=yes:" -i Makefile || die
fi
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dobin mb
dodoc readme.txt
}
|