blob: 8cef364fb31cdba43e1553a7a37aebc3ba5c8b18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P="${PN}-v${PV}"
inherit cmake flag-o-matic linux-info
DESCRIPTION="An unofficial userspace driver for HID++ Logitech devices"
HOMEPAGE="https://github.com/PixlOne/logiops"
SRC_URI="https://github.com/PixlOne/${PN}/releases/download/v${PV}/${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="systemd"
DEPEND="
dev-libs/glib
dev-libs/libconfig:=[cxx]
dev-libs/libevdev
sys-apps/dbus
virtual/libudev
systemd? ( sys-apps/systemd )
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
DOCS=( "README.md" "TESTED.md" )
pkg_pretend() {
local CHECK_CONFIG="~HID_LOGITECH ~HID_LOGITECH_HIDPP"
check_extra_config
}
src_configure() {
# -Werror=odr
# https://bugs.gentoo.org/924426
# https://github.com/PixlOne/logiops/issues/445
filter-lto
local mycmakeargs=(
-DBUILD_SHARED="ON"
-DBUILD_STATIC="OFF"
-DLOGIOPS_VERSION="${PV}"
)
cmake_src_configure
}
src_install() {
default
cmake_src_install
# Install lib of submodule, as no install routine exist
dolib.so "${BUILD_DIR}/src/ipcgull/libipcgull.so"
insinto /etc
newins logid.example.cfg logid.cfg
newinitd "${FILESDIR}"/logid.initd logid
}
pkg_postinst() {
einfo "An example config file has been installed as /etc/logid.cfg."
einfo "See https://github.com/PixlOne/logiops/wiki/Configuration for more information."
}
|