Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgit2/
Date: Mon, 24 Feb 2020 17:03:20
Message-Id: 1582563705.a9109f0db6cf2ec9b7cf843cf047948be43ef68a.mgorny@gentoo
1 commit: a9109f0db6cf2ec9b7cf843cf047948be43ef68a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 24 16:58:39 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 24 17:01:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9109f0d
7
8 dev-libs/libgit2: Fix boolean args
9
10 Upstream started using exact string matches in some places; adjust
11 the usex constants appropriately.
12
13 Closes: https://bugs.gentoo.org/710502
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 dev-libs/libgit2/libgit2-0.99.0-r1.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/dev-libs/libgit2/libgit2-0.99.0-r1.ebuild b/dev-libs/libgit2/libgit2-0.99.0-r1.ebuild
20 index 8d7000bba6c..c986f95f0cf 100644
21 --- a/dev-libs/libgit2/libgit2-0.99.0-r1.ebuild
22 +++ b/dev-libs/libgit2/libgit2-0.99.0-r1.ebuild
23 @@ -44,8 +44,8 @@ src_configure() {
24 local mycmakeargs=(
25 -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
26 -DBUILD_CLAR=$(usex test)
27 - -DENABLE_TRACE=$(usex trace)
28 - -DUSE_GSSAPI=$(usex gssapi)
29 + -DENABLE_TRACE=$(usex trace ON OFF)
30 + -DUSE_GSSAPI=$(usex gssapi ON OFF)
31 -DUSE_SSH=$(usex ssh)
32 -DTHREADSAFE=$(usex threads)
33 -DUSE_HTTP_PARSER=system