summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorfredb <fredb>1999-07-31 10:36:45 +0000
committerfredb <fredb>1999-07-31 10:36:45 +0000
commit3dc6f4bc16438cf24faa234fe8ddd105eaa614b7 (patch)
treef1c502645c6949dd680905a2cb4329c57046f39a /x11
parentab4b7a3c9078061f3e24539dcc4bcf2912016fb3 (diff)
downloadpkgsrc-3dc6f4bc16438cf24faa234fe8ddd105eaa614b7.tar.gz
Initial import of afterstep-1.7.125, a window manager for X.
Afterstep-1.7.x adds additional configuration capabilities to 1.6.x, a few of which follow. This breaks x11/ascp, the AfterStep Control Panel. --New "style definitions" permit consistent color schemes for several different modules. --New ".include" file mechanism for Start menu permits setting of site- and host-wide policies. Other changes are mostly transparent to the user. --All intermodule communication now uses socket IO. --A new libmodule collects methods for same (incomplete). This is considered to be af development quality, and in spite of the prodigious version number, is nowhere near cutoff.
Diffstat (limited to 'x11')
-rw-r--r--x11/afterstep-current/Makefile71
-rw-r--r--x11/afterstep-current/files/md517
-rw-r--r--x11/afterstep-current/files/patch-sum6
-rw-r--r--x11/afterstep-current/patches/patch-aa25
-rw-r--r--x11/afterstep-current/patches/patch-ab24
-rw-r--r--x11/afterstep-current/patches/patch-ac21
-rw-r--r--x11/afterstep-current/patches/patch-ad12
-rw-r--r--x11/afterstep-current/pkg/COMMENT1
-rw-r--r--x11/afterstep-current/pkg/DESCR6
-rw-r--r--x11/afterstep-current/pkg/MESSAGE25
-rw-r--r--x11/afterstep-current/pkg/PLIST765
11 files changed, 973 insertions, 0 deletions
diff --git a/x11/afterstep-current/Makefile b/x11/afterstep-current/Makefile
new file mode 100644
index 00000000000..8799e0bd5a6
--- /dev/null
+++ b/x11/afterstep-current/Makefile
@@ -0,0 +1,71 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/07/31 10:36:45 fredb Exp $
+
+DISTNAME= AfterStep-1.7.111
+PKGNAME= afterstep-1.7.125
+CATEGORIES= x11
+MASTER_SITES= ftp://ftp.afterstep.org/devel/snapshots/ \
+ ftp://ftp.afterstep.org/devel/archives/1.7/ \
+ ftp://ftp.digex.net/pub/X11/window-managers/afterstep/devel/snapshots/ \
+ ftp://ftp.digex.net/pub/X11/window-managers/afterstep/devel/archives/1.7/
+#MASTER_SITES= ftp://ftp.afterstep.org/pub/stable/ \
+# ftp://ftp.digex.net/pub/X11/window-managers/afterstep/stable/
+EXTRACT_SUFX= .tar.bz2
+
+PATCH_SITES= ftp://ftp.afterstep.org/devel/patches/ \
+ ftp://ftp.afterstep.org/devel/patches/contrib/ \
+ ftp://ftp.afterstep.org/devel/patches/archive/ \
+ ftp://ftp.digex.net/pub/X11/window-managers/afterstep/devel/patches/ \
+ ftp://ftp.digex.net/pub/X11/window-managers/afterstep/devel/patches/contrib/ \
+ ftp://ftp.digex.net/pub/X11/window-managers/afterstep/devel/patches/archive/
+PATCHFILES= 1.7.111-01-allanon-frames_and_vert_text.patch.gz \
+ 1.7.111-02-allanon-stuff.patch.gz \
+ 1.7.111-03-tildouf-frames.patch.gz \
+ 1.7.111-04-sasha-parser_pager.patch.gz \
+ 1.7.111-05-allanon-sockets_and_stuff.patch.gz \
+ 1.7.111-06-various-sockets_and_audio.patch.gz \
+ 1.7.111-07-sasha-new-asetroot_module.patch.gz \
+ 1.7.111-08-allanon-resize_and_smartplacement.patch.gz \
+ 1.7.111-09-allanon-startsondesk.patch.gz \
+ 1.7.111-10-sasha-asetroot_tmpheap_module.patch.gz \
+ 1.7.111-11-sasha_pager_asetroot_more.patch.gz \
+ 1.7.111-12-allanon-autoreverse_and_configurenotify.patch.gz \
+ 1.7.111-13-sasha-gradients_winlist.patch.gz \
+ 1.7.111-14-sasha-asetroot.patch.gz
+PATCH_DIST_STRIP= -p1
+
+MAINTAINER= fb@enteract.com
+HOMEPAGE= http://www.afterstep.org/
+
+DEPENDS+= xpm-3.4k:../../graphics/xpm
+DEPENDS+= jpeg-6b:../../graphics/jpeg
+DEPENDS+= png-1.0.3:../../graphics/png
+DEPENDS+= rplay-3.2.0b6:../../audio/rplay
+DEPENDS+= asclock-11:../../x11/asclock
+DEPENDS+= xli-1.16:../../graphics/xli
+
+CONFLICTS= ascp-1.0.2
+
+DIST_SUBDIR= AfterStep
+USE_X11BASE= yes
+GNU_CONFIGURE= yes
+
+CONFIGURE_ARGS+= --with-helpcommand="xterm -e man" \
+ --with-png-includes=${LOCALBASE}/include \
+ --with-png-lib=${LOCALBASE}/lib \
+ --with-jpeg-includes=${LOCALBASE}/include \
+ --with-jpeg-lib=${LOCALBASE}/lib
+CONFIGURE_ENV+= LOCALBASE=${LOCALBASE}
+
+MESSAGE_FILE= ${WRKDIR}/MESSAGE
+
+post-build:
+ ${SED} 's#@PREFIX@#${PREFIX}#g' < ${PKGDIR}/MESSAGE > ${WRKDIR}/MESSAGE
+
+post-patch:
+ for i in ` find ${WRKSRC} -name "*.man" -print `; do \
+ ${MV} $$i $$i.orig ; \
+ ${SED} -e 's@/usr/local/@${PREFIX}/@g' -e 's@1x@1@g' \
+ < $$i.orig > $$i ; \
+ done
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/x11/afterstep-current/files/md5 b/x11/afterstep-current/files/md5
new file mode 100644
index 00000000000..a28a90df441
--- /dev/null
+++ b/x11/afterstep-current/files/md5
@@ -0,0 +1,17 @@
+$NetBSD: md5,v 1.1.1.1 1999/07/31 10:36:45 fredb Exp $
+
+MD5 (AfterStep/AfterStep-1.7.111.tar.bz2) = 458d96740b8471cef6dc0aeb1c2d6774
+MD5 (AfterStep/1.7.111-01-allanon-frames_and_vert_text.patch.gz) = 854d23f15ecd6dc184e6075247f73df4
+MD5 (AfterStep/1.7.111-02-allanon-stuff.patch.gz) = 595af48395a7a29c0feea0f41c5133dc
+MD5 (AfterStep/1.7.111-03-tildouf-frames.patch.gz) = 907be605f60d23c540755928473dad70
+MD5 (AfterStep/1.7.111-04-sasha-parser_pager.patch.gz) = 74072ccd9b0b557d3a71724ae91af23e
+MD5 (AfterStep/1.7.111-05-allanon-sockets_and_stuff.patch.gz) = 61a9608f17869cf1cb7787674aeffc15
+MD5 (AfterStep/1.7.111-06-various-sockets_and_audio.patch.gz) = c8dd65e0931232a1ed59644a7c6bdc3a
+MD5 (AfterStep/1.7.111-07-sasha-new-asetroot_module.patch.gz) = dec049a719659c9b398abe50d2de7e51
+MD5 (AfterStep/1.7.111-08-allanon-resize_and_smartplacement.patch.gz) = 5cb884ee8aa5406907afddb52e1c4225
+MD5 (AfterStep/1.7.111-09-allanon-startsondesk.patch.gz) = 5504c38b2ac7fc3a2ac724507f912f91
+MD5 (AfterStep/1.7.111-10-sasha-asetroot_tmpheap_module.patch.gz) = be3cbc6c0e41e0bdfef7ff46804a2a36
+MD5 (AfterStep/1.7.111-11-sasha_pager_asetroot_more.patch.gz) = f45d6e333c8b8dc59a1d9ad48df51cba
+MD5 (AfterStep/1.7.111-12-allanon-autoreverse_and_configurenotify.patch.gz) = 217823874093dc72f556e0a91fd48a10
+MD5 (AfterStep/1.7.111-13-sasha-gradients_winlist.patch.gz) = 1afecce17649dcef8adecf57600161e4
+MD5 (AfterStep/1.7.111-14-sasha-asetroot.patch.gz) = 1950d185d3f7f9d65465cac281817d8a
diff --git a/x11/afterstep-current/files/patch-sum b/x11/afterstep-current/files/patch-sum
new file mode 100644
index 00000000000..2ae7ffa42c6
--- /dev/null
+++ b/x11/afterstep-current/files/patch-sum
@@ -0,0 +1,6 @@
+$NetBSD: patch-sum,v 1.1.1.1 1999/07/31 10:36:45 fredb Exp $
+
+MD5 (patch-aa) = cdbcaf4695ef756e52872db98f1e8915
+MD5 (patch-ab) = a7a25072bc407d53a1f1b703fdf7e3e3
+MD5 (patch-ac) = 4c9f9d96549030aaac1a7f01e689a226
+MD5 (patch-ad) = f64c62819dae1b6f9c5d28e6190451b0
diff --git a/x11/afterstep-current/patches/patch-aa b/x11/afterstep-current/patches/patch-aa
new file mode 100644
index 00000000000..01f5b8ab76e
--- /dev/null
+++ b/x11/afterstep-current/patches/patch-aa
@@ -0,0 +1,25 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/07/31 10:36:46 fredb Exp $
+
+--- doc/afterstepdoc.in.orig Tue Nov 10 10:51:01 1998
++++ doc/afterstepdoc.in Tue Dec 29 00:20:54 1998
+@@ -9,9 +9,8 @@
+ # First try standard path, then local, then other possible paths
+ #
+
+-for netscape in /usr/X11R6/bin/netscape /usr/bin/netscape \
+- /usr/local/bin/netscape /usr/local/netscape/netscape \
+- /opt/netscape/netscape /opt/bin/netscape ; do
++for netscape in @bindir@/netscape @bindir@/mozilla @bindir@/navigator \
++ /usr/local/bin/netscape /usr/local/netscape/bin/netscape ; do
+ if [ -x $netscape ] ; then
+ $netscape -remote \
+ openurl\(file:///@datadir@/afterstep/doc/afterstep.html\) 2>/dev/null \
+@@ -20,7 +19,7 @@
+ fi
+ done
+
+-for lynx in /usr/bin/lynx /bin/lynx /usr/local/bin/lynx ; do
++for lynx in @LOCALBASE@/bin/lynx /usr/local/bin/lynx ; do
+ if [ -x $lynx ] ; then
+ exec xterm -bg black -fg white -sl 500 -vb -e $lynx @datadir@/afterstep/doc/afterstep.html &
+ fi
diff --git a/x11/afterstep-current/patches/patch-ab b/x11/afterstep-current/patches/patch-ab
new file mode 100644
index 00000000000..a94fb31ba8e
--- /dev/null
+++ b/x11/afterstep-current/patches/patch-ab
@@ -0,0 +1,24 @@
+$NetBSD: patch-ab,v 1.1.1.1 1999/07/31 10:36:46 fredb Exp $
+
+--- autoconf/Makefile.common.in.orig Mon Mar 8 10:47:14 1999
++++ autoconf/Makefile.common.in Thu May 27 05:28:28 1999
+@@ -13,8 +13,8 @@
+
+ install.man:
+ @if test -f $(PROG).man; then \
+- echo $(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1x; \
+- $(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1x; \
++ echo $(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1; \
++ $(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1; \
+ fi
+
+ install.script:
+@@ -27,7 +27,7 @@
+ $(RMF) $(AFTER_BIN_DIR)/$(PROG)
+
+ uninstall.man:
+- $(RMF) $(AFTER_MAN_DIR)/$(PROG).1x
++ $(RMF) $(AFTER_MAN_DIR)/$(PROG).1
+
+ uninstall.script:
+ @for i in $(SCRIPTS); do \
diff --git a/x11/afterstep-current/patches/patch-ac b/x11/afterstep-current/patches/patch-ac
new file mode 100644
index 00000000000..2564db0a6f0
--- /dev/null
+++ b/x11/afterstep-current/patches/patch-ac
@@ -0,0 +1,21 @@
+$NetBSD: patch-ac,v 1.1.1.1 1999/07/31 10:36:46 fredb Exp $
+
+--- src/Audio/Makefile.in.orig Tue Nov 10 10:51:01 1998
++++ src/Audio/Makefile.in Tue Dec 29 00:02:11 1998
+@@ -4,12 +4,12 @@
+ # are correct for your rplay installation.
+ #
+
+-#EXTRA_DEFINES = -DHAVE_RPLAY
+-#EXTRA_INCLUDES = -I/usr/local/include
+-#EXTRA_LIBRARIES = -L/usr/local/lib -lrplay
+-
+ OBJS = Audio.o
+
+ PROG = Audio
+
+ @MAKEFILECOMMON@
++
++EXTRA_DEFINES = -DHAVE_RPLAY
++EXTRA_INCLUDES = -I${LOCALBASE}/include
++EXTRA_LIBRARIES = -L${LOCALBASE}/lib -lrplay
diff --git a/x11/afterstep-current/patches/patch-ad b/x11/afterstep-current/patches/patch-ad
new file mode 100644
index 00000000000..4e69ecbbef4
--- /dev/null
+++ b/x11/afterstep-current/patches/patch-ad
@@ -0,0 +1,12 @@
+$NetBSD: patch-ad,v 1.1.1.1 1999/07/31 10:36:46 fredb Exp $
+
+--- configure.orig Thu Dec 10 05:52:19 1998
++++ configure Tue Dec 29 00:26:35 1998
+@@ -4012,6 +4012,7 @@
+ s%@DEFS@%$DEFS%g
+ s%@LDFLAGS@%$LDFLAGS%g
+ s%@LIBS@%$LIBS%g
++s%@LOCALBASE@%$LOCALBASE%g
+ s%@exec_prefix@%$exec_prefix%g
+ s%@prefix@%$prefix%g
+ s%@program_transform_name@%$program_transform_name%g
diff --git a/x11/afterstep-current/pkg/COMMENT b/x11/afterstep-current/pkg/COMMENT
new file mode 100644
index 00000000000..3b37e8d24ed
--- /dev/null
+++ b/x11/afterstep-current/pkg/COMMENT
@@ -0,0 +1 @@
+a NeXT-like window manager for X11
diff --git a/x11/afterstep-current/pkg/DESCR b/x11/afterstep-current/pkg/DESCR
new file mode 100644
index 00000000000..4f54d22fed1
--- /dev/null
+++ b/x11/afterstep-current/pkg/DESCR
@@ -0,0 +1,6 @@
+AfterStep is a Window Manager for X which started by emulating the
+NEXTSTEP look and feel, but which has been significantly altered according
+to the requests of various users. Many adepts will tell you that NEXTSTEP
+is not only the most visually pleasant interface, but also one of the most
+functional and intuitive out there. AfterStep aims to incorporate the
+advantages of the NEXTSTEP interface, and add additional useful features.
diff --git a/x11/afterstep-current/pkg/MESSAGE b/x11/afterstep-current/pkg/MESSAGE
new file mode 100644
index 00000000000..9f32753c4ca
--- /dev/null
+++ b/x11/afterstep-current/pkg/MESSAGE
@@ -0,0 +1,25 @@
+FIRST TIME USERS:
+To use afterstep as your window manager, simply invoke "exec afterstep"
+at the end of your .xinitrc (for "startx), or .xsession file (for xdm).
+Don't forget to comment out any line(s) for your current window manager.
+
+UPGRADERS:
+Afterstep-1.7.x is more configurable than ever, but take notice: the format
+of many of the configuration files has changed! Upgraders are advised to
+back up their old ~/Gnu/Library/Afterstep directory, permit afterstep to
+create a new one, and then review the documentation while examining diffs.
+Note especially that with the new ".include" file mechanism: 1) it is not
+necessary to maintain a complete copy of @PREFIX@share/afterstep
+in each home directory, and 2) it is now possible to set site- and host-
+wide policys.
+
+EVERYBODY:
+The AfterStep Control Panel for 1.7.x is still under development.
+See the online docs (Wharf top button or bottom item of start menu)
+for configuration instructions, or try the following urls:
+
+ file:/@PREFIX@/share/afterstep/doc/afterstep.html
+ http://www.afterstep.org/FAQ/
+ http://www.music-satellite.de/spearhead/ashow/overview.html
+ http://www.afterstep.org/Documentation.shtml
+ http://www.afterstep.org/Links.shtml
diff --git a/x11/afterstep-current/pkg/PLIST b/x11/afterstep-current/pkg/PLIST
new file mode 100644
index 00000000000..8313459e782
--- /dev/null
+++ b/x11/afterstep-current/pkg/PLIST
@@ -0,0 +1,765 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1999/07/31 10:36:46 fredb Exp $
+bin/ASSound
+bin/Animate
+bin/Audio
+bin/Auto
+bin/Banner
+bin/Cascade
+bin/Clean
+bin/Form
+bin/Gnome
+bin/Ident
+bin/Pager
+bin/Save
+bin/Script
+bin/Scroll
+bin/Tile
+bin/Wharf
+bin/WinList
+bin/Zharf
+bin/afterstep
+bin/afterstepdoc
+bin/ascommand.pl
+bin/asetroot
+man/man1/Animate.1
+man/man1/Audio.1
+man/man1/Auto.1
+man/man1/Banner.1
+man/man1/Cascade.1
+man/man1/Clean.1
+man/man1/Form.1
+man/man1/Gnome.1
+man/man1/Ident.1
+man/man1/Pager.1
+man/man1/Save.1
+man/man1/Script.1
+man/man1/Scroll.1
+man/man1/Tile.1
+man/man1/Wharf.1
+man/man1/WinList.1
+man/man1/Zharf.1
+man/man1/afterstep.1
+man/man1/asetroot.1
+share/afterstep/.workspace_state
+share/afterstep/Gnome
+share/afterstep/animate
+share/afterstep/asetroot
+share/afterstep/asmail
+share/afterstep/audio
+share/afterstep/autoexec
+share/afterstep/backgrounds/Back.xpm
+share/afterstep/backgrounds/BlueStone.xpm
+share/afterstep/backgrounds/Rain.xpm
+share/afterstep/backgrounds/RainHi.xpm
+share/afterstep/backgrounds/Wave.xpm
+share/afterstep/backgrounds/WaveHi.xpm
+share/afterstep/backgrounds/Waves.xpm
+share/afterstep/backgrounds/aquamarine.xpm
+share/afterstep/backgrounds/black.xpm
+share/afterstep/backgrounds/darkblue.xpm
+share/afterstep/backgrounds/darkgreen.xpm
+share/afterstep/backgrounds/midnightblue.xpm
+share/afterstep/backgrounds/purple.xpm
+share/afterstep/backgrounds/red.xpm
+share/afterstep/backgrounds/wheat.xpm
+share/afterstep/base.15bpp
+share/afterstep/base.16bpp
+share/afterstep/base.24bpp
+share/afterstep/base.32bpp
+share/afterstep/base.8bpp
+share/afterstep/clean
+share/afterstep/compatibility
+share/afterstep/database
+share/afterstep/desktop/buttons/1-e.xpm
+share/afterstep/desktop/buttons/1.xpm
+share/afterstep/desktop/buttons/1p-e.xpm
+share/afterstep/desktop/buttons/1p.xpm
+share/afterstep/desktop/buttons/2-e.xpm
+share/afterstep/desktop/buttons/2.xpm
+share/afterstep/desktop/buttons/2p-e.xpm
+share/afterstep/desktop/buttons/2p.xpm
+share/afterstep/desktop/buttons/3-e.xpm
+share/afterstep/desktop/buttons/3.xpm
+share/afterstep/desktop/buttons/3p-e.xpm
+share/afterstep/desktop/buttons/3p.xpm
+share/afterstep/desktop/buttons/4-e.xpm
+share/afterstep/desktop/buttons/4.xpm
+share/afterstep/desktop/buttons/4p-e.xpm
+share/afterstep/desktop/buttons/4p.xpm
+share/afterstep/desktop/buttons/5-e.xpm
+share/afterstep/desktop/buttons/5.xpm
+share/afterstep/desktop/buttons/5p-e.xpm
+share/afterstep/desktop/buttons/5p.xpm
+share/afterstep/desktop/buttons/as-iconize-pressed.xpm
+share/afterstep/desktop/buttons/as-iconize.xpm
+share/afterstep/desktop/buttons/as-kill-pressed.xpm
+share/afterstep/desktop/buttons/as-kill.xpm
+share/afterstep/desktop/buttons/as-maximize-a-pressed.xpm
+share/afterstep/desktop/buttons/as-maximize-a.xpm
+share/afterstep/desktop/buttons/as-menu-a-pressed.xpm
+share/afterstep/desktop/buttons/as-menu-a.xpm
+share/afterstep/desktop/buttons/as-menu-b-pressed.xpm
+share/afterstep/desktop/buttons/as-menu-b.xpm
+share/afterstep/desktop/buttons/as-minimize-a-pressed.xpm
+share/afterstep/desktop/buttons/as-minimize-a.xpm
+share/afterstep/desktop/buttons/as-shade-a-pressed.xpm
+share/afterstep/desktop/buttons/as-shade-a.xpm
+share/afterstep/desktop/buttons/as-switchwindow-a-pressed.xpm
+share/afterstep/desktop/buttons/as-switchwindow-a.xpm
+share/afterstep/desktop/buttons/as-switchwindow-b-pressed.xpm
+share/afterstep/desktop/buttons/as-switchwindow-b.xpm
+share/afterstep/desktop/buttons/as-switchwindow-c-pressed.xpm
+share/afterstep/desktop/buttons/as-switchwindow-c.xpm
+share/afterstep/desktop/buttons/as1.5-iconize-p.xpm
+share/afterstep/desktop/buttons/as1.5-iconize.xpm
+share/afterstep/desktop/buttons/as1.5-kill-p.xpm
+share/afterstep/desktop/buttons/as1.5-kill.xpm
+share/afterstep/desktop/buttons/as1.5-menu-p.xpm
+share/afterstep/desktop/buttons/as1.5-menu.xpm
+share/afterstep/desktop/buttons/as1.5-shade-p.xpm
+share/afterstep/desktop/buttons/as1.5-shade.xpm
+share/afterstep/desktop/buttons/fuf-iconify-pressed.xpm
+share/afterstep/desktop/buttons/fuf-iconify.xpm
+share/afterstep/desktop/buttons/fuf-kill-pressed.xpm
+share/afterstep/desktop/buttons/fuf-kill.xpm
+share/afterstep/desktop/buttons/fuf-shade-pressed.xpm
+share/afterstep/desktop/buttons/fuf-shade.xpm
+share/afterstep/desktop/buttons/fuf-switchwindow-pressed.xpm
+share/afterstep/desktop/buttons/fuf-switchwindow.xpm
+share/afterstep/desktop/buttons/fuf-test.xpm
+share/afterstep/desktop/buttons/fuf-windowmenu-pressed.xpm
+share/afterstep/desktop/buttons/fuf-windowmenu.xpm
+share/afterstep/desktop/buttons/os8-iconize-pressed.xpm
+share/afterstep/desktop/buttons/os8-iconize.xpm
+share/afterstep/desktop/buttons/os8-kill-pressed.xpm
+share/afterstep/desktop/buttons/os8-kill.xpm
+share/afterstep/desktop/buttons/os8-maximize-pressed.xpm
+share/afterstep/desktop/buttons/os8-maximize.xpm
+share/afterstep/desktop/buttons/os8-shade-pressed.xpm
+share/afterstep/desktop/buttons/os8-shade.xpm
+share/afterstep/desktop/cursors/cursor.xbm
+share/afterstep/desktop/cursors/cursor.xbm.mask
+share/afterstep/desktop/cursors/iconify.xbm
+share/afterstep/desktop/cursors/iconify.xbm.mask
+share/afterstep/desktop/cursors/kill.xbm
+share/afterstep/desktop/cursors/kill.xbm.mask
+share/afterstep/desktop/cursors/move.xbm
+share/afterstep/desktop/cursors/move.xbm.mask
+share/afterstep/desktop/cursors/resize_br.xbm
+share/afterstep/desktop/cursors/resize_br.xbm.mask
+share/afterstep/desktop/cursors/resize_h.xbm
+share/afterstep/desktop/cursors/resize_h.xbm.mask
+share/afterstep/desktop/cursors/resize_tr.xbm
+share/afterstep/desktop/cursors/resize_tr.xbm.mask
+share/afterstep/desktop/cursors/resize_v.xbm
+share/afterstep/desktop/cursors/resize_v.xbm.mask
+share/afterstep/desktop/cursors/xm_hour32
+share/afterstep/desktop/cursors/xm_hour32m
+share/afterstep/desktop/icons/16bpp/3dpaint.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockBlue.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockClear.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockConvexBlue.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockDefault.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockGreen.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockMarble.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockRed.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockSlate.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockTransparent.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockWater.xpm
+share/afterstep/desktop/icons/16bpp/ASBBlockWhite.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep1.5_startmenu.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep2.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep3.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep4.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep5.xpm
+share/afterstep/desktop/icons/16bpp/AfterStep6.xpm
+share/afterstep/desktop/icons/16bpp/BookArrows.xpm
+share/afterstep/desktop/icons/16bpp/Bookshelf.xpm
+share/afterstep/desktop/icons/16bpp/Brush.xpm
+share/afterstep/desktop/icons/16bpp/CDrom.xpm
+share/afterstep/desktop/icons/16bpp/CDrom2.xpm
+share/afterstep/desktop/icons/16bpp/Computer.xpm
+share/afterstep/desktop/icons/16bpp/ComputerPC.xpm
+share/afterstep/desktop/icons/16bpp/Database.xpm
+share/afterstep/desktop/icons/16bpp/Debug.xpm
+share/afterstep/desktop/icons/16bpp/DeskGlobe.xpm
+share/afterstep/desktop/icons/16bpp/Eyecon.xpm
+share/afterstep/desktop/icons/16bpp/FileFolders.xpm
+share/afterstep/desktop/icons/16bpp/Folder.xpm
+share/afterstep/desktop/icons/16bpp/GNUSpace.xpm
+share/afterstep/desktop/icons/16bpp/Info.xpm
+share/afterstep/desktop/icons/16bpp/Install.xpm
+share/afterstep/desktop/icons/16bpp/KeyPower.xpm
+share/afterstep/desktop/icons/16bpp/KeysOnChain.xpm
+share/afterstep/desktop/icons/16bpp/Monitor.xpm
+share/afterstep/desktop/icons/16bpp/Network.xpm
+share/afterstep/desktop/icons/16bpp/NetworkInfoManager.xpm
+share/afterstep/desktop/icons/16bpp/OldFashionedRadio.xpm
+share/afterstep/desktop/icons/16bpp/Paint.xpm
+share/afterstep/desktop/icons/16bpp/Plasma.xpm
+share/afterstep/desktop/icons/16bpp/Publish.xpm
+share/afterstep/desktop/icons/16bpp/RayTracedGear.xpm
+share/afterstep/desktop/icons/16bpp/Recycler.xpm
+share/afterstep/desktop/icons/16bpp/RedFire.xpm
+share/afterstep/desktop/icons/16bpp/ShutDown.xpm
+share/afterstep/desktop/icons/16bpp/Start.xpm
+share/afterstep/desktop/icons/16bpp/Text.xpm
+share/afterstep/desktop/icons/16bpp/WWW.xpm
+share/afterstep/desktop/icons/16bpp/YellowBlueRedGeometry.xpm
+share/afterstep/desktop/icons/16bpp/author.xpm
+share/afterstep/desktop/icons/16bpp/cpuchip.xpm
+share/afterstep/desktop/icons/16bpp/disk.builder.xpm
+share/afterstep/desktop/icons/16bpp/draw.xpm
+share/afterstep/desktop/icons/16bpp/e-no.xpm
+share/afterstep/desktop/icons/16bpp/e0.xpm
+share/afterstep/desktop/icons/16bpp/e1.xpm
+share/afterstep/desktop/icons/16bpp/e10.xpm
+share/afterstep/desktop/icons/16bpp/e11.xpm
+share/afterstep/desktop/icons/16bpp/e2.xpm
+share/afterstep/desktop/icons/16bpp/e3.xpm
+share/afterstep/desktop/icons/16bpp/e4.xpm
+share/afterstep/desktop/icons/16bpp/e5.xpm
+share/afterstep/desktop/icons/16bpp/e6.xpm
+share/afterstep/desktop/icons/16bpp/e7.xpm
+share/afterstep/desktop/icons/16bpp/e8.xpm
+share/afterstep/desktop/icons/16bpp/e9.xpm
+share/afterstep/desktop/icons/16bpp/hostmanager.xpm
+share/afterstep/desktop/icons/16bpp/interface.xpm
+share/afterstep/desktop/icons/16bpp/linux-penguin.xpm
+share/afterstep/desktop/icons/16bpp/monalisa.xpm
+share/afterstep/desktop/icons/16bpp/netscape.xpm
+share/afterstep/desktop/icons/16bpp/shutdown.xpm
+share/afterstep/desktop/icons/16bpp/spreadsheet.xpm
+share/afterstep/desktop/icons/16bpp/spreadsheet2.xpm
+share/afterstep/desktop/icons/16bpp/wharf.xpm
+share/afterstep/desktop/icons/16bpp/widget.xpm
+share/afterstep/desktop/icons/16bpp/workshop.xpm
+share/afterstep/desktop/icons/16bpp/writeletter.xpm
+share/afterstep/desktop/icons/8bpp/3dpaint.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockBlue.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockClear.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockConvexBlue.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockDefault.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockGreen.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockMarble.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockRed.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockSlate.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockTransparent.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockWater.xpm
+share/afterstep/desktop/icons/8bpp/ASBBlockWhite.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep1.5_startmenu.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep2.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep3.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep4.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep5.xpm
+share/afterstep/desktop/icons/8bpp/AfterStep6.xpm
+share/afterstep/desktop/icons/8bpp/BookArrows.xpm
+share/afterstep/desktop/icons/8bpp/Bookshelf.xpm
+share/afterstep/desktop/icons/8bpp/Brush.xpm
+share/afterstep/desktop/icons/8bpp/CDrom.xpm
+share/afterstep/desktop/icons/8bpp/CDrom2.xpm
+share/afterstep/desktop/icons/8bpp/Computer.xpm
+share/afterstep/desktop/icons/8bpp/ComputerPC.xpm
+share/afterstep/desktop/icons/8bpp/Database.xpm
+share/afterstep/desktop/icons/8bpp/Debug.xpm
+share/afterstep/desktop/icons/8bpp/DeskGlobe.xpm
+share/afterstep/desktop/icons/8bpp/Eyecon.xpm
+share/afterstep/desktop/icons/8bpp/FileFolders.xpm
+share/afterstep/desktop/icons/8bpp/Folder.xpm
+share/afterstep/desktop/icons/8bpp/GNUSpace.xpm
+share/afterstep/desktop/icons/8bpp/Info.xpm
+share/afterstep/desktop/icons/8bpp/Install.xpm
+share/afterstep/desktop/icons/8bpp/KeyPower.xpm
+share/afterstep/desktop/icons/8bpp/KeysOnChain.xpm
+share/afterstep/desktop/icons/8bpp/Monitor.xpm
+share/afterstep/desktop/icons/8bpp/Network.xpm
+share/afterstep/desktop/icons/8bpp/NetworkInfoManager.xpm
+share/afterstep/desktop/icons/8bpp/OldFashionedRadio.xpm
+share/afterstep/desktop/icons/8bpp/Paint.xpm
+share/afterstep/desktop/icons/8bpp/Plasma.xpm
+share/afterstep/desktop/icons/8bpp/Publish.xpm
+share/afterstep/desktop/icons/8bpp/RayTracedGear.xpm
+share/afterstep/desktop/icons/8bpp/Recycler.xpm
+share/afterstep/desktop/icons/8bpp/RedFire.xpm
+share/afterstep/desktop/icons/8bpp/ShutDown.xpm
+share/afterstep/desktop/icons/8bpp/Start.xpm
+share/afterstep/desktop/icons/8bpp/Text.xpm
+share/afterstep/desktop/icons/8bpp/WWW.xpm
+share/afterstep/desktop/icons/8bpp/YellowBlueRedGeometry.xpm
+share/afterstep/desktop/icons/8bpp/author.xpm
+share/afterstep/desktop/icons/8bpp/cpuchip.xpm
+share/afterstep/desktop/icons/8bpp/disk.builder.xpm
+share/afterstep/desktop/icons/8bpp/draw.xpm
+share/afterstep/desktop/icons/8bpp/e-no.xpm
+share/afterstep/desktop/icons/8bpp/e0.xpm
+share/afterstep/desktop/icons/8bpp/e1.xpm
+share/afterstep/desktop/icons/8bpp/e10.xpm
+share/afterstep/desktop/icons/8bpp/e11.xpm
+share/afterstep/desktop/icons/8bpp/e2.xpm
+share/afterstep/desktop/icons/8bpp/e3.xpm
+share/afterstep/desktop/icons/8bpp/e4.xpm
+share/afterstep/desktop/icons/8bpp/e5.xpm
+share/afterstep/desktop/icons/8bpp/e6.xpm
+share/afterstep/desktop/icons/8bpp/e7.xpm
+share/afterstep/desktop/icons/8bpp/e8.xpm
+share/afterstep/desktop/icons/8bpp/e9.xpm
+share/afterstep/desktop/icons/8bpp/hostmanager.xpm
+share/afterstep/desktop/icons/8bpp/interface.xpm
+share/afterstep/desktop/icons/8bpp/linux-penguin.xpm
+share/afterstep/desktop/icons/8bpp/monalisa.xpm
+share/afterstep/desktop/icons/8bpp/netscape.xpm
+share/afterstep/desktop/icons/8bpp/shutdown.xpm
+share/afterstep/desktop/icons/8bpp/spreadsheet.xpm
+share/afterstep/desktop/icons/8bpp/spreadsheet2.xpm
+share/afterstep/desktop/icons/8bpp/wharf.xpm
+share/afterstep/desktop/icons/8bpp/widget.xpm
+share/afterstep/desktop/icons/8bpp/workshop.xpm
+share/afterstep/desktop/icons/8bpp/writeletter.xpm
+share/afterstep/desktop/icons/common/3_dots.xpm
+share/afterstep/desktop/icons/common/98.xpm
+share/afterstep/desktop/icons/common/AfterStep7.xpm
+share/afterstep/desktop/icons/common/AfterStep8.xpm
+share/afterstep/desktop/icons/common/Earth.xpm
+share/afterstep/desktop/icons/common/Mail1.xpm
+share/afterstep/desktop/icons/common/Mail2.xpm
+share/afterstep/desktop/icons/common/Mail3.xpm
+share/afterstep/desktop/icons/common/World.xpm
+share/afterstep/desktop/icons/common/arrow-dots.xpm
+share/afterstep/desktop/icons/common/arrow.xpm
+share/afterstep/desktop/icons/common/bebutton.xpm
+share/afterstep/desktop/icons/common/bluebar.xpm
+share/afterstep/desktop/icons/common/darkbluebar.xpm
+share/afterstep/desktop/icons/common/dk.xpm
+share/afterstep/desktop/icons/common/e.xpm
+share/afterstep/desktop/icons/common/fr.xpm
+share/afterstep/desktop/icons/common/fuf-new-menu-top.xpm
+share/afterstep/desktop/icons/common/fuf-new-top-focused.xpm
+share/afterstep/desktop/icons/common/fuf-new-top-unfocused.xpm
+share/afterstep/desktop/icons/common/fuf-wharf.xpm
+share/afterstep/desktop/icons/common/g_iconize.xpm
+share/afterstep/desktop/icons/common/g_shut.xpm
+share/afterstep/desktop/icons/common/gnome-logo.xpm
+share/afterstep/desktop/icons/common/greenbar.xpm
+share/afterstep/desktop/icons/common/hr.xpm
+share/afterstep/desktop/icons/common/mini-app.xpm
+share/afterstep/desktop/icons/common/mini-as.xpm
+share/afterstep/desktop/icons/common/mini-exit.xpm
+share/afterstep/desktop/icons/common/mini-folder.xpm
+share/afterstep/desktop/icons/common/mini-menu.xpm
+share/afterstep/desktop/icons/common/mini-recycler.xpm
+share/afterstep/desktop/icons/common/monitor-e0.xpm
+share/afterstep/desktop/icons/common/monitor-e1.xpm
+share/afterstep/desktop/icons/common/monitor-e10.xpm
+share/afterstep/desktop/icons/common/monitor-e11.xpm
+share/afterstep/desktop/icons/common/monitor-e2.xpm
+share/afterstep/desktop/icons/common/monitor-e3.xpm
+share/afterstep/desktop/icons/common/monitor-e4.xpm
+share/afterstep/desktop/icons/common/monitor-e5.xpm
+share/afterstep/desktop/icons/common/monitor-e6.xpm
+share/afterstep/desktop/icons/common/monitor-e7.xpm
+share/afterstep/desktop/icons/common/monitor-e8.xpm
+share/afterstep/desktop/icons/common/monitor-e9.xpm
+share/afterstep/desktop/icons/common/monitor-no.xpm
+share/afterstep/desktop/icons/common/n.xpm
+share/afterstep/desktop/icons/common/ne.xpm
+share/afterstep/desktop/icons/common/nw.xpm
+share/afterstep/desktop/icons/common/os8-title.xpm
+share/afterstep/desktop/icons/common/ostx.xpm
+share/afterstep/desktop/icons/common/ostxs.xpm
+share/afterstep/desktop/icons/common/ostxu.xpm
+share/afterstep/desktop/icons/common/redbar.xpm
+share/afterstep/desktop/icons/common/s.xpm
+share/afterstep/desktop/icons/common/se.xpm
+share/afterstep/desktop/icons/common/sw.xpm
+share/afterstep/desktop/icons/common/vr.xpm
+share/afterstep/desktop/icons/common/w.xpm
+share/afterstep/desktop/icons/common/xiterm.xpm
+share/afterstep/desktop/sounds/bong.au
+share/afterstep/desktop/sounds/clink.au
+share/afterstep/desktop/sounds/cowbell.au
+share/afterstep/desktop/sounds/crash.au
+share/afterstep/desktop/sounds/drip.au
+share/afterstep/desktop/sounds/gong.au
+share/afterstep/desktop/sounds/meepmeep.au
+share/afterstep/desktop/sounds/train.au
+share/afterstep/doc/afterstep-1.html
+share/afterstep/doc/afterstep-10.html
+share/afterstep/doc/afterstep-2.html
+share/afterstep/doc/afterstep-3.html
+share/afterstep/doc/afterstep-4.html
+share/afterstep/doc/afterstep-5.html
+share/afterstep/doc/afterstep-6.html
+share/afterstep/doc/afterstep-7.html
+share/afterstep/doc/afterstep-8.html
+share/afterstep/doc/afterstep-9.html
+share/afterstep/doc/afterstep.html
+share/afterstep/feels/feel.AutoRaise
+share/afterstep/feels/feel.ClickToFocus
+share/afterstep/feels/feel.DEFAULT
+share/afterstep/feels/feel.GNOME
+share/afterstep/feels/feel.ICCCM
+share/afterstep/feels/feel.MacOS8
+share/afterstep/feels/feel.PureNeXT
+share/afterstep/feels/feel.Windowish
+share/afterstep/feels/feel.cursors
+share/afterstep/forms
+share/afterstep/ident
+share/afterstep/looks/look.AfterStep
+share/afterstep/looks/look.AfterStep1.5
+share/afterstep/looks/look.Black
+share/afterstep/looks/look.DEFAULT
+share/afterstep/looks/look.DeepBlue
+share/afterstep/looks/look.Ethan
+share/afterstep/looks/look.Ethan2
+share/afterstep/looks/look.Guylhem
+share/afterstep/looks/look.Guylhem2
+share/afterstep/looks/look.MacOS8
+share/afterstep/looks/look.Metallic
+share/afterstep/looks/look.Nextish
+share/afterstep/looks/look.Ostx
+share/afterstep/looks/look.PureNext
+share/afterstep/looks/look.Sea
+share/afterstep/looks/look.Transparent.rev
+share/afterstep/looks/look.Water
+share/afterstep/looks/look.fuf
+share/afterstep/looks/look.grey
+share/afterstep/looks/look.greyblue
+share/afterstep/looks/look.lightblue
+share/afterstep/looks/look.lightgrey
+share/afterstep/looks/look.nek
+share/afterstep/looks/look.orchid
+share/afterstep/looks/look.purple
+share/afterstep/looks/look.turquoise
+share/afterstep/non-configurable/0_background
+share/afterstep/non-configurable/0_feel.15bpp
+share/afterstep/non-configurable/0_feel.16bpp
+share/afterstep/non-configurable/0_feel.24bpp
+share/afterstep/non-configurable/0_feel.32bpp
+share/afterstep/non-configurable/0_feel.8bpp
+share/afterstep/non-configurable/0_look.15bpp
+share/afterstep/non-configurable/0_look.16bpp
+share/afterstep/non-configurable/0_look.24bpp
+share/afterstep/non-configurable/0_look.32bpp
+share/afterstep/non-configurable/0_look.8bpp
+share/afterstep/non-configurable/1_background
+share/afterstep/non-configurable/1_feel.15bpp
+share/afterstep/non-configurable/1_feel.16bpp
+share/afterstep/non-configurable/1_feel.24bpp
+share/afterstep/non-configurable/1_feel.32bpp
+share/afterstep/non-configurable/1_feel.8bpp
+share/afterstep/non-configurable/1_look.15bpp
+share/afterstep/non-configurable/1_look.16bpp
+share/afterstep/non-configurable/1_look.24bpp
+share/afterstep/non-configurable/1_look.32bpp
+share/afterstep/non-configurable/1_look.8bpp
+share/afterstep/non-configurable/2_background
+share/afterstep/non-configurable/2_feel.15bpp
+share/afterstep/non-configurable/2_feel.16bpp
+share/afterstep/non-configurable/2_feel.24bpp
+share/afterstep/non-configurable/2_feel.32bpp
+share/afterstep/non-configurable/2_feel.8bpp
+share/afterstep/non-configurable/2_look.15bpp
+share/afterstep/non-configurable/2_look.16bpp
+share/afterstep/non-configurable/2_look.24bpp
+share/afterstep/non-configurable/2_look.32bpp
+share/afterstep/non-configurable/2_look.8bpp
+share/afterstep/non-configurable/3_background
+share/afterstep/non-configurable/3_feel.15bpp
+share/afterstep/non-configurable/3_feel.16bpp
+share/afterstep/non-configurable/3_feel.24bpp
+share/afterstep/non-configurable/3_feel.32bpp
+share/afterstep/non-configurable/3_feel.8bpp
+share/afterstep/non-configurable/3_look.15bpp
+share/afterstep/non-configurable/3_look.16bpp
+share/afterstep/non-configurable/3_look.24bpp
+share/afterstep/non-configurable/3_look.32bpp
+share/afterstep/non-configurable/3_look.8bpp
+share/afterstep/non-configurable/Make8bitXPMs
+share/afterstep/non-configurable/Xpm2Jpg
+share/afterstep/non-configurable/startmenu
+share/afterstep/pager
+share/afterstep/scripts/Animate
+share/afterstep/scripts/BellSetup
+share/afterstep/scripts/Date
+share/afterstep/scripts/DeskSetup
+share/afterstep/scripts/FileBrowser
+share/afterstep/scripts/KeyboardSetup
+share/afterstep/scripts/PointerSetup
+share/afterstep/scripts/Quit
+share/afterstep/scripts/ScreenDump
+share/afterstep/scripts/ScreenSetup
+share/afterstep/scripts/ScreenSetup2
+share/afterstep/scroll
+share/afterstep/start/.include
+share/afterstep/start/Applications/Accessories/1_calc
+share/afterstep/start/Applications/Accessories/2_clock
+share/afterstep/start/Applications/Accessories/3_colors
+share/afterstep/start/Applications/Accessories/4_help
+share/afterstep/start/Applications/Accessories/5_notepad
+share/afterstep/start/Applications/Accessories/6_scrnmag
+share/afterstep/start/Applications/Editors/1_emacs
+share/afterstep/start/Applications/Editors/2_vi
+share/afterstep/start/Applications/Editors/3_nedit
+share/afterstep/start/Applications/Editors/4_xjed
+share/afterstep/start/Applications/Emulators/0_dos
+share/afterstep/start/Applications/Emulators/1_mac
+share/afterstep/start/Applications/Emulators/2_amiga
+share/afterstep/start/Applications/Emulators/3_amigasnd
+share/afterstep/start/Applications/Emulators/4_hp48
+share/afterstep/start/Applications/Emulators/5_appleII
+share/afterstep/start/Applications/Emulators/6_x48
+share/afterstep/start/Applications/Multimedia/0_cd
+share/afterstep/start/Applications/Multimedia/1_mp3
+share/afterstep/start/Applications/Multimedia/2_mixer
+share/afterstep/start/Applications/Multimedia/3_pict
+share/afterstep/start/Applications/Multimedia/4_gimp
+share/afterstep/start/Applications/Multimedia/5_imagick
+share/afterstep/start/Applications/Network/0_minicom
+share/afterstep/start/Applications/Network/1_ftp
+share/afterstep/start/Applications/Network/2_ncftp
+share/afterstep/start/Applications/Network/3_lynx
+share/afterstep/start/Applications/Network/4_mail
+share/afterstep/start/Applications/Network/5_irc
+share/afterstep/start/Applications/Network/6_netscape
+share/afterstep/start/Applications/Network/7_news
+share/afterstep/start/Applications/Network/8_telnet
+share/afterstep/start/Applications/Office/10_tkdesk
+share/afterstep/start/Applications/Office/1_applix
+share/afterstep/start/Applications/Office/2_so
+share/afterstep/start/Applications/Office/3_fileman
+share/afterstep/start/Applications/Office/4_plot
+share/afterstep/start/Applications/Office/6_lyx
+share/afterstep/start/Applications/Office/7_dviview
+share/afterstep/start/Applications/Office/8_psview
+share/afterstep/start/Applications/Office/9_pdf
+share/afterstep/start/Applications/System/0_sysinfo
+share/afterstep/start/Applications/System/1_sysload
+share/afterstep/start/Applications/System/2_changedefs
+share/afterstep/start/Applications/System/3_changescrn
+share/afterstep/start/Applications/System/4_console
+share/afterstep/start/Applications/System/5_fontedit
+share/afterstep/start/Applications/System/6_top
+share/afterstep/start/Applications/System/7_keyleds
+share/afterstep/start/Applications/System/8_resetcmap
+share/afterstep/start/Applications/a_nop
+share/afterstep/start/Applications/b_aterm
+share/afterstep/start/Applications/c_xiterm
+share/afterstep/start/Applications/d_xterm
+share/afterstep/start/Applications/e_rxvt
+share/afterstep/start/Applications/f_Eterm
+share/afterstep/start/Desktop/Animations/Animations-1/0_ant
+share/afterstep/start/Desktop/Animations/Animations-1/10_daisy
+share/afterstep/start/Desktop/Animations/Animations-1/11_dlock
+share/afterstep/start/Desktop/Animations/Animations-1/12_demon
+share/afterstep/start/Desktop/Animations/Animations-1/13_drift
+share/afterstep/start/Desktop/Animations/Animations-1/14_eyes
+share/afterstep/start/Desktop/Animations/Animations-1/15_fadeplot
+share/afterstep/start/Desktop/Animations/Animations-1/16_flag
+share/afterstep/start/Desktop/Animations/Animations-1/17_flame
+share/afterstep/start/Desktop/Animations/Animations-1/18_forest
+share/afterstep/start/Desktop/Animations/Animations-1/19_galaxy
+share/afterstep/start/Desktop/Animations/Animations-1/1_ball
+share/afterstep/start/Desktop/Animations/Animations-1/2_bat
+share/afterstep/start/Desktop/Animations/Animations-1/3_blot
+share/afterstep/start/Desktop/Animations/Animations-1/4_bouboule
+share/afterstep/start/Desktop/Animations/Animations-1/5_bounce
+share/afterstep/start/Desktop/Animations/Animations-1/6_bug
+share/afterstep/start/Desktop/Animations/Animations-1/7_cartoon
+share/afterstep/start/Desktop/Animations/Animations-1/8_clock
+share/afterstep/start/Desktop/Animations/Animations-1/9_crystal
+share/afterstep/start/Desktop/Animations/Animations-2/0_geometry
+share/afterstep/start/Desktop/Animations/Animations-2/10_life
+share/afterstep/start/Desktop/Animations/Animations-2/11_life1d
+share/afterstep/start/Desktop/Animations/Animations-2/12_life3d
+share/afterstep/start/Desktop/Animations/Animations-2/13_light
+share/afterstep/start/Desktop/Animations/Animations-2/14_lissa
+share/afterstep/start/Desktop/Animations/Animations-2/15_lissie
+share/afterstep/start/Desktop/Animations/Animations-2/16_loop
+share/afterstep/start/Desktop/Animations/Animations-2/17_marquee
+share/afterstep/start/Desktop/Animations/Animations-2/18_mount
+share/afterstep/start/Desktop/Animations/Animations-2/19_much
+share/afterstep/start/Desktop/Animations/Animations-2/1_grav
+share/afterstep/start/Desktop/Animations/Animations-2/2_helix
+share/afterstep/start/Desktop/Animations/Animations-2/3_hop
+share/afterstep/start/Desktop/Animations/Animations-2/4_hyper
+share/afterstep/start/Desktop/Animations/Animations-2/5_ico
+share/afterstep/start/Desktop/Animations/Animations-2/6_ifs
+share/afterstep/start/Desktop/Animations/Animations-2/7_julia
+share/afterstep/start/Desktop/Animations/Animations-2/8_kaleid
+share/afterstep/start/Desktop/Animations/Animations-2/9_laser
+share/afterstep/start/Desktop/Animations/Animations-3/0_nose
+share/afterstep/start/Desktop/Animations/Animations-3/10_sier
+share/afterstep/start/Desktop/Animations/Animations-3/11_slip
+share/afterstep/start/Desktop/Animations/Animations-3/12_sphere
+share/afterstep/start/Desktop/Animations/Animations-3/13_spire
+share/afterstep/start/Desktop/Animations/Animations-3/14_spline
+share/afterstep/start/Desktop/Animations/Animations-3/15_star
+share/afterstep/start/Desktop/Animations/Animations-3/16_startrek
+share/afterstep/start/Desktop/Animations/Animations-3/17_strange
+share/afterstep/start/Desktop/Animations/Animations-3/18_swarm
+share/afterstep/start/Desktop/Animations/Animations-3/19_swirl
+share/afterstep/start/Desktop/Animations/Animations-3/1_pacman
+share/afterstep/start/Desktop/Animations/Animations-3/20_triangle
+share/afterstep/start/Desktop/Animations/Animations-3/21_tube
+share/afterstep/start/Desktop/Animations/Animations-3/22_turtle
+share/afterstep/start/Desktop/Animations/Animations-3/23_vines
+share/afterstep/start/Desktop/Animations/Animations-3/24_voters
+share/afterstep/start/Desktop/Animations/Animations-3/25_wator
+share/afterstep/start/Desktop/Animations/Animations-3/26_world
+share/afterstep/start/Desktop/Animations/Animations-3/27_worm
+share/afterstep/start/Desktop/Animations/Animations-3/2_penrose
+share/afterstep/start/Desktop/Animations/Animations-3/3_petal
+share/afterstep/start/Desktop/Animations/Animations-3/4_puzzle
+share/afterstep/start/Desktop/Animations/Animations-3/5_pyro
+share/afterstep/start/Desktop/Animations/Animations-3/6_qix
+share/afterstep/start/Desktop/Animations/Animations-3/7_roll
+share/afterstep/start/Desktop/Animations/Animations-3/8_rotor
+share/afterstep/start/Desktop/Animations/Animations-3/9_shape
+share/afterstep/start/Desktop/Animations/a_random
+share/afterstep/start/Desktop/Animations/b_stop
+share/afterstep/start/Desktop/Feel/.include
+share/afterstep/start/Desktop/Look/.include
+share/afterstep/start/Desktop/Mouse/0_fast
+share/afterstep/start/Desktop/Mouse/1_faster
+share/afterstep/start/Desktop/Mouse/2_fastest
+share/afterstep/start/Desktop/Mouse/3_ultrafastest
+share/afterstep/start/Desktop/Mouse/4_nop
+share/afterstep/start/Desktop/Mouse/5_left
+share/afterstep/start/Desktop/Mouse/6_right
+share/afterstep/start/Desktop/Mouse/7_nop
+share/afterstep/start/Desktop/Mouse/8_normal
+share/afterstep/start/Desktop/Mouse/9_noaccel
+share/afterstep/start/Desktop/Mouse/9_slow
+share/afterstep/start/Desktop/Pictures/.include
+share/afterstep/start/Desktop/a_xearth
+share/afterstep/start/Desktop/b_fish
+share/afterstep/start/Desktop/c_snow
+share/afterstep/start/Desktop/d_nop
+share/afterstep/start/Desktop/e_updatestart
+share/afterstep/start/Desktop/f_updateall
+share/afterstep/start/Modules/Animate
+share/afterstep/start/Modules/Animate_Stop
+share/afterstep/start/Modules/Audio
+share/afterstep/start/Modules/Audio_Stop
+share/afterstep/start/Modules/Auto
+share/afterstep/start/Modules/Auto_Stop
+share/afterstep/start/Modules/Banner
+share/afterstep/start/Modules/Banner_Stop
+share/afterstep/start/Modules/Cascade
+share/afterstep/start/Modules/Cascade_Stop
+share/afterstep/start/Modules/Clean
+share/afterstep/start/Modules/Clean_Stop
+share/afterstep/start/Modules/Forms/1_ftp
+share/afterstep/start/Modules/Forms/2_find
+share/afterstep/start/Modules/Forms/3_help
+share/afterstep/start/Modules/Forms/4_quit
+share/afterstep/start/Modules/Forms/5_run
+share/afterstep/start/Modules/Forms/6_screenshot
+share/afterstep/start/Modules/Forms/7_windowshot
+share/afterstep/start/Modules/Forms/8_xlock
+share/afterstep/start/Modules/Gnome
+share/afterstep/start/Modules/Gnome_Stop
+share/afterstep/start/Modules/Ident
+share/afterstep/start/Modules/Ident_Stop
+share/afterstep/start/Modules/Pager
+share/afterstep/start/Modules/Pager_Stop
+share/afterstep/start/Modules/Scripts/0_animate
+share/afterstep/start/Modules/Scripts/1_bellsetup
+share/afterstep/start/Modules/Scripts/2_desksetup
+share/afterstep/start/Modules/Scripts/3_quit
+share/afterstep/start/Modules/Scripts/4_screendump
+share/afterstep/start/Modules/Scroll
+share/afterstep/start/Modules/Scroll_Stop
+share/afterstep/start/Modules/Tile
+share/afterstep/start/Modules/Tile_Stop
+share/afterstep/start/Modules/Wharf
+share/afterstep/start/Modules/Wharf_Stop
+share/afterstep/start/Modules/WinList
+share/afterstep/start/Modules/WinList_Stop
+share/afterstep/start/Modules/Zharf
+share/afterstep/start/Modules/Zharf_Stop
+share/afterstep/start/Modules/asetroot
+share/afterstep/start/Modules/asetroot_Stop
+share/afterstep/start/Quit/0_close
+share/afterstep/start/Quit/1_exit
+share/afterstep/start/Quit/2_nop
+share/afterstep/start/Quit/3_restartsession
+share/afterstep/start/Quit/4_restarttwm
+share/afterstep/start/Quit/5_restartwm
+share/afterstep/start/Screen_savers/With_password/0_firework
+share/afterstep/start/Screen_savers/With_password/1_firework
+share/afterstep/start/Screen_savers/With_password/2_laser
+share/afterstep/start/Screen_savers/With_password/3_mount
+share/afterstep/start/Screen_savers/With_password/4_qix
+share/afterstep/start/Screen_savers/With_password/5_shape
+share/afterstep/start/Screen_savers/With_password/6_sperm
+share/afterstep/start/Screen_savers/With_password/7_spline
+share/afterstep/start/Screen_savers/With_password/8_startrek
+share/afterstep/start/Screen_savers/With_password/9_stars
+share/afterstep/start/Screen_savers/Without_password/0_firework
+share/afterstep/start/Screen_savers/Without_password/1_firework
+share/afterstep/start/Screen_savers/Without_password/2_laser
+share/afterstep/start/Screen_savers/Without_password/3_mount
+share/afterstep/start/Screen_savers/Without_password/4_qix
+share/afterstep/start/Screen_savers/Without_password/5_shape
+share/afterstep/start/Screen_savers/Without_password/6_sperm
+share/afterstep/start/Screen_savers/Without_password/7_spline
+share/afterstep/start/Screen_savers/Without_password/8_startrek
+share/afterstep/start/Screen_savers/Without_password/9_stars
+share/afterstep/start/Windows/0_move
+share/afterstep/start/Windows/1_iconify
+share/afterstep/start/Windows/1_resize
+share/afterstep/start/Windows/2_pin
+share/afterstep/start/Windows/2_raise
+share/afterstep/start/Windows/3_lower
+share/afterstep/start/Windows/4_delete
+share/afterstep/start/Windows/5_destroy
+share/afterstep/start/Windows/6_winprop
+share/afterstep/start/a_nop
+share/afterstep/start/b_afterstepdoc
+share/afterstep/wharf
+share/afterstep/winlist
+share/afterstep/zharf
+@dirrm share/afterstep/start/Windows
+@dirrm share/afterstep/start/Screen_savers/Without_password
+@dirrm share/afterstep/start/Screen_savers/With_password
+@dirrm share/afterstep/start/Screen_savers
+@dirrm share/afterstep/start/Quit
+@dirrm share/afterstep/start/Modules/Scripts
+@dirrm share/afterstep/start/Modules/Forms
+@dirrm share/afterstep/start/Modules
+@dirrm share/afterstep/start/Desktop/Pictures
+@dirrm share/afterstep/start/Desktop/Mouse
+@dirrm share/afterstep/start/Desktop/Look
+@dirrm share/afterstep/start/Desktop/Feel
+@dirrm share/afterstep/start/Desktop/Animations/Animations-3
+@dirrm share/afterstep/start/Desktop/Animations/Animations-2
+@dirrm share/afterstep/start/Desktop/Animations/Animations-1
+@dirrm share/afterstep/start/Desktop/Animations
+@dirrm share/afterstep/start/Desktop
+@dirrm share/afterstep/start/Applications/System
+@dirrm share/afterstep/start/Applications/Office
+@dirrm share/afterstep/start/Applications/Network
+@dirrm share/afterstep/start/Applications/Multimedia
+@dirrm share/afterstep/start/Applications/Emulators
+@dirrm share/afterstep/start/Applications/Editors
+@dirrm share/afterstep/start/Applications/Accessories
+@dirrm share/afterstep/start/Applications
+@dirrm share/afterstep/start
+@dirrm share/afterstep/scripts
+@dirrm share/afterstep/non-configurable
+@dirrm share/afterstep/looks
+@dirrm share/afterstep/feels
+@dirrm share/afterstep/doc
+@dirrm share/afterstep/desktop/sounds
+@dirrm share/afterstep/desktop/icons/common
+@dirrm share/afterstep/desktop/icons/8bpp
+@dirrm share/afterstep/desktop/icons/16bpp
+@dirrm share/afterstep/desktop/icons
+@dirrm share/afterstep/desktop/cursors
+@dirrm share/afterstep/desktop/buttons
+@dirrm share/afterstep/desktop
+@dirrm share/afterstep/backgrounds
+@dirrm share/afterstep