diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 11:00:13 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 11:10:14 +0100 |
commit | 3270c13d369a8e7452630b44a0f1d1531f4742c6 (patch) | |
tree | 0d082abc27de981600b77750f86f7ae8ec6cb047 /x11-apps/xinput_calibrator | |
parent | dev-cpp/libglademm: Drop old (diff) | |
download | gentoo-3270c13d369a8e7452630b44a0f1d1531f4742c6.tar.gz gentoo-3270c13d369a8e7452630b44a0f1d1531f4742c6.tar.bz2 gentoo-3270c13d369a8e7452630b44a0f1d1531f4742c6.zip |
x11-apps/xinput_calibrator: Fix building with latest glibmm/libsigc++ (#566594)
Package-Manager: portage-2.2.26
Diffstat (limited to 'x11-apps/xinput_calibrator')
-rw-r--r-- | x11-apps/xinput_calibrator/xinput_calibrator-0.7.5.ebuild | 6 |
1 files 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 3073dfe19190..b976838030f7 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") ) |