summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik <xarthisius@gentoo.org>2010-06-20 18:06:38 +0000
committerKacper Kowalik <xarthisius@gentoo.org>2010-06-20 18:06:38 +0000
commitf356bc66650ab350791d8a754479162e9f9abcb3 (patch)
tree9a804173d13f1a6e3f0a88a830e0f5bd3fef8b8b /sci-biology
parentFix parallel build, respect FLAGS, fix --as-needed issues wrt bug 277938. Tha... (diff)
downloadgentoo-2-f356bc66650ab350791d8a754479162e9f9abcb3.tar.gz
gentoo-2-f356bc66650ab350791d8a754479162e9f9abcb3.tar.bz2
gentoo-2-f356bc66650ab350791d8a754479162e9f9abcb3.zip
Remove old
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/velvet/ChangeLog5
-rw-r--r--sci-biology/velvet/velvet-0.7.50.ebuild43
2 files changed, 4 insertions, 44 deletions
diff --git a/sci-biology/velvet/ChangeLog b/sci-biology/velvet/ChangeLog
index 27b2f0e1d335..e999ee14d5a8 100644
--- a/sci-biology/velvet/ChangeLog
+++ b/sci-biology/velvet/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sci-biology/velvet
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/velvet/ChangeLog,v 1.11 2010/06/20 18:05:05 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-biology/velvet/ChangeLog,v 1.12 2010/06/20 18:06:38 xarthisius Exp $
+
+ 20 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org> -velvet-0.7.50.ebuild:
+ Remove old
20 Jun 2010; Kacper Kowalik <xarthisius@gentoo.org> velvet-0.7.62.ebuild,
+files/velvet-0.7.62-gentoo.diff:
diff --git a/sci-biology/velvet/velvet-0.7.50.ebuild b/sci-biology/velvet/velvet-0.7.50.ebuild
deleted file mode 100644
index 7143d138e84f..000000000000
--- a/sci-biology/velvet/velvet-0.7.50.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-biology/velvet/velvet-0.7.50.ebuild,v 1.1 2009/08/20 15:18:27 weaver Exp $
-
-EAPI="2"
-
-MY_P="${PN}_${PV}"
-
-DESCRIPTION="A sequence assembler for very short reads"
-HOMEPAGE="http://www.ebi.ac.uk/~zerbino/velvet/"
-SRC_URI="http://www.ebi.ac.uk/~zerbino/velvet/${MY_P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="-doc"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="doc? ( virtual/latex-base )"
-RDEPEND=""
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- rm -rf "${S}"/third-party/zlib*
- sed -i -e '/\(CFLAGS\|LDFLAGS\|Z_LIB_DIR\|Z_LIB_FILES\) *= */d' \
- -e '1 a CFLAGS+= -Wall' -e '1 a LDFLAGS+= -lm -lz' \
- -e '/default :/ s/zlib//' -e '/color :/ s/zlib//' \
- "${S}"/Makefile || die
- use doc || sed -i -e '/default :/ s/doc//' "${S}"/Makefile || die
- sed -i -e '/zlib.h/d' -e '1 i #include <zlib.h>' "${S}"/src/readSet.c || die
-}
-
-src_compile() {
- emake -j1 || die
- emake -j1 color || die
-}
-
-src_install() {
- dobin velvet{g,h,g_de,h_de} || die
- insinto /usr/share/${PN}
- doins -r contrib || die
- dodoc Manual.pdf CREDITS.txt
-}