Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/phylobayes/
Date: Fri, 02 Mar 2012 19:51:34
Message-Id: 1330717875.7aa8b3f5f5d9e6e0a4d95ebc1a3bfcabfacfa8ba.mmokrejs@gentoo
1 commit: 7aa8b3f5f5d9e6e0a4d95ebc1a3bfcabfacfa8ba
2 Author: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Fri Mar 2 19:51:15 2012 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Mar 2 19:51:15 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7aa8b3f5
7
8 sci-biology/phylobayes: new package, no explicit LICENSE stated
9
10 ---
11 sci-biology/phylobayes/ChangeLog | 10 +++++++
12 sci-biology/phylobayes/phylobayes-3.3b.ebuild | 37 +++++++++++++++++++++++++
13 2 files changed, 47 insertions(+), 0 deletions(-)
14
15 diff --git a/sci-biology/phylobayes/ChangeLog b/sci-biology/phylobayes/ChangeLog
16 new file mode 100644
17 index 0000000..ebd3362
18 --- /dev/null
19 +++ b/sci-biology/phylobayes/ChangeLog
20 @@ -0,0 +1,10 @@
21 +# ChangeLog for sci-biology/phylobayes
22 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
23 +# $Header: $
24 +
25 +*phylobayes-3.3b (02 Mar 2012)
26 +
27 + 02 Mar 2012; Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
28 + +phylobayes-3.3b.ebuild:
29 + initial ebuild
30 +
31
32 diff --git a/sci-biology/phylobayes/phylobayes-3.3b.ebuild b/sci-biology/phylobayes/phylobayes-3.3b.ebuild
33 new file mode 100644
34 index 0000000..b456964
35 --- /dev/null
36 +++ b/sci-biology/phylobayes/phylobayes-3.3b.ebuild
37 @@ -0,0 +1,37 @@
38 +# Copyright 1999-2012 Gentoo Foundation
39 +# Distributed under the terms of the GNU General Public License v2
40 +# $Header: $
41 +
42 +EAPI=3
43 +
44 +DESCRIPTION="Phylogenetic Bayesian analysis program"
45 +HOMEPAGE="http://megasun.bch.umontreal.ca/People/lartillot/www/download.html"
46 +SRC_URI="http://megasun.bch.umontreal.ca/People/lartillot/www/phylobayes3.3b.tar.gz
47 + http://megasun.bch.umontreal.ca/People/lartillot/www/phylobayes3.3.pdf"
48 +
49 +LICENSE=""
50 +SLOT="0"
51 +#KEYWORDS="~amd64 ~x86"
52 +KEYWORDS=""
53 +IUSE="gsl latex"
54 +
55 +DEPEND="gsl? ( sci-libs/gsl )"
56 +RDEPEND="${DEPEND}
57 + latex? ( dev-texlive/texlive-latex
58 + app-text/dvipsk )"
59 +
60 +S="${WORKDIR}"/phylobayes3.3b
61 +
62 +src_prepare(){
63 + if use gsl; then
64 + sed -i 's/#USE_GSL/USE_GSL/' sources/Makefile
65 + sed -i 's/CC/CXX/g' sources/Makefile
66 + fi
67 +}
68 +
69 +src_install(){
70 + dobin exe_lin64/*
71 + insinto /usr/share/"${P}"/aux_ps
72 + doins aux_ps/header.tex
73 + dodoc "${DISTDIR}"/phylobayes3.3.pdf
74 +}