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 AC9871580B9 for ; Wed, 25 Aug 2021 14:36:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1EF5E0903; Wed, 25 Aug 2021 14:36:50 +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 C714AE0903 for ; Wed, 25 Aug 2021 14:36:50 +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 B3F07342BB5 for ; Wed, 25 Aug 2021 14:36:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15E668F1 for ; Wed, 25 Aug 2021 14:36:42 +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: <1629902153.3444fb8b2c32c6b70d91e14675661f533207f827.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtgamepad/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtgamepad/qtgamepad-5.15.2-r1.ebuild X-VCS-Directories: dev-qt/qtgamepad/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3444fb8b2c32c6b70d91e14675661f533207f827 X-VCS-Branch: master Date: Wed, 25 Aug 2021 14:36:42 +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: 7a6c7cb6-a47c-4ea0-b6ba-d7abfc353dfc X-Archives-Hash: b156a014a0855fe57a432dd095ebf975 commit: 3444fb8b2c32c6b70d91e14675661f533207f827 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 23 00:17:11 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 25 14:35:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3444fb8b dev-qt/qtgamepad: Fix IUSE=sdl to depend on media-libs/libsdl2 EAPI-8 Closes: https://bugs.gentoo.org/777516 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtgamepad/qtgamepad-5.15.2-r1.ebuild | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/dev-qt/qtgamepad/qtgamepad-5.15.2-r1.ebuild b/dev-qt/qtgamepad/qtgamepad-5.15.2-r1.ebuild new file mode 100644 index 00000000000..70434d09b66 --- /dev/null +++ b/dev-qt/qtgamepad/qtgamepad-5.15.2-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qt5-build + +DESCRIPTION="Qt module to support gamepad hardware" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +IUSE="evdev qml sdl" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[evdev?] + evdev? ( virtual/libudev:= ) + qml? ( ~dev-qt/qtdeclarative-${PV} ) + sdl? ( media-libs/libsdl2 ) +" +RDEPEND="${DEPEND}" + +src_prepare() { + qt_use_disable_mod qml quick \ + src/src.pro + + qt_use_disable_config evdev evdev \ + src/plugins/gamepads/gamepads.pro + + qt_use_disable_config sdl sdl2 \ + src/plugins/gamepads/gamepads.pro + + qt5-build_src_prepare +}