commit: 02553460f1fab662e6396b7be625fa3b514ce0ed
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Tue May 5 18:32:46 2020 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Tue May 5 18:34:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02553460
net-analyzer/nagios-plugins-linux-madrisan: new USE=varlink
Remove automatic detection of libvarlink, change behavior based on the
value of the new USE=varlink flag.
This required dropping the x86 keyword because libvarlink is not
keyworded there.
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
net-analyzer/nagios-plugins-linux-madrisan/metadata.xml | 1 +
...an-26.ebuild => nagios-plugins-linux-madrisan-26-r1.ebuild} | 10 +++++++---
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/net-analyzer/nagios-plugins-linux-madrisan/metadata.xml
b/net-analyzer/nagios-plugins-linux-madrisan/metadata.xml
index 2485783589c..380090a8861 100644
--- a/net-analyzer/nagios-plugins-linux-madrisan/metadata.xml
+++ b/net-analyzer/nagios-plugins-linux-madrisan/metadata.xml
@@ -7,6 +7,7 @@
</maintainer>
<use>
<flag name="curl">Build check_docker which requires
<pkg>net-misc/curl</pkg></flag>
+ <flag name="varlink">Build check_podman which requires
<pkg>dev-libs/libvarlink</pkg></flag>
</use>
<upstream>
<remote-id
type="github">madrisan/nagios-plugins-linux</remote-id>
diff --git
a/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26.ebuild
b/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild
similarity index 86%
rename from
net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26.ebuild
rename to
net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild
index 0e91fa5a72c..a0569e29d79 100644
---
a/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26.ebuild
+++
b/net-analyzer/nagios-plugins-linux-madrisan/nagios-plugins-linux-madrisan-26-r1.ebuild
@@ -14,10 +14,13 @@
SRC_URI="https://github.com/madrisan/${MY_PN}/releases/download/v${PV}/${MY_P}.t
LICENSE="GPL-3+"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="curl"
+KEYWORDS="~amd64"
+IUSE="curl varlink"
-DEPEND="curl? ( net-misc/curl:0= )"
+DEPEND="
+ curl? ( net-misc/curl:0= )
+ varlink? ( dev-libs/libvarlink:= )
+"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_P}"
@@ -36,6 +39,7 @@ src_configure() {
# Most options are already defaults for Gentoo
--disable-hardening
$(use_enable curl libcurl)
+ $(use_enable varlink libvarlink)
)
econf "${myconf[@]}"
}