glfs/xsoft/other/thunderbird.xml
Archaic a0f03b0675 Inserting sect1info
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2591 af4574ff-66df-0310-9fd7-8a98e5e911e0
2004-08-10 04:23:09 +00:00

100 lines
4.0 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY thunderbird-download-http "http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/&thunderbird-version;/thunderbird-&thunderbird-version;-source.tar.gz">
<!ENTITY thunderbird-download-ftp "ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/&thunderbird-version;/thunderbird-&thunderbird-version;-source.tar.gz">
<!ENTITY thunderbird-size "31 MB">
<!ENTITY thunderbird-buildsize "599 MB">
<!ENTITY thunderbird-time "11.9 SBU">
]>
<sect1 id="thunderbird" xreflabel="MozillaThunderbird-&thunderbird-version;">
<sect1info>
<othername>$LastChangedBy: $</othername>
<date>$Date: $</date>
</sect1info>
<?dbhtml filename="thunderbird.html" ?>
<title>MozillaThunderbird-&thunderbird-version;</title>
<sect2>
<title>Introduction to <application>Mozilla Thunderbird</application></title>
<para><application>Mozilla Thunderbird</application> is a stand-alone mail/news client
based on the <application>Mozilla</application> codebase.</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink
url="&thunderbird-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink
url="&thunderbird-download-ftp;"/></para></listitem>
<listitem><para>Download size: &thunderbird-size;</para></listitem>
<listitem><para>Estimated Disk space required:
&thunderbird-buildsize;</para></listitem>
<listitem><para>Estimated build time:
&thunderbird-time;</para></listitem></itemizedlist>
</sect3>
<sect3><title><application>Mozilla Thunderbird</application> dependencies</title>
<sect4><title>Required</title>
<para><xref linkend="zip"/>, <xref linkend="GTK2"/>,
<xref linkend="libIDL"/>, <xref linkend="libmng"/> and
<xref linkend="which"/>
</para></sect4>
</sect3>
</sect2>
<sect2>
<title>Installation of <application>Mozilla Thunderbird</application></title>
<warning>
<para>The current source tarball uses CRLF line-ending (DOS Format). This causes
problems during the compilation. Once you extract the tarball, convert the files
to UNIX style line endings using <xref linkend="hd2u"/>.</para>
<screen><userinput><command>find -type f -print0 | xargs -0 dos2unix --d2u</command></userinput></screen>
</warning>
<para>The configuration of <application>Mozilla Thunderbird</application> is
very similar to <xref linkend="mozilla"/> and hence the options
will not be discussed. Refer to the <xref linkend="mozilla"/> for
explanations and additional configuration information.</para>
<para>Compile and install <application>Mozilla Thunderbird</application> by
running the following commands:</para>
<screen><userinput><command>export MOZILLA_OFFICIAL="1" &amp;&amp;
export BUILD_OFFICIAL="1" &amp;&amp;
export MOZ_THUNDERBIRD="1" &amp;&amp;
./configure --prefix=/opt/thunderbird-&thunderbird-version; \
--enable-default-toolkit=gtk2 \
--with-x --with-system-zlib \
--with-system-jpeg --with-system-png --with-system-mng \
--enable-xft --enable-crypto \
--disable-accessibility \
--disable-tests --disable-debug \
--disable-logging --enable-reorder \
--enable-strip --disable-pedantic \
--enable-cpp-rtti --enable-extensions=all \
--disable-calendar &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
ln -sf /opt/thunderbird-&thunderbird-version;/bin/thunderbird /usr/bin/MozillaThunderbird</command></userinput></screen>
<para>To enable multi-user operation, execute the following:</para>
<screen><userinput><command>cd /opt/thunderbird-&thunderbird-version;/lib/mozilla-* &amp;&amp;
export LD_LIBRARY_PATH="$PWD" &amp;&amp;
export MOZILLA_FIVE_HOME="$PWD" &amp;&amp;
./regxpcom &amp;&amp;
./regchrome &amp;&amp;
touch `find $PWD -name *.rdf`</command></userinput></screen>
</sect2>
</sect1>