aboutsummaryrefslogtreecommitdiff
blob: 5716596e3ae07ea97cb4509f6e99def32f1a7317 (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

DESCRIPTION="CDS prediction overcoming sequencing errors in unfinished cDNA"
HOMEPAGE="http://bioinformatics.cenargen.embrapa.br/portrait/download"
SRC_URI="http://bioinformatics.cenargen.embrapa.br/portrait/download/angle.tar.gz -> ${P}.tar.gz"

# According to Roberto T Arrial (author of portrait) for the purpose of his
# portrait project the binaries were provided under a BSD license.
# The output from Angle is modified for use with portrait and differs from
# current versions at http://cbrc3.cbrc.jp/~shimizu/index.php
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

S="${WORKDIR}"/angle

QA_PREBUILT="opt/*"

src_install(){
	into /opt
	dobin *.pl
	use amd64 && dobin ANGLE-linux64 ANGLE-linux64DP
	use x86 && dobin ANGLE-linux32 ANGLE-linux32DP
	dodoc README.txt
	insinto /usr/share/"${PN}"
	doins test.html sample.txt sample2.txt test seq2.noOrf
	doins -r param-human param-plant
}