source: kde/core/tqtinterface.xml@ d4eee5e0

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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
Last change on this file since d4eee5e0 was 3fea4ca, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Update to kdeadmin-3.5.13.
Tweaks in kde core instructions.

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

  • Property mode set to 100644
File size: 9.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY tqtinterface-download-http "&trinity-repo-http;/tqtinterface-&trinity-version;.tar.gz">
8 <!ENTITY tqtinterface-download-ftp "&trinity-repo-ftp;/tqtinterface-&trinity-version;.tar.gz">
9 <!ENTITY tqtinterface-md5sum "d54cc9fd0b35555298efd17c32471a2b">
10 <!ENTITY tqtinterface-size "1 MB">
11 <!ENTITY tqtinterface-buildsize "10 MB">
12 <!ENTITY tqtinterface-time "0.6 SBU">
13]>
14
15<sect1 id="tqtinterface" xreflabel="tqtinterface-&trinity-version;">
16 <?dbhtml filename="tqtinterface.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy: dj $</othername>
20 <date>$Date: 2011-03-07 22:45:56 -0600 (Mon, 07 Mar 2011) $</date>
21 </sect1info>
22
23 <title>tqtinterface-&trinity-version;</title>
24
25 <indexterm zone='tqtinterface'>
26 <primary sortas='a-tqtinterface'>tqtinterface</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to tqtinterface</title>
31
32 <para>The <application>tqtinterface</application> package includes
33 libraries that abstract the underlying Qt system from the actual Trinity
34 code, allowing easy, complete upgrades to new versions of Qt. </para>
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing='compact'>
38 <listitem>
39 <para>Download (HTTP): <ulink url="&tqtinterface-download-http;"/></para>
40 </listitem>
41 <listitem>
42 <para>Download (FTP): <ulink url="&tqtinterface-download-ftp;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download MD5 sum: &tqtinterface-md5sum;</para>
46 </listitem>
47 <listitem>
48 <para>Download size: &tqtinterface-size;</para>
49 </listitem>
50 <listitem>
51 <para>Estimated disk space required: &tqtinterface-buildsize;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated build time: &tqtinterface-time;</para>
55 </listitem>
56 </itemizedlist>
57
58 <bridgehead renderas="sect3">tqtinterface Dependencies</bridgehead>
59
60 <bridgehead renderas="sect4">Required</bridgehead>
61 <para role="required">
62 <xref linkend="qt"/>
63 </para>
64
65 <para condition="html" role="usernotes">User Notes:
66 <ulink url="&blfs-wiki;/tqtinterface"/></para>
67
68 </sect2>
69
70 <sect2 role="installation">
71 <title>Installation of tqtinterface</title>
72
73 <note><para>When extracted, the <application>tqtinterfac</application> tar
74 file expands into the directory <filename
75 class='directory'>dependencies/tqtinterface</filename>.</para></note>
76
77 <para>Install <application>tqtinterface</application> by running
78 the following commands:</para>
79
80<screen><userinput>sed -i -e '/PKG/s@/usr@${EXEC_INSTALL_PREFIX}@' CMakeLists.txt &amp;&amp;
81BUILD=/tmp/tqt &amp;&amp;
82TQT=`pwd` &amp;&amp;
83rm -rf $BUILD &amp;&amp;
84mkdir -p $BUILD &amp;&amp;
85cd $BUILD &amp;&amp;
86
87cmake $TQT \
88 -DCMAKE_INSTALL_PREFIX=$TRINITY_PREFIX \
89 -DCMAKE_VERBOSE_MAKEFILE=ON \
90 -DQT_VERSION=3 &amp;&amp;
91
92unset TQT BUILD &amp;&amp;
93make</userinput></screen>
94
95 <para>This package does not come with a test suite.</para>
96
97 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
98
99<screen role='root'><userinput>make install</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="commands">
104 <title>Command Explanations</title>
105
106 <para><userinput>sed ... CMakeLists.txt</userinput>: This command changes
107 the location of <filename>tqt.pc</filename> to the $TRINITY_PREFIX
108 directory hierarchy.</para>
109
110 <para><userinput>TQT=`pwd`</userinput>: This command saves the
111 location of the source code.</para>
112
113 <para><userinput>rm -rf $BUIL; mkdir -p $BUILD; cd $BUILD</userinput>: The
114 developers strongly recommend building Trinity components in a directory
115 separate from the source code. These commands ensure a clean starting
116 location for the build process.</para>
117
118 <para><option>-QT_VERSION=3</option>: This option is required for this
119 package.</para>
120
121 </sect2>
122
123 <sect2 role="content">
124 <title>Contents</title>
125
126 <segmentedlist>
127 <segtitle>Installed Programs</segtitle>
128 <segtitle>Installed Libraries</segtitle>
129 <segtitle>Installed Directories</segtitle>
130
131 <seglistitem>
132 <seg>convert_qt_tqt1,
133 convert_qt_tqt2,
134 convert_qt_tqt3,
135 dcopidl-tqt,
136 dcopidl2cpp-tqt,
137 dcopidlng-tqt,
138 mcopidl-tqt,
139 moc-tqt,
140 tmoc,
141 tqt-replace,
142 tqt-replace-stream,
143 uic-tqt
144 </seg>
145
146 <seg>libtqassistantclient.so and libtqt.so</seg>
147
148 <seg>$TRINITY_PREFIX/include/tqt</seg>
149 </seglistitem>
150 </segmentedlist>
151
152<!--
153 TODO
154 <variablelist>
155 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
156 <?dbfo list-presentation="list"?>
157 <?dbhtml list-presentation="table"?>
158
159 <varlistentry id="tqtinterfacec-config">
160 <term><command>tqtinterfacec-config</command></term>
161 <listitem>
162 <para>is a utility to assist developers using the
163 <application>aRts</application> C API.</para>
164 <indexterm zone="aRts tqtinterfacec-config">
165 <primary sortas="b-tqtinterfacec-config">tqtinterfacec-config</primary>
166 </indexterm>
167 </listitem>
168 </varlistentry>
169
170 <varlistentry id="tqtinterfacecat">
171 <term><command>tqtinterfacecat</command></term>
172 <listitem>
173 <para>is a simple utility to send raw audio data to the sound server.</para>
174 <indexterm zone="aRts tqtinterfacecat">
175 <primary sortas="b-tqtinterfacecat">tqtinterfacecat</primary>
176 </indexterm>
177 </listitem>
178 </varlistentry>
179
180 <varlistentry id="tqtinterfaced">
181 <term><command>tqtinterfaced</command></term>
182 <listitem>
183 <para>is a daemon that provides access to the sound hardware resources.</para>
184 <indexterm zone="aRts tqtinterfaced">
185 <primary sortas="b-tqtinterfaced">tqtinterfaced</primary>
186 </indexterm>
187 </listitem>
188 </varlistentry>
189
190 <varlistentry id="tqtinterfacedsp">
191 <term><command>tqtinterfacedsp</command></term>
192 <listitem>
193 <para>provides an interim solution that allows most of legacy
194 sound applications to run unchanged.</para>
195 <indexterm zone="aRts tqtinterfacedsp">
196 <primary sortas="b-tqtinterfacedsp">tqtinterfacedsp</primary>
197 </indexterm>
198 </listitem>
199 </varlistentry>
200
201 <varlistentry id="libaRts">
202 <term><filename class='libraryfile'>aRts Libraries</filename></term>
203 <listitem>
204 <para>contains functions that support <application>aRts</application>
205 programs.</para>
206 <indexterm zone="aRts libaRts">
207 <primary sortas="c-libaRts">aRts Libraries</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 <varlistentry id="tqtinterfaceplay">
213 <term><command>tqtinterfaceplay</command></term>
214 <listitem>
215 <para>is a simple utility to play a sound file.</para>
216 <indexterm zone="aRts tqtinterfaceplay">
217 <primary sortas="b-tqtinterfaceplay">tqtinterfaceplay</primary>
218 </indexterm>
219 </listitem>
220 </varlistentry>
221
222 <varlistentry id="tqtinterfacerec">
223 <term><command>tqtinterfacerec</command></term>
224 <listitem>
225 <para>is a simple utility to record audio input.</para>
226 <indexterm zone="aRts tqtinterfacerec">
227 <primary sortas="b-tqtinterfacerec">tqtinterfacerec</primary>
228 </indexterm>
229 </listitem>
230 </varlistentry>
231
232 <varlistentry id="tqtinterfaceshell">
233 <term><command>tqtinterfaceshell</command></term>
234 <listitem>
235 <para>is intended as a utility to perform miscellaneous functions
236 related to the sound server.</para>
237 <indexterm zone="aRts tqtinterfaceshell">
238 <primary sortas="b-tqtinterfaceshell">tqtinterfaceshell</primary>
239 </indexterm>
240 </listitem>
241 </varlistentry>
242
243 <varlistentry id="tqtinterfacewrapper">
244 <term><command>tqtinterfacewrapper</command></term>
245 <listitem>
246 <para>is a small wrapper program which simply sets real-time priority
247 (running as <systemitem class="username">root</systemitem>)
248 and then executes <command>tqtinterfaced</command> as a non-root user.</para>
249 <indexterm zone="aRts tqtinterfacewrapper">
250 <primary sortas="b-tqtinterfacewrapper">tqtinterfacewrapper</primary>
251 </indexterm>
252 </listitem>
253 </varlistentry>
254
255 <varlistentry id="mcopidl">
256 <term><command>mcopidl</command></term>
257 <listitem>
258 <para>is the Interface Definition Language (IDL) file compiler for MCOP, the
259 Multimedia Communication Protocol used by <application>aRts</application>.</para>
260 <indexterm zone="aRts mcopidl">
261 <primary sortas="b-mcopidl">mcopidl</primary>
262 </indexterm>
263 </listitem>
264 </varlistentry>
265
266 </variablelist>
267 -->
268 </sect2>
269
270</sect1>
Note: See TracBrowser for help on using the repository browser.