source: gnome/core/gconf.xml@ 7bdbf35

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 7bdbf35 was 7bdbf35, checked in by Krejzi <krejzi@…>, 12 years ago

gnome-online-accounts 3.4.0, gnome-keyring 3.4.1, libgweather 3.4.1, gnome-doc-utils 0.20.10, libgdata 0.12.0 and gconf instructions tweaks

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

  • Property mode set to 100644
File size: 7.4 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 GConf-download-http
8 "&gnome-download-http;/GConf/3.2/GConf-&GConf-version;.tar.xz">
9 <!ENTITY GConf-download-ftp
10 "&gnome-download-ftp;/GConf/3.2/GConf-&GConf-version;.tar.xz">
11 <!ENTITY GConf-md5sum "1b803eb4f8576c572d072692cf40c9d8">
12 <!ENTITY GConf-size "1.5 MB">
13 <!ENTITY GConf-buildsize "42 MB">
14 <!ENTITY GConf-time "0.3 SBU">
15]>
16
17<sect1 id="GConf" xreflabel="GConf-&GConf-version;">
18 <?dbhtml filename="GConf.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>GConf-&GConf-version;</title>
26
27 <indexterm zone="GConf">
28 <primary sortas="a-GConf">GConf</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to GConf</title>
33
34 <para>The <application>GConf</application> package contains a
35 configuration database system.</para>
36
37 &lfs70_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&GConf-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&GConf-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &GConf-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &GConf-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &GConf-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &GConf-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <bridgehead renderas="sect3">GConf Dependencies</bridgehead>
62
63 <bridgehead renderas="sect4">Required</bridgehead>
64 <para role="required">
65 <xref linkend="dbus-glib"/>,
66 <xref linkend="intltool"/> and
67 <xref linkend="libxml2"/>
68 </para>
69
70 <bridgehead renderas="sect4">Recommended (Required if building GNOME)</bridgehead>
71 <para role="recommended">
72 <xref linkend="gobject-introspection"/>,
73 <xref linkend="gtk3"/> and
74 <xref linkend="polkit"/>
75 </para>
76
77 <bridgehead renderas="sect4">Optional</bridgehead>
78 <para role="optional">
79 <xref linkend="gtk-doc"/> and
80 <xref linkend="openldap"/>
81 </para>
82
83 <para condition="html" role="usernotes">User Notes:
84 <ulink url="&blfs-wiki;/gconf"/></para>
85
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of GConf</title>
90
91 <para>Install <application>GConf</application> by running the following
92 commands:</para>
93
94<screen><userinput>./configure --prefix=/usr \
95 --sysconfdir=/etc \
96 --libexecdir=/usr/lib/GConf \
97 --disable-orbit \
98 --disable-static &amp;&amp;
99make</userinput></screen>
100
101 <para>This package does not come with a test suite.</para>
102
103 <para>Now, as the <systemitem class="username">root</systemitem>
104 user:</para>
105
106<screen role="root"><userinput>make install &amp;&amp;
107install -v -m755 -d /etc/gconf/gconf.xml.system</userinput></screen>
108
109 </sect2>
110
111 <sect2 role="commands">
112 <title>Command Explanations</title>
113
114<!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
115 href="../../xincludes/gnome-prefix.xml"/>
116
117 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
118 href="../../xincludes/gnome-sysconfdir.xml"/> -->
119
120 <para><parameter>--libexecdir=/usr/lib/GConf</parameter>:
121 This parameter causes the libexec files to be installed in the preferred
122 location of <filename class="directory">/usr/lib/GConf</filename>
123 instead of <filename
124 class="directory">/usr/libexec</filename>.</para>
125
126 <para><parameter>--disable-orbit</parameter>: This parameter is required if
127 <application>ORBit2</application> is not installed.
128 <application>ORBit2</application> is a deprecated package.</para>
129
130 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
131 href="../../xincludes/static-libraries.xml"/>
132
133 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
134 href="../../xincludes/gtk-doc-rebuild.xml"/>
135
136 <para><command>install -v -m755 -d
137 /etc/gconf/gconf.xml.system</command>: Creates a missing
138 directory. Without this directory, <command>gconf-sanity-check-2</command>
139 will fail during <application>GDM</application> startup and login.</para>
140
141 </sect2>
142
143 <sect2 role="content">
144 <title>Contents</title>
145
146 <segmentedlist>
147 <segtitle>Installed Programs</segtitle>
148 <segtitle>Installed Libraries</segtitle>
149 <segtitle>Installed Directories</segtitle>
150
151 <seglistitem>
152 <seg>
153 gconf-merge-tree, gconftool-2, gsettings-data-convert and
154 gsettings-schema-convert
155 </seg>
156 <seg>
157 libgconf-2.so
158 </seg>
159 <seg>
160 /etc/gconf, /usr/include/gconf, /usr/lib/GConf, /usr/share/GConf,
161 /usr/share/gtk-doc/html/gconf and /usr/share/sgml/gconf
162 </seg>
163 </seglistitem>
164 </segmentedlist>
165
166 <variablelist>
167 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
168 <?dbfo list-presentation="list"?>
169 <?dbhtml list-presentation="table"?>
170
171 <varlistentry id="gconf-merge-tree">
172 <term><command>gconf-merge-tree</command></term>
173 <listitem>
174 <para>merges an xml filesystem hierarchy.</para>
175 <indexterm zone="GConf gconf-merge-tree">
176 <primary sortas="b-gconf-merge-tree">gconf-merge-tree</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
180
181 <varlistentry id="gconftool-2">
182 <term><command>gconftool-2</command></term>
183 <listitem>
184 <para>is a command line tool for manipulating the
185 <application>GConf</application> database.</para>
186 <indexterm zone="GConf gconftool-2">
187 <primary sortas="b-gconftool-2">gconftool-2</primary>
188 </indexterm>
189 </listitem>
190 </varlistentry>
191
192 <varlistentry id="gsettings-data-convert">
193 <term><command>gsettings-data-convert</command></term>
194 <listitem>
195 <para>reads values out of the users GConf database and stores them in
196 GSettings.</para>
197 <indexterm zone="GConf gsettings-data-convert">
198 <primary sortas="b-gsettings-data-convert">gsettings-data-convert</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="gsettings-schemas-convert">
204 <term><command>gsettings-schemas-convert</command></term>
205 <listitem>
206 <para>converts between GConf and GSettings schema file formats.</para>
207 <indexterm zone="GConf gsettings-schemas-convert">
208 <primary sortas="b-gsettings-schemas-convert">gsettings-schemas-convert</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="libgconf-2">
214 <term><filename class='libraryfile'>libgconf-2.so</filename></term>
215 <listitem>
216 <para>provide the functions necessary to maintain the
217 configuration database.</para>
218 <indexterm zone="GConf libgconf-2">
219 <primary sortas="c-libgconf-2">libgconf-2.so</primary>
220 </indexterm>
221 </listitem>
222 </varlistentry>
223
224 </variablelist>
225
226 </sect2>
227
228</sect1>
Note: See TracBrowser for help on using the repository browser.