Ignore:
Timestamp:
02/05/2006 09:04:56 PM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
b9bd12f
Parents:
bc3b7636
Message:

Modified the instructions for linking to installed plugins and removed the commands to create /usr/lib/mozilla compatibility links from the Mozilla instructions

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xsoft/graphweb/mozilla.xml

    rbc3b7636 r5dc41f0  
    315315install -v -m644 mailnews/base/ispdata/movemail.rdf \
    316316    /usr/lib/mozilla-&mozilla-version;/defaults/isp &amp;&amp;
    317 ln -v -s ../movemail.rdf /usr/lib/mozilla-&mozilla-version;/defaults/isp/US &amp;&amp;
    318 
    319 if [ -d /usr/lib/mozilla/plugins ]; then
    320     if [ -f /usr/lib/mozilla/plugins/libnullplugin.so ]; then
    321         rm -vf /usr/lib/mozilla/plugins/libnullplugin.so
    322     fi
    323     mv -v /usr/lib/mozilla/plugins/* /usr/lib/mozilla-&mozilla-version;/plugins
    324     rm -v -rf /usr/lib/mozilla
     317ln -v -s ../movemail.rdf /usr/lib/mozilla-&mozilla-version;/defaults/isp/US</userinput></screen>
     318
     319<!-- Commenting this out per the discussion on BLFS-Dev about this.
     320     The stuff commented out below is replaced with text in the
     321     Configuration section to create links to any system-wide
     322     plugins the user may have installed
     323
     324if [ -L /usr/lib/mozilla/plugins ]; then
     325     rm /usr/lib/mozilla/plugins
    325326fi &amp;&amp;
    326 
     327if [ -L /usr/lib/mozilla ]; then
     328     rm /usr/lib/mozilla
     329fi &amp;&amp;
     330
     331install -v -m755 -d /usr/lib/mozilla/plugins &amp;&amp;
     332cp -v /usr/lib/mozilla-1.7.12/plugins/* /usr/lib/mozilla/plugins &amp;&amp;
     333rm -f /usr/lib/mozilla-1.7.12/plugins &amp;&amp;
     334ln -v -s ../mozilla/plugins /usr/lib/mozilla-1.7.12 &amp;&amp;
     335-->
     336
     337<!-- The following commented out per the discussion on BLFS-Dev. It
     338     has been determined that we will no longer continue to support
     339     broken programs that don't look at pkgconfig files to find out
     340     where Mozilla is installed
     341
     342ln -v -nsf mozilla-&mozilla-version; /usr/include/mozilla &amp;&amp;
    327343ln -v -nsf mozilla-&mozilla-version; /usr/lib/mozilla &amp;&amp;
    328 ln -v -nsf mozilla-&mozilla-version; /usr/include/mozilla</userinput></screen>
     344-->
    329345
    330346    <para>If you built <application>Mozilla</application> utilizing
     
    569585    installation script.</para>
    570586
     587    <!-- Commenting this out as the commands needing these explanations
     588         are also commented out
     589
    571590    <para><command>if [ -d /usr/lib/mozilla/plugins ] ... fi</command>: Some
    572591    applications may have already installed <application>Mozilla</application>
     
    582601    etc.) don't need to know which version of <application>Mozilla</application>
    583602    is installed.</para>
     603    -->
    584604
    585605  </sect2>
     
    608628
    609629<screen role="root"><userinput>ln -v -s $JAVA_HOME/jre/plugin/i386/ns7/libjavaplugin_oji.so \
     630    /usr/lib/mozilla-&mozilla-version;/plugins</userinput></screen>
     631
     632    <para>Some packages install Mozilla plugins into the default system-wide
     633    directory <filename class='directory'>/usr/lib/mozilla/plugins</filename>.
     634    If desired, create symbolic links in the <application>Mozilla</application>
     635    plugin directory
     636    <filename class='directory'>/usr/lib/mozilla-&mozilla-version;/plugins</filename>
     637    to the files in the default plugin directory (you should link to the actual
     638    files and not other links). Alternatively, you can move or copy the files
     639    in the default plugin directory to the
     640    <application>Mozilla</application> plugin directory. An example of creating
     641    a symbolic link is shown below. Create the links as the
     642    <systemitem class="username">root</systemitem> user:</para>
     643
     644<screen role="root"><userinput>ln -v -s ../../mozilla/plugins/<replaceable>[plugin.so]</replaceable> \
    610645    /usr/lib/mozilla-&mozilla-version;/plugins</userinput></screen>
    611646
Note: See TracChangeset for help on using the changeset viewer.