mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 00:08:05 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]hppa' -l | xargs ekeyword ~hppa Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
30 lines
651 B
Bash
30 lines
651 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_P="${PN#nagios-}_v$(ver_cut 1)-${PV}"
|
|
|
|
DESCRIPTION="IPMI Sensor Monitoring Plugin for Nagios/Icinga"
|
|
HOMEPAGE="http://www.thomas-krenn.com/en/oss/ipmi-plugin/"
|
|
SRC_URI="https://github.com/thomas-krenn/check_ipmi_sensor_v3/archive/refs/tags/v${PV}.tar.gz -> ${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~hppa x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-lang/perl
|
|
dev-perl/IPC-Run
|
|
sys-libs/freeipmi"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
exeinto /usr/$(get_libdir)/nagios/plugins
|
|
doexe check_ipmi_sensor
|
|
|
|
dodoc changelog
|
|
}
|