Ignore:
Timestamp:
05/31/2007 07:26:12 AM (17 years ago)
Author:
Dan Nichilson <dnicholson@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
048bc8cc
Parents:
9ae86120
Message:

Streamlined the commands in the Xorg sections

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/installing/x7driver.xml

    r9ae86120 r8d237953  
    8686    <title>Installation of Xorg Drivers</title>
    8787
    88     <para>The <application>xf86-input-evdev</application>,
    89     <application>xf86-video-ati</application>,
    90     <application>xf86-video-fbdev</application>,
    91     <application>xf86-video-glint</application>, and
    92     <application>xf86-video-newport</application> packages install
    93     man pages in UTF-8 encoding, and they will not display correctly
    94     using <application>Man-DB</application>. Issue the following
    95     command before building these packages to replace the offending
    96     characters with ones that <command>man</command> can properly
    97     display.</para>
    98 
    99 <screen><userinput>sed -i -e "s/\xc3\xb8/\\\\[\/o]/" \
    100        -e "s/\xc3\xa4/\\\\[:a]/" \
    101        -e "s/\xc3\x9c/\\\\[:U]/" man/*.man</userinput></screen>
    102 
    10388    <warning><para>It is very important not to build display drivers that
    10489    cannot be used with your hardware.  For instance, do not build Sun drivers
     
    11196    package:</para>
    11297
    113 <screen><userinput>./configure $XORG_CONFIG \
     98<screen><userinput>case $(basename "$PWD") in
     99xf86-input-evdev-[0-9]* | xf86-video-ati-[0-9]* | \
     100xf86-video-fbdev-[0-9]* | xf86-video-glint-[0-9]* | \
     101xf86-video-newport-[0-9]* )
     102    sed -i -e "s/\xc3\xb8/\\\\[\/o]/" \
     103           -e "s/\xc3\xa4/\\\\[:a]/" \
     104           -e "s/\xc3\x9c/\\\\[:U]/" man/*.man
     105    ;;
     106esac &amp;&amp;
     107./configure $XORG_CONFIG \
    114108    --with-xorg-module-dir=$XORG_PREFIX/lib/X11/modules &amp;&amp;
    115109make</userinput></screen>
     
    126120  <sect2 role="commands">
    127121    <title>Command Explanations</title>
     122
     123    <para><command>sed -i ... man/*.man</command>: A few packages install
     124    man pages in UTF-8 encoding, and they will not display correctly
     125    using <application>Man-DB</application>. This command converts the
     126    offending characters to ones that <command>man</command> can properly
     127    display.</para>
    128128
    129129    <para><parameter>--with-xorg-module-dir=...</parameter>: This switch
Note: See TracChangeset for help on using the changeset viewer.