From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5D288139360 for ; Fri, 13 Aug 2021 23:29:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A00BE09A7; Fri, 13 Aug 2021 23:29:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7713BE09A7 for ; Fri, 13 Aug 2021 23:29:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FAF9342B1B for ; Fri, 13 Aug 2021 23:29:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4AEA8B0 for ; Fri, 13 Aug 2021 23:29:06 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1628897287.1f3f26edc5a68c2d536ebc17db6a1bf652a3e8fa.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mjpg-streamer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild X-VCS-Directories: media-video/mjpg-streamer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1f3f26edc5a68c2d536ebc17db6a1bf652a3e8fa X-VCS-Branch: master Date: Fri, 13 Aug 2021 23:29:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7955ec87-7224-4314-9fb3-20c2117817fc X-Archives-Hash: 62bebbe2bb406a638c19e500955943ee commit: 1f3f26edc5a68c2d536ebc17db6a1bf652a3e8fa Author: ChaosEngine gmail com> AuthorDate: Sat Dec 12 10:42:19 2020 +0000 Commit: Sam James gentoo org> CommitDate: Fri Aug 13 23:28:07 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f3f26ed media-video/mjpg-streamer: misc fixes * Adding ~arm64 keyword * RDEPEND from acct-group/video when UVC input plugin is enabled with some info Package-Manager: Portage-2.3.99, Repoman 2.3.22 Signed-off-by: Andrzej Pauli gmail.com> Signed-off-by: Sam James gentoo.org> .../mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild index e0d1f254f9e..231db6a85a2 100644 --- a/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild +++ b/media-video/mjpg-streamer/mjpg-streamer-0_pre20200524-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/jacksonliam/${PN}/archive/${EGIT_COMMIT}.tar.gz -> $ LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm64 ~x86" INPUT_PLUGINS="input-testpicture input-control input-file input-uvc input-http input-ptp2" OUTPUT_PLUGINS="output-file output-udp output-http output-autofocus output-rtsp output-viewer output-zmqserver" @@ -24,7 +24,7 @@ REQUIRED_USE="|| ( ${INPUT_PLUGINS} ) || ( ${OUTPUT_PLUGINS} )" RDEPEND="virtual/jpeg - input-uvc? ( media-libs/libv4l ) + input-uvc? ( media-libs/libv4l acct-group/video ) input-ptp2? ( media-libs/libgphoto2 ) output-zmqserver? ( dev-libs/protobuf-c @@ -81,11 +81,17 @@ src_install() { } pkg_postinst() { + einfo elog "Remember to set an input and output plugin for mjpg-streamer." + if use input-uvc ; then + elog "To use the UVC plugin as a regular user, you must be a part of the video group" + fi + if use www ; then - echo + einfo elog "An example webinterface has been installed into" elog "/usr/share/mjpg-streamer/www for your usage." fi + einfo }