glfs/multimedia/libdriv/arts.xml
Bruce Dubbs 9905a3c983 Added openldap and fixed numereous typos
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@638 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-02-01 01:04:55 +00:00

69 lines
2.7 KiB
XML

<sect1 id="arts" xreflabel="arts-&arts-version;">
<?dbhtml filename="arts.html" dir="multimedia"?>
<title>aRts-&arts-version;</title>
<para><screen>Download location (FTP): <ulink url="&arts-download-ftp;"/>
Version used: &arts-version;
Package size: &arts-download-size;
Estimated build disk space: &arts-build-size;
Estimated installed space: &arts-install-size;
Estimated build time: &arts-build-time;</screen></para>
<para>The Analog Realtime Synthesizer (aRts) provides sound support for KDE.
It provides necessary libraries for kdelibs. The following package is required to install aRts:
<screen><xref linkend="qt"/></screen></para>
<para>It will use the following recommended packages, if installed:
<screen><xref linkend="alsa"/>, <xref linkend="audiofile"/>, and <xref linkend="libvorbis"/>.</screen></para>
<para>Before starting the build, ensure you have the QTDIR environment variable set
<screen><userinput>export QTDIR=/opt/qt</userinput></screen></para>
<para><screen><userinput>./configure --prefix=&kde-dir; --disable-debug \
--disable-dependency-tracking &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
ln -sfn &kde-dir; /opt/kde</userinput></screen></para>
<note><para>Another configure option is <userinput>--enable-final</userinput>.
This option can speed up the build process, but requires a lot of memory. If
you have less than 256MB of RAM, this option may cause swapping and
significantly slow compilation.</para></note>
<sect2><title>aRts Installation Commmand explanations</title>
<para><userinput>--prefix=&kde-dir;:</userinput> This option tells the
process to install the package in &kde-dir;. We put aRts here because this
package is required before installing KDE.</para>
<para><userinput>--disable-debug:</userinput> This option causes the
system to be compiled without debugging code.
</para>
<para><userinput>--disable-dependency-tracking:</userinput> This option speeds
up one time builds.</para>
<para><userinput>ln -sfn &kde-dir; /opt/kde:</userinput> This command creates
a link for access to KDE. If a newer version of KDE is released, the new
system can be built by changing the <userinput>--prefix</userinput> location
and then set up by changing the link as this command does.
</para>
</sect2>
<sect2><title>Configuring aRts</title>
<para>The library directory <filename class="directory">/opt/kde/lib</filename>
should appear in <filename>/etc/ld.so.conf</filename>
so that ldd can find the shared libraries. The following command will add it
if it is missing:
<screen><userinput>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"</userinput>
# Begin kde addition to /etc/ld.so.conf
/opt/kde/lib
# End kde addition
<userinput>EOF
ldconfig</userinput></screen></para>
</sect2>
</sect1>