From e4e7f5b78ff8334a69cb15cfa56f9c6cbcaa08e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 19 Nov 2019 21:02:25 +0100 Subject: sys-apps/madcatz-mouse-restart: add hook to restart usb mouse --- sys-apps/madcatz-mouse-restart/files/madcatz-rat6 | 10 ++++++++++ .../madcatz-mouse-restart-1.0.ebuild | 18 ++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100755 sys-apps/madcatz-mouse-restart/files/madcatz-rat6 create mode 100644 sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild (limited to 'sys-apps/madcatz-mouse-restart') diff --git a/sys-apps/madcatz-mouse-restart/files/madcatz-rat6 b/sys-apps/madcatz-mouse-restart/files/madcatz-rat6 new file mode 100755 index 0000000..3f5f94c --- /dev/null +++ b/sys-apps/madcatz-mouse-restart/files/madcatz-rat6 @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ "$1" = "post" ] && [ "$2" = "suspend" ]; then + for device in /sys/bus/usb/devices/*; do + [ "$(cat "$device/idVendor")" = "12cf" ] || continue + [ "$(cat "$device/idProduct")" = "0c04" ] || continue + echo 0 > "$device/authorized" + echo 1 > "$device/authorized" + done +fi diff --git a/sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild b/sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild new file mode 100644 index 0000000..7bd86f1 --- /dev/null +++ b/sys-apps/madcatz-mouse-restart/madcatz-mouse-restart-1.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Fix to reload Mad Catz RAT 6+ on wakeup" + +LICENSE="GPL-3.0+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="sys-auth/elogind" +RDEPEND="${DEPEND}" + +src_install() { + exeinto /lib64/elogind/system-sleep + doexe "${FILESDIR}/madcatz-rat6" +} -- cgit v1.2.3