diff options
author | Oz Tiram <[email protected]> | 2025-04-01 22:54:48 +0200 |
---|---|---|
committer | Luke from DC <[email protected]> | 2025-04-04 22:19:13 +0000 |
commit | 65b96812c421b59ec41d38daf07413015f5ccc85 (patch) | |
tree | da448a2addce79e0217ab71577b9f20cba246f51 | |
parent | 5ac96fcd0d9aa5697450ac6f9ba8e420be84e3cc (diff) | |
download | atril-65b96812c421b59ec41d38daf07413015f5ccc85.tar.bz2 atril-65b96812c421b59ec41d38daf07413015f5ccc85.tar.xz |
chore: clean references to xreader
Signed-off-by: Oz Tiram <[email protected]>
-rw-r--r-- | backend/comics/meson.build | 4 | ||||
-rw-r--r-- | help/meson.build | 2 | ||||
-rw-r--r-- | help/reference/libdocument/meson.build | 8 | ||||
-rw-r--r-- | help/reference/libview/meson.build | 8 | ||||
-rw-r--r-- | libdocument/meson.build | 6 | ||||
-rw-r--r-- | libview/meson.build | 4 |
6 files changed, 16 insertions, 16 deletions
diff --git a/backend/comics/meson.build b/backend/comics/meson.build index bcb935eb..abc2fdc3 100644 --- a/backend/comics/meson.build +++ b/backend/comics/meson.build @@ -2,8 +2,8 @@ backend_desktop_conf = configuration_data() backend_desktop_conf.set('COMICS_MIME_TYPES', comic_mimetypes) backend_desktop = configure_file( - input: 'comicsdocument.xreader-backend.in', - output: 'comicsdocument.xreader-backend', + input: 'comicsdocument.atril-backend.in', + output: 'comicsdocument.atril-backend', configuration: backend_desktop_conf, install: true, install_dir: backendsdir, diff --git a/help/meson.build b/help/meson.build index fd21cffd..dd9fcad3 100644 --- a/help/meson.build +++ b/help/meson.build @@ -24,7 +24,7 @@ if get_option('help_files') ] help_media = [ - 'figures/xreader_start_window.png', + 'figures/atril_start_window.png', ] gnome.yelp( diff --git a/help/reference/libdocument/meson.build b/help/reference/libdocument/meson.build index 6f4720a4..2d44a400 100644 --- a/help/reference/libdocument/meson.build +++ b/help/reference/libdocument/meson.build @@ -14,10 +14,10 @@ libdoc_doc_deps = declare_dependency( ) gnome.gtkdoc( - 'libxreaderdocument', + 'libdocument', mode: 'xml', - main_xml: 'libxreaderdocument-docs.xml', - gobject_typesfile: files('libxreaderdocument.types'), + main_xml: 'libdocument-docs.xml', + gobject_typesfile: files('libdocument.types'), src_dir: [ join_paths(meson.source_root(), 'libdocument'), ], @@ -26,5 +26,5 @@ gnome.gtkdoc( mkdb_args: ['--xml-mode', '--output-format=xml', '--name-space=ev'], fixxref_args: fixref_args, install: true, - install_dir: 'libxreaderdocument-' + api_version, + install_dir: 'libocument-' + api_version, ) diff --git a/help/reference/libview/meson.build b/help/reference/libview/meson.build index cc7e546c..776c13f4 100644 --- a/help/reference/libview/meson.build +++ b/help/reference/libview/meson.build @@ -14,10 +14,10 @@ libview_doc_deps = declare_dependency( ) gnome.gtkdoc( - 'libxreaderview', + 'libview', mode: 'xml', - main_xml: 'libxreaderview-docs.xml', - gobject_typesfile: files('libxreaderview.types'), + main_xml: 'libview-docs.xml', + gobject_typesfile: files('libview.types'), src_dir: [ join_paths(meson.source_root(), 'libview'), ], @@ -27,5 +27,5 @@ gnome.gtkdoc( cflags: '-DATRIL_COMPILATION', fixxref_args: fixref_args, install: true, - install_dir: 'libxreaderview-' + api_version, + install_dir: 'libview-' + api_version, ) diff --git a/libdocument/meson.build b/libdocument/meson.build index a8b7d387..5dd9fe33 100644 --- a/libdocument/meson.build +++ b/libdocument/meson.build @@ -124,7 +124,7 @@ libdocument_deps = [ ] libdocument = library( - 'xreaderdocument', + 'libdocument', libdocument_private_headers + libdocument_sources, dependencies: libdocument_deps, include_directories: include_root, @@ -158,7 +158,7 @@ if get_option('introspection') libdocument_gir = gnome.generate_gir( libdocument, - namespace: 'XreaderDocument', + namespace: 'AtrilDocument', nsversion: api_version, sources: libdocument_sources, identifier_prefix: 'Ev', @@ -167,6 +167,6 @@ if get_option('introspection') install: true, install_dir_typelib: join_paths(libdir, 'girepository-1.0'), install_dir_gir: join_paths(datadir, 'gir-1.0'), - export_packages: 'xreader-document-' + api_version, + export_packages: 'libdocument-' + api_version, ) endif diff --git a/libview/meson.build b/libview/meson.build index 4699ee26..806c51d0 100644 --- a/libview/meson.build +++ b/libview/meson.build @@ -79,7 +79,7 @@ if get_option('epub') endif libview = library( - 'xreaderview', + 'libview', libview_sources + libview_private_headers + libdoc_enums + libview_marshal, include_directories: include_dirs, dependencies: libview_deps, @@ -111,6 +111,6 @@ if get_option('introspection') install: true, install_dir_typelib: join_paths(libdir, 'girepository-1.0'), install_dir_gir: join_paths(datadir, 'gir-1.0'), - export_packages: ['xreader-view-' + api_version, 'xreader-document-' + api_version], + export_packages: ['libview-' + api_version, 'libdocument-' + api_version], ) endif |