From 3090d9e949eca74cd2798267ac2f994c2efa4c51 Mon Sep 17 00:00:00 2001 From: PA4WDH Date: Wed, 24 May 2023 14:19:26 +0200 Subject: Add gentoo ebuild --- gentoo/cputemp2maxfreq-0.2.ebuild | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 gentoo/cputemp2maxfreq-0.2.ebuild (limited to 'gentoo/cputemp2maxfreq-0.2.ebuild') diff --git a/gentoo/cputemp2maxfreq-0.2.ebuild b/gentoo/cputemp2maxfreq-0.2.ebuild new file mode 100644 index 0000000..e4abea2 --- /dev/null +++ b/gentoo/cputemp2maxfreq-0.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Daemon to scale scale_max_freq when CPU temperature rises" +HOMEPAGE="https://code.pa4wdh.nl.eu.org/tools/cputemp2maxfreq" +GIT_COMMIT="f851f21131a1aab2d9a9449e47876132c2d948c4" +SRC_URI="https://code.pa4wdh.nl.eu.org/tools/cputemp2maxfreq/snapshot/cputemp2maxfreq-$GIT_COMMIT.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_unpack() +{ + unpack "${P}.tar.gz" + mv "cputemp2maxfreq-$GIT_COMMIT" "${P}" +} + +src_prepare() +{ + eapply_user + + ./generate_version_h.sh "${PV}" "${GIT_COMMIT:0:7}" "master" > version.h + mkdir .git + touch -d "1 minute ago" .git/index +} + +src_install() +{ + dosbin ${PN} + newinitd "${FILESDIR}/cputemp2maxfreq.init" cputemp2maxfreq + newconfd "${FILESDIR}/cputemp2maxfreq.conf" cputemp2maxfreq +} -- cgit v1.2.3