source: xsoft/graphweb/firefox.xml@ c1e0ed2e

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
Last change on this file since c1e0ed2e was c1e0ed2e, checked in by Igor Živković <igor@…>, 20 years ago

Corrected Firefox dependencies

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

  • Property mode set to 100644
File size: 3.6 KB
Line 
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 firefox-download-http "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/&firefox-version;/firefox-source-&firefox-version;.tar.bz2">
8 <!ENTITY firefox-download-ftp "ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/&firefox-version;/firefox-source-&firefox-version;.tar.bz2">
9 <!ENTITY firefox-size "30 MB">
10 <!ENTITY firefox-buildsize "550 MB">
11 <!ENTITY firefox-time "10.14 SBU">
12]>
13
14<sect1 id="firefox" xreflabel="Mozilla Firefox-&firefox-version;">
15<?dbhtml filename="firefox.html" ?>
16<title>Mozilla Firefox-&firefox-version;</title>
17
18<sect2>
19<title>Introduction to <application>Mozilla Firefox</application></title>
20
21<para><application>Mozilla Firefox</application> is a stand-alone browser
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="&firefox-download-http;"/></para></listitem>
28<listitem><para>Download (FTP): <ulink
29url="&firefox-download-ftp;"/></para></listitem>
30<listitem><para>Download size: &firefox-size;</para></listitem>
31<listitem><para>Estimated Disk space required:
32&firefox-buildsize;</para></listitem>
33<listitem><para>Estimated build time:
34&firefox-time;</para></listitem></itemizedlist>
35</sect3>
36
37<sect3><title><application>Mozilla Firefox</application> dependencies</title>
38<sect4><title>Required</title>
39<para>
40<xref linkend="GTK2"/>,
41<xref linkend="libIDL"/> and
42<xref linkend="zip"/>
43</para></sect4>
44<sect4><title>Optional</title>
45<para>
46<xref linkend="unzip"/> and
47<ulink url="http://www.stack.nl/~dimitri/doxygen/">doxygen</ulink>
48<!-- Add these on 0.9.2 update
49<xref linkend="gnome-vfs"/>
50<xref linkend="mitkrb"/> or <xref linkend="heimdal"/>
51-->
52</para></sect4>
53</sect3>
54
55</sect2>
56
57<sect2>
58<title>Installation of <application>Mozilla Firefox</application></title>
59
60<para>The configuration of <application>Mozilla Firefox</application> is
61very similar to <xref linkend="mozilla"/> and hence the options
62will not be discussed. Refer to the <xref linkend="mozilla"/> for
63explanations and additional configuration information.</para>
64
65<para>Compile and install <application>Mozilla Firefox</application> by
66running the following commands:</para>
67
68<screen><userinput><command>export MOZILLA_OFFICIAL="1" &amp;&amp;
69export BUILD_OFFICIAL="1" &amp;&amp;
70export MOZ_PHOENIX="1" &amp;&amp;
71./configure --prefix=/opt/firefox-&firefox-version; \
72 --enable-default-toolkit=gtk2 \
73 --with-x --with-system-zlib \
74 --with-system-jpeg --with-system-png \
75 --enable-xft --enable-crypto \
76 --disable-accessibility \
77 --disable-tests --disable-debug \
78 --disable-logging --enable-reorder \
79 --enable-strip --disable-pedantic \
80 --enable-cpp-rtti --enable-extensions=all \
81 --disable-calendar --disable-mailnews &amp;&amp;
82make &amp;&amp;
83make install &amp;&amp;
84ln -sf /opt/firefox-&firefox-version;/bin/firefox /usr/bin/MozillaFirefox</command></userinput></screen>
85
86<para>To enable multi-user operation, execute the following:</para>
87
88<screen><userinput><command>cd /opt/firefox-&firefox-version;/lib/mozilla-* &amp;&amp;
89export LD_LIBRARY_PATH="$PWD" &amp;&amp;
90export MOZILLA_FIVE_HOME="$PWD" &amp;&amp;
91./regxpcom &amp;&amp;
92./regchrome &amp;&amp;
93touch `find $PWD -name *.rdf`</command></userinput></screen>
94
95</sect2>
96
97</sect1>
98
Note: See TracBrowser for help on using the repository browser.