summaryrefslogtreecommitdiff
path: root/x11-fm/ezfm
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>1998-08-10 00:28:06 +0000
committerSteve Price <steve@FreeBSD.org>1998-08-10 00:28:06 +0000
commit8de9a3998477dd0b9fd2030b4fe8824259d1a81e (patch)
tree6f3c5a1609d81b6d2c0c5614efb729a43f73b9be /x11-fm/ezfm
parentTurn on jafm. (diff)
Initial import of ezfm version 0.1.
An EZWGL-based file manager for the X window system. PR: 7477 Submitted by: Andrey Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes: svn path=/head/; revision=12400
Diffstat (limited to 'x11-fm/ezfm')
-rw-r--r--x11-fm/ezfm/Makefile39
-rw-r--r--x11-fm/ezfm/distinfo1
-rw-r--r--x11-fm/ezfm/files/patch-aa54
-rw-r--r--x11-fm/ezfm/files/patch-ab11
-rw-r--r--x11-fm/ezfm/files/patch-ac38
-rw-r--r--x11-fm/ezfm/files/patch-ad11
-rw-r--r--x11-fm/ezfm/files/patch-ae17
-rw-r--r--x11-fm/ezfm/files/patch-af15
-rw-r--r--x11-fm/ezfm/pkg-comment1
-rw-r--r--x11-fm/ezfm/pkg-descr2
-rw-r--r--x11-fm/ezfm/pkg-plist333
11 files changed, 522 insertions, 0 deletions
diff --git a/x11-fm/ezfm/Makefile b/x11-fm/ezfm/Makefile
new file mode 100644
index 000000000000..5b88f513b858
--- /dev/null
+++ b/x11-fm/ezfm/Makefile
@@ -0,0 +1,39 @@
+# New ports collection makefile for: ezfm
+# Version required: 0.1
+# Date created: 27 July 1998
+# Whom: Andrey Zakhvatov
+#
+# $Id$
+#
+
+DISTNAME= EZFM-0.1-src
+PKGNAME= ezfm-0.1
+CATEGORIES= x11-fm
+MASTER_SITES= ftp://ftp.ma.utexas.edu/pub/mzou/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= andy@icc.surw.chel.su
+
+LIB_DEPENDS= jpeg\\.9\\.:${PORTSDIR}/graphics/jpeg \
+ EZ\\.1\\.:${PORTSDIR}/graphics/EZWGL
+
+WRKSRC= ${WRKDIR}/EZFM-0.1
+USE_X_PREFIX= yes
+
+MAN1= ezfm.1
+
+do-install:
+ @ ${INSTALL_PROGRAM} ${WRKSRC}/ezfm ${PREFIX}/bin
+ @ ${MKDIR} ${PREFIX}/share/ezfm
+.for file in ezfmExtension ezfmMagic ezfmrc
+ @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/ezfm
+.endfor
+ @ ${MKDIR} ${PREFIX}/share/ezfm/ezfmIcons
+ @ cd ${WRKSRC}/ezfmIcons; tar -cf - . | (cd ${PREFIX}/share/ezfm/ezfmIcons; tar -xf - )
+ @ ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1
+.if !defined(NOPORTDOCS)
+ @ ${MKDIR} ${PREFIX}/share/doc/ezfm
+ @ ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/ezfm
+.endif
+
+.include <bsd.port.mk>
diff --git a/x11-fm/ezfm/distinfo b/x11-fm/ezfm/distinfo
new file mode 100644
index 000000000000..fa14e1f29e90
--- /dev/null
+++ b/x11-fm/ezfm/distinfo
@@ -0,0 +1 @@
+MD5 (EZFM-0.1-src.tgz) = 71242398196d974ed8b77265e9600299
diff --git a/x11-fm/ezfm/files/patch-aa b/x11-fm/ezfm/files/patch-aa
new file mode 100644
index 000000000000..21d9c3a51338
--- /dev/null
+++ b/x11-fm/ezfm/files/patch-aa
@@ -0,0 +1,54 @@
+--- Makefile Thu Jul 2 17:27:53 1998
++++ /home/andy/tmp/wrk/Makefile Thu Jul 30 11:11:08 1998
+@@ -1,31 +1,35 @@
++#
++# Prefix definition
++#
++PREFIX?=/usr/X11R6
+ #-------------------------------------------------------------------------------
+ #
+ # Where to install the default magic file.
+ #
+-EZFM_MAGIC=/usr/local/lib/ezfm/ezfmMagic
+-EZFM_EXTENSION=/usr/local/lib/ezfm/ezfmExtension
++EZFM_MAGIC=${PREFIX}/share/ezfm/ezfmMagic
++EZFM_EXTENSION=${PREFIX}/share/ezfm/ezfmExtension
+ #
+ # Where to install default initialization file
+ # this file is consulted if ~/.ezfmrc $EZFMRC
+ # are not found.
+ #
+-EZFM_RC=/usr/local/lib/ezfm/ezfmrc
++EZFM_RC=${PREFIX}/share/ezfm/ezfmrc
+
+ #
+ # Where to install the icons
+ #
+-EZFM_ICONS=/usr/local/lib/ezfm/ezfmIcons
++EZFM_ICONS=${PREFIX}/share/ezfm/ezfmIcons
+ #
+ # Where to install the binary
+ #
+-BIN=/usr/local/bin
++BIN=${PREFIX}/bin
+ #
+ #----------------------------------------------------------------------------------
+ #
+-CC= gcc -O -DLINUX
++CC+= -I${PREFIX}/include
+ #
+ #----------------------------------------------------------------------------------
+-LIBS = libfile.a -lEZ ../jpeg/libjpeg.a -L/usr/X11R6/lib -lX11 -lXext -lm -lc
++LIBS = libfile.a -lEZ -ljpeg -L/usr/local/lib -L${X11BASE}/lib -lX11 -lXext -lm -lc
+
+
+ SRC= action.c folder.c atoms.c clientMessage.c main.c icons.c items.c finfo.c \
+@@ -54,7 +58,7 @@
+ cp ezfm $(BIN)
+
+ libfile.a:
+- (cd libfile; make libfile.a CC="gcc -O"; mv libfile.a ../ )
++ (cd libfile; make libfile.a; mv libfile.a ../ )
+
+ ezfmMagic:
+ (cd libfile/Magdir; make all)
diff --git a/x11-fm/ezfm/files/patch-ab b/x11-fm/ezfm/files/patch-ab
new file mode 100644
index 000000000000..12338c808278
--- /dev/null
+++ b/x11-fm/ezfm/files/patch-ab
@@ -0,0 +1,11 @@
+--- ezfm.h Mon Jun 29 07:24:36 1998
++++ /home/andy/tmp/wrk/ezfm.h Thu Jul 30 11:02:31 1998
+@@ -53,7 +53,7 @@
+ #endif
+ /*************************************************************/
+ EXTERN int erron, sys_nerr;
+-EXTERN char *sys_errlist[];
++/* EXTERN char *sys_errlist[]; */
+ #define syserr(en) (((en) >= 0 && (en) < sys_nerr) ? sys_errlist[(en)] : "Unknown error")
+ #define SECONDS_IN_YEAR 31536000
+ #define SelectionBackground "yellow"
diff --git a/x11-fm/ezfm/files/patch-ac b/x11-fm/ezfm/files/patch-ac
new file mode 100644
index 000000000000..eaee17a18e6d
--- /dev/null
+++ b/x11-fm/ezfm/files/patch-ac
@@ -0,0 +1,38 @@
+--- infoBtn.c Thu Jun 25 16:09:58 1998
++++ /home/andy/tmp/wrk/infoBtn.c Thu Jul 30 11:27:26 1998
+@@ -292,7 +292,7 @@
+ }
+ }
+ /**************************************************************************/
+-static void setmode(widget, data) EZ_Widget *widget; void *data;
++static void _setmode(widget, data) EZ_Widget *widget; void *data;
+ {
+ char str[12];
+ infoControl *ptr = (infoControl *)data;
+@@ -349,7 +349,7 @@
+ EZ_GRID_CELL_GEOMETRY, 2, idx , 1, 1,
+ EZ_CLIENT_INT_DATA, rr,
+ EZ_CLIENT_PTR_DATA, clabel,
+- EZ_CALLBACK, setmode, data,
++ EZ_CALLBACK, _setmode, data,
+ NULL);
+ label = EZ_CreateWidget(EZ_WIDGET_CHECK_BUTTON, tframe,
+ EZ_LABEL_STRING, "write",
+@@ -360,7 +360,7 @@
+ EZ_CLIENT_INT_DATA, ww,
+ EZ_CLIENT_PTR_DATA, clabel,
+ EZ_GRID_CELL_GEOMETRY, 3, idx , 1, 1,
+- EZ_CALLBACK, setmode, data,
++ EZ_CALLBACK, _setmode, data,
+ NULL);
+ label = EZ_CreateWidget(EZ_WIDGET_CHECK_BUTTON, tframe,
+ EZ_LABEL_STRING, "execute",
+@@ -371,7 +371,7 @@
+ EZ_CLIENT_PTR_DATA, clabel,
+ EZ_CHECK_BUTTON_ON_OFF, xx&mode,
+ EZ_GRID_CELL_GEOMETRY, 4, idx , 1, 1,
+- EZ_CALLBACK, setmode, data,
++ EZ_CALLBACK, _setmode, data,
+ NULL);
+ }
+
diff --git a/x11-fm/ezfm/files/patch-ad b/x11-fm/ezfm/files/patch-ad
new file mode 100644
index 000000000000..7cb5e651c081
--- /dev/null
+++ b/x11-fm/ezfm/files/patch-ad
@@ -0,0 +1,11 @@
+--- main.c Mon Jun 29 19:02:41 1998
++++ /home/andy/tmp/wrk/main.c Thu Jul 30 11:22:42 1998
+@@ -65,7 +65,7 @@
+ */
+ static char *fallbackResources =
+ /* initialization file name */
+-"ezfm*ezfmrc: ezfmrc:~/.ezfmrc:/etc/ezfmrc:/usr/lib/ezfm/ezfmrc:/usr/local/lib/ezfm/ezfmrc
++"ezfm*ezfmrc: ezfmrc:~/.ezfmrc:/etc/ezfmrc:/usr/X11R6/share/ezfm/ezfmrc:/usr/local/lib/ezfm/ezfmrc
+ "
+ /* fonts used in display items */
+ "
diff --git a/x11-fm/ezfm/files/patch-ae b/x11-fm/ezfm/files/patch-ae
new file mode 100644
index 000000000000..924d1ebb92a2
--- /dev/null
+++ b/x11-fm/ezfm/files/patch-ae
@@ -0,0 +1,17 @@
+--- libfile/Makefile Mon Jun 29 16:13:19 1998
++++ /home/andy/tmp/wrk/libfile/Makefile Thu Jul 30 11:25:39 1998
+@@ -1,5 +1,5 @@
+ # Makefile
+-MAGIC = /etc/ezfmMagic
++MAGIC = ${PREFIX}/share/ezfm/ezfmMagic
+ CC = cc
+ CFLAGS =
+
+@@ -18,6 +18,6 @@
+ rm -f *.o core File
+
+ .c.o:
+- $(CC) $(CFLAGS) -c $<
++ $(CC) -DMAGIC=\"${MAGIC}\" $(CFLAGS) -c $<
+
+ #--end--
diff --git a/x11-fm/ezfm/files/patch-af b/x11-fm/ezfm/files/patch-af
new file mode 100644
index 000000000000..d0491c08ede4
--- /dev/null
+++ b/x11-fm/ezfm/files/patch-af
@@ -0,0 +1,15 @@
+--- ezfmrc.orig Tue Jun 30 10:59:34 1998
++++ ezfmrc Sun Aug 9 16:53:48 1998
+@@ -5,9 +5,9 @@
+ # ezfm needs the following two files to start.
+ #
+ Section "Files"
+- Magicfile ezfmMagic:~/.ezfmMagic:/etc/ezfmMagic:/usr/lib/ezfm/ezfmMagic:/usr/local/lib/ezfm/ezfmMagic
+- IconPath ezfmIcons:~/.ezfmIcons:/usr/lib/ezfm/ezfmIcons:/usr/local/lib/ezfm/ezfmIcons
+- ExtensionFile ezfmExtension:~/.ezfmExtension
++ Magicfile ezfmMagic:~/.ezfmMagic:/usr/X11R6/share/ezfm/ezfmMagic
++ IconPath ezfmIcons:~/.ezfmIcons:/usr/X11R6/share/ezfm/ezfmIcons
++ ExtensionFile ezfmExtension:~/.ezfmExtension:/usr/X11R6/share/ezfm/ezfmExtension
+ EndSection
+
+ # list all removable devices here. The format is
diff --git a/x11-fm/ezfm/pkg-comment b/x11-fm/ezfm/pkg-comment
new file mode 100644
index 000000000000..eb380868ff6b
--- /dev/null
+++ b/x11-fm/ezfm/pkg-comment
@@ -0,0 +1 @@
+EZWGL-based file manager for X Window System.
diff --git a/x11-fm/ezfm/pkg-descr b/x11-fm/ezfm/pkg-descr
new file mode 100644
index 000000000000..6ea6e7477787
--- /dev/null
+++ b/x11-fm/ezfm/pkg-descr
@@ -0,0 +1,2 @@
+Ezfm is a EZWGL-based file manager for X Window System. It
+offers most of the features one would expect from a file manager.
diff --git a/x11-fm/ezfm/pkg-plist b/x11-fm/ezfm/pkg-plist
new file mode 100644
index 000000000000..604a3cb00300
--- /dev/null
+++ b/x11-fm/ezfm/pkg-plist
@@ -0,0 +1,333 @@
+bin/ezfm
+man/man1/ezfm.1.gz
+share/doc/ezfm/COPYING
+share/ezfm/ezfmExtension
+share/ezfm/ezfmMagic
+share/ezfm/ezfmrc
+share/ezfm/ezfmIcons/BGNalumGray.gif
+share/ezfm/ezfmIcons/BGNam.gif
+share/ezfm/ezfmIcons/BGNbump2.gif
+share/ezfm/ezfmIcons/BGNcbright.gif
+share/ezfm/ezfmIcons/BGNcontour.gif
+share/ezfm/ezfmIcons/BGNdotsGray.gif
+share/ezfm/ezfmIcons/BGNfabricGray.gif
+share/ezfm/ezfmIcons/BGNfabricPink.gif
+share/ezfm/ezfmIcons/BGNfabricYellow.gif
+share/ezfm/ezfmIcons/BGNgray.gif
+share/ezfm/ezfmIcons/BGNlgray.gif
+share/ezfm/ezfmIcons/BGNlinux.gif
+share/ezfm/ezfmIcons/BGNlpaper3.gif
+share/ezfm/ezfmIcons/BGNlpaper4.gif
+share/ezfm/ezfmIcons/BGNmarble.gif
+share/ezfm/ezfmIcons/BGNmarbleGrnRed.gif
+share/ezfm/ezfmIcons/BGNmarbleLavender.gif
+share/ezfm/ezfmIcons/BGNmodern_hiero.gif
+share/ezfm/ezfmIcons/BGNpaperBlue.gif
+share/ezfm/ezfmIcons/BGNpaperGrnWhite.gif
+share/ezfm/ezfmIcons/BGNpaperOrange.gif
+share/ezfm/ezfmIcons/BGNpaperPeach.gif
+share/ezfm/ezfmIcons/BGNpaperTan.gif
+share/ezfm/ezfmIcons/BGNpaperWhite.gif
+share/ezfm/ezfmIcons/BGNpaperWind.gif
+share/ezfm/ezfmIcons/BGNpaperYellow.gif
+share/ezfm/ezfmIcons/BGNrockYellow.gif
+share/ezfm/ezfmIcons/BGNsquare.xpm
+share/ezfm/ezfmIcons/BGNstarfield.xpm
+share/ezfm/ezfmIcons/BGNstuccoYellow.gif
+share/ezfm/ezfmIcons/BGNwaves.xpm
+share/ezfm/ezfmIcons/BGNweaveYellow.gif
+share/ezfm/ezfmIcons/BGNwhtsand.gif
+share/ezfm/ezfmIcons/BGNwood.xpm
+share/ezfm/ezfmIcons/Folder.xpm
+share/ezfm/ezfmIcons/FolderBooks.xpm
+share/ezfm/ezfmIcons/FolderHome.xpm
+share/ezfm/ezfmIcons/Folders2.xpm
+share/ezfm/ezfmIcons/PhoneTT.xpm
+share/ezfm/ezfmIcons/PhoneTTOffhook.xpm
+share/ezfm/ezfmIcons/XPM.xpm
+share/ezfm/ezfmIcons/apple_a.xpm
+share/ezfm/ezfmIcons/apple_bin.xpm
+share/ezfm/ezfmIcons/apple_color.xpm
+share/ezfm/ezfmIcons/ar.xpm
+share/ezfm/ezfmIcons/ash_script.xpm
+share/ezfm/ezfmIcons/audio_play.xpm
+share/ezfm/ezfmIcons/awk.xpm
+share/ezfm/ezfmIcons/bargraph.xpm
+share/ezfm/ezfmIcons/bash_script.xpm
+share/ezfm/ezfmIcons/bell_s.xpm
+share/ezfm/ezfmIcons/binary.xpm
+share/ezfm/ezfmIcons/binary_s.xpm
+share/ezfm/ezfmIcons/blockdevice.xpm
+share/ezfm/ezfmIcons/book.xpm
+share/ezfm/ezfmIcons/book64.xpm
+share/ezfm/ezfmIcons/box_empty.xpm
+share/ezfm/ezfmIcons/box_empty_s.xpm
+share/ezfm/ezfmIcons/bracket.xpm
+share/ezfm/ezfmIcons/bspecial.xpm
+share/ezfm/ezfmIcons/c++.xpm
+share/ezfm/ezfmIcons/calandar.xpm
+share/ezfm/ezfmIcons/calculate.xpm
+share/ezfm/ezfmIcons/calendar.xpm
+share/ezfm/ezfmIcons/cdrom1.xpm
+share/ezfm/ezfmIcons/cdromL.xpm
+share/ezfm/ezfmIcons/cdromM.xpm
+share/ezfm/ezfmIcons/cdromU.xpm
+share/ezfm/ezfmIcons/cdrom_view.xpm
+share/ezfm/ezfmIcons/chardevice.xpm
+share/ezfm/ezfmIcons/checkbook.xpm
+share/ezfm/ezfmIcons/chess.xpm
+share/ezfm/ezfmIcons/columns.xpm
+share/ezfm/ezfmIcons/communication.xpm
+share/ezfm/ezfmIcons/compressed.xpm
+share/ezfm/ezfmIcons/computer.xpm
+share/ezfm/ezfmIcons/core.xpm
+share/ezfm/ezfmIcons/core_s.xpm
+share/ezfm/ezfmIcons/cpio.xpm
+share/ezfm/ezfmIcons/csh_script.xpm
+share/ezfm/ezfmIcons/cspecial.xpm
+share/ezfm/ezfmIcons/data.xpm
+share/ezfm/ezfmIcons/datebook.xpm
+share/ezfm/ezfmIcons/dir.xpm
+share/ezfm/ezfmIcons/dirOpen.xpm
+share/ezfm/ezfmIcons/dirParent.xpm
+share/ezfm/ezfmIcons/dir_ftp.xpm
+share/ezfm/ezfmIcons/dir_old.xpm
+share/ezfm/ezfmIcons/dir_s.xpm
+share/ezfm/ezfmIcons/dir_sOpen.xpm
+share/ezfm/ezfmIcons/dir_sParent.xpm
+share/ezfm/ezfmIcons/diskL.xpm
+share/ezfm/ezfmIcons/disk_3D_label.xpm
+share/ezfm/ezfmIcons/disk_zip.xpm
+share/ezfm/ezfmIcons/disks.xpm
+share/ezfm/ezfmIcons/document.xpm
+share/ezfm/ezfmIcons/dosF.xpm
+share/ezfm/ezfmIcons/dot_a.xpm
+share/ezfm/ezfmIcons/dot_a_s.xpm
+share/ezfm/ezfmIcons/dot_c.xpm
+share/ezfm/ezfmIcons/dot_c_s.xom
+share/ezfm/ezfmIcons/dot_c_s.xpm
+share/ezfm/ezfmIcons/dot_cc.xpm
+share/ezfm/ezfmIcons/dot_el.xpm
+share/ezfm/ezfmIcons/dot_elc.xpm
+share/ezfm/ezfmIcons/dot_f.xpm
+share/ezfm/ezfmIcons/dot_f_s.xpm
+share/ezfm/ezfmIcons/dot_h.xpm
+share/ezfm/ezfmIcons/dot_o.xpm
+share/ezfm/ezfmIcons/dot_o_s.xpm
+share/ezfm/ezfmIcons/dot_p.xpm
+share/ezfm/ezfmIcons/dot_p_s.xpm
+share/ezfm/ezfmIcons/dot_s.xpm
+share/ezfm/ezfmIcons/dot_so.xpm
+share/ezfm/ezfmIcons/drawing3.xpm
+share/ezfm/ezfmIcons/dvi.xpm
+share/ezfm/ezfmIcons/edit_doc.xpm
+share/ezfm/ezfmIcons/elf.xpm
+share/ezfm/ezfmIcons/elfexec.xpm
+share/ezfm/ezfmIcons/elfexec_s.xpm
+share/ezfm/ezfmIcons/emacs.xpm
+share/ezfm/ezfmIcons/eps.xpm
+share/ezfm/ezfmIcons/exe_only.xpm
+share/ezfm/ezfmIcons/exec-only.xpm
+share/ezfm/ezfmIcons/fig.xpm
+share/ezfm/ezfmIcons/file.xpm
+share/ezfm/ezfmIcons/file64.xpm
+share/ezfm/ezfmIcons/file_exec.xpm
+share/ezfm/ezfmIcons/film.xpm
+share/ezfm/ezfmIcons/filmL.xpm
+share/ezfm/ezfmIcons/find.xpm
+share/ezfm/ezfmIcons/finfo.xpm
+share/ezfm/ezfmIcons/fireplace.xpm
+share/ezfm/ezfmIcons/floppyDOSM.xpm
+share/ezfm/ezfmIcons/floppyDos.xpm
+share/ezfm/ezfmIcons/floppyDosM.xpm
+share/ezfm/ezfmIcons/floppyDosU.xpm
+share/ezfm/ezfmIcons/floppyExt2.xpm
+share/ezfm/ezfmIcons/floppyExtM.xpm
+share/ezfm/ezfmIcons/floppyExtU.xpm
+share/ezfm/ezfmIcons/floppyM.xpm
+share/ezfm/ezfmIcons/floppyU.xpm
+share/ezfm/ezfmIcons/flowers.xpm
+share/ezfm/ezfmIcons/folderC.xpm
+share/ezfm/ezfmIcons/folderO.xpm
+share/ezfm/ezfmIcons/folders.xpm
+share/ezfm/ezfmIcons/font.xpm
+share/ezfm/ezfmIcons/font1.xpm
+share/ezfm/ezfmIcons/font2.xpm
+share/ezfm/ezfmIcons/fontX.xpm
+share/ezfm/ezfmIcons/ftp.xpm
+share/ezfm/ezfmIcons/gawk.xpm
+share/ezfm/ezfmIcons/ghost.xpm
+share/ezfm/ezfmIcons/ghostview.xpm
+share/ezfm/ezfmIcons/gif.xpm
+share/ezfm/ezfmIcons/gif_s.xpm
+share/ezfm/ezfmIcons/gimp.xpm
+share/ezfm/ezfmIcons/go.xpm
+share/ezfm/ezfmIcons/gz.xpm
+share/ezfm/ezfmIcons/gz_s.xpm
+share/ezfm/ezfmIcons/hidden.xpm
+share/ezfm/ezfmIcons/hidden_dir.xpm
+share/ezfm/ezfmIcons/home.xpm
+share/ezfm/ezfmIcons/home2.xpm
+share/ezfm/ezfmIcons/home3.xpm
+share/ezfm/ezfmIcons/html.xpm
+share/ezfm/ezfmIcons/html_s.xpm
+share/ezfm/ezfmIcons/iconI.xpm
+share/ezfm/ezfmIcons/index.xpm
+share/ezfm/ezfmIcons/info.xpm
+share/ezfm/ezfmIcons/java_byte.xpm
+share/ezfm/ezfmIcons/java_src.xpm
+share/ezfm/ezfmIcons/jpeg.xpm
+share/ezfm/ezfmIcons/jpeg2.xpm
+share/ezfm/ezfmIcons/jpeg_s.xpm
+share/ezfm/ezfmIcons/keyboard.xpm
+share/ezfm/ezfmIcons/ksh_script.xpm
+share/ezfm/ezfmIcons/letters.xpm
+share/ezfm/ezfmIcons/lex.xpm
+share/ezfm/ezfmIcons/lilo.xpm
+share/ezfm/ezfmIcons/link.xpm
+share/ezfm/ezfmIcons/link_bad.xpm
+share/ezfm/ezfmIcons/link_s.xpm
+share/ezfm/ezfmIcons/linux.xpm
+share/ezfm/ezfmIcons/lisp.xpm
+share/ezfm/ezfmIcons/listI.xpm
+share/ezfm/ezfmIcons/lnkdir.xpm
+share/ezfm/ezfmIcons/lnkdir_s.xpm
+share/ezfm/ezfmIcons/lnkdir_sO.xpm
+share/ezfm/ezfmIcons/lock_dir.xpm
+share/ezfm/ezfmIcons/loops.xpm
+share/ezfm/ezfmIcons/mail-dir.xpm
+share/ezfm/ezfmIcons/mail.xpm
+share/ezfm/ezfmIcons/mail48.xpm
+share/ezfm/ezfmIcons/mail_graph.xpm
+share/ezfm/ezfmIcons/mail_s.xpm
+share/ezfm/ezfmIcons/mailbox.xpm
+share/ezfm/ezfmIcons/makefile.xpm
+share/ezfm/ezfmIcons/makefile_s.xpm
+share/ezfm/ezfmIcons/manpage.xpm
+share/ezfm/ezfmIcons/maple.xpm
+share/ezfm/ezfmIcons/mar.xpm
+share/ezfm/ezfmIcons/math4.xpm
+share/ezfm/ezfmIcons/mathematica.xpm
+share/ezfm/ezfmIcons/matlab.xpm
+share/ezfm/ezfmIcons/maxima.xpm
+share/ezfm/ezfmIcons/movie.xpm
+share/ezfm/ezfmIcons/mpg.xpm
+share/ezfm/ezfmIcons/music.xpm
+share/ezfm/ezfmIcons/nawk.xpm
+share/ezfm/ezfmIcons/netmath.xpm
+share/ezfm/ezfmIcons/network-dir.xpm
+share/ezfm/ezfmIcons/network.xpm
+share/ezfm/ezfmIcons/network_disk.xpm
+share/ezfm/ezfmIcons/network_info.xpm
+share/ezfm/ezfmIcons/news-dir.xpm
+share/ezfm/ezfmIcons/news.xpm
+share/ezfm/ezfmIcons/news4.xpm
+share/ezfm/ezfmIcons/next64.xpm
+share/ezfm/ezfmIcons/notebook.xpm
+share/ezfm/ezfmIcons/oar.xpm
+share/ezfm/ezfmIcons/objects.xpm
+share/ezfm/ezfmIcons/objects_fast.xpm
+share/ezfm/ezfmIcons/palette.xpm
+share/ezfm/ezfmIcons/palette64.xpm
+share/ezfm/ezfmIcons/pallete.xpm
+share/ezfm/ezfmIcons/parent-dir.xpm
+share/ezfm/ezfmIcons/patch.xpm
+share/ezfm/ezfmIcons/pbm.xpm
+share/ezfm/ezfmIcons/pdf.xpm
+share/ezfm/ezfmIcons/penguin.xpm
+share/ezfm/ezfmIcons/penguin_s.xpm
+share/ezfm/ezfmIcons/perl.xpm
+share/ezfm/ezfmIcons/pgm.xpm
+share/ezfm/ezfmIcons/pgpkey.xpm
+share/ezfm/ezfmIcons/phone1.xpm
+share/ezfm/ezfmIcons/phone2.xpm
+share/ezfm/ezfmIcons/picture.xpm
+share/ezfm/ezfmIcons/picture48.xpm
+share/ezfm/ezfmIcons/pine.xpm
+share/ezfm/ezfmIcons/pipe.xpm
+share/ezfm/ezfmIcons/pipe_s.xpm
+share/ezfm/ezfmIcons/postscript.xpm
+share/ezfm/ezfmIcons/postscript_s.xpm
+share/ezfm/ezfmIcons/ppm.xpm
+share/ezfm/ezfmIcons/printer.xpm
+share/ezfm/ezfmIcons/printer_HP.xpm
+share/ezfm/ezfmIcons/printer_HP2.xpm
+share/ezfm/ezfmIcons/program.xpm
+share/ezfm/ezfmIcons/ps.xpm
+share/ezfm/ezfmIcons/question.xpm
+share/ezfm/ezfmIcons/raster.xpm
+share/ezfm/ezfmIcons/rball_s.xpm
+share/ezfm/ezfmIcons/rc.xpm
+share/ezfm/ezfmIcons/script.xpm
+share/ezfm/ezfmIcons/script_s.xpm
+share/ezfm/ezfmIcons/sh_script.xpm
+share/ezfm/ezfmIcons/socket.xpm
+share/ezfm/ezfmIcons/socket_s.xpm
+share/ezfm/ezfmIcons/sound.xpm
+share/ezfm/ezfmIcons/sound3.xpm
+share/ezfm/ezfmIcons/sound_ms.xpm
+share/ezfm/ezfmIcons/sound_sun.xpm
+share/ezfm/ezfmIcons/special_s.xpm
+share/ezfm/ezfmIcons/spreadsheet.xpm
+share/ezfm/ezfmIcons/stop.xpm
+share/ezfm/ezfmIcons/system-dir.xpm
+share/ezfm/ezfmIcons/system.xpm
+share/ezfm/ezfmIcons/tag.xpm
+share/ezfm/ezfmIcons/tar.xpm
+share/ezfm/ezfmIcons/tar_s.xpm
+share/ezfm/ezfmIcons/tcsh_script.xpm
+share/ezfm/ezfmIcons/teaching.xpm
+share/ezfm/ezfmIcons/teaching2.xpm
+share/ezfm/ezfmIcons/term_austin.xpm
+share/ezfm/ezfmIcons/term_dec.xpm
+share/ezfm/ezfmIcons/term_ibm.xpm
+share/ezfm/ezfmIcons/term_linux.xpm
+share/ezfm/ezfmIcons/term_sound.xpm
+share/ezfm/ezfmIcons/term_sun.xpm
+share/ezfm/ezfmIcons/term_x.xpm
+share/ezfm/ezfmIcons/tex.xpm
+share/ezfm/ezfmIcons/text.xpm
+share/ezfm/ezfmIcons/tiff.xpm
+share/ezfm/ezfmIcons/tools.xpm
+share/ezfm/ezfmIcons/tools2.xpm
+share/ezfm/ezfmIcons/tools3.xpm
+share/ezfm/ezfmIcons/trashcan.xpm
+share/ezfm/ezfmIcons/treeI.xpm
+share/ezfm/ezfmIcons/tv.xpm
+share/ezfm/ezfmIcons/unknown.xpm
+share/ezfm/ezfmIcons/unknown16.xpm
+share/ezfm/ezfmIcons/unknown32.xpm
+share/ezfm/ezfmIcons/uu.xpm
+share/ezfm/ezfmIcons/word_processor.xpm
+share/ezfm/ezfmIcons/wordprocess.xpm
+share/ezfm/ezfmIcons/wri-only.xpm
+share/ezfm/ezfmIcons/wri_exe.xpm
+share/ezfm/ezfmIcons/wri_only.xpm
+share/ezfm/ezfmIcons/xanim.xpm
+share/ezfm/ezfmIcons/xbm.xpm
+share/ezfm/ezfmIcons/xcalc.xpm
+share/ezfm/ezfmIcons/xdvi.xpm
+share/ezfm/ezfmIcons/xedit.xpm
+share/ezfm/ezfmIcons/xfig.xpm
+share/ezfm/ezfmIcons/xgopher.xpm
+share/ezfm/ezfmIcons/xman.xpm
+share/ezfm/ezfmIcons/xplot.xpm
+share/ezfm/ezfmIcons/xpm.xpm
+share/ezfm/ezfmIcons/xterm.xpm
+share/ezfm/ezfmIcons/xtermx.xpm
+share/ezfm/ezfmIcons/xv.xpm
+share/ezfm/ezfmIcons/zip.xpm
+share/ezfm/ezfmIcons/zipDos.xpm
+share/ezfm/ezfmIcons/zipDosM.xpm
+share/ezfm/ezfmIcons/zipDosU.xpm
+share/ezfm/ezfmIcons/zipExt2.xpm
+share/ezfm/ezfmIcons/zipExtM.xpm
+share/ezfm/ezfmIcons/zipExtU.xpm
+share/ezfm/ezfmIcons/zipM.xpm
+share/ezfm/ezfmIcons/zipU.xpm
+share/ezfm/ezfmIcons/zip_s.xpm
+share/ezfm/ezfmIcons/zipdisk.xpm
+share/ezfm/ezfmIcons/zsh_script.xpm
+@dirrm share/doc/ezfm
+@dirrm share/ezfm/ezfmIcons
+@dirrm share/ezfm