blob: 9d32fdf11c3c8abbb50946d00971c08837a821b0 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit eutils toolchain-funcs python-r1
DESCRIPTION="Genome-scale comparison of biological sequences"
HOMEPAGE="http://last.cbrc.jp/"
SRC_URI="http://last.cbrc.jp/${P}.zip"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"
DEPEND="app-arch/unzip"
RDEPEND=""
src_prepare() {
sed \
-e 's:-o $@:$(LDFLAGS) -o $@:g' \
-i src/makefile || die
}
src_compile() {
emake \
-e -C src \
CXX="$(tc-getCXX)" \
CC="$(tc-getCC)" \
STRICT="" || die
}
src_install() {
local i
dobin src/last{al,db,ex}
dodoc doc/*.txt ChangeLog.txt README.txt
dohtml doc/*html
cd scripts || die
for i in *py; do
python_parallel_foreach_impl python_newscript ${i} ${i%.py}
done
dobin *sh
}
|