games-util/oversteer: add 0.8.3

Signed-off-by: Erica Nebula <EricaNebula@Proton.me>
This commit is contained in:
Erica Nebula
2026-01-18 00:24:42 -06:00
parent 750e3d6257
commit 123c75dabf
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit meson udev
DESCRIPTION="Steering Wheel Manager for Linux"
HOMEPAGE="https://github.com/berarma/oversteer"
SRC_URI="https://github.com/berarma/oversteer/archive/v${PV}.tar.gz -> oversteer-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
dev-python/pygobject
dev-python/pyudev
dev-python/pyxdg
dev-python/evdev
sys-devel/gettext
dev-libs/appstream-glib
dev-python/matplotlib[gtk3]
dev-python/scipy
"
DEPEND="${BDEPEND}"
src_configure() {
local emesonargs=(
-Dpython.bytecompile=2
)
meson_src_configure
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}