diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-10-17 14:50:41 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-10-17 14:50:41 +0800 |
commit | e899667eb64c2d54fa748a2b5e06e247db9e9931 (patch) | |
tree | eac4afeed731551754de2613ee48440a063991c8 /x11-wm | |
parent | 09e06f5903aff1e9014343ecf35822f5112c1615 (diff) | |
download | freebsd-ports-gnome-e899667eb64c2d54fa748a2b5e06e247db9e9931.tar.gz freebsd-ports-gnome-e899667eb64c2d54fa748a2b5e06e247db9e9931.tar.zst freebsd-ports-gnome-e899667eb64c2d54fa748a2b5e06e247db9e9931.zip |
Update to 0.14
Diffstat (limited to 'x11-wm')
-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); - } - |