diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2014-11-02 12:05:56 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2014-11-02 12:05:56 +0000 |
commit | fc952e6355ab202e51a36e65dbe0d67a9dc49bf8 (patch) | |
tree | 58e66ded4860472ff6e9acb334369704c85f1748 /deskutils/osmo/files | |
parent | 1cecb4a491e09e04ad926dbc897faf72e39824e3 (diff) | |
download | ports-fc952e6355ab202e51a36e65dbe0d67a9dc49bf8.tar.gz ports-fc952e6355ab202e51a36e65dbe0d67a9dc49bf8.zip |
- Update to version 0.2.12
- Add LICENSE
PR: 194494
Submitted by: tkato432@yahoo.com
Notes
Notes:
svn path=/head/; revision=372064
Diffstat (limited to 'deskutils/osmo/files')
-rw-r--r-- | deskutils/osmo/files/patch-src__backup.c | 17 | ||||
-rw-r--r-- | deskutils/osmo/files/patch-src__check_events.c | 48 |
2 files changed, 17 insertions, 48 deletions
diff --git a/deskutils/osmo/files/patch-src__backup.c b/deskutils/osmo/files/patch-src__backup.c new file mode 100644 index 000000000000..e9cce70a0757 --- /dev/null +++ b/deskutils/osmo/files/patch-src__backup.c @@ -0,0 +1,17 @@ +--- src/backup.c.orig 2014-10-19 00:26:19.000000000 +0900 ++++ src/backup.c 2014-10-19 00:32:50.000000000 +0900 +@@ -41,6 +41,14 @@ + #include <archive.h> + #include <archive_entry.h> + ++#ifdef __FreeBSD__ ++#include <sys/param.h> ++#if __FreeBSD_version <= 1000008 /* r232154: bump for libarchive update */ ++#define archive_read_support_filter_all(x) \ ++ archive_read_support_compression_all(x) ++#endif ++#endif ++ + /*------------------------------------------------------------------------------*/ + + int diff --git a/deskutils/osmo/files/patch-src__check_events.c b/deskutils/osmo/files/patch-src__check_events.c deleted file mode 100644 index 24f53e87349d..000000000000 --- a/deskutils/osmo/files/patch-src__check_events.c +++ /dev/null @@ -1,48 +0,0 @@ ---- src/check_events.c.orig 2011-08-12 15:17:59.000000000 +0200 -+++ src/check_events.c 2011-08-12 15:20:36.000000000 +0200 -@@ -454,9 +454,9 @@ - a->date = 0; - - if (textdesc != NULL) -- a->notify = notify_notification_new (item->summary, textdesc, GTK_STOCK_DIALOG_WARNING, NULL); -+ a->notify = notify_notification_new (item->summary, textdesc, GTK_STOCK_DIALOG_WARNING); - else -- a->notify = notify_notification_new (item->summary, text, GTK_STOCK_DIALOG_WARNING, NULL); -+ a->notify = notify_notification_new (item->summary, text, GTK_STOCK_DIALOG_WARNING); - - g_free (textdesc); - g_free (text); -@@ -483,9 +483,7 @@ - #endif /* HAVE_LIBNOTIFY */ - - if (gtk_status_icon_get_visible (appGUI->osmo_trayicon)) { --#ifdef HAVE_LIBNOTIFY -- notify_notification_attach_to_status_icon (a->notify, appGUI->osmo_trayicon); --#endif /* HAVE_LIBNOTIFY */ -+ - gtk_status_icon_set_from_stock (appGUI->osmo_trayicon, OSMO_STOCK_SYSTRAY_TASK); - - if (config.blink_on_events) { -@@ -532,9 +530,9 @@ - a->time = -1; - a->date = 0; - if (textdesc != NULL) -- a->notify = notify_notification_new (_("Alarm warning!"), textdesc, GTK_STOCK_DIALOG_INFO, NULL); -+ a->notify = notify_notification_new (_("Alarm warning!"), textdesc, GTK_STOCK_DIALOG_INFO); - else -- a->notify = notify_notification_new (_("Alarm warning!"), text, GTK_STOCK_DIALOG_INFO, NULL); -+ a->notify = notify_notification_new (_("Alarm warning!"), text, GTK_STOCK_DIALOG_INFO); - - notify_notification_set_timeout (a->notify, NOTIFY_EXPIRES_NEVER); - notify_notification_set_urgency (a->notify, NOTIFY_URGENCY_NORMAL); -@@ -545,9 +543,7 @@ - #endif /* HAVE_LIBNOTIFY */ - - if (gtk_status_icon_get_visible (appGUI->osmo_trayicon)) { --#ifdef HAVE_LIBNOTIFY -- notify_notification_attach_to_status_icon (a->notify, appGUI->osmo_trayicon); --#endif /* HAVE_LIBNOTIFY */ -+ - gtk_status_icon_set_from_stock (appGUI->osmo_trayicon, OSMO_STOCK_SYSTRAY_TASK); - - if (config.blink_on_events) { |