blob: 1174d0de599e0cf3dada3d883794b5bc2ac79452 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Bayesian Inference of Phylogeny"
HOMEPAGE="http://mrbayes.csit.fsu.edu/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="debug mpi readline"
DEPEND="
sys-libs/ncurses:=
mpi? ( virtual/mpi )
readline? ( sys-libs/readline:= )
"
RDEPEND="${DEPEND}"
src_prepare() {
default
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.
eapply "${FILESDIR}"/mb_readline_312.patch
fi
sed -e 's:-ggdb::g' -i Makefile || die
}
src_compile() {
local myconf mycc
if use mpi; then
mycc=mpicc
else
mycc="$(tc-getCC)"
fi
use mpi && myconf="MPI=yes"
use readline || myconf="${myconf} USEREADLINE=no"
use debug && myconf="${myconf} DEBUG=yes"
emake \
OPTFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
CC=${mycc} \
${myconf}
}
src_install() {
dobin mb
insinto /usr/share/${PN}
doins *.nex
}
|