source: gnome/platform/geocode-glib.xml@ 1f0e7ec

12.0 12.1 gimp3 kea ken/TL2024 ken/tuningfonts lazarus lxqt plabs/newcss python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/spidermonkey128 xry111/xf86-video-removal
Last change on this file since 1f0e7ec was 91318eb, checked in by Pierre Labastie <pierre.labastie@…>, 17 months ago

Add "setup" to meson commands

I've not been very consistent on typography, but it is a start

  • Property mode set to 100644
File size: 5.8 KB
RevLine 
[eba70158]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 geocode-glib-download-http
[262a108]8 "&gnome-download-http;/geocode-glib/&gnome-minor-26;/geocode-glib-&geocode-glib-version;.tar.xz">
[eba70158]9 <!ENTITY geocode-glib-download-ftp
[262a108]10 "&gnome-download-ftp;/geocode-glib/&gnome-minor-26;/geocode-glib-&geocode-glib-version;.tar.xz">
[24f4ee91]11 <!ENTITY geocode-glib-md5sum "4c0dcdb7ee1222435b20acd3d7b68cd1">
[7d8cb6a]12 <!ENTITY geocode-glib-size "76 KB">
[24f4ee91]13 <!ENTITY geocode-glib-buildsize "4.6 MB (with tests)">
14 <!ENTITY geocode-glib-time "0.1 SBU (with tests)">
[eba70158]15]>
16
[51dfb3e]17<sect1 id="geocode-glib" xreflabel="geocode-glib-&geocode-glib-version;">
[eba70158]18 <?dbhtml filename="geocode-glib.html"?>
19
20
21 <title>geocode-glib-&geocode-glib-version;</title>
22
23 <indexterm zone="geocode-glib">
24 <primary sortas="a-geocode-glib">geocode-glib</primary>
25 </indexterm>
26
27 <sect2 role="package">
28 <title>Introduction to Geocode GLib</title>
29
30 <para>
31 The <application>Geocode GLib</application> is a convenience library
32 for the Yahoo! Place Finder APIs. The Place Finder web service allows
33 to do geocoding (finding longitude and latitude from an address), and
34 reverse geocoding (finding an address from coordinates).
35 </para>
36
[58ebeee]37 &lfs113_checked;
[eba70158]38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&geocode-glib-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&geocode-glib-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &geocode-glib-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &geocode-glib-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &geocode-glib-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &geocode-glib-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">Geocode GLib Dependencies</bridgehead>
74
75 <bridgehead renderas="sect4">Required</bridgehead>
76 <para role="required">
[bb343c9]77 <xref linkend="json-glib"/> and
[1ad0f5e]78 <xref linkend="libsoup3"/>
[eba70158]79 </para>
80
81 <bridgehead renderas="sect4">Recommended</bridgehead>
82 <para role="recommended">
83 <xref linkend="gobject-introspection"/>
84 </para>
85
86 <bridgehead renderas="sect4">Optional</bridgehead>
87 <para role="optional">
[bb343c9]88 <xref linkend="gtk-doc"/>
[eba70158]89 </para>
[bb343c9]90
[eba70158]91 <para condition="html" role="usernotes">
92 User Notes: <ulink url="&blfs-wiki;/geocode-glib"/>
93 </para>
94 </sect2>
95
96 <sect2 role="installation">
97 <title>Installation of Geocode GLib</title>
98
99 <para>
100 Install <application>Geocode GLib</application> by running the following
101 commands:
102 </para>
103
[1ad0f5e]104<screen><userinput>mkdir build &amp;&amp;
105cd build &amp;&amp;
106
[91318eb]107meson setup --prefix /usr \
108 --buildtype=release \
109 -Denable-gtk-doc=false \
110 -Dsoup2=false \
111 .. &amp;&amp;
[7e9db78c]112ninja</userinput></screen>
[eba70158]113
114
115 <para>
[1ad0f5e]116 To test the results, issue: <command>LANG=C ninja test</command>.
117 One test fails because it needs the <literal>sv_SE.utf8</literal> locale,
118 which is not installed by default in LFS.
[eba70158]119 </para>
120
121 <para>
122 Now, as the <systemitem class="username">root</systemitem> user:
123 </para>
124
[7e9db78c]125<screen role="root"><userinput>ninja install</userinput></screen>
[eba70158]126
127 </sect2>
128
[bb343c9]129 <sect2 role="commands">
130 <title>Command Explanations</title>
131
[adf17153]132 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
133 href="../../xincludes/meson-buildtype-release.xml"/>
134
[bb343c9]135 <para>
[aa41434]136 <parameter>-Denable-gtk-doc=false</parameter>: Allow this package to be
[1ad0f5e]137 built without <xref linkend="gtk-doc" role="nodep"/>. Remove this
138 parameter if <xref linkend="gtk-doc" role="nodep"/> is installed
[bb343c9]139 and you wish to rebuild and install the API documentation.
140 </para>
141
[1ad0f5e]142 <para>
143 <parameter>-Dsoup2=false</parameter>: This switch forces this package
144 to use libsoup-3 for HTTP requests instead of libsoup-2. The packages in
145 BLFS that use geocode-glib now expect libsoup-3 to be used.
146 </para>
147
[bb343c9]148 </sect2>
149
[eba70158]150 <sect2 role="content">
151 <title>Contents</title>
152
153 <segmentedlist>
154 <segtitle>Installed Programs</segtitle>
155 <segtitle>Installed Library</segtitle>
156 <segtitle>Installed Directories</segtitle>
157
158 <seglistitem>
159 <seg>
160 None
161 </seg>
162 <seg>
[1ad0f5e]163 libgeocode-glib-2.so
[eba70158]164 </seg>
165 <seg>
[1ad0f5e]166 /usr/include/geocode-glib-2.0,
[262a108]167 /usr/libexec/installed-tests/geocode-glib,
168 /usr/share/icons/gnome/scalable/places, and
[876948d]169 /usr/share/gtk-doc/html/geocode-glib
[eba70158]170 </seg>
171 </seglistitem>
172 </segmentedlist>
173
174 <variablelist>
175 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
176 <?dbfo list-presentation="list"?>
177 <?dbhtml list-presentation="table"?>
178
[1ad0f5e]179 <varlistentry id="libgeocode-glib-2">
180 <term><filename class="libraryfile">libgeocode-glib-2.so</filename></term>
[eba70158]181 <listitem>
182 <para>
[4c24eb0a]183 contains the <application>Geocode GLib</application> API functions
[eba70158]184 </para>
[1ad0f5e]185 <indexterm zone="geocode-glib libgeocode-glib-2">
186 <primary sortas="c-libgeocode-glib-2">libgeocode-glib-2.so</primary>
[eba70158]187 </indexterm>
188 </listitem>
189 </varlistentry>
190
191 </variablelist>
192
193 </sect2>
194
195</sect1>
Note: See TracBrowser for help on using the repository browser.