Gentoo Archives: gentoo-commits

From: "Markus Dittrich (markusle)" <markusle@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/paml: ChangeLog paml-4.1.ebuild paml-4a.ebuild paml-3.15.ebuild
Date: Sun, 07 Sep 2008 12:02:06
Message-Id: E1KcIxv-000402-F2@stork.gentoo.org
1 markusle 08/09/07 12:02:03
2
3 Modified: ChangeLog
4 Added: paml-4.1.ebuild
5 Removed: paml-4a.ebuild paml-3.15.ebuild
6 Log:
7 Version bump and removed old ebuilds.
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.26-SENTINEL-2 i686)
9
10 Revision Changes Path
11 1.4 sci-biology/paml/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/paml/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/paml/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/paml/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/paml/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 20 Apr 2008 11:11:20 -0000 1.3
24 +++ ChangeLog 7 Sep 2008 12:02:02 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-biology/paml
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/ChangeLog,v 1.3 2008/04/20 11:11:20 markusle Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/ChangeLog,v 1.4 2008/09/07 12:02:02 markusle Exp $
30 +
31 +*paml-4.1 (07 Sep 2008)
32 +
33 + 07 Sep 2008; Markus Dittrich <markusle@g.o> -paml-3.15.ebuild,
34 + +paml-4.1.ebuild, -paml-4a.ebuild:
35 + Version bump and removed old ebuilds.
36
37 *paml-4b (20 Apr 2008)
38
39
40
41
42 1.1 sci-biology/paml/paml-4.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/paml/paml-4.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/paml/paml-4.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: paml-4.1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-biology/paml/paml-4.1.ebuild,v 1.1 2008/09/07 12:02:02 markusle Exp $
52
53 inherit toolchain-funcs
54
55 MY_PV="${PV/./}"
56 DESCRIPTION="Phylogenetic Analysis by Maximum Likelihood"
57 HOMEPAGE="http://abacus.gene.ucl.ac.uk/software/paml.html"
58 SRC_URI="http://abacus.gene.ucl.ac.uk/software/${PN}${PV}.tar.gz"
59 LICENSE="free-noncomm"
60 SLOT="0"
61 KEYWORDS="~x86 ~amd64"
62 IUSE=""
63 RDEPEND=""
64 DEPEND="${RDEPEND}"
65 S="${WORKDIR}/${PN}${MY_PV}"
66
67 src_compile() {
68 cd src
69 emake \
70 -f Makefile.UNIX \
71 CC="$(tc-getCC)" \
72 CFLAGS="${CFLAGS}" \
73 || die "make failed"
74 }
75
76 src_install() {
77 pushd "${S}"/src
78 dobin baseml codeml basemlg mcmctree pamp evolver yn00 chi2 \
79 || die "Failed to install binaries"
80 popd
81
82 dodoc README.txt doc/* || die "Failed to install docs"
83
84 insinto /usr/share/${PN}/control
85 doins *.ctl || die "Failed to install control files"
86
87 insinto /usr/share/${PN}/dat
88 doins stewart* *.dat dat/* || die "Failed to install data files"
89
90 insinto /usr/share/${PN}
91 doins -r examples/ || die "Failed to install examples"
92 }