diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-12-23 22:05:32 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-12-23 22:05:32 +0000 |
commit | 7fee7dee00beb1347bb0ff0f053212c18f3ce734 (patch) | |
tree | 3c2365e873a9b14ed12b8925632648bc8c6d2a3c /sci-biology/bioperl/bioperl-1.4.ebuild | |
parent | Moving to sci-biology/bioperl (diff) | |
download | gentoo-2-7fee7dee00beb1347bb0ff0f053212c18f3ce734.tar.gz gentoo-2-7fee7dee00beb1347bb0ff0f053212c18f3ce734.tar.bz2 gentoo-2-7fee7dee00beb1347bb0ff0f053212c18f3ce734.zip |
Moved from app-sci/bioperl to sci-biology/bioperl.
Diffstat (limited to 'sci-biology/bioperl/bioperl-1.4.ebuild')
-rw-r--r-- | sci-biology/bioperl/bioperl-1.4.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sci-biology/bioperl/bioperl-1.4.ebuild b/sci-biology/bioperl/bioperl-1.4.ebuild new file mode 100644 index 000000000000..a5213436567d --- /dev/null +++ b/sci-biology/bioperl/bioperl-1.4.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/bioperl/bioperl-1.4.ebuild,v 1.1 2004/12/23 22:05:32 ribosome Exp $ + +inherit perl-module eutils + +CATEGORY="app-sci" + +DESCRIPTION="collection of tools for bioinformatics, genomics and life science research" +HOMEPAGE="http://www.bioperl.org/" +SRC_URI="http://www.bioperl.org/ftp/DIST/${P}.tar.bz2" + +LICENSE="Artistic GPL-2" +SLOT="0" +KEYWORDS="x86 alpha ~ppc" +IUSE="mysql gd" + +DEPEND=" + dev-perl/File-Temp + dev-perl/HTML-Parser + dev-perl/IO-String + dev-perl/IO-stringy + dev-perl/SOAP-Lite + dev-perl/Storable + dev-perl/XML-DOM + dev-perl/XML-Parser + dev-perl/XML-Writer + dev-perl/XML-Twig + dev-perl/libxml-perl + dev-perl/libwww-perl + dev-perl/Graph + dev-perl/Text-Shellwords + gd? ( + >=dev-perl/GD-1.32-r1 + dev-perl/SVG + dev-perl/GD-SVG + ) + mysql? ( >=dev-perl/DBD-mysql-2.1004-r3 )" + +src_compile() { + yes "" | perl Makefile.PL ${myconf} \ + PREFIX=${D}/usr INSTALLDIRS=vendor + #perl-module_src_test || die "Test Failed" +} + +src_install() { + mydoc="AUTHORS BUGS FAQ" + perl-module_src_install +} |