summaryrefslogtreecommitdiff
path: root/x11-wm/sawfish2
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-09-22 07:11:57 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-09-22 07:11:57 +0000
commit07a420fe9ce0a221442e71c0cb71959697c0dea2 (patch)
tree9734ef40855e65203b5fed6d653ae6f5fa7270a7 /x11-wm/sawfish2
parentRemove French/German ispell ports, they have been moved to language-specific (diff)
Update sawfish/librep/rep-gtk triplet to the latest versions. I'm doing
this commit urgently, as there are -10 minutes left before ports freeze. OK'ed by: PW
Notes
Notes: svn path=/head/; revision=32973
Diffstat (limited to 'x11-wm/sawfish2')
-rw-r--r--x11-wm/sawfish2/Makefile17
-rw-r--r--x11-wm/sawfish2/distinfo2
-rw-r--r--x11-wm/sawfish2/files/patch-ac8
-rw-r--r--x11-wm/sawfish2/files/patch-af11
-rw-r--r--x11-wm/sawfish2/files/patch-ag10
-rw-r--r--x11-wm/sawfish2/pkg-plist514
6 files changed, 351 insertions, 211 deletions
diff --git a/x11-wm/sawfish2/Makefile b/x11-wm/sawfish2/Makefile
index 2fbe2d58c3ef..c8a5a0461d8c 100644
--- a/x11-wm/sawfish2/Makefile
+++ b/x11-wm/sawfish2/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= sawfish
-PORTVERSION= 0.30.3
+PORTVERSION= 0.31
CATEGORIES= x11-wm
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sawmill
@@ -15,8 +15,8 @@ MAINTAINER= nakai@FreeBSD.org
LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 \
Imlib.5:${PORTSDIR}/graphics/imlib \
- rep.9:${PORTSDIR}/lang/librep
-.if !defined(NOGNOME)
+ rep.10:${PORTSDIR}/lang/librep
+.if !defined(WITHOUT_GNOME)
LIB_DEPENDS+= capplet.4:${PORTSDIR}/sysutils/gnomecontrolcenter
.endif
BUILD_DEPENDS= ${LOCALBASE}/libexec/rep/${ARCH}--freebsd${OSREL}/gtk.so:${PORTSDIR}/x11-toolkits/rep-gtk
@@ -32,11 +32,13 @@ USE_GMAKE= yes
USE_AUTOCONF= yes
CONFIGURE_ARGS= --localstatedir=${PREFIX}/share \
--datadir=${PREFIX}/share --with-readline
-.if !defined(NOGNOME)
+.if !defined(WITHOUT_GNOME)
CONFIGURE_ARGS+= --enable-capplet
PLIST_SUB+= GNOME:=""
.else
-CONFIGURE_ARGS+= --disable-capplet
+CONFIGURE_ARGS+= --disable-capplet \
+ --disable-gnome-widgets \
+ --without-gdk-pixbuf
PLIST_SUB+= GNOME:="@comment "
.endif
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
@@ -44,6 +46,11 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
GLIB_CONFIG="${GLIB_CONFIG}" \
LIBS="-L${LOCALBASE}/lib -lxpg4"
+pre-patch:
+ find ${WRKSRC} \( -name "*.jl" -or -name "*.jl.in" \) | \
+ xargs ${GREP} -l "../locale" | \
+ xargs ${PERL} -pi -e "s|\.\./locale|../../../locale|g"
+
post-install:
install-info --section="X11 window manager" \
--entry="* sawfish: (sawfish). sawfish programming manual" \
diff --git a/x11-wm/sawfish2/distinfo b/x11-wm/sawfish2/distinfo
index 05bfb38d5d0d..91064b733cf3 100644
--- a/x11-wm/sawfish2/distinfo
+++ b/x11-wm/sawfish2/distinfo
@@ -1 +1 @@
-MD5 (sawfish-0.30.3.tar.gz) = 235a5d39558ab8253124d50634bc01dc
+MD5 (sawfish-0.31.tar.gz) = 83f798978b47a90ad73c25b9721a82c0
diff --git a/x11-wm/sawfish2/files/patch-ac b/x11-wm/sawfish2/files/patch-ac
index 247219ca0369..b2d9d3adef51 100644
--- a/x11-wm/sawfish2/files/patch-ac
+++ b/x11-wm/sawfish2/files/patch-ac
@@ -1,9 +1,9 @@
---- configure.in.orig Sun Jul 9 17:35:13 2000
-+++ configure.in Tue Jul 11 12:54:41 2000
-@@ -57,7 +57,7 @@
+--- configure.in.orig Wed Sep 20 22:27:00 2000
++++ configure.in Thu Sep 21 15:47:11 2000
+@@ -56,7 +56,7 @@
+
sawfishdir='${datadir}/sawfish'
lispdir='${sawfishdir}/${version}/lisp'
- nokogiridir='${sawfishdir}/${version}/nokogiri'
-localedir='${sawfishdir}/${version}/locale'
+localedir='${datadir}/locale'
sawfishexecdir='${libexecdir}/sawfish/${version}/${host_type}'
diff --git a/x11-wm/sawfish2/files/patch-af b/x11-wm/sawfish2/files/patch-af
new file mode 100644
index 000000000000..baaf30e26c3a
--- /dev/null
+++ b/x11-wm/sawfish2/files/patch-af
@@ -0,0 +1,11 @@
+--- scripts/Makefile.in 2000/09/21 13:09:15 1.1
++++ scripts/Makefile.in 2000/09/21 13:09:33
+@@ -34,7 +34,7 @@
+ SUBSTS := -e "s|__lispdir__|$(lispdir)|" \
+ -e "s|__version__|$(version)|"
+
+-G_PIXMAP_DIR = $(GNOMEDIR)/share/pixmaps
++G_PIXMAP_DIR = $(GNOMEDIR)/share/gnome/pixmaps
+
+ %.jlc : %.jl
+ $(REP_ENVIRON) rep compiler -f compile-batch $<
diff --git a/x11-wm/sawfish2/files/patch-ag b/x11-wm/sawfish2/files/patch-ag
new file mode 100644
index 000000000000..84c9ff349bdd
--- /dev/null
+++ b/x11-wm/sawfish2/files/patch-ag
@@ -0,0 +1,10 @@
+--- build-info 2000/09/21 13:51:47 1.1
++++ build-info 2000/09/21 13:51:58
+@@ -13,7 +13,6 @@
+ || HOSTNAME=unknown
+
+ [ -n "$LOCALDOMAIN" ] \
+- || LOCALDOMAIN=`dnsdomainname` \
+ || LOCALDOMAIN=`domainname` \
+ || LOCALDOMAIN=unknown
+
diff --git a/x11-wm/sawfish2/pkg-plist b/x11-wm/sawfish2/pkg-plist
index 0868d446ea22..939c289cf571 100644
--- a/x11-wm/sawfish2/pkg-plist
+++ b/x11-wm/sawfish2/pkg-plist
@@ -12,50 +12,25 @@ info/sawfish.info-4
info/sawfish.info-5
@exec install-info --section="X11 window manager" --entry="* sawfish: (sawfish).
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/DOC
-libexec/sawfish/%%VERSION%%/%%GNUHOST%%/flippers.la
-libexec/sawfish/%%VERSION%%/%%GNUHOST%%/flippers.so
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/gradient.la
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/gradient.so
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/gtk-style
-libexec/sawfish/%%VERSION%%/%%GNUHOST%%/play-sample.la
-libexec/sawfish/%%VERSION%%/%%GNUHOST%%/play-sample.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish-about
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish-menu
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/flippers.la
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/flippers.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/gradient.la
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/gradient.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/play-sample.la
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/play-sample.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/selection.la
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/selection.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/x.la
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util/x.so
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/selection.la
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/selection.so
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/x.la
libexec/sawfish/%%VERSION%%/%%GNUHOST%%/x.so
-share/locale/da/LC_MESSAGES/sawfish.mo
-share/locale/de/LC_MESSAGES/sawfish.mo
-share/locale/en_GB/LC_MESSAGES/sawfish.mo
-share/locale/es/LC_MESSAGES/sawfish.mo
-share/locale/fi/LC_MESSAGES/sawfish.mo
-share/locale/fr/LC_MESSAGES/sawfish.mo
-share/locale/gl/LC_MESSAGES/sawfish.mo
-share/locale/it/LC_MESSAGES/sawfish.mo
-share/locale/ja/LC_MESSAGES/sawfish.mo
-share/locale/ko/LC_MESSAGES/sawfish.mo
-share/locale/nl/LC_MESSAGES/sawfish.mo
-share/locale/no/LC_MESSAGES/sawfish.mo
-share/locale/pl/LC_MESSAGES/sawfish.mo
-share/locale/pt_PT/LC_MESSAGES/sawfish.mo
-share/locale/ru/LC_MESSAGES/sawfish.mo
-share/locale/sl/LC_MESSAGES/sawfish.mo
-share/locale/sv/LC_MESSAGES/sawfish.mo
-share/locale/tr/LC_MESSAGES/sawfish.mo
-share/locale/uk/LC_MESSAGES/sawfish.mo
-%%GNOME:%%share/gnome/control-center/Sawfish/.directory
-%%GNOME:%%share/gnome/control-center/Sawfish/.order
-%%GNOME:%%share/gnome/control-center/Sawfish/appearance-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/bindings-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/focus-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/match-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/maximize-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/meta-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/misc-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/move-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/placement-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/sound-properties.desktop
-%%GNOME:%%share/gnome/control-center/Sawfish/workspace-properties.desktop
%%GNOME:%%share/gnome/apps/Settings/Sawfish/.directory
%%GNOME:%%share/gnome/apps/Settings/Sawfish/.order
%%GNOME:%%share/gnome/apps/Settings/Sawfish/appearance-properties.desktop
@@ -69,11 +44,23 @@ share/locale/uk/LC_MESSAGES/sawfish.mo
%%GNOME:%%share/gnome/apps/Settings/Sawfish/placement-properties.desktop
%%GNOME:%%share/gnome/apps/Settings/Sawfish/sound-properties.desktop
%%GNOME:%%share/gnome/apps/Settings/Sawfish/workspace-properties.desktop
-share/gnome/wm-properties/Sawfish.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/.directory
+%%GNOME:%%share/gnome/control-center/Sawfish/.order
+%%GNOME:%%share/gnome/control-center/Sawfish/appearance-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/bindings-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/focus-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/match-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/maximize-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/meta-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/misc-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/move-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/placement-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/sound-properties.desktop
+%%GNOME:%%share/gnome/control-center/Sawfish/workspace-properties.desktop
+share/gnome/pixmaps/sawfish.png
%%GNOME:%%share/gnome/pixmaps/sawfish-appearance.png
%%GNOME:%%share/gnome/pixmaps/sawfish-edgeflip.png
%%GNOME:%%share/gnome/pixmaps/sawfish-focus.png
-%%GNOME:%%share/gnome/pixmaps/sawfish-logo.png
%%GNOME:%%share/gnome/pixmaps/sawfish-matched.png
%%GNOME:%%share/gnome/pixmaps/sawfish-minmax.png
%%GNOME:%%share/gnome/pixmaps/sawfish-misc.png
@@ -82,25 +69,37 @@ share/gnome/wm-properties/Sawfish.desktop
%%GNOME:%%share/gnome/pixmaps/sawfish-shortcuts.png
%%GNOME:%%share/gnome/pixmaps/sawfish-tooltips.png
%%GNOME:%%share/gnome/pixmaps/sawfish-workspaces.png
-share/sawfish/%%VERSION%%/lisp/3d-hack.jl
-share/sawfish/%%VERSION%%/lisp/3d-hack.jlc
+share/gnome/wm-properties/Sawfish.desktop
+share/locale/da/LC_MESSAGES/sawfish.mo
+share/locale/de/LC_MESSAGES/sawfish.mo
+share/locale/el/LC_MESSAGES/sawfish.mo
+share/locale/en_GB/LC_MESSAGES/sawfish.mo
+share/locale/es/LC_MESSAGES/sawfish.mo
+share/locale/fi/LC_MESSAGES/sawfish.mo
+share/locale/fr/LC_MESSAGES/sawfish.mo
+share/locale/ga/LC_MESSAGES/sawfish.mo
+share/locale/gl/LC_MESSAGES/sawfish.mo
+share/locale/it/LC_MESSAGES/sawfish.mo
+share/locale/ja/LC_MESSAGES/sawfish.mo
+share/locale/ko/LC_MESSAGES/sawfish.mo
+share/locale/nl/LC_MESSAGES/sawfish.mo
+share/locale/no/LC_MESSAGES/sawfish.mo
+share/locale/pl/LC_MESSAGES/sawfish.mo
+share/locale/pt_PT/LC_MESSAGES/sawfish.mo
+share/locale/ru/LC_MESSAGES/sawfish.mo
+share/locale/sl/LC_MESSAGES/sawfish.mo
+share/locale/sv/LC_MESSAGES/sawfish.mo
+share/locale/tr/LC_MESSAGES/sawfish.mo
+share/locale/uk/LC_MESSAGES/sawfish.mo
+share/locale/zh_CN.GB2312/LC_MESSAGES/sawfish.mo
share/sawfish/%%VERSION%%/lisp/anim-outline.jl
share/sawfish/%%VERSION%%/lisp/anim-outline.jlc
share/sawfish/%%VERSION%%/lisp/audio-events.jl
share/sawfish/%%VERSION%%/lisp/audio-events.jlc
share/sawfish/%%VERSION%%/lisp/auto-raise.jl
share/sawfish/%%VERSION%%/lisp/auto-raise.jlc
-share/sawfish/%%VERSION%%/lisp/autoload.jl
share/sawfish/%%VERSION%%/lisp/beos-window-menu.jl
share/sawfish/%%VERSION%%/lisp/beos-window-menu.jlc
-share/sawfish/%%VERSION%%/lisp/compat.jl
-share/sawfish/%%VERSION%%/lisp/compat.jlc
-share/sawfish/%%VERSION%%/lisp/configure.jl
-share/sawfish/%%VERSION%%/lisp/configure.jlc
-share/sawfish/%%VERSION%%/lisp/cursors.jl
-share/sawfish/%%VERSION%%/lisp/cursors.jlc
-share/sawfish/%%VERSION%%/lisp/custom-defaults.jl
-share/sawfish/%%VERSION%%/lisp/custom-defaults.jlc
share/sawfish/%%VERSION%%/lisp/custom.jl
share/sawfish/%%VERSION%%/lisp/custom.jlc
share/sawfish/%%VERSION%%/lisp/customize.jl
@@ -117,12 +116,6 @@ share/sawfish/%%VERSION%%/lisp/edges.jl
share/sawfish/%%VERSION%%/lisp/edges.jlc
share/sawfish/%%VERSION%%/lisp/error-handler.jl
share/sawfish/%%VERSION%%/lisp/error-handler.jlc
-share/sawfish/%%VERSION%%/lisp/focus.jl
-share/sawfish/%%VERSION%%/lisp/focus.jlc
-share/sawfish/%%VERSION%%/lisp/frames.jl
-share/sawfish/%%VERSION%%/lisp/frames.jlc
-share/sawfish/%%VERSION%%/lisp/functions.jl
-share/sawfish/%%VERSION%%/lisp/functions.jlc
share/sawfish/%%VERSION%%/lisp/gnome-commands.jl
share/sawfish/%%VERSION%%/lisp/gnome-commands.jlc
share/sawfish/%%VERSION%%/lisp/gnome-int.jl
@@ -141,18 +134,8 @@ share/sawfish/%%VERSION%%/lisp/grow-pack.jl
share/sawfish/%%VERSION%%/lisp/grow-pack.jlc
share/sawfish/%%VERSION%%/lisp/gtkrc.jl
share/sawfish/%%VERSION%%/lisp/gtkrc.jlc
-share/sawfish/%%VERSION%%/lisp/help.jl
-share/sawfish/%%VERSION%%/lisp/help.jlc
-share/sawfish/%%VERSION%%/lisp/iconify.jl
-share/sawfish/%%VERSION%%/lisp/iconify.jlc
-share/sawfish/%%VERSION%%/lisp/ignore-window.jl
-share/sawfish/%%VERSION%%/lisp/ignore-window.jlc
share/sawfish/%%VERSION%%/lisp/keymap.jl
share/sawfish/%%VERSION%%/lisp/keymap.jlc
-share/sawfish/%%VERSION%%/lisp/keymaps.jl
-share/sawfish/%%VERSION%%/lisp/keymaps.jlc
-share/sawfish/%%VERSION%%/lisp/make-theme-preview.jl
-share/sawfish/%%VERSION%%/lisp/make-theme-preview.jlc
share/sawfish/%%VERSION%%/lisp/make-theme.jl
share/sawfish/%%VERSION%%/lisp/make-theme.jlc
share/sawfish/%%VERSION%%/lisp/match-window.jl
@@ -161,74 +144,253 @@ share/sawfish/%%VERSION%%/lisp/maximize.jl
share/sawfish/%%VERSION%%/lisp/maximize.jlc
share/sawfish/%%VERSION%%/lisp/menus.jl
share/sawfish/%%VERSION%%/lisp/menus.jlc
-share/sawfish/%%VERSION%%/lisp/move-cursor.jl
-share/sawfish/%%VERSION%%/lisp/move-cursor.jlc
share/sawfish/%%VERSION%%/lisp/move-resize.jl
share/sawfish/%%VERSION%%/lisp/move-resize.jlc
-share/sawfish/%%VERSION%%/lisp/mwm.jl
-share/sawfish/%%VERSION%%/lisp/mwm.jlc
-share/sawfish/%%VERSION%%/lisp/nokogiri-sawfish.jl
-share/sawfish/%%VERSION%%/lisp/nokogiri-sawfish.jlc
share/sawfish/%%VERSION%%/lisp/old-window-menu.jl
share/sawfish/%%VERSION%%/lisp/old-window-menu.jlc
-share/sawfish/%%VERSION%%/lisp/open-look.jl
-share/sawfish/%%VERSION%%/lisp/open-look.jlc
-share/sawfish/%%VERSION%%/lisp/place-window.jl
-share/sawfish/%%VERSION%%/lisp/place-window.jlc
-share/sawfish/%%VERSION%%/lisp/play-audio.jl
-share/sawfish/%%VERSION%%/lisp/play-audio.jlc
-share/sawfish/%%VERSION%%/lisp/prompt-extras.jl
-share/sawfish/%%VERSION%%/lisp/prompt-extras.jlc
-share/sawfish/%%VERSION%%/lisp/prompt-wm.jl
-share/sawfish/%%VERSION%%/lisp/prompt-wm.jlc
share/sawfish/%%VERSION%%/lisp/prompt.jl
share/sawfish/%%VERSION%%/lisp/prompt.jlc
-share/sawfish/%%VERSION%%/lisp/raise-commands.jl
-share/sawfish/%%VERSION%%/lisp/raise-commands.jlc
share/sawfish/%%VERSION%%/lisp/rects.jl
share/sawfish/%%VERSION%%/lisp/rects.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/color-preview.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/color-preview.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/stock.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/stock.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widget-dialog.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widget-dialog.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widget-test.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widget-test.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widget.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widget.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/alist.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/alist.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/color.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/color.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/file.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/file.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/font.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/font.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/list.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/list.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/pair.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/pair.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/program.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets/program.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/apply.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/apply.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/config.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/config.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/group.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/group.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/i18n.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/i18n.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/layout.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/layout.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/layouts/keymaps.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/layouts/keymaps.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/main.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/main.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/shell.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/shell.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/slot.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/slot.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/user-level.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/user-level.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/command.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/command.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/event.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/event.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/frame-style.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/frame-style.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/icon.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/icon.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/keymap.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/keymap.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/match-window.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/match-window.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/workspace-geometry.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets/workspace-geometry.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/wm.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/ui/wm.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/animation/outline.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/animation/outline.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/autoload.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/cycle.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/cycle.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/describe.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/describe.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/gnome.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/gnome.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/groups.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/groups.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/grow-pack.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/grow-pack.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/help.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/help.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/move-cursor.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/move-cursor.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/move-resize.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/move-resize.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/raise-commands.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/raise-commands.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/size-window.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/size-window.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/slide-window.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/slide-window.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/viewport-linear.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/viewport-linear.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/x-cycle.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/x-cycle.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/xterm.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands/xterm.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/cursors.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/cursors.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/custom-defaults.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/custom-defaults.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/custom.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/custom.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/customize.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/customize.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/defaults.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/defaults.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/3d-hack.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/3d-hack.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/audio-events.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/audio-events.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/auto-raise.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/auto-raise.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/beos-window-menu.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/beos-window-menu.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/edge-flip.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/edge-flip.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/error-handler.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/error-handler.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/match-window.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/match-window.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/old-window-menu.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/old-window-menu.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/shade-hover.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/shade-hover.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/tooltips.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/tooltips.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/window-history.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext/window-history.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/focus.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/focus.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/frames.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/frames.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gaol.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gaol.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome/integration.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome/integration.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome/match-window.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome/match-window.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome/menus.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome/menus.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/keymaps.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/keymaps.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/menus.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/menus.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/misc.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/misc.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement/smart.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement/smart.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement/stagger.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement/stagger.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/server.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/server.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/session/init.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/session/init.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/session/load.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/session/load.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/session/save.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/session/save.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/stacking.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/stacking.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/configure.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/configure.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/gnome.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/gnome.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/iconify.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/iconify.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/ignored.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/ignored.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/maximize.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/maximize.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/mwm.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/mwm.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/open-look.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/open-look.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/shading.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/shading.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/transient.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/transient.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/wm-spec.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/state/wm-spec.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/swapper.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/swapper.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/theming/make-theme-preview.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/theming/make-theme-preview.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/theming/make-theme.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/theming/make-theme.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/user.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/user.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/compat.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/compat.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/decode-events.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/decode-events.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/display-window.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/display-window.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/edges.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/edges.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/groups.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/groups.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/gtkrc.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/gtkrc.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/keymap.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/keymap.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/nokogiri.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/nokogiri.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/play-audio.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/play-audio.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/prompt-extras.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/prompt-extras.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/prompt-wm.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/prompt-wm.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/prompt.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/prompt.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/rects.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/rects.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/window-order.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/window-order.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/window-outline.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/window-outline.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/with-output.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/util/with-output.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/viewport.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/viewport.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/window-anim.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/window-anim.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/windows.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/windows.jlc
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/workspace.jl
+share/sawfish/%%VERSION%%/lisp/sawfish/wm/workspace.jlc
share/sawfish/%%VERSION%%/lisp/sawmill-defaults.jl
share/sawfish/%%VERSION%%/lisp/sawmill-defaults.jlc
-share/sawfish/%%VERSION%%/lisp/sawmill-gaol.jl
-share/sawfish/%%VERSION%%/lisp/sawmill-gaol.jlc
-share/sawfish/%%VERSION%%/lisp/sawmill.jl
-share/sawfish/%%VERSION%%/lisp/sawmill.jlc
-share/sawfish/%%VERSION%%/lisp/select-window.jl
-share/sawfish/%%VERSION%%/lisp/select-window.jlc
-share/sawfish/%%VERSION%%/lisp/server.jl
-share/sawfish/%%VERSION%%/lisp/server.jlc
share/sawfish/%%VERSION%%/lisp/shade-hover.jl
share/sawfish/%%VERSION%%/lisp/shade-hover.jlc
share/sawfish/%%VERSION%%/lisp/shading.jl
share/sawfish/%%VERSION%%/lisp/shading.jlc
-share/sawfish/%%VERSION%%/lisp/size-window.jl
-share/sawfish/%%VERSION%%/lisp/size-window.jlc
-share/sawfish/%%VERSION%%/lisp/slide-window.jl
-share/sawfish/%%VERSION%%/lisp/slide-window.jlc
-share/sawfish/%%VERSION%%/lisp/sm-common.jl
-share/sawfish/%%VERSION%%/lisp/sm-common.jlc
-share/sawfish/%%VERSION%%/lisp/sm-init.jl
-share/sawfish/%%VERSION%%/lisp/sm-init.jlc
-share/sawfish/%%VERSION%%/lisp/sm-load.jl
-share/sawfish/%%VERSION%%/lisp/sm-load.jlc
-share/sawfish/%%VERSION%%/lisp/sm-save.jl
-share/sawfish/%%VERSION%%/lisp/sm-save.jlc
-share/sawfish/%%VERSION%%/lisp/smart-placement.jl
-share/sawfish/%%VERSION%%/lisp/smart-placement.jlc
-share/sawfish/%%VERSION%%/lisp/stacking.jl
-share/sawfish/%%VERSION%%/lisp/stacking.jlc
-share/sawfish/%%VERSION%%/lisp/stagger-placement.jl
-share/sawfish/%%VERSION%%/lisp/stagger-placement.jlc
share/sawfish/%%VERSION%%/lisp/tooltips.jl
share/sawfish/%%VERSION%%/lisp/tooltips.jlc
-share/sawfish/%%VERSION%%/lisp/transient.jl
-share/sawfish/%%VERSION%%/lisp/transient.jlc
share/sawfish/%%VERSION%%/lisp/viewport-linear.jl
share/sawfish/%%VERSION%%/lisp/viewport-linear.jlc
-share/sawfish/%%VERSION%%/lisp/viewport.jl
-share/sawfish/%%VERSION%%/lisp/viewport.jlc
-share/sawfish/%%VERSION%%/lisp/window-anim.jl
-share/sawfish/%%VERSION%%/lisp/window-anim.jlc
share/sawfish/%%VERSION%%/lisp/window-history.jl
share/sawfish/%%VERSION%%/lisp/window-history.jlc
share/sawfish/%%VERSION%%/lisp/window-order.jl
@@ -237,75 +399,9 @@ share/sawfish/%%VERSION%%/lisp/window-outline.jl
share/sawfish/%%VERSION%%/lisp/window-outline.jlc
share/sawfish/%%VERSION%%/lisp/with-output.jl
share/sawfish/%%VERSION%%/lisp/with-output.jlc
-share/sawfish/%%VERSION%%/lisp/wm-spec.jl
-share/sawfish/%%VERSION%%/lisp/wm-spec.jlc
-share/sawfish/%%VERSION%%/lisp/workspace.jl
-share/sawfish/%%VERSION%%/lisp/workspace.jlc
share/sawfish/%%VERSION%%/lisp/x-cycle.jl
share/sawfish/%%VERSION%%/lisp/x-cycle.jlc
-share/sawfish/%%VERSION%%/nokogiri/monitor.png
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-apply.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-apply.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-color-preview.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-color-preview.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-config.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-config.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-gnome.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-gnome.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-group.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-group.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-i18n.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-i18n.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-interfaces.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-interfaces.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-layout.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-layout.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-layouts/keymaps.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-layouts/keymaps.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-main.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-main.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-shell.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-shell.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-slot.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-slot.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-user-level.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-user-level.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widget-dialog.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widget-dialog.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widget-test.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widget-test.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widget.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widget.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/alist.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/alist.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/color.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/color.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/command.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/command.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/event.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/event.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/file.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/file.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/font.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/font.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/frame-style.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/frame-style.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/icon.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/icon.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/keymap.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/keymap.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/list.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/list.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/match-window.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/match-window.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/pair.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/pair.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/program.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/program.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/workspace-geometry.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets/workspace-geometry.jlc
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-wm.jl
-share/sawfish/%%VERSION%%/nokogiri/nokogiri-wm.jlc
+share/sawfish/%%VERSION%%/monitor.png
share/sawfish/%%VERSION%%/sounds/activate.wav
share/sawfish/%%VERSION%%/sounds/clicked.wav
share/sawfish/%%VERSION%%/sounds/gameover.wav
@@ -458,26 +554,42 @@ share/sawfish/%%VERSION%%/themes/smaker/close_inv.png
share/sawfish/%%VERSION%%/themes/smaker/min.png
share/sawfish/%%VERSION%%/themes/smaker/min_inv.png
share/sawfish/%%VERSION%%/themes/smaker/theme.jl
-@dirrm libexec/sawfish/%%VERSION%%/%%GNUHOST%%
-@dirrm libexec/sawfish/%%VERSION%%
-@dirrm libexec/sawfish
-%%GNOME:%%@dirrm share/gnome/control-center/Sawfish
-%%GNOME:%%@dirrm share/gnome/apps/Settings/Sawfish
-@dirrm share/sawfish/%%VERSION%%/lisp
-@dirrm share/sawfish/%%VERSION%%/sounds
-@dirrm share/sawfish/%%VERSION%%/themes/absolute-e
-@dirrm share/sawfish/%%VERSION%%/themes/brushed-metal
-@dirrm share/sawfish/%%VERSION%%/themes/gradient
-@dirrm share/sawfish/%%VERSION%%/themes/gtk
-@dirrm share/sawfish/%%VERSION%%/themes/microGUI
-@dirrm share/sawfish/%%VERSION%%/themes/mono
-@dirrm share/sawfish/%%VERSION%%/themes/simple
+@dirrm share/sawfish/themes
+@dirrm share/sawfish/sounds
@dirrm share/sawfish/%%VERSION%%/themes/smaker
+@dirrm share/sawfish/%%VERSION%%/themes/simple
+@dirrm share/sawfish/%%VERSION%%/themes/mono
+@dirrm share/sawfish/%%VERSION%%/themes/microGUI
+@dirrm share/sawfish/%%VERSION%%/themes/gtk
+@dirrm share/sawfish/%%VERSION%%/themes/gradient
+@dirrm share/sawfish/%%VERSION%%/themes/brushed-metal
+@dirrm share/sawfish/%%VERSION%%/themes/absolute-e
@dirrm share/sawfish/%%VERSION%%/themes
-@dirrm share/sawfish/%%VERSION%%/nokogiri/nokogiri-widgets
-@dirrm share/sawfish/%%VERSION%%/nokogiri/nokogiri-layouts
-@dirrm share/sawfish/%%VERSION%%/nokogiri
+@dirrm share/sawfish/%%VERSION%%/sounds
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/util
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/theming
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/state
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/session
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/placement
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/gnome
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/ext
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/commands
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm/animation
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/wm
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/ui/widgets
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/ui/layouts
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/ui
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/gtk/widgets
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish/gtk
+@dirrm share/sawfish/%%VERSION%%/lisp/sawfish
+@dirrm share/sawfish/%%VERSION%%/lisp
@dirrm share/sawfish/%%VERSION%%
-@dirrm share/sawfish/sounds
-@dirrm share/sawfish/themes
@dirrm share/sawfish
+%%GNOME:%%@dirrm share/gnome/control-center/Sawfish
+%%GNOME:%%@dirrm share/gnome/apps/Settings/Sawfish
+@dirrm libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm/util
+@dirrm libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish/wm
+@dirrm libexec/sawfish/%%VERSION%%/%%GNUHOST%%/sawfish
+@dirrm libexec/sawfish/%%VERSION%%/%%GNUHOST%%
+@dirrm libexec/sawfish/%%VERSION%%
+@dirrm libexec/sawfish