source: x/installing/x7app.xml@ 121d292

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 121d292 was 121d292, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Tag files for LFS71.
Revert libdrm to 2.4.33.

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

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