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/allpaths: ChangeLog allpaths-3.1.ebuild
Date: Tue, 26 Jan 2010 20:43:24
Message-Id: E1NZsFt-0001ss-GD@stork.gentoo.org
1 weaver 10/01/26 20:43:21
2
3 Modified: ChangeLog
4 Added: allpaths-3.1.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc30/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.6 sci-biology/allpaths/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/allpaths/ChangeLog?rev=1.6&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/allpaths/ChangeLog?rev=1.6&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/allpaths/ChangeLog?r1=1.5&r2=1.6
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v
19 retrieving revision 1.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- ChangeLog 3 Jan 2010 14:08:56 -0000 1.5
23 +++ ChangeLog 26 Jan 2010 20:43:21 -0000 1.6
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-biology/allpaths
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v 1.5 2010/01/03 14:08:56 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v 1.6 2010/01/26 20:43:21 weaver Exp $
29 +
30 +*allpaths-3.1 (26 Jan 2010)
31 +
32 + 26 Jan 2010; Andrey Kislyuk <weaver@g.o> +allpaths-3.1.ebuild:
33 + Version bump
34
35 03 Jan 2010; Pacho Ramos <pacho@g.o> allpaths-2.0.ebuild:
36 amd64 stable, bug 290927
37
38
39
40 1.1 sci-biology/allpaths/allpaths-3.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: allpaths-3.1.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild,v 1.1 2010/01/26 20:43:21 weaver Exp $
50
51 EAPI="2"
52
53 inherit base
54
55 DESCRIPTION="De novo assembly of whole-genome shotgun microreads"
56 HOMEPAGE="http://www.broadinstitute.org/science/programs/genome-biology/crd"
57 SRC_URI="ftp://ftp.broad.mit.edu/pub/crd/ALLPATHS/Release-3-0/allpaths-${PV}.tgz
58 ftp://ftp.broad.mit.edu/pub/crd/ALLPATHS/Release-3-0/AllPathsV3_Manual_r1.0.docx"
59
60 LICENSE="Whitehead-MIT"
61 SLOT="3"
62 IUSE=""
63 KEYWORDS="~amd64"
64
65 DEPEND=">=sys-devel/gcc-4.3.2"
66 RDEPEND=""
67
68 S="${WORKDIR}/AllPaths"
69
70 src_compile() {
71 base_src_compile
72 emake install_scripts || die
73 }
74
75 src_install() {
76 exeinto /usr/share/${P}/bin
77 find bin -type f -executable | xargs doexe || die
78 echo "PATH=\"/usr/share/${P}/bin\"" > "${S}/99${P}"
79 doenvd "${S}/99${P}" || die
80 dosym /usr/share/${P}/bin/RunAllPaths3G /usr/bin/RunAllPaths3G || die
81 insinto /usr/share/doc/${PF}
82 doins "${DISTDIR}/AllPathsV3_Manual_r1.0.docx"
83 }