Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libdap/
Date: Mon, 19 Feb 2018 19:43:19
Message-Id: 1519069244.9a41cc1078c6f843351db280f48f98c50bb1b11c.soap@gentoo
1 commit: 9a41cc1078c6f843351db280f48f98c50bb1b11c
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 19 18:17:21 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 19 19:40:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a41cc10
7
8 sci-libs/libdap: Always build in C++14 mode
9
10 Closes: https://bugs.gentoo.org/619144
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 sci-libs/libdap/libdap-3.18.1.ebuild | 7 +++++--
14 1 file changed, 5 insertions(+), 2 deletions(-)
15
16 diff --git a/sci-libs/libdap/libdap-3.18.1.ebuild b/sci-libs/libdap/libdap-3.18.1.ebuild
17 index b0a4bfc02ba..c0680c183d3 100644
18 --- a/sci-libs/libdap/libdap-3.18.1.ebuild
19 +++ b/sci-libs/libdap/libdap-3.18.1.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 +# Copyright 1999-2018 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26
27 -inherit autotools
28 +inherit autotools flag-o-matic
29
30 DESCRIPTION="Implementation of a C++ SDK for DAP 2.0 and 3.2"
31 HOMEPAGE="http://opendap.org/"
32 @@ -38,6 +38,9 @@ src_prepare() {
33 }
34
35 src_configure() {
36 + # bug 619144
37 + append-cxxflags -std=c++14
38 +
39 econf \
40 --enable-shared \
41 $(use_enable static-libs static)