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 E27071388C1 for ; Sat, 19 Dec 2015 10:10:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CAFE5E08F2; Sat, 19 Dec 2015 10:10:29 +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 3891EE0852 for ; Sat, 19 Dec 2015 10:10:29 +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 3BC6F34074E 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 DEE7FCE6 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: <1450519814.3270c13d369a8e7452630b44a0f1d1531f4742c6.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xinput_calibrator/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild X-VCS-Directories: x11-apps/xinput_calibrator/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 3270c13d369a8e7452630b44a0f1d1531f4742c6 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: 75732e14-78c3-45fb-8ac8-545d84cdc724 X-Archives-Hash: 54ceb91bb45a49d27a5c43f32021667c commit: 3270c13d369a8e7452630b44a0f1d1531f4742c6 Author: Pacho Ramos gentoo org> AuthorDate: Sat Dec 19 10:00:13 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Dec 19 10:10:14 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3270c13d x11-apps/xinput_calibrator: Fix building with latest glibmm/libsigc++ (#566594) Package-Manager: portage-2.2.26 x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild index 3073dfe..b976838 100644 --- a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild +++ b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild @@ -2,8 +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="A generic touchscreen calibration program for X.Org" HOMEPAGE="http://www.freedesktop.org/wiki/Software/xinput_calibrator" @@ -23,6 +23,8 @@ DEPEND="x11-libs/libX11 RDEPEND="${DEPEND}" src_configure() { + append-cxxflags -std=c++11 #566594 + local myeconfargs=( --with-gui=$(use gtk && echo "gtkmm" || echo "x11") )