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/raxml: ChangeLog raxml-7.2.2.ebuild
Date: Fri, 04 Sep 2009 14:04:22
Message-Id: E1MjeDK-0002tz-MW@stork.gentoo.org
1 weaver 09/09/04 19:12:50
2
3 Modified: ChangeLog
4 Added: raxml-7.2.2.ebuild
5 Log:
6 Version bump (but no mpi support in 7.2.2)
7 (Portage version: 2.2_rc30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sci-biology/raxml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/raxml/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/raxml/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/raxml/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/raxml/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 4 Sep 2009 03:04:43 -0000 1.1
23 +++ ChangeLog 4 Sep 2009 19:12:50 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-biology/raxml
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/raxml/ChangeLog,v 1.1 2009/09/04 03:04:43 weaver Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/raxml/ChangeLog,v 1.2 2009/09/04 19:12:50 weaver Exp $
29 +
30 +*raxml-7.2.2 (04 Sep 2009)
31 +
32 + 04 Sep 2009; Andrey Kislyuk <weaver@g.o> +raxml-7.2.2.ebuild:
33 + Version bump (but no mpi support in 7.2.2)
34
35 *raxml-7.0.4 (03 Sep 2009)
36
37
38
39
40 1.1 sci-biology/raxml/raxml-7.2.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/raxml/raxml-7.2.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/raxml/raxml-7.2.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: raxml-7.2.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-biology/raxml/raxml-7.2.2.ebuild,v 1.1 2009/09/04 19:12:50 weaver Exp $
50
51 EAPI="2"
52
53 inherit toolchain-funcs
54
55 DESCRIPTION="A Program for Sequential, Parallel & Distributed Inference of Large Phylogenetic Trees"
56 HOMEPAGE="http://wwwkramer.in.tum.de/exelixis/software.html"
57 SRC_URI="http://wwwkramer.in.tum.de/exelixis/software/RAxML-${PV}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 IUSE="+threads"
62 KEYWORDS="~amd64 ~x86"
63
64 # errors compiling mpi for version 7.2.2. mpi is enabled by adding -DPARALLEL to CFLAGS
65 DEPEND="" # mpi? ( virtual/mpi )"
66 RDEPEND="${DEPEND}"
67
68 S="${WORKDIR}/RAxML-${PV}"
69
70 src_prepare() {
71 sed -i -e 's/CFLAGS =/CFLAGS := ${CFLAGS}/' \
72 -e 's/CC = gcc/CC = '$(tc-getCC)'/' \
73 Makefile.* || die
74 }
75
76 src_compile() {
77 emake -f Makefile.SSE3.gcc || die
78 if use threads; then emake -f Makefile.SSE3.PTHREADS.gcc clean && emake -f Makefile.SSE3.PTHREADS.gcc || die; fi
79 }
80
81 src_install() {
82 dobin raxmlHPC-SSE3 || die
83 if use threads; then dobin raxmlHPC-PTHREADS-SSE3 || die; fi
84 }