From 19fd4a9514d2bd5bd11a7612cc745d051783176a Mon Sep 17 00:00:00 2001 From: Síle Ekaterin Liszka Date: Mon, 27 Mar 2023 03:04:22 +0000 Subject: user/xfce4-indicator-plugin: switch to libayatana-indicator --- user/xfce4-indicator-plugin/01_ayatana.patch | 244 +++++++++++++++++++++++++++ user/xfce4-indicator-plugin/APKBUILD | 15 +- 2 files changed, 256 insertions(+), 3 deletions(-) create mode 100644 user/xfce4-indicator-plugin/01_ayatana.patch (limited to 'user') diff --git a/user/xfce4-indicator-plugin/01_ayatana.patch b/user/xfce4-indicator-plugin/01_ayatana.patch new file mode 100644 index 000000000..a39afe92b --- /dev/null +++ b/user/xfce4-indicator-plugin/01_ayatana.patch @@ -0,0 +1,244 @@ +From: Unit 193 +Date: Tue, 11 Jan 2022 11:53:23 +0100 +Subject: Debian doesn't have newer indicators, use the ayatana fork instead. + +--- + configure.ac | 8 ++++---- + panel-plugin/indicator-box.c | 6 +++--- + panel-plugin/indicator-box.h | 2 +- + panel-plugin/indicator-button.c | 4 ++-- + panel-plugin/indicator-button.h | 2 +- + panel-plugin/indicator-dialog.c | 40 ++++++++++++++++++++-------------------- + panel-plugin/indicator.c | 18 +++++++++--------- + 7 files changed, 40 insertions(+), 40 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 8ff9f61..fc902bf 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -91,8 +91,8 @@ XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.13.0],,[ + AC_DEFINE([XFCONF_LEGACY], [], [Use dbus-glib provided by xfconf 4.12 to obtain array type]) + XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.6.0]) + ]) +-INDICATOR_PKGNAME=indicator3-0.4 +-XDT_CHECK_PACKAGE([INDICATOR], [${INDICATOR_PKGNAME}], [12.10.1]) ++INDICATOR_PKGNAME=ayatana-indicator3-0.4 ++XDT_CHECK_PACKAGE([INDICATOR], [${INDICATOR_PKGNAME}], [0.5.0]) + + dnl ******************************************************************** + dnl *** Check if libindicator has indicator-ng.h headery *** +@@ -100,13 +100,13 @@ dnl *** At the moment this cannot be derived from the version number *** + dnl ******************************************************************** + AC_LANG_PUSH([C]) + CPPFLAGS=`$PKG_CONFIG --cflags ${INDICATOR_PKGNAME}` +-AC_CHECK_HEADERS([libindicator/indicator-ng.h], [HAVE_INDICATOR_NG_H=yes], [HAVE_INDICATOR_NG_H=no]) ++AC_CHECK_HEADERS([libayatana-indicator/indicator-ng.h], [HAVE_INDICATOR_NG_H=yes], [HAVE_INDICATOR_NG_H=no]) + AC_LANG_POP + + dnl **************************** + dnl *** Optional IDO library *** + dnl **************************** +-XDT_CHECK_OPTIONAL_PACKAGE([IDO], [libido3-0.1], [13.10.0], [ido], [IDO library]) ++XDT_CHECK_OPTIONAL_PACKAGE([IDO], [libayatana-ido3-0.4], [0.4.0], [ido], [IDO library]) + + dnl *********************************** + dnl *** Check for debugging support *** +diff --git a/panel-plugin/indicator-box.c b/panel-plugin/indicator-box.c +index 002a309..176fa1b 100644 +--- a/panel-plugin/indicator-box.c ++++ b/panel-plugin/indicator-box.c +@@ -27,7 +27,7 @@ + #include + #include + #include +-#include ++#include + + #include "indicator-box.h" + #include "indicator-button.h" +@@ -184,7 +184,7 @@ xfce_indicator_box_sort_buttons (gconstpointer a, + + /* special case for Application indicators (unreliable ordering) */ + /* always compare by name and ignore location field */ +- if (a_io != NULL && g_strcmp0 (a_io, "libapplication.so") == 0) ++ if (a_io != NULL && g_strcmp0 (a_io, "libayatana-application.so") == 0) + result = g_strcmp0 (xfce_indicator_button_get_entry(a0)->name_hint, + xfce_indicator_button_get_entry(b0)->name_hint); + +@@ -223,7 +223,7 @@ xfce_indicator_box_add (GtkContainer *container, + io_name = xfce_indicator_button_get_io_name (button); + li = g_hash_table_lookup (box->children, io_name); + // printf (" +++ %s %s\n", io_name, xfce_indicator_button_get_entry (button)->name_hint); +- if (g_strcmp0 (io_name, "libapplication.so") != 0 && ++ if (g_strcmp0 (io_name, "libayatana-application.so") != 0 && + xfce_indicator_button_get_pos (button) == 0) + li = g_list_append (li, button); + else +diff --git a/panel-plugin/indicator-box.h b/panel-plugin/indicator-box.h +index 8647e04..b5ca139 100644 +--- a/panel-plugin/indicator-box.h ++++ b/panel-plugin/indicator-box.h +@@ -20,7 +20,7 @@ + + #include + #include +-#include ++#include + #include + #include "indicator-config.h" + +diff --git a/panel-plugin/indicator-button.c b/panel-plugin/indicator-button.c +index c6aedbd..b7041d4 100644 +--- a/panel-plugin/indicator-button.c ++++ b/panel-plugin/indicator-button.c +@@ -28,13 +28,13 @@ + #include + #include + #include +-#include ++#include + + #include "indicator-button.h" + #include "indicator-button-box.h" + + +-#include ++#include + + #define ICON_SIZE 22 + #define SPACING 2 +diff --git a/panel-plugin/indicator-button.h b/panel-plugin/indicator-button.h +index f0f1610..aa2c808 100644 +--- a/panel-plugin/indicator-button.h ++++ b/panel-plugin/indicator-button.h +@@ -20,7 +20,7 @@ + + #include + #include +-#include ++#include + + #include "indicator-config.h" + #include "indicator-box.h" +diff --git a/panel-plugin/indicator-dialog.c b/panel-plugin/indicator-dialog.c +index 7bc6bf2..c59a9ba 100644 +--- a/panel-plugin/indicator-dialog.c ++++ b/panel-plugin/indicator-dialog.c +@@ -53,26 +53,26 @@ + static const gchar *pretty_names[][3] = + { + /* raw name, pretty name, icon-name(?) */ +- { "libapplication.so", N_("Application Indicators"), "application-default-icon" }, +- { "libsoundmenu.so", N_("Sound Menu"), "preferences-desktop-sound" }, +- { "com.canonical.indicator.sound", N_("Sound Menu"), "preferences-desktop-sound" }, +- { "libprintersmenu.so", N_("Printers Menu"), "printer" }, +- { "libpower.so", N_("Power Management"), NULL }, +- { "com.canonical.indicator.power", N_("Power Management"), NULL }, +- { "libappmenu.so", N_("Application Menus (Global Menu)"), "menu-editor" }, +- { "libsession.so", N_("Session Management"), NULL }, +- { "com.canonical.indicator.session", N_("Session Management"), NULL }, +- { "libmessaging.so", N_("Messaging Menu"), "indicator-messages-new" }, +- { "com.canonical.indicator.messages", N_("Messaging Menu"), "indicator-messages-new" }, +- { "libdatetime.so", N_("Date and Time"), "time-admin" }, +- { "com.canonical.indicator.datetime", N_("Date and Time"), "time-admin" }, +- { "libbluetooth.so", N_("Bluetooth"), "bluetooth-active" }, +- { "com.canonical.indicator.bluetooth", N_("Bluetooth"), "bluetooth-active" }, +- { "libsyncindicator.so", N_("Sync Menu"), "sync-client-updating" }, +- { "com.canonical.indicator.keyboard", N_("Keyboard"), NULL }, +- { "com.canonical.indicator.location", N_("Location"), NULL }, +- { "com.canonical.indicator.network", N_("Network"), NULL }, +- { "libworkrave.so", N_("Workrave"), "workrave" }, ++ { "libayatana-application.so", N_("Application Indicators"), "application-default-icon" }, ++ { "libayatana-soundmenu.so", N_("Sound Menu"), "preferences-desktop-sound" }, ++ { "org.ayatana.indicator.sound", N_("Sound Menu"), "preferences-desktop-sound" }, ++ { "libayatana-printersmenu.so", N_("Printers Menu"), "printer" }, ++ { "libayatana-power.so", N_("Power Management"), NULL }, ++ { "org.ayatana.indicator.power", N_("Power Management"), NULL }, ++ { "libayatana-appmenu.so", N_("Application Menus (Global Menu)"), "menu-editor" }, ++ { "libayatana-session.so", N_("Session Management"), NULL }, ++ { "org.ayatana.indicator.session", N_("Session Management"), NULL }, ++ { "libayatana-messaging.so", N_("Messaging Menu"), "indicator-messages-new" }, ++ { "org.ayatana.indicator.messages", N_("Messaging Menu"), "indicator-messages-new" }, ++ { "libayatana-datetime.so", N_("Date and Time"), "time-admin" }, ++ { "org.ayatana.indicator.datetime", N_("Date and Time"), "time-admin" }, ++ { "libayatana-bluetooth.so", N_("Bluetooth"), "bluetooth-active" }, ++ { "org.ayatana.indicator.bluetooth", N_("Bluetooth"), "bluetooth-active" }, ++ { "libayatana-syncindicator.so", N_("Sync Menu"), "sync-client-updating" }, ++ { "org.ayatana.indicator.keyboard", N_("Keyboard"), NULL }, ++ { "org.ayatana.indicator.location", N_("Location"), NULL }, ++ { "org.ayatana.indicator.network", N_("Network"), NULL }, ++ { "libayatana-workrave.so", N_("Workrave"), "workrave" }, + }; + + +diff --git a/panel-plugin/indicator.c b/panel-plugin/indicator.c +index 78b67da..8ffd81a 100644 +--- a/panel-plugin/indicator.c ++++ b/panel-plugin/indicator.c +@@ -24,7 +24,7 @@ + */ + + +-#define INDICATOR_SERVICE_DIR "/usr/share/unity/indicators" ++#define INDICATOR_SERVICE_DIR "/usr/share/ayatana/indicators" + + + #ifdef HAVE_CONFIG_H +@@ -37,9 +37,9 @@ + #include + #include + #include +-#include +-#ifdef HAVE_LIBINDICATOR_INDICATOR_NG_H +-#include ++#include ++#ifdef HAVE_LIBAYATANA_INDICATOR_INDICATOR_NG_H ++#include + #endif + + #include "indicator.h" +@@ -48,7 +48,7 @@ + #include "indicator-dialog.h" + + #ifdef HAVE_IDO +-#include ++#include + #endif + + /* prototypes */ +@@ -65,7 +65,7 @@ static gboolean indicator_load_indicator (IndicatorPlu + const gchar *name); + static gboolean indicator_load_module (IndicatorPlugin *indicator, + const gchar *name); +-#ifdef HAVE_LIBINDICATOR_INDICATOR_NG_H ++#ifdef HAVE_LIBAYATANA_INDICATOR_INDICATOR_NG_H + static gboolean indicator_load_service (IndicatorPlugin *indicator, + const gchar *name); + static void indicator_load_services (IndicatorPlugin *indicator); +@@ -308,7 +308,7 @@ indicator_construct (XfcePanelPlugin *plugin) + + /* load 'em */ + indicator_load_modules (indicator); +-#ifdef HAVE_LIBINDICATOR_INDICATOR_NG_H ++#ifdef HAVE_LIBAYATANA_INDICATOR_INDICATOR_NG_H + indicator_load_services (indicator); + #endif + } +@@ -410,7 +410,7 @@ indicator_load_module (IndicatorPlugin *indicator, + return FALSE; + + #ifdef DISABLE_APPLICATION +- if (!g_strcmp0 (name, "libapplication.so")) ++ if (!g_strcmp0 (name, "libayatana-application.so")) + return FALSE; + #endif + +@@ -423,7 +423,7 @@ indicator_load_module (IndicatorPlugin *indicator, + return indicator_load_indicator (indicator, io, name); + } + +-#ifdef HAVE_LIBINDICATOR_INDICATOR_NG_H ++#ifdef HAVE_LIBAYATANA_INDICATOR_INDICATOR_NG_H + static gboolean + indicator_load_service (IndicatorPlugin *indicator, + const gchar *name) diff --git a/user/xfce4-indicator-plugin/APKBUILD b/user/xfce4-indicator-plugin/APKBUILD index b2d78526c..d98a87b74 100644 --- a/user/xfce4-indicator-plugin/APKBUILD +++ b/user/xfce4-indicator-plugin/APKBUILD @@ -8,9 +8,17 @@ url="https://xfce.org" arch="all" license="GPL-2.0+" depends="" -makedepends="intltool libxfce4ui-dev xfce4-panel-dev>=${pkgver%.*} libindicator-dev ido-dev" +makedepends="autoconf automake libtool intltool libxfce4ui-dev + xfce4-panel-dev>=${pkgver%.*} xfce4-dev-tools-dev + libayatana-indicator-dev ido-dev" subpackages="$pkgname-lang" -source="https://archive.xfce.org/src/panel-plugins/xfce4-indicator-plugin/${pkgver%.*}/xfce4-indicator-plugin-$pkgver.tar.bz2" +source="https://archive.xfce.org/src/panel-plugins/xfce4-indicator-plugin/${pkgver%.*}/xfce4-indicator-plugin-$pkgver.tar.bz2 + 01_ayatana.patch" + +prepare() { + default_prepare + autoreconf -vif +} build() { LIBS="-lintl" ./configure \ @@ -31,4 +39,5 @@ package() { make DESTDIR="$pkgdir" install } -sha512sums="a5b9b25b405888a69708eb43656ac58a728d4a5a9736b5513d23b17409b5d8a0230cf89e6243afde5b1a3edad43b38915d007551347c85a7d17364760c2dabba xfce4-indicator-plugin-2.4.1.tar.bz2" +sha512sums="a5b9b25b405888a69708eb43656ac58a728d4a5a9736b5513d23b17409b5d8a0230cf89e6243afde5b1a3edad43b38915d007551347c85a7d17364760c2dabba xfce4-indicator-plugin-2.4.1.tar.bz2 +9d3a2cc7b677d91f56f390401729f03dbea6c85cda926f084deb1233a976b086b6d8770c781312e27db86eb6e8a821eed9a1090e278bded0edf70f7b2b8b8698 01_ayatana.patch" -- cgit v1.2.3-60-g2f50