mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 15:12:11 +08:00
45ab6c70c2
Remove "$LastChanged$" everywhere, and also some unused $Date$
194 lines
5.5 KiB
XML
194 lines
5.5 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY libgdata-download-http "&gnome-download-http;/libgdata/0.18/libgdata-&libgdata-version;.tar.xz">
|
|
<!ENTITY libgdata-download-ftp "&gnome-download-ftp;/libgdata/0.18/libgdata-&libgdata-version;.tar.xz">
|
|
<!ENTITY libgdata-md5sum "92b058d1a0af5d1b96c86c21820f1eff">
|
|
<!ENTITY libgdata-size "832 KB">
|
|
<!ENTITY libgdata-buildsize "54 MB (with tests)">
|
|
<!ENTITY libgdata-time "0.5 SBU (with tests)">
|
|
]>
|
|
|
|
<sect1 id="libgdata" xreflabel="libgdata-&libgdata-version;">
|
|
<?dbhtml filename="libgdata.html"?>
|
|
|
|
<sect1info>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>libgdata-&libgdata-version;</title>
|
|
|
|
<indexterm zone="libgdata">
|
|
<primary sortas="a-libgdata">libgdata</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to libgdata</title>
|
|
|
|
<para>
|
|
The <application>libgdata</application> package is a GLib-based
|
|
library for accessing online service APIs using the GData protocol, most
|
|
notably, Google's services. It provides APIs to access the common Google
|
|
services and has full asynchronous support.
|
|
</para>
|
|
|
|
&lfs101_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&libgdata-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&libgdata-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &libgdata-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &libgdata-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &libgdata-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &libgdata-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">libgdata Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Required</bridgehead>
|
|
<para role="required">
|
|
<xref linkend="libsoup"/>,
|
|
<xref linkend="gnome-online-accounts"/>,
|
|
<xref linkend="gtk3"/>,
|
|
<xref linkend="json-glib"/>, and
|
|
<xref linkend="vala"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Recommended</bridgehead>
|
|
<para role="recommended">
|
|
<xref linkend="gcr"/>,
|
|
<xref linkend="git"/>, and
|
|
<xref linkend="gobject-introspection"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="gtk-doc"/> (for documentation),
|
|
<xref linkend="liboauth"/> (for OAuth v1 support), and
|
|
<xref linkend="uhttpmock"/> (required for tests)
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
<ulink url="&blfs-wiki;/libgdata"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of libgdata</title>
|
|
|
|
<para>
|
|
Install <application>libgdata</application> by running the following
|
|
commands:
|
|
</para>
|
|
|
|
<screen><userinput>mkdir build &&
|
|
cd build &&
|
|
|
|
meson --prefix=/usr -Dgtk_doc=false -Dalways_build_tests=false .. &&
|
|
ninja</userinput></screen>
|
|
|
|
<para>
|
|
If you wish to run the test suite, make sure
|
|
<xref linkend="uhttpmock"/> is installed and remove
|
|
<parameter>-Dalways_build_tests=false</parameter> in the
|
|
<command>meson</command> command line. To test the results,
|
|
issue: <command>ninja test</command>. Note that
|
|
the tests need network access.
|
|
</para>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem> user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>ninja install</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
<para>
|
|
<parameter>-Dgtk_doc=false</parameter>: Remove this if you have
|
|
<xref linkend="gtk-doc"/> installed and want to rebuild the
|
|
documentation with it.
|
|
</para>
|
|
<para>
|
|
<option>-Doauth1=enabled</option>: Use this option if you wish to build
|
|
in support for OAuth v1. Note that you must have
|
|
<xref linkend="liboauth"/> installed in order to enable this option.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Libraries</segtitle>
|
|
<segtitle>Installed Directories</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
None
|
|
</seg>
|
|
<seg>
|
|
libgdata.so
|
|
</seg>
|
|
<seg>
|
|
/usr/include/libgdata and
|
|
/usr/share/gtk-doc/html/gdata
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="libgdata-lib">
|
|
<term><filename class="libraryfile">libgdata.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
contains the <application>libgdata</application> API functions
|
|
</para>
|
|
<indexterm zone="libgdata libgdata-lib">
|
|
<primary sortas="c-libgdata">libgdata.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|