summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-12-11 00:48:22 +0100
committerDavid Seifert <soap@gentoo.org>2019-12-11 00:48:22 +0100
commitc55800cb358f245934db72bc33a50b276d345621 (patch)
tree66cd2a3a436e6bc8d57e378c5d98650e9c34c34f /sci-biology
parentsci-biology/plink: Remove old (diff)
downloadgentoo-c55800cb358f245934db72bc33a50b276d345621.tar.gz
gentoo-c55800cb358f245934db72bc33a50b276d345621.tar.bz2
gentoo-c55800cb358f245934db72bc33a50b276d345621.zip
sci-biology/mrbayes: Remove old
Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/mrbayes/mrbayes-3.1.2-r1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/sci-biology/mrbayes/mrbayes-3.1.2-r1.ebuild b/sci-biology/mrbayes/mrbayes-3.1.2-r1.ebuild
deleted file mode 100644
index b67b4b228f9b..000000000000
--- a/sci-biology/mrbayes/mrbayes-3.1.2-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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:0 )"
-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
-}