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 0ED52138359 for ; Tue, 10 Nov 2020 14:22:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 607DAE0844; Tue, 10 Nov 2020 14:22:58 +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 4337DE0844 for ; Tue, 10 Nov 2020 14:22:58 +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 2225F335D94 for ; Tue, 10 Nov 2020 14:22:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15E0744C for ; Tue, 10 Nov 2020 14:22:53 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1604996857.786decb3a2b4e73fc4e75f8c59946f2852242350.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 786decb3a2b4e73fc4e75f8c59946f2852242350 X-VCS-Branch: master Date: Tue, 10 Nov 2020 14:22:53 +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: 16669cf5-b02f-4056-ac12-1b05b6411b91 X-Archives-Hash: 0de3be9808eae92e8c57382c8a158d8b commit: 786decb3a2b4e73fc4e75f8c59946f2852242350 Author: Matthias Coppens gmail com> AuthorDate: Tue Nov 10 08:26:00 2020 +0000 Commit: Andrew Ammerlaan riseup net> 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" +}