diff options
author | kwm <kwm@FreeBSD.org> | 2011-08-24 02:39:19 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2011-08-24 02:39:19 +0800 |
commit | 39ef19450c2cf8b75e3b20495c6e2331f67e3138 (patch) | |
tree | 68e92ca91db8af8e96889640de621794add90af4 /deskutils/notify-osd | |
parent | 6a56442427dd00f76ca13093ea38b248d54a7964 (diff) | |
download | freebsd-ports-gnome-39ef19450c2cf8b75e3b20495c6e2331f67e3138.tar.gz freebsd-ports-gnome-39ef19450c2cf8b75e3b20495c6e2331f67e3138.tar.zst freebsd-ports-gnome-39ef19450c2cf8b75e3b20495c6e2331f67e3138.zip |
Chase libnotify, libproxy and webkit-gtk2 shlib changes, and fix build where needed.
Diffstat (limited to 'deskutils/notify-osd')
-rw-r--r-- | deskutils/notify-osd/Makefile | 3 | ||||
-rw-r--r-- | deskutils/notify-osd/files/patch-tests_test-synchronous.c | 21 | ||||
-rw-r--r-- | deskutils/notify-osd/files/patch-tests_test-withlib.c | 113 |
3 files changed, 136 insertions, 1 deletions
diff --git a/deskutils/notify-osd/Makefile b/deskutils/notify-osd/Makefile index 00a418882c3e..3d7957bd830b 100644 --- a/deskutils/notify-osd/Makefile +++ b/deskutils/notify-osd/Makefile @@ -7,6 +7,7 @@ PORTNAME= notify-osd PORTVERSION= 0.9.29 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= http://launchpadlibrarian.net/43419242/ \ CRITICAL @@ -15,7 +16,7 @@ MAINTAINER= ehaupt@FreeBSD.org COMMENT= On-screen-display notification agent using libnotify LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ - notify.1:${PORTSDIR}/devel/libnotify + notify.4:${PORTSDIR}/devel/libnotify RUN_DEPENDS= dbus-daemon:${PORTSDIR}/devel/dbus GNU_CONFIGURE= yes diff --git a/deskutils/notify-osd/files/patch-tests_test-synchronous.c b/deskutils/notify-osd/files/patch-tests_test-synchronous.c new file mode 100644 index 000000000000..bf7bac0a995a --- /dev/null +++ b/deskutils/notify-osd/files/patch-tests_test-synchronous.c @@ -0,0 +1,21 @@ +--- tests/test-synchronous.c.orig 2011-08-16 13:55:36.000000000 +0200 ++++ tests/test-synchronous.c 2011-08-16 13:56:05.000000000 +0200 +@@ -38,7 +38,7 @@ send_normal (const gchar *message) + NotifyNotification *n; + n = notify_notification_new ("Test notification", + g_strdup (message), +- "", NULL); ++ ""); + notify_notification_show (n, NULL); + g_object_unref(G_OBJECT(n)); + } +@@ -53,8 +53,7 @@ send_synchronous (const char *type, + if (n == NULL) + n = notify_notification_new (" ", + "", +- g_strdup (icon), +- NULL); ++ g_strdup (icon)); + else + notify_notification_update (n, + " ", diff --git a/deskutils/notify-osd/files/patch-tests_test-withlib.c b/deskutils/notify-osd/files/patch-tests_test-withlib.c new file mode 100644 index 000000000000..1b4230fddc60 --- /dev/null +++ b/deskutils/notify-osd/files/patch-tests_test-withlib.c @@ -0,0 +1,113 @@ +--- tests/test-withlib.c.orig 2011-08-16 13:52:38.000000000 +0200 ++++ tests/test-withlib.c 2011-08-16 13:54:51.000000000 +0200 +@@ -94,7 +94,7 @@ test_withlib_show_notification (void) + + n = notify_notification_new ("Test", + "You should see a normal notification", +- "", NULL); ++ ""); + notify_notification_show (n, NULL); + sleep (3); + +@@ -109,7 +109,7 @@ test_withlib_update_notification (void) + + n = notify_notification_new ("Test", + "New notification", +- "", NULL); ++ ""); + res = notify_notification_show (n, NULL); + g_assert (res); + sleep (1); +@@ -135,7 +135,7 @@ test_withlib_pass_icon_data (void) + + n = notify_notification_new ("Image Test", + "You should see an image", +- "", NULL); ++ ""); + g_print ("iconpath: %s\n", SRCDIR"/icons/avatar.png"); + pixbuf = gdk_pixbuf_new_from_file_at_scale (SRCDIR"/icons/avatar.png", + 64, 64, TRUE, NULL); +@@ -157,22 +157,22 @@ test_withlib_priority (void) + + n1 = notify_notification_new ("Dummy Notification", + "This is a test notification", +- "", NULL); ++ ""); + notify_notification_show (n1, NULL); + n2 = notify_notification_new ("Normal Notification", + "You should see this *after* the urgent notification.", +- "", NULL); ++ ""); + notify_notification_set_urgency (n2, NOTIFY_URGENCY_LOW); + notify_notification_show (n2, NULL); + n3 = notify_notification_new ("Synchronous Notification", + "You should immediately see this notification.", +- "", NULL); ++ ""); + notify_notification_set_hint_string (n3, "synchronous", "test"); + notify_notification_set_urgency (n3, NOTIFY_URGENCY_NORMAL); + notify_notification_show (n3, NULL); + n4 = notify_notification_new ("Urgent Notification", + "You should see a dialog box, and after, a normal notification.", +- "", NULL); ++ ""); + notify_notification_set_urgency (n4, NOTIFY_URGENCY_CRITICAL); + notify_notification_show (n4, NULL); + +@@ -207,7 +207,7 @@ test_withlib_actions (void) + + n1 = notify_notification_new ("Notification with an action", + "You should see that in a dialog box. Click the 'Action' button for the test to succeed.", +- "", NULL); ++ ""); + notify_notification_add_action (n1, + "action", + "Action", +@@ -231,7 +231,7 @@ test_withlib_close_notification (void) + + n = notify_notification_new ("Test Title", + "This notification will be closed prematurely...", +- "", NULL); ++ ""); + notify_notification_show (n, NULL); + + loop = g_main_loop_new(NULL, FALSE); +@@ -256,8 +256,7 @@ test_withlib_append_hint (void) + /* init notification, supply first line of body-text */ + n = notify_notification_new ("Test (append-hint)", + "The quick brown fox jumps over the lazy dog.", +- SRCDIR"/icons/avatar.png", +- NULL); ++ SRCDIR"/icons/avatar.png"); + res = notify_notification_show (n, NULL); + g_assert (res); + sleep (1); +@@ -296,8 +295,7 @@ test_withlib_icon_only_hint (void) + /* init notification, supply first line of body-text */ + n = notify_notification_new (" ", /* needs this to be non-NULL */ + NULL, +- "notification-audio-play", +- NULL); ++ "notification-audio-play"); + notify_notification_set_hint_string (n, "icon-only", "allowed"); + res = notify_notification_show (n, NULL); + g_assert (res); +@@ -314,8 +312,7 @@ test_withlib_swallow_markup (void) + + n = notify_notification_new ("Swallow markup test", + "This text is hopefully neither <b>bold</b>, <i>italic</i> nor <u>underlined</u>.\n\nA little math-notation:\n\n\ta > b < c = 0", +- SRCDIR"/icons/avatar.png", +- NULL); ++ SRCDIR"/icons/avatar.png"); + res = notify_notification_show (n, NULL); + g_assert (res); + sleep (2); +@@ -341,7 +338,7 @@ test_withlib_throttle (void) + + // create dummy notification + snprintf (buf, 19, "Test #%.2d", i); +- n = notify_notification_new (buf, buf, "", NULL); ++ n = notify_notification_new (buf, buf, ""); + + // inject it into the queue + res = notify_notification_show (n, &error); |