2020-07-28 11:51:57 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=bdepend
|
2021-02-01 00:29:38 +03:00
|
|
|
PYTHON_COMPAT=( python3_{7,8} )
|
2020-07-28 11:51:57 +03:00
|
|
|
|
|
|
|
inherit linux-info udev xdg distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Linux Device Manager for Logitech Unifying Receivers and Paired Devices"
|
|
|
|
HOMEPAGE="https://pwr-solaar.github.io/Solaar/"
|
|
|
|
SRC_URI="https://github.com/pwr-Solaar/Solaar/archive/${PV/_rc/rc}.tar.gz -> ${P/_rc/rc}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~arm ~x86"
|
|
|
|
IUSE="doc appindicator libnotify"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
acct-group/plugdev
|
|
|
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
|
|
|
>=dev-python/pyudev-0.13[${PYTHON_USEDEP}]
|
|
|
|
x11-libs/gtk+:3[introspection]
|
|
|
|
appindicator? ( dev-libs/libappindicator:3 )
|
|
|
|
libnotify? ( x11-libs/libnotify )"
|
|
|
|
# libappindicator & libnotify are entirely optional and detected at runtime
|
|
|
|
|
|
|
|
S="${WORKDIR}"/Solaar-${PV/_rc/rc}
|
|
|
|
|
|
|
|
CONFIG_CHECK="~HID_LOGITECH_DJ ~HIDRAW"
|
|
|
|
|
|
|
|
python_prepare_all() {
|
|
|
|
# don't autostart (bug #494608)
|
|
|
|
sed -i \
|
|
|
|
-e '/yield autostart_path/d' \
|
|
|
|
setup.py || die
|
|
|
|
|
|
|
|
sed -i -r \
|
|
|
|
-e '/yield.*udev.*rules.d/{s,/etc,/lib,g}' \
|
|
|
|
setup.py || die
|
|
|
|
|
|
|
|
# grant plugdev group rw access
|
|
|
|
sed -i 's/#MODE=/MODE=/' rules.d/42-logitech-unify-permissions.rules || die
|
|
|
|
|
|
|
|
distutils-r1_python_prepare_all
|
|
|
|
}
|
|
|
|
|
|
|
|
python_install_all() {
|
|
|
|
distutils-r1_python_install_all
|
|
|
|
|
|
|
|
dodoc docs/devices.md
|
|
|
|
if use doc; then
|
|
|
|
dodoc -r docs/*
|
|
|
|
else
|
|
|
|
newdoc docs/index.md README.md
|
|
|
|
fi
|
|
|
|
udev_dorules "${S}"/rules.d/42-logitech-unify-permissions.rules
|
|
|
|
}
|