Install this version:
emerge -a =app-admin/rpi-fan-ctrl-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-admin/rpi-fan-ctrl-9999
Or alternatively:
emerge --autounmask-write -a =app-admin/rpi-fan-ctrl-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 7 | 0 |
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson
DESCRIPTION="Simple fan controller for Raspberry PI using the pigpio library"
HOMEPAGE="https://gitlab.com/TheGreatMcPain/rpi-fan-ctrl"
if [[ ${PV} = "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/TheGreatMcPain/rpi-fan-ctrl.git"
SRC_URI=""
KEYWORDS=""
fi
LICENSE="MIT"
SLOT="0"
IUSE=""
DEPEND="
dev-libs/pigpio
"
RDEPEND="${DEPEND}"
src_configure() {
meson_src_configure
}
src_compile() {
meson_src_compile
}
src_install() {
meson_src_install
}
dev-libs/pigpio
dev-libs/pigpio