diff options
author | 2005-10-18 13:39:42 +0000 | |
---|---|---|
committer | 2005-10-18 13:39:42 +0000 | |
commit | 7c83e2423d7bce21eda4bf7b9104c66d6219bfbd (patch) | |
tree | f88bca80f292db488ce5106eb86de570e1208cb1 /sci-biology/aaindex/aaindex-7.0.ebuild | |
parent | Add missing patch (diff) | |
download | gentoo-2-7c83e2423d7bce21eda4bf7b9104c66d6219bfbd.tar.gz gentoo-2-7c83e2423d7bce21eda4bf7b9104c66d6219bfbd.tar.bz2 gentoo-2-7c83e2423d7bce21eda4bf7b9104c66d6219bfbd.zip |
New version
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'sci-biology/aaindex/aaindex-7.0.ebuild')
-rw-r--r-- | sci-biology/aaindex/aaindex-7.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sci-biology/aaindex/aaindex-7.0.ebuild b/sci-biology/aaindex/aaindex-7.0.ebuild new file mode 100644 index 000000000000..a8e1ef2dfeec --- /dev/null +++ b/sci-biology/aaindex/aaindex-7.0.ebuild @@ -0,0 +1,39 @@ +# 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-7.0.ebuild,v 1.1 2005/10/18 13:39:42 ribosome Exp $ + +DESCRIPTION="Amino acid indices and similarity matrices" +LICENSE="public-domain" +HOMEPAGE="http://www.genome.ad.jp/aaindex" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +SLOT="0" +# Minimal build keeps only the indexed files (if applicable) and the +# documentation. The non-indexed database is not installed. +IUSE="emboss minimal" +KEYWORDS="~amd64 ~ppc ~ppc-macos ~ppc64 ~x86" + +DEPEND="emboss? ( sci-biology/emboss )" + +src_compile() { + if use emboss; then + mkdir AAINDEX + echo + einfo "Indexing AAindex for usage with EMBOSS." + EMBOSS_DATA="." aaindexextract -auto -infile ${PN}1 || die \ + "Indexing AAindex failed." + echo + fi +} + +src_install() { + if ! use minimal; then + insinto /usr/share/${PN} + doins ${PN}{1,2} || die "Failed to install raw database." + fi + dodoc ${PN}.doc + if use emboss; then + insinto /usr/share/EMBOSS/data/AAINDEX + doins AAINDEX/* || die "Failed to install EMBOSS data files." + fi +} |