diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-24 14:31:53 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-24 14:40:27 +0100 |
commit | f6511160be3f7c9524a837cfaa75d23549901f58 (patch) | |
tree | 88548752f9f356dcb4c6851398690fd74b1a77ad /sci-physics | |
parent | media-tv/me-tv: Fix building with latest glibmm/libsigc++ (diff) | |
download | gentoo-f6511160be3f7c9524a837cfaa75d23549901f58.tar.gz gentoo-f6511160be3f7c9524a837cfaa75d23549901f58.tar.bz2 gentoo-f6511160be3f7c9524a837cfaa75d23549901f58.zip |
sci-physics/h2o-gtk: Fix building with latest glibmm/libsigc++
Package-Manager: portage-2.2.26
Diffstat (limited to 'sci-physics')
-rw-r--r-- | sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild b/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild index fb30e916c6d9..a8884840b89c 100644 --- a/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild +++ b/sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild @@ -2,9 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 - -inherit autotools-utils +EAPI=5 +inherit autotools-utils flag-o-matic DESCRIPTION="GTK+ UI for libh2o -- water & steam properties" HOMEPAGE="https://bitbucket.org/mgorny/h2o-gtk/" @@ -19,3 +18,8 @@ RDEPEND="dev-cpp/gtkmm >=sci-libs/libh2oxx-0.2 sci-libs/plotmm" DEPEND="${RDEPEND}" + +src_prepare() { + autotools-utils_src_prepare + append-cxxflags -std=c++11 +} |