summaryrefslogtreecommitdiffstats
path: root/x11-wm
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-08-07 12:45:26 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-08-07 12:45:26 +0800
commit466fecc955c4edadfec86bb995303a05e20a36c0 (patch)
treeba5799f0b49cd481a7d0b834a53da412ed91ba59 /x11-wm
parentae02cb4fcd9a5e211cbf998df8eec4521072dbe9 (diff)
downloadmarcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar
marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.gz
marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.bz2
marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.lz
marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.xz
marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.tar.zst
marcuscom-ports-466fecc955c4edadfec86bb995303a05e20a36c0.zip
share/gnome/ -> share/.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9365 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-wm')
-rw-r--r--x11-wm/compiz/Makefile109
-rw-r--r--x11-wm/compiz/distinfo3
-rw-r--r--x11-wm/compiz/files/patch-plugins_fuse.c11
-rw-r--r--x11-wm/compiz/pkg-descr8
-rw-r--r--x11-wm/compiz/pkg-plist166
-rw-r--r--x11-wm/expocity/Makefile34
-rw-r--r--x11-wm/expocity/distinfo3
-rw-r--r--x11-wm/expocity/files/patch-configure13
-rw-r--r--x11-wm/expocity/pkg-descr15
-rw-r--r--x11-wm/expocity/pkg-plist181
-rw-r--r--x11-wm/sawfish/Makefile52
-rw-r--r--x11-wm/sawfish/distinfo3
-rw-r--r--x11-wm/sawfish/files/patch-ag10
-rw-r--r--x11-wm/sawfish/files/patch-configure20
-rw-r--r--x11-wm/sawfish/files/patch-functions.c14
-rw-r--r--x11-wm/sawfish/files/patch-lisp::sawfish::ui::widgets::workspace-geometry.jl10
-rw-r--r--x11-wm/sawfish/files/patch-lisp::sawfish::wm::state::wm-spec.jl11
-rw-r--r--x11-wm/sawfish/files/patch-sawmill.h11
-rw-r--r--x11-wm/sawfish/files/patch-scripts_sawfish-menu.jl12
-rw-r--r--x11-wm/sawfish/files/patch-src_fonts.c11
-rw-r--r--x11-wm/sawfish/pkg-descr3
-rw-r--r--x11-wm/sawfish/pkg-plist682
22 files changed, 1382 insertions, 0 deletions
diff --git a/x11-wm/compiz/Makefile b/x11-wm/compiz/Makefile
new file mode 100644
index 000000000..1a86e2d78
--- /dev/null
+++ b/x11-wm/compiz/Makefile
@@ -0,0 +1,109 @@
+# New ports collection makefile for: compiz
+# Date created: Dec 20 2006
+# Whom: Florent Thoumie <flz@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= compiz
+PORTVERSION= 0.5.0
+PORTREVISION= 1
+CATEGORIES= x11-wm
+
+MAINTAINER= rnoland@2hip.net
+COMMENT= Compiz Composite/Window Manager
+
+LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
+ startup-notification-1.0:${PORTSDIR}/x11/startup-notification
+RUN_DEPENDS= ${BUILD_DEPENDS}
+
+XORG_CAT= app
+GNU_CONFIGURE= yes
+USE_BZIP2= yes
+USE_GETTEXT= yes
+USE_GL= glu
+USE_GNOME= gnomehack gnomeprefix gconf2
+USE_XORG= xcomposite xfixes xdamage xrandr xrender ice sm xinerama glproto
+USE_LDCONFIG= yes
+GCONF_SCHEMAS= compiz.schemas gwd.schemas
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}"
+
+OPTIONS= RSVG "Enable librsvg2 support" on \
+ GTK "Enable gtk2 support" on \
+ METACITY "Enable Metacity support" on \
+ GNOME "Enable Gnome support" on \
+ DBUS "Enable DBUS support" on \
+ FUSEFS "Enable fusefs support" off
+
+# No KDE support for now...
+CONFIGURE_ARGS= --disable-kde
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|libpng|libpng12|' ${WRKSRC}/configure
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_RSVG)
+CONFIGURE_ARGS+= --enable-librsvg
+USE_GNOME+= librsvg2
+PLIST_SUB+= RSVG=""
+.else
+CONFIGURE_ARGS+= --disable-librsvg
+PLIST_SUB+= RSVG="@comment "
+.endif
+
+.if defined(WITH_METACITY) || defined(WITH_GTK) || defined(WITH_GNOME)
+CONFIGURE_ARGS+= --enable-gtk
+USE_GNOME+= glib20 libwnck
+PLIST_SUB+= GTK=""
+.else
+CONFIGURE_ARGS+= --disable-gtk
+PLIST_SUB+= GTK="@comment "
+.endif
+
+.if defined(WITH_METACITY) || defined(WITH_GNOME)
+CONFIGURE_ARGS+= --enable-metacity
+USE_GNOME+= metacity
+.else
+CONFIGURE_ARGS+= --disable-metacity
+.endif
+
+.if defined(WITH_GNOME)
+CONFIGURE_ARGS+= --enable-gnome
+USE_GNOME+= gnomecontrolcenter2
+WINDOWSETTINGSDATADIR= \
+ `pkg-config --variable=prefix gnome-window-settings-2.0`
+WINDOWSETTINGSLIBDIR= \
+ `pkg-config --variable=libdir gnome-window-settings-2.0`
+PLIST_SUB+= GNOME="" \
+ WINDOWSETTINGSDATADIR="${WINDOWSETTINGSDATADIR}" \
+ WINDOWSETTINGSLIBDIR="${WINDOWSETTINGSLIBDIR}"
+.else
+CONFIGURE_ARGS+= --disable-gnome
+PLIST_SUB+= GNOME="@comment "
+.endif
+
+.if defined(WITH_DBUS)
+CONFIGURE_ARGS+= --enable-dbus
+BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dbus-1.pc:${PORTSDIR}/devel/dbus
+.if defined(WITH_GTK) || defined(WITH_GNOME)
+CONFIGURE_ARGS+= --enable-dbus-glib
+BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc:${PORTSDIR}/devel/dbus-glib
+.endif
+PLIST_SUB+= DBUS=""
+.else
+CONFIGURE_ARGS+= --disable-dbus --disable-dbus-glib
+PLIST_SUB+= DBUS="@comment "
+.endif
+
+.if defined(WITH_FUSEFS)
+CONFIGURE_ARGS+= --enable-fuse
+BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/fuse.pc:${PORTSDIR}/sysutils/fusefs-libs
+PLIST_SUB+= FUSEFS=""
+.else
+CONFIGURE_ARGS+= --disable-fuse
+PLIST_SUB+= FUSEFS="@comment "
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/x11-wm/compiz/distinfo b/x11-wm/compiz/distinfo
new file mode 100644
index 000000000..965c00992
--- /dev/null
+++ b/x11-wm/compiz/distinfo
@@ -0,0 +1,3 @@
+MD5 (xorg/app/compiz-0.5.0.tar.bz2) = 7a35a9f52155b945aa195f826d3d607a
+SHA256 (xorg/app/compiz-0.5.0.tar.bz2) = 4191745d86bec37de4cdc79bf0031afde1d28079eac2e3fc29aed18cd7a2a4e6
+SIZE (xorg/app/compiz-0.5.0.tar.bz2) = 926090
diff --git a/x11-wm/compiz/files/patch-plugins_fuse.c b/x11-wm/compiz/files/patch-plugins_fuse.c
new file mode 100644
index 000000000..48a0a68b9
--- /dev/null
+++ b/x11-wm/compiz/files/patch-plugins_fuse.c
@@ -0,0 +1,11 @@
+--- plugins/fuse.c.orig Mon Apr 2 14:15:28 2007
++++ plugins/fuse.c Mon May 7 20:07:09 2007
+@@ -28,6 +28,8 @@
+ #include <errno.h>
+ #include <poll.h>
+ #include <signal.h>
++#include <sys/types.h>
++#include <sys/param.h>
+ #include <sys/mount.h>
+ #include <fuse.h>
+ #include <fuse_lowlevel.h>
diff --git a/x11-wm/compiz/pkg-descr b/x11-wm/compiz/pkg-descr
new file mode 100644
index 000000000..d654cfa1b
--- /dev/null
+++ b/x11-wm/compiz/pkg-descr
@@ -0,0 +1,8 @@
+Compiz is an OpenGL compositing manager that use GLX_EXT_texture_from_pixmap
+for binding redirected top-level windows to texture objects. It has a flexible
+plug-in system and it is designed to run well on most graphics hardware.
+
+WWW: http://www.go-compiz.org/
+
+- Florent Thoumie
+flz@FreeBSD.org
diff --git a/x11-wm/compiz/pkg-plist b/x11-wm/compiz/pkg-plist
new file mode 100644
index 000000000..74d04572a
--- /dev/null
+++ b/x11-wm/compiz/pkg-plist
@@ -0,0 +1,166 @@
+@comment $FreeBSD$
+bin/compiz
+%%GTK%%bin/gtk-window-decorator
+include/compiz/compiz.h
+include/compiz/decoration.h
+lib/libdecoration.so.0
+lib/libdecoration.so
+lib/libdecoration.la
+lib/libdecoration.a
+lib/compiz/libgconf.so
+lib/compiz/libgconf.la
+lib/compiz/libgconf.a
+lib/compiz/libdecoration.so
+lib/compiz/libdecoration.la
+lib/compiz/libdecoration.a
+lib/compiz/libwobbly.so
+lib/compiz/libwobbly.la
+lib/compiz/libwobbly.a
+lib/compiz/libfade.so
+lib/compiz/libfade.la
+lib/compiz/libfade.a
+%%FUSEFS%%lib/compiz/libfs.so
+%%FUSEFS%%lib/compiz/libfs.la
+%%FUSEFS%%lib/compiz/libfs.a
+lib/compiz/libminimize.so
+lib/compiz/libminimize.la
+lib/compiz/libminimize.a
+lib/compiz/libcube.so
+lib/compiz/libcube.la
+lib/compiz/libcube.a
+lib/compiz/librotate.so
+lib/compiz/librotate.la
+lib/compiz/librotate.a
+lib/compiz/libzoom.so
+lib/compiz/libzoom.la
+lib/compiz/libzoom.a
+lib/compiz/libscale.so
+lib/compiz/libscale.la
+lib/compiz/libscale.a
+lib/compiz/libmove.so
+lib/compiz/libmove.la
+lib/compiz/libmove.a
+lib/compiz/libresize.so
+lib/compiz/libresize.la
+lib/compiz/libresize.a
+lib/compiz/libplace.so
+lib/compiz/libplace.la
+lib/compiz/libplace.a
+%%DBUS%%lib/compiz/libdbus.so
+%%DBUS%%lib/compiz/libdbus.la
+%%DBUS%%lib/compiz/libdbus.a
+lib/compiz/libswitcher.so
+lib/compiz/libswitcher.la
+lib/compiz/libswitcher.a
+lib/compiz/libwater.so
+lib/compiz/libwater.la
+lib/compiz/libwater.a
+lib/compiz/libscreenshot.so
+lib/compiz/libscreenshot.la
+lib/compiz/libscreenshot.a
+lib/compiz/libplane.so
+lib/compiz/libplane.la
+lib/compiz/libplane.a
+lib/compiz/libclone.so
+lib/compiz/libclone.la
+lib/compiz/libclone.a
+lib/compiz/libpng.so
+lib/compiz/libpng.la
+lib/compiz/libpng.a
+lib/compiz/libblur.so
+lib/compiz/libblur.la
+lib/compiz/libblur.a
+lib/compiz/libregex.so
+lib/compiz/libregex.la
+lib/compiz/libregex.a
+lib/compiz/libvideo.so
+lib/compiz/libvideo.la
+lib/compiz/libvideo.a
+lib/compiz/libini.so
+lib/compiz/libini.la
+lib/compiz/libini.a
+%%RSVG%%lib/compiz/libsvg.so
+%%RSVG%%lib/compiz/libsvg.la
+%%RSVG%%lib/compiz/libsvg.a
+lib/compiz/libannotate.so
+lib/compiz/libannotate.la
+lib/compiz/libannotate.a
+libdata/pkgconfig/libdecoration.pc
+libdata/pkgconfig/compiz.pc
+share/compiz/icon.png
+share/compiz/freedesktop.png
+%%GNOME%%@cwd %%WINDOWSETTINGSDATADIR%%
+%%GNOME%%share/gnome/wm-properties/compiz.desktop
+%%GNOME%%@cwd %%WINDOWSETTINGSLIBDIR%%
+%%GNOME%%window-manager-settings/libcompiz.so
+%%GNOME%%window-manager-settings/libcompiz.la
+%%GNOME%%window-manager-settings/libcompiz.a
+%%GNOME%%@cwd
+share/locale/af/LC_MESSAGES/compiz.mo
+share/locale/ar/LC_MESSAGES/compiz.mo
+share/locale/bg/LC_MESSAGES/compiz.mo
+share/locale/bn/LC_MESSAGES/compiz.mo
+share/locale/bs/LC_MESSAGES/compiz.mo
+share/locale/ca/LC_MESSAGES/compiz.mo
+share/locale/cs/LC_MESSAGES/compiz.mo
+share/locale/cy/LC_MESSAGES/compiz.mo
+share/locale/da/LC_MESSAGES/compiz.mo
+share/locale/de/LC_MESSAGES/compiz.mo
+share/locale/el/LC_MESSAGES/compiz.mo
+share/locale/en_GB/LC_MESSAGES/compiz.mo
+share/locale/es/LC_MESSAGES/compiz.mo
+share/locale/et/LC_MESSAGES/compiz.mo
+share/locale/fi/LC_MESSAGES/compiz.mo
+share/locale/fr/LC_MESSAGES/compiz.mo
+share/locale/gl/LC_MESSAGES/compiz.mo
+share/locale/gu/LC_MESSAGES/compiz.mo
+share/locale/he/LC_MESSAGES/compiz.mo
+share/locale/hi/LC_MESSAGES/compiz.mo
+share/locale/hr/LC_MESSAGES/compiz.mo
+share/locale/hu/LC_MESSAGES/compiz.mo
+share/locale/id/LC_MESSAGES/compiz.mo
+share/locale/it/LC_MESSAGES/compiz.mo
+share/locale/ja/LC_MESSAGES/compiz.mo
+share/locale/ka/LC_MESSAGES/compiz.mo
+share/locale/ko/LC_MESSAGES/compiz.mo
+share/locale/lt/LC_MESSAGES/compiz.mo
+share/locale/mk/LC_MESSAGES/compiz.mo
+share/locale/nb/LC_MESSAGES/compiz.mo
+share/locale/nl/LC_MESSAGES/compiz.mo
+share/locale/pa/LC_MESSAGES/compiz.mo
+share/locale/pl/LC_MESSAGES/compiz.mo
+share/locale/pt/LC_MESSAGES/compiz.mo
+share/locale/pt_BR/LC_MESSAGES/compiz.mo
+share/locale/ro/LC_MESSAGES/compiz.mo
+share/locale/ru/LC_MESSAGES/compiz.mo
+share/locale/sk/LC_MESSAGES/compiz.mo
+share/locale/sl/LC_MESSAGES/compiz.mo
+share/locale/sr/LC_MESSAGES/compiz.mo
+share/locale/sv/LC_MESSAGES/compiz.mo
+share/locale/ta/LC_MESSAGES/compiz.mo
+share/locale/tr/LC_MESSAGES/compiz.mo
+share/locale/uk/LC_MESSAGES/compiz.mo
+share/locale/vi/LC_MESSAGES/compiz.mo
+share/locale/zh_CN/LC_MESSAGES/compiz.mo
+share/locale/zh_TW/LC_MESSAGES/compiz.mo
+share/locale/en_US/LC_MESSAGES/compiz.mo
+share/locale/km/LC_MESSAGES/compiz.mo
+share/locale/lo/LC_MESSAGES/compiz.mo
+share/locale/mr/LC_MESSAGES/compiz.mo
+share/locale/xh/LC_MESSAGES/compiz.mo
+share/locale/zu/LC_MESSAGES/compiz.mo
+@dirrmtry share/locale/lo/LC_MESSAGES
+@dirrmtry share/locale/lo
+@dirrmtry share/locale/en_US/LC_MESSAGES
+@dirrmtry share/locale/en_US
+@dirrmtry share/locale/km/LC_MESSAGES
+@dirrmtry share/locale/km
+@dirrmtry share/locale/mr/LC_MESSAGES
+@dirrmtry share/locale/mr
+@dirrmtry share/locale/xh/LC_MESSAGES
+@dirrmtry share/locale/xh
+@dirrmtry share/locale/zu/LC_MESSAGES
+@dirrmtry share/locale/zu
+@dirrmtry share/compiz
+@dirrmtry lib/compiz
+@dirrmtry include/compiz
diff --git a/x11-wm/expocity/Makefile b/x11-wm/expocity/Makefile
new file mode 100644
index 000000000..2638e4fa0
--- /dev/null
+++ b/x11-wm/expocity/Makefile
@@ -0,0 +1,34 @@
+# New ports collection makefile for: expocity
+# Date created: Feb 2nd 2004
+# Whom: Simon Barner <barner@gmx.de>
+#
+# $FreeBSD$
+#
+
+PORTNAME= expocity
+PORTVERSION= 2.6.2
+PORTREVISION= 6
+CATEGORIES= x11-wm
+MASTER_SITES= http://www.pycage.de/download/
+DISTNAME= ${PORTNAME}-${PORTVERSION}-1
+DIST_SUBDIR= gnome2
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= A metacity spin-off with Expose(tm)-like features
+
+LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification
+
+CONFLICTS= metacity*
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+USE_AUTOTOOLS= libtool:15
+USE_GNOME= gnomeprefix gnomehack gnomehier gconf2 libglade2
+GCONF_SCHEMAS= metacity.schemas
+USE_GETTEXT= yes
+USE_LDCONFIG= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias"
+
+.include <bsd.port.mk>
diff --git a/x11-wm/expocity/distinfo b/x11-wm/expocity/distinfo
new file mode 100644
index 000000000..00a9735e4
--- /dev/null
+++ b/x11-wm/expocity/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/expocity-2.6.2-1.tar.bz2) = 9ee1830a2944b286315436c658dfb106
+SHA256 (gnome2/expocity-2.6.2-1.tar.bz2) = fc713b699a2f1588edb41c2594e5e39a5d5086b0377b28276e2d214c61635950
+SIZE (gnome2/expocity-2.6.2-1.tar.bz2) = 1884926
diff --git a/x11-wm/expocity/files/patch-configure b/x11-wm/expocity/files/patch-configure
new file mode 100644
index 000000000..bbd8c0a87
--- /dev/null
+++ b/x11-wm/expocity/files/patch-configure
@@ -0,0 +1,13 @@
+
+$FreeBSD$
+
+--- configure 2002/05/22 09:20:39 1.1
++++ configure 2002/05/22 09:20:59
+@@ -6411,6 +6411,7 @@
+
+ # This can be used to rebuild libtool when needed
+ LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
++$ac_aux_dir/ltconfig $LIBTOOL_DEPS
+
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
diff --git a/x11-wm/expocity/pkg-descr b/x11-wm/expocity/pkg-descr
new file mode 100644
index 000000000..7a28dd43a
--- /dev/null
+++ b/x11-wm/expocity/pkg-descr
@@ -0,0 +1,15 @@
+Modern desktop environments make it possible for you to work on several
+documents in several windows at the same time. This will inevitably result
+in lots of open windows on your desktop.
+
+Switching between applications can become a real pain: the buttons in the
+taskbar already got too small to be usable, and finding the right window in
+the tablist takes ages.
+
+expocity is an effort to integrate an efficient means of switching between
+applications into the window manager metacity, similar to Expose(tm) on
+Apple's OS-X.
+
+Use ALT+TAB to switch between application.
+
+WWW: http://www.pycage.de/software_expocity.html
diff --git a/x11-wm/expocity/pkg-plist b/x11-wm/expocity/pkg-plist
new file mode 100644
index 000000000..e0868d962
--- /dev/null
+++ b/x11-wm/expocity/pkg-plist
@@ -0,0 +1,181 @@
+bin/metacity
+bin/metacity-message
+bin/metacity-theme-viewer
+bin/metacity-window-demo
+include/metacity-1/metacity-private/common.h
+include/metacity-1/metacity-private/gradient.h
+include/metacity-1/metacity-private/preview-widget.h
+include/metacity-1/metacity-private/theme-parser.h
+include/metacity-1/metacity-private/theme.h
+include/metacity-1/metacity-private/util.h
+lib/libmetacity-private.a
+lib/libmetacity-private.la
+lib/libmetacity-private.so
+lib/libmetacity-private.so.0
+libdata/pkgconfig/libmetacity-private.pc
+libexec/metacity-dialog
+share/expocity/glade/metacity-properties.glade
+share/expocity/icons/metacity-window-demo.png
+share/pixmaps/metacity-properties.png
+share/themes/AgingGorilla/metacity-1/active-button.png
+share/themes/AgingGorilla/metacity-1/active-close-button.png
+share/themes/AgingGorilla/metacity-1/active-close-menu-icon.png
+share/themes/AgingGorilla/metacity-1/active-maximize-button.png
+share/themes/AgingGorilla/metacity-1/active-maximize-menu-icon.png
+share/themes/AgingGorilla/metacity-1/active-menu-button.png
+share/themes/AgingGorilla/metacity-1/active-minimize-button.png
+share/themes/AgingGorilla/metacity-1/active-minimize-menu-icon.png
+share/themes/AgingGorilla/metacity-1/inactive-close-button.png
+share/themes/AgingGorilla/metacity-1/inactive-maximize-button.png
+share/themes/AgingGorilla/metacity-1/inactive-menu-button.png
+share/themes/AgingGorilla/metacity-1/inactive-minimize-button.png
+share/themes/AgingGorilla/metacity-1/metacity-theme-1.xml
+share/themes/Atlanta/metacity-1/metacity-theme-1.xml
+share/themes/Bright/metacity-1/metacity-theme-1.xml
+share/themes/Crux/metacity-1/active-border-top-left-border.png
+share/themes/Crux/metacity-1/active-border-top-right-border.png
+share/themes/Crux/metacity-1/active-bottom-left-border.png
+share/themes/Crux/metacity-1/active-bottom-left-corner.png
+share/themes/Crux/metacity-1/active-bottom-mid-left-border.png
+share/themes/Crux/metacity-1/active-bottom-mid-right-border.png
+share/themes/Crux/metacity-1/active-bottom-right-border.png
+share/themes/Crux/metacity-1/active-bottom-right-corner.png
+share/themes/Crux/metacity-1/active-button-prelight.png
+share/themes/Crux/metacity-1/active-button-pressed.png
+share/themes/Crux/metacity-1/active-button.png
+share/themes/Crux/metacity-1/active-close-button.png
+share/themes/Crux/metacity-1/active-left-border.png
+share/themes/Crux/metacity-1/active-left-top-border-shaded.png
+share/themes/Crux/metacity-1/active-left-top-border.png
+share/themes/Crux/metacity-1/active-maximize-button.png
+share/themes/Crux/metacity-1/active-menu-button-prelight.png
+share/themes/Crux/metacity-1/active-menu-button-pressed.png
+share/themes/Crux/metacity-1/active-menu-button.png
+share/themes/Crux/metacity-1/active-minimize-button.png
+share/themes/Crux/metacity-1/active-restore-button.png
+share/themes/Crux/metacity-1/active-right-border.png
+share/themes/Crux/metacity-1/active-right-top-border-shaded.png
+share/themes/Crux/metacity-1/active-right-top-border.png
+share/themes/Crux/metacity-1/active-top-center-left.png
+share/themes/Crux/metacity-1/active-top-center-mid-left.png
+share/themes/Crux/metacity-1/active-top-center-mid-right.png
+share/themes/Crux/metacity-1/active-top-center-right.png
+share/themes/Crux/metacity-1/active-top-left-border.png
+share/themes/Crux/metacity-1/active-top-left-corner.png
+share/themes/Crux/metacity-1/active-top-mid-left-border.png
+share/themes/Crux/metacity-1/active-top-mid-right-border.png
+share/themes/Crux/metacity-1/active-top-right-border.png
+share/themes/Crux/metacity-1/active-top-right-corner.png
+share/themes/Crux/metacity-1/inactive-border-top-left-border.png
+share/themes/Crux/metacity-1/inactive-border-top-right-border.png
+share/themes/Crux/metacity-1/inactive-bottom-left-border.png
+share/themes/Crux/metacity-1/inactive-bottom-left-corner.png
+share/themes/Crux/metacity-1/inactive-bottom-mid-border.png
+share/themes/Crux/metacity-1/inactive-bottom-right-border.png
+share/themes/Crux/metacity-1/inactive-bottom-right-corner.png
+share/themes/Crux/metacity-1/inactive-button-prelight.png
+share/themes/Crux/metacity-1/inactive-button-pressed.png
+share/themes/Crux/metacity-1/inactive-button.png
+share/themes/Crux/metacity-1/inactive-close-button.png
+share/themes/Crux/metacity-1/inactive-left-border.png
+share/themes/Crux/metacity-1/inactive-left-top-border-shaded.png
+share/themes/Crux/metacity-1/inactive-left-top-border.png
+share/themes/Crux/metacity-1/inactive-maximize-button.png
+share/themes/Crux/metacity-1/inactive-menu-button-prelight.png
+share/themes/Crux/metacity-1/inactive-menu-button-pressed.png
+share/themes/Crux/metacity-1/inactive-menu-button.png
+share/themes/Crux/metacity-1/inactive-minimize-button.png
+share/themes/Crux/metacity-1/inactive-restore-button.png
+share/themes/Crux/metacity-1/inactive-right-border.png
+share/themes/Crux/metacity-1/inactive-right-top-border-shaded.png
+share/themes/Crux/metacity-1/inactive-right-top-border.png
+share/themes/Crux/metacity-1/inactive-top-center-left.png
+share/themes/Crux/metacity-1/inactive-top-center-mid.png
+share/themes/Crux/metacity-1/inactive-top-center-right.png
+share/themes/Crux/metacity-1/inactive-top-left-border.png
+share/themes/Crux/metacity-1/inactive-top-left-corner.png
+share/themes/Crux/metacity-1/inactive-top-mid-border.png
+share/themes/Crux/metacity-1/inactive-top-right-border.png
+share/themes/Crux/metacity-1/inactive-top-right-corner.png
+share/themes/Crux/metacity-1/metacity-theme-1.xml
+share/themes/Esco/metacity-1/metacity-theme-1.xml
+share/themes/Metabox/metacity-1/metacity-theme-1.xml
+share/themes/Simple/metacity-1/close.png
+share/themes/Simple/metacity-1/maximize.png
+share/themes/Simple/metacity-1/maximized.png
+share/themes/Simple/metacity-1/metacity-theme-1.xml
+share/themes/Simple/metacity-1/minimize.png
+share/gnome/wm-properties/metacity.desktop
+share/locale/am/LC_MESSAGES/metacity.mo
+share/locale/ar/LC_MESSAGES/metacity.mo
+share/locale/az/LC_MESSAGES/metacity.mo
+share/locale/be/LC_MESSAGES/metacity.mo
+share/locale/bg/LC_MESSAGES/metacity.mo
+share/locale/bn/LC_MESSAGES/metacity.mo
+share/locale/ca/LC_MESSAGES/metacity.mo
+share/locale/cs/LC_MESSAGES/metacity.mo
+share/locale/cy/LC_MESSAGES/metacity.mo
+share/locale/da/LC_MESSAGES/metacity.mo
+share/locale/de/LC_MESSAGES/metacity.mo
+share/locale/el/LC_MESSAGES/metacity.mo
+share/locale/en_GB/LC_MESSAGES/metacity.mo
+share/locale/es/LC_MESSAGES/metacity.mo
+share/locale/fa/LC_MESSAGES/metacity.mo
+share/locale/fi/LC_MESSAGES/metacity.mo
+share/locale/fr/LC_MESSAGES/metacity.mo
+share/locale/ga/LC_MESSAGES/metacity.mo
+share/locale/gl/LC_MESSAGES/metacity.mo
+share/locale/he/LC_MESSAGES/metacity.mo
+share/locale/hi/LC_MESSAGES/metacity.mo
+share/locale/hu/LC_MESSAGES/metacity.mo
+share/locale/id/LC_MESSAGES/metacity.mo
+share/locale/is/LC_MESSAGES/metacity.mo
+share/locale/it/LC_MESSAGES/metacity.mo
+share/locale/ja/LC_MESSAGES/metacity.mo
+share/locale/ko/LC_MESSAGES/metacity.mo
+share/locale/lt/LC_MESSAGES/metacity.mo
+share/locale/lv/LC_MESSAGES/metacity.mo
+share/locale/mk/LC_MESSAGES/metacity.mo
+share/locale/ml/LC_MESSAGES/metacity.mo
+share/locale/mn/LC_MESSAGES/metacity.mo
+share/locale/ms/LC_MESSAGES/metacity.mo
+share/locale/nl/LC_MESSAGES/metacity.mo
+share/locale/nn/LC_MESSAGES/metacity.mo
+share/locale/no/LC_MESSAGES/metacity.mo
+share/locale/pl/LC_MESSAGES/metacity.mo
+share/locale/pt/LC_MESSAGES/metacity.mo
+share/locale/pt_BR/LC_MESSAGES/metacity.mo
+share/locale/ro/LC_MESSAGES/metacity.mo
+share/locale/ru/LC_MESSAGES/metacity.mo
+share/locale/sk/LC_MESSAGES/metacity.mo
+share/locale/sl/LC_MESSAGES/metacity.mo
+share/locale/sq/LC_MESSAGES/metacity.mo
+share/locale/sr/LC_MESSAGES/metacity.mo
+share/locale/sr@Latn/LC_MESSAGES/metacity.mo
+share/locale/sv/LC_MESSAGES/metacity.mo
+share/locale/ta/LC_MESSAGES/metacity.mo
+share/locale/tr/LC_MESSAGES/metacity.mo
+share/locale/uk/LC_MESSAGES/metacity.mo
+share/locale/vi/LC_MESSAGES/metacity.mo
+share/locale/wa/LC_MESSAGES/metacity.mo
+share/locale/zh_CN/LC_MESSAGES/metacity.mo
+share/locale/zh_TW/LC_MESSAGES/metacity.mo
+@dirrm share/themes/Simple/metacity-1
+@dirrm share/themes/Simple
+@dirrm share/themes/Metabox/metacity-1
+@dirrm share/themes/Metabox
+@dirrm share/themes/AgingGorilla/metacity-1
+@dirrm share/themes/AgingGorilla
+@dirrm share/themes/Esco/metacity-1
+@dirrm share/themes/Esco
+@dirrm share/themes/Crux/metacity-1
+@dirrm share/themes/Crux
+@dirrm share/themes/Bright/metacity-1
+@dirrm share/themes/Bright
+@dirrm share/themes/Atlanta/metacity-1
+@dirrm share/themes/Atlanta
+@dirrm share/expocity/icons
+@dirrm share/expocity/glade
+@dirrm share/expocity
+@dirrm include/metacity-1/metacity-private
+@dirrm include/metacity-1
diff --git a/x11-wm/sawfish/Makefile b/x11-wm/sawfish/Makefile
new file mode 100644
index 000000000..e1e44729b
--- /dev/null
+++ b/x11-wm/sawfish/Makefile
@@ -0,0 +1,52 @@
+# New ports collection makefile for: sawfish
+# Date created: 13 September 1999
+# Whom: Yukihiro Nakai <nakai@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+PORTNAME= sawfish
+PORTVERSION= 1.3
+PORTREVISION= 15
+PORTEPOCH= 2
+CATEGORIES= x11-wm
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= sawmill
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Lisp configurable window manager
+
+LIB_DEPENDS= rep.13:${PORTSDIR}/lang/librep
+BUILD_DEPENDS= ${LOCALBASE}/libexec/rep/${GNUHOST}/gui/gtk-2/gtk.so:${PORTSDIR}/x11-toolkits/rep-gtk2
+RUN_DEPENDS= ${LOCALBASE}/libexec/rep/${GNUHOST}/gui/gtk-2/gtk.so:${PORTSDIR}/x11-toolkits/rep-gtk2
+
+GNUHOST= ${ARCH}-pc-freebsd${OSREL:C/\..*//}
+PLIST_SUB= GNUHOST=${GNUHOST} VERSION=${PORTVERSION}
+
+USE_XLIB= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehier gnomehack esound
+WANT_GNOME= yes
+USE_GETTEXT= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --with-readline \
+ --localstatedir=${PREFIX}/share \
+ --datadir=${PREFIX}/share \
+ --enable-capplet \
+ --disable-themer \
+ --with-esd
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+CONFIGURE_TARGET= ${ARCH}-pc-freebsd${OSREL:C/\..*//}
+
+INFO= sawfish
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \
+ s|[$$][(]top_builddir[)]/intl/libintl.a|-lintl|g' ${WRKSRC}/configure
+ @${REINPLACE_CMD} -e 's|prog_name|program_name|g' \
+ ${WRKSRC}/src/main.c
+
+.include <bsd.port.mk>
diff --git a/x11-wm/sawfish/distinfo b/x11-wm/sawfish/distinfo
new file mode 100644
index 000000000..558034bc9
--- /dev/null
+++ b/x11-wm/sawfish/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/sawfish-1.3.tar.gz) = 9e5ce5e76c60acecdb1889c1f173295a
+SHA256 (gnome2/sawfish-1.3.tar.gz) = c53cd96d03c584cf3570cb92fc03c8b2af4e68fa86f19259535d4a7b178faa87
+SIZE (gnome2/sawfish-1.3.tar.gz) = 1582279
diff --git a/x11-wm/sawfish/files/patch-ag b/x11-wm/sawfish/files/patch-ag
new file mode 100644
index 000000000..84c9ff349
--- /dev/null
+++ b/x11-wm/sawfish/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/sawfish/files/patch-configure b/x11-wm/sawfish/files/patch-configure
new file mode 100644
index 000000000..0ab207a9c
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-configure
@@ -0,0 +1,20 @@
+--- configure.orig Tue Nov 12 16:10:53 2002
++++ configure Tue Nov 12 16:12:11 2002
+@@ -2688,7 +2688,7 @@
+ (error
+ (throw 'quit 1)))
+ EOF
+-if REP_GTK_DONT_INITIALIZE=1 rep ./conftest 2>&5; then
++if REP_GTK_DONT_INITIALIZE=1 rep --batch -l gui/gtk-2/gtk -l gui/gtk-2/libglade 2>&5; then
+ echo "$ac_t""yes" 1>&6
+ else
+ echo "$ac_t""no" 1>&6
+@@ -3387,7 +3387,7 @@
+ if test "$enable_themer" = yes; then
+ echo $ac_n "checking for rep-gtk libglade wrapper""... $ac_c" 1>&6
+ echo "configure:3390: checking for rep-gtk libglade wrapper" >&5
+- if REP_GTK_DONT_INITIALIZE=1 rep --batch -l gui.gtk.libglade 2>&5; then
++ if REP_GTK_DONT_INITIALIZE=1 rep --batch -l gui/gtk-2/gnome-ui -l gui/gtk-2/gnome-canvas 2>&5; then
+ echo "$ac_t""yes" 1>&6
+ add_subdir "themer"
+ else
diff --git a/x11-wm/sawfish/files/patch-functions.c b/x11-wm/sawfish/files/patch-functions.c
new file mode 100644
index 000000000..ac580c26c
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-functions.c
@@ -0,0 +1,14 @@
+--- src/functions.c 3 Nov 2002 21:00:36 -0000 1.98
++++ src/functions.c 30 Oct 2003 05:35:18 -0000 1.99
+@@ -704,8 +704,10 @@
+ repv name;
+ if (type == XA_ATOM && (name = x_atom_symbol (l_data[i])) != Qnil)
+ rep_VECTI(ret_data, i) = name;
++ else if (type == XA_INTEGER)
++ rep_VECTI(ret_data, i) = rep_make_long_int((long) l_data[i]);
+ else
+- rep_VECTI(ret_data, i) = rep_make_long_uint(l_data[i]);
++ rep_VECTI(ret_data, i) = rep_make_long_uint(l_data[i] & 0xffffffffUL);
+ }
+ break;
+ }
diff --git a/x11-wm/sawfish/files/patch-lisp::sawfish::ui::widgets::workspace-geometry.jl b/x11-wm/sawfish/files/patch-lisp::sawfish::ui::widgets::workspace-geometry.jl
new file mode 100644
index 000000000..af4e2b49a
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-lisp::sawfish::ui::widgets::workspace-geometry.jl
@@ -0,0 +1,10 @@
+--- lisp/sawfish/ui/widgets/workspace-geometry.jl 2002/04/29 19:16:50 1.1
++++ lisp/sawfish/ui/widgets/workspace-geometry.jl 2002/04/29 19:17:07
+@@ -28,7 +28,6 @@
+ (open rep
+ gui.gtk-2.gtk
+ gui.gtk-2.gnome-canvas
+- gui.gtk-2.gdk-pixbuf
+ rep.io.files
+ sawfish.gtk.widget
+ sawfish.ui.layout)
diff --git a/x11-wm/sawfish/files/patch-lisp::sawfish::wm::state::wm-spec.jl b/x11-wm/sawfish/files/patch-lisp::sawfish::wm::state::wm-spec.jl
new file mode 100644
index 000000000..c51fd1a5a
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-lisp::sawfish::wm::state::wm-spec.jl
@@ -0,0 +1,11 @@
+--- lisp/sawfish/wm/state/wm-spec.jl.orig Sun Sep 28 22:51:20 2003
++++ lisp/sawfish/wm/state/wm-spec.jl Sun Sep 28 22:52:10 2003
+@@ -125,7 +125,7 @@
+ _NET_WM_WINDOW_TYPE_UTILITY
+ _NET_WM_WINDOW_TYPE_SPLASH])
+
+- (defvar wm-spec-below-depth +2)
++ (defvar wm-spec-below-depth -2)
+ (defvar wm-spec-above-depth +2)
+
+ (define supported-states '())
diff --git a/x11-wm/sawfish/files/patch-sawmill.h b/x11-wm/sawfish/files/patch-sawmill.h
new file mode 100644
index 000000000..6c044e363
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-sawmill.h
@@ -0,0 +1,11 @@
+--- src/sawmill.h.orig Mon Jan 13 05:35:23 2003
++++ src/sawmill.h Mon May 8 11:52:40 2006
+@@ -153,7 +153,7 @@
+ /* Frame data */
+ Window frame;
+ struct frame_part *frame_parts;
+- u_int frame_x, frame_y; /* relative to client-window */
++ int frame_x, frame_y; /* relative to client-window */
+ u_int frame_width, frame_height;
+ void (*destroy_frame)(struct lisp_window *w);
+ void (*focus_change)(struct lisp_window *w);
diff --git a/x11-wm/sawfish/files/patch-scripts_sawfish-menu.jl b/x11-wm/sawfish/files/patch-scripts_sawfish-menu.jl
new file mode 100644
index 000000000..af52f3457
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-scripts_sawfish-menu.jl
@@ -0,0 +1,12 @@
+--- scripts/sawfish-menu.jl.orig Tue May 20 11:49:42 2003
++++ scripts/sawfish-menu.jl Tue May 20 11:50:54 2003
+@@ -106,7 +106,8 @@
+ (g-signal-connect menu "deactivate" gtk-main-quit)
+ (setq menu-selected nil)
+ (gtk-menu-popup-interp menu nil nil 0 (or timestamp 0) position)
+- (gtk-main)
++ (when (memq 'visible (GTK-WIDGET-FLAGS menu))
++ (gtk-main))
+ menu-selected))
+
+
diff --git a/x11-wm/sawfish/files/patch-src_fonts.c b/x11-wm/sawfish/files/patch-src_fonts.c
new file mode 100644
index 000000000..efcdf2501
--- /dev/null
+++ b/x11-wm/sawfish/files/patch-src_fonts.c
@@ -0,0 +1,11 @@
+--- src/fonts.c.orig Sun Nov 3 22:00:36 2002
++++ src/fonts.c Wed Feb 8 04:22:13 2006
+@@ -131,7 +131,7 @@
+ if (end == 0)
+ end = p + strlen (p);
+ len = end - (p + 1);
+- buf = malloc (len);
++ buf = malloc (len + 1);
+ memcpy (buf, p + 1, len);
+ buf[len] = 0;
+ return buf;
diff --git a/x11-wm/sawfish/pkg-descr b/x11-wm/sawfish/pkg-descr
new file mode 100644
index 000000000..0fba3f92c
--- /dev/null
+++ b/x11-wm/sawfish/pkg-descr
@@ -0,0 +1,3 @@
+Lisp configurable window manager
+
+WWW: http://sawmill.sourceforge.net/
diff --git a/x11-wm/sawfish/pkg-plist b/x11-wm/sawfish/pkg-plist
new file mode 100644
index 000000000..35140b07e
--- /dev/null
+++ b/x11-wm/sawfish/pkg-plist
@@ -0,0 +1,682 @@
+bin/sawfish
+bin/sawfish-client
+bin/sawfish-ui
+libexec/rep/%%GNUHOST%%/sawfish/client.la
+libexec/rep/%%GNUHOST%%/sawfish/client.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/DOC
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/gradient.la
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/gradient.so
+libexec/sawfish/%%VERSION%%/%%GNUHOST%%/gtk-style
+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/applications/appearance-properties.desktop
+share/applications/bindings-properties.desktop
+share/applications/focus-properties.desktop
+share/applications/match-properties.desktop
+share/applications/maximize-properties.desktop
+share/applications/misc-properties.desktop
+share/applications/move-properties.desktop
+share/applications/placement-properties.desktop
+share/applications/sound-properties.desktop
+share/applications/workspace-properties.desktop
+share/pixmaps/sawfish-appearance.png
+share/pixmaps/sawfish-edgeflip.png
+share/pixmaps/sawfish-focus.png
+share/pixmaps/sawfish-logo.png
+share/pixmaps/sawfish-matched.png
+share/pixmaps/sawfish-minmax.png
+share/pixmaps/sawfish-misc.png
+share/pixmaps/sawfish-moveresize.png
+share/pixmaps/sawfish-placement.png
+share/pixmaps/sawfish-shortcuts.png
+share/pixmaps/sawfish-tooltips.png
+share/pixmaps/sawfish-workspaces.png
+share/gnome/wm-properties/Sawfish.desktop
+share/locale/am/LC_MESSAGES/sawfish.mo
+share/locale/az/LC_MESSAGES/sawfish.mo
+share/locale/be/LC_MESSAGES/sawfish.mo
+share/locale/bg/LC_MESSAGES/sawfish.mo
+share/locale/bs/LC_MESSAGES/sawfish.mo
+share/locale/ca/LC_MESSAGES/sawfish.mo
+share/locale/cs/LC_MESSAGES/sawfish.mo
+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/et/LC_MESSAGES/sawfish.mo
+share/locale/eu/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/hu/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/lv/LC_MESSAGES/sawfish.mo
+share/locale/ms/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/pl/LC_MESSAGES/sawfish.mo
+share/locale/pt/LC_MESSAGES/sawfish.mo
+share/locale/pt_BR/LC_MESSAGES/sawfish.mo
+share/locale/ro/LC_MESSAGES/sawfish.mo
+share/locale/ru/LC_MESSAGES/sawfish.mo
+share/locale/sk/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/vi/LC_MESSAGES/sawfish.mo
+share/locale/wa/LC_MESSAGES/sawfish.mo
+share/locale/zh_CN/LC_MESSAGES/sawfish.mo
+share/locale/zh_TW/LC_MESSAGES/sawfish.mo
+%%DATADIR%%/%%VERSION%%/lisp/anim-outline.jl
+%%DATADIR%%/%%VERSION%%/lisp/anim-outline.jlc
+%%DATADIR%%/%%VERSION%%/lisp/audio-events.jl
+%%DATADIR%%/%%VERSION%%/lisp/audio-events.jlc
+%%DATADIR%%/%%VERSION%%/lisp/auto-raise.jl
+%%DATADIR%%/%%VERSION%%/lisp/auto-raise.jlc
+%%DATADIR%%/%%VERSION%%/lisp/beos-window-menu.jl
+%%DATADIR%%/%%VERSION%%/lisp/beos-window-menu.jlc
+%%DATADIR%%/%%VERSION%%/lisp/custom.jl
+%%DATADIR%%/%%VERSION%%/lisp/custom.jlc
+%%DATADIR%%/%%VERSION%%/lisp/customize.jl
+%%DATADIR%%/%%VERSION%%/lisp/customize.jlc
+%%DATADIR%%/%%VERSION%%/lisp/cycle.jl
+%%DATADIR%%/%%VERSION%%/lisp/cycle.jlc
+%%DATADIR%%/%%VERSION%%/lisp/decode-events.jl
+%%DATADIR%%/%%VERSION%%/lisp/decode-events.jlc
+%%DATADIR%%/%%VERSION%%/lisp/describe.jl
+%%DATADIR%%/%%VERSION%%/lisp/describe.jlc
+%%DATADIR%%/%%VERSION%%/lisp/edge-flip.jl
+%%DATADIR%%/%%VERSION%%/lisp/edge-flip.jlc
+%%DATADIR%%/%%VERSION%%/lisp/edges.jl
+%%DATADIR%%/%%VERSION%%/lisp/edges.jlc
+%%DATADIR%%/%%VERSION%%/lisp/error-handler.jl
+%%DATADIR%%/%%VERSION%%/lisp/error-handler.jlc
+%%DATADIR%%/%%VERSION%%/lisp/gnome-commands.jl
+%%DATADIR%%/%%VERSION%%/lisp/gnome-commands.jlc
+%%DATADIR%%/%%VERSION%%/lisp/gnome-int.jl
+%%DATADIR%%/%%VERSION%%/lisp/gnome-int.jlc
+%%DATADIR%%/%%VERSION%%/lisp/gnome-match.jl
+%%DATADIR%%/%%VERSION%%/lisp/gnome-match.jlc
+%%DATADIR%%/%%VERSION%%/lisp/gnome-menu.jl
+%%DATADIR%%/%%VERSION%%/lisp/gnome-menu.jlc
+%%DATADIR%%/%%VERSION%%/lisp/gnome.jl
+%%DATADIR%%/%%VERSION%%/lisp/gnome.jlc
+%%DATADIR%%/%%VERSION%%/lisp/group-funs.jl
+%%DATADIR%%/%%VERSION%%/lisp/group-funs.jlc
+%%DATADIR%%/%%VERSION%%/lisp/groups.jl
+%%DATADIR%%/%%VERSION%%/lisp/groups.jlc
+%%DATADIR%%/%%VERSION%%/lisp/grow-pack.jl
+%%DATADIR%%/%%VERSION%%/lisp/grow-pack.jlc
+%%DATADIR%%/%%VERSION%%/lisp/gtkrc.jl
+%%DATADIR%%/%%VERSION%%/lisp/gtkrc.jlc
+%%DATADIR%%/%%VERSION%%/lisp/keymap.jl
+%%DATADIR%%/%%VERSION%%/lisp/keymap.jlc
+%%DATADIR%%/%%VERSION%%/lisp/make-theme.jl
+%%DATADIR%%/%%VERSION%%/lisp/make-theme.jlc
+%%DATADIR%%/%%VERSION%%/lisp/match-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/match-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/maximize.jl
+%%DATADIR%%/%%VERSION%%/lisp/maximize.jlc
+%%DATADIR%%/%%VERSION%%/lisp/menus.jl
+%%DATADIR%%/%%VERSION%%/lisp/menus.jlc
+%%DATADIR%%/%%VERSION%%/lisp/move-resize.jl
+%%DATADIR%%/%%VERSION%%/lisp/move-resize.jlc
+%%DATADIR%%/%%VERSION%%/lisp/old-window-menu.jl
+%%DATADIR%%/%%VERSION%%/lisp/old-window-menu.jlc
+%%DATADIR%%/%%VERSION%%/lisp/prompt.jl
+%%DATADIR%%/%%VERSION%%/lisp/prompt.jlc
+%%DATADIR%%/%%VERSION%%/lisp/rects.jl
+%%DATADIR%%/%%VERSION%%/lisp/rects.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/color-preview.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/color-preview.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/stock.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/stock.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widget-dialog.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widget-dialog.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widget-test.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widget-test.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widget.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widget.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/alist.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/alist.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/color.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/color.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/file.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/file.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/font.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/font.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/list.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/list.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/pair.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/pair.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/program.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/program.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/scheme-boolean.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets/scheme-boolean.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/apply.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/apply.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/config.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/config.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/group.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/group.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/i18n.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/i18n.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/layout.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/layout.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/layouts/keymaps.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/layouts/keymaps.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/main.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/main.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/shell.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/shell.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/slot.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/slot.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/command.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/command.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/event.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/event.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/frame-style.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/frame-style.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/icon.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/icon.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/keymap.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/keymap.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/match-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/match-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/modifier-list.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/modifier-list.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/workspace-geometry.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets/workspace-geometry.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/wm.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/wm.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/animation/outline.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/animation/outline.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/autoload.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/cycle.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/cycle.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/describe.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/describe.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/gnome.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/gnome.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/groups.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/groups.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/grow-pack.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/grow-pack.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/help.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/help.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/move-cursor.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/move-cursor.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/move-resize.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/move-resize.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/raise-commands.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/raise-commands.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/size-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/size-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/slide-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/slide-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/viewport-extras.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/viewport-extras.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/viewport-linear.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/viewport-linear.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/x-cycle.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/x-cycle.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/xterm.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands/xterm.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/cursors.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/cursors.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/custom-defaults.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/custom-defaults.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/custom.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/custom.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/customize.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/customize.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/defaults.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/defaults.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/3d-hack.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/3d-hack.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/audio-events.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/audio-events.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/auto-raise.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/auto-raise.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/beos-window-menu.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/beos-window-menu.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/edge-flip.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/edge-flip.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/error-handler.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/error-handler.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/hide-dialogs.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/hide-dialogs.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/match-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/match-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/old-window-menu.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/old-window-menu.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/shade-hover.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/shade-hover.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/tooltips.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/tooltips.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/window-history.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/window-history.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/workspace-grid.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext/workspace-grid.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/focus.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/focus.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/frames.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/frames.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gaol.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gaol.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome/integration.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome/integration.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome/match-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome/match-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome/menus.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome/menus.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/keymaps.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/keymaps.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/menus.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/menus.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/misc.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/misc.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/off-center.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/off-center.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/smart.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/smart.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/stagger.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/stagger.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/top-left.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement/top-left.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/server.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/server.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session/init.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session/init.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session/load.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session/load.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session/save.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session/save.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/stacking.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/stacking.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/configure.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/configure.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/gnome.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/gnome.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/iconify.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/iconify.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/ignored.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/ignored.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/maximize.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/maximize.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/mwm.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/mwm.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/open-look.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/open-look.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/shading.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/shading.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/transient.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/transient.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/wm-spec.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state/wm-spec.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/swapper.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/swapper.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/theming/make-theme-preview.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/theming/make-theme-preview.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/theming/make-theme.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/theming/make-theme.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/user.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/user.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/compat.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/compat.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/decode-events.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/decode-events.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/display-window.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/display-window.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/display-wininfo.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/display-wininfo.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/edges.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/edges.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/font.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/font.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/groups.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/groups.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/gtkrc.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/gtkrc.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/keymap-diff.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/keymap-diff.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/keymap.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/keymap.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/nokogiri.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/nokogiri.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/ping.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/ping.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/play-audio.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/play-audio.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/prompt-extras.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/prompt-extras.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/prompt-wm.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/prompt-wm.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/prompt.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/prompt.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/recolor-image.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/recolor-image.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/rects.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/rects.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/stacking.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/stacking.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/window-order.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/window-order.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/window-outline.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/window-outline.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/with-output.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/with-output.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/workarea.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util/workarea.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/viewport.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/viewport.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/window-anim.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/window-anim.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/windows.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/windows.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/workspace.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/workspace.jlc
+%%DATADIR%%/%%VERSION%%/lisp/sawmill-defaults.jl
+%%DATADIR%%/%%VERSION%%/lisp/sawmill-defaults.jlc
+%%DATADIR%%/%%VERSION%%/lisp/shade-hover.jl
+%%DATADIR%%/%%VERSION%%/lisp/shade-hover.jlc
+%%DATADIR%%/%%VERSION%%/lisp/shading.jl
+%%DATADIR%%/%%VERSION%%/lisp/shading.jlc
+%%DATADIR%%/%%VERSION%%/lisp/tooltips.jl
+%%DATADIR%%/%%VERSION%%/lisp/tooltips.jlc
+%%DATADIR%%/%%VERSION%%/lisp/viewport-linear.jl
+%%DATADIR%%/%%VERSION%%/lisp/viewport-linear.jlc
+%%DATADIR%%/%%VERSION%%/lisp/window-history.jl
+%%DATADIR%%/%%VERSION%%/lisp/window-history.jlc
+%%DATADIR%%/%%VERSION%%/lisp/window-order.jl
+%%DATADIR%%/%%VERSION%%/lisp/window-order.jlc
+%%DATADIR%%/%%VERSION%%/lisp/window-outline.jl
+%%DATADIR%%/%%VERSION%%/lisp/window-outline.jlc
+%%DATADIR%%/%%VERSION%%/lisp/with-output.jl
+%%DATADIR%%/%%VERSION%%/lisp/with-output.jlc
+%%DATADIR%%/%%VERSION%%/lisp/x-cycle.jl
+%%DATADIR%%/%%VERSION%%/lisp/x-cycle.jlc
+%%DATADIR%%/%%VERSION%%/monitor.png
+%%DATADIR%%/%%VERSION%%/sounds/activate.wav
+%%DATADIR%%/%%VERSION%%/sounds/clicked.wav
+%%DATADIR%%/%%VERSION%%/sounds/gameover.wav
+%%DATADIR%%/%%VERSION%%/sounds/slide.wav
+%%DATADIR%%/%%VERSION%%/sounds/toggled.wav
+%%DATADIR%%/%%VERSION%%/themes/Crux/README
+%%DATADIR%%/%%VERSION%%/themes/Crux/README.gl
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:bottom-left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:bottom-left-corner.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:bottom-right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:bottom-right-corner.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:button-hilight.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:button-pressed.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:close-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:left-top-border-shaped.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:left-top-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:maximize-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:menu-button-hilight.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:menu-button-pressed.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:menu-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:minimize-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:right-top-border-shaped.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:right-top-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:shade-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-center-left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-center-left.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-center-mid.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-center-right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-center-right.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/active:top-right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:bottom-left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:bottom-left-corner.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:bottom-right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:bottom-right-corner.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:button-hilight.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:button-pressed.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:close-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:left-top-border-shaped.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:left-top-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:maximize-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:menu-button-hilight.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:menu-button-pressed.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:menu-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:minimize-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:right-top-border-shaped.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:right-top-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:shade-button.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-center-left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-center-left.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-center-mid.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-center-right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-center-right.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-left-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/inactive:top-right-border.png
+%%DATADIR%%/%%VERSION%%/themes/Crux/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/README
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/README.gl
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/README.it
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/README.ja
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/README.pl
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/bar_clicked_active.png
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/bar_hilited_active.png
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/bar_normal.png
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/bar_normal_active.png
+%%DATADIR%%/%%VERSION%%/themes/absolute-e/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/README
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/README.gl
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/README.it
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/README.ja
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/README.pl
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b1-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b1.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b2-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b2.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b3-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b3.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b5-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b5.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b6-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b6.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b7-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/b7.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t1-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t1-b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t1.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t1b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t2-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t2.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t2s-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t2s.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t3-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t3-b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t3.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t3b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t4-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t4-b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t4.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t4b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t5-.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t5-b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t5.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/t5b.png
+%%DATADIR%%/%%VERSION%%/themes/brushed-metal/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/gradient/README
+%%DATADIR%%/%%VERSION%%/themes/gradient/README.gl
+%%DATADIR%%/%%VERSION%%/themes/gradient/README.it
+%%DATADIR%%/%%VERSION%%/themes/gradient/README.ja
+%%DATADIR%%/%%VERSION%%/themes/gradient/README.pl
+%%DATADIR%%/%%VERSION%%/themes/gradient/as_close-b.png
+%%DATADIR%%/%%VERSION%%/themes/gradient/as_close.png
+%%DATADIR%%/%%VERSION%%/themes/gradient/as_min-b.png
+%%DATADIR%%/%%VERSION%%/themes/gradient/as_min.png
+%%DATADIR%%/%%VERSION%%/themes/gradient/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/gtk/README
+%%DATADIR%%/%%VERSION%%/themes/gtk/README.gl
+%%DATADIR%%/%%VERSION%%/themes/gtk/README.it
+%%DATADIR%%/%%VERSION%%/themes/gtk/README.ja
+%%DATADIR%%/%%VERSION%%/themes/gtk/README.pl
+%%DATADIR%%/%%VERSION%%/themes/gtk/as_close-b.png
+%%DATADIR%%/%%VERSION%%/themes/gtk/as_close.png
+%%DATADIR%%/%%VERSION%%/themes/gtk/as_min-b.png
+%%DATADIR%%/%%VERSION%%/themes/gtk/as_min.png
+%%DATADIR%%/%%VERSION%%/themes/gtk/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/microGUI/README
+%%DATADIR%%/%%VERSION%%/themes/microGUI/README.gl
+%%DATADIR%%/%%VERSION%%/themes/microGUI/README.it
+%%DATADIR%%/%%VERSION%%/themes/microGUI/README.ja
+%%DATADIR%%/%%VERSION%%/themes/microGUI/README.pl
+%%DATADIR%%/%%VERSION%%/themes/microGUI/TODO
+%%DATADIR%%/%%VERSION%%/themes/microGUI/bl.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/bottom.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/br.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/close_active.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/close_clicked.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/close_normal.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/left.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/maximize_active.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/maximize_clicked.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/maximize_normal.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/menu_active.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/menu_clicked.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/menu_normal.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/minimize_active.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/minimize_clicked.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/minimize_normal.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/right.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_bottom.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_bottom_left.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_bottom_right.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_close_active.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_close_clicked.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_close_normal.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_left.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_right.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_top.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_top_left.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/t_top_right.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_blue.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_blue_inactive.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_curves.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_curves_inactive.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_grey.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_left.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_left_inactive.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_left_inactive_s.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_left_s.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_right.png
+%%DATADIR%%/%%VERSION%%/themes/microGUI/top_right_s.png
+%%DATADIR%%/%%VERSION%%/themes/mono/README
+%%DATADIR%%/%%VERSION%%/themes/mono/README.gl
+%%DATADIR%%/%%VERSION%%/themes/mono/README.it
+%%DATADIR%%/%%VERSION%%/themes/mono/README.ja
+%%DATADIR%%/%%VERSION%%/themes/mono/README.pl
+%%DATADIR%%/%%VERSION%%/themes/mono/close-c.png
+%%DATADIR%%/%%VERSION%%/themes/mono/close.png
+%%DATADIR%%/%%VERSION%%/themes/mono/max-c.png
+%%DATADIR%%/%%VERSION%%/themes/mono/max.png
+%%DATADIR%%/%%VERSION%%/themes/mono/menu-c.png
+%%DATADIR%%/%%VERSION%%/themes/mono/menu.png
+%%DATADIR%%/%%VERSION%%/themes/mono/min-c.png
+%%DATADIR%%/%%VERSION%%/themes/mono/min.png
+%%DATADIR%%/%%VERSION%%/themes/mono/restore-c.png
+%%DATADIR%%/%%VERSION%%/themes/mono/restore.png
+%%DATADIR%%/%%VERSION%%/themes/mono/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/simple/README
+%%DATADIR%%/%%VERSION%%/themes/simple/README.gl
+%%DATADIR%%/%%VERSION%%/themes/simple/README.it
+%%DATADIR%%/%%VERSION%%/themes/simple/README.ja
+%%DATADIR%%/%%VERSION%%/themes/simple/README.pl
+%%DATADIR%%/%%VERSION%%/themes/simple/as_close-b.png
+%%DATADIR%%/%%VERSION%%/themes/simple/as_close.png
+%%DATADIR%%/%%VERSION%%/themes/simple/as_min-b.png
+%%DATADIR%%/%%VERSION%%/themes/simple/as_min.png
+%%DATADIR%%/%%VERSION%%/themes/simple/theme.jl
+%%DATADIR%%/%%VERSION%%/themes/smaker/README
+%%DATADIR%%/%%VERSION%%/themes/smaker/README.gl
+%%DATADIR%%/%%VERSION%%/themes/smaker/README.it
+%%DATADIR%%/%%VERSION%%/themes/smaker/README.ja
+%%DATADIR%%/%%VERSION%%/themes/smaker/README.pl
+%%DATADIR%%/%%VERSION%%/themes/smaker/bar_clicked_active.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/bar_hilited_active.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/bar_normal.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/bar_normal_active.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/close.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/close_inv.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/min.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/min_inv.png
+%%DATADIR%%/%%VERSION%%/themes/smaker/theme.jl
+@exec mkdir -p %D/%%DATADIR%%/sounds
+@exec mkdir -p %D/%%DATADIR%%/themes
+@dirrm %%DATADIR%%/themes
+@dirrm %%DATADIR%%/sounds
+@dirrm %%DATADIR%%/%%VERSION%%/themes/smaker
+@dirrm %%DATADIR%%/%%VERSION%%/themes/simple
+@dirrm %%DATADIR%%/%%VERSION%%/themes/mono
+@dirrm %%DATADIR%%/%%VERSION%%/themes/microGUI
+@dirrm %%DATADIR%%/%%VERSION%%/themes/gtk
+@dirrm %%DATADIR%%/%%VERSION%%/themes/gradient
+@dirrm %%DATADIR%%/%%VERSION%%/themes/brushed-metal
+@dirrm %%DATADIR%%/%%VERSION%%/themes/absolute-e
+@dirrm %%DATADIR%%/%%VERSION%%/themes/Crux
+@dirrm %%DATADIR%%/%%VERSION%%/themes
+@dirrm %%DATADIR%%/%%VERSION%%/sounds
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/util
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/theming
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/state
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/session
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/placement
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/gnome
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/ext
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/commands
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm/animation
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/wm
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/widgets
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/ui/layouts
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/ui
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk/widgets
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish/gtk
+@dirrm %%DATADIR%%/%%VERSION%%/lisp/sawfish
+@dirrm %%DATADIR%%/%%VERSION%%/lisp
+@dirrm %%DATADIR%%/%%VERSION%%
+@dirrm %%DATADIR%%
+@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
+@dirrm libexec/rep/%%GNUHOST%%/sawfish