add g13gui

This commit is contained in:
Mario Fetka
2024-07-09 12:26:02 +02:00
parent 552c98a1b5
commit 3bda41ec18
7 changed files with 105 additions and 5 deletions

3
app-misc/g13gui/Manifest Normal file
View File

@@ -0,0 +1,3 @@
DIST g13gui-0.1.0.tar.gz 347204 BLAKE2B 73b976d9dedce5289419683eed9860ba040969cefaa65c7c2270c5d54bc3224ecb30a2e6b55729ef56a3ff3fa65f99ea6c94a2a2acfab02826e36445b9fda88c SHA512 da913a6338713e32bcb05a4809107758bd8263d1d755d54813e778658e2bc0c7127898ab64ee879550e6027fc625709a0b09204d85f958bf396aa335d5ba8af1
EBUILD g13gui-0.1.0.ebuild 989 BLAKE2B 30264c409f6401d52a470d1c51ad788ca799ed9e7aa31fa2b4c59c25586390dd7cf3b3d46a7b17fc75e7f185faf07b950697a5066749304593e858fc5f8fd00b SHA512 2b6ad3511d3ed77748a04a6583ab1c18ef853a4001014ce83b4fc9ae1dabc1bd9d42441a8f46d4ee44db191fb346973cb0640bbc6b8da6b888beb70a098d7e60
EBUILD g13gui-9999.ebuild 962 BLAKE2B 8c6ab794a25150204fd48d1325ee3be052dfa1a7a319b68b4627c66555f57a9b15936256386276c2bb60734c5fa10d34be8952b04a494e61d84c0db9c5633476 SHA512 54e274380e49b82cfc1135e9f8e08e964c6ecec980b604270b6bbdcab29062de580791a8b352f23577cc33512c4293b8703d93b42127b9a3145bb5e393466dd0

View File

@@ -0,0 +1,48 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson xdg-utils udev
DESCRIPTION="This is a stand-alone companion application and user space driver for configuring a Logitech G13 game board"
HOMEPAGE="https://github.com/jtgans/g13gui"
SRC_URI="https://github.com/jtgans/g13gui/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="0"
IUSE=""
DEPEND="dev-python/pillow
dev-python/pygobject
dev-python/appdirs
dev-python/cffi
dev-python/dbus-python
dev-python/evdev
dev-python/psutil
dev-python/pyusb
"
RDEPEND="${DEPEND}"
RESTRICT=""
#src_configure() {
# local emesonargs=(
# $(meson_use test-suite install_tests)
# )
# meson_src_configure
#}
pkg_postinst() {
udev_reload
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
udev_reload
xdg_desktop_database_update
xdg_mimeinfo_database_update
}

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3 meson xdg-utils udev
DESCRIPTION="This is a stand-alone companion application and user space driver for configuring a Logitech G13 game board"
HOMEPAGE="https://github.com/jtgans/g13gui"
EGIT_REPO_URI="https://github.com/jtgans/g13gui.git"
#KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="0"
IUSE=""
DEPEND="dev-python/pillow
dev-python/pygobject
dev-python/appdirs
dev-python/cffi
dev-python/dbus-python
dev-python/evdev
dev-python/psutil
dev-python/pyusb
"
RDEPEND="${DEPEND}"
RESTRICT=""
#src_configure() {
# local emesonargs=(
# $(meson_use test-suite install_tests)
# )
# meson_src_configure
#}
pkg_postinst() {
udev_reload
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
udev_reload
xdg_desktop_database_update
xdg_mimeinfo_database_update
}