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 671AB139085 for ; Sat, 28 Jan 2017 06:12:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 150A0E0DB7; Sat, 28 Jan 2017 06:12:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E473CE0DB7 for ; Sat, 28 Jan 2017 06:12:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 910E0341662 for ; Sat, 28 Jan 2017 06:12:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E374A327C for ; Sat, 28 Jan 2017 06:12:07 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1485583738.bcea2037cba680360c03f63bd3041e3c5eda6d9c.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-wacom/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-drivers/xf86-input-wacom/xf86-input-wacom-0.34.0.ebuild X-VCS-Directories: x11-drivers/xf86-input-wacom/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: bcea2037cba680360c03f63bd3041e3c5eda6d9c X-VCS-Branch: master Date: Sat, 28 Jan 2017 06:12:07 +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: 309aebd6-0b46-4d37-8e1d-b20d91a6a883 X-Archives-Hash: f4846a72efce568b25a3da26ab771880 commit: bcea2037cba680360c03f63bd3041e3c5eda6d9c Author: Matt Turner gentoo org> AuthorDate: Sat Jan 28 05:52:51 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Jan 28 06:08:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcea2037 x11-drivers/xf86-input-wacom: Kconfig directions. Upstream commit 471d17148c8b4174ac5f5283a73316d12c4379bc changed it to HID_USB_WACOM, and then commit 7403a6a448c3ed96221bb46c9da75254fd87b520 merged HID_USB_WACOM into HID_WACOM. Both commits appeared first in the v3.17 release. Bug: https://bugs.gentoo.org/544712 .../xf86-input-wacom-0.34.0.ebuild | 36 +++++++++++++++------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.34.0.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.34.0.ebuild index 5a0aed8..2e82a91 100644 --- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.34.0.ebuild +++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.34.0.ebuild @@ -45,16 +45,30 @@ src_install() { pkg_pretend() { linux-info_pkg_setup - if ! linux_config_exists \ - || ! linux_chkconfig_present TABLET_USB_WACOM \ - || ! linux_chkconfig_present INPUT_EVDEV; then - echo - ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel" - ewarn " Device Drivers --->" - ewarn " Input device support --->" - ewarn " <*> Event interface" - ewarn " [*] Tablets --->" - ewarn " <*> Wacom Intuos/Graphire tablet support (USB)" - echo + if kernel_is lt 3 17; then + if ! linux_config_exists \ + || ! linux_chkconfig_present TABLET_USB_WACOM \ + || ! linux_chkconfig_present INPUT_EVDEV; then + echo + ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel" + ewarn " Device Drivers --->" + ewarn " Input device support --->" + ewarn " <*> Event interface" + ewarn " [*] Tablets --->" + ewarn " <*> Wacom Intuos/Graphire tablet support (USB)" + echo + fi + else + if ! linux_config_exists \ + || ! linux_chkconfig_present HID_WACOM; then + echo + ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel" + ewarn " Device Drivers --->" + ewarn " HID support --->" + ewarn " Special HID drivers --->" + ewarn " <*> Wacom Intuos/Graphire tablet support (USB)" + echo + fi fi + }