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 5ABB01384B4 for ; Sat, 19 Dec 2015 10:10:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E6C521C006; Sat, 19 Dec 2015 10:10:31 +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 4C5AF21C006 for ; Sat, 19 Dec 2015 10:10:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2262F340564 for ; Sat, 19 Dec 2015 10:10:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98764A91 for ; Sat, 19 Dec 2015 10:10:25 +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: <1450519797.e1c4d6fb35c17323b97db0b34253568ae437dd10.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gelemental/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-chemistry/gelemental/gelemental-1.2.0-r1.ebuild X-VCS-Directories: sci-chemistry/gelemental/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: e1c4d6fb35c17323b97db0b34253568ae437dd10 X-VCS-Branch: master Date: Sat, 19 Dec 2015 10:10:25 +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: bca6af2b-ce27-4d81-9948-a940752102ef X-Archives-Hash: e200076c92f658fa014a96094803de5b commit: e1c4d6fb35c17323b97db0b34253568ae437dd10 Author: Pacho Ramos gentoo org> AuthorDate: Sat Dec 19 09:36:01 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Dec 19 10:09:57 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c4d6fb sci-chemistry/gelemental: Fix building with latest glibmm/libsigc++ (#566450) Package-Manager: portage-2.2.26 sci-chemistry/gelemental/gelemental-1.2.0-r1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sci-chemistry/gelemental/gelemental-1.2.0-r1.ebuild b/sci-chemistry/gelemental/gelemental-1.2.0-r1.ebuild index 78bfcff..457cb47 100644 --- a/sci-chemistry/gelemental/gelemental-1.2.0-r1.ebuild +++ b/sci-chemistry/gelemental/gelemental-1.2.0-r1.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 -inherit autotools-utils fdo-mime gnome2-utils eutils +inherit autotools-utils fdo-mime flag-o-matic gnome2-utils eutils DESCRIPTION="Periodic table viewer that provides detailed information on the chemical elements" HOMEPAGE="http://freecode.com/projects/gelemental/" @@ -45,6 +45,7 @@ PATCHES=( AUTOTOOLS_IN_SOURCE_BUILD=1 src_configure() { + append-cxxflags -std=c++11 #566450 local myeconfargs=( $(use_enable doc api-docs) ) autotools-utils_src_configure }