diff --git a/media-video/obs-multistream/metadata.xml b/media-video/obs-multistream/metadata.xml deleted file mode 100644 index 0513e03cd9..0000000000 --- a/media-video/obs-multistream/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - streamwayin/obs-multistream - - - Use Qt functionality. - Use obs-frontend-api for UI functionality. - - diff --git a/media-video/obs-multistream/obs-multistream-9999.ebuild b/media-video/obs-multistream/obs-multistream-9999.ebuild deleted file mode 100644 index c259b5c0c4..0000000000 --- a/media-video/obs-multistream/obs-multistream-9999.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake flag-o-matic - -DESCRIPTION="OBS multistream plugin" -HOMEPAGE="https://github.com/streamwayin/obs-multistream" -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/streamwayin/obs-multistream.git" -fi # no latest tag - -LICENSE="GPL-2" -SLOT="0" -IUSE="+obs-frontend-api +qt" -DEPEND=" - !media-video/obs-multi-rtmp -" -RDEPEND=" - ${DEPEND} - media-video/obs-studio -" - -src_configure() { - local mycmakeargs+=( - -DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF) - -DENABLE_QT=$(usex qt ON OFF) - ) - - # code base is not clean - # opened bug https://github.com/sorayuki/obs-multi-rtmp/issues/378 - append-cppflags -Wno-error=shadow -Wno-error=conversion -Wno-error=float-conversion -Wno-error=sign-compare - - cmake_src_configure -}