git: e89fc7ed1f22 - main - print/xreader: update to 4.2.3
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 10 Feb 2025 21:20:34 UTC
The branch main has been updated by makc:
URL: https://cgit.FreeBSD.org/ports/commit/?id=e89fc7ed1f22e72b4cea54cc43261161f5566920
commit e89fc7ed1f22e72b4cea54cc43261161f5566920
Author: Pavel Timofeev <timp87@gmail.com>
AuthorDate: 2025-02-10 21:18:57 +0000
Commit: Max Brazhnikov <makc@FreeBSD.org>
CommitDate: 2025-02-10 21:18:57 +0000
print/xreader: update to 4.2.3
- Regroup options and add new ones: COMICS, PIXBUF, and INTROSPECTION.
- Add LICENSE_FILE
PR: 283639
---
print/xreader/Makefile | 56 +++++----
print/xreader/distinfo | 6 +-
.../patch-help_reference_libdocument_meson.build | 27 +++++
.../files/patch-help_reference_libview_meson.build | 30 +++++
.../files/patch-help_reference_shell_meson.build | 29 +++++
print/xreader/files/patch-libview_meson.build | 31 +++++
print/xreader/files/patch-shell_meson.build | 20 +++-
print/xreader/pkg-plist | 130 +++++++++++++++++++++
8 files changed, 304 insertions(+), 25 deletions(-)
diff --git a/print/xreader/Makefile b/print/xreader/Makefile
index bf6e669cba29..e5952a2f96fa 100644
--- a/print/xreader/Makefile
+++ b/print/xreader/Makefile
@@ -1,6 +1,5 @@
PORTNAME= xreader
-PORTVERSION= 3.2.2
-PORTREVISION= 22
+PORTVERSION= 4.2.3
CATEGORIES= print gnome
DIST_SUBDIR= gnome
@@ -9,6 +8,7 @@ COMMENT= Multi-format document reader
WWW= https://github.com/linuxmint/xreader
LICENSE= GPLv2+
+LICENSE_FILE= ${WRKSRC}/COPYING
PORTSCOUT= limit:^[0-9.]+$$ # ignore non-numeric tags
@@ -26,58 +26,72 @@ GLIB_SCHEMAS= org.x.reader.gschema.xml
MATHJAX_DIR= ${LOCALBASE}/www/MathJax
-OPTIONS_DEFINE= DBUS DJVU DVI EPUB HELP KEYRING PDF PS T1LIB TIFF XPS
-OPTIONS_DEFAULT= DBUS DJVU HELP KEYRING PDF TIFF XPS
+OPTIONS_DEFINE= DBUS DOCS HELP INTROSPECTION KEYRING T1LIB
+OPTIONS_GROUP= BACKENDS
+OPTIONS_GROUP_BACKENDS= COMICS DJVU DVI EPUB PDF PIXBUF PS TIFF XPS
+OPTIONS_DEFAULT= DBUS DJVU DOCS HELP KEYRING PDF TIFF XPS
OPTIONS_SUB= yes
+BACKENDS_DESC= Document formats support
+COMICS_DESC= Comic book (cbr) support
DVI_DESC= DVI format support
EPUB_DESC= EPUB e-book format support
HELP_DESC= Install help files
+INTROSPECTION_DESC= Enable GObject introspection
KEYRING_DESC= Password-protected document support
+PIXBUF_DESC= Image files support via GdkPixbuf
T1LIB_DESC= Type1 font support in DVI backend
-XPS_DESC= XPS document support
+XPS_DESC= XPS document format support
-DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus
-DBUS_MESON_OFF= -Denable_dbus=false
+COMICS_USES= libarchive
+COMICS_MESON_TRUE= comics
+
+DBUS_RUN_DEPENDS= dbus-daemon:devel/dbus
+DBUS_MESON_TRUE= enable_dbus
DJVU_LIB_DEPENDS= libdjvulibre.so:graphics/djvulibre
-DJVU_MESON_ON= -Ddjvu=true
+DJVU_MESON_TRUE= djvu
+
+DOCS_BUILD_DEPENDS= gtkdocize:textproc/gtk-doc
+DOCS_MESON_TRUE= docs
DVI_LIB_DEPENDS= libspectre.so:print/libspectre
DVI_USES= tex
DVI_USE= TEX=kpathsea
-DVI_MESON_ON= -Ddvi=true
+DVI_MESON_TRUE= dvi
EPUB_BUILD_DEPENDS= ${MATHJAX_DIR}/MathJax.js:www/mathjax
-EPUB_LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk@40
+EPUB_LIB_DEPENDS= libwebkit2gtk-4.1.so:www/webkit2-gtk@41
EPUB_RUN_DEPENDS= ${EPUB_BUILD_DEPENDS}
EPUB_MESON_ON= -Dmathjax-directory=${MATHJAX_DIR}
EPUB_MESON_OFF= -Depub=false
HELP_RUN_DEPENDS= yelp:x11/yelp
-HELP_MESON_ON= -Dhelp_files=true
+HELP_MESON_TRUE= help_files
+
+INTROSPECTION_USE= GNOME=introspection:build
+INTROSPECTION_MESON_TRUE= introspection
KEYRING_LIB_DEPENDS= libsecret-1.so:security/libsecret
-KEYRING_MESON_OFF= -Dkeyring=false
+KEYRING_MESON_TRUE= keyring
PDF_LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib
-PDF_MESON_OFF= -Dpdf=false
+PDF_MESON_TRUE= pdf
+
+PIXBUF_MESON_TRUE= pixbuf
PS_LIB_DEPENDS= libspectre.so:print/libspectre
-PS_MESON_OFF= -Dps=false
+PS_MESON_TRUE= ps
T1LIB_LIB_DEPENDS= libt1.so:devel/t1lib
-T1LIB_MESON_ON= -Dt1lib=true
+T1LIB_MESON_TRUE= t1lib
+T1LIB_USES= localbase:ldflags
T1LIB_IMPLIES= DVI
TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff
-TIFF_MESON_OFF= -Dtiff=false
+TIFF_MESON_TRUE= tiff
XPS_LIB_DEPENDS= libgxps.so:graphics/libgxps
-XPS_MESON_OFF= -Dxps=false
-
-post-patch:
- @${REINPLACE_CMD} -e '/gdk\/gdkwayland\.h/d' \
- ${WRKSRC}/libdocument/ev-document-misc.h
+XPS_MESON_TRUE= xps
.include <bsd.port.mk>
diff --git a/print/xreader/distinfo b/print/xreader/distinfo
index 9107c362b5fd..356dcf66b04e 100644
--- a/print/xreader/distinfo
+++ b/print/xreader/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1639000636
-SHA256 (gnome/linuxmint-xreader-3.2.2_GH0.tar.gz) = fb2ba147ffbe64b47ff8967cfc49930f68867e6a6ab5d8e496208fc0e03cf481
-SIZE (gnome/linuxmint-xreader-3.2.2_GH0.tar.gz) = 2187716
+TIMESTAMP = 1734392857
+SHA256 (gnome/linuxmint-xreader-4.2.3_GH0.tar.gz) = 57d8c20eddcb90ba768f386c444519b5f330c1aacfcaa3deb33db1ad1d7bbd6d
+SIZE (gnome/linuxmint-xreader-4.2.3_GH0.tar.gz) = 2214140
diff --git a/print/xreader/files/patch-help_reference_libdocument_meson.build b/print/xreader/files/patch-help_reference_libdocument_meson.build
new file mode 100644
index 000000000000..8c708dc1fe19
--- /dev/null
+++ b/print/xreader/files/patch-help_reference_libdocument_meson.build
@@ -0,0 +1,27 @@
+--- help/reference/libdocument/meson.build.orig 2024-12-05 10:59:19 UTC
++++ help/reference/libdocument/meson.build
+@@ -7,12 +7,6 @@ version_xml = configure_file(
+ configuration: version_conf,
+ )
+
+-libdoc_doc_deps = declare_dependency(
+- include_directories: [libdoc_include, include_directories('.')],
+- link_with: libdocument,
+- dependencies: libdocument_deps,
+-)
+-
+ gnome.gtkdoc(
+ 'libxreaderdocument',
+ mode: 'xml',
+@@ -20,9 +14,10 @@ gnome.gtkdoc(
+ gobject_typesfile: files('libxreaderdocument.types'),
+ src_dir: [
+ join_paths(meson.source_root(), 'libdocument'),
++ join_paths(meson.build_root(), 'libdocument'),
+ ],
+ ignore_headers: [libdocument_private_headers],
+- dependencies: libdoc_doc_deps,
++ dependencies: libdocument_dep,
+ mkdb_args: ['--xml-mode', '--output-format=xml', '--name-space=ev'],
+ fixxref_args: fixref_args,
+ install: true,
diff --git a/print/xreader/files/patch-help_reference_libview_meson.build b/print/xreader/files/patch-help_reference_libview_meson.build
new file mode 100644
index 000000000000..d12544b1c78c
--- /dev/null
+++ b/print/xreader/files/patch-help_reference_libview_meson.build
@@ -0,0 +1,30 @@
+--- help/reference/libview/meson.build.orig 2024-12-05 10:59:19 UTC
++++ help/reference/libview/meson.build
+@@ -7,12 +7,6 @@ version_xml = configure_file(
+ configuration: version_conf,
+ )
+
+-libview_doc_deps = declare_dependency(
+- include_directories: [include_root, libdoc_include, libview_include, include_directories('.')],
+- link_with: libview,
+- dependencies: libdoc_deps,
+-)
+-
+ gnome.gtkdoc(
+ 'libxreaderview',
+ mode: 'xml',
+@@ -20,11 +14,12 @@ gnome.gtkdoc(
+ gobject_typesfile: files('libxreaderview.types'),
+ src_dir: [
+ join_paths(meson.source_root(), 'libview'),
++ join_paths(meson.build_root(), 'libview'),
+ ],
+ ignore_headers: [libview_private_headers],
+- dependencies: libview_doc_deps,
++ dependencies: libview_dep,
+ mkdb_args: ['--xml-mode', '--output-format=xml', '--name-space=ev'],
+- cflags: '-DXREADER_COMPILATION',
++ c_args: '-DXREADER_COMPILATION',
+ fixxref_args: fixref_args,
+ install: true,
+ install_dir: 'libxreaderview-' + api_version,
diff --git a/print/xreader/files/patch-help_reference_shell_meson.build b/print/xreader/files/patch-help_reference_shell_meson.build
new file mode 100644
index 000000000000..73dc8391a3d1
--- /dev/null
+++ b/print/xreader/files/patch-help_reference_shell_meson.build
@@ -0,0 +1,29 @@
+--- help/reference/shell/meson.build.orig 2024-12-05 10:59:19 UTC
++++ help/reference/shell/meson.build
+@@ -8,9 +8,7 @@ xreader_doc_deps = declare_dependency(
+ )
+
+ xreader_doc_deps = declare_dependency(
+- include_directories: [include_root, libdoc_include, libview_include, include_directories('.')],
+- link_with: [libdocument, libview],
+- dependencies: xreader_deps,
++ link_with: libshell.get_shared_lib(),
+ )
+
+ gnome.gtkdoc(
+@@ -19,12 +17,12 @@ gnome.gtkdoc(
+ main_xml: 'xreader-docs.xml',
+ gobject_typesfile: files('xreader.types'),
+ src_dir: [
+- join_paths(meson.source_root(), 'libview'),
++ join_paths(meson.source_root(), 'shell'),
++ join_paths(meson.source_root(), 'libmisc'),
+ ],
+- ignore_headers: [libview_private_headers],
+ dependencies: xreader_doc_deps,
+ mkdb_args: ['--xml-mode', '--output-format=xml', '--name-space=ev'],
+- cflags: '-DXREADER_COMPILATION',
++ c_args: '-DXREADER_COMPILATION',
+ fixxref_args: fixref_args,
+ install: true,
+ install_dir: meson.project_name(),
diff --git a/print/xreader/files/patch-libview_meson.build b/print/xreader/files/patch-libview_meson.build
new file mode 100644
index 000000000000..462dcae3b33f
--- /dev/null
+++ b/print/xreader/files/patch-libview_meson.build
@@ -0,0 +1,31 @@
+--- libview/meson.build.orig 2024-12-26 17:23:17 UTC
++++ libview/meson.build
+@@ -1,23 +1,23 @@ libview_private_headers = [
+ libview_private_headers = [
+- 'ev-annotation-window.h',
+ 'ev-link-accessible.h',
+- 'ev-loading-window.h',
+- 'ev-page-cache.h',
+- 'ev-pixbuf-cache.h',
+ 'ev-timeline.h',
+ 'ev-transition-animation.h',
+ 'ev-view-accessible.h',
+- 'ev-view-cursor.h',
+ 'ev-view-private.h',
+ ]
+
+ libview_headers = [
++ 'ev-annotation-window.h',
+ 'ev-document-model.h',
+ 'ev-jobs.h',
+ 'ev-job-scheduler.h',
++ 'ev-loading-window.h',
++ 'ev-page-cache.h',
++ 'ev-pixbuf-cache.h',
+ 'ev-print-operation.h',
+ 'ev-stock-icons.h',
+ 'ev-view.h',
++ 'ev-view-cursor.h',
+ 'ev-web-view.h',
+ 'ev-view-presentation.h',
+ ]
diff --git a/print/xreader/files/patch-shell_meson.build b/print/xreader/files/patch-shell_meson.build
index 4bf924e924e6..3e15caa05947 100644
--- a/print/xreader/files/patch-shell_meson.build
+++ b/print/xreader/files/patch-shell_meson.build
@@ -1,4 +1,4 @@
---- shell/meson.build.orig 2021-12-06 16:02:19 UTC
+--- shell/meson.build.orig 2024-12-05 10:59:19 UTC
+++ shell/meson.build
@@ -94,6 +94,9 @@ xreader_deps = [
gtk,
@@ -10,3 +10,21 @@
xapp,
]
+@@ -141,7 +144,7 @@ libshell_deps = [
+ libephyzoom_dep,
+ ]
+
+-libshell = static_library(
++libshell = both_libraries(
+ 'shell',
+ shell_sources,
+ dependencies: libshell_deps,
+@@ -149,7 +152,7 @@ libshell_dep = declare_dependency(
+ )
+
+ libshell_dep = declare_dependency(
+- link_whole: libshell, # Need the whole lib for gresource lookup
++ link_whole: libshell.get_static_lib(), # Need the whole lib for gresource lookup
+ dependencies: libshell_deps,
+ include_directories: include_dirs,
+ )
diff --git a/print/xreader/pkg-plist b/print/xreader/pkg-plist
index 7a9b6bcd5a90..71aa7a4ac619 100644
--- a/print/xreader/pkg-plist
+++ b/print/xreader/pkg-plist
@@ -39,11 +39,16 @@ include/xreader/1.5/libdocument/ev-render-context.h
include/xreader/1.5/libdocument/ev-selection.h
include/xreader/1.5/libdocument/ev-transition-effect.h
include/xreader/1.5/libdocument/ev-version.h
+include/xreader/1.5/libview/ev-annotation-window.h
include/xreader/1.5/libview/ev-document-model.h
include/xreader/1.5/libview/ev-job-scheduler.h
include/xreader/1.5/libview/ev-jobs.h
+include/xreader/1.5/libview/ev-loading-window.h
+include/xreader/1.5/libview/ev-page-cache.h
+include/xreader/1.5/libview/ev-pixbuf-cache.h
include/xreader/1.5/libview/ev-print-operation.h
include/xreader/1.5/libview/ev-stock-icons.h
+include/xreader/1.5/libview/ev-view-cursor.h
include/xreader/1.5/libview/ev-view-presentation.h
include/xreader/1.5/libview/ev-view-type-builtins.h
include/xreader/1.5/libview/ev-view.h
@@ -56,6 +61,8 @@ lib/libxreaderdocument.so.3.0.0
lib/libxreaderview.so
lib/libxreaderview.so.3
lib/libxreaderview.so.3.0.0
+%%COMICS%%lib/xreader/3/backends/comicsdocument.xreader-backend
+%%COMICS%%lib/xreader/3/backends/libcomicsdocument.so
%%DJVU%%lib/xreader/3/backends/djvudocument.xreader-backend
%%DVI%%lib/xreader/3/backends/dvidocument.xreader-backend
%%EPUB%%lib/xreader/3/backends/epubdocument.xreader-backend
@@ -67,9 +74,13 @@ lib/libxreaderview.so.3.0.0
%%TIFF%%lib/xreader/3/backends/libtiffdocument.so
%%XPS%%lib/xreader/3/backends/libxpsdocument.so
%%PDF%%lib/xreader/3/backends/pdfdocument.xreader-backend
+%%PIXBUF%%lib/xreader/3/backends/libpixbufdocument.so
+%%PIXBUF%%lib/xreader/3/backends/pixbufdocument.xreader-backend
%%PS%%lib/xreader/3/backends/psdocument.xreader-backend
%%TIFF%%lib/xreader/3/backends/tiffdocument.xreader-backend
%%XPS%%lib/xreader/3/backends/xpsdocument.xreader-backend
+%%INTROSPECTION%%lib/girepository-1.0/XreaderDocument-1.5.typelib
+%%INTROSPECTION%%lib/girepository-1.0/XreaderView-1.5.typelib
libdata/pkgconfig/xreader-document-1.5.pc
libdata/pkgconfig/xreader-view-1.5.pc
%%DBUS%%libexec/xreaderd
@@ -78,6 +89,123 @@ share/man/man1/xreader-thumbnailer.1.gz
share/man/man1/xreader.1.gz
share/applications/xreader.desktop
share/dbus-1/services/org.x.reader.Daemon.service
+%%INTROSPECTION%%share/gir-1.0/XreaderDocument-1.5.gir
+%%INTROSPECTION%%share/gir-1.0/XreaderView-1.5.gir
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvAnnotation.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvAsyncRenderer.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvAttachment.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocument.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentAnnotations.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentAttachments.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentFind.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentFonts.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentForms.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentImages.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentInfo.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentLayers.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentLinks.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentPrint.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentSecurity.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvDocumentTransition.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvFileExporter.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvFormField.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvImage.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvLayer.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvPage.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvRenderContext.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/EvSelection.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/annotation-glossary.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/api-index-full.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/document-data.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/document-helpers.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/document-interfaces.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/home.png
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/index.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/left-insensitive.png
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/left.png
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-EvDocumentMisc.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-Version-checks.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-backends-manager.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-document-factory.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-file-helpers.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-init.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-link-action.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-link-dest.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-link.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-mapping.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument-ev-transition-effect.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/libxreaderdocument.devhelp2
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/licence.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/object-tree.html
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/right-insensitive.png
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/right.png
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/style.css
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/up-insensitive.png
+%%DOCS%%share/gtk-doc/html/libxreaderdocument-1.5/up.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/EvJob.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/annotation-glossary.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/api-index-full.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/home.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/index.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/left-insensitive.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/left.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-annotation-window.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-document-model.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-job-scheduler.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-page-cache.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-print-operation.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-stock-icons.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-view-cursor.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-view-presentation.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-view-type-builtins.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview-ev-view.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/libxreaderview.devhelp2
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/licence.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/object-tree.html
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/right-insensitive.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/right.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/style.css
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/up-insensitive.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/up.png
+%%DOCS%%share/gtk-doc/html/libxreaderview-1.5/view-view.html
+%%DOCS%%share/gtk-doc/html/xreader/EggFindBar.html
+%%DOCS%%share/gtk-doc/html/xreader/EvFileMonitor.html
+%%DOCS%%share/gtk-doc/html/xreader/EvHistory.html
+%%DOCS%%share/gtk-doc/html/xreader/EvMessageArea.html
+%%DOCS%%share/gtk-doc/html/xreader/EvOpenRecentAction.html
+%%DOCS%%share/gtk-doc/html/xreader/EvPageAction.html
+%%DOCS%%share/gtk-doc/html/xreader/EvPageActionWidget.html
+%%DOCS%%share/gtk-doc/html/xreader/EvPasswordView.html
+%%DOCS%%share/gtk-doc/html/xreader/EvProgressMessageArea.html
+%%DOCS%%share/gtk-doc/html/xreader/EvSidebar.html
+%%DOCS%%share/gtk-doc/html/xreader/EvSidebarAttachments.html
+%%DOCS%%share/gtk-doc/html/xreader/EvSidebarLayers.html
+%%DOCS%%share/gtk-doc/html/xreader/EvSidebarLinks.html
+%%DOCS%%share/gtk-doc/html/xreader/EvSidebarPage.html
+%%DOCS%%share/gtk-doc/html/xreader/EvSidebarThumbnails.html
+%%DOCS%%share/gtk-doc/html/xreader/EvWindow.html
+%%DOCS%%share/gtk-doc/html/xreader/api-index-full.html
+%%DOCS%%share/gtk-doc/html/xreader/home.png
+%%DOCS%%share/gtk-doc/html/xreader/index.html
+%%DOCS%%share/gtk-doc/html/xreader/left-insensitive.png
+%%DOCS%%share/gtk-doc/html/xreader/left.png
+%%DOCS%%share/gtk-doc/html/xreader/licence.html
+%%DOCS%%share/gtk-doc/html/xreader/object-tree.html
+%%DOCS%%share/gtk-doc/html/xreader/right-insensitive.png
+%%DOCS%%share/gtk-doc/html/xreader/right.png
+%%DOCS%%share/gtk-doc/html/xreader/style.css
+%%DOCS%%share/gtk-doc/html/xreader/up-insensitive.png
+%%DOCS%%share/gtk-doc/html/xreader/up.png
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-application.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-keyring.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-metadata.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-properties-dialog.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-properties-fonts.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-properties-license.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-utils.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-ev-window-title.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader-frontend.html
+%%DOCS%%share/gtk-doc/html/xreader/xreader.devhelp2
%%HELP%%share/help/C/xreader/figures/xreader_start_window.png
%%HELP%%share/help/C/xreader/index.docbook
%%HELP%%share/help/C/xreader/legal.xml
@@ -203,6 +331,7 @@ share/locale/ie/LC_MESSAGES/xreader.mo
share/locale/is/LC_MESSAGES/xreader.mo
share/locale/it/LC_MESSAGES/xreader.mo
share/locale/ja/LC_MESSAGES/xreader.mo
+share/locale/jv/LC_MESSAGES/xreader.mo
share/locale/ka/LC_MESSAGES/xreader.mo
share/locale/kab/LC_MESSAGES/xreader.mo
share/locale/kk/LC_MESSAGES/xreader.mo
@@ -251,6 +380,7 @@ share/locale/tr/LC_MESSAGES/xreader.mo
share/locale/tt/LC_MESSAGES/xreader.mo
share/locale/uk/LC_MESSAGES/xreader.mo
share/locale/ur/LC_MESSAGES/xreader.mo
+share/locale/uz/LC_MESSAGES/xreader.mo
share/locale/vi/LC_MESSAGES/xreader.mo
share/locale/wa/LC_MESSAGES/xreader.mo
share/locale/zgh/LC_MESSAGES/xreader.mo