Diff swaybg-1.2.0 with a swaybg-1.2.2

/usr/portage/gui-apps/swaybg/swaybg-1.2.2.ebuild 2026-05-09 19:17:04.471003508 +0300
13 13
	EGIT_REPO_URI="https://github.com/swaywm/${PN}.git"
14 14
else
15 15
	inherit verify-sig
16
	SRC_URI="https://github.com/swaywm/${PN}/releases/download/v${PV}/${P}.tar.gz -> ${P}.gh.tar.gz
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"
16
	SRC_URI="https://github.com/swaywm/${PN}/releases/download/v${PV}/${P}.tar.gz
17
		https://github.com/swaywm/${PN}/releases/download/v${PV}/${P}.tar.gz.sig"
18
	KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
19 19
fi
20 20

  
21 21
LICENSE="MIT"
22 22
SLOT="0"
23 23
IUSE="gdk-pixbuf +man"
24 24

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

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

  
52 50
	meson_src_configure
Thank you!