Diff libtrace-4.0.19_p1 with a libtrace-4.0.20

/usr/portage/net-libs/libtrace/libtrace-4.0.20.ebuild 2023-10-09 14:52:34.592368479 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools
7

  
6 8
DESCRIPTION="A library and tools for trace processing"
7
HOMEPAGE="https://research.wand.net.nz/software/libtrace.php"
8
SRC_URI="https://research.wand.net.nz/software/libtrace/${PN}-$(ver_cut 1-3).tar.bz2"
9
S="${WORKDIR}"/${PN}-$(ver_cut 1-3)
9
HOMEPAGE="https://github.com/LibtraceTeam/libtrace"
10
SRC_URI="https://github.com/LibtraceTeam/libtrace/archive/refs/tags/${PV}-1.tar.gz -> ${P}.tar.gz"
11
S="${WORKDIR}"/${P}-1
10 12

  
11 13
LICENSE="LGPL-3"
12 14
SLOT="0"
......
15 17
# (not man pages)
16 18
IUSE="doc ncurses numa"
17 19

  
18
RDEPEND=">=net-libs/libpcap-0.8
20
RDEPEND="
19 21
	dev-libs/libyaml
20 22
	dev-libs/openssl:=
23
	>=net-libs/libpcap-0.8
21 24
	net-libs/wandio
22 25
	ncurses? ( sys-libs/ncurses:= )
23 26
	numa? ( sys-process/numactl )"
24 27
DEPEND="${RDEPEND}"
25
BDEPEND="app-doc/doxygen[dot]
28
BDEPEND="
29
	app-doc/doxygen[dot]
26 30
	sys-devel/flex
27 31
	virtual/os-headers
28 32
	virtual/pkgconfig
29
	app-alternatives/yacc"
33
	app-alternatives/yacc
34
"
30 35

  
31 36
src_prepare() {
32 37
	default
33 38

  
39
	eautoreconf
40

  
34 41
	# Comment out FILE_PATTERNS definition (bug #706230)
35 42
	if has_version ~app-doc/doxygen-1.8.16; then
36 43
		sed -i -e '/^FILE_PATTERNS/s|^|#|g' docs/${PN}.doxygen.in || die
......
41 48
}
42 49

  
43 50
src_configure() {
51
	export LEX=flex
52

  
44 53
	econf \
45 54
		$(use_with ncurses) \
46 55
		$(use_with numa) \
Thank you!