summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2005-02-03 00:37:49 +0000
committerOlivier Fisette <ribosome@gentoo.org>2005-02-03 00:37:49 +0000
commitb8937c5c10c3ffb3d00fd3f64ea8bd72eaac8b43 (patch)
tree57d2112e8263010b4ed9bb0dfb9f066ce71c1c81 /sci-biology/rebase
parentNew version: 18.44. Added 18.43 to x86. (diff)
downloadhistorical-b8937c5c10c3ffb3d00fd3f64ea8bd72eaac8b43.tar.gz
historical-b8937c5c10c3ffb3d00fd3f64ea8bd72eaac8b43.tar.bz2
historical-b8937c5c10c3ffb3d00fd3f64ea8bd72eaac8b43.zip
New version: 502. Added 501 to x86.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'sci-biology/rebase')
-rw-r--r--sci-biology/rebase/ChangeLog8
-rw-r--r--sci-biology/rebase/files/digest-rebase-5021
-rw-r--r--sci-biology/rebase/rebase-501.ebuild4
-rw-r--r--sci-biology/rebase/rebase-502.ebuild35
4 files changed, 45 insertions, 3 deletions
diff --git a/sci-biology/rebase/ChangeLog b/sci-biology/rebase/ChangeLog
index 813e4a8d469c..5ab72f427922 100644
--- a/sci-biology/rebase/ChangeLog
+++ b/sci-biology/rebase/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-biology/rebase
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.5 2005/02/02 21:27:57 j4rg0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.6 2005/02/03 00:37:49 ribosome Exp $
+
+*rebase-502 (02 Feb 2005)
+
+ 02 Feb 2005; Olivier Fisette <ribosome@gentoo.org> rebase-501.ebuild,
+ +rebase-502.ebuild:
+ New version: 502. Added 501 to x86.
02 Feb 2005; Lina Pezzella <j4rg0n@gentoo.org> rebase-412.ebuild:
Stable ppc-macos
diff --git a/sci-biology/rebase/files/digest-rebase-502 b/sci-biology/rebase/files/digest-rebase-502
new file mode 100644
index 000000000000..888b12304f50
--- /dev/null
+++ b/sci-biology/rebase/files/digest-rebase-502
@@ -0,0 +1 @@
+MD5 f58492d0a335fc72b453c5bb3e395557 rebase-502.tar.bz2 178152
diff --git a/sci-biology/rebase/rebase-501.ebuild b/sci-biology/rebase/rebase-501.ebuild
index 4c2f5bf97a69..5397ba2fcc2c 100644
--- a/sci-biology/rebase/rebase-501.ebuild
+++ b/sci-biology/rebase/rebase-501.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-501.ebuild,v 1.1 2005/01/02 21:48:57 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-501.ebuild,v 1.2 2005/02/03 00:37:49 ribosome Exp $
DESCRIPTION="A restriction enzyme database"
HOMEPAGE="http://rebase.neb.com"
@@ -8,7 +8,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~amd64 ~ppc-macos"
+KEYWORDS="x86 ~ppc ~amd64 ~ppc-macos"
IUSE="no-emboss no-rawdb"
src_compile() {
diff --git a/sci-biology/rebase/rebase-502.ebuild b/sci-biology/rebase/rebase-502.ebuild
new file mode 100644
index 000000000000..eaa3e7a3de8e
--- /dev/null
+++ b/sci-biology/rebase/rebase-502.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-502.ebuild,v 1.1 2005/02/03 00:37:49 ribosome Exp $
+
+DESCRIPTION="A restriction enzyme database"
+HOMEPAGE="http://rebase.neb.com"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+LICENSE="public-domain"
+
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~amd64 ~ppc-macos"
+IUSE="no-emboss no-rawdb"
+
+src_compile() {
+ # Index the database for use with emboss if emboss is installed and
+ # the user did not explicitly request not to index the database.
+ if [ -e /usr/bin/rebaseextract ] && ! use no-emboss; then
+ einfo "Indexing ${PN} for usage with EMBOSS."
+ mkdir REBASE
+ EMBOSS_DATA=. rebaseextract -auto -infile withrefm.${PV} \
+ -protofile proto.${PV} || die "Indexing ${PN} failed."
+ fi
+}
+
+src_install() {
+ if ! use no-rawdb; then
+ insinto /usr/share/${PN}
+ doins withrefm.${PV} proto.${PV}
+ fi
+ newdoc REBASE.DOC README
+ if [ -e /usr/bin/rebaseextract ] && ! use no-emboss; then
+ insinto /usr/share/EMBOSS/data/REBASE
+ doins REBASE/{embossre.enz,embossre.ref,embossre.sup}
+ fi
+}