pidgin/pidgin

Remove the PidginProxyOptions widget

20 months ago, Gary Kramlich
f9bb5493c0a0
Remove the PidginProxyOptions widget

This was created to try and save some duplication, but then we moved everything
to list boxes and avoided a bunch of duplication.

Testing Done:
* Opened the account editor and preferences and made sure there were no issues.
* Ran `ninja pidgin-pot`.

Reviewed at https://reviews.imfreedom.org/r/1872/
PURPLE3_URL_HANDLER_DESKTOP = 'purple3-url-handler.desktop'
i18n = import('i18n')
desktop_file_in = configure_file(
input : PURPLE3_URL_HANDLER_DESKTOP + '.in.in',
output : PURPLE3_URL_HANDLER_DESKTOP + '.in',
configuration : conf)
i18n.merge_file(
input : desktop_file_in,
output : PURPLE3_URL_HANDLER_DESKTOP,
po_dir : meson.project_source_root() / 'po',
type : 'desktop',
install : true,
install_dir : get_option('datadir') / 'applications')
schemas_dir = get_option('prefix') / get_option('datadir') / 'glib-2.0' / 'schemas'
settings_schemas = [
'im.pidgin.Purple.gschema.xml',
]
install_data(settings_schemas, install_dir: schemas_dir)
gnome.post_install(glib_compile_schemas: true)
# Compile the schemas in the current directory; this is only useful for testing
gnome.compile_schemas(depend_files: files(settings_schemas))
testenv.prepend('GSETTINGS_SCHEMA_DIR', meson.current_build_dir())