Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/h2o-gtk/
Date: Thu, 24 Dec 2015 13:40:47
Message-Id: 1450964427.f6511160be3f7c9524a837cfaa75d23549901f58.pacho@gentoo
1 commit: f6511160be3f7c9524a837cfaa75d23549901f58
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 24 13:31:53 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 24 13:40:27 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6511160
7
8 sci-physics/h2o-gtk: Fix building with latest glibmm/libsigc++
9
10 Package-Manager: portage-2.2.26
11
12 sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild | 10 +++++++---
13 1 file changed, 7 insertions(+), 3 deletions(-)
14
15 diff --git a/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild b/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild
16 index fb30e91..a888484 100644
17 --- a/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild
18 +++ b/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild
19 @@ -2,9 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=4
24 -
25 -inherit autotools-utils
26 +EAPI=5
27 +inherit autotools-utils flag-o-matic
28
29 DESCRIPTION="GTK+ UI for libh2o -- water & steam properties"
30 HOMEPAGE="https://bitbucket.org/mgorny/h2o-gtk/"
31 @@ -19,3 +18,8 @@ RDEPEND="dev-cpp/gtkmm
32 >=sci-libs/libh2oxx-0.2
33 sci-libs/plotmm"
34 DEPEND="${RDEPEND}"
35 +
36 +src_prepare() {
37 + autotools-utils_src_prepare
38 + append-cxxflags -std=c++11
39 +}