summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2006-06-26 16:43:11 +0000
committerOlivier Fisette <ribosome@gentoo.org>2006-06-26 16:43:11 +0000
commit1d3b12f584b7a57ed00c9b3de31982d371933fea (patch)
tree8696d8e1c0aa0d710bab5c211626a160af72e12c /sci-biology
parentVersion bump thanks to Devon Miller <devon.miller@verizon.net> in bug 138064 (diff)
downloadgentoo-2-1d3b12f584b7a57ed00c9b3de31982d371933fea.tar.gz
gentoo-2-1d3b12f584b7a57ed00c9b3de31982d371933fea.tar.bz2
gentoo-2-1d3b12f584b7a57ed00c9b3de31982d371933fea.zip
New upstream version
(Portage version: 2.1-r1)
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/prosite/ChangeLog7
-rw-r--r--sci-biology/prosite/files/digest-prosite-19.293
-rw-r--r--sci-biology/prosite/prosite-19.29.ebuild40
3 files changed, 49 insertions, 1 deletions
diff --git a/sci-biology/prosite/ChangeLog b/sci-biology/prosite/ChangeLog
index 809a38cffceb..5da75c164a0e 100644
--- a/sci-biology/prosite/ChangeLog
+++ b/sci-biology/prosite/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-biology/prosite
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/prosite/ChangeLog,v 1.80 2006/05/24 20:44:44 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/prosite/ChangeLog,v 1.81 2006/06/26 16:43:11 ribosome Exp $
+
+*prosite-19.29 (26 Jun 2006)
+
+ 26 Jun 2006; Olivier Fisette <ribosome@gentoo.org> +prosite-19.29.ebuild:
+ New upstream version.
24 May 2006; Michael Hanselmann <hansmi@gentoo.org> prosite-19.22.ebuild:
Stable on ppc.
diff --git a/sci-biology/prosite/files/digest-prosite-19.29 b/sci-biology/prosite/files/digest-prosite-19.29
new file mode 100644
index 000000000000..84399d5b92ee
--- /dev/null
+++ b/sci-biology/prosite/files/digest-prosite-19.29
@@ -0,0 +1,3 @@
+MD5 e060711bfee43018c04ba422e49470d0 prosite-19.29.tar.bz2 4254401
+RMD160 e8ad1e08d2a05b4efa6b0be54e82efdb3f58693a prosite-19.29.tar.bz2 4254401
+SHA256 7759f8ef3a557a681eca282d229d465172ef4d66969f34ed764ceb87b8bd8aed prosite-19.29.tar.bz2 4254401
diff --git a/sci-biology/prosite/prosite-19.29.ebuild b/sci-biology/prosite/prosite-19.29.ebuild
new file mode 100644
index 000000000000..d60530106e10
--- /dev/null
+++ b/sci-biology/prosite/prosite-19.29.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/prosite/prosite-19.29.ebuild,v 1.1 2006/06/26 16:43:11 ribosome Exp $
+
+DESCRIPTION="A protein families and domains database"
+LICENSE="swiss-prot"
+HOMEPAGE="http://ca.expasy.org/prosite"
+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-3.0.0 )"
+
+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 ${PN}.{doc,dat,lis} || die "Installing raw database failed."
+ fi
+ dodoc *.txt || die "Documentation installation failed."
+ dohtml *.htm || die "HTML documentation installation failed."
+ if use emboss; then
+ insinto /usr/share/EMBOSS/data/PROSITE
+ doins PROSITE/* || die "Installing EMBOSS data files failed."
+ fi
+}