diff --git a/x11-toolkits/pango/Makefile b/x11-toolkits/pango/Makefile --- a/x11-toolkits/pango/Makefile +++ b/x11-toolkits/pango/Makefile @@ -1,8 +1,7 @@ # Created by: Maxim Sobolev PORTNAME= pango -PORTVERSION= 1.42.4 -PORTREVISION= 5 +PORTVERSION= 1.48.4 CATEGORIES= x11-toolkits MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -28,7 +27,7 @@ USE_GNOME= cairo glib20 introspection:build VERSION= 1.8.0 -LIBVERSION= 0.4200.3 +LIBVERSION= 0.4800.4 PLIST_SUB+= VERSION=${VERSION} LIBVERSION=${LIBVERSION} FONTSCALE= ${LOCALBASE}/share/fonts/TTF/luximb.ttf @@ -38,10 +37,10 @@ OPTIONS_DEFINE= X11 DOCS OPTIONS_DEFAULT=X11 -DOCS_MESON_TRUE= enable_docs -DOCS_BUILD_DEPENDS= gtk-doc>=0:textproc/gtk-doc +DOCS_MESON_TRUE= gtk_doc +DOCS_BUILD_DEPENDS= gi-docgen>=0:textproc/gi-docgen -X11_MESON_TRUE= xft +X11_MESON_ENABLED= xft X11_USES= xorg X11_USE= XORG=x11,xft,xrender diff --git a/x11-toolkits/pango/distinfo b/x11-toolkits/pango/distinfo --- a/x11-toolkits/pango/distinfo +++ b/x11-toolkits/pango/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1536530045 -SHA256 (gnome2/pango-1.42.4.tar.xz) = 1d2b74cd63e8bd41961f2f8d952355aa0f9be6002b52c8aa7699d9f5da597c9d -SIZE (gnome2/pango-1.42.4.tar.xz) = 833876 +TIMESTAMP = 1618463221 +SHA256 (gnome2/pango-1.48.4.tar.xz) = 418913fb062071a075846244989d4a67aa5c80bf0eae8ee4555a092fd566a37a +SIZE (gnome2/pango-1.48.4.tar.xz) = 1791332 diff --git a/x11-toolkits/pango/files/patch-CVE-20191010238.c b/x11-toolkits/pango/files/patch-CVE-20191010238.c deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-CVE-20191010238.c +++ /dev/null @@ -1,16 +0,0 @@ ---- pango/pango-bidi-type.c.orig 2018-07-28 15:15:28 UTC -+++ pango/pango-bidi-type.c -@@ -179,8 +179,11 @@ pango_log2vis_get_embedding_levels (const gchar *te - for (i = 0, p = text; p < text + length; p = g_utf8_next_char(p), i++) - { - gunichar ch = g_utf8_get_char (p); -- FriBidiCharType char_type; -- char_type = fribidi_get_bidi_type (ch); -+ FriBidiCharType char_type = fribidi_get_bidi_type (ch); -+ -+ if (i == n_chars) -+ break; -+ - bidi_types[i] = char_type; - ored_types |= char_type; - if (FRIBIDI_IS_STRONG (char_type)) diff --git a/x11-toolkits/pango/files/patch-docs-meson.build b/x11-toolkits/pango/files/patch-docs-meson.build deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-docs-meson.build +++ /dev/null @@ -1,40 +0,0 @@ ---- docs/meson.build.orig 2018-04-24 19:46:15 UTC -+++ docs/meson.build -@@ -40,16 +40,20 @@ if host_system != 'darwin' - ] - endif - -+xft_private_headers = [ -+ 'pangoxft.h', -+ 'pangoxft-render.h', -+] - if host_system != 'windows' - private_headers += [ - 'pangocairo-win32.h', - 'pangowin32.h', - ] -+ if not get_option('xft') -+ private_headers += xft_private_headers -+ endif - else -- private_headers += [ -- 'pangoxft.h', -- 'pangoxft-render.h', -- ] -+ private_headers += xft_private_headers - endif - - content_files = [ -@@ -68,8 +72,10 @@ if build_pangoft2 - docdeps += libpangoft2_dep - endif - --if xft_dep.found() -- docdeps += libpangoxft_dep -+if get_option('xft') -+ if xft_dep.found() -+ docdeps += libpangoxft_dep -+ endif - endif - - if cairo_dep.found() diff --git a/x11-toolkits/pango/files/patch-meson.build b/x11-toolkits/pango/files/patch-meson.build deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-meson.build +++ /dev/null @@ -1,35 +0,0 @@ ---- meson.build.orig 2018-04-07 12:06:28.000000000 +0200 -+++ meson.build 2018-05-08 15:01:59.098440000 +0200 -@@ -297,11 +297,13 @@ - pango_deps += freetype_dep - endif - --xft_dep = dependency('xft', version: xft_req_version, required: false) --if xft_dep.found() -- pango_conf.set('HAVE_XFT', 1) -- pango_deps += dependency('xrender', required: false) -- pango_deps += xft_dep -+if get_option('xft') -+ xft_dep = dependency('xft', version: xft_req_version, required: false) -+ if xft_dep.found() -+ pango_conf.set('HAVE_XFT', 1) -+ pango_deps += dependency('xrender', required: false) -+ pango_deps += xft_dep -+ endif - endif - - if host_system == 'darwin' -@@ -481,9 +483,12 @@ - [ 'pango.pc' ], - [ 'pangowin32.pc', host_system == 'windows' ], - [ 'pangoft2.pc', build_pangoft2 ], -- [ 'pangoxft.pc', xft_dep.found() ], - [ 'pangocairo.pc', cairo_dep.found() ], - ] -+ -+if get_option('xft') -+ pkgconf_files += [[ 'pangoxft.pc', xft_dep.found() ]] -+endif - - foreach pkg: pkgconf_files - pkg_name = pkg[0] diff --git a/x11-toolkits/pango/files/patch-meson_options.txt b/x11-toolkits/pango/files/patch-meson_options.txt deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-meson_options.txt +++ /dev/null @@ -1,18 +0,0 @@ ---- meson_options.txt.orig 2018-05-10 12:18:01.824158000 +0200 -+++ meson_options.txt 2018-05-10 12:18:30.158458000 +0200 -@@ -2,7 +2,15 @@ - description: 'Build API reference for Pango using GTK-Doc', - type: 'boolean', - value: false) -+option('enable_installed_tests', -+ description: 'Install test programs', -+ type: 'boolean', -+ value: false) - option('gir', - description: 'Build the GObject introspection data for Pango', -+ type: 'boolean', -+ value: true) -+option('xft', -+ description: 'Build Xft/XRender support', - type: 'boolean', - value: true) diff --git a/x11-toolkits/pango/files/patch-pango_meson.build b/x11-toolkits/pango/files/patch-pango_meson.build deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-pango_meson.build +++ /dev/null @@ -1,111 +0,0 @@ ---- pango/meson.build.orig 2018-07-17 19:43:45.000000000 -0400 -+++ pango/meson.build 2018-09-03 14:20:00.192740000 -0400 -@@ -239,59 +239,62 @@ - endif - - # Xft --if xft_dep.found() -- pangoxft_headers = [ -- 'pangoxft.h', -- 'pangoxft-render.h', -- ] -+if get_option('xft') -+ if xft_dep.found() -+ pangoxft_headers = [ -+ 'pangoxft.h', -+ 'pangoxft-render.h', -+ ] - -- pangoxft_sources = [ -- 'pangoxft-font.c', -- 'pangoxft-fontmap.c', -- 'pangoxft-render.c', -- ] -+ pangoxft_sources = [ -+ 'pangoxft-font.c', -+ 'pangoxft-fontmap.c', -+ 'pangoxft-render.c', -+ ] - - install_headers(pangoxft_headers, subdir: pango_api_path) -+ install_headers(pangoxft_headers, subdir: pango_api_path) - -- libpangoxft = library( -- 'pangoxft-@0@'.format(pango_api_version), -- sources: pangoxft_sources, -- version: pango_libversion, -- soversion: pango_soversion, -- install: true, -- dependencies: pango_deps + [ libpango_dep, libpangoft2_dep ], -- include_directories: [ root_inc, pango_inc ], -- c_args: common_cflags + pango_debug_cflags + pango_cflags + [ -- '-DPANGO_DISABLE_DEPRECATION_WARNINGS', -- ], -- link_args: common_ldflags, -- ) -- pangoxft_dep_sources = [] -- -- if build_gir -- pangoxft_gir = gnome.generate_gir( -- libpangoxft, -- sources: pangoxft_headers + pangoxft_sources, -- dependencies: [ libpango_dep, libpangoft2_dep, pango_gir_dep, pangoft2_gir_dep ], -- namespace: 'PangoXft', -- nsversion: pango_api_version, -- identifier_prefix: 'PangoXft', -- symbol_prefix: 'pango_xft', -- export_packages: 'pangoxft', -- includes: [ pango_gir[0], pangoft2_gir[0], 'GObject-2.0', 'xft-2.0', 'xlib-2.0' ], -- header: 'pango/pangoxft.h', -+ libpangoxft = library( -+ 'pangoxft-@0@'.format(pango_api_version), -+ sources: pangoxft_sources, -+ version: pango_libversion, -+ soversion: pango_soversion, - install: true, -- extra_args: gir_args, -+ dependencies: pango_deps + [ libpango_dep, libpangoft2_dep ], -+ include_directories: [ root_inc, pango_inc ], -+ c_args: common_cflags + pango_debug_cflags + pango_cflags + [ -+ '-DPANGO_DISABLE_DEPRECATION_WARNINGS', -+ ], -+ link_args: common_ldflags, - ) -- pangoxft_dep_sources += pangoxft_gir -- endif -+ pangoxft_dep_sources = [] - -- libpangoxft_dep = declare_dependency( -- link_with: libpangoxft, -- include_directories: root_inc, -- dependencies: pango_deps + [ libpango_dep, libpangoft2_dep ], -- sources: pangoxft_dep_sources, -- ) -+ if build_gir -+ pangoxft_gir = gnome.generate_gir( -+ libpangoxft, -+ sources: pangoxft_headers + pangoxft_sources, -+ dependencies: [ libpango_dep, libpangoft2_dep, pango_gir_dep, pangoft2_gir_dep ], -+ namespace: 'PangoXft', -+ nsversion: pango_api_version, -+ identifier_prefix: 'PangoXft', -+ symbol_prefix: 'pango_xft', -+ export_packages: 'pangoxft', -+ includes: [ pango_gir[0], pangoft2_gir[0], 'GObject-2.0', 'xft-2.0', 'xlib-2.0' ], -+ header: 'pango/pangoxft.h', -+ install: true, -+ extra_args: gir_args, -+ ) -+ pangoxft_dep_sources += pangoxft_gir -+ endif -+ -+ libpangoxft_dep = declare_dependency( -+ link_with: libpangoxft, -+ include_directories: root_inc, -+ dependencies: pango_deps + [ libpango_dep, libpangoft2_dep ], -+ sources: pangoxft_dep_sources, -+ ) -+ endif - else - # For usage as a subproject - libpangoxft_dep = dependency('', required: false) diff --git a/x11-toolkits/pango/files/patch-tests_meson.build b/x11-toolkits/pango/files/patch-tests_meson.build deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-tests_meson.build +++ /dev/null @@ -1,92 +0,0 @@ ---- tests/meson.build.orig 2018-04-07 12:00:40.000000000 +0200 -+++ tests/meson.build 2018-05-10 12:09:26.358132000 +0200 -@@ -2,8 +2,10 @@ - '-DSRCDIR=@0@'.format(meson.current_source_dir()), - ] - --if xft_dep.found() -- test_cflags += [ '-DHAVE_X', '-DHAVE_XFT' ] -+if get_option('xft') -+ if xft_dep.found() -+ test_cflags += [ '-DHAVE_X', '-DHAVE_XFT' ] -+ endif - endif - - if host_system == 'windows' -@@ -85,15 +87,18 @@ - installed_test_datadir = join_paths(pango_datadir, 'installed-tests', 'pango') - installed_test_bindir = join_paths(pango_libexecdir, 'installed-tests', 'pango') - --install_data(installed_test_data, install_dir: installed_test_bindir) --install_data(installed_test_layouts_data, install_dir: join_paths(installed_test_bindir, 'layouts')) --install_data(installed_test_markups_data, install_dir: join_paths(installed_test_bindir, 'markups')) -+if get_option('enable_installed_tests') -+ install_data(installed_test_data, install_dir: installed_test_bindir) -+ install_data(installed_test_layouts_data, install_dir: join_paths(installed_test_bindir, 'layouts')) -+ install_data(installed_test_markups_data, install_dir: join_paths(installed_test_bindir, 'markups')) -+endif - - python = import('python3').find_python() - gen_installed_test = files([ 'gen-installed-test.py' ]) - gen_all_unicode = files([ 'gen-all-unicode.py' ]) - --custom_target('all-unicode', -+if get_option('enable_installed_tests') -+ custom_target('all-unicode', - output: 'all-unicode.txt', - command: [ - python, gen_all_unicode, '@OUTPUT@' -@@ -101,29 +106,30 @@ - install: true, - install_dir: installed_test_bindir) - --foreach t: tests -- name = t[0] -- src = t.get(1, [ '@0@.c'.format(name) ]) -- deps = t.get(2, [ libpango_dep ]) -+ foreach t: tests -+ name = t[0] -+ src = t.get(1, [ '@0@.c'.format(name) ]) -+ deps = t.get(2, [ libpango_dep ]) - -- custom_target(name + '.test', -- output: name + '.test', -- command: [ -- python, gen_installed_test, -- installed_test_bindir, -- name, -- '@OUTDIR@', -- ], -- install: true, -- install_dir: installed_test_datadir) -+ custom_target(name + '.test', -+ output: name + '.test', -+ command: [ -+ python, gen_installed_test, -+ installed_test_bindir, -+ name, -+ '@OUTDIR@', -+ ], -+ install: true, -+ install_dir: installed_test_datadir) - -- bin = executable(name, src, -- dependencies: deps, -- include_directories: root_inc, -- c_args: common_cflags + pango_debug_cflags + test_cflags, -- cpp_args: common_cppflags + pango_debug_cflags + test_cflags, -- install: true, -- install_dir: installed_test_bindir) -+ bin = executable(name, src, -+ dependencies: deps, -+ include_directories: root_inc, -+ c_args: common_cflags + pango_debug_cflags + test_cflags, -+ cpp_args: common_cppflags + pango_debug_cflags + test_cflags, -+ install: true, -+ install_dir: installed_test_bindir) - -- test(name, bin, env: test_env) --endforeach -+ test(name, bin, env: test_env) -+ endforeach -+endif diff --git a/x11-toolkits/pango/files/patch-utils_meson.build b/x11-toolkits/pango/files/patch-utils_meson.build deleted file mode 100644 --- a/x11-toolkits/pango/files/patch-utils_meson.build +++ /dev/null @@ -1,32 +0,0 @@ ---- utils/meson.build.orig 2018-09-09 23:55:54.363487000 +0200 -+++ utils/meson.build 2018-09-09 23:56:55.810617000 +0200 -@@ -14,12 +14,14 @@ - pango_view_deps += libpangoft2_dep - endif - --if xft_dep.found() and build_pangoft2 -- pango_view_sources += [ -- 'viewer-pangoxft.c', -- 'viewer-x.c', -- ] -- pango_view_deps += [ libpangoft2_dep, libpangoxft_dep, ] -+if get_option('xft') -+ if xft_dep.found() and build_pangoft2 -+ pango_view_sources += [ -+ 'viewer-pangoxft.c', -+ 'viewer-x.c', -+ ] -+ pango_view_deps += [ libpangoft2_dep, libpangoxft_dep, ] -+ endif - endif - - if cairo_dep.found() -@@ -54,7 +56,7 @@ - help2man, help2man_opts, '--output=@OUTPUT@', pango_view - ], - install: true, -- install_dir: join_paths(pango_datadir, 'man/man1')) -+ install_dir: join_paths(pango_prefix, 'man/man1')) - endif - - if cairo_dep.found() diff --git a/x11-toolkits/pango/pkg-plist b/x11-toolkits/pango/pkg-plist --- a/x11-toolkits/pango/pkg-plist +++ b/x11-toolkits/pango/pkg-plist @@ -5,6 +5,7 @@ include/pango-1.0/pango/pango-break.h include/pango-1.0/pango/pango-context.h include/pango-1.0/pango/pango-coverage.h +include/pango-1.0/pango/pango-direction.h include/pango-1.0/pango/pango-engine.h include/pango-1.0/pango/pango-enum-types.h include/pango-1.0/pango/pango-features.h @@ -37,6 +38,8 @@ lib/girepository-1.0/Pango-1.0.typelib lib/girepository-1.0/PangoCairo-1.0.typelib lib/girepository-1.0/PangoFT2-1.0.typelib +lib/girepository-1.0/PangoFc-1.0.typelib +lib/girepository-1.0/PangoOT-1.0.typelib %%X11%%lib/girepository-1.0/PangoXft-1.0.typelib lib/libpango-1.0.so lib/libpango-1.0.so.0 @@ -52,76 +55,936 @@ %%X11%%lib/libpangoxft-1.0.so.%%LIBVERSION%% libdata/pkgconfig/pango.pc libdata/pkgconfig/pangocairo.pc +libdata/pkgconfig/pangofc.pc libdata/pkgconfig/pangoft2.pc +libdata/pkgconfig/pangoot.pc %%X11%%libdata/pkgconfig/pangoxft.pc -man/man1/pango-view.1.gz share/gir-1.0/Pango-1.0.gir share/gir-1.0/PangoCairo-1.0.gir share/gir-1.0/PangoFT2-1.0.gir +share/gir-1.0/PangoFc-1.0.gir +share/gir-1.0/PangoOT-1.0.gir %%X11%%share/gir-1.0/PangoXft-1.0.gir -%%PORTDOCS%%share/gtk-doc/html/pango/PangoEngineLang.html -%%PORTDOCS%%share/gtk-doc/html/pango/PangoEngineShape.html -%%PORTDOCS%%share/gtk-doc/html/pango/PangoFcDecoder.html -%%PORTDOCS%%share/gtk-doc/html/pango/PangoFcFont.html -%%PORTDOCS%%share/gtk-doc/html/pango/PangoFcFontMap.html -%%PORTDOCS%%share/gtk-doc/html/pango/PangoMarkupFormat.html -%%PORTDOCS%%share/gtk-doc/html/pango/PangoRenderer.html -%%PORTDOCS%%share/gtk-doc/html/pango/annotation-glossary.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-10.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-12.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-14.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-16.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-18.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-2.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-20.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-22.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-24.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-26.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-30.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-31-0.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-32-4.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-32.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-34.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-38.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-4.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-40.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-6.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-1-8.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-deprecated.html -%%PORTDOCS%%share/gtk-doc/html/pango/api-index-full.html -%%PORTDOCS%%share/gtk-doc/html/pango/home.png -%%PORTDOCS%%share/gtk-doc/html/pango/index.html -%%PORTDOCS%%share/gtk-doc/html/pango/layout.gif -%%PORTDOCS%%share/gtk-doc/html/pango/left-insensitive.png -%%PORTDOCS%%share/gtk-doc/html/pango/left.png -%%PORTDOCS%%share/gtk-doc/html/pango/lowlevel.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Bidirectional-Text.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Cairo-Rendering.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-CoreText-Fonts.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Coverage-Maps.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Engines.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Fonts.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-FreeType-Fonts-and-Rendering.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Glyph-Storage.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Layout-Objects.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Miscellaneous-Utilities.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Modules.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-OpenType-Font-Handling.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Scripts-and-Languages.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Tab-Stops.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Text-Attributes.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Text-Processing.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Version-Checking.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Vertical-Text.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Win32-Fonts-and-Rendering.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-Xft-Fonts-and-Rendering.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango-hierarchy.html -%%PORTDOCS%%share/gtk-doc/html/pango/pango.devhelp2 -%%PORTDOCS%%share/gtk-doc/html/pango/pango.html -%%PORTDOCS%%share/gtk-doc/html/pango/rendering.html -%%PORTDOCS%%share/gtk-doc/html/pango/right-insensitive.png -%%PORTDOCS%%share/gtk-doc/html/pango/right.png -%%PORTDOCS%%share/gtk-doc/html/pango/rotated-text.png -%%PORTDOCS%%share/gtk-doc/html/pango/style.css -%%PORTDOCS%%share/gtk-doc/html/pango/up-insensitive.png -%%PORTDOCS%%share/gtk-doc/html/pango/up.png +share/man/man1/pango-view.1.gz +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/Pango.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Black.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Black.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Italic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Italic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/RedHatText-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/alias.Glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/alias.GlyphUnit.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/alias.LayoutRun.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/arabic-markup.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/blue-text.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/callback.AttrDataCopyFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/callback.AttrFilterFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/callback.FontsetForeachFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.Context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.Coverage.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.Font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.FontFace.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.FontFamily.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.FontMap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.Fontset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.FontsetSimple.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.Layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/class.Renderer.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/classes_hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.ANALYSIS_FLAG_CENTERED_BASELINE.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.ANALYSIS_FLAG_IS_ELLIPSIS.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.ANALYSIS_FLAG_NEED_HYPHEN.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.ATTR_INDEX_FROM_TEXT_BEGINNING.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.ATTR_INDEX_TO_TEXT_END.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.GLYPH_EMPTY.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.GLYPH_INVALID_INPUT.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.GLYPH_UNKNOWN_FLAG.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.SCALE.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.VERSION_MAJOR.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.VERSION_MICRO.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.VERSION_MINOR.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/const.VERSION_STRING.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.AttrList.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.Context.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.Coverage.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.FontDescription.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.FontsetSimple.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.GlyphString.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.Item.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.Layout.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.ScriptIter.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.TabArray.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/ctor.TabArray.new_with_positions.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Alignment.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.AttrType.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.BidiType.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.CoverageLevel.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Direction.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.EllipsizeMode.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Gravity.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.GravityHint.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Overline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.RenderPart.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Script.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Stretch.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Style.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.TabAlign.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Underline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Variant.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.Weight.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/enum.WrapMode.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/flags.FontMask.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/flags.ShapeFlags.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/flags.ShowFlags.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/fonts.css +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.ASCENT.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.DESCENT.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.LBEARING.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.PIXELS.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.PIXELS_CEIL.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.PIXELS_FLOOR.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.RBEARING.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.UNITS_ROUND.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.VERSION_CHECK.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.VERSION_ENCODE.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_allow_breaks_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_background_alpha_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_background_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_fallback_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_family_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_foreground_alpha_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_foreground_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_gravity_hint_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_gravity_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_insert_hyphens_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_letter_spacing_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_overline_color_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_overline_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_rise_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_scale_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_show_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_stretch_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_strikethrough_color_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_strikethrough_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_style_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_underline_color_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_underline_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_variant_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.attr_weight_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.break.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.default_break.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.extents_to_pixels.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.find_base_dir.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.find_paragraph_boundary.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.get_log_attrs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.get_mirror_char.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.is_zero_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.itemize.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.itemize_with_base_dir.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.log2vis_get_embedding_levels.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.markup_parser_finish.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.markup_parser_new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.parse_enum.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.parse_markup.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.parse_stretch.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.parse_style.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.parse_variant.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.parse_weight.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.quantize_line_geometry.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.read_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.reorder_items.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.scan_int.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.scan_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.scan_word.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.shape.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.shape_full.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.shape_with_flags.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.skip_space.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.split_file_list.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.tailor_break.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.trim_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.unichar_direction.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.units_from_double.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.units_to_double.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.version.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.version_check.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/func.version_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/fzy.js +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/go-up-symbolic.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/index.json +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/layout.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/main.js +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.destroy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.get.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.get_attrs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.get_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.next.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrIterator.range.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.change.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.equal.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.filter.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.get_attributes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.get_iterator.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.insert.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.insert_before.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.ref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.splice.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.unref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.AttrList.update.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Attribute.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Attribute.destroy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Attribute.equal.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Attribute.init.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Color.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Color.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Color.parse.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Color.parse_with_alpha.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Color.to_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_base_dir.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_base_gravity.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_font_description.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_font_map.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_gravity.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_gravity_hint.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_matrix.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_metrics.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_round_glyph_positions.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.get_serial.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.list_families.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.load_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.load_fontset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_base_dir.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_base_gravity.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_font_description.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_font_map.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_gravity_hint.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_matrix.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Context.set_round_glyph_positions.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.get.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.max.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.ref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.set.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.to_bytes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Coverage.unref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.describe.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.describe_with_absolute_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_coverage.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_features.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_font_map.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_glyph_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_hb_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.get_metrics.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Font.has_char.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.better_match.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.copy_static.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.equal.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_family.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_gravity.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_set_fields.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_size_is_absolute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_stretch.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_style.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_variant.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_variations.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.get_weight.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.hash.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.merge.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.merge_static.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_absolute_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_family.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_family_static.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_gravity.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_stretch.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_style.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_variant.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_variations.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_variations_static.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.set_weight.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.to_filename.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.to_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontDescription.unset_fields.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFace.describe.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFace.get_face_name.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFace.get_family.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFace.is_synthesized.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFace.list_sizes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFamily.get_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFamily.get_name.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFamily.is_monospace.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFamily.is_variable.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontFamily.list_faces.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.create_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.get_family.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.get_serial.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.list_families.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.load_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMap.load_fontset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_approximate_char_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_approximate_digit_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_ascent.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_descent.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_height.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_strikethrough_position.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_strikethrough_thickness.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_underline_position.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.get_underline_thickness.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.ref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontMetrics.unref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Fontset.foreach.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Fontset.get_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Fontset.get_metrics.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontsetSimple.append.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.FontsetSimple.size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItem.apply_attrs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItem.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItem.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItem.get_logical_widths.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItem.letter_space.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItem.split.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItemIter.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItemIter.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItemIter.init_end.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItemIter.init_start.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItemIter.next_cluster.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphItemIter.prev_cluster.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.extents_range.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.get_logical_widths.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.get_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.index_to_x.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.set_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.GlyphString.x_to_index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Item.apply_attrs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Item.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Item.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Item.split.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Language.get_sample_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Language.get_scripts.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Language.includes_script.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Language.matches.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Language.to_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.context_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_alignment.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_attributes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_auto_dir.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_baseline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_character_count.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_cursor_pos.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_direction.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_ellipsize.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_font_description.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_height.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_indent.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_iter.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_justify.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_line_count.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_line_readonly.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_line_spacing.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_lines.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_lines_readonly.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_log_attrs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_log_attrs_readonly.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_pixel_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_pixel_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_serial.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_single_paragraph_mode.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_spacing.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_tabs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_text.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_unknown_glyphs_count.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.get_wrap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.index_to_line_x.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.index_to_pos.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.is_ellipsized.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.is_wrapped.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.move_cursor_visually.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_alignment.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_attributes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_auto_dir.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_ellipsize.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_font_description.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_height.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_indent.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_justify.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_line_spacing.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_markup.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_markup_with_accel.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_single_paragraph_mode.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_spacing.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_tabs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_text.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.set_wrap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Layout.xy_to_index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.at_last_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_baseline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_char_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_cluster_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_layout_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_line_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_line_readonly.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_line_yrange.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_run.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_run_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.get_run_readonly.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.next_char.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.next_cluster.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.next_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutIter.next_run.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.get_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.get_height.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.get_pixel_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.get_x_ranges.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.index_to_x.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.ref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.unref.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.LayoutLine.x_to_index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.concat.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.get_font_scale_factor.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.get_font_scale_factors.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.rotate.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.scale.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.transform_distance.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.transform_pixel_rectangle.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.transform_point.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.transform_rectangle.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Matrix.translate.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.activate.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.deactivate.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_error_underline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_glyph_item.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_glyphs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_layout_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_rectangle.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.draw_trapezoid.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.get_alpha.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.get_color.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.get_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.get_layout_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.get_matrix.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.part_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.set_alpha.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.set_color.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.Renderer.set_matrix.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.ScriptIter.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.ScriptIter.get_range.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.ScriptIter.next.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.get_positions_in_pixels.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.get_size.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.get_tab.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.get_tabs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.resize.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/method.TabArray.set_tab.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pango-name.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pango_bidi.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pango_fonts.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pango_markup.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pango_rendering.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pipeline.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/pygment.css +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/rects1.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/rects2.png +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/search.js +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Analysis.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrClass.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrColor.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrFloat.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrFontDesc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrFontFeatures.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrInt.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrIterator.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrLanguage.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrList.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrShape.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrSize.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.AttrString.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Attribute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Color.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.FontDescription.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.FontMetrics.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.GlyphGeometry.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.GlyphInfo.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.GlyphItem.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.GlyphItemIter.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.GlyphString.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.GlyphVisAttr.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Item.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.LayoutIter.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.LayoutLine.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.LogAttr.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Matrix.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.Rectangle.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.ScriptIter.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/struct.TabArray.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/style.css +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrFontDesc.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrFontFeatures.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrLanguage.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrShape.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrShape.new_with_data.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrSize.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrSize.new_absolute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrType.get_name.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.AttrType.register.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.BidiType.for_unichar.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Coverage.from_bytes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Font.descriptions_free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.FontDescription.from_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Gravity.get_for_matrix.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Gravity.get_for_script.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Gravity.get_for_script_and_width.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Gravity.to_rotation.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Language.from_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Language.get_default.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Language.get_preferred.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Script.for_unichar.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/type_func.Script.get_sample_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.create_hb_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.describe.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.describe_absolute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.get_coverage.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.get_features.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.get_font_map.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.get_glyph_extents.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Font.get_metrics.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFace.describe.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFace.get_face_name.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFace.get_family.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFace.is_synthesized.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFace.list_sizes.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFamily.get_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFamily.get_name.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFamily.is_monospace.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFamily.is_variable.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontFamily.list_faces.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.get_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.get_family.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.get_serial.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.list_families.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.load_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.FontMap.load_fontset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Fontset.foreach.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Fontset.get_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Fontset.get_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Fontset.get_metrics.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.begin.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_error_underline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_glyph_item.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_glyphs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_rectangle.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_shape.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.draw_trapezoid.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.end.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.part_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/Pango/vfunc.Renderer.prepare_run.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/PangoCairo.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Black.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Black.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Italic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Italic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/RedHatText-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/callback.ShapeRendererFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/classes_hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/fonts.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.context_get_font_options.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.context_get_resolution.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.context_get_shape_renderer.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.context_set_font_options.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.context_set_resolution.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.context_set_shape_renderer.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.create_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.create_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.error_underline_path.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.glyph_string_path.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.layout_line_path.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.layout_path.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.show_error_underline.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.show_glyph_item.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.show_glyph_string.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.show_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.show_layout_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.update_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/func.update_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/fzy.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/go-up-symbolic.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/iface.Font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/iface.FontMap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/index.json +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/main.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/method.Font.get_scaled_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/method.FontMap.create_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/method.FontMap.get_font_type.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/method.FontMap.get_resolution.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/method.FontMap.set_default.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/method.FontMap.set_resolution.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/pango-name.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/pango_cairo.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/pygment.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/rotated-text.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/search.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/style.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/type_func.FontMap.get_default.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/type_func.FontMap.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoCairo/type_func.FontMap.new_for_font_type.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/PangoFT2.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Black.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Black.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Italic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Italic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/RedHatText-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/callback.SubstituteFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/class.FontMap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/classes_hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/ctor.FontMap.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/fonts.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.font_get_coverage.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.font_get_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.font_get_kerning.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.get_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.get_unknown_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.render.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.render_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.render_layout_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.render_layout_line_subpixel.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.render_layout_subpixel.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.render_transformed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/func.shutdown_display.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/fzy.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/go-up-symbolic.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/index.json +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/main.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/method.FontMap.create_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/method.FontMap.set_default_substitute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/method.FontMap.set_resolution.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/method.FontMap.substitute_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/pango-name.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/pygment.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/search.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/style.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFT2/type_func.FontMap.for_display.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/PangoFc.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Black.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Black.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Italic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Italic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/RedHatText-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/callback.DecoderFindFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/callback.SubstituteFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/class.Decoder.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/class.Font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/class.FontMap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/classes_hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/const.FONT_FEATURES.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/const.FONT_VARIATIONS.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/const.GRAVITY.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/const.PRGNAME.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/const.VERSION.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/fonts.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/fzy.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/go-up-symbolic.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/index.json +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/main.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Decoder.get_charset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Decoder.get_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.get_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.get_languages.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.get_pattern.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.get_unknown_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.has_char.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.kern_glyphs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.lock_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.Font.unlock_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.add_decoder_find_func.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.cache_clear.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.config_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.create_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.find_decoder.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.get_config.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.get_hb_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.set_config.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.set_default_substitute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.shutdown.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/method.FontMap.substitute_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/pango-name.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/property.Font.fontmap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/property.Font.pattern.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/pygment.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/search.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/style.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/type_func.Font.description_from_pattern.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/vfunc.Decoder.get_charset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoFc/vfunc.Decoder.get_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/PangoOT.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Black.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Black.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Italic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Italic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/RedHatText-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/alias.Tag.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/class.Info.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/class.Ruleset.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/classes_hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/const.ALL_GLYPHS.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/const.DEFAULT_LANGUAGE.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/const.NO_FEATURE.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/const.NO_SCRIPT.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/ctor.Buffer.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/ctor.Ruleset.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/ctor.Ruleset.new_for.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/ctor.Ruleset.new_from_description.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/enum.TableType.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/fonts.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/func.TAG_MAKE.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/func.TAG_MAKE_FROM_STRING.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/func.tag_from_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/func.tag_from_script.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/func.tag_to_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/func.tag_to_script.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/fzy.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/go-up-symbolic.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/index.json +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/main.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.add_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.clear.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.destroy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.get_glyphs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.output.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.set_rtl.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Buffer.set_zero_width_marks.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Info.find_feature.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Info.find_language.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Info.find_script.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Info.list_features.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Info.list_languages.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Info.list_scripts.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Ruleset.add_feature.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Ruleset.get_feature_count.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Ruleset.maybe_add_feature.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Ruleset.maybe_add_features.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Ruleset.position.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.Ruleset.substitute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.RulesetDescription.copy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.RulesetDescription.equal.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.RulesetDescription.free.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/method.RulesetDescription.hash.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/pango-name.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/pygment.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/search.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/struct.Buffer.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/struct.FeatureMap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/struct.Glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/struct.RulesetDescription.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/style.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/type_func.Info.get.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoOT/type_func.Ruleset.get_for_description.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/PangoXft.devhelp2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Black.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Black.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Bold.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Bold.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-BoldItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Italic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Italic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Medium.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Medium.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-MediumItalic.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Regular.woff +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/RedHatText-Regular.woff2 +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/callback.SubstituteFunc.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/class.Font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/class.FontMap.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/class.Renderer.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/classes_hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/ctor.Renderer.new.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/fonts.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.get_context.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.get_font_map.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.picture_render.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.render.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.render_layout.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.render_layout_line.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.render_transformed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.set_default_substitute.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.shutdown_display.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/func.substitute_changed.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/fzy.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/go-up-symbolic.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/index.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/index.json +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/main.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Font.get_display.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Font.get_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Font.get_unknown_glyph.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Font.has_char.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Font.lock_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Font.unlock_face.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Renderer.set_default_color.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/method.Renderer.set_draw.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/pango-name.png +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/pango_xft.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/property.Renderer.display.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/property.Renderer.screen.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/pygment.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/search.js +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/style.css +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/type_func.Font.get_font.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/vfunc.Renderer.composite_glyphs.html +%%PORTDOCS%%%%DOCSDIR%%/reference/PangoXft/vfunc.Renderer.composite_trapezoids.html