diff options
author | Yixun Lan <dlan@gentoo.org> | 2022-01-10 14:36:41 +0800 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2022-01-10 15:33:25 +0800 |
commit | 91fd3b87757ec1b25d065f40e7019a1640cbf9e8 (patch) | |
tree | 45cb19ce3e8bdc40e19265b1e64c53a3f254eb8e /sys-power/thermald | |
parent | app-portage/portage-utils: bump live ebuild to EAPI=7 (diff) | |
download | gentoo-91fd3b87757ec1b25d065f40e7019a1640cbf9e8.tar.gz gentoo-91fd3b87757ec1b25d065f40e7019a1640cbf9e8.tar.bz2 gentoo-91fd3b87757ec1b25d065f40e7019a1640cbf9e8.zip |
sys-power/thermald: version bump, 2.4.7
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'sys-power/thermald')
-rw-r--r-- | sys-power/thermald/Manifest | 1 | ||||
-rw-r--r-- | sys-power/thermald/thermald-2.4.7.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/sys-power/thermald/Manifest b/sys-power/thermald/Manifest index 236f1db23966..acf947c2785f 100644 --- a/sys-power/thermald/Manifest +++ b/sys-power/thermald/Manifest @@ -1 +1,2 @@ DIST thermald-2.4.6.tar.gz 455905 BLAKE2B 0e3eae24bd4de8f7adc9cb8cc6dec83907d8e8240bec87d752e4502c923e7b407546204af474fe32fa43ba85a60ba51bd3dc6f1ce7cf3a62dd60dc5b0235ed52 SHA512 e337b00ec7f4fa565927f047dbb17dc05b8513850f2488dd6cfc838e5123938fbfe7c39464fffb77c100073edfca9ea51708680eaa2cba537470326df9508d3a +DIST thermald-2.4.7.tar.gz 457290 BLAKE2B 2c546175181383c21d95345e4884e5d476a47b2c5f2e1dc379add5c340bd9f421567b7c391b6002e05e3ad793ba2f563d2eca7913f0688b53a8565f52da58fbf SHA512 26b09a18d40812705d277416752f7afd0962f0562d9701c9072140089b869c328f6b0caaa08744a660cd83b6a0313098a07aef11e1a2b371a81d2e8014c38887 diff --git a/sys-power/thermald/thermald-2.4.7.ebuild b/sys-power/thermald/thermald-2.4.7.ebuild new file mode 100644 index 000000000000..f52005fc4eda --- /dev/null +++ b/sys-power/thermald/thermald-2.4.7.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2022 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 +} |