source: archive/kde/core/arts.xml@ 3f2db3a6

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 xry111/llvm18 xry111/xf86-video-removal
Last change on this file since 3f2db3a6 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 17 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 9.1 KB
RevLine 
[60384c68]1<?xml version="1.0" encoding="ISO-8859-1"?>
[6732c094]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[60384c68]4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
[a8d5ef7]7 <!ENTITY arts-download-http "&trinity-repo-http;/arts-&trinity-version;.tar.gz">
8 <!ENTITY arts-download-ftp "&trinity-repo-ftp;/arts-&trinity-version;.tar.gz">
9 <!ENTITY arts-md5sum "109124dabb1aaa9d44eb32e43b549142">
10 <!ENTITY arts-size "920 KB">
11 <!ENTITY arts-buildsize "36 MB">
12 <!ENTITY arts-time "0.6 SBU">
[60384c68]13]>
14
[a8d5ef7]15<sect1 id="aRts" xreflabel="aRts-&trinity-version;">
[8d1fd4e1]16 <?dbhtml filename="aRts.html"?>
[b705924]17
18
[a8d5ef7]19 <title>aRts-&trinity-version;</title>
[b705924]20
21 <indexterm zone='aRts'>
22 <primary sortas='a-ARts'>aRts</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to aRts</title>
27
28 <para>The Analog Real-time Synthesizer (<application>aRts</application>)
[0d7900a]29 provides sound support for <application>Trinity</application> programs
[a8d5ef7]30 and libraries.</para>
[b705924]31
[7df66ff]32 &lfs70_checked;
33
[b705924]34 <bridgehead renderas="sect3">Package Information</bridgehead>
35 <itemizedlist spacing='compact'>
36 <listitem>
37 <para>Download (HTTP): <ulink url="&arts-download-http;"/></para>
38 </listitem>
39 <listitem>
40 <para>Download (FTP): <ulink url="&arts-download-ftp;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download MD5 sum: &arts-md5sum;</para>
44 </listitem>
45 <listitem>
46 <para>Download size: &arts-size;</para>
47 </listitem>
48 <listitem>
49 <para>Estimated disk space required: &arts-buildsize;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated build time: &arts-time;</para>
53 </listitem>
54 </itemizedlist>
55
56 <bridgehead renderas="sect3">aRts Dependencies</bridgehead>
57
58 <bridgehead renderas="sect4">Required</bridgehead>
[a8d5ef7]59 <para role="required">
60 <xref linkend="alsa"/>,
61 <xref linkend="audiofile"/>,
62 <xref linkend="cmake"/>,
63 <xref linkend="libmad"/>,
[8569196]64 <xref linkend="libvorbis"/>,
65 <xref linkend="pkgconfig"/>, and
[a8d5ef7]66 <xref linkend="qt"/>
67 </para>
[b705924]68
[a3ef34c2]69 <para condition="html" role="usernotes">User Notes:
70 <ulink url="&blfs-wiki;/arts"/></para>
71
[b705924]72 </sect2>
73
74 <sect2 role="installation">
75 <title>Installation of aRts</title>
76
[0d7900a]77 <note><para>When extracted, the <application>aRts</application> tar
78 file expands into the directory
[a8d5ef7]79 <filename class='directory'>dependencies/arts</filename>.</para></note>
80
[00c8453]81 <para>Install <application>aRts</application> by running
[b705924]82 the following commands:</para>
[60384c68]83
[a8d5ef7]84<screen><userinput>BUILD=/tmp/buildarts &amp;&amp;
85ARTS=`pwd` &amp;&amp;
86rm -rf $BUILD &amp;&amp;
87mkdir -p $BUILD &amp;&amp;
88cd $BUILD &amp;&amp;
89
90cmake $ARTS \
91 -DCMAKE_INSTALL_PREFIX=$TRINITY_PREFIX \
92 -DCMAKE_VERBOSE_MAKEFILE=ON &amp;&amp;
93
94unset ARTS BUILD &amp;&amp;
[1f30212]95make</userinput></screen>
[6275877]96
[a8d5ef7]97 <para>This package does not come with a test suite.</para>
[1b58647]98
[b705924]99 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
[9f271dd]100
[1f30212]101<screen role='root'><userinput>make install</userinput></screen>
[60384c68]102
[b705924]103 </sect2>
[60384c68]104
[b705924]105 <sect2 role="commands">
106 <title>Command Explanations</title>
[60384c68]107
[0d7900a]108 <para><userinput>ARTS=`pwd`</userinput>: This command saves the
[a8d5ef7]109 location of the <application>aRts</application> source code.</para>
[583760d]110
[a8d5ef7]111 <para><userinput>rm -rf /tmp/buildarts; mkdir -p /tmp/buildarts; cd
112 /tmp/buildarts</userinput>: The developers strongly recommend building
113 Trinity components in a directory separate from the source code. These
114 commands ensure a clean starting location for the build process.</para>
[60384c68]115
[a8d5ef7]116 <para><option>-DCMAKE_INSTALL_PREFIX=$TRINITY_PREFIX</option>: This option
117 is the equivalent of the ./configure <option>--prefix</option>
118 option.</para>
[583760d]119
[a8d5ef7]120 <para><option>-DCMAKE_VERBOSE_MAKEFILE=ON</option>: This option
121 provides verrbose messages when <userinput>make</userinput> is
122 run.</para>
[6632677]123
[b705924]124 </sect2>
[583760d]125
[b705924]126 <sect2 role="content">
127 <title>Contents</title>
[1f30212]128
[b705924]129 <segmentedlist>
130 <segtitle>Installed Programs</segtitle>
131 <segtitle>Installed Libraries</segtitle>
132 <segtitle>Installed Directories</segtitle>
[9f271dd]133
[b705924]134 <seglistitem>
[0d7900a]135 <seg>artsc-config, artscat, artsd, artsdsp, artsplay, artsrec,
[a8d5ef7]136 artsshell, artswrapper, and mcopidl </seg>
137
[b705924]138 <seg>aRts libraries</seg>
[0d7900a]139
140 <seg>The following subdirectories of $TRINITY_PREFIX: bin,
[a8d5ef7]141 include/arts, include/artsc, and lib/mcop</seg>
[b705924]142 </seglistitem>
143 </segmentedlist>
[9f271dd]144
[b705924]145 <variablelist>
146 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
147 <?dbfo list-presentation="list"?>
148 <?dbhtml list-presentation="table"?>
[9f271dd]149
[a8d5ef7]150 <varlistentry id="artsc-config">
151 <term><command>artsc-config</command></term>
152 <listitem>
153 <para>is a utility to assist developers using the
154 <application>aRts</application> C API.</para>
155 <indexterm zone="aRts artsc-config">
156 <primary sortas="b-artsc-config">artsc-config</primary>
157 </indexterm>
158 </listitem>
159 </varlistentry>
160
161 <varlistentry id="artscat">
162 <term><command>artscat</command></term>
163 <listitem>
164 <para>is a simple utility to send raw audio data to the sound server.</para>
165 <indexterm zone="aRts artscat">
166 <primary sortas="b-artscat">artscat</primary>
167 </indexterm>
168 </listitem>
169 </varlistentry>
170
[b705924]171 <varlistentry id="artsd">
172 <term><command>artsd</command></term>
173 <listitem>
174 <para>is a daemon that provides access to the sound hardware resources.</para>
175 <indexterm zone="aRts artsd">
176 <primary sortas="b-artsd">artsd</primary>
177 </indexterm>
178 </listitem>
179 </varlistentry>
[9f271dd]180
[a8d5ef7]181 <varlistentry id="artsdsp">
182 <term><command>artsdsp</command></term>
[b705924]183 <listitem>
[a8d5ef7]184 <para>provides an interim solution that allows most of legacy
185 sound applications to run unchanged.</para>
186 <indexterm zone="aRts artsdsp">
187 <primary sortas="b-artsdsp">artsdsp</primary>
[b705924]188 </indexterm>
189 </listitem>
190 </varlistentry>
[9f271dd]191
[a8d5ef7]192 <varlistentry id="libaRts">
193 <term><filename class='libraryfile'>aRts Libraries</filename></term>
[b705924]194 <listitem>
[a8d5ef7]195 <para>contains functions that support <application>aRts</application>
196 programs.</para>
197 <indexterm zone="aRts libaRts">
198 <primary sortas="c-libaRts">aRts Libraries</primary>
[b705924]199 </indexterm>
200 </listitem>
201 </varlistentry>
[9f271dd]202
[b705924]203 <varlistentry id="artsplay">
204 <term><command>artsplay</command></term>
205 <listitem>
206 <para>is a simple utility to play a sound file.</para>
207 <indexterm zone="aRts artsplay">
208 <primary sortas="b-artsplay">artsplay</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
[9f271dd]212
[a8d5ef7]213 <varlistentry id="artsrec">
214 <term><command>artsrec</command></term>
[b705924]215 <listitem>
[a8d5ef7]216 <para>is a simple utility to record audio input.</para>
217 <indexterm zone="aRts artsrec">
218 <primary sortas="b-artsrec">artsrec</primary>
[b705924]219 </indexterm>
220 </listitem>
221 </varlistentry>
[9f271dd]222
[a8d5ef7]223 <varlistentry id="artsshell">
224 <term><command>artsshell</command></term>
[b705924]225 <listitem>
[a8d5ef7]226 <para>is intended as a utility to perform miscellaneous functions
[b705924]227 related to the sound server.</para>
[a8d5ef7]228 <indexterm zone="aRts artsshell">
229 <primary sortas="b-artsshell">artsshell</primary>
[b705924]230 </indexterm>
231 </listitem>
232 </varlistentry>
[9f271dd]233
[a8d5ef7]234 <varlistentry id="artswrapper">
235 <term><command>artswrapper</command></term>
[b705924]236 <listitem>
[a8d5ef7]237 <para>is a small wrapper program which simply sets real-time priority
238 (running as <systemitem class="username">root</systemitem>)
239 and then executes <command>artsd</command> as a non-root user.</para>
240 <indexterm zone="aRts artswrapper">
241 <primary sortas="b-artswrapper">artswrapper</primary>
[b705924]242 </indexterm>
243 </listitem>
244 </varlistentry>
[9f271dd]245
[b705924]246 <varlistentry id="mcopidl">
247 <term><command>mcopidl</command></term>
248 <listitem>
[00c8453]249 <para>is the Interface Definition Language (IDL) file compiler for MCOP, the
[b705924]250 Multimedia Communication Protocol used by <application>aRts</application>.</para>
251 <indexterm zone="aRts mcopidl">
252 <primary sortas="b-mcopidl">mcopidl</primary>
253 </indexterm>
254 </listitem>
255 </varlistentry>
[9f271dd]256
[b705924]257 </variablelist>
[a8d5ef7]258<!--
[b705924]259 <para>To find out information about <application>aRts</application> and the
260 various programs included in the package, see <ulink
[c2a259b6]261 url="http://docs.kde.org/development/en/kdemultimedia/artsbuilder/">The
[b705924]262 <application>aRts</application> Handbook</ulink>. For information in languages
263 other then English, see the <ulink url="http://docs.kde.org/">KDE
264 Documentation</ulink> and navigate to the <application>aRts</application>
265 documentation in your language.</para>
[a8d5ef7]266-->
[b705924]267 </sect2>
[816fc57]268
269</sect1>
Note: See TracBrowser for help on using the repository browser.