diff --git a/postlfs/config/lsb-release.xml b/postlfs/config/lsb-release.xml index e5cc60da39..e163d6e676 100644 --- a/postlfs/config/lsb-release.xml +++ b/postlfs/config/lsb-release.xml @@ -79,8 +79,7 @@ install -v -m 644 lsb_release.1 /usr/share/man/man1 && install -v -m 755 lsb_release /usr/bin && -install -v -m 755 help2man /usr/bin - +install -v -m 755 help2man /usr/bin diff --git a/x/installing/tuning-fontconfig.xml b/x/installing/tuning-fontconfig.xml index 883134dd1e..041bff9e4f 100644 --- a/x/installing/tuning-fontconfig.xml +++ b/x/installing/tuning-fontconfig.xml @@ -271,24 +271,32 @@ cat > ~/.config/fontconfig/fonts.conf << "EOF" protected, so turn it off to ensure any hinting information in the font itself is used, this is the default --> <edit mode="assign" name="autohint"> <bool>false</bool></edit> + <!-- hinting is enabled by default --> <edit mode="assign" name="hinting"> <bool>true</bool></edit> + <!-- for the lcdfilter see http://www.spasche.net/files/lcdfiltering/ --> <edit mode="assign" name="lcdfilter"> <const>lcddefault</const></edit> + <!-- options for hintstyle: hintfull: is supposed to give a crisp font that aligns well to the character-cell grid but at the cost of its proper shape. + hintmedium: poorly documented, maybe a synonym for hintfull. hintslight is the default: - supposed to be more fuzzy but retains shape. + hintnone: seems to turn hinting off. The variations are marginal and results vary with different fonts --> <edit mode="assign" name="hintstyle"> <const>hintslight</const></edit> + <!-- antialiasing is on by default and really helps for faint characters and also for 'xft:' fonts used in rxvt-unicode --> <edit mode="assign" name="antialias"> <bool>true</bool></edit> + <!-- subpixels are usually rgb, see http://www.lagom.nl/lcd-test/subpixel.php --> <edit mode="assign" name="rgba"> <const>rgb</const></edit> + <!-- thanks to the Arch wiki for the lcd and subpixel links --> </match> diff --git a/x/lib/atk.xml b/x/lib/atk.xml index ce7d312508..7a0c1b0cf4 100644 --- a/x/lib/atk.xml +++ b/x/lib/atk.xml @@ -102,8 +102,11 @@ the following commands: -meson --prefix /usr $PWD build && -ninja -C build +mkdir build && +cd build && + +meson --prefix=/usr && +ninja This package does not come with a testsuite. @@ -113,7 +116,7 @@ ninja -C build Now, as the root user: -ninja -C build install +ninja install diff --git a/x/lib/pango.xml b/x/lib/pango.xml index b80467f28b..fea59e5560 100644 --- a/x/lib/pango.xml +++ b/x/lib/pango.xml @@ -120,8 +120,7 @@ meson --prefix=/usr --sysconfdir=/etc .. && ninja - To test the results, issue: make check. The - test-layout test is known to fail. + To test the results, issue: ninja test. DThe