source: general/genlib/telepathy-glib.xml@ 3ec1600

10.1 11.0 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 3ec1600 was 3ec1600, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Update to Samba-4.13.2
Update to asciidoc-9.0.4
Update to git-2.29.2
telepathy-glib: Port to python3, fix tests with glib-2.46 and later, port to modern build machinery, and fix memory leaks

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@23863 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.2 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 telepathy-glib-download-http
8 "https://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-&telepathy-glib-version;.tar.gz">
9 <!ENTITY telepathy-glib-download-ftp " ">
10 <!ENTITY telepathy-glib-md5sum "cbeb0a24acc26e7f095be281c324da69">
11 <!ENTITY telepathy-glib-size "3.8 MB">
12 <!ENTITY telepathy-glib-buildsize "222 MB">
13 <!ENTITY telepathy-glib-time "1.2 SBU">
14]>
15
16<sect1 id="telepathy-glib" xreflabel="telepathy-glib-&telepathy-glib-version;">
17 <?dbhtml filename="telepathy-glib.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>telepathy-glib-&telepathy-glib-version;</title>
25
26 <indexterm zone="telepathy-glib">
27 <primary sortas="a-telepathy-glib">telepathy-glib</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Telepathy GLib</title>
32
33 <para>
34 The <application>Telepathy GLib</application> contains a library used by
35 <application>GLib</application> based <application>Telepathy</application>
36 components. Telepathy is a <application>D-Bus</application> framework for
37 unifying real time communication, including instant messaging, voice calls
38 and video calls. It abstracts differences between protocols to provide a
39 unified interface for applications.
40 </para>
41
42 &lfs10_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Download (HTTP): <ulink url="&telepathy-glib-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&telepathy-glib-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download MD5 sum: &telepathy-glib-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download size: &telepathy-glib-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &telepathy-glib-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &telepathy-glib-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
78 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
79 <itemizedlist spacing="compact">
80 <listitem>
81 <para>
82 Required patch:
83 <ulink url="&patch-root;/telepathy-glib-&telepathy-glib-version;-consolidated_fixes-1.patch"/>
84 </para>
85 </listitem>
86 </itemizedlist>
87
88 <bridgehead renderas="sect3">Telepathy GLib Dependencies</bridgehead>
89
90 <bridgehead renderas="sect4">Required</bridgehead>
91 <para role="required">
92 <xref linkend="dbus-glib"/> and
93 <xref linkend="libxslt"/>
94 </para>
95
96
97 <bridgehead renderas="sect4">Recommended</bridgehead>
98 <para role="recommended">
99 <xref linkend="gobject-introspection"/>, and
100 <xref linkend="vala"/>
101 </para>
102
103 <bridgehead renderas="sect4">Optional</bridgehead>
104 <para role="optional">
105 <xref linkend="gtk-doc"/>
106 </para>
107
108 <para condition="html" role="usernotes">User Notes:
109 <ulink url="&blfs-wiki;/telepathy-glib"/>
110 </para>
111 </sect2>
112
113 <sect2 role="installation">
114 <title>Installation of Telepathy Glib</title>
115
116 <para>
117 First, apply a patch to fix several bugs discovered after
118 release:
119 </para>
120
121<screen><userinput remap="pre">patch -Np1 -i ../telepathy-glib-&telepathy-glib-version;-consolidated_fixes-1.patch</userinput></screen>
122
123 <para>
124 Install <application>Telepathy GLib</application> by running the
125 following commands:
126 </para>
127
128<screen><userinput>autoreconf -fiv &amp;&amp;
129
130PYTHON=/usr/bin/python3 ./configure --prefix=/usr \
131 --enable-vala-bindings \
132 --disable-static &amp;&amp;
133make</userinput></screen>
134
135 <para>
136 To test the results, issue: <command>make check</command>.
137 <!--Four tests are known to fail: <emphasis>test-account</emphasis>,
138 <emphasis>test-cm</emphasis>, <emphasis>test-contact-lists</emphasis>, and
139 <emphasis>test-contact-list-client</emphasis>.-->
140 </para>
141
142 <para>
143 Now, as the <systemitem class="username">root</systemitem> user:
144 </para>
145
146<screen role="root"><userinput>make install</userinput></screen>
147
148 </sect2>
149
150 <sect2 role="commands">
151 <title>Command Explanations</title>
152
153 <para>
154 <parameter>--enable-vala-bindings</parameter>: This switch
155 enables building of the Vala bindings. Remove if you don't
156 have <xref linkend="vala"/> installed.
157 </para>
158
159 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
160 href="../../xincludes/static-libraries.xml"/>
161
162 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
163 href="../../xincludes/gtk-doc-rebuild.xml"/>
164
165 </sect2>
166
167 <sect2 role="content">
168 <title>Contents</title>
169
170 <segmentedlist>
171 <segtitle>Installed Programs</segtitle>
172 <segtitle>Installed Libraries</segtitle>
173 <segtitle>Installed Directories</segtitle>
174
175 <seglistitem>
176 <seg>
177 None
178 </seg>
179 <seg>
180 libtelepathy-glib.so
181 </seg>
182 <seg>
183 /usr/include/telepathy-1.0 and
184 /usr/share/gtk-doc/html/telepathy-glib
185 </seg>
186 </seglistitem>
187 </segmentedlist>
188
189 <variablelist>
190 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
191 <?dbfo list-presentation="list"?>
192 <?dbhtml list-presentation="table"?>
193
194 <varlistentry id="libtelepathy-glib">
195 <term><filename class="libraryfile">libtelepathy-glib.so</filename></term>
196 <listitem>
197 <para>
198 contains the <application>Telepathy GLib</application> API functions.
199 </para>
200 <indexterm zone="telepathy-glib libtelepathy-glib">
201 <primary sortas="c-libtelepathy-glib">libtelepathy-glib.so</primary>
202 </indexterm>
203 </listitem>
204 </varlistentry>
205
206 </variablelist>
207
208 </sect2>
209
210</sect1>
Note: See TracBrowser for help on using the repository browser.