blob: d1d45beb551039d441e82beebdcacf12a7f8734c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org meson xdg
DESCRIPTION="D-Spy is a simple tool to explore D-Bus connections"
HOMEPAGE="https://gitlab.gnome.org/GNOME/d-spy"
LICENSE="GPL-3+ LGPL-3+"
SLOT="1"
KEYWORDS="~amd64 ~arm64"
DEPEND="
>=dev-libs/glib-2.76:2
>=gui-libs/gtk-4.12:4
>=gui-libs/libadwaita-1.4:1
"
RDEPEND="
${DEPEND}
>=sys-apps/dbus-1
"
BDEPEND="
dev-libs/appstream-glib
dev-util/desktop-file-utils
sys-devel/gettext
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
-Dbuilder=false
)
meson_src_configure
}
src_install() {
meson_src_install
}
pkg_postinst() {
xdg_icon_cache_update
xdg_desktop_database_update
}
pkg_postrm() {
xdg_icon_cache_update
xdg_desktop_database_update
}
|