summaryrefslogtreecommitdiff
blob: 0e4bb4ef4a38083b146c8a63ae4e11687584a96c (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.4 2006/01/09 00:24:50 hparker 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="~amd64 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
}