app-misc/g810-led: Bump to 0.3.1

Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/10773
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Haelwenn (lanodan) Monnier
2019-01-08 02:23:07 +01:00
committed by Andreas Sturmlechner
parent 1475b6ca40
commit 09d7e18aaa
2 changed files with 48 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST g810-led-0.2.7.tar.gz 33127 BLAKE2B 1ffa28f4e21273afa805ff2ddfeae00cf4b25382f7da617016651283331d7d17faee1e6f68d00ab988c30ba1a7d4b252cf28c021999871a7fbe54c47ae3ccb23 SHA512 f67d44f1c51a29cbdfe9bb5e28f3dea5e9b08aa5e2a08cf875578d6b74e8e77f880378c825efcc3068b400131295e1fd196454b8b10143c4f5d5f77be760512a
DIST g810-led-0.3.1.tar.gz 34069 BLAKE2B ebc83e1f0908e521573f6ea812c1893e8314548dbe30cad4a8f2af171eaf7f73ba905f6e01eafe9bca6c1bf006d626086091c871c6382dcd9a58caa76173ca59 SHA512 62bf73a897f8c1c967ce64f6e352d55b08af764b2aac8ce722906cdc67db28676bc5665d1ba307f0c43360e57d53e75fa39aea29ca7aa6da2e125782ae38446c

View File

@@ -0,0 +1,47 @@
# Copyright 2018-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit systemd udev eutils
DESCRIPTION="Led controller for Logitech G- Keyboards"
HOMEPAGE="https://github.com/MatMoul/g810-led"
SRC_URI="https://github.com/MatMoul/g810-led/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+hidapi"
RDEPEND="
hidapi? ( dev-libs/hidapi:= )
!hidapi? ( virtual/libusb:= )
"
DEPEND="${RDEPEND}"
DOCS=("README.md" "sample_profiles" "sample_effects")
src_compile() {
emake LIB="$(usex hidapi hidapi libusb)"
}
src_install() {
dolib.so "lib/libg810-led.so.${PV}"
dosym "libg810-led.so.${PV}" "/usr/$(get_libdir)/libg810-led.so"
dobin bin/g810-led
local boards=(213 410 413 512 513 610 910 pro)
local x
for x in "${boards[@]}"; do
dosym g810-led "/usr/bin/g${x}-led"
done
systemd_dounit systemd/g810-led.service
systemd_dounit systemd/g810-led-reboot.service
udev_newrules udev/g810-led.rules 60-g810-led.rules
einstalldocs
}