Files
guru/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild
Adel KARA SLIMANE 09e6df9019 media-video/obs-multi-rtmp-9999: do not use cmake patch anymore
Fixed with commit 62396c where the official template has been pulled

Signed-off-by: Adel KARA SLIMANE <adel.ks@zegrapher.com>
2025-02-24 22:40:10 +01:00

45 lines
840 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="OBS Simulcast support plugin"
HOMEPAGE="https://github.com/sorayuki/obs-multi-rtmp"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
else
SRC_URI="https://github.com/sorayuki/obs-multi-rtmp/archive/refs/tags/$PV.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="+obs-frontend-api +qt"
DEPEND="
qt? ( dev-qt/qtbase:6 )
>=media-video/obs-studio-31
"
RDEPEND="
${DEPEND}
"
src_unpack() {
default
if [[ ${PV} == 9999 ]]; then
git-r3_src_unpack
fi
}
src_configure() {
local mycmakeargs+=(
-DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF)
-DENABLE_QT=$(usex qt ON OFF)
)
cmake_src_configure
}