diff options
author | 2017-02-25 16:01:57 +0100 | |
---|---|---|
committer | 2017-02-25 16:02:22 +0100 | |
commit | da1f957073fddc5ae0096a0e6187ee81bf367ccd (patch) | |
tree | 5e26c5b6d10dd770d03e15b7160ddd76e89f0363 /sci-biology/prosite/prosite-20.52.ebuild | |
parent | sci-biology/prosite: Version bump to 2017.02 (diff) | |
download | gentoo-da1f957073fddc5ae0096a0e6187ee81bf367ccd.tar.gz gentoo-da1f957073fddc5ae0096a0e6187ee81bf367ccd.tar.bz2 gentoo-da1f957073fddc5ae0096a0e6187ee81bf367ccd.zip |
sci-biology/prosite: Remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'sci-biology/prosite/prosite-20.52.ebuild')
-rw-r--r-- | sci-biology/prosite/prosite-20.52.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/sci-biology/prosite/prosite-20.52.ebuild b/sci-biology/prosite/prosite-20.52.ebuild deleted file mode 100644 index 60d2c843289f..000000000000 --- a/sci-biology/prosite/prosite-20.52.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -DESCRIPTION="A protein families and domains database" -HOMEPAGE="http://ca.expasy.org/prosite" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -SLOT="0" -LICENSE="swiss-prot" -# Minimal build keeps only the indexed files (if applicable) and the -# documentation. The non-indexed database is not installed. -IUSE="emboss minimal" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" - -DEPEND="emboss? ( sci-biology/emboss )" -RDEPEND="${DEPEND}" - -src_compile() { - if use emboss; then - mkdir PROSITE - echo - einfo "Indexing PROSITE for usage with EMBOSS." - EMBOSS_DATA="." prosextract -auto -prositedir "${S}" || die \ - "Indexing PROSITE failed." - echo - fi -} - -src_install() { - if ! use minimal; then - insinto /usr/share/${PN} - doins *.{doc,dat} || die "Installing raw database failed." - fi - insinto /usr/share/doc/${PF} - doins *.pdf || die "PDF documentation installation failed." - if use emboss; then - insinto /usr/share/EMBOSS/data/PROSITE - doins PROSITE/* || die "Installing EMBOSS data files failed." - fi -} |