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 83D04138359 for ; Tue, 10 Nov 2020 08:28:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF555E07D8; Tue, 10 Nov 2020 08:28:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 85AE9E07D8 for ; Tue, 10 Nov 2020 08:28:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 09A2D335D60 for ; Tue, 10 Nov 2020 08:28:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E46C4443 for ; Tue, 10 Nov 2020 08:28:07 +0000 (UTC) From: "Matthias Coppens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Coppens" Message-ID: <1604996857.786decb3a2b4e73fc4e75f8c59946f2852242350.coppens.matthias@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/wlrobs/ X-VCS-Repository: repo/proj/guru X-VCS-Files: media-video/wlrobs/metadata.xml media-video/wlrobs/wlrobs-9999.ebuild X-VCS-Directories: media-video/wlrobs/ X-VCS-Committer: coppens.matthias X-VCS-Committer-Name: Matthias Coppens X-VCS-Revision: 786decb3a2b4e73fc4e75f8c59946f2852242350 X-VCS-Branch: dev Date: Tue, 10 Nov 2020 08:28:07 +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: 3ca4accc-a600-4770-b545-c594fd853499 X-Archives-Hash: 066cb5fa186dd5e8d30449626dbae098 commit: 786decb3a2b4e73fc4e75f8c59946f2852242350 Author: Matthias Coppens gmail com> AuthorDate: Tue Nov 10 08:26:00 2020 +0000 Commit: Matthias Coppens gmail com> CommitDate: Tue Nov 10 08:27:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=786decb3 media-video/wlrobs: New package This is an OBS plugin to enable screensharing on wlroots based Wayland compositors. Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Matthias Coppens gmail.com> media-video/wlrobs/metadata.xml | 15 +++++++++++++++ media-video/wlrobs/wlrobs-9999.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/media-video/wlrobs/metadata.xml b/media-video/wlrobs/metadata.xml new file mode 100644 index 00000000..cba88532 --- /dev/null +++ b/media-video/wlrobs/metadata.xml @@ -0,0 +1,15 @@ + + + + + Matthias Coppens + coppens.matthias.abc@gmail.com + + + https://todo.sr.ht/~scoopta/wlrobs + + + Enable the dmabuf backend + Enable the screen copy backend + + diff --git a/media-video/wlrobs/wlrobs-9999.ebuild b/media-video/wlrobs/wlrobs-9999.ebuild new file mode 100644 index 00000000..614bbc9e --- /dev/null +++ b/media-video/wlrobs/wlrobs-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit mercurial meson + +DESCRIPTION="OBS plugin that allows you to screen capture on wlroots based compositors" +HOMEPAGE="https://hg.sr.ht/~scoopta/wlrobs" +EHG_REPO_URI="https://hg.sr.ht/~scoopta/wlrobs" + +LICENSE="GPL-3" + +SLOT="0" +KEYWORDS="" + +IUSE="+dmabuf +scpy" + +src_configure() { + local emesonargs=( + $(meson_use dmabuf use_dmabuf) + $(meson_use scpy use_scpy ) + ) + meson_src_configure +} + +src_install() { + exeinto "/usr/lib64/obs-plugins" + doexe "$BUILD_DIR/libwlrobs.so" +}