source: gnome/platform/libgdata.xml@ 7163e26

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules 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 7163e26 was 69a16457, checked in by Douglas R. Reno <renodr@…>, 8 years ago

(systemd/gnome merge staging) Update to libpeas-1.18.0
(systemd/gnome merge staging) Update to libgweather-3.20.1
(systemd/gnome merge staging) Update to libgtop-2.34.0
(systemd/gnome merge staging) Update to libgdata-0.17.5
(systemd/gnome merge staging) Update to libchamplain-0.12.13
(systemd/gnome merge staging) Update to gtkhtml-4.10.0
(systemd/gnome merge staging) Update to grilo-0.3.1
(systemd/gnome merge) Greenlighted libgtop and libpeas
(systemd/gnome merge) Moved grilo, gtkhtml, libchamplain, libgdata, libgee, libgweather, and libwacom over to trunk
Added libwacom as an optional dependency to libinput on systemd systems
Merged switches and dependencies for Clutter from systemd branch (for systemd systems)
Tags
Added DJ's name in the changelog for his recent commit

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

  • Property mode set to 100644
File size: 5.0 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 libgdata-download-http "&gnome-download-http;/libgdata/0.17/libgdata-&libgdata-version;.tar.xz">
8 <!ENTITY libgdata-download-ftp "&gnome-download-ftp;/libgdata/0.17/libgdata-&libgdata-version;.tar.xz">
9 <!ENTITY libgdata-md5sum "3a1506d2bbdd68a98378312953a02b06">
10 <!ENTITY libgdata-size "1.3 MB">
11 <!ENTITY libgdata-buildsize "73 MB (with tests)">
12 <!ENTITY libgdata-time "0.7 SBU (with tests)">
13]>
14
15<sect1 id="libgdata" xreflabel="libgdata-&libgdata-version;" revision="systemd">
16 <?dbhtml filename="libgdata.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>libgdata-&libgdata-version;</title>
24
25 <indexterm zone="libgdata">
26 <primary sortas="a-libgdata">libgdata</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to libgdata</title>
31
32 <para>
33 The <application>libgdata</application> package is a GLib-based
34 library for accessing online service APIs using the GData protocol, most
35 notably, Google's services. It provides APIs to access the common Google
36 services and has full asynchronous support.
37 </para>
38
39 &lfs79_checked;&gcc6_checked;
40
41 <bridgehead renderas="sect3">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&libgdata-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&libgdata-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &libgdata-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &libgdata-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &libgdata-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &libgdata-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect3">libgdata Dependencies</bridgehead>
76
77 <bridgehead renderas="sect4">Required</bridgehead>
78 <para role="required">
79 <xref linkend="liboauth"/>,
80 <xref linkend="libsoup"/>,
81 <xref linkend="gtk3"/>,
82 <xref linkend="json-glib"/>,
83 <xref linkend="uhttpmock"/>, and
84 <xref linkend="vala"/>
85 </para>
86
87 <bridgehead renderas="sect4">Recommended</bridgehead>
88 <para role="recommended">
89 <xref linkend="gcr"/>,
90 <xref linkend="gnome-online-accounts"/>, and
91 <xref linkend="gobject-introspection"/>
92 </para>
93
94 <bridgehead renderas="sect4">Optional</bridgehead>
95 <para role="optional">
96 <xref linkend="gtk-doc"/>
97 </para>
98
99 <para condition="html" role="usernotes">User Notes:
100 <ulink url="&blfs-wiki;/libgdata"/>
101 </para>
102 </sect2>
103
104 <sect2 role="installation">
105 <title>Installation of libgdata</title>
106
107 <para>
108 Install <application>libgdata</application> by running the following
109 commands:
110 </para>
111
112<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
113make</userinput></screen>
114
115 <para>
116 To test the results, issue: <command>make check</command>. Note that
117 the tests need network access.
118 </para>
119
120 <para>
121 Now, as the <systemitem class="username">root</systemitem> user:
122 </para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125
126 </sect2>
127
128 <sect2 role="commands">
129 <title>Command Explanations</title>
130
131 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
132 href="../../xincludes/static-libraries.xml"/>
133
134 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
135 href="../../xincludes/gtk-doc-rebuild.xml"/>
136
137 </sect2>
138
139 <sect2 role="content">
140 <title>Contents</title>
141
142 <segmentedlist>
143 <segtitle>Installed Programs</segtitle>
144 <segtitle>Installed Libraries</segtitle>
145 <segtitle>Installed Directories</segtitle>
146
147 <seglistitem>
148 <seg>
149 None
150 </seg>
151 <seg>
152 libgdata.so
153 </seg>
154 <seg>
155 /usr/include/libgdata and
156 /usr/share/gtk-doc/html/gdata
157 </seg>
158 </seglistitem>
159 </segmentedlist>
160
161 <variablelist>
162 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
163 <?dbfo list-presentation="list"?>
164 <?dbhtml list-presentation="table"?>
165
166 <varlistentry id="libgdata-lib">
167 <term><filename class="libraryfile">libgdata.so</filename></term>
168 <listitem>
169 <para>
170 contains the <application>libgdata</application> API functions.
171 </para>
172 <indexterm zone="libgdata libgdata-lib">
173 <primary sortas="c-libgdata">libgdata.so</primary>
174 </indexterm>
175 </listitem>
176 </varlistentry>
177
178 </variablelist>
179
180 </sect2>
181
182</sect1>
Note: See TracBrowser for help on using the repository browser.