# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ 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" IUSE="emboss no-raw" DEPEND="emboss? ( =app-sci/emboss )" S=${WORKDIR} src_unpack() { einfo "No archive to unpack." } src_compile() { if use 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-raw; 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 }