summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2005-08-06 19:06:54 +0000
committerOlivier Fisette <ribosome@gentoo.org>2005-08-06 19:06:54 +0000
commitb7ed5787fdaaefcb85342fa8a2b96e601592db03 (patch)
tree206843aa07c6238c2f3a087ff225af322e189c24 /sci-biology/rebase
parentNew version: 19.7. Added 19.6 to x86. Removed old version: 18.45. (diff)
downloadhistorical-b7ed5787fdaaefcb85342fa8a2b96e601592db03.tar.gz
historical-b7ed5787fdaaefcb85342fa8a2b96e601592db03.tar.bz2
historical-b7ed5787fdaaefcb85342fa8a2b96e601592db03.zip
New version: 508. Added 507 to x86.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sci-biology/rebase')
-rw-r--r--sci-biology/rebase/ChangeLog8
-rw-r--r--sci-biology/rebase/files/digest-rebase-5081
-rw-r--r--sci-biology/rebase/rebase-507.ebuild4
-rw-r--r--sci-biology/rebase/rebase-508.ebuild39
4 files changed, 49 insertions, 3 deletions
diff --git a/sci-biology/rebase/ChangeLog b/sci-biology/rebase/ChangeLog
index ff0da60f4202..2117eeb32db4 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.25 2005/07/09 07:14:46 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.26 2005/08/06 19:06:54 ribosome Exp $
+
+*rebase-508 (06 Aug 2005)
+
+ 06 Aug 2005; Olivier Fisette <ribosome@gentoo.org> rebase-507.ebuild,
+ +rebase-508.ebuild:
+ New version: 508. Added 507 to x86.
09 Jul 2005; Markus Rothe <corsair@gentoo.org> rebase-506.ebuild:
Stable on ppc64
diff --git a/sci-biology/rebase/files/digest-rebase-508 b/sci-biology/rebase/files/digest-rebase-508
new file mode 100644
index 000000000000..600af8600f1f
--- /dev/null
+++ b/sci-biology/rebase/files/digest-rebase-508
@@ -0,0 +1 @@
+MD5 195071267b6a73bea78717f9b788190c rebase-508.tar.bz2 179937
diff --git a/sci-biology/rebase/rebase-507.ebuild b/sci-biology/rebase/rebase-507.ebuild
index fb6319348319..89e60a6d7b14 100644
--- a/sci-biology/rebase/rebase-507.ebuild
+++ b/sci-biology/rebase/rebase-507.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-507.ebuild,v 1.1 2005/07/08 01:42:33 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-507.ebuild,v 1.2 2005/08/06 19:06:54 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 ~ppc64"
+KEYWORDS="x86 ~ppc ~amd64 ~ppc-macos ~ppc64"
IUSE="emboss minimal"
# Minimal build keeps only the indexed files (if applicable) and the documentation.
# The non-indexed database is not installed.
diff --git a/sci-biology/rebase/rebase-508.ebuild b/sci-biology/rebase/rebase-508.ebuild
new file mode 100644
index 000000000000..b5b43ce1e4af
--- /dev/null
+++ b/sci-biology/rebase/rebase-508.ebuild
@@ -0,0 +1,39 @@
+# 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-508.ebuild,v 1.1 2005/08/06 19:06:54 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 ~ppc64"
+IUSE="emboss minimal"
+# Minimal build keeps only the indexed files (if applicable) and the documentation.
+# The non-indexed database is not installed.
+
+DEPEND="emboss? ( sci-biology/emboss )"
+
+src_compile() {
+ if use emboss; then
+ echo
+ einfo "Indexing ${PN} for usage with EMBOSS."
+ mkdir REBASE
+ EMBOSS_DATA=. rebaseextract -auto -infile withrefm.${PV} \
+ -protofile proto.${PV} || die "Indexing ${PN} failed."
+ echo
+ fi
+}
+
+src_install() {
+ if ! use minimal; then
+ insinto /usr/share/${PN}
+ doins withrefm.${PV} proto.${PV}
+ fi
+ newdoc REBASE.DOC README
+ if use emboss; then
+ insinto /usr/share/EMBOSS/data/REBASE
+ doins REBASE/{embossre.enz,embossre.ref,embossre.sup}
+ fi
+}