blob: 07cd5a06cc777981354c094adec617b9204ae2a5 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/aaindex/aaindex-6.0.ebuild,v 1.4 2004/08/10 23:56:29 ribosome Exp $
DESCRIPTION="Amino acid indices and similarity matrices"
HOMEPAGE="http://www.genome.ad.jp/${PN}/"
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"
IUSE="no-emboss no-rawdb"
S=${WORKDIR}
src_unpack() {
einfo "No archive to unpack."
}
src_compile() {
# Index the database for use with emboss if emboss is installed and
# the user did not explicitly request not to index the database.
if [ -e /usr/bin/aaindexextract ] && ! use no-emboss; then
mkdir AAINDEX
einfo "Indexing AAindex for usage with EMBOSS."
EMBOSS_DATA=. aaindexextract -auto -infile ${DISTDIR}/${PN}1 || die \
"Indexing AAindex failed."
fi
}
src_install() {
if ! use no-rawdb; then
insinto /usr/share/${PN}
doins ${DISTDIR}/{${PN}{1,2},list_of_{matrices,indices}}
fi
dodoc ${DISTDIR}/${PN}.doc
if [ -e /usr/bin/aaindexextract ] && ! use no-emboss; then
insinto /usr/share/EMBOSS/data/AAINDEX
doins AAINDEX/*
fi
}
|