blob: 4c846630fe6d9ca022cb455ad5118ac964f0f830 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit multilib
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
}
|