diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-10-18 01:13:07 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-10-18 01:13:07 +0000 |
commit | 99183758e1575c1ca1d6e69b0e6159c6221d9a56 (patch) | |
tree | d93aaa001c111ff122cd7e939e881c158b26154a /sci-biology | |
parent | Mark 1.3.4 stable on alpha (diff) | |
download | gentoo-2-99183758e1575c1ca1d6e69b0e6159c6221d9a56.tar.gz gentoo-2-99183758e1575c1ca1d6e69b0e6159c6221d9a56.tar.bz2 gentoo-2-99183758e1575c1ca1d6e69b0e6159c6221d9a56.zip |
Ebuild clean-up
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/rebase/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/rebase/Manifest | 2 | ||||
-rw-r--r-- | sci-biology/rebase/rebase-510.ebuild | 16 |
3 files changed, 14 insertions, 9 deletions
diff --git a/sci-biology/rebase/ChangeLog b/sci-biology/rebase/ChangeLog index 874e55b80505..31c52fe589d6 100644 --- a/sci-biology/rebase/ChangeLog +++ b/sci-biology/rebase/ChangeLog @@ -1,6 +1,9 @@ # 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.38 2005/10/17 17:49:07 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/ChangeLog,v 1.39 2005/10/18 01:13:07 ribosome Exp $ + + 18 Oct 2005; Olivier Fisette <ribosome@gentoo.org> rebase-510.ebuild: + Ebuild clean-up. 17 Oct 2005; Olivier Fisette <ribosome@gentoo.org> -rebase-507.ebuild, -rebase-508.ebuild: diff --git a/sci-biology/rebase/Manifest b/sci-biology/rebase/Manifest index 7a7fad54dc5c..e844e7540f90 100644 --- a/sci-biology/rebase/Manifest +++ b/sci-biology/rebase/Manifest @@ -1,4 +1,4 @@ -MD5 07a0dacdefd570a199eda0a6cc0f7323 rebase-510.ebuild 1105 +MD5 9dbef8a9155a4c29a4518a8ee156326e rebase-510.ebuild 1202 MD5 69b1a343f30e72fad61432c2246b4c28 rebase-509.ebuild 1099 MD5 fa8be8bf715470410ea63976d9aa2ca8 ChangeLog 5862 MD5 550f8d428f3e75690b43d32df6aa60cd metadata.xml 900 diff --git a/sci-biology/rebase/rebase-510.ebuild b/sci-biology/rebase/rebase-510.ebuild index c71948c05eff..9802c104e868 100644 --- a/sci-biology/rebase/rebase-510.ebuild +++ b/sci-biology/rebase/rebase-510.ebuild @@ -1,17 +1,17 @@ # 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-510.ebuild,v 1.3 2005/10/07 00:28:54 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/rebase/rebase-510.ebuild,v 1.4 2005/10/18 01:13:07 ribosome Exp $ DESCRIPTION="A restriction enzyme database" +LICENSE="public-domain" HOMEPAGE="http://rebase.neb.com" SRC_URI="mirror://gentoo/${P}.tar.bz2" -LICENSE="public-domain" SLOT="0" -KEYWORDS="~x86 ~ppc ~amd64 ~ppc-macos ~ppc64" +# Minimal build keeps only the indexed files (if applicable) and the +# documentation. The non-indexed database is not installed. IUSE="emboss minimal" -# Minimal build keeps only the indexed files (if applicable) and the documentation. -# The non-indexed database is not installed. +KEYWORDS="~x86 ~ppc ~amd64 ~ppc-macos ~ppc64" DEPEND="emboss? ( sci-biology/emboss )" @@ -29,11 +29,13 @@ src_compile() { src_install() { if ! use minimal; then insinto /usr/share/${PN} - doins withrefm.${PV} proto.${PV} + doins withrefm.${PV} proto.${PV} || die \ + "Failed to install raw database." fi newdoc REBASE.DOC README if use emboss; then insinto /usr/share/EMBOSS/data/REBASE - doins REBASE/{embossre.enz,embossre.ref,embossre.sup} + doins REBASE/{embossre.enz,embossre.ref,embossre.sup} || die \ + "Failed to install EMBOSS data files." fi } |