Index: head/deskutils/xfce4-notifyd/files/patch-common_xfce-notify-log.c =================================================================== --- head/deskutils/xfce4-notifyd/files/patch-common_xfce-notify-log.c (revision 557015) +++ head/deskutils/xfce4-notifyd/files/patch-common_xfce-notify-log.c (nonexistent) @@ -1,41 +0,0 @@ ---- common/xfce-notify-log.c.orig 2020-08-17 22:20:52 UTC -+++ common/xfce-notify-log.c -@@ -37,6 +37,38 @@ - - #include "xfce-notify-log.h" - -+// import g_date_time_format_iso8601 -+// from: https://git.sailfishos.org/mirror/glib/commit/dbabd2b8a745bfed4890f2d6cbd7d7848bc4f034 -+gchar * -+g_date_time_format_iso8601 (GDateTime *datetime) -+{ -+ GString *outstr = NULL; -+ gchar *main_date = NULL; -+ gint64 offset; -+ -+ /* Main date and time. */ -+ main_date = g_date_time_format (datetime, "%Y-%m-%dT%H:%M:%S"); -+ outstr = g_string_new (main_date); -+ g_free (main_date); -+ -+ /* Timezone. Format it as `%:::z` unless the offset is zero, in which case -+ * we can simply use `Z`. */ -+ offset = g_date_time_get_utc_offset (datetime); -+ -+ if (offset == 0) -+ { -+ g_string_append_c (outstr, 'Z'); -+ } -+ else -+ { -+ gchar *time_zone = g_date_time_format (datetime, "%:::z"); -+ g_string_append (outstr, time_zone); -+ g_free (time_zone); -+ } -+ -+ return g_string_free (outstr, FALSE); -+} -+ - GdkPixbuf * - notify_pixbuf_from_image_data (GVariant *image_data) - { Property changes on: head/deskutils/xfce4-notifyd/files/patch-common_xfce-notify-log.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/deskutils/xfce4-notifyd/Makefile =================================================================== --- head/deskutils/xfce4-notifyd/Makefile (revision 557015) +++ head/deskutils/xfce4-notifyd/Makefile (revision 557016) @@ -1,37 +1,38 @@ # Created by: Emanuel Haupt # $FreeBSD$ # # !!!NOTE!!! Update of x11-toolkits/gtk30 (specially >= 3.20.x) must be # accompanied by PORTREVISION bumps of this port. # Support of GTK+ is checked at compile time and themes directories too. PORTNAME= xfce4-notifyd PORTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= deskutils xfce MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= ehaupt@FreeBSD.org COMMENT= Visually-appealing notification daemon for Xfce LICENSE= GPLv3 LIB_DEPENDS= libnotify.so:devel/libnotify USES= compiler:c11 gettext-tools gmake gnome libtool pkgconfig \ tar:bzip2 xfce xorg USE_GNOME= cairo glib20 gtk30 intltool INSTALLS_ICONS= yes USE_XFCE= libutil panel USE_XORG= ice sm x11 GNU_CONFIGURE= yes INSTALL_TARGET= install-strip OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_USES= gettext-runtime NLS_CONFIGURE_ENABLE= nls .include