source: kde/core/arts.xml@ 146073c

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_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 146073c was 064db32a, checked in by Larry Lawrence <larry@…>, 21 years ago

caught a few more tags

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

  • Property mode set to 100644
File size: 2.8 KB
Line 
1<sect1 id="kde-core-arts" xreflabel="arts-&arts-version;">
2<?dbhtml filename="arts.html" dir="kde"?>
3<title>aRts-&arts-version;</title>
4
5<para><screen>Download location (FTP): <ulink url="&arts-download-ftp;"/>
6Version used: &arts-version;
7Package size: &arts-download-size;
8Estimated build disk space: &arts-build-size;
9Estimated installed space: &arts-install-size;
10Estimated build time: &arts-build-time;</screen></para>
11
12<para>The Analog Real-time Synthesizer (aRts) provides sound support for KDE.
13It provides necessary libraries for kdelibs. The following package is required to install aRts:
14<screen><xref linkend="qt"/></screen></para>
15
16<para>It will use the following recommended packages, if installed:
17<screen><xref linkend="alsa"/>, <xref linkend="audiofile"/>, and <xref linkend="libvorbis"/></screen></para>
18
19<para>Before starting the build, ensure you have the
20<envar>QTDIR</envar> environment variable set
21<screen><userinput>export QTDIR=/opt/qt</userinput></screen></para>
22
23
24<para><screen><userinput>./configure --prefix=&kde-dir; --disable-debug \
25 --disable-dependency-tracking &amp;&amp;
26make &amp;&amp;
27make install &amp;&amp;
28ln -sfn &kde-dir; /opt/kde</userinput></screen></para>
29
30<note><para>Another configure option is <userinput>--enable-final</userinput>.
31This option can speed up the build process, but requires a lot of memory. If
32you have less than 256MB of RAM, this option may cause swapping and
33significantly slow compilation.</para></note>
34
35<sect2><title>aRts Installation Command explanations</title>
36<para><userinput>--prefix=&kde-dir;</userinput> : This option tells the
37process to install the package in <filename
38class="directory">&kde-dir;</filename>. We put aRts here because this
39package is required before installing KDE.</para>
40
41<para><userinput>--disable-debug</userinput> : This option causes the
42system to be compiled without debugging code.
43</para>
44
45<para><userinput>--disable-dependency-tracking</userinput> : This option speeds
46up one time builds.</para>
47
48<para><userinput>ln -sfn &kde-dir; /opt/kde</userinput> : This command creates
49a link for access to KDE. If a newer version of KDE is released, the new
50system can be built by changing the <userinput>--prefix</userinput> location
51and then set up by changing the link as this command does.
52</para>
53
54</sect2>
55
56<sect2><title>Configuring aRts</title>
57<para>The library directory <filename class="directory">/opt/kde/lib</filename>
58should appear in <filename>/etc/ld.so.conf</filename>
59so that ldd can find the shared libraries. The following command will add it
60if it is missing:
61<screen><userinput>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"</userinput>
62# Begin kde addition to /etc/ld.so.conf
63
64/opt/kde/lib
65
66# End kde addition
67<userinput>EOF
68ldconfig</userinput></screen></para>
69</sect2>
70</sect1>
Note: See TracBrowser for help on using the repository browser.