Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/itpp/
Date: Sun, 26 Aug 2018 11:02:39
Message-Id: 1535281343.dbbdef9cc7ea934131d057bfd5e885e6182a6f3f.asturm@gentoo
1 commit: dbbdef9cc7ea934131d057bfd5e885e6182a6f3f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 11:01:44 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 11:02:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbbdef9c
7
8 sci-libs/itpp: EAPI-6 bump
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 sci-libs/itpp/itpp-4.3.1-r1.ebuild | 15 ++++++++++-----
13 1 file changed, 10 insertions(+), 5 deletions(-)
14
15 diff --git a/sci-libs/itpp/itpp-4.3.1-r1.ebuild b/sci-libs/itpp/itpp-4.3.1-r1.ebuild
16 index 53cdbee6564..8d522b501ed 100644
17 --- a/sci-libs/itpp/itpp-4.3.1-r1.ebuild
18 +++ b/sci-libs/itpp/itpp-4.3.1-r1.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=5
24 +EAPI=6
25
26 -inherit cmake-utils multilib
27 +inherit cmake-utils
28
29 DESCRIPTION="C++ library of mathematical, signal processing and communication"
30 HOMEPAGE="http://itpp.sourceforge.net/"
31 @@ -15,12 +15,17 @@ KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux"
32 IUSE="doc"
33
34 RDEPEND="
35 + sci-libs/fftw:3.0=
36 virtual/blas
37 virtual/lapack
38 - >=sci-libs/fftw-3"
39 +"
40 DEPEND="${RDEPEND}
41 virtual/pkgconfig
42 - doc? ( app-doc/doxygen virtual/latex-base )"
43 + doc? (
44 + app-doc/doxygen
45 + virtual/latex-base
46 + )
47 +"
48
49 DOCS=( ChangeLog NEWS AUTHORS README )
50
51 @@ -48,7 +53,7 @@ src_prepare() {
52 src_configure() {
53 local mycmakeargs=(
54 -DBLA_VENDOR=Generic
55 - $(cmake-utils_use doc HTML_DOCS)
56 + -DHTML_DOCS=$(usex doc)
57 )
58 cmake-utils_src_configure
59 }