source: archive/gnome/gnome-bluetooth.xml@ 48b59802

11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 48b59802 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 7.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gnome-bluetooth-download-http
8 "&gnome-download-http;/gnome-bluetooth/3.6/gnome-bluetooth-&gnome-bluetooth-version;.tar.xz">
9 <!ENTITY gnome-bluetooth-download-ftp
10 "&gnome-download-ftp;/gnome-bluetooth/3.6/gnome-bluetooth-&gnome-bluetooth-version;.tar.xz">
11 <!ENTITY gnome-bluetooth-md5sum "a3b0b6c2c542b3264cb0144a4efb3342">
12 <!ENTITY gnome-bluetooth-size "1.3 MB">
13 <!ENTITY gnome-bluetooth-buildsize "21 MB">
14 <!ENTITY gnome-bluetooth-time "0.2 SBU">
15]>
16
17<sect1 id="gnome-bluetooth" xreflabel="gnome-bluetooth-&gnome-bluetooth-version;">
18 <?dbhtml filename="gnome-bluetooth.html"?>
19
20 <sect1info>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>gnome-bluetooth-&gnome-bluetooth-version;</title>
25
26 <indexterm zone="gnome-bluetooth">
27 <primary sortas="a-gnome-bluetooth">gnome-bluetooth</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to GNOME Bluetooth</title>
32
33 <para>
34 The <application>GNOME Bluetooth</application> package contains tools
35 for managing and manipulating Bluetooth devices using the
36 <application>GNOME</application> Desktop.
37 </para>
38
39 &lfs72_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&gnome-bluetooth-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&gnome-bluetooth-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &gnome-bluetooth-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &gnome-bluetooth-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &gnome-bluetooth-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &gnome-bluetooth-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">GNOME Bluetooth Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="libnotify"/> and
80 <xref linkend="yelp-xsl"/>
81 </para>
82
83 <bridgehead renderas="sect4">Recommended</bridgehead>
84 <para role="recommended">
85 <xref linkend="gobject-introspection"/> and
86 <xref linkend="nautilus-sendto"/>
87 </para>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <xref linkend="geoclue"/> and
92 <xref linkend="gtk-doc"/>
93 </para>
94
95 <bridgehead renderas="sect4">Required (Runtime)</bridgehead>
96 <para role="optional">
97 <xref linkend="bluez"/>,
98 <xref linkend="consolekit"/> and
99 <xref linkend="obexd"/>
100 (Required for bluetooth-sendto to work)
101 </para>
102
103 <para condition="html" role="usernotes">User Notes:
104 <ulink url="&blfs-wiki;/gnome-bluetooth"/>
105 </para>
106 </sect2>
107
108 <sect2 role="installation">
109 <title>Installation of GNOME Bluetooth</title>
110
111 <para>
112 Install <application>GNOME Bluetooth</application> by running the following
113 commands:
114 </para>
115
116<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
117make</userinput></screen>
118
119 <para>
120 This package does not come with a test suite.
121 </para>
122
123 <para>
124 Now, as the <systemitem class="username">root</systemitem> user:
125 </para>
126
127<screen role="root"><userinput>make install</userinput></screen>
128
129 <para>
130 For <application>GNOME Bluetooth</application> to work
131 as expected, users need to be allowed to write to
132 <filename>/dev/rfkill</filename>. Create a
133 <application>Udev</application> rule that will allow
134 normal users to write to <filename>/dev/rfkill</filename>
135 with the following command as the
136 <systemitem class="username">root</systemitem> user:
137 </para>
138
139<screen role="root"><userinput>cat &gt; /lib/udev/rules.d/61-gnome-bluetooth.rules &lt;&lt; "EOF"
140<literal># Get access to /dev/rfkill for users
141# See https://bugzilla.redhat.com/show_bug.cgi?id=514798
142#
143# Updated for udev &gt;= 154
144# http://bugs.debian.org/582188
145# https://bugzilla.redhat.com/show_bug.cgi?id=588660
146
147ENV{ACL_MANAGE}=="0", GOTO="gnome_bluetooth_end"
148ACTION!="add|change", GOTO="gnome_bluetooth_end"
149KERNEL=="rfkill", TAG+="udev-acl"
150LABEL="gnome_bluetooth_end"</literal>
151EOF</userinput></screen>
152
153 </sect2>
154
155 <sect2 role="commands">
156 <title>Command Explanations</title>
157
158 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
159 href="../../xincludes/gtk-doc-rebuild.xml"/>
160
161 </sect2>
162
163 <sect2 role="content">
164 <title>Contents</title>
165
166 <segmentedlist>
167 <segtitle>Installed Programs</segtitle>
168 <segtitle>Installed Library</segtitle>
169 <segtitle>Installed Directories</segtitle>
170
171 <seglistitem>
172 <seg>
173 bluetooth-applet, bluetooth-sendto and bluetooth-wizard
174 </seg>
175 <seg>
176 libgnome-bluetooth.so
177 </seg>
178 <seg>
179 /usr/include/gnome-bluetooth,
180 /usr/lib/gnome-bluetooth,
181 /usr/share/gnome-bluetooth,
182 /usr/share/gtk-doc/html/gnome-bluetooth and
183 /usr/share/help/*/gnome-bluetooth
184 </seg>
185 </seglistitem>
186 </segmentedlist>
187
188 <variablelist>
189 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
190 <?dbfo list-presentation="list"?>
191 <?dbhtml list-presentation="table"?>
192
193 <varlistentry id="bluetooth-applet">
194 <term><command>bluetooth-applet</command></term>
195 <listitem>
196 <para>
197 is a <application>GNOME</application> applet for prompting the
198 user for a Bluetooth passkey (PIN).
199 </para>
200 <indexterm zone="gnome-bluetooth bluetooth-applet">
201 <primary sortas="b-bluetooth-applet">bluetooth-applet</primary>
202 </indexterm>
203 </listitem>
204 </varlistentry>
205
206 <varlistentry id="bluetooth-sendto">
207 <term><command>bluetooth-sendto</command></term>
208 <listitem>
209 <para>
210 is a <application>GTK+</application> application for transferring
211 files over Bluetooth.
212 </para>
213 <indexterm zone="gnome-bluetooth bluetooth-sendto">
214 <primary sortas="b-bluetooth-sendto">bluetooth-sendto</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 <varlistentry id="bluetooth-wizard">
220 <term><command>bluetooth-wizard</command></term>
221 <listitem>
222 <para>
223 is a <application>GTK+</application> wizard for setting up
224 devices with the Linux Bluetooth stack.
225 </para>
226 <indexterm zone="gnome-bluetooth bluetooth-wizard">
227 <primary sortas="b-bluetooth-wizard">bluetooth-wizard</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
232 <varlistentry id="libgnome-bluetooth">
233 <term><filename class="libraryfile">libgnome-bluetooth.so</filename></term>
234 <listitem>
235 <para>
236 contains the <application>GNOME Bluetooth</application> API
237 functions.
238 </para>
239 <indexterm zone="gnome-bluetooth libgnome-bluetooth">
240 <primary sortas="c-libgnome-bluetooth">libgnome-bluetooth.so</primary>
241 </indexterm>
242 </listitem>
243 </varlistentry>
244
245 </variablelist>
246
247 </sect2>
248
249</sect1>
Note: See TracBrowser for help on using the repository browser.