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 BD3EE13934E for ; Sun, 1 Aug 2021 18:27:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18C2DE0A10; Sun, 1 Aug 2021 18:27:58 +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 F3412E0A10 for ; Sun, 1 Aug 2021 18:27:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1E3A2343BF6 for ; Sun, 1 Aug 2021 18:27:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B5E885A for ; Sun, 1 Aug 2021 18:27:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1627842460.1bc7bfc2ebacbbe65f8176233d6271af7d02d8cc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/v4l-utils/v4l-utils-1.20.0.ebuild X-VCS-Directories: media-tv/v4l-utils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1bc7bfc2ebacbbe65f8176233d6271af7d02d8cc X-VCS-Branch: master Date: Sun, 1 Aug 2021 18:27:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: eef77f1e-a426-4cef-8a67-503a7d5b44a6 X-Archives-Hash: 4676a8c5b4bf1be69fd0c48e92dc1428 commit: 1bc7bfc2ebacbbe65f8176233d6271af7d02d8cc Author: Sam James gentoo org> AuthorDate: Sun Aug 1 07:03:52 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Aug 1 18:27:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bc7bfc2 media-tv/v4l-utils: use C++14 for now, drop qt5 workaround for C++11 Signed-off-by: Sam James gentoo.org> media-tv/v4l-utils/v4l-utils-1.20.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild b/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild index 6a579d1605e..71e15ab03e4 100644 --- a/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild +++ b/media-tv/v4l-utils/v4l-utils-1.20.0.ebuild @@ -68,14 +68,15 @@ src_prepare() { } src_configure() { + append-cxxflags -std=c++14 + if use qt5; then - append-cxxflags -std=c++11 local qt5_paths=( \ MOC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/moc" \ UIC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/uic" \ RCC="$($(tc-getPKG_CONFIG) --variable=host_bins Qt5Core)/rcc" \ ) - if use !opengl; then + if ! use opengl; then sed -e 's/Qt5OpenGL/DiSaBlEd/g' -i configure || die fi fi