Gentoo Archives: gentoo-commits

From: "Sergey Popov (pinkbyte)" <pinkbyte@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/cufflinks: ChangeLog cufflinks-1.3.0-r1.ebuild cufflinks-1.3.0.ebuild
Date: Wed, 05 Feb 2014 08:16:16
Message-Id: 20140205081611.9B5E52004C@flycatcher.gentoo.org
1 pinkbyte 14/02/05 08:16:11
2
3 Modified: ChangeLog
4 Added: cufflinks-1.3.0-r1.ebuild
5 Removed: cufflinks-1.3.0.ebuild
6 Log:
7 Revision bump: EAPI 5, add subslot to Boost dependency, fix compatibility with Automake 1.14, wrt bug #499046. Drop old revision
8
9 (Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
10
11 Revision Changes Path
12 1.6 sci-biology/cufflinks/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 11 Mar 2013 15:00:28 -0000 1.5
25 +++ ChangeLog 5 Feb 2014 08:16:11 -0000 1.6
26 @@ -1,6 +1,13 @@
27 # ChangeLog for sci-biology/cufflinks
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/ChangeLog,v 1.5 2013/03/11 15:00:28 jlec Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/ChangeLog,v 1.6 2014/02/05 08:16:11 pinkbyte Exp $
32 +
33 +*cufflinks-1.3.0-r1 (05 Feb 2014)
34 +
35 + 05 Feb 2014; Sergey Popov <pinkbyte@g.o> -cufflinks-1.3.0.ebuild,
36 + +cufflinks-1.3.0-r1.ebuild, files/cufflinks-1.3.0-autotools.patch:
37 + Revision bump: EAPI 5, add subslot to Boost dependency, fix compatibility
38 + with Automake 1.14, wrt bug #499046. Drop old revision
39
40 11 Mar 2013; Justin Lecher <jlec@g.o> metadata.xml:
41 Drop Andrey as maintainer so that bugs get assigned to sci-biology directly
42
43
44
45 1.1 sci-biology/cufflinks/cufflinks-1.3.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/cufflinks-1.3.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/cufflinks/cufflinks-1.3.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: cufflinks-1.3.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sci-biology/cufflinks/cufflinks-1.3.0-r1.ebuild,v 1.1 2014/02/05 08:16:11 pinkbyte Exp $
55
56 EAPI=5
57
58 AUTOTOOLS_AUTORECONF=yes
59
60 inherit autotools-utils
61
62 DESCRIPTION="Transcript assembly, differential expression, and differential regulation for RNA-Seq"
63 HOMEPAGE="http://cufflinks.cbcb.umd.edu/"
64 SRC_URI="http://cufflinks.cbcb.umd.edu/downloads/${P}.tar.gz"
65
66 SLOT="0"
67 LICENSE="Artistic"
68 IUSE="debug"
69 KEYWORDS="~amd64 ~x86"
70
71 DEPEND="
72 >=sci-biology/samtools-0.1.18
73 dev-libs/boost:="
74 RDEPEND="${DEPEND}"
75
76 PATCHES=(
77 "${FILESDIR}"/${P}-autotools.patch
78 "${FILESDIR}"/${P}-boost.patch
79 "${FILESDIR}"/${P}-gcc-4.7.patch
80 )
81
82 src_configure() {
83 local myeconfargs=(
84 --disable-optim
85 --with-boost-libdir="${EPREFIX}/usr/$(get_libdir)/"
86 --with-bam="${EPREFIX}/usr/"
87 $(use_enable debug)
88 )
89 autotools-utils_src_configure
90 }