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/cufflinks: ChangeLog cufflinks-2.2.1-r1.ebuild
Date: Thu, 02 Oct 2014 08:01:11
Message-Id: 20141002080105.15DB26BFF@oystercatcher.gentoo.org
1 jlec 14/10/02 08:01:05
2
3 Modified: ChangeLog
4 Added: cufflinks-2.2.1-r1.ebuild
5 Log:
6 sci-biology/cufflinks: Drop debugging flags, fix compatibility with newer samtools, #524252
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.9 sci-biology/cufflinks/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 25 Sep 2014 16:11:26 -0000 1.8
24 +++ ChangeLog 2 Oct 2014 08:01:05 -0000 1.9
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-biology/cufflinks
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/ChangeLog,v 1.8 2014/09/25 16:11:26 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/ChangeLog,v 1.9 2014/10/02 08:01:05 jlec Exp $
30 +
31 +*cufflinks-2.2.1-r1 (02 Oct 2014)
32 +
33 + 02 Oct 2014; Justin Lecher <jlec@g.o> +cufflinks-2.2.1-r1.ebuild,
34 + +files/cufflinks-2.2.1-flags.patch, +files/cufflinks-2.2.1-hts.patch:
35 + Drop debugging flags, fix compatibility with newer samtools, #524252
36
37 *cufflinks-2.2.1 (25 Sep 2014)
38
39
40
41
42 1.1 sci-biology/cufflinks/cufflinks-2.2.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/cufflinks-2.2.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/cufflinks-2.2.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cufflinks-2.2.1-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/cufflinks-2.2.1-r1.ebuild,v 1.1 2014/10/02 08:01:05 jlec Exp $
52
53 EAPI=5
54
55 AUTOTOOLS_AUTORECONF=true
56
57 inherit autotools-utils flag-o-matic toolchain-funcs
58
59 DESCRIPTION="Transcript assembly, differential expression, and differential regulation for RNA-Seq"
60 HOMEPAGE="http://cufflinks.cbcb.umd.edu/"
61 SRC_URI="http://cufflinks.cbcb.umd.edu/downloads/${P}.tar.gz"
62
63 SLOT="0"
64 LICENSE="Artistic"
65 IUSE="debug"
66 KEYWORDS="~amd64 ~x86"
67
68 DEPEND="
69 || (
70 (
71 >=sci-biology/samtools-0.1.18
72 sci-libs/htslib
73 )
74 <sci-biology/samtools-1
75 )
76 >=dev-libs/boost-1.47.0:=
77 dev-cpp/eigen:3
78 "
79 RDEPEND="${DEPEND}"
80
81 PATCHES=(
82 "${FILESDIR}"/${P}-hts.patch
83 "${FILESDIR}"/${P}-flags.patch
84 )
85
86 src_prepare() {
87 append-cppflags $($(tc-getPKG_CONFIG) --cflags eigen3)
88 autotools-utils_src_prepare
89 }
90
91 src_configure() {
92 local myeconfargs=(
93 --disable-optim
94 --with-boost-libdir="${EPREFIX}/usr/$(get_libdir)/"
95 --with-bam="${EPREFIX}/usr/"
96 $(use_enable debug)
97 )
98 autotools-utils_src_configure
99 }