Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/paml: ChangeLog paml-4.4c.ebuild paml-4.1.ebuild paml-4.2b-r1.ebuild
Date: Thu, 02 Sep 2010 06:56:21
Message-Id: 20100902065614.4380520051@flycatcher.gentoo.org
1 xarthisius 10/09/02 06:56:14
2
3 Modified: ChangeLog
4 Added: paml-4.4c.ebuild
5 Removed: paml-4.1.ebuild paml-4.2b-r1.ebuild
6 Log:
7 Version bump. Fixes bug 335608. Thanks to Diego for report.
8
9 (Portage version: 2.2_rc72/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.12 sci-biology/paml/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/paml/ChangeLog?rev=1.12&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/paml/ChangeLog?rev=1.12&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/paml/ChangeLog?r1=1.11&r2=1.12
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-biology/paml/ChangeLog,v
21 retrieving revision 1.11
22 retrieving revision 1.12
23 diff -u -r1.11 -r1.12
24 --- ChangeLog 9 Feb 2010 11:17:38 -0000 1.11
25 +++ ChangeLog 2 Sep 2010 06:56:14 -0000 1.12
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-biology/paml
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/ChangeLog,v 1.11 2010/02/09 11:17:38 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/ChangeLog,v 1.12 2010/09/02 06:56:14 xarthisius Exp $
31 +
32 +*paml-4.4c (02 Sep 2010)
33 +
34 + 02 Sep 2010; Kacper Kowalik <xarthisius@g.o> -paml-4.1.ebuild,
35 + -paml-4.2b-r1.ebuild, +paml-4.4c.ebuild:
36 + Version bump. Fixes bug 335608. Thanks to Diego for report.
37
38 09 Feb 2010; Pacho Ramos <pacho@g.o> paml-4.3a.ebuild:
39 amd64 stable, bug 298772
40
41
42
43 1.1 sci-biology/paml/paml-4.4c.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/paml/paml-4.4c.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/paml/paml-4.4c.ebuild?rev=1.1&content-type=text/plain
47
48 Index: paml-4.4c.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/paml-4.4c.ebuild,v 1.1 2010/09/02 06:56:14 xarthisius Exp $
53
54 EAPI="2"
55
56 inherit toolchain-funcs versionator
57
58 MY_P=$(version_format_string '${PN}$1$2')
59
60 DESCRIPTION="Phylogenetic Analysis by Maximum Likelihood"
61 HOMEPAGE="http://abacus.gene.ucl.ac.uk/software/paml.html"
62 SRC_URI="http://abacus.gene.ucl.ac.uk/software/${PN}${PV}.tar.gz"
63
64 LICENSE="free-noncomm"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68
69 S=${WORKDIR}/${MY_P}
70
71 src_prepare() {
72 # Notice send by mail to prof. Ziheng Yang
73 sed -i "s/\$(CC)/& \$(LDFLAGS)/" src/Makefile || die #335608
74 }
75
76 src_compile() {
77 emake -C src CC="$(tc-getCC)" \
78 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
79 }
80
81 src_install() {
82 pushd "${S}"/src
83 dobin baseml codeml basemlg mcmctree pamp evolver yn00 chi2 || die
84 popd
85 dodoc README.txt doc/* || die
86 insinto /usr/share/${PN}/control
87 doins *.ctl || die "Failed to install control files"
88 insinto /usr/share/${PN}/dat
89 doins stewart* *.dat dat/* || die "Failed to install data files"
90 insinto /usr/share/${PN}
91 doins -r examples/ || die "Failed to install examples"
92 }