Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: net-wireless/gnome-bluetooth/
Date: Mon, 10 Sep 2018 21:34:08
Message-Id: 1536588132.0363926643066f227fd9290214992942e1447dff.eva@gentoo
1 commit: 0363926643066f227fd9290214992942e1447dff
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 10 13:31:48 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 10 14:02:12 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=03639266
7
8 net-wireless/gnome-bluetooth: 3.20.1 → 3.26.1
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11 Manifest-Sign-Key: 0x5A56C8CD0C13248A
12
13 .../gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild | 61 ++++++++++++++++++++++
14 1 file changed, 61 insertions(+)
15
16 diff --git a/net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild
17 new file mode 100644
18 index 00000000..afc6b43a
19 --- /dev/null
20 +++ b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild
21 @@ -0,0 +1,61 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +inherit gnome-meson udev user
27 +
28 +DESCRIPTION="Bluetooth graphical utilities integrated with GNOME"
29 +HOMEPAGE="https://wiki.gnome.org/Projects/GnomeBluetooth"
30 +
31 +LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
32 +SLOT="2/13" # subslot = libgnome-bluetooth soname version
33 +IUSE="debug +introspection"
34 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
35 +
36 +COMMON_DEPEND="
37 + >=dev-libs/glib-2.38:2
38 + media-libs/libcanberra[gtk3]
39 + >=x11-libs/gtk+-3.12:3[introspection?]
40 + x11-libs/libnotify
41 + virtual/udev
42 + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
43 +"
44 +RDEPEND="${COMMON_DEPEND}
45 + >=net-wireless/bluez-5
46 +"
47 +DEPEND="${COMMON_DEPEND}
48 + !net-wireless/bluez-gnome
49 + app-text/docbook-xml-dtd:4.1.2
50 + dev-libs/libxml2:2
51 + dev-util/gdbus-codegen
52 + >=dev-util/gtk-doc-am-1.9
53 + >=dev-util/intltool-0.40.0
54 + dev-util/itstool
55 + virtual/libudev
56 + virtual/pkgconfig
57 + x11-base/xorg-proto
58 +"
59 +
60 +pkg_setup() {
61 + enewgroup plugdev
62 +}
63 +
64 +src_configure() {
65 + gnome-meson_src_configure \
66 + -Denable-gtk-doc=false \
67 + -Denable-icon-update=false \
68 + $(meson_enable introspection)
69 +}
70 +
71 +src_install() {
72 + gnome-meson_src_install
73 + udev_dorules "${FILESDIR}"/61-${PN}.rules
74 +}
75 +
76 +pkg_postinst() {
77 + gnome-meson_pkg_postinst
78 + if ! has_version sys-auth/consolekit[acl] && ! has_version sys-apps/systemd[acl] ; then
79 + elog "Don't forget to add yourself to the plugdev group "
80 + elog "if you want to be able to control bluetooth transmitter."
81 + fi
82 +}