Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-apps/xinput_calibrator/
Date: Sat, 19 Dec 2015 10:10:31
Message-Id: 1450519814.3270c13d369a8e7452630b44a0f1d1531f4742c6.pacho@gentoo
1 commit: 3270c13d369a8e7452630b44a0f1d1531f4742c6
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 19 10:00:13 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 19 10:10:14 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3270c13d
7
8 x11-apps/xinput_calibrator: Fix building with latest glibmm/libsigc++ (#566594)
9
10 Package-Manager: portage-2.2.26
11
12 x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild | 6 ++++--
13 1 file changed, 4 insertions(+), 2 deletions(-)
14
15 diff --git a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild
16 index 3073dfe..b976838 100644
17 --- a/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild
18 +++ b/x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild
19 @@ -2,8 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=4
24 -inherit autotools-utils
25 +EAPI=5
26 +inherit autotools-utils flag-o-matic
27
28 DESCRIPTION="A generic touchscreen calibration program for X.Org"
29 HOMEPAGE="http://www.freedesktop.org/wiki/Software/xinput_calibrator"
30 @@ -23,6 +23,8 @@ DEPEND="x11-libs/libX11
31 RDEPEND="${DEPEND}"
32
33 src_configure() {
34 + append-cxxflags -std=c++11 #566594
35 +
36 local myeconfargs=(
37 --with-gui=$(use gtk && echo "gtkmm" || echo "x11")
38 )