The `X-GNOME-Bugzilla-*` entries were for use by bug-buddy, a GNOME 2 technology that's been gone for over a decade. These entries are obsolete and can be removed from all desktop files. The `X-GNOME-Settings-Panel` entry is also obsolete as far as I can tell and only these panels had it in their desktop file: notifications, sharing, sound and user-accounts. These entries can also be removed. After removing the `X-GNOME-Bugzilla-*` entries, the desktop files have no more variables in them. The meson `configure_file` step is therefor pointless—there are no variables to configure. As such the `*.desktop.in.in` files are renamed to `*.desktop.in` to reflect this and `meson.build` files are modified to remove `configure_file` step.
70 lines
1.4 KiB
Meson
70 lines
1.4 KiB
Meson
panels_list += cappletname
|
|
desktop = 'gnome-@0@-panel.desktop'.format(cappletname)
|
|
|
|
i18n.merge_file(
|
|
type: 'desktop',
|
|
input: desktop + '.in',
|
|
output: desktop,
|
|
po_dir: po_dir,
|
|
install: true,
|
|
install_dir: control_center_desktopdir
|
|
)
|
|
|
|
sources = files(
|
|
'cc-printers-panel.c',
|
|
'pp-cups.c',
|
|
'pp-details-dialog.c',
|
|
'pp-host.c',
|
|
'pp-ipp-option-widget.c',
|
|
'pp-job.c',
|
|
'pp-job-row.c',
|
|
'pp-jobs-dialog.c',
|
|
'pp-maintenance-command.c',
|
|
'pp-new-printer-dialog.c',
|
|
'pp-new-printer.c',
|
|
'pp-options-dialog.c',
|
|
'pp-ppd-option-widget.c',
|
|
'pp-ppd-selection-dialog.c',
|
|
'pp-print-device.c',
|
|
'pp-printer-entry.c',
|
|
'pp-printer.c',
|
|
'pp-samba.c',
|
|
'pp-utils.c'
|
|
)
|
|
|
|
resource_data = files(
|
|
'new-printer-dialog.ui',
|
|
'ppd-selection-dialog.ui',
|
|
'pp-details-dialog.ui',
|
|
'pp-job-row.ui',
|
|
'pp-jobs-dialog.ui',
|
|
'pp-options-dialog.ui',
|
|
'printer-entry.ui',
|
|
'printers.ui'
|
|
)
|
|
|
|
sources += gnome.compile_resources(
|
|
'cc-' + cappletname + '-resources',
|
|
cappletname + '.gresource.xml',
|
|
c_name: 'cc_' + cappletname,
|
|
dependencies: resource_data,
|
|
export: true
|
|
)
|
|
|
|
deps = common_deps + [
|
|
cups_dep,
|
|
m_dep,
|
|
polkit_gobject_dep,
|
|
dependency('smbclient')
|
|
]
|
|
|
|
printers_panel_lib = static_library(
|
|
cappletname,
|
|
sources: sources,
|
|
include_directories: [top_inc, common_inc, shell_inc],
|
|
dependencies: deps,
|
|
c_args: cflags + cups_cflags,
|
|
)
|
|
panels_libs += [ printers_panel_lib ]
|
|
|
|
subdir('icons')
|