mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
41 lines
980 B
Bash
41 lines
980 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
COMMIT=0bc27f4740e382f2a2896dc1dabfec1d0ac96818
|
|
PYTHON_COMPAT=( python3_{10..11} pypy3 )
|
|
|
|
inherit linux-info python-single-r1
|
|
|
|
DESCRIPTION="Dynamically edit AMD Ryzen processor P-States"
|
|
HOMEPAGE="https://github.com/r4m0n/ZenStates-Linux"
|
|
SRC_URI="https://github.com/r4m0n/${PN}/archive/${COMMIT}.tar.gz -> ${PN}-${COMMIT}.gh.tar.gz"
|
|
S="${WORKDIR}/${PN}-${COMMIT}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64"
|
|
IUSE="togglecode"
|
|
|
|
RDEPEND="
|
|
${PYTHON_DEPS}
|
|
togglecode? ( $(python_gen_cond_dep 'dev-python/portio[${PYTHON_USEDEP}]') )
|
|
"
|
|
DEPEND="${PYTHON_DEPS}"
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
DOCS=( README.md )
|
|
|
|
CONFIG_CHECK="X86_MSR"
|
|
|
|
src_install() {
|
|
newsbin zenstates.py zenstates
|
|
python_fix_shebang "${ED}/usr/sbin/zenstates"
|
|
if use togglecode ; then
|
|
newsbin togglecode.py togglecode
|
|
python_fix_shebang "${ED}/usr/sbin/togglecode"
|
|
fi
|
|
einstalldocs
|
|
}
|