diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2010-01-27 15:42:53 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2010-01-27 15:42:53 +0000 |
commit | 189cf654c8bad3bddf8d5423d1fc43b1908825ea (patch) | |
tree | f572eabdae0810260bdd341daf2777d6b1df91db /sci-biology/infernal | |
parent | fixed live ebuild && patch - bug 302331 (diff) | |
download | gentoo-2-189cf654c8bad3bddf8d5423d1fc43b1908825ea.tar.gz gentoo-2-189cf654c8bad3bddf8d5423d1fc43b1908825ea.tar.bz2 gentoo-2-189cf654c8bad3bddf8d5423d1fc43b1908825ea.zip |
Version bump
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/infernal')
-rw-r--r-- | sci-biology/infernal/ChangeLog | 9 | ||||
-rw-r--r-- | sci-biology/infernal/infernal-1.0.2.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/sci-biology/infernal/ChangeLog b/sci-biology/infernal/ChangeLog index 953db1fdba58..c78f5847a0f1 100644 --- a/sci-biology/infernal/ChangeLog +++ b/sci-biology/infernal/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-biology/infernal -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/infernal/ChangeLog,v 1.4 2009/09/22 13:05:32 maekke Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/infernal/ChangeLog,v 1.5 2010/01/27 15:42:52 weaver Exp $ + +*infernal-1.0.2 (27 Jan 2010) + + 27 Jan 2010; Andrey Kislyuk <weaver@gentoo.org> +infernal-1.0.2.ebuild: + Version bump 22 Sep 2009; Markus Meier <maekke@gentoo.org> infernal-1.0.ebuild: x86 stable, bug #282114 diff --git a/sci-biology/infernal/infernal-1.0.2.ebuild b/sci-biology/infernal/infernal-1.0.2.ebuild new file mode 100644 index 000000000000..e1fbe061d2e0 --- /dev/null +++ b/sci-biology/infernal/infernal-1.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/infernal/infernal-1.0.2.ebuild,v 1.1 2010/01/27 15:42:53 weaver Exp $ + +EAPI="2" + +DESCRIPTION="Inference of RNA alignments" +HOMEPAGE="http://infernal.janelia.org/" +SRC_URI="ftp://selab.janelia.org/pub/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +IUSE="mpi" +KEYWORDS="~amd64 ~x86" + +DEPEND="mpi? ( virtual/mpi )" +RDEPEND="${DEPEND}" + +src_configure() { + econf --prefix="${D}/usr" \ + $(use_enable mpi) || die +} + +src_install() { + emake install || die + (cd documentation/manpages; for i in *; do newman ${i} ${i/.man/.1}; done) + insinto /usr/share/${PN} + doins -r benchmarks tutorial intro matrices + dodoc 00README* Userguide.pdf documentation/release-notes/* +} |