source: general/genlib/gmime.xml@ c80db1b

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 c80db1b was aa4778c4, checked in by Ken Moffat <ken@…>, 12 years ago

pkgconfig -> glib2 : effectively revert r9648, 9651, 9653.

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

  • Property mode set to 100644
File size: 5.9 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 gmime-download-http "&gnome-download-http;/gmime/2.4/gmime-&gmime-version;.tar.xz">
8 <!ENTITY gmime-download-ftp "&gnome-download-ftp;/gmime/2.4/gmime-&gmime-version;.tar.xz">
9 <!ENTITY gmime-md5sum "46a52361d43769d20dbd87aa225bc3f9">
10 <!ENTITY gmime-size "672 KB">
11 <!ENTITY gmime-buildsize "21 MB">
12 <!ENTITY gmime-time "0.4 SBU">
13]>
14
15<sect1 id="gmime" xreflabel="GMime-&gmime-version;">
16 <?dbhtml filename="gmime.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GMime-&gmime-version;</title>
24
25 <indexterm zone="gmime">
26 <primary sortas="a-GMime">GMime</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GMime</title>
31
32 <para>
33 The <application>GMime</application> package contains a set of
34 utilities for parsing and creating messages using the Multipurpose
35 Internet Mail Extension (MIME) as defined by the applicable RFCs. See the
36 <ulink url="http://spruce.sourceforge.net/gmime/">GMime web site</ulink>
37 for the RFCs resourced. This is useful as it provides an API which adheres
38 to the MIME specification as closely as possible while also providing
39 programmers with an extremely easy to use interface to the API functions.
40 </para>
41
42 &lfs70_checked;
43
44 <bridgehead renderas="sect3">Package Information</bridgehead>
45 <itemizedlist spacing="compact">
46 <listitem>
47 <para>
48 Download (HTTP): <ulink url="&gmime-download-http;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download (FTP): <ulink url="&gmime-download-ftp;"/>
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download MD5 sum: &gmime-md5sum;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Download size: &gmime-size;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated disk space required: &gmime-buildsize;
69 </para>
70 </listitem>
71 <listitem>
72 <para>
73 Estimated build time: &gmime-time;
74 </para>
75 </listitem>
76 </itemizedlist>
77
78 <bridgehead renderas="sect3">GMime Dependencies</bridgehead>
79
80 <bridgehead renderas="sect4">Required</bridgehead>
81 <para role="required">
82 <xref linkend="glib2"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="docbook-utils"/>,
88 <xref linkend="gtk-doc"/> and
89 <ulink url="http://go-mono.com/sources/">Gtk#</ulink> (requires
90 <ulink url="http://www.mono-project.com/Main_Page">Mono</ulink>)
91 </para>
92
93 <para condition="html" role="usernotes">User Notes:
94 <ulink url="&blfs-wiki;/gmime"/>
95 </para>
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of GMime</title>
100
101 <para>
102 Install <application>GMime</application> by running the following
103 commands:
104 </para>
105
106<screen><userinput>./configure --prefix=/usr --disable-static &amp;&amp;
107make</userinput></screen>
108
109 <para>
110 If you have <xref linkend="docbook-utils"/> installed and you wish
111 to generate the API tutorials, issue the following commands:
112 </para>
113
114<screen><userinput>pushd docs/tutorial &amp;&amp;
115docbook2html --nochunks gmime-tut.sgml &amp;&amp;
116docbook2pdf gmime-tut.sgml &amp;&amp;
117docbook2ps gmime-tut.sgml &amp;&amp;
118docbook2txt gmime-tut.sgml &amp;&amp;
119popd</userinput></screen>
120
121 <para>
122 To test the results, issue: <command>make check</command>. Note that
123 some tests may fail because the corresponding sub-system is not installed
124 or configured properly.
125 </para>
126
127 <para>
128 Now, as the <systemitem class="username">root</systemitem> user:
129 </para>
130
131<screen role="root"><userinput>make install &amp;&amp;
132install -v -m755 -d /usr/share/doc/gmime-&gmime-version; &amp;&amp;
133install -v -m644 README \
134 /usr/share/doc/gmime-&gmime-version;</userinput></screen>
135
136 <para>
137 If you generated the API tutorials, still as the
138 <systemitem class="username">root</systemitem> user:
139 </para>
140
141<screen role="root"><userinput>install -v -m644 docs/tutorial/gmime* \
142 /usr/share/doc/gmime-&gmime-version;</userinput></screen>
143
144 </sect2>
145
146 <sect2 role="commands">
147 <title>Command Explanations</title>
148
149 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
150 href="../../xincludes/static-libraries.xml"/>
151
152 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
153 href="../../xincludes/gtk-doc-rebuild.xml"/>
154
155 </sect2>
156
157 <sect2 role="content">
158 <title>Contents</title>
159
160 <segmentedlist>
161 <segtitle>Installed Library</segtitle>
162 <segtitle>Installed Directories</segtitle>
163
164 <seglistitem>
165 <seg>
166 libgmime-2.4.so
167 </seg>
168 <seg>
169 /usr/include/gmime-2.4,
170 /usr/share/doc/gmime-&gmime-version; and
171 /usr/share/gtk-doc/html/gmime
172 </seg>
173 </seglistitem>
174 </segmentedlist>
175
176 <variablelist>
177 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
178 <?dbfo list-presentation="list"?>
179 <?dbhtml list-presentation="table"?>
180
181 <varlistentry id="libgmime-2.4">
182 <term><filename class='libraryfile'>libgmime-2.4.so</filename></term>
183 <listitem>
184 <para>
185 contains API functions used by programs that need to comply to
186 the MIME standards.
187 </para>
188 <indexterm zone="gmime libgmime-2.4">
189 <primary sortas="c-libgmime-2.4">libgmime-2.4.so</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 </variablelist>
195
196 </sect2>
197
198</sect1>
Note: See TracBrowser for help on using the repository browser.