Gentoo Archives: gentoo-commits

From: "Andrey Kislyuk (weaver)" <weaver@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/infernal: ChangeLog infernal-1.0.2.ebuild
Date: Wed, 27 Jan 2010 15:42:57
Message-Id: E1NaA2f-0008NM-Ji@stork.gentoo.org
1 weaver 10/01/27 15:42:53
2
3 Modified: ChangeLog
4 Added: infernal-1.0.2.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 sci-biology/infernal/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/infernal/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/infernal/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/infernal/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/infernal/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 22 Sep 2009 13:05:32 -0000 1.4
23 +++ ChangeLog 27 Jan 2010 15:42:52 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-biology/infernal
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/infernal/ChangeLog,v 1.4 2009/09/22 13:05:32 maekke Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/infernal/ChangeLog,v 1.5 2010/01/27 15:42:52 weaver Exp $
30 +
31 +*infernal-1.0.2 (27 Jan 2010)
32 +
33 + 27 Jan 2010; Andrey Kislyuk <weaver@g.o> +infernal-1.0.2.ebuild:
34 + Version bump
35
36 22 Sep 2009; Markus Meier <maekke@g.o> infernal-1.0.ebuild:
37 x86 stable, bug #282114
38
39
40
41 1.1 sci-biology/infernal/infernal-1.0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/infernal/infernal-1.0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/infernal/infernal-1.0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: infernal-1.0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-biology/infernal/infernal-1.0.2.ebuild,v 1.1 2010/01/27 15:42:53 weaver Exp $
51
52 EAPI="2"
53
54 DESCRIPTION="Inference of RNA alignments"
55 HOMEPAGE="http://infernal.janelia.org/"
56 SRC_URI="ftp://selab.janelia.org/pub/software/${PN}/${P}.tar.gz"
57
58 LICENSE="GPL-3"
59 SLOT="0"
60 IUSE="mpi"
61 KEYWORDS="~amd64 ~x86"
62
63 DEPEND="mpi? ( virtual/mpi )"
64 RDEPEND="${DEPEND}"
65
66 src_configure() {
67 econf --prefix="${D}/usr" \
68 $(use_enable mpi) || die
69 }
70
71 src_install() {
72 emake install || die
73 (cd documentation/manpages; for i in *; do newman ${i} ${i/.man/.1}; done)
74 insinto /usr/share/${PN}
75 doins -r benchmarks tutorial intro matrices
76 dodoc 00README* Userguide.pdf documentation/release-notes/*
77 }