summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fisette <ribosome@gentoo.org>2005-04-05 03:51:22 +0000
committerOlivier Fisette <ribosome@gentoo.org>2005-04-05 03:51:22 +0000
commitfd36481f378082b86ac7850fbf5e410075d1d246 (patch)
tree40d0e80dd2958aa720436109160cd3569e72d2e0 /sci-biology
parentVersion bump to fix tempfile bugs #87939. (diff)
downloadhistorical-fd36481f378082b86ac7850fbf5e410075d1d246.tar.gz
historical-fd36481f378082b86ac7850fbf5e410075d1d246.tar.bz2
historical-fd36481f378082b86ac7850fbf5e410075d1d246.zip
New version: 504. Added 503 to x86.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/rebase/ChangeLog8
-rw-r--r--sci-biology/rebase/files/digest-rebase-5041
-rw-r--r--sci-biology/rebase/rebase-503.ebuild4
-rw-r--r--sci-biology/rebase/rebase-504.ebuild39
4 files changed, 49 insertions, 3 deletions
diff --git a/sci-biology/rebase/ChangeLog b/sci-biology/rebase/ChangeLog
index 49e0495c1e21..5de69e35b52a 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.11 2005/03/02 23:26:50 j4rg0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.12 2005/04/05 03:51:22 ribosome Exp $
+
+*rebase-504 (05 Apr 2005)
+
+ 05 Apr 2005; Olivier Fisette <ribosome@gentoo.org> rebase-503.ebuild,
+ +rebase-504.ebuild:
+ New version: 504. Added 503 to x86.
02 Mar 2005; Lina Pezzella <j4rg0n@gentoo.org> rebase-502.ebuild:
Stable ppc-macos
diff --git a/sci-biology/rebase/files/digest-rebase-504 b/sci-biology/rebase/files/digest-rebase-504
new file mode 100644
index 000000000000..c2fa07af9ddb
--- /dev/null
+++ b/sci-biology/rebase/files/digest-rebase-504
@@ -0,0 +1 @@
+MD5 30b740c9748c5d3df20095262797ed2e rebase-504.tar.bz2 178809
diff --git a/sci-biology/rebase/rebase-503.ebuild b/sci-biology/rebase/rebase-503.ebuild
index 903c42855821..73d148fc5beb 100644
--- a/sci-biology/rebase/rebase-503.ebuild
+++ b/sci-biology/rebase/rebase-503.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-503.ebuild,v 1.2 2005/03/02 19:55:26 ribosome Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-503.ebuild,v 1.3 2005/04/05 03:51:22 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="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-504.ebuild b/sci-biology/rebase/rebase-504.ebuild
new file mode 100644
index 000000000000..cbc031981e2b
--- /dev/null
+++ b/sci-biology/rebase/rebase-504.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-504.ebuild,v 1.1 2005/04/05 03:51:22 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="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
+}