Gentoo Archives: gentoo-commits

From: "Andrey Kislyuk (weaver)" <weaver@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/velvet: ChangeLog velvet-0.7.34.ebuild
Date: Sun, 21 Jun 2009 14:49:03
Message-Id: E1MIOLs-0000no-J7@stork.gentoo.org
1 weaver 09/06/21 14:49:00
2
3 Modified: ChangeLog
4 Added: velvet-0.7.34.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc30/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 sci-biology/velvet/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/velvet/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/velvet/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/velvet/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/velvet/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 5 Jun 2009 10:06:43 -0000 1.1
23 +++ ChangeLog 21 Jun 2009 14:49:00 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-biology/velvet
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/velvet/ChangeLog,v 1.1 2009/06/05 10:06:43 weaver Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/velvet/ChangeLog,v 1.2 2009/06/21 14:49:00 weaver Exp $
29 +
30 +*velvet-0.7.34 (21 Jun 2009)
31 +
32 + 21 Jun 2009; Andrey Kislyuk <weaver@g.o> +velvet-0.7.34.ebuild:
33 + Version bump
34
35 *velvet-0.7.31 (05 Jun 2009)
36
37
38
39
40 1.1 sci-biology/velvet/velvet-0.7.34.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/velvet/velvet-0.7.34.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/velvet/velvet-0.7.34.ebuild?rev=1.1&content-type=text/plain
44
45 Index: velvet-0.7.34.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-biology/velvet/velvet-0.7.34.ebuild,v 1.1 2009/06/21 14:49:00 weaver Exp $
50
51 EAPI="2"
52
53 MY_P="${PN}_${PV}"
54
55 DESCRIPTION="A sequence assembler for very short reads"
56 HOMEPAGE="http://www.ebi.ac.uk/~zerbino/velvet/"
57 SRC_URI="http://www.ebi.ac.uk/~zerbino/velvet/${MY_P}.tgz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 IUSE=""
62 KEYWORDS="~amd64 ~x86"
63
64 DEPEND=""
65 RDEPEND="${DEPEND}"
66
67 S="${WORKDIR}/${MY_P}"
68
69 src_prepare() {
70 rm -rf "${S}"/third-party/zlib*
71 sed -i -e '/\(CFLAGS\|LDFLAGS\|Z_LIB_DIR\|Z_LIB_FILES\) *= */d' \
72 -e '1 a CFLAGS+= -Wall' -e '1 a LDFLAGS+= -lm -lz' \
73 -e '/default :/ s/zlib//' -e '/color :/ s/zlib//' \
74 "${S}"/Makefile || die
75 sed -i -e '/zlib.h/d' -e '1 i #include <zlib.h>' "${S}"/src/readSet.c || die
76 }
77
78 src_compile() {
79 emake -j1 || die
80 emake -j1 color || die
81 }
82
83 src_install() {
84 dobin velvet{g,h,g_de,h_de} third-party/layout/graph2.py third-party/afg_handling/*.pl || die
85 dodoc Manual.pdf CREDITS.txt
86 }