source: general/genlib/glib.xml@ f77b0b9

6.3 6.3-rc3
Last change on this file since f77b0b9 was 6732c094, checked in by Randy McMurchy <randy@…>, 17 years ago

Updated all the XML files (and the one stylesheet) to use the 4.5 version of DocBook XML DTD

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

  • Property mode set to 100644
File size: 4.5 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 GLib-download-http "http://gd.tuwien.ac.at/graphics/gimp/gtk/v1.2/glib-&GLib-version;.tar.gz">
8<!ENTITY GLib-download-ftp "ftp://ftp.gtk.org/pub/gtk/v1.2/glib-&GLib-version;.tar.gz">
9<!ENTITY GLib-md5sum "6fe30dad87c77b91b632def29dd69ef9">
10<!ENTITY GLib-size "412 KB">
11<!ENTITY GLib-buildsize "6.4 MB">
12<!ENTITY GLib-time "0.19 SBU">
13]>
14
15<sect1 id="GLib" xreflabel="GLib-&GLib-version;">
16 <?dbhtml filename="Glib.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GLib-&GLib-version;</title>
24
25 <indexterm zone="GLib">
26 <primary sortas="a-GLib-1">GLib-1</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GLib</title>
31
32 <para>The <application>glib</application> package contains a low-level core
33 library. This is useful for providing data structure handling for C,
34 portability wrappers and interfaces for such runtime functionality as an event
35 loop, threads, dynamic loading, and an object system.</para>
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>Download (HTTP): <ulink url="&GLib-download-http;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download (FTP): <ulink url="&GLib-download-ftp;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download MD5 sum: &GLib-md5sum;</para>
47 </listitem>
48 <listitem>
49 <para>Download size: &GLib-size;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated disk space required: &GLib-buildsize;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated build time: &GLib-time;</para>
56 </listitem>
57 </itemizedlist>
58
59 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
60 <itemizedlist spacing='compact'>
61 <listitem>
62 <para>Required patch: <ulink
63 url="&patch-root;/glib-&GLib-version;-gcc34-1.patch"/></para>
64 </listitem>
65 </itemizedlist>
66
67 <para condition="html" role="usernotes">User Notes:
68 <ulink url="&blfs-wiki;/glib"/></para>
69
70 </sect2>
71
72 <sect2 role="installation">
73 <title>Installation of GLib</title>
74
75 <para>Install <application>glib</application> by running the following
76 commands:</para>
77
78<screen><userinput>patch -Np1 -i ../glib-&GLib-version;-gcc34-1.patch &amp;&amp;
79./configure --prefix=/usr &amp;&amp;
80make</userinput></screen>
81
82 <para>To test the results, issue: <command>make check</command>.</para>
83
84 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
85
86<screen role="root"><userinput>make install &amp;&amp;
87chmod -v 755 /usr/lib/libgmodule-1.2.so.0.0.10</userinput></screen>
88
89 </sect2>
90
91 <sect2 role="content">
92 <title>Contents</title>
93
94 <segmentedlist>
95 <segtitle>Installed Programs</segtitle>
96 <segtitle>Installed Libraries</segtitle>
97 <segtitle>Installed Directories</segtitle>
98
99 <seglistitem>
100 <seg>glib-config</seg>
101 <seg>libglib.{so,a}, libgmodule.{so,a} and libgthread.{so,a}</seg>
102 <seg>/usr/include/glib-1.2 and /usr/lib/glib</seg>
103 </seglistitem>
104 </segmentedlist>
105
106 <variablelist>
107 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
108 <?dbfo list-presentation="list"?>
109 <?dbhtml list-presentation="table"?>
110
111 <varlistentry id="glib-config">
112 <term><command>glib-config</command></term>
113 <listitem>
114 <para>is a tool that is used by <command>configure</command> scripts
115 to determine the compiler and linker flags that should be used to compile and
116 link programs that use <application>GLib</application>.</para>
117 <indexterm zone="GLib glib-config">
118 <primary sortas="b-glib-config">glib-config</primary>
119 </indexterm>
120 </listitem>
121 </varlistentry>
122
123 <varlistentry id="libglib">
124 <term><filename class='libraryfile'>libglib.{so,a}</filename></term>
125 <listitem>
126 <para>libraries contain a low-level core library for the
127 <application>GIMP</application> Toolkit.</para>
128 <indexterm zone="GLib libglib">
129 <primary sortas="c-libglib">libglib.{so,a}</primary>
130 </indexterm>
131 </listitem>
132 </varlistentry>
133
134 </variablelist>
135
136 </sect2>
137
138</sect1>
Note: See TracBrowser for help on using the repository browser.