Changeset 36ec89cb


Ignore:
Timestamp:
05/24/2006 07:02:36 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:
39a9c7d
Parents:
f44c9d57
Message:

Several fixes to the MPlayer instructions, see the ChangeLog for full details

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rf44c9d57 r36ec89cb  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Several fixes to the MPlayer instructions: added a
     49          sed command to fix the getline function name issue, added a patch to
     50          fix the round function issue, fixed the creation of the font symlink
     51          to point to /usr/share/fonts, commented out the command and text that
     52          created a /dev/dvd device file as this is now done in LFS.</para>
     53        </listitem>
     54        <listitem>
    4855          <para>[randy] - Modified the way the GLUT library dependency is
    4956          described in the LibTIFF instructions.</para>
  • multimedia/videoutils/mplayer.xml

    rf44c9d57 r36ec89cb  
    8989        <para>Required Patch: <ulink
    9090        url="&patch-root;/MPlayer-&mplayer-version;-gcc4-1.patch"/></para>
     91      </listitem>
     92      <listitem>
     93        <para>Required Patch: <ulink
     94        url="&patch-root;/MPlayer-&mplayer-version;-round_function_fix-1.patch"/></para>
    9195      </listitem>
    9296      <listitem>
     
    373377      the dependencies you have installed on your system.</para>
    374378
     379      <para>Before beginning the installation, apply an upstream fix to avoid
     380      a conflict with the getline() function name:</para>
     381
     382<screen><userinput>sed -i 's/getline/vobsub_&amp;/' vobsub.c</userinput></screen>
     383
    375384      <para>Install <application>MPlayer</application> by running the following
    376385      commands:</para>
     
    378387<screen><userinput>patch -Np1 -i ../MPlayer-&mplayer-version;-kernel_2.6-1.patch &amp;&amp;
    379388patch -Np1 -i ../MPlayer-&mplayer-version;-gcc4-1.patch &amp;&amp;
     389patch -Np1 -i ../MPlayer-&mplayer-version;-round_function_fix-1.patch &amp;&amp;
    380390patch -Np1 -i ../MPlayer-&mplayer-version;-jack_fixes-1.patch &amp;&amp;
    381391patch -Np1 -i ../MPlayer-&mplayer-version;-x264_fixes-1.patch &amp;&amp;
    382 ./configure --prefix=/usr --confdir=/etc/mplayer \
    383     --enable-largefiles &amp;&amp;
     392
     393./configure --prefix=/usr \
     394            --confdir=/etc/mplayer \
     395            --enable-largefiles &amp;&amp;
    384396make</userinput></screen>
    385397
     
    389401
    390402<screen role="root"><userinput>make install &amp;&amp;
     403
    391404install -v -m755 -d /usr/share/doc/mplayer-&mplayer-version; &amp;&amp;
    392 cp -v -R DOCS/* /usr/share/doc/mplayer-&mplayer-version;</userinput></screen>
    393 
    394       <para>Passing parameters to <command>configure</command> may result
    395       in the creation of <filename class='libraryfile'>libdha.so.1.0</filename>.
    396       If so, you may wish to create a symlink to this library in case other
    397       packages link to <filename class='libraryfile'>libdha.so</filename>. Use
    398       the following command as the
    399       <systemitem class="username">root</systemitem> user to create the
    400       symlink:</para>
     405cp -v -R DOCS/*     /usr/share/doc/mplayer-&mplayer-version;</userinput></screen>
     406
     407      <para>Passing certain parameters to <command>configure</command> may
     408      result in the creation of
     409      <filename class='libraryfile'>libdha.so.1.0</filename>. If so, you may
     410      wish to create a symlink to this library in case other packages link to
     411      <filename class='libraryfile'>libdha.so</filename>. Use the following
     412      command as the <systemitem class="username">root</systemitem> user to
     413      create the symbolic link:</para>
    401414
    402415<screen role="root"><userinput>ln -v -s libdha.so.1.0 /usr/lib/libdha.so</userinput></screen>
     
    436449
    437450<screen><userinput>install -v -m750 -d ~/.mplayer &amp;&amp;
    438 ln -v -sf /usr/X11R6/lib/X11/fonts/TTF/luxisri.ttf \
     451ln -v -sf /usr/share/fonts/X11-TTF/luxisri.ttf \
    439452    ~/.mplayer/subfont.ttf</userinput></screen>
    440453
     
    457470    </sect3>
    458471
     472    <!--
    459473    <sect3>
    460474      <title>Installation for DVD Playback (Optional)</title>
     
    485499
    486500    </sect3>
     501    -->
    487502
    488503  </sect2>
Note: See TracChangeset for help on using the changeset viewer.