diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-12-21 09:05:29 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-12-21 09:05:29 +0000 |
commit | b4e08022cffdcc6f7cc4ba5cc78b155affa0335e (patch) | |
tree | e50e737da0dc21875702f9665f7f41cf6b82b736 /sci-biology | |
parent | Add Prefix keywords (diff) | |
download | gentoo-2-b4e08022cffdcc6f7cc4ba5cc78b155affa0335e.tar.gz gentoo-2-b4e08022cffdcc6f7cc4ba5cc78b155affa0335e.tar.bz2 gentoo-2-b4e08022cffdcc6f7cc4ba5cc78b155affa0335e.zip |
Cleaned old
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/mrbayes/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/mrbayes/mrbayes-3.1.2.ebuild | 42 |
2 files changed, 4 insertions, 43 deletions
diff --git a/sci-biology/mrbayes/ChangeLog b/sci-biology/mrbayes/ChangeLog index 7ee44d74e3f4..6e131881219e 100644 --- a/sci-biology/mrbayes/ChangeLog +++ b/sci-biology/mrbayes/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/mrbayes # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/mrbayes/ChangeLog,v 1.25 2011/12/21 08:59:32 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/mrbayes/ChangeLog,v 1.26 2011/12/21 09:05:28 jlec Exp $ + + 21 Dec 2011; Justin Lecher <jlec@gentoo.org> -mrbayes-3.1.2.ebuild: + Cleaned old 21 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> mrbayes-3.1.2-r1.ebuild: x86 stable wrt bug #393969 diff --git a/sci-biology/mrbayes/mrbayes-3.1.2.ebuild b/sci-biology/mrbayes/mrbayes-3.1.2.ebuild deleted file mode 100644 index 5beeecb187c4..000000000000 --- a/sci-biology/mrbayes/mrbayes-3.1.2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# 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.ebuild,v 1.9 2011/03/06 16:53:59 jlec Exp $ - -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="mpi readline" -KEYWORDS="amd64 x86 ~x86-linux ~ppc-macos ~sparc-solaris" - -DEPEND=" - mpi? ( virtual/mpi ) - readline? ( sys-libs/readline )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -e "s:OPTFLAGS ?= -O3:CFLAGS = ${CFLAGS}:" \ - -e "s:CC = gcc:CC = $(tc-getCC):" \ - -i Makefile || die "Patching CC/CFLAGS." - 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. - epatch "${FILESDIR}"/mb_readline_312.patch - fi -} - -src_install() { - dobin mb || die "Installation failed." -} |