Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/allpaths: ChangeLog allpaths-3.1.ebuild
Date: Thu, 30 Aug 2012 07:32:32
Message-Id: 20120830073221.B84C620C25@flycatcher.gentoo.org
1 jlec 12/08/30 07:32:21
2
3 Modified: ChangeLog allpaths-3.1.ebuild
4 Log:
5 sci-biology/allpaths: Fix for gcc-4.7
6
7 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 sci-biology/allpaths/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpaths/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpaths/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpaths/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 26 Jan 2010 20:43:21 -0000 1.6
23 +++ ChangeLog 30 Aug 2012 07:32:21 -0000 1.7
24 @@ -1,6 +1,10 @@
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.6 2010/01/26 20:43:21 weaver Exp $
28 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/ChangeLog,v 1.7 2012/08/30 07:32:21 jlec Exp $
30 +
31 + 30 Aug 2012; Justin Lecher <jlec@g.o> allpaths-3.1.ebuild,
32 + +files/allpaths-3.1-gcc4.7.patch:
33 + Fix for gcc-4.7
34
35 *allpaths-3.1 (26 Jan 2010)
36
37
38
39
40 1.2 sci-biology/allpaths/allpaths-3.1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild?r1=1.1&r2=1.2
45
46 Index: allpaths-3.1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- allpaths-3.1.ebuild 26 Jan 2010 20:43:21 -0000 1.1
53 +++ allpaths-3.1.ebuild 30 Aug 2012 07:32:21 -0000 1.2
54 @@ -1,37 +1,39 @@
55 -# Copyright 1999-2010 Gentoo Foundation
56 +# Copyright 1999-2012 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild,v 1.1 2010/01/26 20:43:21 weaver Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-3.1.ebuild,v 1.2 2012/08/30 07:32:21 jlec Exp $
60
61 -EAPI="2"
62 +EAPI=4
63
64 inherit base
65
66 DESCRIPTION="De novo assembly of whole-genome shotgun microreads"
67 HOMEPAGE="http://www.broadinstitute.org/science/programs/genome-biology/crd"
68 -SRC_URI="ftp://ftp.broad.mit.edu/pub/crd/ALLPATHS/Release-3-0/allpaths-${PV}.tgz
69 +SRC_URI="
70 + ftp://ftp.broad.mit.edu/pub/crd/ALLPATHS/Release-3-0/allpaths-${PV}.tgz
71 ftp://ftp.broad.mit.edu/pub/crd/ALLPATHS/Release-3-0/AllPathsV3_Manual_r1.0.docx"
72
73 LICENSE="Whitehead-MIT"
74 SLOT="3"
75 IUSE=""
76 -KEYWORDS="~amd64"
77 -
78 -DEPEND=">=sys-devel/gcc-4.3.2"
79 -RDEPEND=""
80 +KEYWORDS="~amd64 ~x86"
81
82 S="${WORKDIR}/AllPaths"
83
84 +PATCHES=( "${FILESDIR}"/${P}-gcc4.7.patch )
85 +
86 src_compile() {
87 base_src_compile
88 - emake install_scripts || die
89 + emake install_scripts
90 }
91
92 src_install() {
93 - exeinto /usr/share/${P}/bin
94 + exeinto /usr/libexec/${P}/
95 find bin -type f -executable | xargs doexe || die
96 - echo "PATH=\"/usr/share/${P}/bin\"" > "${S}/99${P}"
97 - doenvd "${S}/99${P}" || die
98 - dosym /usr/share/${P}/bin/RunAllPaths3G /usr/bin/RunAllPaths3G || die
99 - insinto /usr/share/doc/${PF}
100 - doins "${DISTDIR}/AllPathsV3_Manual_r1.0.docx"
101 +
102 + echo "PATH=\"/usr/libexec/${P}/\"" > "${S}/50${P}"
103 + doenvd "${S}/50${P}" || die
104 +
105 + dosym /usr/libexec/${P}/RunAllPaths3G /usr/bin/RunAllPaths3G
106 +
107 + dodoc "${DISTDIR}/AllPathsV3_Manual_r1.0.docx"
108 }