Ignore:
Timestamp:
03/09/2020 03:02:12 PM (4 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2aff70f
Parents:
22618785
Message:

Format multimedia chapter

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • multimedia/libdriv/xvid.xml

    r22618785 r2eeb8695  
    3030  <title>Introduction to XviD</title>
    3131
    32     <para><application>XviD</application> is an MPEG-4
    33     compliant video CODEC.</para>
     32    <para>
     33      <application>XviD</application> is an MPEG-4 compliant video CODEC.
     34    </para>
    3435
    3536    &lfs91_checked;
     
    3839    <itemizedlist spacing="compact">
    3940      <listitem>
    40         <para>Download (HTTP): <ulink url="&xvid-download-http;"/></para>
     41        <para>
     42          Download (HTTP): <ulink url="&xvid-download-http;"/>
     43        </para>
    4144      </listitem>
    4245      <listitem>
    43         <para>Download (FTP): <ulink url="&xvid-download-ftp;"/></para>
     46        <para>
     47          Download (FTP): <ulink url="&xvid-download-ftp;"/>
     48        </para>
    4449      </listitem>
    4550      <listitem>
    46         <para>Download MD5 sum: &xvid-md5sum;</para>
     51        <para>
     52          Download MD5 sum: &xvid-md5sum;
     53        </para>
    4754      </listitem>
    4855      <listitem>
    49         <para>Download size: &xvid-size;</para>
     56        <para>
     57          Download size: &xvid-size;
     58        </para>
    5059      </listitem>
    5160      <listitem>
    52         <para>Estimated disk space required: &xvid-buildsize;</para>
     61        <para>
     62          Estimated disk space required: &xvid-buildsize;
     63        </para>
    5364      </listitem>
    5465      <listitem>
    55         <para>Estimated build time: &xvid-time;</para>
     66        <para>
     67          Estimated build time: &xvid-time;
     68        </para>
    5669      </listitem>
    5770    </itemizedlist>
     
    7083    <title>Installation of XviD</title>
    7184
    72     <note><para>This package tarball expands to <filename
    73     class='directory'>xvidcore</filename>, not the expected <filename
    74     class='directory'>xvidcore-&xvid-version;</filename>.</para></note>
     85    <note>
     86      <para>
     87      This package tarball expands to <filename
     88      class='directory'>xvidcore</filename>, not the expected <filename
     89      class='directory'>xvidcore-&xvid-version;</filename>.
     90      </para>
     91    </note>
    7592
    76     <para>Install <application>XviD</application> by running the following
    77     commands:</para>
     93    <para>
     94      Install <application>XviD</application> by running the following
     95      commands:
     96    </para>
    7897
    7998<screen><userinput>cd build/generic &amp;&amp;
     
    82101make</userinput></screen>
    83102
    84     <para>This package does not come with a test suite.</para>
     103    <para>
     104      This package does not come with a test suite.
     105    </para>
    85106
    86     <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     107    <para>
     108      Now, as the <systemitem class="username">root</systemitem> user:
     109    </para>
    87110
    88111<screen role="root"><userinput>sed -i '/libdir.*STATIC_LIB/ s/^/#/' Makefile &amp;&amp;
     
    90113
    91114chmod -v 755 /usr/lib/libxvidcore.so.4.3 &amp;&amp;
    92 <!-- Not necessary anymore, make install already creates them
    93 ln -v -sf libxvidcore.so.4.3 /usr/lib/libxvidcore.so.4 &amp;&amp;
    94 ln -v -sf libxvidcore.so.4   /usr/lib/libxvidcore.so   &amp;&amp;-->
    95115install -v -m755 -d /usr/share/doc/xvidcore-&xvid-version;/examples &amp;&amp;
    96116install -v -m644 ../../doc/* /usr/share/doc/xvidcore-&xvid-version; &amp;&amp;
     
    103123    <title>Command Explanations</title>
    104124
    105     <para><command>sed -i 's/^LN_S=@LN_S@/&amp; -f -v/' platform.inc.in</command>:
    106     Fix error during <command>make install</command> if reintalling
    107     or upgrading.</para>
     125    <para>
     126      <command>sed -i 's/^LN_S=@LN_S@/&amp; -f -v/' platform.inc.in</command>:
     127      Fix error during <command>make install</command> if reintalling
     128      or upgrading.
     129    </para>
    108130
    109     <para><command>sed -i '/libdir.*STATIC_LIB/ s/^/#/' Makefile</command>:
    110     This command disables installing the static library.</para>
    111 
    112 <!-- see comment after chmod -v 755
    113     <para><command>ln -v -sf libxvidcore.so.4 /usr/lib/libxvidcore.so</command>:
    114     This command makes applications linked against
    115     <filename class="libraryfile">.so</filename> names, link to
    116     <filename class="libraryfile">.so.<replaceable>&lt;MAJOR&gt;</replaceable></filename>.
    117     This ensures better binary compatibility, as
    118     <application>XviD</application> developers take care not changing the
    119     <replaceable>&lt;MAJOR&gt;</replaceable> number until there is an incompatible
    120     ABI change.</para>-->
     131    <para>
     132      <command>sed -i '/libdir.*STATIC_LIB/ s/^/#/' Makefile</command>:
     133      This command disables installing the static library.
     134    </para>
    121135
    122136  </sect2>
     
    145159      <term><filename class='libraryfile'>libxvidcore.so</filename></term>
    146160      <listitem>
    147         <para>provides functions to encode and decode most
    148         MPEG-4 video data.</para>
     161        <para>
     162          provides functions to encode and decode most
     163          MPEG-4 video data.
     164        </para>
    149165        <indexterm zone="xvid libxvidcore">
    150166          <primary sortas="c-libxvidcore">libxvidcore.so</primary>
Note: See TracChangeset for help on using the changeset viewer.