diff options
author | David Seifert <soap@gentoo.org> | 2020-11-01 19:35:53 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-01 19:35:53 +0100 |
commit | 9d4c4862d17a28af87e503a3f30b866efd544aad (patch) | |
tree | a2d31a9e63ab05ec4e239d74a7985b85ca93d6fd /sci-biology/paml/paml-4.9j.ebuild | |
parent | sci-biology/dialign-tx: Fix -fno-common (diff) | |
download | gentoo-9d4c4862d17a28af87e503a3f30b866efd544aad.tar.gz gentoo-9d4c4862d17a28af87e503a3f30b866efd544aad.tar.bz2 gentoo-9d4c4862d17a28af87e503a3f30b866efd544aad.zip |
sci-biology/paml: Version bump to 4.9j
Bug: https://bugs.gentoo.org/706708
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology/paml/paml-4.9j.ebuild')
-rw-r--r-- | sci-biology/paml/paml-4.9j.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sci-biology/paml/paml-4.9j.ebuild b/sci-biology/paml/paml-4.9j.ebuild new file mode 100644 index 000000000000..e8a5d07ee40c --- /dev/null +++ b/sci-biology/paml/paml-4.9j.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Phylogenetic Analysis by Maximum Likelihood" +HOMEPAGE="http://abacus.gene.ucl.ac.uk/software/paml.html" +SRC_URI="http://abacus.gene.ucl.ac.uk/software/${P/-/}.tgz" + +LICENSE="free-noncomm" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/${P/-/}" +PATCHES=( + "${FILESDIR}"/${PN}-4.9j-makefile.patch + "${FILESDIR}"/${PN}-4.9j-fno-common.patch +) + +src_configure() { + tc-export CC +} + +src_compile() { + emake -C src +} + +src_install() { + dobin src/{baseml,basemlg,codeml,evolver,pamp,mcmctree,infinitesites,yn00,chi2} + + dodoc -r README.txt doc/. + + insinto /usr/share/${PN}/control + doins *.ctl + + insinto /usr/share/${PN}/dat + doins -r stewart* *.dat dat/. + + insinto /usr/share/${PN} + doins -r examples +} |