Changeset ea16306


Ignore:
Timestamp:
07/19/2012 01:08:12 PM (12 years ago)
Author:
Krejzi <krejzi@…>
Branches:
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
Children:
355495ce
Parents:
c07080d
Message:

PCRE 8.31

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rc07080d rea16306  
    233233<!ENTITY nspr-version                 "4.9.1">
    234234<!ENTITY openobex-version             "1.6">
    235 <!ENTITY pcre-version                 "8.30">
     235<!ENTITY pcre-version                 "8.31">
    236236<!ENTITY popt-version                 "1.16">
    237237<!ENTITY pth-version                  "2.0.7">
  • general/genlib/pcre.xml

    rc07080d rea16306  
    55  %general-entities;
    66
    7   <!ENTITY pcre-download-http
    8   "&sourceforge-repo;/pcre/pcre-&pcre-version;.tar.bz2">
    9   <!ENTITY pcre-download-ftp
    10   "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-&pcre-version;.tar.bz2">
    11   <!ENTITY pcre-md5sum        "98e8928cccc945d04279581e778fbdff">
     7  <!ENTITY pcre-download-http " ">
     8  <!ENTITY pcre-download-ftp  "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-&pcre-version;.tar.bz2">
     9  <!ENTITY pcre-md5sum        "1c9a276af932b5599157f96e945391f0">
    1210  <!ENTITY pcre-size          "1.2 MB">
    1311  <!ENTITY pcre-buildsize     "13 MB">
     
    3230    <title>Introduction to PCRE</title>
    3331
    34     <para>The <application>PCRE</application> package contains
    35     <application>Perl</application> Compatible Regular Expression
    36     libraries. These are useful for implementing regular expression pattern
    37     matching using the same syntax and semantics as
    38     <application>Perl</application> 5.</para>
     32    <para>
     33      The <application>PCRE</application> package contains
     34      <application>Perl</application> Compatible Regular Expression
     35      libraries. These are useful for implementing regular expression
     36      pattern matching using the same syntax and semantics as
     37      <application>Perl</application> 5.
     38    </para>
    3939
    4040    &lfs71_checked;
     
    4242    <bridgehead renderas="sect3">Package Information</bridgehead>
    4343    <itemizedlist spacing="compact">
    44       <!-- 8.30 isn't on sourceforge yet
    45       <listitem>
    46         <para>Download (HTTP): <ulink url="&pcre-download-http;"/></para>
    47       </listitem> -->
    48       <listitem>
    49         <para>Download (FTP): <ulink url="&pcre-download-ftp;"/></para>
    50       </listitem>
    51       <listitem>
    52         <para>Download MD5 sum: &pcre-md5sum;</para>
    53       </listitem>
    54       <listitem>
    55         <para>Download size: &pcre-size;</para>
    56       </listitem>
    57       <listitem>
    58         <para>Estimated disk space required: &pcre-buildsize;</para>
    59       </listitem>
    60       <listitem>
    61         <para>Estimated build time: &pcre-time;</para>
     44      <listitem>
     45        <para>
     46          Download (HTTP): <ulink url="&pcre-download-http;"/>
     47        </para>
     48      </listitem>
     49      <listitem>
     50        <para>
     51          Download (FTP): <ulink url="&pcre-download-ftp;"/>
     52        </para>
     53      </listitem>
     54      <listitem>
     55        <para>
     56          Download MD5 sum: &pcre-md5sum;
     57        </para>
     58      </listitem>
     59      <listitem>
     60        <para>
     61          Download size: &pcre-size;
     62        </para>
     63      </listitem>
     64      <listitem>
     65        <para>
     66          Estimated disk space required: &pcre-buildsize;
     67        </para>
     68      </listitem>
     69      <listitem>
     70        <para>
     71          Estimated build time: &pcre-time;
     72        </para>
    6273      </listitem>
    6374    </itemizedlist>
    6475
    6576    <para condition="html" role="usernotes">User Notes:
    66     <ulink url="&blfs-wiki;/pcre"/></para>
     77      <ulink url="&blfs-wiki;/pcre"/>
     78    </para>
    6779  </sect2>
    6880
     
    7082    <title>Installation of PCRE</title>
    7183
    72     <para>Install <application>PCRE</application> by running
    73     the following commands:</para>
    74 
    75 <screen><userinput>./configure --prefix=/usr --disable-static --libdir=/lib \
    76   --docdir=/usr/share/doc/pcre-&pcre-version; --enable-utf8 --enable-unicode-properties \
    77   --enable-pcregrep-libz --enable-pcregrep-libbz2 &amp;&amp;
     84    <para>
     85      Install <application>PCRE</application> by running
     86      the following commands:
     87    </para>
     88
     89<screen><userinput>./configure --prefix=/usr \
     90            --docdir=/usr/share/doc/pcre-&pcre-version; \
     91            --enable-utf \
     92            --enable-unicode-properties \
     93            --enable-pcregrep-libz \
     94            --enable-pcregrep-libbz2 \
     95            --disable-static &amp;&amp;
    7896make</userinput></screen>
    7997
    80     <para>To test the results, issue: <command>make check</command>.</para>
    81 
    82     <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     98    <para>
     99      To test the results, issue: <command>make check</command>.
     100    </para>
     101
     102    <para>
     103      Now, as the <systemitem class="username">root</systemitem> user:
     104    </para>
    83105
    84106<screen role="root"><userinput>make install &amp;&amp;
    85 mv /lib/pkgconfig/libpcre*.pc /usr/lib/pkgconfig</userinput></screen>
     107mv -v /usr/lib/libpcre.so.* /lib &amp;&amp;
     108ln -sfv ../../lib/libpcre.so.1.0.1 /usr/lib/libpcre.so</userinput></screen>
    86109
    87110  </sect2>
     
    90113    <title>Command Explanations</title>
    91114
    92     <para><option>--disable-static</option>: This switch prevents the static
    93     libraries being installed.</para>
    94 
    95     <para><option>--libdir=/lib</option>: This option makes it install its
    96     libraries into /lib. If you reinstall <application>Grep</application> after
    97     installing <application>PCRE</application>, <application>Grep</application>
    98     will get linked against <application>PCRE</application> and this may cause
    99     problems during the boot process if
    100     <filename class="directory">/usr</filename> is a separate mount
    101     point. If you have <filename class="directory">/usr/lib</filename> on the
    102     same partition as <filename class="directory">/lib</filename> you can omit
    103     this option</para>
    104 
    105     <para><parameter>--enable-utf8</parameter>: This switch includes the code for
    106     handling UTF-8 character strings in the library.</para>
    107 
    108     <para><parameter>--enable-unicode-properties</parameter>: This switch
    109     enables Unicode properties support. Note: You need this switch if you are
    110     going to build <xref linkend="glib2"/> with the
    111     <parameter>--with-pcre=system</parameter> switch.</para>
    112 
    113     <para><parameter>--enable-pcregrep-libz</parameter>: This switch adds
    114     support to <command>pcregrep</command> to read
    115     <filename class="extension">.gz</filename> compressed files.</para>
    116 
    117     <para><parameter>--enable-pcregrep-libbz2</parameter>: This switch adds
    118     support to <command>pcregrep</command> to read
    119     <filename class="extension">.bz2</filename> compressed files.</para>
     115    <para>
     116      <option>--enable-utf</option>: This switch includes the code for
     117      handling UTF-8 character strings in the library.
     118    </para>
     119
     120    <para>
     121      <option>--enable-unicode-properties</option>: This switch enables
     122      Unicode properties support. Note: You need this switch if you are
     123      going to build <xref linkend="glib2"/> with the
     124      <parameter>--with-pcre=system</parameter> switch.
     125    </para>
     126
     127    <para>
     128      <option>--enable-pcregrep-libz</option>: This switch adds
     129      support to <command>pcregrep</command> to read
     130      <filename class="extension">.gz</filename> compressed files.
     131    </para>
     132
     133    <para>
     134      <option>--enable-pcregrep-libbz2</option>: This switch adds
     135      support to <command>pcregrep</command> to read
     136      <filename class="extension">.bz2</filename> compressed files.
     137    </para>
     138
     139    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     140      href="../../xincludes/static-libraries.xml"/>
     141
     142    <para>
     143      <command>mv -v /usr/lib/libpcre.so.* /lib</command>: Moves
     144      <application>PCRE</application> library on the root filesystem
     145      so that it is available in case <command>grep</command>
     146      gets reinstalled with <application>PCRE</application> support.
     147    </para>
     148
    120149  </sect2>
    121150
     
    129158
    130159      <seglistitem>
    131         <seg>pcregrep, pcretest, and pcre-config</seg>
    132         <seg>libpcre.so, libpcrecpp.so and libpcreposix.so</seg>
    133         <seg>/usr/share/doc/pcre-&pcre-version;</seg>
     160        <seg>
     161          pcregrep, pcretest and pcre-config
     162        </seg>
     163        <seg>
     164          libpcre.so, libpcrecpp.so and libpcreposix.so
     165        </seg>
     166        <seg>
     167          /usr/share/doc/pcre-&pcre-version;
     168        </seg>
    134169      </seglistitem>
    135170    </segmentedlist>
     
    143178        <term><command>pcregrep</command></term>
    144179        <listitem>
    145           <para>is a <command>grep</command> that understands
    146           <application>Perl</application> compatible regular expressions.</para>
     180          <para>
     181            is a <command>grep</command> that understands
     182            <application>Perl</application> compatible regular expressions.
     183          </para>
    147184          <indexterm zone="pcre pcregrep">
    148185            <primary sortas="b-pcregrep">pcregrep</primary>
     
    154191        <term><command>pcretest</command></term>
    155192        <listitem>
    156           <para>can test a <application>Perl</application> compatible
    157           regular expression.</para>
     193          <para>
     194            can test a <application>Perl</application> compatible
     195            regular expression.
     196          </para>
    158197          <indexterm zone="pcre pcretest">
    159198            <primary sortas="b-pcretest">pcretest</primary>
     
    165204        <term><command>pcre-config</command></term>
    166205        <listitem>
    167           <para>is used during the compile process of programs linking to
    168           the <application>PCRE</application> libraries.</para>
     206          <para>
     207            is used during the compile process of programs linking to
     208            the <application>PCRE</application> libraries.
     209          </para>
    169210          <indexterm zone="pcre pcre-config">
    170211            <primary sortas="b-pcre-config">pcre-config</primary>
     
    172213        </listitem>
    173214      </varlistentry>
     215
    174216    </variablelist>
    175   </sect2>
     217
     218  </sect2>
     219
    176220</sect1>
  • introduction/welcome/changelog.xml

    rc07080d rea16306  
    4343-->
    4444    <listitem>
     45      <para>July 19th, 2012</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[krejzi] - PCRE 8.31.</para>
     49        </listitem>
     50      </itemizedlist>
     51    </listitem>
     52
     53    <listitem>
    4554      <para>July 18th, 2012</para>
    4655      <itemizedlist>
  • x/installing/x7app.xml

    rc07080d rea16306  
    55  %general-entities;
    66
    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.8 MB">
    12   <!ENTITY x7apps-buildsize     "39.2 MB">
     7  <!ENTITY x7apps-download-http "&xorg-download-http;/app/">
     8  <!ENTITY x7apps-download-ftp  "&xorg-download-ftp;/app/">
     9  <!ENTITY x7apps-size          "4.5 MB">
     10  <!ENTITY x7apps-buildsize     "41 MB">
    1311  <!ENTITY x7apps-time          "1.5 SBU">
     12
     13  <!ENTITY bdftopcf-version "1.0.3">
     14  <!ENTITY bdftopcf-md5sum "4a7a4a848c43c42f7d499b60666434a4">
     15
     16  <!ENTITY iceauth-version "1.0.5">
     17  <!ENTITY iceauth-md5sum "08e3f6b523da8b0af179f22f339508b2">
     18
     19  <!ENTITY luit-version "1.1.1">
     20  <!ENTITY luit-md5sum "c4a3664e08e5a47c120ff9263ee2f20c">
     21
     22  <!ENTITY mkfontdir-version "1.0.7">
     23  <!ENTITY mkfontdir-md5sum "18c429148c96c2079edda922a2b67632">
     24
     25  <!ENTITY mkfontscale-version "1.1.0">
     26  <!ENTITY mkfontscale-md5sum "414fcb053418fb1418e3a39f4a37e0f7">
     27
     28  <!ENTITY sessreg-version "1.0.7">
     29  <!ENTITY sessreg-md5sum "e99172cbd72700eeeae99f64632b5dc2">
     30
     31  <!ENTITY setxkbmap-version "1.3.0">
     32  <!ENTITY setxkbmap-md5sum "1001771344608e120e943a396317c33a">
     33
     34  <!ENTITY smproxy-version "1.0.5">
     35  <!ENTITY smproxy-md5sum "edce41bd7562dcdfb813e05dbeede8ac">
     36
     37  <!ENTITY x11perf-version "1.5.4">
     38  <!ENTITY x11perf-md5sum "5c3c7431a38775caaea6051312a49bc9">
     39
     40  <!ENTITY xauth-version "1.0.7">
     41  <!ENTITY xauth-md5sum "cbcbd8f2156a53b609800bec4c6b6c0e">
     42
     43  <!ENTITY xbacklight-version "1.1.2">
     44  <!ENTITY xbacklight-md5sum "c9891d6a3f3129d56cede72daa0ba26c">
     45
     46  <!ENTITY xcmsdb-version "1.0.4">
     47  <!ENTITY xcmsdb-md5sum "5812be48cbbec1068e7b718eec801766">
     48
     49  <!ENTITY xcursorgen-version "1.0.5">
     50  <!ENTITY xcursorgen-md5sum "09f56978a62854534deacc8aa8ff3031">
     51
     52  <!ENTITY xdpyinfo-version "1.3.0">
     53  <!ENTITY xdpyinfo-md5sum "1ef08f4c8d0e669c2edd49e4a1bf650d">
     54
     55  <!ENTITY xdriinfo-version "1.0.4">
     56  <!ENTITY xdriinfo-md5sum "3d3cad4d754e10e325438193433d59fd">
     57
     58  <!ENTITY xev-version "1.2.0">
     59  <!ENTITY xev-md5sum "2727c72f3eba0c23f8f6b2e618d195a2">
     60
     61  <!ENTITY xgamma-version "1.0.5">
     62  <!ENTITY xgamma-md5sum "c06067f572bc4a5298f324f27340da95">
     63
     64  <!ENTITY xhost-version "1.0.5">
     65  <!ENTITY xhost-md5sum "a0fcd2cb6ddd9f378944cc6f4f83cd7c">
     66
     67  <!ENTITY xkbcomp-version "1.2.4">
     68  <!ENTITY xkbcomp-md5sum "a0fc1ac3fc4fe479ade09674347c5aa0">
     69
     70  <!ENTITY xkbevd-version "1.1.3">
     71  <!ENTITY xkbevd-md5sum "37ed71525c63a9acd42e7cde211dcc5b">
     72
     73  <!ENTITY xkbutils-version "1.0.3">
     74  <!ENTITY xkbutils-md5sum "52ad6d8d87577a8ac736ab5488bec210">
     75
     76  <!ENTITY xkill-version "1.0.3">
     77  <!ENTITY xkill-md5sum "e7f0d57b6ba49c384e9cf8c9ff3243c1">
     78
     79  <!ENTITY xlsatoms-version "1.1.1">
     80  <!ENTITY xlsatoms-md5sum "9d0e16d116d1c89e6b668c1b2672eb57">
     81
     82  <!ENTITY xlsclients-version "1.1.2">
     83  <!ENTITY xlsclients-md5sum "760099f0af112401735801e3b9aa8595">
     84
     85  <!ENTITY xmodmap-version "1.0.7">
     86  <!ENTITY xmodmap-md5sum "d9b65f6881afe0d6d9863b30e1081bde">
     87
     88  <!ENTITY xpr-version "1.0.4">
     89  <!ENTITY xpr-md5sum "6101f04731ffd40803df80eca274ec4b">
     90
     91  <!ENTITY xprop-version "1.2.1">
     92  <!ENTITY xprop-md5sum "d5529dc8d811efabd136ca2d8e857deb">
     93
     94  <!ENTITY xrandr-version "1.3.5">
     95  <!ENTITY xrandr-md5sum "9735173a84dca9b05e06fd4686196b07">
     96
     97  <!ENTITY xrdb-version "1.0.9">
     98  <!ENTITY xrdb-md5sum "ed2e48cf33584455d74615ad4bbe4246">
     99
     100  <!ENTITY xrefresh-version "1.0.4">
     101  <!ENTITY xrefresh-md5sum "2f63f88ad0dcecd33c8cf000f38e9250">
     102
     103  <!ENTITY xset-version "1.2.2">
     104  <!ENTITY xset-md5sum "d44e0057d6722b25d5a314e82e0b7e7c">
     105
     106  <!ENTITY xsetroot-version "1.1.0">
     107  <!ENTITY xsetroot-md5sum "b78a2da4cf128775031a5a3422fc0b78">
     108
     109  <!ENTITY xvinfo-version "1.1.1">
     110  <!ENTITY xvinfo-md5sum "c88feb501083951a8f47a21aaeb1529d">
     111
     112  <!ENTITY xwd-version "1.0.5">
     113  <!ENTITY xwd-md5sum "2113126f9ac9c02bb8547c112c5d037e">
     114
     115  <!ENTITY xwininfo-version "1.1.2">
     116  <!ENTITY xwininfo-md5sum "9e8b58c8aa6172e87ab4f9cf3612fedd">
     117
     118  <!ENTITY xwud-version "1.0.4">
     119  <!ENTITY xwud-md5sum "3025b152b4f13fdffd0c46d0be587be6">
    14120
    15121]>
     
    26132
    27133  <indexterm zone="xorg7-app">
    28     <primary sortas="a-xorg7-app">Xorg-&xorg7-version; Applications</primary>
     134    <primary sortas="a-xorg7-app">Xorg Applications</primary>
    29135  </indexterm>
    30136
     
    32138    <title>Introduction to Xorg Applications</title>
    33139
    34     <para>The <application>Xorg</application> applications provide the
    35     expected applications available in previous X Window
    36     implementations.</para>
     140    <para>
     141      The <application>Xorg</application> Applications provide the
     142      standard applications needed for X Window System. These
     143      include various X Server Utilities, Font Utilities and
     144      Statistical Tools used through the rest of Xorg chapter and
     145      in the final system.
     146    </para>
    37147
    38148    &lfs71_checked;
     
    41151    <itemizedlist spacing="compact">
    42152      <listitem>
    43         <para>Download (HTTP): <ulink url="&x7apps-download-http;"/></para>
     153        <para>
     154          Download (HTTP): <ulink url="&x7apps-download-http;"/>
     155        </para>
    44156      </listitem>
    45157      <listitem>
    46         <para>Download (FTP): <ulink url="&x7apps-download-ftp;"/></para>
     158        <para>
     159          Download (FTP): <ulink url="&x7apps-download-ftp;"/>
     160        </para>
    47161      </listitem>
    48162      <listitem>
    49         <para>Download MD5 sum: <ulink url="&x7apps-md5sum;"/></para>
     163        <para>
     164          Download size: &x7apps-size;
     165        </para>
    50166      </listitem>
    51167      <listitem>
    52         <para>Download size: &x7apps-size;</para>
     168        <para>
     169          Estimated disk space required: &x7apps-buildsize;
     170        </para>
    53171      </listitem>
    54172      <listitem>
    55         <para>Estimated disk space required: &x7apps-buildsize;</para>
    56       </listitem>
    57       <listitem>
    58         <para>Estimated build time: &x7apps-time;</para>
     173        <para>
     174          Estimated build time: &x7apps-time;
     175        </para>
    59176      </listitem>
    60177    </itemizedlist>
    61178
    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 
    69179    <bridgehead renderas="sect3">Xorg Applications Dependencies</bridgehead>
    70180
    71181    <bridgehead renderas="sect4">Required</bridgehead>
    72     <para role="required"><xref linkend="libpng"/>,
    73     <xref linkend="mesalib"/> (required for OpenGL support),
    74     <xref linkend="xbitmaps"/>,
    75     <xref linkend="xcb-util"/>, and
    76     <xref linkend="xorg7-lib"/></para>
    77 
    78     <bridgehead renderas="sect4">Optional</bridgehead>
    79     <para role="optional"><xref linkend="linux-pam"/></para>
     182    <para role="required">
     183      <xref linkend="libpng"/>,
     184      <xref linkend="mesalib"/>,
     185      <xref linkend="xbitmaps"/> and
     186      <xref linkend="xorg7-lib"/>
     187    </para>
    80188
    81189    <para condition="html" role="usernotes">User Notes:
    82     <ulink url='&blfs-wiki;/Xorg7Applications'/></para>
    83 
     190      <ulink url="&blfs-wiki;/Xorg7Applications"/>
     191    </para>
    84192  </sect2>
    85193
     
    87195    <title>Downloading Xorg Applications</title>
    88196
    89     <para>To download the needed files using <application>wget</application>,
    90     use the following commands:</para>
     197    <para>
     198      First, create required <application>wget</application> list
     199      required to download the Xorg Applications using the
     200      following command:
     201    </para>
     202
     203<screen><userinput>cat &gt; app.wget &lt;&lt; "EOF"
     204bdftopcf-&bdftopcf-version;.tar.bz2
     205iceauth-&iceauth-version;.tar.bz2
     206luit-&luit-version;.tar.bz2
     207mkfontdir-&mkfontdir-version;.tar.bz2
     208mkfontscale-&mkfontscale-version;.tar.bz2
     209sessreg-&sessreg-version;.tar.bz2
     210setxkbmap-&setxkbmap-version;.tar.bz2
     211smproxy-&smproxy-version;.tar.bz2
     212x11perf-&x11perf-version;.tar.bz2
     213xauth-&xauth-version;.tar.bz2
     214xbacklight-&xbacklight-version;.tar.bz2
     215xcmsdb-&xcmsdb-version;.tar.bz2
     216xcursorgen-&xcursorgen-version;.tar.bz2
     217xdpyinfo-&xdpyinfo-version;.tar.bz2
     218xdriinfo-&xdriinfo-version;.tar.bz2
     219xev-&xev-version;.tar.bz2
     220xgamma-&xgamma-version;.tar.bz2
     221xhost-&xhost-version;.tar.bz2
     222xkbcomp-&xkbcomp-version;.tar.bz2
     223xkbevd-&xkbevd-version;.tar.bz2
     224xkbutils-&xkbutils-version;.tar.bz2
     225xkill-&xkill-version;.tar.bz2
     226xlsatoms-&xlsatoms-version;.tar.bz2
     227xlsclients-&xlsclients-version;.tar.bz2
     228xmodmap-&xmodmap-version;.tar.bz2
     229xpr-&xpr-version;.tar.bz2
     230xprop-&xprop-version;.tar.bz2
     231xrandr-&xrandr-version;.tar.bz2
     232xrdb-&xrdb-version;.tar.bz2
     233xrefresh-&xrefresh-version;.tar.bz2
     234xset-&xset-version;.tar.bz2
     235xsetroot-&xsetroot-version;.tar.bz2
     236xvinfo-&xvinfo-version;.tar.bz2
     237xwd-&xwd-version;.tar.bz2
     238xwininfo-&xwininfo-version;.tar.bz2
     239xwud-&xwud-version;.tar.bz2
     240EOF</userinput></screen>
     241
     242    <para>
     243      Then create the file containing md5sums of the files that will
     244      be downloaded using the following command:
     245    </para>
     246
     247<screen><userinput>cat &gt; app.md5sum &lt;&lt; "EOF"
     248&bdftopcf-md5sum; bdftopcf-&bdftopcf-version;.tar.bz2
     249&iceauth-md5sum; iceauth-&iceauth-version;.tar.bz2
     250&luit-md5sum; luit-&luit-version;.tar.bz2
     251&mkfontdir-md5sum; mkfontdir-&mkfontdir-version;.tar.bz2
     252&mkfontscale-md5sum; mkfontscale-&mkfontscale-version;.tar.bz2
     253&sessreg-md5sum; sessreg-&sessreg-version;.tar.bz2
     254&setxkbmap-md5sum; setxkbmap-&setxkbmap-version;.tar.bz2
     255&smproxy-md5sum; smproxy-&smproxy-version;.tar.bz2
     256&x11perf-md5sum; x11perf-&x11perf-version;.tar.bz2
     257&xauth-md5sum; xauth-&xauth-version;.tar.bz2
     258&xbacklight-md5sum; xbacklight-&xbacklight-version;.tar.bz2
     259&xcmsdb-md5sum; xcmsdb-&xcmsdb-version;.tar.bz2
     260&xcursorgen-md5sum; xcursorgen-&xcursorgen-version;.tar.bz2
     261&xdpyinfo-md5sum; xdpyinfo-&xdpyinfo-version;.tar.bz2
     262&xdriinfo-md5sum; xdriinfo-&xdriinfo-version;.tar.bz2
     263&xev-md5sum; xev-&xev-version;.tar.bz2
     264&xgamma-md5sum; xgamma-&xgamma-version;.tar.bz2
     265&xhost-md5sum; xhost-&xhost-version;.tar.bz2
     266&xkbcomp-md5sum; xkbcomp-&xkbcomp-version;.tar.bz2
     267&xkbevd-md5sum; xkbevd-&xkbevd-version;.tar.bz2
     268&xkbutils-md5sum; xkbutils-&xkbutils-version;.tar.bz2
     269&xkill-md5sum; xkill-&xkill-version;.tar.bz2
     270&xlsatoms-md5sum; xlsatoms-&xlsatoms-version;.tar.bz2
     271&xlsclients-md5sum; xlsclients-&xlsclients-version;.tar.bz2
     272&xmodmap-md5sum; xmodmap-&xmodmap-version;.tar.bz2
     273&xpr-md5sum; xpr-&xpr-version;.tar.bz2
     274&xprop-md5sum; xprop-&xprop-version;.tar.bz2
     275&xrandr-md5sum; xrandr-&xrandr-version;.tar.bz2
     276&xrdb-md5sum; xrdb-&xrdb-version;.tar.bz2
     277&xrefresh-md5sum; xrefresh-&xrefresh-version;.tar.bz2
     278&xset-md5sum; xset-&xset-version;.tar.bz2
     279&xsetroot-md5sum; xsetroot-&xsetroot-version;.tar.bz2
     280&xvinfo-md5sum; xvinfo-&xvinfo-version;.tar.bz2
     281&xwd-md5sum; xwd-&xwd-version;.tar.bz2
     282&xwininfo-md5sum; xwininfo-&xwininfo-version;.tar.bz2
     283&xwud-md5sum; xwud-&xwud-version;.tar.bz2
     284EOF</userinput></screen>
     285    <para>
     286      To download the needed files using <application>wget</application>,
     287      use the following commands:
     288    </para>
    91289
    92290<screen><userinput>mkdir app &amp;&amp;
    93291cd app &amp;&amp;
    94 grep -v '^#' ../app-&xorg7-release;.wget | wget -i- -c \
    95     -B http://xorg.freedesktop.org/releases/individual/app/ &amp;&amp;
    96 md5sum -c ../app-&xorg7-release;.md5</userinput></screen>
     292grep -v '^#' ../app.wget | wget -i- -c \
     293    -B &xorg-download-http;/app/ &amp;&amp;
     294md5sum -c ../app.md5sum</userinput></screen>
    97295
    98296  </sect2>
     
    101299    <title>Installation of Xorg Applications</title>
    102300
    103     <para>Install the applications by running the following commands for each
    104     package:</para>
     301    <para>
     302      Install the applications by running the following commands for each
     303      package:
     304    </para>
    105305
    106306<screen><userinput>./configure $XORG_CONFIG &amp;&amp;
    107307make</userinput></screen>
    108308
    109     <para>These packages do not provide test suites.</para>
    110 
    111     <para>Now as the <systemitem class="username">root</systemitem>
    112     user:</para>
     309    <para>
     310      These packages do not come with the test suites.
     311    </para>
     312
     313    <para>
     314      Now as the <systemitem class="username">root</systemitem>
     315      user:
     316    </para>
    113317
    114318<screen role="root"><userinput>make install</userinput></screen>
     
    121325    <segmentedlist>
    122326      <segtitle>Installed Programs</segtitle>
    123       <segtitle>Installed Libraries</segtitle>
    124       <segtitle>Installed Directories</segtitle>
    125327
    126328      <seglistitem>
    127        
    128         <seg>bdftopcf, iceauth, luit, mkfontdir,mkfontscale, sessreg,
    129         setxkbmap, smproxy, x11perf, x11perfcomp, xauth,
    130         xcmsdb, xcursorgen, xdpr, xdpyinfo, xdriinfo, xev, xgamma, xhost,
    131         xkbbell, xkbcomp, xkbevd, xkbvleds, xkbwatch, xkill, xlsatoms,
    132         xlsclients, xmodmap, xpr, xprop, xrandr, xrdb, xrefresh, xset,
    133         xsetroot, xvinfo, xwd, xwininfo, and xwud</seg>
    134         <seg>None</seg>
    135         <seg>None</seg>
     329        <seg>
     330          bdftopcf, iceauth, luit, mkfontdir, mkfontscale, sessreg, setxkbmap,
     331          smproxy, x11perf, x11perfcomp, xauth, xbacklight, xcmsdb, xcursorgen,
     332          xdpr, xdpyinfo, xdriinfo, xev, xgamma, xhost, xkbbell, xkbcomp,
     333          xkbevd, xkbvleds, xkbwatch, xkeystone, xkill, xlsatoms, xlsclients,
     334          xmodmap, xpr, xprop, xrandr, xrdb, xrefresh, xset, xsetroot, xvinfo,
     335          xwd, xwininfo and xwud
     336        </seg>
    136337      </seglistitem>
    137338    </segmentedlist>
     
    142343      <?dbhtml list-presentation="table"?>
    143344
    144       <varlistentry id="appres-x7">
    145         <term><command>appres</command></term>
    146         <listitem>
    147           <para>lists the X application resource database.</para>
    148           <indexterm zone="xorg7-app appres-x7">
    149             <primary sortas="b-appres">appres</primary>
    150           </indexterm>
    151         </listitem>
    152       </varlistentry>
    153 
    154       <varlistentry id="bdftopcf-x7">
     345      <varlistentry id="bdftopcf">
    155346        <term><command>bdftopcf</command></term>
    156347        <listitem>
    157           <para>converts an X font from Bitmap Distribution Format to Portable
    158           Compiled Format.</para>
    159           <indexterm zone="xorg7-app bdftopcf-x7">
     348          <para>
     349            converts an X font from Bitmap Distribution Format to Portable
     350            Compiled Format.
     351          </para>
     352          <indexterm zone="xorg7-app bdftopcf">
    160353            <primary sortas="b-bdftopcf">bdftopcf</primary>
    161354          </indexterm>
     
    163356      </varlistentry>
    164357
    165       <varlistentry id="iceauth-x7">
     358      <varlistentry id="iceauth">
    166359        <term><command>iceauth</command></term>
    167360        <listitem>
    168           <para>is the ICE authority file utility.</para>
    169           <indexterm zone="xorg7-app iceauth-x7">
     361          <para>
     362            is the ICE authority file utility.
     363          </para>
     364          <indexterm zone="xorg7-app iceauth">
    170365            <primary sortas="b-iceauth">iceauth</primary>
    171366          </indexterm>
     
    173368      </varlistentry>
    174369
    175       <varlistentry id="luit-x7">
     370      <varlistentry id="luit">
    176371        <term><command>luit</command></term>
    177372        <listitem>
    178           <para>provides locale and ISO 2022 support for Unicode
    179           terminals.</para>
    180           <indexterm zone="xorg7-app luit-x7">
     373          <para>
     374            provides locale and ISO 2022 support for Unicode
     375            terminals.
     376          </para>
     377          <indexterm zone="xorg7-app luit">
    181378            <primary sortas="b-luit">luit</primary>
    182379          </indexterm>
     
    184381      </varlistentry>
    185382
    186       <varlistentry id="mkfontdir-x7">
     383      <varlistentry id="mkfontdir">
    187384        <term><command>mkfontdir</command></term>
    188385        <listitem>
    189           <para>creates an index of X font files in a directory.</para>
    190           <indexterm zone="xorg7-app mkfontdir-x7">
     386          <para>
     387            creates an index of X font files in a directory.
     388          </para>
     389          <indexterm zone="xorg7-app mkfontdir">
    191390            <primary sortas="b-mkfontdir">mkfontdir</primary>
    192391          </indexterm>
     
    194393      </varlistentry>
    195394
    196       <varlistentry id="mkfontscale-x7">
     395      <varlistentry id="mkfontscale">
    197396        <term><command>mkfontscale</command></term>
    198397        <listitem>
    199           <para>creates an index of scalable font files for X.</para>
    200           <indexterm zone="xorg7-app mkfontscale-x7">
     398          <para>
     399            creates an index of scalable font files for X.
     400          </para>
     401          <indexterm zone="xorg7-app mkfontscale">
    201402            <primary sortas="b-mkfontscale">mkfontscale</primary>
    202403          </indexterm>
     
    204405      </varlistentry>
    205406
    206       <varlistentry id="sessreg-x7">
     407      <varlistentry id="sessreg">
    207408        <term><command>sessreg</command></term>
    208409        <listitem>
    209           <para>manages utmp/wtmp entries for non-init clients.</para>
    210           <indexterm zone="xorg7-app sessreg-x7">
     410          <para>
     411            manages utmp/wtmp entries for non-init clients.
     412          </para>
     413          <indexterm zone="xorg7-app sessreg">
    211414            <primary sortas="b-sessreg">sessreg</primary>
    212415          </indexterm>
     
    214417      </varlistentry>
    215418
    216       <varlistentry id="setxkbmap-x7">
     419      <varlistentry id="setxkbmap">
    217420        <term><command>setxkbmap</command></term>
    218421        <listitem>
    219           <para>sets the keyboard using the X Keyboard Extension.</para>
    220           <indexterm zone="xorg7-app setxkbmap-x7">
     422          <para>
     423            sets the keyboard using the X Keyboard Extension.
     424          </para>
     425          <indexterm zone="xorg7-app setxkbmap">
    221426            <primary sortas="b-setxkbmap">setxkbmap</primary>
    222427          </indexterm>
     
    224429      </varlistentry>
    225430
    226       <varlistentry id="smproxy-x7">
     431      <varlistentry id="smproxy">
    227432        <term><command>smproxy</command></term>
    228433        <listitem>
    229           <para>is the Session Manager Proxy.</para>
    230           <indexterm zone="xorg7-app smproxy-x7">
     434          <para>
     435            is the Session Manager Proxy.
     436          </para>
     437          <indexterm zone="xorg7-app smproxy">
    231438            <primary sortas="b-smproxy">smproxy</primary>
    232439          </indexterm>
     
    234441      </varlistentry>
    235442
    236       <varlistentry id="x11perf-x7">
     443      <varlistentry id="x11perf">
    237444        <term><command>x11perf</command></term>
    238445        <listitem>
    239           <para>is an X11 server performance test program.</para>
    240           <indexterm zone="xorg7-app x11perf-x7">
     446          <para>
     447            is an X11 server performance test program.
     448          </para>
     449          <indexterm zone="xorg7-app x11perf">
    241450            <primary sortas="b-x11perf">x11perf</primary>
    242451          </indexterm>
     
    244453      </varlistentry>
    245454
    246       <varlistentry id="x11perfcomp-x7">
     455      <varlistentry id="x11perfcomp">
    247456        <term><command>x11perfcomp</command></term>
    248457        <listitem>
    249           <para>is an X11 server performance comparison program.</para>
    250           <indexterm zone="xorg7-app x11perfcomp-x7">
     458          <para>
     459            is an X11 server performance comparison program.
     460          </para>
     461          <indexterm zone="xorg7-app x11perfcomp">
    251462            <primary sortas="b-x11perfcomp">x11perfcomp</primary>
    252463          </indexterm>
     
    254465      </varlistentry>
    255466
    256       <varlistentry id="xauth-x7">
     467      <varlistentry id="xauth">
    257468        <term><command>xauth</command></term>
    258469        <listitem>
    259           <para>is the X authority file utility.</para>
    260           <indexterm zone="xorg7-app xauth-x7">
     470          <para>
     471            is the X authority file utility.
     472          </para>
     473          <indexterm zone="xorg7-app xauth">
    261474            <primary sortas="b-xauth">xauth</primary>
    262475          </indexterm>
     
    264477      </varlistentry>
    265478
    266       <varlistentry id="xcmsdb-x7">
     479      <varlistentry id="xbacklight">
     480        <term><command>xbacklight</command></term>
     481        <listitem>
     482          <para>
     483            adjusts backlight brightness using RandR extension.
     484          </para>
     485          <indexterm zone="xorg7-app xbacklight">
     486            <primary sortas="b-xbacklight">xbacklight</primary>
     487          </indexterm>
     488        </listitem>
     489      </varlistentry>
     490
     491      <varlistentry id="xcmsdb">
    267492        <term><command>xcmsdb</command></term>
    268493        <listitem>
    269           <para>is the Device Color Characterization utility for the X
    270           Color Management System.</para>
    271           <indexterm zone="xorg7-app xcmsdb-x7">
     494          <para>
     495            is the Device Color Characterization utility for the X
     496            Color Management System.
     497          </para>
     498          <indexterm zone="xorg7-app xcmsdb">
    272499            <primary sortas="b-xcmsdb">xcmsdb</primary>
    273500          </indexterm>
     
    275502      </varlistentry>
    276503
    277       <varlistentry id="xcursorgen-x7">
     504      <varlistentry id="xcursorgen">
    278505        <term><command>xcursorgen</command></term>
    279506        <listitem>
    280           <para>creates an X cursor file from a collection of PNG
    281           images.</para>
    282           <indexterm zone="xorg7-app xcursorgen-x7">
     507          <para>
     508            creates an X cursor file from a collection of PNG
     509            images.
     510          </para>
     511          <indexterm zone="xorg7-app xcursorgen">
    283512            <primary sortas="b-xcursorgen">xcursorgen</primary>
    284513          </indexterm>
     
    286515      </varlistentry>
    287516
    288       <varlistentry id="xdpr-x7">
     517      <varlistentry id="xdpr">
    289518        <term><command>xdpr</command></term>
    290519        <listitem>
    291           <para>dumps an X window directly to a printer.</para>
    292           <indexterm zone="xorg7-app xdpr-x7">
     520          <para>
     521            dumps an X window directly to a printer.
     522          </para>
     523          <indexterm zone="xorg7-app xdpr">
    293524            <primary sortas="b-xdpr">xdpr</primary>
    294525          </indexterm>
     
    296527      </varlistentry>
    297528
    298       <varlistentry id="xdpyinfo-x7">
     529      <varlistentry id="xdpyinfo">
    299530        <term><command>xdpyinfo</command></term>
    300531        <listitem>
    301           <para>is a display information utility for X.</para>
    302           <indexterm zone="xorg7-app xdpyinfo-x7">
     532          <para>
     533            is a display information utility for X.
     534          </para>
     535          <indexterm zone="xorg7-app xdpyinfo">
    303536            <primary sortas="b-xdpyinfo">xdpyinfo</primary>
    304537          </indexterm>
     
    306539      </varlistentry>
    307540
    308       <varlistentry id="xdriinfo-x7">
     541      <varlistentry id="xdriinfo">
    309542        <term><command>xdriinfo</command></term>
    310543        <listitem>
    311           <para>queries configuration information of DRI drivers.</para>
    312           <indexterm zone="xorg7-app xdriinfo-x7">
     544          <para>
     545            queries configuration information of DRI drivers.
     546          </para>
     547          <indexterm zone="xorg7-app xdriinfo">
    313548            <primary sortas="b-xdriinfo">xdriinfo</primary>
    314549          </indexterm>
     
    316551      </varlistentry>
    317552
    318       <varlistentry id="xev-x7">
     553      <varlistentry id="xev">
    319554        <term><command>xev</command></term>
    320555        <listitem>
    321           <para>prints contents of X events.</para>
    322           <indexterm zone="xorg7-app xev-x7">
     556          <para>
     557            prints contents of X events.
     558          </para>
     559          <indexterm zone="xorg7-app xev">
    323560            <primary sortas="b-xev">xev</primary>
    324561          </indexterm>
     
    326563      </varlistentry>
    327564
    328       <varlistentry id="xgamma-x7">
     565      <varlistentry id="xgamma">
    329566        <term><command>xgamma</command></term>
    330567        <listitem>
    331           <para>alters a monitor's gamma correction through the X
    332           server.</para>
    333           <indexterm zone="xorg7-app xgamma-x7">
     568          <para>
     569            alters a monitor's gamma correction through the X
     570            server.
     571          </para>
     572          <indexterm zone="xorg7-app xgamma">
    334573            <primary sortas="b-xgamma">xgamma</primary>
    335574          </indexterm>
     
    337576      </varlistentry>
    338577
    339       <varlistentry id="xhost-x7">
     578      <varlistentry id="xhost">
    340579        <term><command>xhost</command></term>
    341580        <listitem>
    342           <para>is a server access control program for X.</para>
    343           <indexterm zone="xorg7-app xhost-x7">
     581          <para>
     582            is a server access control program for X.
     583          </para>
     584          <indexterm zone="xorg7-app xhost">
    344585            <primary sortas="b-xhost">xhost</primary>
    345586          </indexterm>
     
    347588      </varlistentry>
    348589
    349       <varlistentry id="xkbbell-x7">
     590      <varlistentry id="xkbbell">
    350591        <term><command>xkbbell</command></term>
    351592        <listitem>
    352           <para>is an XKB utility program that raises a bell event.</para>
    353           <indexterm zone="xorg7-app xkbbell-x7">
     593          <para>
     594            is an XKB utility program that raises a bell event.
     595          </para>
     596          <indexterm zone="xorg7-app xkbbell">
    354597            <primary sortas="b-xkbbell">xkbbell</primary>
    355598          </indexterm>
     
    357600      </varlistentry>
    358601
    359       <varlistentry id="xkbcomp-x7">
     602      <varlistentry id="xkbcomp">
    360603        <term><command>xkbcomp</command></term>
    361604        <listitem>
    362           <para>compiles an XKB keyboard description.</para>
    363           <indexterm zone="xorg7-app xkbcomp-x7">
     605          <para>
     606            compiles an XKB keyboard description.
     607          </para>
     608          <indexterm zone="xorg7-app xkbcomp">
    364609            <primary sortas="b-xkbcomp">xkbcomp</primary>
    365610          </indexterm>
     
    367612      </varlistentry>
    368613
    369       <varlistentry id="xkbevd-x7">
     614      <varlistentry id="xkbevd">
    370615        <term><command>xkbevd</command></term>
    371616        <listitem>
    372           <para>is the XKB event daemon.</para>
    373           <indexterm zone="xorg7-app xkbevd-x7">
     617          <para>
     618            is the XKB event daemon.
     619          </para>
     620          <indexterm zone="xorg7-app xkbevd">
    374621            <primary sortas="b-xkbevd">xkbevd</primary>
    375622          </indexterm>
     
    377624      </varlistentry>
    378625
    379       <varlistentry id="xkbvleds-x7">
     626      <varlistentry id="xkbvleds">
    380627        <term><command>xkbvleds</command></term>
    381628        <listitem>
    382           <para>shows the XKB status of keyboard LEDs.</para>
    383           <indexterm zone="xorg7-app xkbvleds-x7">
     629          <para>
     630            shows the XKB status of keyboard LEDs.
     631          </para>
     632          <indexterm zone="xorg7-app xkbvleds">
    384633            <primary sortas="b-xkbvleds">xkbvleds</primary>
    385634          </indexterm>
     
    387636      </varlistentry>
    388637
    389       <varlistentry id="xkbwatch-x7">
     638      <varlistentry id="xkbwatch">
    390639        <term><command>xkbwatch</command></term>
    391640        <listitem>
    392           <para>monitors modifier keys and LEDs.</para>
    393           <indexterm zone="xorg7-app xkbwatch-x7">
     641          <para>
     642            monitors modifier keys and LEDs.
     643          </para>
     644          <indexterm zone="xorg7-app xkbwatch">
    394645            <primary sortas="b-xkbwatch">xkbwatch</primary>
    395646          </indexterm>
     
    397648      </varlistentry>
    398649
    399       <varlistentry id="xkill-x7">
     650      <varlistentry id="xkill">
    400651        <term><command>xkill</command></term>
    401652        <listitem>
    402           <para>kills a client by its X resource.</para>
    403           <indexterm zone="xorg7-app xkill-x7">
     653          <para>
     654            kills a client by its X resource.
     655          </para>
     656          <indexterm zone="xorg7-app xkill">
    404657            <primary sortas="b-xkill">xkill</primary>
    405658          </indexterm>
     
    407660      </varlistentry>
    408661
    409       <varlistentry id="xlsatoms-x7">
     662      <varlistentry id="xlsatoms">
    410663        <term><command>xlsatoms</command></term>
    411664        <listitem>
    412           <para>lists interned atoms defined on the server.</para>
    413           <indexterm zone="xorg7-app xlsatoms-x7">
     665          <para>
     666            lists interned atoms defined on the server.
     667          </para>
     668          <indexterm zone="xorg7-app xlsatoms">
    414669            <primary sortas="b-xlsatoms">xlsatoms</primary>
    415670          </indexterm>
     
    417672      </varlistentry>
    418673
    419       <varlistentry id="xlsclients-x7">
     674      <varlistentry id="xlsclients">
    420675        <term><command>xlsclients</command></term>
    421676        <listitem>
    422           <para>lists client applications running on a display.</para>
    423           <indexterm zone="xorg7-app xlsclients-x7">
     677          <para>
     678            lists client applications running on a display.
     679          </para>
     680          <indexterm zone="xorg7-app xlsclients">
    424681            <primary sortas="b-xlsclients">xlsclients</primary>
    425682          </indexterm>
     
    427684      </varlistentry>
    428685
    429       <varlistentry id="xmodmap-x7">
     686      <varlistentry id="xmodmap">
    430687        <term><command>xmodmap</command></term>
    431688        <listitem>
    432           <para>is a utility for modifying keymaps and pointer button
    433           mappings in X.</para>
    434           <indexterm zone="xorg7-app xmodmap-x7">
     689          <para>
     690            is a utility for modifying keymaps and pointer button
     691            mappings in X.
     692          </para>
     693          <indexterm zone="xorg7-app xmodmap">
    435694            <primary sortas="b-xmodmap">xmodmap</primary>
    436695          </indexterm>
     
    438697      </varlistentry>
    439698
    440       <varlistentry id="xpr-x7">
     699      <varlistentry id="xpr">
    441700        <term><command>xpr</command></term>
    442701        <listitem>
    443           <para>prints an X window dump.</para>
    444           <indexterm zone="xorg7-app xpr-x7">
     702          <para>
     703            prints an X window dump.
     704          </para>
     705          <indexterm zone="xorg7-app xpr">
    445706            <primary sortas="b-xpr">xpr</primary>
    446707          </indexterm>
     
    448709      </varlistentry>
    449710
    450       <varlistentry id="xprop-x7">
     711      <varlistentry id="xprop">
    451712        <term><command>xprop</command></term>
    452713        <listitem>
    453           <para>is a property displayer for X.</para>
    454           <indexterm zone="xorg7-app xprop-x7">
     714          <para>
     715            is a property displayer for X.
     716          </para>
     717          <indexterm zone="xorg7-app xprop">
    455718            <primary sortas="b-xprop">xprop</primary>
    456719          </indexterm>
     
    458721      </varlistentry>
    459722
    460       <varlistentry id="xrandr-x7">
     723      <varlistentry id="xrandr">
    461724        <term><command>xrandr</command></term>
    462725        <listitem>
    463           <para>is a primitive command line interface to RandR
    464           extension.</para>
    465           <indexterm zone="xorg7-app xrandr-x7">
     726          <para>
     727            is a primitive command line interface to RandR
     728            extension.
     729          </para>
     730          <indexterm zone="xorg7-app xrandr">
    466731            <primary sortas="b-xrandr">xrandr</primary>
    467732          </indexterm>
     
    469734      </varlistentry>
    470735
    471       <varlistentry id="xrdb-x7">
     736      <varlistentry id="xrdb">
    472737        <term><command>xrdb</command></term>
    473738        <listitem>
    474           <para>is the X server resource database utility.</para>
    475           <indexterm zone="xorg7-app xrdb-x7">
     739          <para>
     740            is the X server resource database utility.
     741          </para>
     742          <indexterm zone="xorg7-app xrdb">
    476743            <primary sortas="b-xrdb">xrdb</primary>
    477744          </indexterm>
     
    479746      </varlistentry>
    480747
    481       <varlistentry id="xrefresh-x7">
     748      <varlistentry id="xrefresh">
    482749        <term><command>xrefresh</command></term>
    483750        <listitem>
    484           <para>refreshes all or part of an X screen.</para>
    485           <indexterm zone="xorg7-app xrefresh-x7">
     751          <para>
     752            refreshes all or part of an X screen.
     753          </para>
     754          <indexterm zone="xorg7-app xrefresh">
    486755            <primary sortas="b-xrefresh">xrefresh</primary>
    487756          </indexterm>
     
    489758      </varlistentry>
    490759
    491       <varlistentry id="xset-x7">
     760      <varlistentry id="xset">
    492761        <term><command>xset</command></term>
    493762        <listitem>
    494           <para>is the user preference utility for X.</para>
    495           <indexterm zone="xorg7-app xset-x7">
     763          <para>
     764            is the user preference utility for X.
     765          </para>
     766          <indexterm zone="xorg7-app xset">
    496767            <primary sortas="b-xset">xset</primary>
    497768          </indexterm>
     
    499770      </varlistentry>
    500771
    501       <varlistentry id="xsetroot-x7">
     772      <varlistentry id="xsetroot">
    502773        <term><command>xsetroot</command></term>
    503774        <listitem>
    504           <para>is the root window parameter setting utility for X.</para>
    505           <indexterm zone="xorg7-app xsetroot-x7">
     775          <para>
     776            is the root window parameter setting utility for X.
     777          </para>
     778          <indexterm zone="xorg7-app xsetroot">
    506779            <primary sortas="b-xsetroot">xsetroot</primary>
    507780          </indexterm>
     
    509782      </varlistentry>
    510783
    511       <varlistentry id="xvinfo-x7">
     784      <varlistentry id="xvinfo">
    512785        <term><command>xvinfo</command></term>
    513786        <listitem>
    514           <para>prints out X-Video extension adaptor information.</para>
    515           <indexterm zone="xorg7-app xvinfo-x7">
     787          <para>
     788            prints out X-Video extension adaptor information.
     789          </para>
     790          <indexterm zone="xorg7-app xvinfo">
    516791            <primary sortas="b-xvinfo">xvinfo</primary>
    517792          </indexterm>
     
    519794      </varlistentry>
    520795
    521       <varlistentry id="xwd-x7">
     796      <varlistentry id="xwd">
    522797        <term><command>xwd</command></term>
    523798        <listitem>
    524           <para>dumps an image of an X window.</para>
    525           <indexterm zone="xorg7-app xwd-x7">
     799          <para>
     800            dumps an image of an X window.
     801          </para>
     802          <indexterm zone="xorg7-app xwd">
    526803            <primary sortas="b-xwd">xwd</primary>
    527804          </indexterm>
     
    529806      </varlistentry>
    530807
    531       <varlistentry id="xwininfo-x7">
     808      <varlistentry id="xwininfo">
    532809        <term><command>xwininfo</command></term>
    533810        <listitem>
    534           <para>is a window information utility for X.</para>
    535           <indexterm zone="xorg7-app xwininfo-x7">
     811          <para>
     812            is a window information utility for X.
     813          </para>
     814          <indexterm zone="xorg7-app xwininfo">
    536815            <primary sortas="b-xwininfo">xwininfo</primary>
    537816          </indexterm>
     
    539818      </varlistentry>
    540819
    541       <varlistentry id="xwud-x7">
     820      <varlistentry id="xwud">
    542821        <term><command>xwud</command></term>
    543822        <listitem>
    544           <para>is an image displayer for X.</para>
    545           <indexterm zone="xorg7-app xwud-x7">
     823          <para>
     824            is an image displayer for X.
     825          </para>
     826          <indexterm zone="xorg7-app xwud">
    546827            <primary sortas="b-xwud">xwud</primary>
    547828          </indexterm>
Note: See TracChangeset for help on using the changeset viewer.