From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A38FC1396D0 for ; Tue, 22 Aug 2017 14:21:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 718851FC099; Tue, 22 Aug 2017 14:21:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E04E1FC099 for ; Tue, 22 Aug 2017 14:21:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91FEC341C2B for ; Tue, 22 Aug 2017 14:21:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF1F17EC0 for ; Tue, 22 Aug 2017 14:21:14 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1503411614.ac45159994e801b7c3021ce87257970e1512a08b.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild X-VCS-Directories: app-i18n/ibus-qt/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ac45159994e801b7c3021ce87257970e1512a08b X-VCS-Branch: master Date: Tue, 22 Aug 2017 14:21:14 +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: 14c46608-40bf-429a-8dc7-98570cf3418b X-Archives-Hash: 6c34449286e27a5fd79a7b8a2eebaf60 commit: ac45159994e801b7c3021ce87257970e1512a08b Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Tue Aug 22 10:57:20 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Aug 22 14:20:14 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac451599 app-i18n/ibus-qt: Fix building with GCC <6 and ICU >=59. app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild b/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild index f12619e7885..2f5012d1e5e 100644 --- a/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild +++ b/app-i18n/ibus-qt/ibus-qt-1.3.3.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit cmake-utils +inherit cmake-utils flag-o-matic DESCRIPTION="Qt IBus library and Qt input method plugin" HOMEPAGE="https://github.com/ibus/ibus/wiki" @@ -28,6 +28,8 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}"/${PN}-doc.patch ) src_configure() { + append-cxxflags -std=c++14 + local mycmakeargs=( -DLIBDIR=$(get_libdir) )