source: kde/core/arts.xml@ 1fdbdb4

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.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 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 1fdbdb4 was 1fdbdb4, checked in by Igor Živković <igor@…>, 20 years ago

updated to kde-3.1.5

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

  • Property mode set to 100644
File size: 3.5 KB
RevLine 
[4ee53fa2]1<sect1 id="kde-core-arts" xreflabel="aRts-&arts-version;">
[816fc57]2<?dbhtml filename="arts.html" dir="kde"?>
[19e9cee]3<title>aRts-&arts-version;</title>
[816fc57]4
[cf93e2c]5<sect2><title>Introduction to <application><acronym>aRts</acronym></application></title>
[816fc57]6
[cf93e2c]7<para>The Analog Real-time Synthesizer (<acronym>aRts</acronym>)
8provides sound support for <acronym>KDE</acronym>. It provides necessary
9libraries for kdelibs.</para>
10
11<sect3><title>Package information</title>
12<itemizedlist spacing='compact'>
13<listitem><para>Download (HTTP): <ulink url="&arts-download-http;"/></para></listitem>
14<listitem><para>Download (FTP): <ulink url="&arts-download-ftp;"/></para></listitem>
15<listitem><para>Download size: &arts-size;</para></listitem>
16<listitem><para>Estimated Disk space required: &arts-buildsize;</para></listitem>
17<listitem><para>Estimated build time: &arts-time;</para></listitem></itemizedlist>
18</sect3>
19
20<sect3><title><application>aRts</application> dependencies</title>
21<sect4><title>Required</title>
22<para><xref linkend="qt"/></para></sect4>
23<sect4><title>Optional</title>
[1fdbdb4]24<para><xref linkend="alsa"/>, <xref linkend="audiofile"/>, <xref
25linkend="libvorbis"/>, <xref linkend="pkgconfig"/>, <xref
[cf93e2c]26linkend="GLib2"/> and <xref linkend="libmad"/></para></sect4>
27</sect3>
28
29</sect2>
30
31<sect2>
32<title>Installation of <application>aRts</application></title>
33
34<para>Before starting the build, ensure you have the
35<envar>QTDIR</envar> environment variable set:</para>
36<screen><userinput><command>export QTDIR=/opt/qt</command></userinput></screen>
37
38<para>Install <application>aRts</application> by running the
39following commands:</para>
40
41<screen><userinput><command>./configure --prefix=&kde-dir; --disable-debug \
[1fdbdb4]42 --disable-dependency-tracking &amp;&amp;
[cf93e2c]43make &amp;&amp;
44make install &amp;&amp;
45ln -sfn &kde-dir; /opt/kde</command></userinput></screen>
46
[1fdbdb4]47<note><para>Another configure option is <parameter>--enable-final</parameter>.
[cf93e2c]48This option can speed up the build process, but requires a lot of memory. If
49you have less than 256MB of RAM, this option may cause swapping and
50significantly slow compilation.</para></note>
51
52</sect2>
53
54<sect2><title>Command explanations</title>
[1fdbdb4]55<para><parameter>--prefix=&kde-dir;</parameter> : This option tells the
[cf93e2c]56process to install the package in <filename
57class="directory">&kde-dir;</filename>. We put aRts here because this
58package is required before installing <acronym>KDE</acronym>.</para>
59
[1fdbdb4]60<para><parameter>--disable-debug</parameter> : This option causes the
[cf93e2c]61system to be compiled without debugging code.
62</para>
63
[1fdbdb4]64<para><parameter>--disable-dependency-tracking</parameter> : This option speeds
[cf93e2c]65up one time builds.</para>
66
[1fdbdb4]67<para><command>ln -sfn &kde-dir; /opt/kde</command> : This parameter creates
[cf93e2c]68a link for access to <acronym>KDE</acronym>. If a newer version of
69<acronym>KDE</acronym> is released, the new
[1fdbdb4]70system can be built by changing the <parameter>--prefix</parameter> location
71and then set up by changing the link as this parameter does.
[cf93e2c]72</para>
73
74</sect2>
75
76<sect2><title>Configuring aRts</title>
77
78<sect3><title>Configuration Information</title>
79
80<para>The library directory <filename class="directory">/opt/kde/lib</filename>
81should appear in <filename>/etc/ld.so.conf</filename>
82so that ldd can find the shared libraries. The following command will add it
83if it is missing:</para>
84
85<screen><userinput><command>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
86# Begin kde addition to /etc/ld.so.conf
87
88/opt/kde/lib
89
90# End kde addition
91EOF
92ldconfig</command></userinput></screen>
93
94</sect3>
95
96</sect2>
[816fc57]97</sect1>
Note: See TracBrowser for help on using the repository browser.