net-voip/re: add 4.6.0

Signed-off-by: Dale Showers <gentoo@fictx.com>
This commit is contained in:
Dale Showers
2026-03-05 21:50:07 -05:00
parent 03c405c79a
commit 7dd20ccb72
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Generic library for real-time communications with async IO support"
HOMEPAGE="https://github.com/baresip/re"
SRC_URI="https://github.com/baresip/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="static-libs"
DEPEND="
dev-libs/openssl:0=
virtual/zlib:=
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DLIBRE_BUILD_STATIC=$(usex static-libs ON OFF)
)
cmake_src_configure
}