blob: 10a0fcbc4fb3ae78a22f4c272fc6db78735b62c8 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/aaindex/aaindex-6.0.ebuild,v 1.6 2005/04/27 07:34:45 corsair Exp $
DESCRIPTION="Amino acid indices and similarity matrices"
HOMEPAGE="http://www.genome.ad.jp/aaindex"
SRC_URI="ftp://ftp.genome.ad.jp/pub/db/genomenet/${PN}/${PN}.doc
ftp://ftp.genome.ad.jp/pub/db/genomenet/${PN}/${PN}1
ftp://ftp.genome.ad.jp/pub/db/genomenet/${PN}/${PN}2
ftp://ftp.genome.ad.jp/pub/db/genomenet/${PN}/list_of_matrices
ftp://ftp.genome.ad.jp/pub/db/genomenet/${PN}/list_of_indices"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86 ~ppc ppc-macos ~ppc64"
IUSE="emboss minimal"
# Minimal build keeps only the indexed files (if applicable) and the documentation.
# The non-indexed database is not installed.
DEPEND="emboss? ( sci-biology/emboss )"
S=${WORKDIR}
src_unpack() {
echo
einfo "No archive to unpack."
echo
}
src_compile() {
if use emboss; then
mkdir AAINDEX
echo
einfo "Indexing AAindex for usage with EMBOSS."
EMBOSS_DATA=. aaindexextract -auto -infile ${DISTDIR}/${PN}1 || die \
"Indexing AAindex failed."
echo
fi
}
src_install() {
if ! use minimal; then
insinto /usr/share/${PN}
doins ${DISTDIR}/{${PN}{1,2},list_of_{matrices,indices}}
fi
dodoc ${DISTDIR}/${PN}.doc
if use emboss; then
insinto /usr/share/EMBOSS/data/AAINDEX
doins AAINDEX/*
fi
}
|