commit: 683dbb5efcfca101d835486e3ae54cbc01f819f6 Author: Mazunki Hoksaas <rolferen <AT> gmail <DOT> com> AuthorDate: Sat Apr 5 10:30:29 2025 +0000 Commit: David Roman <davidroman96 <AT> gmail <DOT> com> CommitDate: Sat Apr 5 10:32:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=683dbb5e
gui-apps/wl-mirror: add 0.18.1 Signed-off-by: Mazunki Hoksaas <rolferen <AT> gmail.com> gui-apps/wl-mirror/Manifest | 2 +- gui-apps/wl-mirror/wl-mirror-0.18.1.ebuild | 39 ++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/gui-apps/wl-mirror/Manifest b/gui-apps/wl-mirror/Manifest index 6a9f4198f..7d096a99c 100644 --- a/gui-apps/wl-mirror/Manifest +++ b/gui-apps/wl-mirror/Manifest @@ -1,2 +1,2 @@ -DIST wl-mirror-0.16.5.tar.gz 198781 BLAKE2B 2ea41eeb35aec5bc745af107d56d9b3fee276adc3fa0955e6eb22bef80cfef34520289faf5e864e3444988b9757842f46d0a58ec957db89bca8d10ab333304b0 SHA512 f4260ac0798a25709676be8e6158b0cd06a4043f12fbe712ed53513b6791f402c38bc64d200e285edce04e18cf00f00ad36037ad5ea3af48243b7084dd73def5 DIST wl-mirror-0.18.0.tar.gz 275929 BLAKE2B 78b2c40f1f3cca8855114c68eed97b127e4e6b0b2d50b8c413077be71f7e0f549fbb807fd2f9ff68ba8abbce84ce42b86a68b4c15d0b7d78e04387eab5233976 SHA512 978e0ceb71be1f83cf769940292c4d45af5dbc7fb7ce334ac09cb4792f85f49446409f388d6e47462105339aa9b19e88f5a88448778ccaa7d27a7488ed05310b +DIST wl-mirror-0.18.1.tar.gz 278105 BLAKE2B 3c9b15ae9790756df344a5299ea6520297215671128ef6108e744bbc4083ec0098fc31b575f1af2d746d3d232bc9892b2d2e15e28293bf987bb4c5f56eae6c67 SHA512 787a571faa58853769abb732cc82fe99c051a58a1c423df6636a496d34394e5abb76a9d95aa42b1afe7405140fdfbd1a0e689271a2600a5273a33afeee337fa2 diff --git a/gui-apps/wl-mirror/wl-mirror-0.18.1.ebuild b/gui-apps/wl-mirror/wl-mirror-0.18.1.ebuild new file mode 100644 index 000000000..1283c1370 --- /dev/null +++ b/gui-apps/wl-mirror/wl-mirror-0.18.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A simple Wayland output mirror client" +HOMEPAGE="https://github.com/Ferdi265/wl-mirror" +SRC_URI="https://github.com/Ferdi265/wl-mirror/releases/download/v${PV}/wl-mirror-${PV}.tar.gz +" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+examples 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=$(usex examples ON OFF) + ) + + cmake_src_configure +}