Diff girara-0.4.0-r1 with a girara-9999

/usr/portage/dev-libs/girara/girara-9999.ebuild 2025-02-03 17:39:32.842666970 +0300
10 10

  
11 11
if [[ ${PV} == *9999 ]]; then
12 12
	inherit git-r3
13
	EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git"
13
	EGIT_REPO_URI="https://github.com/pwmt/${PN}.git"
14 14
	EGIT_BRANCH="develop"
15 15
else
16 16
	SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz"
17
	KEYWORDS="amd64 arm ~riscv x86"
17
	KEYWORDS="~amd64 ~arm ~riscv ~x86"
18 18
fi
19 19

  
20 20
LICENSE="ZLIB"
21 21
SLOT="0"
22
IUSE="doc libnotify test"
22
IUSE="doc test"
23

  
23 24
RESTRICT="!test? ( test )"
24 25

  
25 26
RDEPEND="
......
31 32
	x11-libs/gdk-pixbuf
32 33
	>=x11-libs/gtk+-3.20:3
33 34
	x11-libs/pango
34
	libnotify? ( x11-libs/libnotify )
35 35
"
36
# Tests are run under virtx
36 37
DEPEND="
37 38
	${RDEPEND}
38
	test? ( x11-base/xorg-proto )
39
"
40
# Tests are run under virtx
41
BDEPEND="
42
	virtual/pkgconfig
43
	doc? ( app-text/doxygen )
44 39
	test? (
45 40
		dev-libs/check
41
		x11-base/xorg-proto
46 42
		x11-libs/gtk+:3[X]
47 43
	)
48 44
"
45
BDEPEND="
46
	virtual/pkgconfig
47
	doc? ( app-text/doxygen )
48
"
49 49

  
50 50
src_configure() {
51 51
	local -a emesonargs=(
52 52
		-Djson=enabled
53 53
		$(meson_feature doc docs)
54
		$(meson_feature libnotify notify)
55 54
	)
56 55
	meson_src_configure
57 56
}
Thank you!