summaryrefslogtreecommitdiffstats
path: root/audio/goobox/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-04-30 09:41:24 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-04-30 09:41:24 +0800
commit2c04e2178d3ccce17af9d227a165f4025e1baf27 (patch)
treea95d6ef7b169e6753fca6a89006355f69851345e /audio/goobox/files
parent97baa1cd09aa858ef3a8e9ad473cc43e7dcacebb (diff)
downloadmarcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.tar
marcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.tar.gz
marcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.tar.bz2
marcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.tar.lz
marcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.tar.xz
marcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.tar.zst
marcuscom-ports-2c04e2178d3ccce17af9d227a165f4025e1baf27.zip
Remove these ports now that they are in the ports tree.
Next stop, GNOME 2.15. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6155 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/goobox/files')
-rw-r--r--audio/goobox/files/patch-src_main.c51
1 files changed, 0 insertions, 51 deletions
diff --git a/audio/goobox/files/patch-src_main.c b/audio/goobox/files/patch-src_main.c
deleted file mode 100644
index eaf098579..000000000
--- a/audio/goobox/files/patch-src_main.c
+++ /dev/null
@@ -1,51 +0,0 @@
---- src/main.c.orig Fri Nov 18 21:20:08 2005
-+++ src/main.c Mon Feb 20 22:41:55 2006
-@@ -47,7 +47,6 @@
-
- #ifdef HAVE_LIBNOTIFY
- #include <libnotify/notify.h>
--static NotifyHandle *notify_h = NULL;
- #endif /* HAVE_LIBNOTIFY */
-
- GtkWindow *main_window = NULL;
-@@ -193,7 +192,7 @@
-
- #ifdef HAVE_LIBNOTIFY
- if (! notify_init ("goobox"))
-- g_error ("Cannot initialize notification system.");
-+ g_warning ("Cannot initialize notification system.");
- #endif /* HAVE_LIBNOTIFY */
-
- goo_stock_init ();
-@@ -557,27 +556,10 @@
- int y)
- {
- #ifdef HAVE_LIBNOTIFY
-- NotifyIcon *icon = notify_icon_new_from_uri("goobox");
-- NotifyHints *hints = NULL;
--
-- if ((x >= 0) && (y >= 0)) {
-- hints = notify_hints_new ();
-- notify_hints_set_int (hints, "x", x);
-- notify_hints_set_int (hints, "y", y);
-- }
-+ if(!notify_is_initted())
-+ return;
-+ NotifyNotification *n = notify_notification_new (title,msg,"goobox",GTK_WIDGET (main_window));
-+ notify_notification_show(n, NULL);
-
-- notify_h = notify_send_notification (notify_h,
-- "device",
-- NOTIFY_URGENCY_NORMAL,
-- title,
-- msg,
-- icon,
-- TRUE, 0,
-- hints, // no hints
-- NULL, // no user data
-- 0);
--
-- if (icon != NULL)
-- notify_icon_destroy (icon);
- #endif /* HAVE_LIBNOTIFY */
- }