gnome-control-center/panels/sharing/meson.build
Jake Dane 89443fe550 desktop: Remove obsolete Bugzilla entries
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.
2022-10-20 13:20:09 +00:00

108 lines
2.1 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
)
polkit_conf = configuration_data()
polkit_conf.set('libexecdir', control_center_libexecdir)
polkit = 'org.gnome.controlcenter.remote-login-helper.policy'
polkit_in = configure_file(
input: polkit + '.in.in',
output: polkit + '.in',
configuration: polkit_conf
)
i18n.merge_file(
input: polkit_in,
output: polkit,
po_dir: po_dir,
install: true,
install_dir: join_paths(control_center_datadir, 'polkit-1', 'actions')
)
sources = files(
'cc-sharing-panel.c',
'cc-media-sharing.c',
'cc-remote-login.c',
'cc-sharing-networks.c',
'cc-gnome-remote-desktop.c',
'cc-tls-certificate.c',
'cc-systemd-service.c',
'file-share-properties.c',
)
resource_data = files(
'cc-sharing-panel.ui',
'cc-sharing-networks.ui',
)
sources += gnome.compile_resources(
'cc-' + cappletname + '-resources',
cappletname + '.gresource.xml',
c_name: 'cc_' + cappletname,
dependencies: resource_data,
export: true
)
settings_daemon = 'org.gnome.SettingsDaemon'
gdbus = settings_daemon + '.Sharing'
sources += gnome.gdbus_codegen(
gdbus,
gdbus + '.xml',
interface_prefix: settings_daemon + '.',
namespace: 'Gsd'
)
cflags += [
'-DLIBEXECDIR="@0@"'.format(control_center_libexecdir),
'-DSYSCONFDIR="@0@"'.format(control_center_sysconfdir)
]
libsecret_dep = dependency('libsecret-1')
gnutls_dep = dependency('gnutls')
panels_libs += static_library(
cappletname,
sources: sources,
include_directories: [ top_inc, common_inc ],
dependencies: [
common_deps,
libsecret_dep,
gnutls_dep,
gcr_dep,
pwquality_dep,
],
c_args: cflags
)
name = 'cc-remote-login-helper'
deps = [
gio_dep,
glib_dep,
]
executable(
name,
sources: [
name + '.c',
'cc-systemd-service.c',
],
include_directories: top_inc,
dependencies: deps,
c_args: cflags,
install: true,
install_dir: control_center_libexecdir
)
subdir('icons')