diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2006-09-13 01:43:55 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2006-09-13 01:43:55 +0000 |
commit | c281dc30e8148468480e4feaf1bd2a42e2b9d9c3 (patch) | |
tree | bc189f7b946e338d868305e56816ae9689b728b4 /sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild | |
parent | New upstream version (diff) | |
download | gentoo-2-c281dc30e8148468480e4feaf1bd2a42e2b9d9c3.tar.gz gentoo-2-c281dc30e8148468480e4feaf1bd2a42e2b9d9c3.tar.bz2 gentoo-2-c281dc30e8148468480e4feaf1bd2a42e2b9d9c3.zip |
New upstream version. Added test cases.
(Portage version: 2.1.1)
Diffstat (limited to 'sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild')
-rw-r--r-- | sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild b/sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild new file mode 100644 index 000000000000..83f49d75d2a6 --- /dev/null +++ b/sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/bioperl-run/bioperl-run-1.5.1.ebuild,v 1.1 2006/09/13 01:43:55 ribosome Exp $ + +inherit perl-app eutils + +DESCRIPTION="A collection of tools for bioinformatics, genomics and life science research: subset required to run analyses" +HOMEPAGE="http://www.bioperl.org/" +#SRC_URI="http://www.cpan.org/modules/by-module/Bio/${P}.tar.gz" +SRC_URI="http://www.bioperl.org/ftp/DIST/${P}.tar.gz" + +LICENSE="Artistic GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc" +IUSE="" + +RDEPEND=" + dev-perl/Algorithm-Diff + virtual/perl-File-Temp + dev-perl/IO-String + dev-perl/XML-Parser" + +DEPEND="" + +src_compile() { + perl-module_src_compile || die "compile failed" +} + +src_install() { + mydoc="AUTHORS BUGS INSTALL.PROGRAMS README" + perl-module_src_install + + # bioperl scripts and examples + einfo 'Adding bioperl examples and scripts to /usr/share/...' + dodir /usr/share/${PF}/scripts + #insinto /usr/share/${PF}/scripts + cd "${S}"/scripts/ + tar cf - ./ | ( cd "${D}"/usr/share/${PF}/scripts; tar xf -) + dodir /usr/share/${PF}/examples + cd "${S}"/examples/ + tar cf - ./ | ( cd "${D}"/usr/share/${PF}/examples; tar xf -) + cd "${S}" +} + +src_test() { + make test + perl-module_src_test || die "src test failed" +} |