Diff drgn-0.0.33 with a drgn-0.1.0

/usr/portage/dev-debug/drgn/drgn-0.1.0.ebuild 2026-03-03 11:46:17.140338678 +0300
1
# Copyright 2024-2025 Gentoo Authors
1
# Copyright 2024-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
20 20
# Note that as of 0.0.31 at least, the API+ABI of libdrgn is unstable.
21 21
SLOT="0/${PV}"
22 22
KEYWORDS="~amd64"
23
IUSE="debuginfod lzma openmp"
23
IUSE="debuginfod lzma openmp pcre"
24 24

  
25 25
DEPEND="
26 26
	>=dev-libs/elfutils-0.165[debuginfod?]
27 27
	dev-libs/libkdumpfile:=
28 28
	lzma? ( app-arch/xz-utils )
29
	pcre? ( dev-libs/libpcre2 )
29 30
"
30 31
RDEPEND="${DEPEND}"
31 32
BDEPEND="
......
61 62
	CONFIGURE_FLAGS+=" $(use_with debuginfod)"
62 63
	CONFIGURE_FLAGS+=" $(use_with lzma)"
63 64
	CONFIGURE_FLAGS+=" $(use_enable openmp)"
65
	CONFIGURE_FLAGS+=" $(use_with pcre pcre2)"
64 66
	CONFIGURE_FLAGS+=" --build=${CBUILD}"
65 67
	CONFIGURE_FLAGS+=" --host=${CHOST}"
66 68
	CONFIGURE_FLAGS+=" --target=${CTARGET}"
Thank you!