Diff swaybg-1.2.0 with a swaybg-9999

/usr/portage/gui-apps/swaybg/swaybg-9999.ebuild 2026-02-19 11:18:07.404647274 +0300
15 15
	inherit verify-sig
16 16
	SRC_URI="https://github.com/swaywm/${PN}/releases/download/v${PV}/${P}.tar.gz -> ${P}.gh.tar.gz
17 17
		https://github.com/swaywm/${PN}/releases/download/v${PV}/${P}.tar.gz.sig -> ${P}.gh.tar.gz.sig"
18
	KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
18
	KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
19 19
fi
20 20

  
21 21
LICENSE="MIT"
......
24 24

  
25 25
DEPEND="
26 26
	dev-libs/wayland
27
	>=dev-libs/wayland-protocols-1.14
27
	>=dev-libs/wayland-protocols-1.26
28 28
	x11-libs/cairo
29 29
	gdk-pixbuf? ( x11-libs/gdk-pixbuf )
30 30
"
31
RDEPEND="
32
	${DEPEND}
33
	!<gui-wm/sway-1.1_alpha1
34
"
31
RDEPEND="${DEPEND}"
35 32
BDEPEND="
36 33
	dev-util/wayland-scanner
37 34
	virtual/pkgconfig
......
45 42

  
46 43
src_configure() {
47 44
	local emesonargs=(
48
		-Dman-pages=$(usex man enabled disabled)
49
		-Dgdk-pixbuf=$(usex gdk-pixbuf enabled disabled)
45
		$(meson_feature man man-pages)
46
		$(meson_feature gdk-pixbuf)
50 47
	)
51 48

  
52 49
	meson_src_configure
Thank you!