summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2007-04-11 01:15:11 +0000
committerOlivier Fisette <ribosome@gentoo.org>2007-04-11 01:15:11 +0000
commit1df26eb53666463ffb9f5f41574a9664a2ff7c3f (patch)
tree6b306881bcbb687a3c86554a415d980c97e18703 /sci-biology/prosite
parentStable for HPPA (bug #173860) and fixed spelling errors in <longdescription>. (diff)
downloadhistorical-1df26eb53666463ffb9f5f41574a9664a2ff7c3f.tar.gz
historical-1df26eb53666463ffb9f5f41574a9664a2ff7c3f.tar.bz2
historical-1df26eb53666463ffb9f5f41574a9664a2ff7c3f.zip
New upstream version.
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'sci-biology/prosite')
-rw-r--r--sci-biology/prosite/ChangeLog9
-rw-r--r--sci-biology/prosite/files/digest-prosite-20.93
-rw-r--r--sci-biology/prosite/prosite-20.9.ebuild42
3 files changed, 52 insertions, 2 deletions
diff --git a/sci-biology/prosite/ChangeLog b/sci-biology/prosite/ChangeLog
index a3fa8706e60a..288200a888f3 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.94 2006/12/12 20:11:35 ribosome Exp $
+# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/prosite/ChangeLog,v 1.95 2007/04/11 01:13:26 ribosome Exp $
+
+*prosite-20.9 (11 Apr 2007)
+
+ 11 Apr 2007; Olivier Fisette <ribosome@gentoo.org> +prosite-20.9.ebuild:
+ New upstream version.
*prosite-20.1 (12 Dec 2006)
diff --git a/sci-biology/prosite/files/digest-prosite-20.9 b/sci-biology/prosite/files/digest-prosite-20.9
new file mode 100644
index 000000000000..3e8225325be7
--- /dev/null
+++ b/sci-biology/prosite/files/digest-prosite-20.9
@@ -0,0 +1,3 @@
+MD5 bdec0ea9bcdad54b0d0fe51387124158 prosite-20.9.tar.bz2 5108913
+RMD160 8e68f488d4112809f54e1d559253c8bbad34ee53 prosite-20.9.tar.bz2 5108913
+SHA256 f00fded0cd67ea29ef0d40f1a1ef16ecb67b717acd7054a903355ad246478e02 prosite-20.9.tar.bz2 5108913
diff --git a/sci-biology/prosite/prosite-20.9.ebuild b/sci-biology/prosite/prosite-20.9.ebuild
new file mode 100644
index 000000000000..5c7f80880cc3
--- /dev/null
+++ b/sci-biology/prosite/prosite-20.9.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/prosite/prosite-20.9.ebuild,v 1.1 2007/04/11 01:13:26 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 ~ppc64 ~sparc ~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 *.{doc,dat,lis} || die "Installing raw database failed."
+ fi
+ dodoc *.txt || die "Documentation installation failed."
+ dohtml *.htm || die "HTML documentation installation failed."
+ 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
+}