blob: e8a5d07ee40c00b512b11d39f924e1eb16ae599b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
}
|