blob: abd32ec0ac0cb239701154cc85dc5af3a7e5905b (
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
44
45
46
47
48
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DOCS_BUILDER="doxygen"
DOCS_CONFIG_NAME="doxygen.conf"
inherit docs
DESCRIPTION="Eukaryotic gene predictor"
HOMEPAGE="https://bioinf.uni-greifswald.de/augustus/"
SRC_URI="https://github.com/Gaius-Augustus/Augustus/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${P^}"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-db/sqlite:3
dev-db/mysql++:=
dev-db/mysql-connector-c:=
dev-libs/boost:=[zlib]
sci-biology/bamtools:=
sci-biology/samtools:0
sci-libs/gsl:=
sci-libs/htslib:=
sci-libs/suitesparse
sci-mathematics/lpsolve
sys-libs/zlib
"
DEPEND="${RDEPEND}"
src_compile() {
default
docs_compile
}
src_install() {
einstalldocs
# from upstream Makefile install:
dodir "opt/${P}"
cp -a config bin scripts "${ED}/opt/${P}" || die
local file
for file in bin/*; do
dosym "../${P}/${file}" "/opt/${file}"
done
}
|