diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-10-17 06:50:41 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-10-17 06:50:41 +0000 |
commit | dc88cedf5816ad30d8a566b44cf1fb78480e6088 (patch) | |
tree | 930f8a157408e323f162a5bc392c60b612f9d3e2 /x11-wm/devilspie | |
parent | Add gedit-autocomplete-plugin. (diff) |
Update to 0.14
Notes
Notes:
svn path=/head/; revision=145622
Diffstat (limited to 'x11-wm/devilspie')
-rw-r--r-- | x11-wm/devilspie/Makefile | 2 | ||||
-rw-r--r-- | x11-wm/devilspie/distinfo | 4 | ||||
-rw-r--r-- | x11-wm/devilspie/files/patch-src_actions.c | 24 |
3 files changed, 3 insertions, 27 deletions
diff --git a/x11-wm/devilspie/Makefile b/x11-wm/devilspie/Makefile index 68ca74dfca84..d229b48c5cec 100644 --- a/x11-wm/devilspie/Makefile +++ b/x11-wm/devilspie/Makefile @@ -6,7 +6,7 @@ # PORTNAME= devilspie -PORTVERSION= 0.13 +PORTVERSION= 0.14 CATEGORIES= x11-wm MASTER_SITES= http://www.burtonini.com/computing/ diff --git a/x11-wm/devilspie/distinfo b/x11-wm/devilspie/distinfo index 40abccdff69a..b0212b459ea1 100644 --- a/x11-wm/devilspie/distinfo +++ b/x11-wm/devilspie/distinfo @@ -1,2 +1,2 @@ -MD5 (devilspie-0.13.tar.gz) = 94a6e2e45f3c1fc66757d2daa0d69b9d -SIZE (devilspie-0.13.tar.gz) = 146988 +MD5 (devilspie-0.14.tar.gz) = 0910422e5d6bad32aad20c813bf94f10 +SIZE (devilspie-0.14.tar.gz) = 145223 diff --git a/x11-wm/devilspie/files/patch-src_actions.c b/x11-wm/devilspie/files/patch-src_actions.c deleted file mode 100644 index e0f3b4235a5b..000000000000 --- a/x11-wm/devilspie/files/patch-src_actions.c +++ /dev/null @@ -1,24 +0,0 @@ ---- src/actions.c.orig Wed Oct 5 03:25:29 2005 -+++ src/actions.c Wed Oct 5 03:26:02 2005 -@@ -120,8 +120,8 @@ - * Pin the current window to all workspaces. - */ - ESExpResult *func_pin(ESExp *f, int argc, ESExpResult **argv, Context *c) { -- wnck_window_stick (c->window); -- if (debug) g_printerr(_("Setting sticky\n")); -+ wnck_window_pin (c->window); -+ if (debug) g_printerr(_("Setting pinned\n")); - return e_sexp_result_new_bool (f, TRUE); - } - -@@ -129,8 +129,8 @@ - * Unpin the current window from all workspaces. - */ - ESExpResult *func_unpin(ESExp *f, int argc, ESExpResult **argv, Context *c) { -- wnck_window_unstick (c->window); -- if (debug) g_printerr(_("Unsetting sticky\n")); -+ wnck_window_unpin (c->window); -+ if (debug) g_printerr(_("Unsetting pinned\n")); - return e_sexp_result_new_bool (f, TRUE); - } - |