aboutsummaryrefslogtreecommitdiffstats
path: root/gentoo/cputemp2maxfreq-0.4.ebuild
blob: 2677ce1dfa8687a9bfee953d3bf586693f8fa719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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/about"
GIT_COMMIT="5a33d25886af8f0996d901fcfc66674a3dc625db"
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
}