From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- sci-biology/prosite/prosite-2017.02.ebuild | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 sci-biology/prosite/prosite-2017.02.ebuild (limited to 'sci-biology/prosite/prosite-2017.02.ebuild') diff --git a/sci-biology/prosite/prosite-2017.02.ebuild b/sci-biology/prosite/prosite-2017.02.ebuild new file mode 100644 index 000000000000..b3d9ef2335fd --- /dev/null +++ b/sci-biology/prosite/prosite-2017.02.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A protein families and domains database" +HOMEPAGE="http://prosite.expasy.org/" +SRC_URI="ftp://ftp.expasy.org/databases/prosite/old_releases/prosite${PV//./_}.tar.bz2" + +LICENSE="swiss-prot" +SLOT="0" +# Minimal build keeps only the indexed files (if applicable). +# The non-indexed database is not installed. +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="emboss minimal" + +DEPEND="emboss? ( sci-biology/emboss )" +RDEPEND="${DEPEND}" + +S=${WORKDIR} + +src_compile() { + if use emboss; then + mkdir PROSITE || die + einfo + einfo "Indexing PROSITE for usage with EMBOSS" + EMBOSS_DATA="." prosextract -auto -prositedir "${S}" || die "Indexing PROSITE failed" + einfo + fi +} + +src_install() { + if ! use minimal; then + insinto /usr/share/${PN} + doins *.{doc,dat} + fi + + if use emboss; then + insinto /usr/share/EMBOSS/data/PROSITE + doins -r PROSITE/. + fi +} -- cgit v1.2.3