blob: 9ad4d2d0635d9747e0c6175ddad5a7b328969c65 (
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
56
57
58
59
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PERL_EXPORT_PHASE_FUNCTIONS=no
inherit perl-module eutils toolchain-funcs
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils git-r3
DESCRIPTION="Whole genome assembler, Hawkeye and AMOScmp to compare multiple assemblies"
HOMEPAGE="http://sourceforge.net/projects/amos"
SRC_URI=""
EGIT_REPO_URI="git://amos.git.sourceforge.net/gitroot/amos/amos"
LICENSE="Artistic"
SLOT="0"
KEYWORDS=""
IUSE="mpi qt4"
DEPEND="
mpi? ( virtual/mpi )
dev-libs/boost
qt4? ( dev-qt/qtcore:4[qt3support]
dev-qt/qt3support:4 )
sci-biology/blat
sci-biology/jellyfish"
RDEPEND="${DEPEND}
dev-perl/DBI
dev-perl/Statistics-Descriptive
sci-biology/mummer"
# --with-jellyfish location of Jellyfish headers
# $ gap-links
# ERROR: Could not open file LIBGUESTFS_PATH=/usr/share/guestfs/appliance/
# $
src_install() {
default
python_replicate_script "${ED}"/usr/bin/goBambus2
# bambus needs TIGR::FASTAreader.pm and others
# configure --libdir sadly copies both *.a files and *.pm into /usr/lib64/AMOS/ and /usr/lib64/TIGR/, work around it
perl_set_version
insinto ${VENDOR_LIB}/AMOS
doins "${D}"/usr/lib64/AMOS/*.pm
insinto ${VENDOR_LIB}/TIGR
doins "${D}"/usr/lib64/TIGR/*.pm
# move also /usr/lib64/AMOS/AMOS.py to /usr/bin
mv "${D}"/usr/lib64/AMOS/*.py "${D}"/usr/bin || die
# zap the mis-placed files ('make install' is at fault)
rm -f "${D}"/usr/lib64/AMOS/*.pm
rm -rf "${D}"/usr/lib64/TIGR
echo AMOSCONF="${EPREFIX}"/etc/amos.acf > "${S}"/99amos || die
mkdir -p "${ED}"/etc || die
touch "${ED}"/etc/amos.acf || die
doenvd "${S}/99amos"
}
|