%general-entities; ]> $LastChangedBy: krejzi $ $Date: 2014-10-29 19:58:34 +0100 (Wed, 29 Oct 2014) $ Firefox-&firefox-version; Firefox Introduction to Firefox Firefox is a stand-alone browser based on the Mozilla codebase. &lfs77_checked; Package Information Download (HTTP): Download (FTP): Download MD5 sum: &firefox-md5sum; Download size: &firefox-size; Estimated disk space required: &firefox-buildsize; Estimated build time: &firefox-time; Firefox Dependencies Required , , , and Recommended , , , , and If you don't install recommended dependencies, then internal copies of those packages will be used. They might be tested to work, but they can be out of date or contain security holes. You must have installed OpenSSL before Python 2, or the build system will quickly fail with output including "ImportError: cannot import name HTTPSHandler". If you are in any doubt about this (e.g. upgrading from an older version of SeaMonkey), check if /usr/lib/python&python2-majorver;/lib-dynload/_ssl.so exists. If it does not, reinstall (after installing . The latest version of any currently maintained version of OpenSSL should be satisfactory if already installed. Optional , , , (with and at runtime), or (with and at runtime), , , , , , , Hunspell and libproxy User Notes: Installation of Firefox The configuration of Firefox is accomplished by creating a mozconfig file containing the desired configuration options. A default mozconfig is created below. To see the entire list of available configuration options (and an abbreviated description of each one), issue ./configure --help. You may also wish to review the entire file and uncomment any other desired options. Create the file by issuing the following command: cat > mozconfig << "EOF" # If you have a multicore machine, all cores will be used by default. # If desired, you can reduce the number of cores used, e.g. to 1, by # uncommenting the next line and setting a valid number of CPU cores. #mk_add_options MOZ_MAKE_FLAGS="-j1" # If you have installed DBus-Glib comment out this line: ac_add_options --disable-dbus # If you have installed dbus-glib, and you have installed (or will install) # wireless-tools, and you wish to use geolocation web services, comment out # this line ac_add_options --disable-necko-wifi # If you have installed libnotify comment out this line: ac_add_options --disable-libnotify # Comment out following option if you have PulseAudio installed ac_add_options --disable-pulseaudio # GStreamer is necessary for H.264 video playback in HTML5 Video Player. # To enable it, make sure you also set "media.gstreamer.enabled" to # "true" in about:config. # If you don't have GStreamer 0.10.x installed, uncomment this line: #ac_add_options --disable-gstreamer # or uncomment this line if you have GStreamer 1.x.y installed: #ac_add_options --enable-gstreamer=1.0 # Uncomment these lines if you have installed optional dependencies: #ac_add_options --enable-system-hunspell #ac_add_options --enable-startup-notification # Comment out following options if you have not installed # recommended dependencies: ac_add_options --enable-system-sqlite ac_add_options --with-system-libevent ac_add_options --with-system-libvpx ac_add_options --with-system-nspr ac_add_options --with-system-nss ac_add_options --with-system-icu # The BLFS editors recommend not changing anything below this line: ac_add_options --prefix=/usr ac_add_options --enable-application=browser ac_add_options --disable-crashreporter ac_add_options --disable-updater ac_add_options --disable-tests ac_add_options --enable-optimize ac_add_options --enable-strip ac_add_options --enable-install-strip ac_add_options --enable-gio ac_add_options --enable-official-branding ac_add_options --enable-safe-browsing ac_add_options --enable-url-classifier ac_add_options --enable-system-cairo ac_add_options --enable-system-ffi ac_add_options --enable-system-pixman ac_add_options --with-pthreads ac_add_options --with-system-bz2 ac_add_options --with-system-jpeg ac_add_options --with-system-png ac_add_options --with-system-zlib mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-build-dir EOF First, fix building with system freetype-2.6 or later: sed -i '/^ftglyph.h/ i ftfntfmt.h' config/system-headers Compile Firefox by issuing the following commands: make -f client.mk This package does not come with a test suite. Install Firefox by running the following commands as the root user: make -f client.mk install INSTALL_SDK= && chown -R root:root /usr/lib/firefox-&firefox-version; && mkdir -pv /usr/lib/mozilla/plugins && ln -sfv ../../mozilla/plugins /usr/lib/firefox-&firefox-version;/browser While still as the root user, install the icon files which will be used in the desktop file below: for s in 16 32 48 do install -v -Dm644 /usr/lib/firefox-&firefox-version;/browser/chrome/icons/default/default${s}.png \ /usr/share/icons/hicolor/${s}x${s}/apps/firefox.png done && install -v -Dm644 /usr/lib/firefox-&firefox-version;/browser/icons/mozicon128.png \ /usr/share/icons/hicolor/128x128/apps/firefox.png && gtk-update-icon-cache -qf /usr/share/icons/hicolor && unset s Command Explanations make -f client.mk ...: Mozilla products are packaged to allow the use of a configuration file which can be used to pass the configuration settings to the configure command. make uses the client.mk file to get initial configuration and setup parameters. ln -sfv ... /usr/lib/firefox-&firefox-version;/browser: This command creates a symbolic link to /usr/lib/mozilla/plugins. It's not really needed, as Firefox checks /usr/lib/mozilla/plugins by default, but the symbolic link is made to keep all the plugins installed in one folder. Configuring Firefox If you use a desktop environment such as GNOME or KDE, you may want to create a desktop file in order to be able to launch Firefox from the desktop menus. If you didn't enable Startup Notification support in your mozconfig then change the StartupNotify line to false. Run the following commands as the root user: mkdir -pv /usr/share/applications && cat > /usr/share/applications/firefox.desktop << "EOF" [Desktop Entry] Encoding=UTF-8 Name=Firefox Web Browser Comment=Browse the World Wide Web GenericName=Web Browser Exec=firefox %u Terminal=false Type=Application Icon=firefox Categories=GNOME;GTK;Network;WebBrowser; MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; StartupNotify=true EOF Contents Installed Programs Installed Libraries Installed Directories firefox None /usr/lib/firefox-&firefox-version; and /usr/lib/mozilla/plugins Short Descriptions firefox is a GTK+ 2 internet browser that uses the Mozilla Gecko rendering engine. firefox