2020-03-15 20:41:44 +01:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit git-r3
|
|
|
|
|
|
|
|
DESCRIPTION="Ping plugin for munin"
|
|
|
|
HOMEPAGE="https://github.com/munin-monitoring/contrib/tree/master/plugins/ping"
|
|
|
|
EGIT_REPO_URI="https://github.com/munin-monitoring/contrib.git"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND="
|
|
|
|
dev-lang/perl
|
|
|
|
net-analyzer/munin
|
2020-03-15 20:53:14 +01:00
|
|
|
net-dns/bind-tools
|
2020-03-15 20:41:44 +01:00
|
|
|
net-misc/iputils
|
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto /usr/libexec/munin/plugins/ping/
|
2020-03-15 21:01:01 +01:00
|
|
|
insopts -m0755
|
2020-03-15 20:41:44 +01:00
|
|
|
doins plugins/ping/*
|
|
|
|
}
|