diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-11-16 21:25:37 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-11-16 21:33:13 +0100 |
commit | c6067b15fde58e39b931fe6418ffbd389bd52044 (patch) | |
tree | db441bae13619af924e2f22b3e00a157129ea854 /dev-perl/Monitoring-Plugin/Monitoring-Plugin-0.400.0-r1.ebuild | |
parent | dev-perl/Mon: EAPI=8 bump (diff) | |
download | gentoo-c6067b15fde58e39b931fe6418ffbd389bd52044.tar.gz gentoo-c6067b15fde58e39b931fe6418ffbd389bd52044.tar.bz2 gentoo-c6067b15fde58e39b931fe6418ffbd389bd52044.zip |
dev-perl/Monitoring-Plugin: EAPI=8 bump
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'dev-perl/Monitoring-Plugin/Monitoring-Plugin-0.400.0-r1.ebuild')
-rw-r--r-- | dev-perl/Monitoring-Plugin/Monitoring-Plugin-0.400.0-r1.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-perl/Monitoring-Plugin/Monitoring-Plugin-0.400.0-r1.ebuild b/dev-perl/Monitoring-Plugin/Monitoring-Plugin-0.400.0-r1.ebuild new file mode 100644 index 000000000000..26cef37a4f00 --- /dev/null +++ b/dev-perl/Monitoring-Plugin/Monitoring-Plugin-0.400.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=NIERLEIN +DIST_VERSION=0.40 +inherit perl-module + +DESCRIPTION="Modules to streamline Nagios, Icinga, Shinken, etc. plugins" +SLOT="0" +KEYWORDS="amd64 ~hppa sparc x86" + +RDEPEND=" + virtual/perl-Carp + dev-perl/Class-Accessor + dev-perl/Config-Tiny + virtual/perl-File-Spec + dev-perl/Math-Calc-Units + dev-perl/Params-Validate +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( virtual/perl-Test-Simple ) +" + +src_prepare() { + sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL || + die "Can't patch Makefile.PL for 5.26 dot-in-inc" + perl-module_src_prepare +} |