You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-biology/mrbayes/mrbayes-3.1.2-r1.ebuild

53 lines
1.1 KiB

# Copyright 1999-2011 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-r1.ebuild,v 1.5 2011/12/21 08:59:32 phajdan.jr Exp $
EAPI=4
inherit eutils 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"
IUSE="debug mpi readline"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
DEPEND="
sys-libs/ncurses
mpi? ( virtual/mpi )
readline? ( sys-libs/readline )"
RDEPEND="${DEPEND}"
src_prepare() {
use readline && epatch "${FILESDIR}"/mb_readline_312.patch
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
}