# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="C/C++ WebRTC network library"
HOMEPAGE="https://libdatachannel.org/"
SRC_URI="https://github.com/paullouisageneau/libdatachannel/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"

RDEPEND="
	dev-cpp/nlohmann_json
	dev-libs/plog
	net-libs/libjuice
	net-libs/libsrtp
	net-libs/usrsctp
"

DEPEND="${RDEPEND}"

src_configure() {
	local mycmakeargs=(
		-DPREFER_SYSTEM_LIB=YES
	)

	cmake_src_configure
}