media-video/wlrobs: drop 1.0

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono 2024-12-01 19:29:01 +09:00
parent 56761d6a36
commit 0e15c49edc
No known key found for this signature in database
GPG Key ID: 91CA2604719DDA61
3 changed files with 0 additions and 50 deletions

View File

@ -1,2 +1 @@
DIST wlrobs-1.0.tar.gz 55026 BLAKE2B f1e0005f0ec2349f82a5b341f96147b29766ff44a19a26c9ba4b32e0eacf87dfbaa944b68248a56c071f75902ef2090d366e825c06117096c28e0f4887d0b468 SHA512 3c545e3e21705ebe97b4712d726f5fcb0c213fef0835c96e9037aa60d20a938bc62ef060487a34a3e42e044aa4795c5e25d45465719c395a16cadc193aa35a04
DIST wlrobs-1.1.tar.gz 26920 BLAKE2B 2af7d28f6869187098eded4638f08dd422d4fdb31994d3a89001ce63c0deb8f53e1d0d1399dfe07ab6eb83c8bc01ac210f78622bd2cb289f748c87f4163727f4 SHA512 57d459a37bad50b2b1c81df5bddbfb8584dfbb45cb24185a2320d8574ec9443f4c8bd85a7e0590e290ddc17ddce252482249327a824aa38494de1ccf55c2e435

View File

@ -5,8 +5,4 @@
<upstream>
<bugs-to>https://todo.sr.ht/~scoopta/wlrobs</bugs-to>
</upstream>
<use>
<flag name="dmabuf">Enable the dmabuf backend</flag>
<flag name="scpy">Enable the screen copy backend</flag>
</use>
</pkgmetadata>

View File

@ -1,45 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson
if [ "${PV}" == 9999 ]
then
inherit mercurial
EHG_REPO_URI="https://hg.sr.ht/~scoopta/wlrobs"
else
SRC_URI="https://hg.sr.ht/~scoopta/wlrobs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
KEYWORDS="~amd64"
fi
DESCRIPTION="OBS plugin that allows you to screen capture on wlroots based compositors"
HOMEPAGE="https://hg.sr.ht/~scoopta/wlrobs"
LICENSE="GPL-3"
SLOT="0"
IUSE="+dmabuf +scpy"
RESTRICT="mirror"
RDEPEND="
dev-libs/wayland
media-video/obs-studio
dmabuf? (
media-libs/libglvnd[X]
x11-libs/libdrm
)
"
DEPEND="${RDEPEND}"
src_configure() {
local emesonargs=(
$(meson_use dmabuf use_dmabuf)
$(meson_use scpy use_scpy )
)
meson_src_configure
}