From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 77B681384B4 for ; Thu, 24 Dec 2015 13:40:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6448DE086F; Thu, 24 Dec 2015 13:40:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92D2FE0869 for ; Thu, 24 Dec 2015 13:40:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1582340775 for ; Thu, 24 Dec 2015 13:40:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2CE3CF0 for ; Thu, 24 Dec 2015 13:40:38 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1450964427.f6511160be3f7c9524a837cfaa75d23549901f58.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/h2o-gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild X-VCS-Directories: sci-physics/h2o-gtk/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: f6511160be3f7c9524a837cfaa75d23549901f58 X-VCS-Branch: master Date: Thu, 24 Dec 2015 13:40:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 29944c7a-977d-48de-aec1-70b3a77ba08b X-Archives-Hash: 4394d750a827c1c3f40165bf01f37ddc commit: f6511160be3f7c9524a837cfaa75d23549901f58 Author: Pacho Ramos gentoo org> AuthorDate: Thu Dec 24 13:31:53 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Thu Dec 24 13:40:27 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6511160 sci-physics/h2o-gtk: Fix building with latest glibmm/libsigc++ Package-Manager: portage-2.2.26 sci-physics/h2o-gtk/h2o-gtk-0.1.ebuild | 10 +++++++--- 1 file 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 fb30e91..a888484 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 +}