Diff srt-1.5.1 with a srt-1.5.3

/usr/portage/net-libs/srt/srt-1.5.3.ebuild 2023-10-09 14:52:34.600368479 +0300
13 13
	inherit git-r3
14 14
else
15 15
	SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv -sparc x86 ~ppc-macos ~x64-macos"
16
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv -sparc ~x86 ~ppc-macos ~x64-macos"
17 17
fi
18 18

  
19 19
LICENSE="MPL-2.0"
......
32 32
"
33 33
DEPEND="${RDEPEND}"
34 34
BDEPEND="virtual/pkgconfig
35
	test? ( >=dev-cpp/gtest-1.8[${MULTILIB_USEDEP}] )"
35
	test? ( >=dev-cpp/gtest-1.10[${MULTILIB_USEDEP}] )"
36 36

  
37 37
src_configure() {
38 38
	local mycmakeargs=(
39
		-DUSE_CXX_STD=c++14 # Required for gtest
39 40
		-DENABLE_STATIC=OFF
41
		# Bonding is experimental in 1.5, but works good and doesn't affect anything when not enabled with API calls
42
		-DENABLE_BONDING=ON
40 43
		-DENABLE_UNITTESTS=$(usex test)
41
		-DENABLE_TESTING=$(usex test)
44
		-DENABLE_TESTING=OFF # Not installed developer/testing tools
42 45
		-DUSE_GNUTLS=$(usex gnutls)
43 46
	)
44 47
	cmake-multilib_src_configure
Thank you!