head 1.3; access; symbols pkgsrc-2024Q4:1.1.0.40 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.38 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.36 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.34 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.32 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.30 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.28 pkgsrc-2023Q2-base:1.1 pkgsrc-2023Q1:1.1.0.26 pkgsrc-2023Q1-base:1.1 pkgsrc-2022Q4:1.1.0.24 pkgsrc-2022Q4-base:1.1 pkgsrc-2022Q3:1.1.0.22 pkgsrc-2022Q3-base:1.1 pkgsrc-2022Q2:1.1.0.20 pkgsrc-2022Q2-base:1.1 pkgsrc-2022Q1:1.1.0.18 pkgsrc-2022Q1-base:1.1 pkgsrc-2021Q4:1.1.0.16 pkgsrc-2021Q4-base:1.1 pkgsrc-2021Q3:1.1.0.14 pkgsrc-2021Q3-base:1.1 pkgsrc-2021Q2:1.1.0.12 pkgsrc-2021Q2-base:1.1 pkgsrc-2021Q1:1.1.0.10 pkgsrc-2021Q1-base:1.1 pkgsrc-2020Q4:1.1.0.8 pkgsrc-2020Q4-base:1.1 pkgsrc-2020Q3:1.1.0.6 pkgsrc-2020Q3-base:1.1 pkgsrc-2020Q2:1.1.0.4 pkgsrc-2020Q2-base:1.1 pkgsrc-2020Q1:1.1.0.2 pkgsrc-2020Q1-base:1.1; locks; strict; comment @# @; 1.3 date 2025.01.11.18.08.25; author wiz; state dead; branches; next 1.2; commitid BeUHTnwC1XB4Y5FF; 1.2 date 2024.12.26.05.54.35; author pin; state Exp; branches; next 1.1; commitid OHAFgnVUHjfdqYCF; 1.1 date 2020.02.24.17.08.31; author brook; state Exp; branches; next ; commitid wrH8RhnfHh93WWXB; desc @@ 1.3 log @pango: update to 1.56.0. Overview of changes in 1.56.0, 09-01-2025 ========================================= - Support setting font features in font descriptions - serialization: Document the tab array format - serialization: Accept attributes without range - win32: Improve the pango_font_map_reload_implementation - win32: Take variations into account for caching - layout: Fix measuring ellipsis runs with shapes - build: Require C11 - build: Require GLib 2.80 - build: Require cairo 1.18 @ text @$NetBSD: patch-utils_meson.build,v 1.2 2024/12/26 05:54:35 pin Exp $ Make help2man execute a wrapper script so that LD_LIBRARY_PATH can be defined. --- utils/meson.build.orig 2024-12-06 11:10:58.416813497 +0000 +++ utils/meson.build @@@@ -52,8 +52,9 @@@@ if help2man.found() and not meson.is_cro custom_target('pango-view.1', output: 'pango-view.1', + depends: pango_view, command: [ - help2man, help2man_opts, '--output=@@OUTPUT@@', pango_view + help2man, help2man_opts, '--output=@@OUTPUT@@', '--no-discard-stderr', meson.current_build_dir() + '/pango-view.sh' ], install: true, install_dir: join_paths(pango_datadir, 'man/man1')) @ 1.2 log @devel/pango: update to 1.55.5 Overview of changes in 1.55.5, 10-12-2024 ========================================= - Test release, no changes Overview of changes in 1.55, 26-11-2024 ======================================= - Support Unicode 16 - Add pango_font_map_add_font_file - fontconfig: Reject patterns without FC_FILE - coretext: Actually use .AppleSystemUIFont - coretext: Keep track of variations - win32: Use font options for caching - win32: Keep variations in PangoWin32Font - build: Require harfbuzz 8.4.0 - build: Require fontconfig 2.15 - build: Require meson 1.2.0 - build: Require Window 10 @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Fix build on Darwin. During the build, help2man runs pango-view but does not include LD_LIBRARY_PATH in the environment. That is needed on Darwin to run uninstalled programs. This adds a wrapper so that LD_LIBRARY_PATH can be defined appropriately. @ text @d5 1 a5 1 --- utils/meson.build.orig 2019-10-25 03:45:11.000000000 +0000 d11 1 a11 1 + depends: pango_view, @