Diff lavalauncher-1.7.1 with a lavalauncher-2.0.0

/usr/portage/gui-apps/lavalauncher/lavalauncher-2.0.0.ebuild 2023-10-09 14:52:31.172368393 +0300
19 19

  
20 20
LICENSE="GPL-3"
21 21
SLOT="0"
22
IUSE="man"
23

  
24
PATCHES=(
25
	"${FILESDIR}/${P}-optional-man.patch"
26
)
22
IUSE="+svg man"
27 23

  
28 24
RDEPEND="
29 25
	dev-libs/wayland
26
	gnome-base/librsvg
30 27
	x11-libs/cairo
31 28
"
29
DEPEND="${RDEPEND}"
32 30
BDEPEND="
33
	${RDEPEND}
34
	virtual/pkgconfig
35 31
	dev-libs/wayland-protocols
32
	virtual/pkgconfig
36 33
"
37 34

  
38 35
if [[ ${PV} == 9999 ]]; then
......
41 38
	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
42 39
fi
43 40

  
41
PATCHES=(
42
	"${FILESDIR}/lavalauncher-remove-werror.patch"
43
)
44

  
44 45
src_configure() {
45 46
	local emesonargs=(
46
		$(meson_feature man man-page)
47
		$(meson_feature man man-pages)
48
		$(meson_feature svg librsvg)
47 49
	)
48 50
	meson_src_configure
49 51
}
Thank you!