Ignore:
Timestamp:
06/13/2004 09:15:45 PM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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
Children:
48b7295
Parents:
f939f05
Message:

XML update for Chapter 36 (Finish Part XI)

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xsoft/other/thunderbird.xml

    rf939f05 r16998db6  
     1<?xml version="1.0" encoding="ISO-8859-1"?>
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
     3   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
     4  <!ENTITY % general-entities SYSTEM "../../general.ent">
     5  %general-entities;
     6
     7  <!ENTITY thunderbird-download-http "http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/&thunderbird-version;/thunderbird-&thunderbird-version;-source.tar.gz">
     8  <!ENTITY thunderbird-download-ftp  "ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/&thunderbird-version;/thunderbird-&thunderbird-version;-source.tar.gz">
     9  <!ENTITY thunderbird-size          "31 MB">
     10  <!ENTITY thunderbird-buildsize     "599 MB">
     11  <!ENTITY thunderbird-time          "11.9 SBU">
     12]>
     13
    114<sect1 id="thunderbird" xreflabel="MozillaThunderbird-&thunderbird-version;">
    215<?dbhtml filename="thunderbird.html" ?>
    316<title>MozillaThunderbird-&thunderbird-version;</title>
    417
    5 &thunderbird-intro;
    6 &thunderbird-inst;
     18<sect2>
     19<title>Introduction to <application>Mozilla Thunderbird</application></title>
     20
     21<para><application>Mozilla Thunderbird</application> is a stand-alone mail/news client
     22based on the <application>Mozilla</application> codebase.</para>
     23
     24<sect3><title>Package information</title>
     25<itemizedlist spacing='compact'>
     26<listitem><para>Download (HTTP): <ulink
     27url="&thunderbird-download-http;"/></para></listitem>
     28<listitem><para>Download (FTP): <ulink
     29url="&thunderbird-download-ftp;"/></para></listitem>
     30<listitem><para>Download size: &thunderbird-size;</para></listitem>
     31<listitem><para>Estimated Disk space required:
     32&thunderbird-buildsize;</para></listitem>
     33<listitem><para>Estimated build time:
     34&thunderbird-time;</para></listitem></itemizedlist>
     35</sect3>
     36
     37<sect3><title><application>Mozilla Thunderbird</application> dependencies</title>
     38<sect4><title>Required</title>
     39<para><xref linkend="zip"/>, <xref linkend="GTK2"/>,
     40<xref linkend="libIDL"/>, <xref linkend="libmng"/> and
     41<xref linkend="which"/>
     42</para></sect4>
     43</sect3>
     44
     45</sect2>
     46
     47<sect2>
     48<title>Installation of <application>Mozilla Thunderbird</application></title>
     49
     50<warning>
     51<para>The current source tarball uses CRLF line-ending (DOS Format). This causes
     52problems during the compilation. Once you extract the tarball, convert the files
     53to UNIX style line endings using <xref linkend="hd2u"/>.</para>
     54<screen><userinput><command>find -type f -print0 | xargs -0 dos2unix --d2u</command></userinput></screen>
     55</warning>
     56
     57<para>The configuration of <application>Mozilla Thunderbird</application> is
     58very similar to <xref linkend="mozilla"/> and hence the options
     59will not be discussed. Refer to the <xref linkend="mozilla"/> for
     60explanations and additional configuration information.</para>
     61
     62<para>Compile and install <application>Mozilla Thunderbird</application> by
     63running the following commands:</para>
     64
     65<screen><userinput><command>export MOZILLA_OFFICIAL="1" &amp;&amp;
     66export BUILD_OFFICIAL="1" &amp;&amp;
     67export MOZ_THUNDERBIRD="1" &amp;&amp;
     68./configure --prefix=/opt/thunderbird-&thunderbird-version; \
     69            --enable-default-toolkit=gtk2 \
     70            --with-x --with-system-zlib \
     71            --with-system-jpeg --with-system-png --with-system-mng \
     72            --enable-xft --enable-crypto \
     73            --disable-accessibility \
     74            --disable-tests --disable-debug \
     75            --disable-logging --enable-reorder \
     76            --enable-strip --disable-pedantic \
     77            --enable-cpp-rtti --enable-extensions=all \
     78            --disable-calendar &amp;&amp;
     79make &amp;&amp;
     80make install &amp;&amp;
     81ln -sf /opt/thunderbird-&thunderbird-version;/bin/thunderbird /usr/bin/MozillaThunderbird</command></userinput></screen>
     82
     83<para>To enable multi-user operation, execute the following:</para>
     84
     85<screen><userinput><command>cd /opt/thunderbird-&thunderbird-version;/lib/mozilla-* &amp;&amp;
     86export LD_LIBRARY_PATH="$PWD" &amp;&amp;
     87export MOZILLA_FIVE_HOME="$PWD" &amp;&amp;
     88./regxpcom &amp;&amp;
     89./regchrome &amp;&amp;
     90touch `find $PWD -name *.rdf`</command></userinput></screen>
     91
     92</sect2>
    793
    894</sect1>
Note: See TracChangeset for help on using the changeset viewer.