summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2020-09-10 10:12:53 +0200
committerraveit65 <[email protected]>2020-09-10 10:12:53 +0200
commit728d1cbcfae014bfdfc559d2a58f40036a08d0d1 (patch)
tree89e93abb6dc0f295314b5bd02188d9bef905ddf4
parent12236b3e7c98e7e08cf11020ad4b171e5df401c9 (diff)
downloadmate-power-manager-728d1cbcfae014bfdfc559d2a58f40036a08d0d1.tar.bz2
mate-power-manager-728d1cbcfae014bfdfc559d2a58f40036a08d0d1.tar.xz
Revert "add meson project"
This reverts commit 1db4b409322e559a3d3a03677dd482a0613f3b29.
-rw-r--r--applets/brightness/config.h.in32
-rw-r--r--applets/brightness/meson.build59
-rw-r--r--applets/inhibit/config.h.in32
-rw-r--r--applets/inhibit/meson.build58
-rw-r--r--applets/meson.build2
-rw-r--r--data/icons/meson.build56
-rw-r--r--data/meson.build93
-rwxr-xr-xdata/meson_post_install.py10
-rw-r--r--help/LINGUAS116
-rw-r--r--help/meson.build22
-rw-r--r--meson.build69
-rw-r--r--meson_options.txt4
-rw-r--r--po/meson.build1
-rw-r--r--policy/meson.build17
-rw-r--r--src/config.h.in35
-rw-r--r--src/meson.build151
16 files changed, 0 insertions, 757 deletions
diff --git a/applets/brightness/config.h.in b/applets/brightness/config.h.in
deleted file mode 100644
index 8753c98..0000000
--- a/applets/brightness/config.h.in
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- *
- * Copyright (C) 2020 Victor A. Santos <[email protected]>
- *
- * Licensed under the GNU General Public License Version 2
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-/* Project */
-#define VERSION "@version@"
-
-/* Directories */
-#define SYSCONFDIR "@sysconfdir@"
-#define DATADIR "@datadir@"
-#define BINDIR "@bindir@"
-#define SBINDIR "@sbindir@"
-#define MATELOCALEDIR "@localedir@"
-#define GPM_ICONS_DATA "@iconsdir@"
-#define BRIGHTNESS_MENU_UI_DIR "@uidir@"
diff --git a/applets/brightness/meson.build b/applets/brightness/meson.build
deleted file mode 100644
index 3394551..0000000
--- a/applets/brightness/meson.build
+++ /dev/null
@@ -1,59 +0,0 @@
-conf_data = configuration_data()
-conf_data.set('version', meson.project_version())
-conf_data.set('sysconfdir', sysconfdir_path)
-conf_data.set('datadir', datadir_path)
-conf_data.set('bindir', bindir_path)
-conf_data.set('sbindir', sbindir_path)
-conf_data.set('localedir', localedir_path)
-conf_data.set('iconsdir', iconsdir_path)
-conf_data.set('uidir', uidir_path)
-conf_data.set('gettext_package', meson.project_name())
-
-configure_file(input: 'config.h.in', output: 'config.h', configuration: conf_data)
-
-executable(
- 'mate-brightness-applet',
- [
- 'brightness-applet.c',
- 'gpm-common.c',
- ],
- dependencies: dependencies,
- install: true,
- install_dir: libexecdir_path
-)
-
-desktop_data = configuration_data()
-desktop_data.set('LIBEXECDIR', libexecdir_path)
-desktop_data.set('VERSION', meson.project_version())
-
-desktop_in = configure_file(
- input: 'org.mate.BrightnessApplet.mate-panel-applet.desktop.in.in',
- output: 'org.mate.BrightnessApplet.mate-panel-applet.desktop.in',
- configuration: desktop_data
-)
-
-i18n.merge_file(
- input: desktop_in,
- output: 'org.mate.BrightnessApplet.mate-panel-applet.desktop',
- type: 'desktop',
- po_dir: podir,
- install: true,
- install_dir: appletdir_path,
-)
-
-service_data = configuration_data()
-service_data.set('LIBEXECDIR', libexecdir_path)
-
-service_file = configure_file(
- input: 'org.mate.panel.applet.BrightnessAppletFactory.service.in',
- output: 'org.mate.panel.applet.BrightnessAppletFactory.service',
- configuration: service_data,
- install: true,
- install_dir: servicedir_path
-)
-
-install_data(
- ['brightness-applet-menu.xml'],
- install_dir: uidir_path
-)
-
diff --git a/applets/inhibit/config.h.in b/applets/inhibit/config.h.in
deleted file mode 100644
index ccff4c9..0000000
--- a/applets/inhibit/config.h.in
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- *
- * Copyright (C) 2020 Victor A. Santos <[email protected]>
- *
- * Licensed under the GNU General Public License Version 2
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-/* Project */
-#define VERSION "@version@"
-
-/* Directories */
-#define SYSCONFDIR "@sysconfdir@"
-#define DATADIR "@datadir@"
-#define BINDIR "@bindir@"
-#define SBINDIR "@sbindir@"
-#define MATELOCALEDIR "@localedir@"
-#define GPM_ICONS_DATA "@iconsdir@"
-#define INHIBIT_MENU_UI_DIR "@uidir@"
diff --git a/applets/inhibit/meson.build b/applets/inhibit/meson.build
deleted file mode 100644
index ed807df..0000000
--- a/applets/inhibit/meson.build
+++ /dev/null
@@ -1,58 +0,0 @@
-conf_data = configuration_data()
-conf_data.set('version', meson.project_version())
-conf_data.set('sysconfdir', sysconfdir_path)
-conf_data.set('datadir', datadir_path)
-conf_data.set('bindir', bindir_path)
-conf_data.set('sbindir', sbindir_path)
-conf_data.set('localedir', localedir_path)
-conf_data.set('iconsdir', iconsdir_path)
-conf_data.set('uidir', uidir_path)
-conf_data.set('gettext_package', meson.project_name())
-
-configure_file(input: 'config.h.in', output: 'config.h', configuration: conf_data)
-
-executable(
- 'mate-inhibit-applet',
- [
- 'inhibit-applet.c',
- 'gpm-common.c',
- ],
- dependencies: dependencies,
- install: true,
- install_dir: libexecdir_path
-)
-
-desktop_data = configuration_data()
-desktop_data.set('LIBEXECDIR', libexecdir_path)
-desktop_data.set('VERSION', meson.project_version())
-
-desktop_in = configure_file(
- input: 'org.mate.InhibitApplet.mate-panel-applet.desktop.in.in',
- output: 'org.mate.InhibitApplet.mate-panel-applet.desktop.in',
- configuration: desktop_data
-)
-
-i18n.merge_file(
- input: desktop_in,
- output: 'org.mate.InhibitApplet.mate-panel-applet.desktop',
- type: 'desktop',
- po_dir: podir,
- install: true,
- install_dir: appletdir_path,
-)
-
-service_data = configuration_data()
-service_data.set('LIBEXECDIR', libexecdir_path)
-
-service_file = configure_file(
- input: 'org.mate.panel.applet.InhibitAppletFactory.service.in',
- output: 'org.mate.panel.applet.InhibitAppletFactory.service',
- configuration: service_data,
- install: true,
- install_dir: servicedir_path
-)
-
-install_data(
- ['inhibit-applet-menu.xml'],
- install_dir: uidir_path
-)
diff --git a/applets/meson.build b/applets/meson.build
deleted file mode 100644
index 521132d..0000000
--- a/applets/meson.build
+++ /dev/null
@@ -1,2 +0,0 @@
-subdir('brightness')
-subdir('inhibit')
diff --git a/data/icons/meson.build b/data/icons/meson.build
deleted file mode 100644
index 889731f..0000000
--- a/data/icons/meson.build
+++ /dev/null
@@ -1,56 +0,0 @@
-actioniconsdir_path = join_paths(pkgdatadir_path, 'icons', 'hicolor')
-appiconsdir_path = join_paths(datadir_path, 'icons', 'hicolor')
-statusiconsdir_path = join_paths(pkgdatadir_path, 'icons', 'hicolor')
-
-foreach s: ['16x16', '22x22', '24x24', '32x32', '48x48', '64x64', '96x96', '128x128', '256x256']
- install_data(
- [
- join_paths(s, 'actions', 'gpm-hibernate.png'),
- join_paths(s, 'actions', 'gpm-suspend.png'),
- ],
- install_dir: join_paths(actioniconsdir_path, s, 'actions')
- )
-
- install_data(
- [
- join_paths(s, 'apps', 'mate-brightness-applet.png'),
- join_paths(s, 'apps', 'mate-inhibit-applet.png'),
- join_paths(s, 'apps', 'mate-power-manager.png'),
- join_paths(s, 'apps', 'mate-power-statistics.png'),
- ],
- install_dir: join_paths(appiconsdir_path, s, 'apps')
- )
- install_data(
- [
- join_paths(s, 'status', 'gpm-ac-adapter.png'), join_paths(s, 'status', 'gpm-keyboard-080.png'),
- join_paths(s, 'status', 'gpm-battery-000-charging.png'), join_paths(s, 'status', 'gpm-keyboard-100.png'),
- join_paths(s, 'status', 'gpm-battery-000.png'), join_paths(s, 'status', 'gpm-mouse-000.png'),
- join_paths(s, 'status', 'gpm-battery-020-charging.png'), join_paths(s, 'status', 'gpm-mouse-020.png'),
- join_paths(s, 'status', 'gpm-battery-020.png'), join_paths(s, 'status', 'gpm-mouse-040.png'),
- join_paths(s, 'status', 'gpm-battery-040-charging.png'), join_paths(s, 'status', 'gpm-mouse-060.png'),
- join_paths(s, 'status', 'gpm-battery-040.png'), join_paths(s, 'status', 'gpm-mouse-080.png'),
- join_paths(s, 'status', 'gpm-battery-060-charging.png'), join_paths(s, 'status', 'gpm-mouse-100.png'),
- join_paths(s, 'status', 'gpm-battery-060.png'), join_paths(s, 'status', 'gpm-phone-000.png'),
- join_paths(s, 'status', 'gpm-battery-080-charging.png'), join_paths(s, 'status', 'gpm-phone-020.png'),
- join_paths(s, 'status', 'gpm-battery-080.png'), join_paths(s, 'status', 'gpm-phone-040.png'),
- join_paths(s, 'status', 'gpm-battery-100-charging.png'), join_paths(s, 'status', 'gpm-phone-060.png'),
- join_paths(s, 'status', 'gpm-battery-100.png'), join_paths(s, 'status', 'gpm-phone-080.png'),
- join_paths(s, 'status', 'gpm-battery-charged.png'), join_paths(s, 'status', 'gpm-phone-100.png'),
- join_paths(s, 'status', 'gpm-battery-empty.png'), join_paths(s, 'status', 'gpm-ups-000-charging.png'),
- join_paths(s, 'status', 'gpm-battery-missing.png'), join_paths(s, 'status', 'gpm-ups-000.png'),
- join_paths(s, 'status', 'gpm-brightness-kbd-disabled.png'), join_paths(s, 'status', 'gpm-ups-020-charging.png'),
- join_paths(s, 'status', 'gpm-brightness-kbd-invalid.png'), join_paths(s, 'status', 'gpm-ups-020.png'),
- join_paths(s, 'status', 'gpm-brightness-kbd.png'), join_paths(s, 'status', 'gpm-ups-040-charging.png'),
- join_paths(s, 'status', 'gpm-brightness-lcd-disabled.png'), join_paths(s, 'status', 'gpm-ups-040.png'),
- join_paths(s, 'status', 'gpm-brightness-lcd-invalid.png'), join_paths(s, 'status', 'gpm-ups-060-charging.png'),
- join_paths(s, 'status', 'gpm-brightness-lcd.png'), join_paths(s, 'status', 'gpm-ups-060.png'),
- join_paths(s, 'status', 'gpm-inhibit-invalid.png'), join_paths(s, 'status', 'gpm-ups-080-charging.png'),
- join_paths(s, 'status', 'gpm-inhibit.png'), join_paths(s, 'status', 'gpm-ups-080.png'),
- join_paths(s, 'status', 'gpm-keyboard-000.png'), join_paths(s, 'status', 'gpm-ups-100-charging.png'),
- join_paths(s, 'status', 'gpm-keyboard-020.png'), join_paths(s, 'status', 'gpm-ups-100.png'),
- join_paths(s, 'status', 'gpm-keyboard-040.png'), join_paths(s, 'status', 'gpm-ups-missing.png'),
- join_paths(s, 'status', 'gpm-keyboard-060.png'),
- ],
- install_dir: join_paths(statusiconsdir_path, s, 'status')
- )
-endforeach
diff --git a/data/meson.build b/data/meson.build
deleted file mode 100644
index ad34149..0000000
--- a/data/meson.build
+++ /dev/null
@@ -1,93 +0,0 @@
-preferences_desktop_data = configuration_data()
-preferences_desktop_data.set('VERSION', meson.project_version())
-
-preferences_desktop = configure_file(
- input: 'mate-power-preferences.desktop.in.in',
- output: 'mate-power-preferences.desktop.in',
- configuration: preferences_desktop_data
-)
-
-statistics_desktop_data = configuration_data()
-statistics_desktop_data.set('VERSION', meson.project_version())
-
-statistics_desktop = configure_file(
- input: 'mate-power-statistics.desktop.in.in',
- output: 'mate-power-statistics.desktop.in',
- configuration: statistics_desktop_data
-)
-
-mpm_autostart_data = configuration_data()
-mpm_autostart_data.set('VERSION', meson.project_version())
-
-mpm_autostart = configure_file(
- input: 'mate-power-manager.desktop.in.in',
- output: 'mate-power-manager.desktop.in',
- configuration: mpm_autostart_data
-)
-
-mpm_service_data = configuration_data()
-mpm_service_data.set('servicedir', servicedir_path)
-
-mpm_service = configure_file(
- input: 'org.mate.PowerManager.service.in',
- output: 'org.mate.PowerManager.service',
- configuration: mpm_service_data,
- install: true,
- install_dir: servicedir_path
-)
-
-mpm_gsettings_schema_data = configuration_data()
-mpm_gsettings_schema_data.set('GETTEXT_PACKAGE', meson.project_name())
-
-mpm_gsettings_schema = configure_file(
- input: 'org.mate.power-manager.gschema.xml.in',
- output: 'org.mate.power-manager.gschema.xml',
- configuration: mpm_gsettings_schema_data,
- install: true,
- install_dir: join_paths(datadir_path, 'glib-2.0', 'schemas')
-)
-meson.add_install_script('meson_post_install.py')
-
-i18n.merge_file(
- input: preferences_desktop,
- output: 'mate-power-preferences.desktop',
- type: 'desktop',
- po_dir: podir,
- install: true,
- install_dir: desktopdir_path
-)
-
-i18n.merge_file(
- input: statistics_desktop,
- output: 'mate-power-statistics.desktop',
- type: 'desktop',
- po_dir: podir,
- install: true,
- install_dir: desktopdir_path
-)
-
-i18n.merge_file(
- input: mpm_autostart,
- output: 'mate-power-manager.desktop',
- type: 'desktop',
- po_dir: podir,
- install: true,
- install_dir: join_paths(sysconfdir_path, 'xdg', 'autostart')
-)
-
-install_man(
- [
- 'mate-power-manager.1',
- 'mate-power-backlight-helper.1',
- 'mate-power-statistics.1',
- 'mate-power-preferences.1'
- ],
- install_dir: mandir_path
-)
-
-install_data(
- ['acme.ui'],
- install_dir: pkgdatadir_path
-)
-
-subdir('icons')
diff --git a/data/meson_post_install.py b/data/meson_post_install.py
deleted file mode 100755
index d0248f4..0000000
--- a/data/meson_post_install.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python3
-
-import os
-import subprocess
-
-schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas')
-
-if not os.environ.get('DESTDIR'):
- print('Compiling gsettings schemas...')
- subprocess.call(['glib-compile-schemas', schemadir])
diff --git a/help/LINGUAS b/help/LINGUAS
deleted file mode 100644
index 04a8aa0..0000000
--- a/help/LINGUAS
+++ /dev/null
@@ -1,116 +0,0 @@
-af
-am
-ar
-as
-ast
-az
-be
-bg
-bn
-bn_IN
-br
-bs
-ca
-ca@valencia
-cmn
-crh
-cs
-cy
-da
-de
-dz
-el
-en_AU
-en_CA
-en_GB
-eo
-es
-es_AR
-es_CL
-es_CO
-es_ES
-es_MX
-es_PR
-et
-eu
-fa
-fi
-fr
-frp
-fur
-fy
-ga
-gl
-gu
-ha
-he
-hi
-hr
-hu
-hy
-id
-ie
-ig
-is
-it
-ja
-jv
-ka
-kab
-kk
-kn
-ko
-ku
-ku_IQ
-ky
-la
-lt
-lv
-mai
-mg
-mi
-mk
-ml
-mn
-mr
-ms
-nb
-nds
-ne
-nl
-nn
-nso
-oc
-or
-pa
-pl
-ps
-pt
-pt_BR
-ro
-ru
-si
-sk
-sl
-sq
-sr
-sr@latin
-sv
-ta
-te
-th
-tk
-tr
-ug
-uk
-ur
-uz
-vi
-wa
-xh
-yo
-zh_CN
-zh-Hans
-zh_HK
-zh_TW
-zu
diff --git a/help/meson.build b/help/meson.build
deleted file mode 100644
index 24b8c4c..0000000
--- a/help/meson.build
+++ /dev/null
@@ -1,22 +0,0 @@
-gnome.yelp(
- meson.project_name(),
- media: [
- 'figures/applet-brightness.png',
- 'figures/applet-inhibit.png',
- 'figures/gpm-cell-capacity.png',
- 'figures/gpm-charged.png',
- 'figures/gpm-critical.png',
- 'figures/gpm-low.png',
- 'figures/gpm-prefs-ac.png',
- 'figures/gpm-prefs-battery.png',
- 'figures/gpm-prefs-general.png',
- 'figures/gpm-stats-graph.png',
- 'figures/gpm-suspend-problem.png',
- 'figures/gpm-unplugged.png',
- 'figures/gs-prefs.png',
- ],
- sources: [
- 'index.docbook',
- 'legal.xml'
- ]
-)
diff --git a/meson.build b/meson.build
deleted file mode 100644
index 914f3f5..0000000
--- a/meson.build
+++ /dev/null
@@ -1,69 +0,0 @@
-project('mate-power-manager', 'c', version : '1.24.0')
-
-gnome = import('gnome')
-dbus_binding_tool = find_program('dbus-binding-tool')
-
-i18n = import('i18n')
-add_project_arguments(
- [
- '-DGETTEXT_PACKAGE="' + meson.project_name() + '"',
- '-DHAVE_CONFIG_H'
- ],
- language: 'c'
-)
-
-cc = meson.get_compiler('c')
-m_dep = cc.find_library('m', required: false)
-
-dependencies = [
- m_dep,
- dependency('glib-2.0', version: '>=2.50.0'),
- dependency('gobject-2.0'),
- dependency('gio-2.0 ', version: '>=2.50.0'),
- dependency('gio-unix-2.0'),
- dependency('libcanberra-gtk3', version: '>=0.10'),
- dependency('dbus-glib-1', version: '>=0.70'),
- dependency('dbus-1', version: '>=1.0'),
- dependency('gthread-2.0',),
- dependency('gtk+-3.0', version: '>=3.22.0'),
- dependency('cairo', version: '>=1.0.0'),
- dependency('gdk-3.0', version: '>=3.22.0'),
- dependency('gdk-x11-3.0', version: '>=3.22.0'),
- dependency('xrandr', version: '>=1.3.0'),
- dependency('x11'),
- dependency('xext'),
- dependency('xproto', version: '>=7.0.15'),
- dependency('libnotify', version: '>=0.7.0'),
- dependency('upower-glib', version: '>=0.99.8'),
- dependency('gnome-keyring-1', version: '>=3.0.0', required: get_option('keyring')),
-]
-
-# defult paths
-prefix_path = get_option('prefix')
-sysconfdir_path = join_paths(prefix_path, get_option('sysconfdir'))
-datadir_path = join_paths(prefix_path, get_option('datadir'))
-pkgdatadir_path = join_paths(datadir_path, meson.project_name())
-bindir_path = join_paths(prefix_path, get_option('bindir'))
-sbindir_path = join_paths(prefix_path, get_option('sbindir'))
-libexecdir_path = join_paths(prefix_path, get_option('libexecdir'))
-localedir_path = join_paths(prefix_path, get_option('localedir'))
-iconsdir_path = join_paths(datadir_path, 'icons')
-uidir_path = join_paths(pkgdatadir_path, 'ui')
-servicedir_path = join_paths(datadir_path, 'dbus-1', 'services')
-appletdir_path = join_paths(datadir_path, 'mate-panel', 'applets')
-desktopdir_path = join_paths(datadir_path, 'applications')
-mandir_path = join_paths(prefix_path, get_option('mandir'))
-
-podir = join_paths(meson.source_root(), 'po')
-
-if get_option('applets').enabled()
- dependencies += dependency('libmatepanelapplet-4.0')
-
- subdir('applets')
-endif
-
-subdir('data')
-subdir('help')
-subdir('po')
-subdir('policy')
-subdir('src')
diff --git a/meson_options.txt b/meson_options.txt
deleted file mode 100644
index c8ed4ef..0000000
--- a/meson_options.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-option('enable-deprecated', type: 'boolean', value: false, description: 'Warn about deprecated usages')
-option('keyring', type: 'feature', value: 'auto', description: 'Enable the use of gnome-keyring')
-option('applets', type: 'feature', value: 'enabled', description: 'Build the extra power applets')
-option('with-dbus-services', type: 'string', description: 'where D-BUS services directory is')
diff --git a/po/meson.build b/po/meson.build
deleted file mode 100644
index e9b77d7..0000000
--- a/po/meson.build
+++ /dev/null
@@ -1 +0,0 @@
-i18n.gettext(meson.project_name(), preset: 'glib')
diff --git a/policy/meson.build b/policy/meson.build
deleted file mode 100644
index 1b012b0..0000000
--- a/policy/meson.build
+++ /dev/null
@@ -1,17 +0,0 @@
-backlight_policy_data = configuration_data()
-backlight_policy_data.set('sbindir', sbindir_path)
-
-backlight_policy = configure_file(
- input: 'org.mate.power.policy.in2',
- output: 'org.mate.power.policy.in',
- configuration: backlight_policy_data
-)
-
-i18n.merge_file(
- input: backlight_policy,
- output: 'org.mate.power.policy',
- type: 'xml',
- po_dir: podir,
- install: true,
- install_dir: join_paths(datadir_path, 'polkit-1', 'actions')
-)
diff --git a/src/config.h.in b/src/config.h.in
deleted file mode 100644
index 25af2cd..0000000
--- a/src/config.h.in
+++ /dev/null
@@ -1,35 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- *
- * Copyright (C) 2020 Victor A. Santos <[email protected]>
- *
- * Licensed under the GNU General Public License Version 2
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-/* Project */
-#define VERSION "@version@"
-
-/* Directories */
-#define SYSCONFDIR "@sysconfdir@"
-#define DATADIR "@datadir@"
-#define BINDIR "@bindir@"
-#define SBINDIR "@sbindir@"
-#define MATELOCALEDIR "@localedir@"
-#define GPM_ICONS_DATA "@iconsdir@"
-#define GTKBUILDERDIR "@datadir@"
-
-/* Features */
-#mesondefine WITH_KEYRING
diff --git a/src/meson.build b/src/meson.build
deleted file mode 100644
index 0c72490..0000000
--- a/src/meson.build
+++ /dev/null
@@ -1,151 +0,0 @@
-# configuration
-conf_data = configuration_data()
-conf_data.set('version', meson.project_version())
-conf_data.set('sysconfdir', sysconfdir_path)
-conf_data.set('datadir', datadir_path)
-conf_data.set('bindir', bindir_path)
-conf_data.set('sbindir', sbindir_path)
-conf_data.set('localedir', localedir_path)
-conf_data.set('iconsdir', iconsdir_path)
-conf_data.set('gettext_package', meson.project_name())
-conf_data.set('WITH_KEYRING', get_option('keyring').enabled())
-
-configure_file(input: 'config.h.in', output: 'config.h', configuration: conf_data)
-
-gpm_marshal = gnome.genmarshal('gpm-marshal', sources: 'gpm-marshal.list', prefix: 'gpm_marshal')
-
-dbus_binding_powermanager = custom_target('org.mate.PowerManager.h',
- input: 'org.mate.PowerManager.xml',
- output: 'org.mate.PowerManager.h',
- command: [dbus_binding_tool, '--prefix=gpm_manager', '--mode=glib-server', '--output=@OUTPUT@', '@INPUT@']
-)
-
-dbus_binding_backlight = custom_target('org.mate.PowerManager.Backlight.h',
- input: 'org.mate.PowerManager.Backlight.xml',
- output: 'org.mate.PowerManager.Backlight.h',
- command: [dbus_binding_tool, '--prefix=gpm_backlight', '--mode=glib-server', '--output=@OUTPUT@', '@INPUT@']
-)
-
-dbus_binding_kbdbacklight = custom_target('org.mate.PowerManager.KbdBacklight.h',
- input: 'org.mate.PowerManager.KbdBacklight.xml',
- output: 'org.mate.PowerManager.KbdBacklight.h',
- command: [dbus_binding_tool, '--prefix=gpm_kbd_backlight', '--mode=glib-server', '--output=@OUTPUT@', '@INPUT@']
-)
-
-statics_resources = gnome.compile_resources(
- 'mate-power-statistics-resources',
- '../data/org.mate.power-manager.statistics.gresource.xml',
- c_name: 'statistics',
- source_dir: '../data'
-)
-
-preferences_resources = gnome.compile_resources(
- 'mate-power-preferences-resources',
- '../data/org.mate.power-manager.preferences.gresource.xml',
- c_name: 'preferences',
- source_dir: '../data'
-)
-
-power_manager_resources = gnome.compile_resources(
- 'mate-power-manager-resources',
- '../data/org.mate.power-manager.manager.gresource.xml',
- c_name: 'preferences',
- source_dir: '../data'
-)
-
-src_libgpmshared_a = [
- gpm_marshal,
- dbus_binding_powermanager,
- dbus_binding_backlight,
- dbus_binding_kbdbacklight,
- 'egg-color.c',
- 'egg-color.h',
- 'egg-precision.h',
- 'egg-precision.c',
- 'egg-array-float.c',
- 'egg-array-float.h',
- 'egg-idletime.h',
- 'egg-idletime.c',
- 'egg-discrete.h',
- 'egg-discrete.c',
- 'egg-console-kit.h',
- 'egg-console-kit.c',
- 'gpm-common.h',
- 'gpm-common.c',
- 'gpm-brightness.h',
- 'gpm-brightness.c',
- 'gpm-upower.c',
- 'gpm-upower.h',
-]
-
-mpm_static_lib = static_library('libgpmshared', src_libgpmshared_a, dependencies: dependencies)
-
-executable('mate-power-backlight-helper', 'gpm-backlight-helper.c', dependencies: dependencies, link_with: [mpm_static_lib])
-
-executable(
- 'mate-power-statistics',
- [
- 'gpm-statistics.c',
- 'gpm-point-obj.c',
- 'gpm-point-obj.h',
- 'gpm-graph-widget.h',
- 'gpm-graph-widget.c'
- ],
- dependencies: dependencies,
- link_with: [mpm_static_lib]
-)
-
-executable(
- 'mate-power-preferences',
- [
- preferences_resources,
- 'gpm-prefs.c',
- 'gpm-prefs-core.h',
- 'gpm-prefs-core.c'
- ],
- dependencies: dependencies,
- link_with: [mpm_static_lib]
-)
-
-executable(
- 'mate-power-manager',
- [
- power_manager_resources,
- 'gpm-dpms.h',
- 'gpm-dpms.c',
- 'gpm-phone.h',
- 'gpm-phone.c',
- 'gpm-backlight.h',
- 'gpm-backlight.c',
- 'gpm-idle.h',
- 'gpm-idle.c',
- 'gpm-load.h',
- 'gpm-load.c',
- 'gpm-control.h',
- 'gpm-control.c',
- 'gpm-button.h',
- 'gpm-button.c',
- 'gpm-kbd-backlight.h',
- 'gpm-kbd-backlight.c',
- 'gpm-main.c',
- 'gpm-manager.h',
- 'gpm-manager.c',
- 'gpm-tray-icon.h',
- 'gpm-tray-icon.c',
- 'gpm-screensaver.h',
- 'gpm-screensaver.c',
- 'gpm-session.h',
- 'gpm-session.c',
- 'gpm-networkmanager.h',
- 'gpm-networkmanager.c',
- 'gpm-icon-names.h',
- 'gsd-media-keys-window.h',
- 'gsd-media-keys-window.c',
- 'msd-osd-window.h',
- 'msd-osd-window.c',
- 'gpm-engine.h',
- 'gpm-engine.c',
- ],
- dependencies: dependencies,
- link_with: [mpm_static_lib],
- install : true)