diff options
author | tnn <tnn@pkgsrc.org> | 2008-01-21 02:34:28 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-01-21 02:34:28 +0000 |
commit | a11bc58ba1dac3a059a4356090bdba051dc570d5 (patch) | |
tree | a21ba52567ad52094edfa6b255e46ff47023d4fb /wm | |
parent | 0312e948bfd0b81dde1279c98df16f0bed53b3ce (diff) | |
download | pkgsrc-a11bc58ba1dac3a059a4356090bdba051dc570d5.tar.gz |
Update to sawfish-1.3.2.
* Strings are re-encoded in UTF-8. Window titles will be set correctly
regardless of title encoding
* updated documentation to v0.12
* added Occitan Lanaguage
* Bug fixes:
- Nautilus desktop window can now restore its size properly
- Sawfish.desktop file now complies with freedesktop.org standard
- Fix select workspace to make sure it calls with right arguments
- Fix 64 bit client messages
- Don't display unneeded blank lines when window is opened by
prompt function
- KDE system tray no longer fighs with sawfish to reparent a tray icon
- Add bounds checking on _NET_CURRENT_DESKTOP requests
- QT applications no longer lose focus when menu is active
- Corrected window placement in xinerama/dualhead when using
centered/centered-on-parent
Diffstat (limited to 'wm')
-rw-r--r-- | wm/sawfish/Makefile | 4 | ||||
-rw-r--r-- | wm/sawfish/PLIST | 3 | ||||
-rw-r--r-- | wm/sawfish/distinfo | 9 | ||||
-rw-r--r-- | wm/sawfish/patches/patch-ac | 17 |
4 files changed, 8 insertions, 25 deletions
diff --git a/wm/sawfish/Makefile b/wm/sawfish/Makefile index 6c05f36a4a2..2b1a9929a60 100644 --- a/wm/sawfish/Makefile +++ b/wm/sawfish/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.45 2007/09/14 15:04:48 tnn Exp $ +# $NetBSD: Makefile,v 1.46 2008/01/21 02:34:28 tnn Exp $ # DISTNAME= sawfish-${SF_VERS} -SF_VERS= 1.3.1 +SF_VERS= 1.3.2 CATEGORIES= x11 wm MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sawmill/} diff --git a/wm/sawfish/PLIST b/wm/sawfish/PLIST index 06c7df72a0f..923e2f5438a 100644 --- a/wm/sawfish/PLIST +++ b/wm/sawfish/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2007/09/14 15:04:49 tnn Exp $ +@comment $NetBSD: PLIST,v 1.12 2008/01/21 02:34:29 tnn Exp $ bin/sawfish bin/sawfish-client bin/sawfish-ui @@ -50,6 +50,7 @@ share/locale/ne/LC_MESSAGES/sawfish.mo share/locale/nl/LC_MESSAGES/sawfish.mo share/locale/nn/LC_MESSAGES/sawfish.mo share/locale/no/LC_MESSAGES/sawfish.mo +share/locale/oc/LC_MESSAGES/sawfish.mo share/locale/pa/LC_MESSAGES/sawfish.mo share/locale/pl/LC_MESSAGES/sawfish.mo share/locale/pt/LC_MESSAGES/sawfish.mo diff --git a/wm/sawfish/distinfo b/wm/sawfish/distinfo index a60ce1217aa..3838f9af127 100644 --- a/wm/sawfish/distinfo +++ b/wm/sawfish/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.12 2007/10/20 14:13:45 tnn Exp $ +$NetBSD: distinfo,v 1.13 2008/01/21 02:34:29 tnn Exp $ -SHA1 (sawfish-1.3.1.tar.gz) = c204129b7b6fdf702580140c39f62c561683216a -RMD160 (sawfish-1.3.1.tar.gz) = 66de77629ad98e6205c13b7300928616d687c80a -Size (sawfish-1.3.1.tar.gz) = 1741281 bytes +SHA1 (sawfish-1.3.2.tar.gz) = b7b2b222c305a6a2b2f98f92499271a585e5b04f +RMD160 (sawfish-1.3.2.tar.gz) = 3dc71d5744e6df04cba8cb9c1387b67708ad5122 +Size (sawfish-1.3.2.tar.gz) = 1950794 bytes SHA1 (patch-aa) = d2883ff092ce4fa86b20f9928dc004cf5bf61e75 SHA1 (patch-ab) = 21a89c87afa9cb5fdf3b028109b0db9c5991fb1e -SHA1 (patch-ac) = 5b06b5d5d5ea1c30af3c48f7dc87c7ce2ce29816 diff --git a/wm/sawfish/patches/patch-ac b/wm/sawfish/patches/patch-ac deleted file mode 100644 index 3dc00aeb079..00000000000 --- a/wm/sawfish/patches/patch-ac +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-ac,v 1.3 2007/10/20 14:13:45 tnn Exp $ - ---- src/events.c.orig 2007-07-26 19:55:01.000000000 +0200 -+++ src/events.c -@@ -1155,7 +1155,11 @@ shape_notify (XEvent *ev) - XShapeEvent *sev = (XShapeEvent *)ev; - Lisp_Window *w = find_window_by_id (sev->window); - if (w != 0 && sev->window == w->id -- && (sev->kind == ShapeBounding || sev->kind == ShapeInput)) -+ && (sev->kind == ShapeBounding -+#ifdef ShapeInput -+ || sev->kind == ShapeInput -+#endif -+)) - { - if (sev->kind == ShapeBounding) - w->shaped = sev->shaped ? 1 : 0; |