Diff net-snmp-5.9.4-r2 with a net-snmp-9999

/usr/portage/net-analyzer/net-snmp/net-snmp-9999.ebuild 2025-07-29 16:22:17.244467379 +0300
18 18
	# https://github.com/net-snmp/net-snmp/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
19 19
	SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}/${PV}/${P}.tar.gz"
20 20

  
21
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
21
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
22 22
fi
23 23

  
24 24
SRC_URI+=" https://dev.gentoo.org/~jsmolic/distfiles/${PN}-5.7.3-patches-3.tar.xz"
......
44 44
	netlink? ( dev-libs/libnl:3 )
45 45
	pcap? ( net-libs/libpcap )
46 46
	pci? ( sys-apps/pciutils )
47
	pcre? ( dev-libs/libpcre )
47
	pcre? ( dev-libs/libpcre2 )
48 48
	perl? ( dev-lang/perl:= )
49 49
	python? (
50 50
		$(python_gen_cond_dep '
......
84 84
	"${FILESDIR}"/${PN}-5.8-pcap.patch
85 85
	"${FILESDIR}"/${PN}-5.8.1-mysqlclient.patch
86 86
	"${FILESDIR}"/${PN}-5.9-MakeMaker.patch
87
	# https://github.com/net-snmp/net-snmp/pull/493
88
	"${FILESDIR}"/${PN}-5.9.3-0001-Fix-LDFLAGS-vs-LIBS-ordering.patch
89
	"${FILESDIR}"/${PN}-5.9.3-0002-Tidy-up-net-snmp-config-output.patch
90
	"${FILESDIR}"/${PN}-5.9.3-0003-Prune-Libs.private-entries-in-netsnmp-.pc.in.patch
91
	"${FILESDIR}"/${PN}-5.9.3-0004-Search-for-ltinfo-in-configure-if-needed.patch
92
	"${FILESDIR}"/${PN}-5.9.4-c99.patch
93 87
)
94 88

  
95 89
pkg_setup() {
......
145 139
		$(use_with netlink nl) \
146 140
		$(use_with pcap) \
147 141
		$(use_with pci) \
148
		$(use_with pcre) \
142
		$(use_with pcre pcre2-8) \
143
		--without-pcre \
149 144
		$(use_with perl perl-modules INSTALLDIRS=vendor) \
150 145
		$(use_with python python-modules) \
151 146
		$(use_with rpm) \
Thank you!