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-libs/flann: ChangeLog flann-1.8.4.ebuild
Date: Sun, 01 Dec 2013 19:06:05
Message-Id: 20131201190559.9AE312004B@flycatcher.gentoo.org
1 jlec 13/12/01 19:05:59
2
3 Modified: ChangeLog flann-1.8.4.ebuild
4 Log:
5 sci-libs/flann: only depend on hdf5 with USE=mpi and tests, #492584; thanks nikoli for the patch
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.20 sci-libs/flann/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/flann/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/flann/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/flann/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/flann/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 24 Nov 2013 17:02:38 -0000 1.19
23 +++ ChangeLog 1 Dec 2013 19:05:59 -0000 1.20
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sci-libs/flann
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/flann/ChangeLog,v 1.19 2013/11/24 17:02:38 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/flann/ChangeLog,v 1.20 2013/12/01 19:05:59 jlec Exp $
29 +
30 + 01 Dec 2013; Justin Lecher <jlec@g.o> flann-1.8.4.ebuild:
31 + only depend on hdf5 with USE=mpi and tests, #492584; thanks nikoli for the
32 + patch
33
34 24 Nov 2013; Justin Lecher <jlec@g.o> flann-1.8.4.ebuild,
35 metadata.xml:
36
37
38
39 1.3 sci-libs/flann/flann-1.8.4.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/flann/flann-1.8.4.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/flann/flann-1.8.4.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/flann/flann-1.8.4.ebuild?r1=1.2&r2=1.3
44
45 Index: flann-1.8.4.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sci-libs/flann/flann-1.8.4.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- flann-1.8.4.ebuild 24 Nov 2013 17:02:38 -0000 1.2
52 +++ flann-1.8.4.ebuild 1 Dec 2013 19:05:59 -0000 1.3
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/flann/flann-1.8.4.ebuild,v 1.2 2013/11/24 17:02:38 jlec Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/flann/flann-1.8.4.ebuild,v 1.3 2013/12/01 19:05:59 jlec Exp $
58
59 EAPI=5
60
61 @@ -18,12 +18,18 @@
62 IUSE="cuda doc mpi openmp octave python static-libs test"
63
64 RDEPEND="
65 - sci-libs/hdf5[mpi?]
66 - mpi? ( dev-libs/boost[mpi] )
67 + mpi? (
68 + sci-libs/hdf5[mpi]
69 + dev-libs/boost[mpi]
70 + )
71 octave? ( sci-mathematics/octave )"
72 DEPEND="${RDEPEND}
73 app-arch/unzip
74 - test? ( dev-cpp/gtest )"
75 + test? (
76 + dev-cpp/gtest
77 + cuda? ( sci-libs/hdf5 )
78 + )
79 +"
80 PDEPEND="python? ( ~dev-python/pyflann-${PV} )"
81
82 S="${WORKDIR}"/${P}-src