commit:     742cfff92a456b596f2dbf440a4eb3dd10560d41
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 27 15:02:52 2023 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 15:02:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742cfff9

app-misc/solaar: migrate to Ayatana appindicators implementation

Also fix udev_reload call and update icons cache properly

Closes: https://bugs.gentoo.org/887351
Closes: https://bugs.gentoo.org/854771
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 app-misc/solaar/solaar-1.1.8-r1.ebuild | 81 ++++++++++++++++++++++++++++++++++
 1 file changed, 81 insertions(+)

diff --git a/app-misc/solaar/solaar-1.1.8-r1.ebuild 
b/app-misc/solaar/solaar-1.1.8-r1.ebuild
new file mode 100644
index 000000000000..13ddbb755105
--- /dev/null
+++ b/app-misc/solaar/solaar-1.1.8-r1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_SINGLE_IMPL=1
+PYTHON_COMPAT=( python3_{9..11} )
+
+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/";
+if [[ ${PV} =~ 9999* ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/pwr-Solaar/Solaar";
+else
+       
SRC_URI="https://github.com/pwr-Solaar/Solaar/archive/${PV/_rc/rc}.tar.gz -> 
${P/_rc/rc}.tar.gz"
+       KEYWORDS="~amd64 ~arm ~x86"
+       S="${WORKDIR}"/Solaar-${PV/_rc/rc}
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc appindicator libnotify"
+
+RDEPEND="
+       acct-group/plugdev
+       $(python_gen_cond_dep '
+               dev-python/psutil[${PYTHON_USEDEP}]
+               dev-python/pygobject:3[${PYTHON_USEDEP}]
+               dev-python/python-evdev[${PYTHON_USEDEP}]
+               dev-python/python-xlib[${PYTHON_USEDEP}]
+               >=dev-python/pyudev-0.13[${PYTHON_USEDEP}]
+               dev-python/pyyaml[${PYTHON_USEDEP}]
+
+       ')
+       x11-libs/gtk+:3[introspection]
+       appindicator? ( dev-libs/libayatana-appindicator )
+       libnotify? ( x11-libs/libnotify[introspection] )"
+# libayatana-appindicator & libnotify are entirely optional and detected at 
runtime
+
+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 ChangeLog.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
+}
+
+pkg_postinst() {
+       udev_reload
+       xdg_pkg_postinst
+}
+
+pkg_postrm() {
+       udev_reload
+       xdg_pkg_postrm
+}

Reply via email to