From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E0A9138335 for ; Mon, 10 Sep 2018 21:34:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F18B5E0D5A; Mon, 10 Sep 2018 21:33:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1122E0D54 for ; Mon, 10 Sep 2018 21:33:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5EC1335D26 for ; Mon, 10 Sep 2018 21:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B7A43D9 for ; Mon, 10 Sep 2018 21:33:54 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1536588132.0363926643066f227fd9290214992942e1447dff.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: net-wireless/gnome-bluetooth/ X-VCS-Repository: proj/gnome X-VCS-Files: net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild X-VCS-Directories: net-wireless/gnome-bluetooth/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 0363926643066f227fd9290214992942e1447dff X-VCS-Branch: master Date: Mon, 10 Sep 2018 21:33:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d525657e-06c1-44a5-91f2-cb64f0edc8b8 X-Archives-Hash: 4f9a7be3855669bd52ac6423afeff2ff commit: 0363926643066f227fd9290214992942e1447dff Author: Gilles Dartiguelongue gentoo org> AuthorDate: Mon Sep 10 13:31:48 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Mon Sep 10 14:02:12 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=03639266 net-wireless/gnome-bluetooth: 3.20.1 → 3.26.1 Package-Manager: Portage-2.3.49, Repoman-2.3.10 Manifest-Sign-Key: 0x5A56C8CD0C13248A .../gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild new file mode 100644 index 00000000..afc6b43a --- /dev/null +++ b/net-wireless/gnome-bluetooth/gnome-bluetooth-3.26.1.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome-meson udev user + +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="debug +introspection" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +COMMON_DEPEND=" + >=dev-libs/glib-2.38:2 + media-libs/libcanberra[gtk3] + >=x11-libs/gtk+-3.12:3[introspection?] + x11-libs/libnotify + virtual/udev + introspection? ( >=dev-libs/gobject-introspection-0.9.5:= ) +" +RDEPEND="${COMMON_DEPEND} + >=net-wireless/bluez-5 +" +DEPEND="${COMMON_DEPEND} + !net-wireless/bluez-gnome + app-text/docbook-xml-dtd:4.1.2 + dev-libs/libxml2:2 + dev-util/gdbus-codegen + >=dev-util/gtk-doc-am-1.9 + >=dev-util/intltool-0.40.0 + dev-util/itstool + virtual/libudev + virtual/pkgconfig + x11-base/xorg-proto +" + +pkg_setup() { + enewgroup plugdev +} + +src_configure() { + gnome-meson_src_configure \ + -Denable-gtk-doc=false \ + -Denable-icon-update=false \ + $(meson_enable introspection) +} + +src_install() { + gnome-meson_src_install + udev_dorules "${FILESDIR}"/61-${PN}.rules +} + +pkg_postinst() { + gnome-meson_pkg_postinst + if ! has_version sys-auth/consolekit[acl] && ! 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 +}