public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-video/obs-v4l2sink/
@ 2020-05-14 15:57 Rick Farina
  0 siblings, 0 replies; 2+ messages in thread
From: Rick Farina @ 2020-05-14 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     30e73a60e242fbee1782a42832f6528b1474a9e1
Author:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Thu May 14 15:57:24 2020 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Thu May 14 15:57:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e73a60

media-video/obs-v4l2sink: initial ebuild

might even work

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>

 media-video/obs-v4l2sink/Manifest                  |  1 +
 media-video/obs-v4l2sink/metadata.xml              | 11 +++++++
 .../obs-v4l2sink-0.1.0_p20181012.ebuild            | 38 ++++++++++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/media-video/obs-v4l2sink/Manifest b/media-video/obs-v4l2sink/Manifest
new file mode 100644
index 00000000000..9688501c815
--- /dev/null
+++ b/media-video/obs-v4l2sink/Manifest
@@ -0,0 +1 @@
+DIST obs-v4l2sink-0.1.0_p20181012.tar.gz 21392 BLAKE2B 7f024a89c900588a4b3a45d598622e05d25b2eabbd007d5ce701d82ab935fa5a267faaf903925ec19e74071b5f4d32a5f39c810d181c97ea047060bfa69c145c SHA512 c64cff7feff7722e8cfd66f92daa46d8cb189da5adc50dabddd21baaa97e033611b94f1dafb9a9ad9a58504930fb40e05d7e5a4d128ee703b60993be7edc063c

diff --git a/media-video/obs-v4l2sink/metadata.xml b/media-video/obs-v4l2sink/metadata.xml
new file mode 100644
index 00000000000..4c547b226a1
--- /dev/null
+++ b/media-video/obs-v4l2sink/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>zerochaos@gentoo.org</email>
+    <name>Rick Farina</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">CatxFish/obs-v4l2sink</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012.ebuild b/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012.ebuild
new file mode 100644
index 00000000000..64a8a9cd5f2
--- /dev/null
+++ b/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_REMOVE_MODULES_LIST="FindLibObs"
+inherit cmake
+
+DESCRIPTION="obs studio output plugin for Video4Linux2 device"
+HOMEPAGE="https://github.com/CatxFish/obs-v4l2sink"
+COMMIT="1ec3c8ada0e1040d867ce567f177be55cd278378"
+SRC_URI="https://github.com/CatxFish/obs-v4l2sink/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-video/obs-studio-25.0.8-r1
+		dev-qt/qtwidgets:5
+		dev-qt/qtgui:5
+		dev-qt/qtcore:5
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_prepare() {
+	sed -i -e '/include(external\/FindLibObs.cmake)/d' -e 's#../UI#UI#' CMakeLists.txt
+	cmake_src_prepare
+}
+
+src_configure() {
+	mycmakeargs=(
+		-DLIBOBS_INCLUDE_DIR="/usr/include/obs/"
+	)
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-video/obs-v4l2sink/
@ 2020-06-15 15:57 Rick Farina
  0 siblings, 0 replies; 2+ messages in thread
From: Rick Farina @ 2020-06-15 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     fbe849d200434116227401f344c8d524d63a19f4
Author:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 15 15:56:48 2020 +0000
Commit:     Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Jun 15 15:57:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe849d2

media-video/obs-v4l2sink: pdepend

this package requires media-video/v4l2loopback and it would be confusing
to not depend on it in any way

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>

 ...ink-0.1.0_p20181012.ebuild => obs-v4l2sink-0.1.0_p20181012-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012.ebuild b/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012-r1.ebuild
similarity index 96%
rename from media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012.ebuild
rename to media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012-r1.ebuild
index 64a8a9cd5f2..11c55edfea5 100644
--- a/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012.ebuild
+++ b/media-video/obs-v4l2sink/obs-v4l2sink-0.1.0_p20181012-r1.ebuild
@@ -24,6 +24,7 @@ DEPEND=">=media-video/obs-studio-25.0.8-r1
 "
 RDEPEND="${DEPEND}"
 BDEPEND=""
+PDEPEND="media-video/v4l2loopback"
 
 src_prepare() {
 	sed -i -e '/include(external\/FindLibObs.cmake)/d' -e 's#../UI#UI#' CMakeLists.txt


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-06-15 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-15 15:57 [gentoo-commits] repo/gentoo:master commit in: media-video/obs-v4l2sink/ Rick Farina
  -- strict thread matches above, loose matches on Subject: below --
2020-05-14 15:57 Rick Farina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox