summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Sautier <sbraz@gentoo.org>2020-12-12 20:50:00 +0100
committerLouis Sautier <sbraz@gentoo.org>2020-12-12 20:50:31 +0100
commitddea6ba067c3cb2c6a45b8745c0924be8d148272 (patch)
tree6d3569f10edb12163cff9eca8b3f89c948276764 /net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild
parentnet-analyzer/nagios-plugins-linux-madrisan: bump to 28 (diff)
downloadgentoo-ddea6ba067c3cb2c6a45b8745c0924be8d148272.tar.gz
gentoo-ddea6ba067c3cb2c6a45b8745c0924be8d148272.tar.bz2
gentoo-ddea6ba067c3cb2c6a45b8745c0924be8d148272.zip
net-analyzer/nagios-plugins-linux-madrisan: remove old
Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Louis Sautier <sbraz@gentoo.org>
Diffstat (limited to 'net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild')
-rw-r--r--net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild b/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild
deleted file mode 100644
index f76ea708a821..000000000000
--- a/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-MY_PN="nagios-plugins-linux"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Additional and alternative Nagios plugins for Linux"
-HOMEPAGE="https://github.com/madrisan/nagios-plugins-linux"
-SRC_URI="https://github.com/madrisan/${MY_PN}/releases/download/v${PV}/${MY_P}.tar.xz -> ${P}.tar.xz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="curl varlink"
-
-DEPEND="
- curl? ( net-misc/curl:0= )
- varlink? ( dev-libs/libvarlink:= )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
- # Avoid collision with net-analyzer/monitoring-plugins
- # and net-analyzer/nagios-plugins
- sed -ri "s/check_(load|swap|uptime|users)/&_madrisan/" plugins/Makefile.am || die
- eautoreconf
-}
-
-src_configure() {
- local myconf=(
- --libexecdir="${EPREFIX}/usr/$(get_libdir)/nagios/plugins"
- # Most options are already defaults for Gentoo
- --disable-hardening
- $(use_enable curl libcurl)
- $(use_enable varlink libvarlink)
- )
- econf "${myconf[@]}"
-}
-
-src_test() {
- emake check VERBOSE=1
-}