diff options
author | Yixun Lan <dlan@gentoo.org> | 2021-06-05 15:27:33 +0800 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2021-06-05 15:44:43 +0800 |
commit | a8cc1be6b352b2a8fbfc614a6f5b71e91c6517ab (patch) | |
tree | 8e5392ab1fe21c162f12ef8d1a1416b6ca1e3ab7 /sys-power/thermald/thermald-2.4.5.ebuild | |
parent | app-misc/cmatrix: revbump, fix mtx font installation (diff) | |
download | gentoo-a8cc1be6b352b2a8fbfc614a6f5b71e91c6517ab.tar.gz gentoo-a8cc1be6b352b2a8fbfc614a6f5b71e91c6517ab.tar.bz2 gentoo-a8cc1be6b352b2a8fbfc614a6f5b71e91c6517ab.zip |
sys-power/thermald: version bump, 2.4.5
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'sys-power/thermald/thermald-2.4.5.ebuild')
-rw-r--r-- | sys-power/thermald/thermald-2.4.5.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/sys-power/thermald/thermald-2.4.5.ebuild b/sys-power/thermald/thermald-2.4.5.ebuild new file mode 100644 index 000000000000..2683a9652ea6 --- /dev/null +++ b/sys-power/thermald/thermald-2.4.5.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools out-of-source systemd + +DESCRIPTION="Thermal daemon for Intel architectures" +HOMEPAGE="https://01.org/linux-thermal-daemon https://github.com/intel/thermal_daemon" +SRC_URI="https://github.com/intel/thermal_daemon/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-libs/dbus-glib:= + dev-libs/glib:= + dev-libs/libxml2:= + dev-libs/libevdev + sys-power/upower + sys-apps/dbus:=" +DEPEND="${RDEPEND} + dev-util/gtk-doc + dev-util/glib-utils" + +S=${WORKDIR}/thermal_daemon-${PV} +DOCS=( thermal_daemon_usage.txt README.txt ) + +src_prepare() { + sed -i -e "/group=/s/power/wheel/g" \ + data/org.freedesktop.thermald.conf || die + + default + eautoreconf +} + +my_src_configure() { + ECONF_SOURCE="${S}" econf \ + --disable-werror \ + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" +} + +my_src_install_all() { + einstalldocs + + rm -rf "${ED}"/etc/init || die + doinitd "${FILESDIR}"/thermald +} + +pkg_postinst() { + if ! has_version sys-power/dptfxtract; then + elog "dptfxtract can be used to generate a more specific" + elog "thermald configuration for your system" + fi +} |