blob: 34b59e9fb0a3fd31b01873314d44337b8312bb78 (
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
49
50
51
52
53
54
55
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Prototype ncRNA genefinder"
HOMEPAGE="http://selab.janelia.org/software.html"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-lang/perl
sci-biology/hmmer:2"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-glibc-2.10.patch
"${FILESDIR}"/${P}-ldflags.patch
)
src_prepare() {
default
rm -v squid*/*.a || die
}
src_configure() {
tc-export AR CC RANLIB
}
src_compile() {
local d
for d in squid squid02 src; do
emake -C ${d}
done
}
src_install() {
dobin src/{cfgbuild,eqrna,eqrna_sample,rnamat_main} scripts/*
newdoc 00README README
dodoc -r documentation/.
insinto /usr/share/${PN}/data
doins -r lib/.
insinto /usr/share/${PN}/demos
doins -r Demos/.
# Sets the path to the QRNA data files
doenvd "${FILESDIR}"/26qrna
}
|