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 90B56138351 for ; Wed, 18 Mar 2020 21:55:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A717FE0A9E; Wed, 18 Mar 2020 21:55:27 +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 89211E0A9E for ; Wed, 18 Mar 2020 21:55:27 +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 64EB834F2C2 for ; Wed, 18 Mar 2020 21:55:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 201E6103 for ; Wed, 18 Mar 2020 21:55:25 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1584568449.cea8b36a07cc686cf8f3af9c4312fdfaacd0a5fb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwayland/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtwayland/qtwayland-5.14.1-r2.ebuild X-VCS-Directories: dev-qt/qtwayland/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cea8b36a07cc686cf8f3af9c4312fdfaacd0a5fb X-VCS-Branch: master Date: Wed, 18 Mar 2020 21:55: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 757f6b2c-fe1a-45c0-9d0b-3fec6bec6737 X-Archives-Hash: edfb36c7be153b4184fa7d678807e29a commit: cea8b36a07cc686cf8f3af9c4312fdfaacd0a5fb Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Mar 18 21:53:55 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Mar 18 21:54:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea8b36a dev-qt/qtwayland: Drop USE libinput USE -libinput is broken with dev-qt/qtgui[-libinput,X], would also need -X. Closes: https://bugs.gentoo.org/711476 Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtwayland/qtwayland-5.14.1-r2.ebuild | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-qt/qtwayland/qtwayland-5.14.1-r2.ebuild b/dev-qt/qtwayland/qtwayland-5.14.1-r2.ebuild new file mode 100644 index 00000000000..391ab67ae43 --- /dev/null +++ b/dev-qt/qtwayland/qtwayland-5.14.1-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit qt5-build + +DESCRIPTION="Wayland platform plugin for Qt" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="vulkan X" + +DEPEND=" + >=dev-libs/wayland-1.6.0 + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV}[egl,libinput,vulkan=] + media-libs/mesa[egl] + >=x11-libs/libxkbcommon-0.2.0 + vulkan? ( dev-util/vulkan-headers ) + X? ( + x11-libs/libX11 + x11-libs/libXcomposite + ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + use X || rm -r config.tests/xcomposite || die + + qt5-build_src_prepare +} + +src_configure() { + local myqmakeargs=( + -- + $(qt_use vulkan feature-wayland-vulkan-server-buffer) + $(qt_use X feature-xcomposite-egl) + $(qt_use X feature-xcomposite-glx) + ) + qt5-build_src_configure +}