commit: b70b4b4ea2f4e8c7cb725b2adb02a6ad2de95df3 Author: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com> AuthorDate: Wed Mar 19 20:10:53 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Wed Mar 19 20:11:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b70b4b4e
gui-apps/wl-mirror: add 9999 Signed-off-by: Mazunki Hoksaas <rolferen <AT> gmail.com> gui-apps/wl-mirror/wl-mirror-9999.ebuild | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gui-apps/wl-mirror/wl-mirror-9999.ebuild b/gui-apps/wl-mirror/wl-mirror-9999.ebuild new file mode 100644 index 000000000..ef8fdac64 --- /dev/null +++ b/gui-apps/wl-mirror/wl-mirror-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake git-r3 + +DESCRIPTION="A simple Wayland output mirror client" +HOMEPAGE="https://github.com/Ferdi265/wl-mirror" +EGIT_REPO_URI="https://github.com/Ferdi265/wl-mirror.git" + +# as of writing, `main` branch corresponds with release. +# please update as required +EGIT_BRANCH="feature-xdg-portal" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="man" + +DEPEND=" + gui-libs/wlroots + dev-libs/wayland-protocols + dev-libs/wayland + media-libs/libglvnd + dev-util/wayland-scanner + man? ( + app-text/scdoc + ) +" +RDEPEND="${DEPEND}" + +src_configure() { + mycmakeargs=( + -DINSTALL_DOCUMENTATION=$(usex man ON OFF) + -DFORCE_SYSTEM_WL_PROTOCOLS=ON + -DFORCE_SYSTEM_WLR_PROTOCOLS=OFF + -DINSTALL_EXAMPLE_SCRIPTS=OFF + -DWITH_XDG_PORTAL_BACKEND=ON + ) + + cmake_src_configure +}
