diff options
author | 2023-04-26 07:47:23 +1000 | |
---|---|---|
committer | 2023-05-13 03:58:49 +0100 | |
commit | 88d6f124bd13add469cf537eaccff1ebdbf65936 (patch) | |
tree | 17bb84f8460f630ea27bbb15a7bee276abed7c1d /app-laptop/tuxedo-control-center-bin/tuxedo-control-center-bin-2.0.2.ebuild | |
parent | app-accessibility/at-spi2-core: backport build fixes (diff) | |
download | gentoo-88d6f124bd13add469cf537eaccff1ebdbf65936.tar.gz gentoo-88d6f124bd13add469cf537eaccff1ebdbf65936.tar.bz2 gentoo-88d6f124bd13add469cf537eaccff1ebdbf65936.zip |
app-laptop/tuxedo-control-center-bin: add 2.0.2
Signed-off-by: Matt Jolly <Matt.Jolly@footclan.ninja>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-laptop/tuxedo-control-center-bin/tuxedo-control-center-bin-2.0.2.ebuild')
-rw-r--r-- | app-laptop/tuxedo-control-center-bin/tuxedo-control-center-bin-2.0.2.ebuild | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/app-laptop/tuxedo-control-center-bin/tuxedo-control-center-bin-2.0.2.ebuild b/app-laptop/tuxedo-control-center-bin/tuxedo-control-center-bin-2.0.2.ebuild new file mode 100644 index 000000000000..6c558463d5fb --- /dev/null +++ b/app-laptop/tuxedo-control-center-bin/tuxedo-control-center-bin-2.0.2.ebuild @@ -0,0 +1,81 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit rpm systemd xdg-utils + +MY_PN="${PN/-bin/}" + +DESCRIPTION="Tool to control performance, energy, fan and comfort settings on TUXEDO laptops" +HOMEPAGE="https://github.com/tuxedocomputers/tuxedo-control-center" +SRC_URI="https://rpm.tuxedocomputers.com/opensuse/15.4/x86_64/${MY_PN}_${PV}.rpm" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="-* ~amd64" + +RESTRICT="strip splitdebug" + +DEPEND=">=app-laptop/tuxedo-keyboard-3.1.3" +RDEPEND="${DEPEND}" +# See bug #827729 +BDEPEND="app-arch/xz-utils[extra-filters]" + +S="${WORKDIR}" +QA_PREBUILT="opt/tuxedo-control-center/*" + +src_prepare() { + default + rm -rf usr/lib || die "could not remove usr/lib" + mkdir files || die "could not create files dir" +} + +src_install() { + insinto / + doins -r usr opt + find . -type f -perm -a=x | while read f; do + fperms 0755 "${f/./}" + done + + dosym ../../opt/tuxedo-control-center/tuxedo-control-center /usr/bin/tuxedo-control-center + + insinto /usr/share/dbus-1/system.d/ + doins opt/tuxedo-control-center/resources/dist/tuxedo-control-center/data/dist-data/com.tuxedocomputers.tccd.conf + + insinto /usr/share/polkit-1/actions + doins opt/tuxedo-control-center/resources/dist/tuxedo-control-center/data/dist-data/com.tuxedocomputers.tccd.policy + + systemd_dounit opt/tuxedo-control-center/resources/dist/tuxedo-control-center/data/dist-data/tccd.service + systemd_dounit opt/tuxedo-control-center/resources/dist/tuxedo-control-center/data/dist-data/tccd-sleep.service + + newinitd "${FILESDIR}/tccd.initd" tccd +} + +pkg_config() { + ebegin "Reloading systemd" + systemctl daemon-reload + eend $? + ebegin "Enabling and starting tccd.service" + systemctl enable --now tccd + eend $? + ebegin "Enabling and starting tccd-sleep.service" + systemctl enable --now tccd-sleep + eend $? +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update + elog + elog "You need to enable tccd and tccd-sleep service before running tuxedo-control-center" + elog + elog "For your convenience, if you use systemd, you may just call:" + elog " emerge --config =app-laptop/${PF}" + elog +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +} |