Replace new-lg4ff with ebuild from stefantalpalaru

This commit is contained in:
Sravan Balaji 2024-06-05 17:24:58 -04:00
parent 8bfbd095d3
commit 6f5ed23ebe
2 changed files with 14 additions and 36 deletions

View File

@ -1 +0,0 @@
blacklist hid-logitech

View File

@ -1,52 +1,31 @@
# Copyright 2022-2024 Gentoo Authors # Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
EAPI=8 EAPI=8
inherit linux-mod linux-info inherit linux-mod-r1
DESCRIPTION="Experimental Logitech force feedback module" DESCRIPTION="Experimental Logitech force feedback module"
HOMEPAGE="https://github.com/berarma/new-lg4ff" HOMEPAGE="https://github.com/berarma/new-lg4ff"
SRC_URI="https://github.com/berarma/new-lg4ff/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" SRC_URI="https://github.com/berarma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2" LICENSE="GPL-2"
SLOT="0" SLOT="0"
KEYWORDS="~amd64" KEYWORDS="~amd64"
pkg_pretend() { # https://github.com/berarma/new-lg4ff/issues/57#issuecomment-1019325204
if linux_config_exists; then CONFIG_CHECK="LOGIWHEELS_FF"
if linux_chkconfig_module HID_LOGITECH ; then
:
else
eerror "Kernel config CONFIG_HID_LOGITECH must be set to 'm'"
eerror "Device Drivers -> HID support -> Special HID drivers -> Logitech devices"
die
fi
if linux_chkconfig_present LOGIWHEELS_FF ; then
:
else
eerror "Kernel config CONFIG_LOGIWHEELS_FF must be set to 'y'"
eerror "Device Drivers -> HID support -> Special HID drivers -> Logitech devices"
die
fi
else
eerror "No .config !"
die
fi
}
pkg_setup() { src_prepare() {
MODULE_NAMES="hid-logitech-new(kernel/drivers/hid:${S})" default
linux-mod_pkg_setup
sed -i \
-e "s%KDIR := .*%KDIR := ${KERNEL_DIR}%g" \
Makefile
} }
src_compile() { src_compile() {
ARCH=$(uname -m | sed -e 's/i.86/i386/') local modlist=( hid-logitech-new=kernel/drivers/hid )
make
}
src_install() { linux-mod-r1_src_compile
linux-mod_src_install
insinto /etc/modprobe.d
doins "${FILESDIR}"/new-lg4ff.conf
} }