Changeset da067b4d


Ignore:
Timestamp:
07/21/2007 03:44:52 PM (17 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
4487494
Parents:
3f96749
Message:

Added a sed and a patch to allow Vorbis-Tools to link against cURL and FLAC respectively. Fixes Trac ticket #2240. Patch to update the book contributed by Ag Hatzimanikas.

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r3f96749 rda067b4d  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Added a sed and a patch to allow Vorbis-Tools to link
     49          against cURL and FLAC respectively. Fixes Trac ticket #2240. Patch
     50          to update the book contributed by Ag Hatzimanikas.</para>
     51        </listitem>
     52        <listitem>
    4853          <para>[randy] - Updated to libxklavier-3.2.</para>
    4954        </listitem>
  • multimedia/audioutils/vorbistools.xml

    r3f96749 rda067b4d  
    6262        url="&patch-root;/vorbis-tools-&vorbistools-version;-utf8-1.patch"/></para>
    6363      </listitem>
     64      <listitem>
     65        <para>Required Patch: <ulink
     66        url="&patch-root;/vorbis-tools-&vorbistools-version;-flac-1.patch"/></para>
     67      </listitem>
    6468    </itemizedlist>
    6569
     
    8690    <title>Installation of Vorbis Tools</title>
    8791
    88     <para>Install <application>Vorbis Tools</application> by running the following
    89     commands:</para>
    90 
    91 <screen><userinput>patch -Np1 -i ../vorbis-tools-&vorbistools-version;-utf8-1.patch &amp;&amp;
    92 ./configure --prefix=/usr --enable-vcut &amp;&amp;
     92    <para>Install <application>Vorbis Tools</application> by running the
     93    following commands:</para>
     94   
     95<screen><userinput>sed -i '/MUTE/d' ogg123/http_transport.c &amp;&amp;
     96
     97patch -Np1 -i ../vorbis-tools-&vorbistools-version;-utf8-1.patch &amp;&amp;
     98patch -Np1 -i ../vorbis-tools-&vorbistools-version;-flac-1.patch &amp;&amp;
     99
     100autoconf &amp;&amp;
     101./configure --prefix=/usr \
     102            --enable-vcut \
     103            --mandir=/usr/share/man &amp;&amp;
    93104make</userinput></screen>
    94105
     
    104115    <title>Command Explanations</title>
    105116
     117    <para><command>sed -i '/MUTE/d' ogg123/http_transport.c </command>: This
     118    command fixes a build problem with new versions of
     119    <application>cURL</application>.</para>
     120
     121    <para><command>patch -Np1 -i
     122    ../vorbis-tools-&vorbistools-version;-utf8-1.patch</command>: This patch
     123    fixes a bug in <command>vorbiscomment</command> in UTF-8 locales.</para>
     124
     125    <para><command>patch -Np1 -i
     126    ../vorbis-tools-&vorbistools-version;-flac-1.patch</command>: This patch
     127    allows <application>Vorbis-Tools</application> to link against new
     128    versions of <application>FLAC</application>.</para>
     129
     130    <para><command>autoconf</command>: This command is used to regenerate the
     131    <command>configure</command> script as the <application>FLAC</application>
     132    patch modified the <filename>configure.ac</filename> file.</para>
     133
    106134    <para><parameter>--enable-vcut</parameter>: This parameter is used so that
    107     the <command>vcut</command> program is built, as it is not by
     135    the <command>vcut</command> program is built as it is not by
    108136    default.</para>
    109137
    110   </sect2>
     138    <para><parameter>--mandir=/usr/share/man</parameter>: This parameter
     139    ensures that the man pages are installed under
     140    <filename class="directory">/usr/share/man</filename>.</para>
     141 
     142 </sect2>
    111143
    112144  <sect2 role="configuration">
Note: See TracChangeset for help on using the changeset viewer.