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 4886F1382C5 for ; Wed, 14 Feb 2018 15:55:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0FDDE09CE; Wed, 14 Feb 2018 15:55:05 +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 C116CE09C9 for ; Wed, 14 Feb 2018 15:55:05 +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 E94CB335C8E for ; Wed, 14 Feb 2018 13:26:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DCA11F1 for ; Wed, 14 Feb 2018 13:26:45 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1518614797.5896d778d5f984ebb4ead74440020f84f4174b6d.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtgamepad/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtgamepad/qtgamepad-5.9999.ebuild X-VCS-Directories: dev-qt/qtgamepad/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 5896d778d5f984ebb4ead74440020f84f4174b6d X-VCS-Branch: master Date: Wed, 14 Feb 2018 13:26:45 +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: 064e444f-ef5d-4b75-91db-4b18261fd1d9 X-Archives-Hash: 84f6eb5b91efd4b64d33f464a8c8d183 commit: 5896d778d5f984ebb4ead74440020f84f4174b6d Author: Michael Palimaka gentoo org> AuthorDate: Wed Feb 14 13:24:38 2018 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Feb 14 13:26:37 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=5896d778 dev-qt/qtgamepad: add missing 5.9999 Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-qt/qtgamepad/qtgamepad-5.9999.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-qt/qtgamepad/qtgamepad-5.9999.ebuild b/dev-qt/qtgamepad/qtgamepad-5.9999.ebuild new file mode 100644 index 00000000..a7c4b576 --- /dev/null +++ b/dev-qt/qtgamepad/qtgamepad-5.9999.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Qt module to support gamepad hardware" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64" +fi + +IUSE="evdev qml sdl" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[evdev?] + evdev? ( virtual/libudev:= ) + sdl? ( media-libs/libsdl ) + qml? ( ~dev-qt/qtdeclarative-${PV} ) +" +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 +}