blob: 57095facb17cad3d4da08d15f86e9b862e9185e4 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{8..11} )
inherit gnome.org meson python-any-r1 udev xdg
DESCRIPTION="Bluetooth graphical utilities integrated with GNOME"
HOMEPAGE="https://wiki.gnome.org/Projects/GnomeBluetooth"
LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
SLOT="2/13" # subslot = libgnome-bluetooth soname version
IUSE="gtk-doc +introspection test"
RESTRICT="!test? ( test )"
KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
DEPEND="
>=dev-libs/glib-2.44:2
>=x11-libs/gtk+-3.12:3[introspection?]
media-libs/libcanberra[gtk3]
>=x11-libs/libnotify-0.7.0
virtual/libudev
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
"
RDEPEND="${DEPEND}
acct-group/plugdev
virtual/udev
>=net-wireless/bluez-5
"
BDEPEND="
dev-libs/libxml2:2
dev-util/gdbus-codegen
dev-util/glib-utils
gtk-doc? ( >=dev-util/gtk-doc-1.9 )
virtual/pkgconfig
test? (
$(python_gen_any_dep '
dev-python/python-dbusmock[${PYTHON_USEDEP}]
dev-python/dbus-python[${PYTHON_USEDEP}]
')
)
"
PATCHES=(
"${FILESDIR}"/${P}-meson-0.61-build.patch
)
python_check_deps() {
if use test; then
python_has_version -b "dev-python/python-dbusmock[${PYTHON_USEDEP}]" &&
python_has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]"
fi
}
pkg_setup() {
use test && python-any-r1_pkg_setup
}
src_configure() {
local emesonargs=(
-Dicon_update=false
$(meson_use gtk-doc gtk_doc)
$(meson_use introspection)
)
meson_src_configure
}
src_install() {
meson_src_install
udev_dorules "${FILESDIR}"/61-${PN}.rules
}
pkg_postinst() {
udev_reload
xdg_pkg_postinst
if ! has_version 'sys-apps/systemd[acl]' ; then
elog "Don't forget to add yourself to the plugdev group "
elog "if you want to be able to control bluetooth transmitter."
fi
}
pkg_postrm() {
udev_reload
}
|