source: x/installing/x7app.xml@ bbe9eba0

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 bbe9eba0 was bbe9eba0, checked in by DJ Lucas <dj@…>, 14 years ago

Updated Xorg for FHS compliance. Thanks 'linux fan'.

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

  • Property mode set to 100644
File size: 21.4 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 x7apps-download-http "http://xorg.freedesktop.org/releases/individual/app/">
8 <!ENTITY x7apps-download-ftp "ftp://ftp.x.org/pub/individual/app/">
9 <!ENTITY x7apps-wget "&files-anduin;/xorg/app-&xorg7-release;.wget">
10 <!ENTITY x7apps-md5sum "&files-anduin;/xorg/app-&xorg7-release;.md5">
11 <!ENTITY x7apps-size "4.5 MB">
12 <!ENTITY x7apps-buildsize "35.6 MB">
13 <!ENTITY x7apps-time "1.2 SBU">
14
15]>
16
17<sect1 id="xorg7-app" xreflabel="Xorg Applications">
18 <?dbhtml filename="x7app.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>Xorg Applications</title>
26
27 <indexterm zone="xorg7-app">
28 <primary sortas="a-xorg7-app">Xorg-&xorg7-version; Applications</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to Xorg Applications</title>
33
34 <para>The <application>Xorg</application> applications provide the
35 expected applications available in previous X Window
36 implementations.</para>
37
38 &lfs65_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&x7apps-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&x7apps-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: <ulink url="&x7apps-md5sum;"/></para>
50 </listitem>
51 <listitem>
52 <para>Download size: &x7apps-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &x7apps-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &x7apps-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
63 <itemizedlist spacing="compact">
64 <listitem>
65 <para>Required download list: <ulink url="&x7apps-wget;"/></para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">Xorg Applications Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Required</bridgehead>
72 <para role="required"><xref linkend="xbitmaps"/>,
73 <xref linkend="libpng"/>, and <xref linkend="xorg7-lib"/></para>
74
75 <bridgehead renderas="sect4">Optional</bridgehead>
76 <para role="optional"><xref linkend="linux-pam"/> (only used by XDM) and
77 <xref linkend="mesalib"/> (required for OpenGL support).</para>
78
79 <para condition="html" role="usernotes">User Notes:
80 <ulink url='&blfs-wiki;/Xorg7Applications'/></para>
81
82 </sect2>
83
84 <sect2>
85 <title>Downloading Xorg Applications</title>
86
87 <para>To download the needed files using <application>wget</application>,
88 use the following commands:</para>
89
90<screen><userinput>mkdir app &amp;&amp;
91cd app &amp;&amp;
92grep -v '^#' ../app-&xorg7-release;.wget | wget -i- -c \
93 -B http://xorg.freedesktop.org/releases/individual/app/ &amp;&amp;
94md5sum -c ../app-&xorg7-release;.md5</userinput></screen>
95
96 </sect2>
97
98 <sect2 role="installation">
99 <title>Installation of Xorg Applications</title>
100
101 <para>Install the applications by running the following commands for each
102 package:</para>
103
104<screen><userinput>case $(basename "$PWD") in
105 twm-[0-9]* )
106 sed -e '/^rcdir =/s,^\(rcdir = \).*,\1/etc/X11/app-defaults,' \
107 -i src/Makefile.in &amp;&amp;
108 ./configure $XORG_CONFIG
109 ;;
110xinit-[0-9]* )
111 ./configure $XORG_CONFIG --with-xinitdir=/etc/X11/app-defautls
112 ;;
113 * )
114 ./configure $XORG_CONFIG
115 ;;
116esac &amp;&amp;
117make</userinput></screen>
118
119 <para>These packages do not provide test suites.</para>
120
121 <para>Now as the <systemitem class="username">root</systemitem>
122 user:</para>
123
124<screen role="root"><userinput>make install</userinput></screen>
125
126 </sect2>
127
128 <!--
129 <sect2 role="commands">
130 <title>Command Explanations</title>
131
132 </sect2>
133 -->
134
135 <sect2 role="content">
136 <title>Contents</title>
137
138 <segmentedlist>
139 <segtitle>Installed Programs</segtitle>
140 <segtitle>Installed Libraries</segtitle>
141 <segtitle>Installed Directories</segtitle>
142
143 <seglistitem>
144 <seg>appres, atobm, bdftopcf, bitmap, bmtoa, dga, iceauth, mkfontdir,
145 mkfontscale,sessreg, setxkbmap, smproxy, startx, twm, x11perf,
146 x11perfcomp, xauth, xclock, xcmsdb, xcursorgen, xdpr, xdpyinfo,
147 xdriinfo, xev, xgamma, xhost, xinit, xkbbell, xkbcomp, xkbevd,
148 xkbvleds, xkbwatch, xkill, xlsatoms, xlsclients, xmodmap, xpr, xprop,
149 xrandr, xrdb, xrefresh, xset, xsetmode, xsetroot, xvinfo, xwd,
150 xwininfo, and xwud</seg>
151 <seg>None</seg>
152 <seg><envar>$XORG_PREFIX</envar>/lib/X11/xinit and
153 <envar>$XORG_PREFIX</envar>/share/X11/{app-defaults,twm,xkb}</seg>
154 </seglistitem>
155 </segmentedlist>
156
157 <variablelist>
158 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
159 <?dbfo list-presentation="list"?>
160 <?dbhtml list-presentation="table"?>
161
162 <varlistentry id="appres-x7">
163 <term><command>appres</command></term>
164 <listitem>
165 <para>lists the X application resource database.</para>
166 <indexterm zone="xorg7-app appres-x7">
167 <primary sortas="b-appres">appres</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="atobm-x7">
173 <term><command>atobm</command></term>
174 <listitem>
175 <para>is a bitmap converter utility for the X Window System.</para>
176 <indexterm zone="xorg7-app atobm-x7">
177 <primary sortas="b-atobm">atobm</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181
182 <varlistentry id="bdftopcf-x7">
183 <term><command>bdftopcf</command></term>
184 <listitem>
185 <para>converts an X font from Bitmap Distribution Format to Portable
186 Compiled Format.</para>
187 <indexterm zone="xorg7-app bdftopcf-x7">
188 <primary sortas="b-bdftopcf">bdftopcf</primary>
189 </indexterm>
190 </listitem>
191 </varlistentry>
192
193 <varlistentry id="bitmap-x7">
194 <term><command>bitmap</command></term>
195 <listitem>
196 <para>is a bitmap editor utility for the X Window System.</para>
197 <indexterm zone="xorg7-app bitmap-x7">
198 <primary sortas="b-bitmap">bitmap</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="bmtoa-x7">
204 <term><command>bmtoa</command></term>
205 <listitem>
206 <para>is a bitmap converter utility for the X Window System.</para>
207 <indexterm zone="xorg7-app bmtoa-x7">
208 <primary sortas="b-bmtoa">bmtoa</primary>
209 </indexterm>
210 </listitem>
211 </varlistentry>
212
213 <varlistentry id="dga-x7">
214 <term><command>dga</command></term>
215 <listitem>
216 <para>is a test program for the XFree86-DGA extension.</para>
217 <indexterm zone="xorg7-app dga-x7">
218 <primary sortas="b-dga">dga</primary>
219 </indexterm>
220 </listitem>
221 </varlistentry>
222
223 <varlistentry id="iceauth-x7">
224 <term><command>iceauth</command></term>
225 <listitem>
226 <para>is the ICE authority file utility.</para>
227 <indexterm zone="xorg7-app iceauth-x7">
228 <primary sortas="b-iceauth">iceauth</primary>
229 </indexterm>
230 </listitem>
231 </varlistentry>
232
233 <varlistentry id="mkfontdir-x7">
234 <term><command>mkfontdir</command></term>
235 <listitem>
236 <para>creates an index of X font files in a directory.</para>
237 <indexterm zone="xorg7-app mkfontdir-x7">
238 <primary sortas="b-mkfontdir">mkfontdir</primary>
239 </indexterm>
240 </listitem>
241 </varlistentry>
242
243 <varlistentry id="mkfontscale-x7">
244 <term><command>mkfontscale</command></term>
245 <listitem>
246 <para>creates an index of scalable font files for X.</para>
247 <indexterm zone="xorg7-app mkfontscale-x7">
248 <primary sortas="b-mkfontscale">mkfontscale</primary>
249 </indexterm>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry id="sessreg-x7">
254 <term><command>sessreg</command></term>
255 <listitem>
256 <para>manages utmp/wtmp entries for non-init clients.</para>
257 <indexterm zone="xorg7-app sessreg-x7">
258 <primary sortas="b-sessreg">sessreg</primary>
259 </indexterm>
260 </listitem>
261 </varlistentry>
262
263 <varlistentry id="setxkbmap-x7">
264 <term><command>setxkbmap</command></term>
265 <listitem>
266 <para>sets the keyboard using the X Keyboard Extension.</para>
267 <indexterm zone="xorg7-app setxkbmap-x7">
268 <primary sortas="b-setxkbmap">setxkbmap</primary>
269 </indexterm>
270 </listitem>
271 </varlistentry>
272
273 <varlistentry id="smproxy-x7">
274 <term><command>smproxy</command></term>
275 <listitem>
276 <para>is the Session Manager Proxy.</para>
277 <indexterm zone="xorg7-app smproxy-x7">
278 <primary sortas="b-smproxy">smproxy</primary>
279 </indexterm>
280 </listitem>
281 </varlistentry>
282
283 <varlistentry id="startx-x7">
284 <term><command>startx</command></term>
285 <listitem>
286 <para>initializes an X session.</para>
287 <indexterm zone="xorg7-app startx-x7">
288 <primary sortas="b-startx">startx</primary>
289 </indexterm>
290 </listitem>
291 </varlistentry>
292
293 <varlistentry id="twm-x7">
294 <term><command>twm</command></term>
295 <listitem>
296 <para>is the Tab Window Manager for the X Window System.</para>
297 <indexterm zone="xorg7-app twm-x7">
298 <primary sortas="b-twm">twm</primary>
299 </indexterm>
300 </listitem>
301 </varlistentry>
302
303 <varlistentry id="x11perf-x7">
304 <term><command>x11perf</command></term>
305 <listitem>
306 <para>is an X11 server performance test program.</para>
307 <indexterm zone="xorg7-app x11perf-x7">
308 <primary sortas="b-x11perf">x11perf</primary>
309 </indexterm>
310 </listitem>
311 </varlistentry>
312
313 <varlistentry id="x11perfcomp-x7">
314 <term><command>x11perfcomp</command></term>
315 <listitem>
316 <para>is an X11 server performance comparison program.</para>
317 <indexterm zone="xorg7-app x11perfcomp-x7">
318 <primary sortas="b-x11perfcomp">x11perfcomp</primary>
319 </indexterm>
320 </listitem>
321 </varlistentry>
322
323 <varlistentry id="xauth-x7">
324 <term><command>xauth</command></term>
325 <listitem>
326 <para>is the X authority file utility.</para>
327 <indexterm zone="xorg7-app xauth-x7">
328 <primary sortas="b-xauth">xauth</primary>
329 </indexterm>
330 </listitem>
331 </varlistentry>
332
333 <varlistentry id="xclock-x7">
334 <term><command>xclock</command></term>
335 <listitem>
336 <para>is an analog/digital clock for X.</para>
337 <indexterm zone="xorg7-app xclock-x7">
338 <primary sortas="b-xclock">xclock</primary>
339 </indexterm>
340 </listitem>
341 </varlistentry>
342
343 <varlistentry id="xcmsdb-x7">
344 <term><command>xcmsdb</command></term>
345 <listitem>
346 <para>is the Device Color Characterization utility for the X
347 Color Management System.</para>
348 <indexterm zone="xorg7-app xcmsdb-x7">
349 <primary sortas="b-xcmsdb">xcmsdb</primary>
350 </indexterm>
351 </listitem>
352 </varlistentry>
353
354 <varlistentry id="xcursorgen-x7">
355 <term><command>xcursorgen</command></term>
356 <listitem>
357 <para>creates an X cursor file from a collection of PNG
358 images.</para>
359 <indexterm zone="xorg7-app xcursorgen-x7">
360 <primary sortas="b-xcursorgen">xcursorgen</primary>
361 </indexterm>
362 </listitem>
363 </varlistentry>
364
365 <varlistentry id="xdpr-x7">
366 <term><command>xdpr</command></term>
367 <listitem>
368 <para>dumps an X window directly to a printer.</para>
369 <indexterm zone="xorg7-app xdpr-x7">
370 <primary sortas="b-xdpr">xdpr</primary>
371 </indexterm>
372 </listitem>
373 </varlistentry>
374
375 <varlistentry id="xdpyinfo-x7">
376 <term><command>xdpyinfo</command></term>
377 <listitem>
378 <para>is a display information utility for X.</para>
379 <indexterm zone="xorg7-app xdpyinfo-x7">
380 <primary sortas="b-xdpyinfo">xdpyinfo</primary>
381 </indexterm>
382 </listitem>
383 </varlistentry>
384
385 <varlistentry id="xdriinfo-x7">
386 <term><command>xdriinfo</command></term>
387 <listitem>
388 <para>queries configuration information of DRI drivers.</para>
389 <indexterm zone="xorg7-app xdriinfo-x7">
390 <primary sortas="b-xdriinfo">xdriinfo</primary>
391 </indexterm>
392 </listitem>
393 </varlistentry>
394
395 <varlistentry id="xev-x7">
396 <term><command>xev</command></term>
397 <listitem>
398 <para>prints contents of X events.</para>
399 <indexterm zone="xorg7-app xev-x7">
400 <primary sortas="b-xev">xev</primary>
401 </indexterm>
402 </listitem>
403 </varlistentry>
404
405 <varlistentry id="xgamma-x7">
406 <term><command>xgamma</command></term>
407 <listitem>
408 <para>alters a monitor's gamma correction through the X
409 server.</para>
410 <indexterm zone="xorg7-app xgamma-x7">
411 <primary sortas="b-xgamma">xgamma</primary>
412 </indexterm>
413 </listitem>
414 </varlistentry>
415
416 <varlistentry id="xhost-x7">
417 <term><command>xhost</command></term>
418 <listitem>
419 <para>is a server access control program for X.</para>
420 <indexterm zone="xorg7-app xhost-x7">
421 <primary sortas="b-xhost">xhost</primary>
422 </indexterm>
423 </listitem>
424 </varlistentry>
425
426 <varlistentry id="xinit-x7">
427 <term><command>xinit</command></term>
428 <listitem>
429 <para>is the X Window System initializer.</para>
430 <indexterm zone="xorg7-app xinit-x7">
431 <primary sortas="b-xinit">xinit</primary>
432 </indexterm>
433 </listitem>
434 </varlistentry>
435
436 <varlistentry id="xkbbell-x7">
437 <term><command>xkbbell</command></term>
438 <listitem>
439 <para>is an XKB utility program that raises a bell event.</para>
440 <indexterm zone="xorg7-app xkbbell-x7">
441 <primary sortas="b-xkbbell">xkbbell</primary>
442 </indexterm>
443 </listitem>
444 </varlistentry>
445
446 <varlistentry id="xkbcomp-x7">
447 <term><command>xkbcomp</command></term>
448 <listitem>
449 <para>compiles an XKB keyboard description.</para>
450 <indexterm zone="xorg7-app xkbcomp-x7">
451 <primary sortas="b-xkbcomp">xkbcomp</primary>
452 </indexterm>
453 </listitem>
454 </varlistentry>
455
456 <varlistentry id="xkbevd-x7">
457 <term><command>xkbevd</command></term>
458 <listitem>
459 <para>is the XKB event daemon.</para>
460 <indexterm zone="xorg7-app xkbevd-x7">
461 <primary sortas="b-xkbevd">xkbevd</primary>
462 </indexterm>
463 </listitem>
464 </varlistentry>
465
466 <varlistentry id="xkbvleds-x7">
467 <term><command>xkbvleds</command></term>
468 <listitem>
469 <para>shows the XKB status of keyboard LEDs.</para>
470 <indexterm zone="xorg7-app xkbvleds-x7">
471 <primary sortas="b-xkbvleds">xkbvleds</primary>
472 </indexterm>
473 </listitem>
474 </varlistentry>
475
476 <varlistentry id="xkbwatch-x7">
477 <term><command>xkbwatch</command></term>
478 <listitem>
479 <para>monitors modifier keys and LEDs.</para>
480 <indexterm zone="xorg7-app xkbwatch-x7">
481 <primary sortas="b-xkbwatch">xkbwatch</primary>
482 </indexterm>
483 </listitem>
484 </varlistentry>
485
486 <varlistentry id="xkill-x7">
487 <term><command>xkill</command></term>
488 <listitem>
489 <para>kills a client by its X resource.</para>
490 <indexterm zone="xorg7-app xkill-x7">
491 <primary sortas="b-xkill">xkill</primary>
492 </indexterm>
493 </listitem>
494 </varlistentry>
495
496 <varlistentry id="xlsatoms-x7">
497 <term><command>xlsatoms</command></term>
498 <listitem>
499 <para>lists interned atoms defined on the server.</para>
500 <indexterm zone="xorg7-app xlsatoms-x7">
501 <primary sortas="b-xlsatoms">xlsatoms</primary>
502 </indexterm>
503 </listitem>
504 </varlistentry>
505
506 <varlistentry id="xlsclients-x7">
507 <term><command>xlsclients</command></term>
508 <listitem>
509 <para>lists client applications running on a display.</para>
510 <indexterm zone="xorg7-app xlsclients-x7">
511 <primary sortas="b-xlsclients">xlsclients</primary>
512 </indexterm>
513 </listitem>
514 </varlistentry>
515
516 <varlistentry id="xmodmap-x7">
517 <term><command>xmodmap</command></term>
518 <listitem>
519 <para>is a utility for modifying keymaps and pointer button
520 mappings in X.</para>
521 <indexterm zone="xorg7-app xmodmap-x7">
522 <primary sortas="b-xmodmap">xmodmap</primary>
523 </indexterm>
524 </listitem>
525 </varlistentry>
526
527 <varlistentry id="xpr-x7">
528 <term><command>xpr</command></term>
529 <listitem>
530 <para>prints an X window dump.</para>
531 <indexterm zone="xorg7-app xpr-x7">
532 <primary sortas="b-xpr">xpr</primary>
533 </indexterm>
534 </listitem>
535 </varlistentry>
536
537 <varlistentry id="xprop-x7">
538 <term><command>xprop</command></term>
539 <listitem>
540 <para>is a property displayer for X.</para>
541 <indexterm zone="xorg7-app xprop-x7">
542 <primary sortas="b-xprop">xprop</primary>
543 </indexterm>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry id="xrandr-x7">
548 <term><command>xrandr</command></term>
549 <listitem>
550 <para>is a primitive command line interface to RandR
551 extension.</para>
552 <indexterm zone="xorg7-app xrandr-x7">
553 <primary sortas="b-xrandr">xrandr</primary>
554 </indexterm>
555 </listitem>
556 </varlistentry>
557
558 <varlistentry id="xrdb-x7">
559 <term><command>xrdb</command></term>
560 <listitem>
561 <para>is the X server resource database utility.</para>
562 <indexterm zone="xorg7-app xrdb-x7">
563 <primary sortas="b-xrdb">xrdb</primary>
564 </indexterm>
565 </listitem>
566 </varlistentry>
567
568 <varlistentry id="xrefresh-x7">
569 <term><command>xrefresh</command></term>
570 <listitem>
571 <para>refreshes all or part of an X screen.</para>
572 <indexterm zone="xorg7-app xrefresh-x7">
573 <primary sortas="b-xrefresh">xrefresh</primary>
574 </indexterm>
575 </listitem>
576 </varlistentry>
577
578 <varlistentry id="xset-x7">
579 <term><command>xset</command></term>
580 <listitem>
581 <para>is the user preference utility for X.</para>
582 <indexterm zone="xorg7-app xset-x7">
583 <primary sortas="b-xset">xset</primary>
584 </indexterm>
585 </listitem>
586 </varlistentry>
587
588 <varlistentry id="xsetmode-x7">
589 <term><command>xsetmode</command></term>
590 <listitem>
591 <para>sets the mode for an X Input device.</para>
592 <indexterm zone="xorg7-app xsetmode-x7">
593 <primary sortas="b-xsetmode">xsetmode</primary>
594 </indexterm>
595 </listitem>
596 </varlistentry>
597
598 <varlistentry id="xsetroot-x7">
599 <term><command>xsetroot</command></term>
600 <listitem>
601 <para>is the root window parameter setting utility for X.</para>
602 <indexterm zone="xorg7-app xsetroot-x7">
603 <primary sortas="b-xsetroot">xsetroot</primary>
604 </indexterm>
605 </listitem>
606 </varlistentry>
607
608 <varlistentry id="xvinfo-x7">
609 <term><command>xvinfo</command></term>
610 <listitem>
611 <para>prints out X-Video extension adaptor information.</para>
612 <indexterm zone="xorg7-app xvinfo-x7">
613 <primary sortas="b-xvinfo">xvinfo</primary>
614 </indexterm>
615 </listitem>
616 </varlistentry>
617
618 <varlistentry id="xwd-x7">
619 <term><command>xwd</command></term>
620 <listitem>
621 <para>dumps an image of an X window.</para>
622 <indexterm zone="xorg7-app xwd-x7">
623 <primary sortas="b-xwd">xwd</primary>
624 </indexterm>
625 </listitem>
626 </varlistentry>
627
628 <varlistentry id="xwininfo-x7">
629 <term><command>xwininfo</command></term>
630 <listitem>
631 <para>is a window information utility for X.</para>
632 <indexterm zone="xorg7-app xwininfo-x7">
633 <primary sortas="b-xwininfo">xwininfo</primary>
634 </indexterm>
635 </listitem>
636 </varlistentry>
637
638 <varlistentry id="xwud-x7">
639 <term><command>xwud</command></term>
640 <listitem>
641 <para>is an image displayer for X.</para>
642 <indexterm zone="xorg7-app xwud-x7">
643 <primary sortas="b-xwud">xwud</primary>
644 </indexterm>
645 </listitem>
646 </varlistentry>
647
648 </variablelist>
649
650 </sect2>
651
652</sect1>
Note: See TracBrowser for help on using the repository browser.