diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-07-14 18:29:01 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-07-14 18:29:01 +0000 |
commit | 2dad44967da62c7d943e4994a6efc024e971250b (patch) | |
tree | 18af99484728308ae579d595f2f5eb1a39f430f8 /app-sci/readseq | |
parent | correct acknowledgement (diff) | |
download | historical-2dad44967da62c7d943e4994a6efc024e971250b.tar.gz historical-2dad44967da62c7d943e4994a6efc024e971250b.tar.bz2 historical-2dad44967da62c7d943e4994a6efc024e971250b.zip |
Added new package: app-sci/readseq
Diffstat (limited to 'app-sci/readseq')
-rw-r--r-- | app-sci/readseq/ChangeLog | 10 | ||||
-rw-r--r-- | app-sci/readseq/Manifest | 4 | ||||
-rw-r--r-- | app-sci/readseq/files/digest-readseq-19930201 | 1 | ||||
-rw-r--r-- | app-sci/readseq/metadata.xml | 13 | ||||
-rw-r--r-- | app-sci/readseq/readseq-19930201.ebuild | 23 |
5 files changed, 51 insertions, 0 deletions
diff --git a/app-sci/readseq/ChangeLog b/app-sci/readseq/ChangeLog new file mode 100644 index 000000000000..429164b6ca53 --- /dev/null +++ b/app-sci/readseq/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-sci/readseq +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/readseq/ChangeLog,v 1.1 2004/07/14 18:29:01 ribosome Exp $ + +*readseq-19930201 (14 Jul 2004) + + 14 Jul 2004; Olivier Fisette <ribosome@gentoo.org> + readseq-19930201.ebuild, metadata.xml + Initial import (#51992), suggested by Koen Deforche + <koen.deforche@uz.kuleuven.ac.be>, with modifications. diff --git a/app-sci/readseq/Manifest b/app-sci/readseq/Manifest new file mode 100644 index 000000000000..3799bb134332 --- /dev/null +++ b/app-sci/readseq/Manifest @@ -0,0 +1,4 @@ +MD5 f9889f3560bfa22fb9bf90022d95fef8 readseq-19930201.ebuild 631 +MD5 64e5024f7fb2e503217dbe24f197eaea ChangeLog 443 +MD5 320f3ee1583712d75ffa816ff8fab041 metadata.xml 400 +MD5 48eca35bf0c84eca8343d25e53977019 files/digest-readseq-19930201 65 diff --git a/app-sci/readseq/files/digest-readseq-19930201 b/app-sci/readseq/files/digest-readseq-19930201 new file mode 100644 index 000000000000..bc6c41086567 --- /dev/null +++ b/app-sci/readseq/files/digest-readseq-19930201 @@ -0,0 +1 @@ +MD5 3973daff73375953369c31c5c1661699 readseq_1.orig.tar.gz 54557 diff --git a/app-sci/readseq/metadata.xml b/app-sci/readseq/metadata.xml new file mode 100644 index 000000000000..1ac734aaf4e6 --- /dev/null +++ b/app-sci/readseq/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>ribosome@gentoo.org</email> + <name>Olivier Fisette</name> + </maintainer> + <herd>sci</herd> + <longdescription> + Reads and writes nucleic/protein sequences in various formats. Data + files may have multiple sequences. + </longdescription> +</pkgmetadata> diff --git a/app-sci/readseq/readseq-19930201.ebuild b/app-sci/readseq/readseq-19930201.ebuild new file mode 100644 index 000000000000..017edf8bb72f --- /dev/null +++ b/app-sci/readseq/readseq-19930201.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/readseq/readseq-19930201.ebuild,v 1.1 2004/07/14 18:29:01 ribosome Exp $ + +DESCRIPTION="Reads and writes nucleic/protein sequences in various formats." +SRC_URI="http://ftp.debian.org/debian/pool/main/r/readseq/readseq_1.orig.tar.gz" +HOMEPAGE="http://iubio.bio.indiana.edu/soft/molbio/readseq/" +LICENSE="public-domain" + +KEYWORDS="~x86" +SLOT="0" +IUSE="" + +S="${WORKDIR}/readseq-1" + +src_compile() { + make -e || die +} + +src_install() { + dobin readseq + dodoc Readme Readseq.help +} |