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-util/lldb/
Date: Sun, 03 Nov 2019 10:00:43
Message-Id: 1572775228.646e1dc62a09b55fa1695d32cb52b5c5bf57f01f.mgorny@gentoo
1 commit: 646e1dc62a09b55fa1695d32cb52b5c5bf57f01f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 3 09:58:02 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 3 10:00:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646e1dc6
7
8 dev-util/lldb: Add USE=lzma to 10.*
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-util/lldb/lldb-10.0.0.9999.ebuild | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-util/lldb/lldb-10.0.0.9999.ebuild b/dev-util/lldb/lldb-10.0.0.9999.ebuild
16 index 2834cd907b5..4534586ab24 100644
17 --- a/dev-util/lldb/lldb-10.0.0.9999.ebuild
18 +++ b/dev-util/lldb/lldb-10.0.0.9999.ebuild
19 @@ -16,12 +16,13 @@ S=${WORKDIR}/${P}/lldb
20 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
21 SLOT="0"
22 KEYWORDS=""
23 -IUSE="libedit ncurses +python test"
24 +IUSE="libedit lzma ncurses +python test"
25 REQUIRED_USE=${PYTHON_REQUIRED_USE}
26 RESTRICT="!test? ( test )"
27
28 RDEPEND="
29 libedit? ( dev-libs/libedit:0= )
30 + lzma? ( app-arch/xz-utils:= )
31 ncurses? ( >=sys-libs/ncurses-5.9-r3:0= )
32 python? ( dev-python/six[${PYTHON_USEDEP}]
33 ${PYTHON_DEPS} )
34 @@ -56,6 +57,7 @@ src_configure() {
35 -DLLDB_DISABLE_CURSES=$(usex !ncurses)
36 -DLLDB_DISABLE_LIBEDIT=$(usex !libedit)
37 -DLLDB_DISABLE_PYTHON=$(usex !python)
38 + -DLLDB_ENABLE_LZMA=$(usex lzma)
39 -DLLDB_USE_SYSTEM_SIX=1
40 -DLLVM_ENABLE_TERMINFO=$(usex ncurses)