2020-03-29 13:54:40 +02:00
|
|
|
# Copyright 2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit git-r3
|
|
|
|
|
|
|
|
DESCRIPTION="openntpd plugin for munin"
|
|
|
|
HOMEPAGE="https://github.com/munin-monitoring/contrib/tree/master/plugins/openntpd"
|
|
|
|
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
|
|
|
|
net-misc/ntp[openntpd]
|
|
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
BDEPEND=""
|
|
|
|
|
2020-03-29 14:00:36 +02:00
|
|
|
src_compile() {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2020-03-29 13:54:40 +02:00
|
|
|
src_install() {
|
|
|
|
insinto /usr/libexec/munin/plugins/openntpd/
|
|
|
|
insopts -m0755
|
|
|
|
doins plugins/openntpd/*
|
|
|
|
}
|