mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-03 23:07:23 +08:00
Minor cosmetic changes
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@19445 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
parent
9885a4256a
commit
024b208977
@ -79,8 +79,7 @@
|
|||||||
|
|
||||||
<screen role="root"><userinput>install -v -m 644 lsb_release.1 /usr/share/man/man1 &&
|
<screen role="root"><userinput>install -v -m 644 lsb_release.1 /usr/share/man/man1 &&
|
||||||
install -v -m 755 lsb_release /usr/bin &&
|
install -v -m 755 lsb_release /usr/bin &&
|
||||||
install -v -m 755 help2man /usr/bin
|
install -v -m 755 help2man /usr/bin</userinput></screen>
|
||||||
</userinput></screen>
|
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -271,24 +271,32 @@ cat > ~/.config/fontconfig/fonts.conf << "EOF"
|
|||||||
protected, so turn it off to ensure any hinting information in the font
|
protected, so turn it off to ensure any hinting information in the font
|
||||||
itself is used, this is the default -->
|
itself is used, this is the default -->
|
||||||
<edit mode="assign" name="autohint"> <bool>false</bool></edit>
|
<edit mode="assign" name="autohint"> <bool>false</bool></edit>
|
||||||
|
|
||||||
<!-- hinting is enabled by default -->
|
<!-- hinting is enabled by default -->
|
||||||
<edit mode="assign" name="hinting"> <bool>true</bool></edit>
|
<edit mode="assign" name="hinting"> <bool>true</bool></edit>
|
||||||
|
|
||||||
<!-- for the lcdfilter see http://www.spasche.net/files/lcdfiltering/ -->
|
<!-- for the lcdfilter see http://www.spasche.net/files/lcdfiltering/ -->
|
||||||
<edit mode="assign" name="lcdfilter"> <const>lcddefault</const></edit>
|
<edit mode="assign" name="lcdfilter"> <const>lcddefault</const></edit>
|
||||||
|
|
||||||
<!-- options for hintstyle:
|
<!-- options for hintstyle:
|
||||||
hintfull: is supposed to give a crisp font that aligns well to the
|
hintfull: is supposed to give a crisp font that aligns well to the
|
||||||
character-cell grid but at the cost of its proper shape.
|
character-cell grid but at the cost of its proper shape.
|
||||||
|
|
||||||
hintmedium: poorly documented, maybe a synonym for hintfull.
|
hintmedium: poorly documented, maybe a synonym for hintfull.
|
||||||
hintslight is the default: - supposed to be more fuzzy but retains shape.
|
hintslight is the default: - supposed to be more fuzzy but retains shape.
|
||||||
|
|
||||||
hintnone: seems to turn hinting off.
|
hintnone: seems to turn hinting off.
|
||||||
The variations are marginal and results vary with different fonts -->
|
The variations are marginal and results vary with different fonts -->
|
||||||
<edit mode="assign" name="hintstyle"> <const>hintslight</const></edit>
|
<edit mode="assign" name="hintstyle"> <const>hintslight</const></edit>
|
||||||
|
|
||||||
<!-- antialiasing is on by default and really helps for faint characters
|
<!-- antialiasing is on by default and really helps for faint characters
|
||||||
and also for 'xft:' fonts used in rxvt-unicode -->
|
and also for 'xft:' fonts used in rxvt-unicode -->
|
||||||
<edit mode="assign" name="antialias"> <bool>true</bool></edit>
|
<edit mode="assign" name="antialias"> <bool>true</bool></edit>
|
||||||
|
|
||||||
<!-- subpixels are usually rgb, see
|
<!-- subpixels are usually rgb, see
|
||||||
http://www.lagom.nl/lcd-test/subpixel.php -->
|
http://www.lagom.nl/lcd-test/subpixel.php -->
|
||||||
<edit mode="assign" name="rgba"> <const>rgb</const></edit>
|
<edit mode="assign" name="rgba"> <const>rgb</const></edit>
|
||||||
|
|
||||||
<!-- thanks to the Arch wiki for the lcd and subpixel links -->
|
<!-- thanks to the Arch wiki for the lcd and subpixel links -->
|
||||||
</match>
|
</match>
|
||||||
|
|
||||||
|
@ -102,8 +102,11 @@
|
|||||||
the following commands:
|
the following commands:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen><userinput>meson --prefix /usr $PWD build &&
|
<screen><userinput>mkdir build &&
|
||||||
ninja -C build</userinput></screen>
|
cd build &&
|
||||||
|
|
||||||
|
meson --prefix=/usr &&
|
||||||
|
ninja</userinput></screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This package does not come with a testsuite.
|
This package does not come with a testsuite.
|
||||||
@ -113,7 +116,7 @@ ninja -C build</userinput></screen>
|
|||||||
Now, as the <systemitem class="username">root</systemitem> user:
|
Now, as the <systemitem class="username">root</systemitem> user:
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<screen role="root"><userinput>ninja -C build install</userinput></screen>
|
<screen role="root"><userinput>ninja install</userinput></screen>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -120,8 +120,7 @@ meson --prefix=/usr --sysconfdir=/etc .. &&
|
|||||||
ninja</userinput></screen>
|
ninja</userinput></screen>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
To test the results, issue: <command>make check</command>. The
|
To test the results, issue: <command>ninja test</command>. DThe
|
||||||
test-layout test is known to fail.
|
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
|
Loading…
Reference in New Issue
Block a user