[csw-devel] SF.net SVN: gar:[10405] csw/mgar/pkg/gnome_themes/trunk

theferret at users.sourceforge.net theferret at users.sourceforge.net
Fri Jul 2 22:38:30 CEST 2010


Revision: 10405
          http://gar.svn.sourceforge.net/gar/?rev=10405&view=rev
Author:   theferret
Date:     2010-07-02 20:38:30 +0000 (Fri, 02 Jul 2010)

Log Message:
-----------
gnome_themes: rename and rebuild

Added Paths:
-----------
    csw/mgar/pkg/gnome_themes/trunk/Makefile
    csw/mgar/pkg/gnome_themes/trunk/copyright
    csw/mgar/pkg/gnome_themes/trunk/depend
    csw/mgar/pkg/gnome_themes/trunk/pkginfo
    csw/mgar/pkg/gnome_themes/trunk/prototype

Removed Paths:
-------------
    csw/mgar/pkg/gnome_themes/trunk/legacy/

Property Changed:
----------------
    csw/mgar/pkg/gnome_themes/trunk/


Property changes on: csw/mgar/pkg/gnome_themes/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work
cswstage
build


Added: csw/mgar/pkg/gnome_themes/trunk/Makefile
===================================================================
--- csw/mgar/pkg/gnome_themes/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gnome_themes/trunk/Makefile	2010-07-02 20:38:30 UTC (rev 10405)
@@ -0,0 +1,237 @@
+# This file is from TEMPLATES/createpkg/Makefile.lib
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
+
+
+# If you do NOT want to build 64bit libs, remove the $(ARCH)-64 from
+# the "all:" target. Or just use Makefile.lib32
+
+# If you DO want to, then leave it in, and also customize your
+#  the build/.stage-$(ARCH)-64.done    target(s),
+# PLUS, customize your prototype file(s) as needed
+# Dont forget to handle any 64bit pkg-config .pc files properly!!
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# just for intltool
+PATH := /opt/csw/gnu:$(PATH)
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= gnome-themes-2.30.2.tar.bz2 
+EXTRACTPROG ?= /usr/sfw/bin/gtar jfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= http://ftp.gnome.org/pub/GNOME/sources/gnome-themes/2.30
+
+ARCH := $(shell /bin/uname -p)
+
+LDFLAGS_COMMON :=
+
+SRCDIR= build/*
+
+# DO NOT specify the arch-64 stuff such as -m64 here.
+# the individual targets will do that.
+
+CFLAGS_COMMON   ?= -mt -xnorunpath -xO2
+CXXFLAGS_COMMON ?= -mt -norunpath  -xO2
+CFLAGS_sparc    ?= -xarch=v8
+CFLAGS_i386     ?= -xarch=386
+
+# Keep this arch-neutral if possible. add arch-specific tweaks
+# to arch-specific target
+CONFIGURE=./configure --prefix=/opt/csw
+
+LIBDIR64_sparc:=/opt/csw/lib/sparcv9
+LIBDIR64_i386 :=/opt/csw/lib/amd64
+
+CONFIGURE_64_$(ARCH) := --libdir=$(LIBDIR64_$(ARCH))
+CONFIGURE_64_EXTRAS  := $(CONFIGURE_64_$(ARCH))
+
+LDFLAGS_64_$(ARCH) := -R$(LIBDIR64_$(ARCH)) -L$(LIBDIR64_$(ARCH))
+
+
+
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
+
+
+all:	$(ARCH)-32 build/.stage1 $(ARCH)-64 package
+#all:	$(ARCH)-32 package
+
+# ARCH-XX handles configure, build, and stage for its own combo
+# 
+
+EXTRACTPROG ?= /bin/echo ERROR: need to set EXTRACTPROG ; exit 1 ;
+
+
+
+extract:	build/.extract.done
+
+build/.extract.done:
+	test -d build || mkdir build
+	@if test -f  $(ARCHIVEDIR)/$(ARCHIVENAME) ; then \
+		echo Extracting $(ARCHIVENAME) under build dir... ;\
+		( cd build && $(EXTRACTPROG) $(ARCHIVEDIR)/$(ARCHIVENAME) ) ; \
+	else echo Cannot extract - $(ARCHIVEDIR)/$(ARCHIVENAME) does not exist ;\
+		exit 1; \
+	fi
+	touch build/.extract.done
+	
+
+clean distclean:
+	@echo Calling $@ in $(SRCDIR)
+	$(MAKE) -C $(SRCDIR) $@
+
+# This is a bit of a hack.. it does a "make clean", 
+# only when we're between 32bit and 64bit builds, when doing "make all".
+# Once we're IN the 64bit builds, it should not be automatically called.
+build/.stage1:
+	@echo Doing inter 32-64 bit cleanup
+	$(MAKE) -C $(SRCDIR) distclean
+	touch $@
+	
+
+reallyclean:	distclean
+	@echo Removing any milestone files in build as well...
+	@rm -f build/.??*
+	@echo '(However, leaving src tree intact, with any patches in it)'
+	@echo '(If you want, you could rm -r build, then make extract once more)'
+
+garchive:
+	@echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch:	$(ARCHIVEDIR)/$(ARCHIVENAME)
+	@echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+	wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+	@echo patch: patching is handled automatically as part of the configure phase.
+
+stage-preserved:
+	@if test -f preserve-$(ARCH).tar ; then \
+		echo Copying preserved arch-specific files; \
+		cat preserve-$(ARCH).tar |(cd $(SRCDIR)/cswstage && tar xvf -);\
+	fi
+	@if test -f preserve.tar ; then \
+		echo Copying preserved arch-neutral files; \
+		cat preserve.tar |(cd $(SRCDIR)/cswstage && tar xvf -);\
+	fi
+		
+package:	stage-preserved
+	$(CREATEPKG)
+
+
+# split out generic $(ARCH) sections to platform-specific sections if needed.
+# but it usually should not be neccessary
+
+
+$(ARCH)-32 ::   configure-$(ARCH)-32 build-$(ARCH)-32 stage-$(ARCH)-32
+	@echo Completed $(ARCH)-32 configure, build and stage
+	touch build/.$(ARCH)-32.done
+
+
+$(ARCH)-64 ::  stage-$(ARCH)-32 configure-$(ARCH)-64 build-$(ARCH)-64 stage-$(ARCH)-64
+	@echo Completed $@ configure, build and stage
+	touch build/.$(ARCH)-64.done
+
+build/.$(ARCH)-32.done:	$(ARCH)-32
+
+build/.$(ARCH)-64.done:	$(ARCH)-64
+
+# Since we share the same src tree, we should only need to
+# pre-configure patching one time for all.
+build/.patch-preconf.done:	build/.extract.done
+	if test -f patchfile.preconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.preconf ; fi
+	touch $@
+
+
+#Note: I WANT to use LDFLAGS=-R$$ORIGIN, but stupid libtool
+# wont allow it! so force it at build time
+build/.configure-$(ARCH)-32.done:	build/.patch-preconf.done
+	@echo handling $@ target
+	(cd $(SRCDIR) ; \
+	  CFLAGS="$(CFLAGS_COMMON) $(CFLAGS_$(ARCH))" \
+	  CXXFLAGS="$(CXXFLAGS_COMMON)" \
+	  LDFLAGS='-R/opt/csw/lib -L/opt/csw/lib' \
+	  $(CONFIGURE) )
+	if test -f patchfile.postconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.postconf ; fi
+	touch $@
+
+build/.configure-$(ARCH)-64.done:	build/.patch-preconf.done
+	if test "$(ARCH)" = "i386" -a "`uname -r`" != "5.10" ; then \
+		echo Error: do 64bit for i386 on sol10 only ; exit 1 ; fi
+	@echo handling $@ target
+	(cd $(SRCDIR) ; \
+	  CFLAGS="$(CFLAGS_COMMON) -m64"  \
+	  CXXFLAGS="$(CXXFLAGS_COMMON) -m64" \
+	  LDFLAGS="$(LDFLAGS_64_$(ARCH))" \
+	  PKG_CONFIG_PATH=/opt/csw/lib/64/pkgconfig \
+	  $(CONFIGURE) $(CONFIGURE_64_EXTRAS)  )
+	if test -f patchfile.postconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.postconf ; fi
+	touch $@
+
+
+# See note about LDFLAGS and ORIGIN, higher up	
+build/.build-$(ARCH)-32.done build/.build-$(ARCH)-64.done:
+	@echo handling $@ target
+	LD_OPTIONS='-R$$ORIGIN' $(MAKE) -C $(SRCDIR) $(MFLAGS)
+	touch $@
+
+
+
+## NOTE: This is a DESTRUCTIVE target build!!
+## 'stagepkg'  will destroy any prior "cswstage" directory!!!
+## So, we remove all 64bit milestones
+build/.stage-$(ARCH)-32.done:
+	@echo Handling stage of $(ARCH)-32
+	(cd $(SRCDIR) ; MAKE=gmake stagepkg)
+	(cd  $(SRCDIR); cp COPYING cswstage/.)
+	@rm -f build/.*64.done
+	touch $@
+
+
+# Note: This is the tricky bit. we cannot just call 
+#  "stagepkg": we dont usually want EVERYTHING; just the
+# libs that are rebuilt in 64bit, and we need them to go to
+# the subdirs, not the regular place!
+# SOME things, will have a clean libdir, and respect --libdir,
+# and do the right thing easily. However, many will not!
+# SO, odds are you'll have to write a customized target
+build/.stage-$(ARCH)-64.done:	$(SRCDIR)/cswstage
+	@echo ""
+	rm -rf cd $(SRCDIR)/tmpdest
+	cd $(SRCDIR) &&  $(MAKE) DESTDIR=`/bin/pwd`/tmpdest install
+	(cd $(SRCDIR)/tmpdest; tar cf - ./$(LIBDIR64_$(ARCH)) )| \
+	    (cd $(SRCDIR)/cswstage; tar xvf -)
+	@echo ""
+	touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32:	build/.configure-$(ARCH)-32.done
+	@echo $@ done
+build-$(ARCH)-32:	build/.build-$(ARCH)-32.done
+	@echo $@ done
+stage-$(ARCH)-32:	build/.stage-$(ARCH)-32.done
+	@echo $@ done
+configure-$(ARCH)-64:	build/.configure-$(ARCH)-64.done
+	@echo $@ done
+build-$(ARCH)-64:	build/.build-$(ARCH)-64.done
+	@echo $@ done
+stage-$(ARCH)-64:	build/.stage-$(ARCH)-64.done
+	@echo $@ done
+
+# manual targets
+pkgproto:
+	cat $(SRCDIR)/cswstage/prototype | sed 's/root root$$/root bin/'>prototype
+	echo 'f none /opt/csw/share/themes/COPYING.gnome_themes=COPYING 0644 root bin'>>prototype

Added: csw/mgar/pkg/gnome_themes/trunk/copyright
===================================================================
--- csw/mgar/pkg/gnome_themes/trunk/copyright	                        (rev 0)
+++ csw/mgar/pkg/gnome_themes/trunk/copyright	2010-07-02 20:38:30 UTC (rev 10405)
@@ -0,0 +1,2 @@
+Please see /opt/csw/share/themes/COPYING.gnome_themes for full license
+(LGPL 2)

Added: csw/mgar/pkg/gnome_themes/trunk/depend
===================================================================
Added: csw/mgar/pkg/gnome_themes/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/gnome_themes/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gnome_themes/trunk/pkginfo	2010-07-02 20:38:30 UTC (rev 10405)
@@ -0,0 +1,9 @@
+PKG=CSWgnomethemes
+NAME=gnome_themes - Official themes for the GNOME desktop environment
+ARCH=all
+VERSION=2.30.2,REV=2010.07.02
+CATEGORY=system
+VENDOR=http://www.gnome.org/ packaged for CSW by Philip Brown
+HOTLINE=http://www.opencsw.org/bugtrack/
+EMAIL=phil at opencsw.org
+OPENCSW_REPOSITORY=https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/pkg/gnome_themes/trunk

Added: csw/mgar/pkg/gnome_themes/trunk/prototype
===================================================================
--- csw/mgar/pkg/gnome_themes/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/gnome_themes/trunk/prototype	2010-07-02 20:38:30 UTC (rev 10405)
@@ -0,0 +1,3098 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/icons 0755 root bin
+d none /opt/csw/share/icons/LargePrint 0755 root bin
+f none /opt/csw/share/icons/LargePrint/index.theme 0644 root bin
+d none /opt/csw/share/icons/Crux 0755 root bin
+d none /opt/csw/share/icons/Crux/24x24 0755 root bin
+d none /opt/csw/share/icons/Crux/24x24/actions 0755 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-go-forward-ltr.png=go-next.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-refresh.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/24x24/actions/next.png=go-next.png
+s none /opt/csw/share/icons/Crux/24x24/actions/kfm_home.png=go-home.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_top.png=go-top.png
+s none /opt/csw/share/icons/Crux/24x24/actions/forward.png=go-next.png
+f none /opt/csw/share/icons/Crux/24x24/actions/go-up.png 0644 root bin
+f none /opt/csw/share/icons/Crux/24x24/actions/go-bottom.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-goto-last-ltr.png=go-last.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_right.png=go-next.png
+s none /opt/csw/share/icons/Crux/24x24/actions/redhat-home.png=go-home.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-home.png=go-home.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_home.png=go-home.png
+s none /opt/csw/share/icons/Crux/24x24/actions/top.png=go-top.png
+s none /opt/csw/share/icons/Crux/24x24/actions/reload_all_tabs.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-go-up.png=go-up.png
+f none /opt/csw/share/icons/Crux/24x24/actions/go-down.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-goto-last-rtl.png=go-first.png
+s none /opt/csw/share/icons/Crux/24x24/actions/previous.png=go-previous.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_last.png=go-last.png
+s none /opt/csw/share/icons/Crux/24x24/actions/start.png=go-first.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_refresh.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-go-forward-rtl.png=go-previous.png
+s none /opt/csw/share/icons/Crux/24x24/actions/back.png=go-previous.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-goto-bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-go-back-ltr.png=go-previous.png
+s none /opt/csw/share/icons/Crux/24x24/actions/bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gohome.png=go-home.png
+s none /opt/csw/share/icons/Crux/24x24/actions/reload_page.png=view-refresh.png
+f none /opt/csw/share/icons/Crux/24x24/actions/go-next.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/up.png=go-up.png
+f none /opt/csw/share/icons/Crux/24x24/actions/go-top.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/down.png=go-down.png
+s none /opt/csw/share/icons/Crux/24x24/actions/reload.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-goto-first-ltr.png=go-first.png
+f none /opt/csw/share/icons/Crux/24x24/actions/go-last.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_left.png=go-previous.png
+f none /opt/csw/share/icons/Crux/24x24/actions/document-open.png 0644 root bin
+f none /opt/csw/share/icons/Crux/24x24/actions/view-refresh.png 0644 root bin
+f none /opt/csw/share/icons/Crux/24x24/actions/go-previous.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-goto-first-rtl.png=go-last.png
+s none /opt/csw/share/icons/Crux/24x24/actions/reload3.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_first.png=go-first.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-goto-top.png=go-top.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_up.png=go-up.png
+f none /opt/csw/share/icons/Crux/24x24/actions/go-home.png 0644 root bin
+f none /opt/csw/share/icons/Crux/24x24/actions/go-first.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-go-down.png=go-down.png
+s none /opt/csw/share/icons/Crux/24x24/actions/finish.png=go-last.png
+s none /opt/csw/share/icons/Crux/24x24/actions/stock_down.png=go-down.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-open.png=document-open.png
+s none /opt/csw/share/icons/Crux/24x24/actions/gtk-go-back-rtl.png=go-next.png
+s none /opt/csw/share/icons/Crux/24x24/actions/fileopen.png=document-open.png
+d none /opt/csw/share/icons/Crux/24x24/status 0755 root bin
+s none /opt/csw/share/icons/Crux/24x24/status/folder_open.png=folder-open.png
+f none /opt/csw/share/icons/Crux/24x24/status/folder-visiting.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/status/stock_open.png=folder-open.png
+s none /opt/csw/share/icons/Crux/24x24/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+f none /opt/csw/share/icons/Crux/24x24/status/folder-drag-accept.png 0644 root bin
+f none /opt/csw/share/icons/Crux/24x24/status/folder-open.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/status/gnome-fs-directory-visiting.png=folder-visiting.png
+d none /opt/csw/share/icons/Crux/24x24/places 0755 root bin
+f none /opt/csw/share/icons/Crux/24x24/places/user-home.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-nfs.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/24x24/places/inode-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/24x24/places/network.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/24x24/places/application-x-gnome-saved-search.png=folder-saved-search.png
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/24x24/places/gtk-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/24x24/places/folder_home.png=user-home.png
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-home.png=user-home.png
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-ssh.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/24x24/places/stock_folder.png=folder.png
+f none /opt/csw/share/icons/Crux/24x24/places/folder-saved-search.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-smb.png=folder-remote.png
+f none /opt/csw/share/icons/Crux/24x24/places/folder.png 0644 root bin
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-share.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/24x24/places/gnome-fs-ftp.png=folder-remote.png
+f none /opt/csw/share/icons/Crux/24x24/places/folder-remote.png 0644 root bin
+d none /opt/csw/share/icons/Crux/scalable 0755 root bin
+d none /opt/csw/share/icons/Crux/scalable/actions 0755 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/back.svg=go-previous.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/reload.svg=view-refresh.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-top.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-goto-first-rtl.svg=go-last.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/reload_all_tabs.svg=view-refresh.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_top.svg=go-top.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-bottom.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/bottom.svg=go-bottom.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-up.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_last.svg=go-last.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/document-open.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/up.svg=go-up.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gohome.svg=go-home.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-go-up.svg=go-up.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-open.svg=document-open.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/finish.svg=go-last.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/top.svg=go-top.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/fileopen.svg=document-open.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-first.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/redhat-home.svg=go-home.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_bottom.svg=go-bottom.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_right.svg=go-next.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/forward.svg=go-next.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-goto-first-ltr.svg=go-first.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_up.svg=go-up.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/start.svg=go-first.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_home.svg=go-home.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-refresh.svg=view-refresh.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/next.svg=go-next.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-down.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_refresh.svg=view-refresh.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/reload3.svg=view-refresh.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-goto-last-rtl.svg=go-first.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-home.svg=go-home.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-go-down.svg=go-down.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_left.svg=go-previous.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-go-back-ltr.svg=go-previous.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-home.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-goto-bottom.svg=go-bottom.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-go-forward-rtl.svg=go-previous.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/kfm_home.svg=go-home.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_down.svg=go-down.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-previous.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/stock_first.svg=go-first.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-go-back-rtl.svg=go-next.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-go-forward-ltr.svg=go-next.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-next.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/down.svg=go-down.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-goto-last-ltr.svg=go-last.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/reload_page.svg=view-refresh.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/view-refresh.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/actions/previous.svg=go-previous.svg
+s none /opt/csw/share/icons/Crux/scalable/actions/gtk-goto-top.svg=go-top.svg
+f none /opt/csw/share/icons/Crux/scalable/actions/go-last.svg 0644 root bin
+d none /opt/csw/share/icons/Crux/scalable/places 0755 root bin
+s none /opt/csw/share/icons/Crux/scalable/places/network.svg=folder-remote.svg
+s none /opt/csw/share/icons/Crux/scalable/places/folder_home.svg=user-home.svg
+f none /opt/csw/share/icons/Crux/scalable/places/folder.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-share.svg=folder-remote.svg
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-nfs.svg=folder-remote.svg
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-directory.svg=folder.svg
+f none /opt/csw/share/icons/Crux/scalable/places/folder-remote.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-mime-x-directory-smb-share.svg=folder-remote.svg
+s none /opt/csw/share/icons/Crux/scalable/places/application-x-gnome-saved-search.svg=folder-saved-search.svg
+s none /opt/csw/share/icons/Crux/scalable/places/stock_folder.svg=folder.svg
+f none /opt/csw/share/icons/Crux/scalable/places/user-home.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-ssh.svg=folder-remote.svg
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-ftp.svg=folder-remote.svg
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-home.svg=user-home.svg
+f none /opt/csw/share/icons/Crux/scalable/places/folder-saved-search.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/places/gtk-directory.svg=folder.svg
+s none /opt/csw/share/icons/Crux/scalable/places/inode-directory.svg=folder.svg
+s none /opt/csw/share/icons/Crux/scalable/places/gnome-fs-smb.svg=folder-remote.svg
+d none /opt/csw/share/icons/Crux/scalable/status 0755 root bin
+f none /opt/csw/share/icons/Crux/scalable/status/folder-visiting.svg 0644 root bin
+f none /opt/csw/share/icons/Crux/scalable/status/folder-open.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/status/stock_open.svg=folder-open.svg
+f none /opt/csw/share/icons/Crux/scalable/status/folder-drag-accept.svg 0644 root bin
+s none /opt/csw/share/icons/Crux/scalable/status/gnome-fs-directory-accept.svg=folder-drag-accept.svg
+s none /opt/csw/share/icons/Crux/scalable/status/folder_open.svg=folder-open.svg
+s none /opt/csw/share/icons/Crux/scalable/status/gnome-fs-directory-visiting.svg=folder-visiting.svg
+f none /opt/csw/share/icons/Crux/index.theme 0644 root bin
+d none /opt/csw/share/icons/Crux/32x32 0755 root bin
+d none /opt/csw/share/icons/Crux/32x32/status 0755 root bin
+s none /opt/csw/share/icons/Crux/32x32/status/gnome-fs-directory-visiting.png=folder-visiting.png
+f none /opt/csw/share/icons/Crux/32x32/status/folder-open.png 0644 root bin
+s none /opt/csw/share/icons/Crux/32x32/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+s none /opt/csw/share/icons/Crux/32x32/status/stock_open.png=folder-open.png
+s none /opt/csw/share/icons/Crux/32x32/status/folder_open.png=folder-open.png
+f none /opt/csw/share/icons/Crux/32x32/status/folder-visiting.png 0644 root bin
+f none /opt/csw/share/icons/Crux/32x32/status/folder-drag-accept.png 0644 root bin
+d none /opt/csw/share/icons/Crux/32x32/places 0755 root bin
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-ftp.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/32x32/places/inode-directory.png=folder.png
+f none /opt/csw/share/icons/Crux/32x32/places/user-home.png 0644 root bin
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-smb.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/32x32/places/stock_folder.png=folder.png
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-share.png=folder-remote.png
+f none /opt/csw/share/icons/Crux/32x32/places/folder-remote.png 0644 root bin
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-ssh.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/32x32/places/application-x-gnome-saved-search.png=folder-saved-search.png
+f none /opt/csw/share/icons/Crux/32x32/places/folder-saved-search.png 0644 root bin
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/32x32/places/folder_home.png=user-home.png
+f none /opt/csw/share/icons/Crux/32x32/places/folder.png 0644 root bin
+s none /opt/csw/share/icons/Crux/32x32/places/gtk-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-home.png=user-home.png
+s none /opt/csw/share/icons/Crux/32x32/places/network.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/32x32/places/gnome-fs-nfs.png=folder-remote.png
+d none /opt/csw/share/icons/Crux/32x32/actions 0755 root bin
+s none /opt/csw/share/icons/Crux/32x32/actions/gtk-open.png=document-open.png
+s none /opt/csw/share/icons/Crux/32x32/actions/fileopen.png=document-open.png
+f none /opt/csw/share/icons/Crux/32x32/actions/document-open.png 0644 root bin
+d none /opt/csw/share/icons/Crux/22x22 0755 root bin
+d none /opt/csw/share/icons/Crux/22x22/actions 0755 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/previous.png=go-previous.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-home.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/start.png=go-first.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_home.png=go-home.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-go-back-rtl.png=go-next.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/22x22/actions/reload_page.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/22x22/actions/reload3.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/22x22/actions/up.png=go-up.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-goto-first-rtl.png=go-last.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_refresh.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/22x22/actions/down.png=go-down.png
+s none /opt/csw/share/icons/Crux/22x22/actions/top.png=go-top.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-up.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_last.png=go-last.png
+s none /opt/csw/share/icons/Crux/22x22/actions/kfm_home.png=go-home.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-goto-first-ltr.png=go-first.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-go-down.png=go-down.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-last.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-goto-bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-go-back-ltr.png=go-previous.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-home.png=go-home.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_first.png=go-first.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-next.png 0644 root bin
+f none /opt/csw/share/icons/Crux/22x22/actions/go-previous.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_up.png=go-up.png
+f none /opt/csw/share/icons/Crux/22x22/actions/document-open.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-go-forward-rtl.png=go-previous.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-goto-top.png=go-top.png
+s none /opt/csw/share/icons/Crux/22x22/actions/finish.png=go-last.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_right.png=go-next.png
+s none /opt/csw/share/icons/Crux/22x22/actions/redhat-home.png=go-home.png
+s none /opt/csw/share/icons/Crux/22x22/actions/next.png=go-next.png
+f none /opt/csw/share/icons/Crux/22x22/actions/view-refresh.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/fileopen.png=document-open.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-open.png=document-open.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-goto-last-rtl.png=go-first.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-first.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-refresh.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_down.png=go-down.png
+s none /opt/csw/share/icons/Crux/22x22/actions/forward.png=go-next.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-goto-last-ltr.png=go-last.png
+s none /opt/csw/share/icons/Crux/22x22/actions/reload.png=view-refresh.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-down.png 0644 root bin
+f none /opt/csw/share/icons/Crux/22x22/actions/go-top.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/reload_all_tabs.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-go-up.png=go-up.png
+s none /opt/csw/share/icons/Crux/22x22/actions/back.png=go-previous.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gohome.png=go-home.png
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_left.png=go-previous.png
+s none /opt/csw/share/icons/Crux/22x22/actions/bottom.png=go-bottom.png
+f none /opt/csw/share/icons/Crux/22x22/actions/go-bottom.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/actions/stock_top.png=go-top.png
+s none /opt/csw/share/icons/Crux/22x22/actions/gtk-go-forward-ltr.png=go-next.png
+d none /opt/csw/share/icons/Crux/22x22/places 0755 root bin
+s none /opt/csw/share/icons/Crux/22x22/places/inode-directory.png=folder.png
+f none /opt/csw/share/icons/Crux/22x22/places/folder-remote.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-nfs.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/22x22/places/folder_home.png=user-home.png
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-smb.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-home.png=user-home.png
+s none /opt/csw/share/icons/Crux/22x22/places/gtk-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/22x22/places/application-x-gnome-saved-search.png=folder-saved-search.png
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-ftp.png=folder-remote.png
+f none /opt/csw/share/icons/Crux/22x22/places/folder.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+f none /opt/csw/share/icons/Crux/22x22/places/folder-saved-search.png 0644 root bin
+f none /opt/csw/share/icons/Crux/22x22/places/user-home.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-share.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/22x22/places/gnome-fs-ssh.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/22x22/places/stock_folder.png=folder.png
+s none /opt/csw/share/icons/Crux/22x22/places/network.png=folder-remote.png
+d none /opt/csw/share/icons/Crux/22x22/status 0755 root bin
+s none /opt/csw/share/icons/Crux/22x22/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+s none /opt/csw/share/icons/Crux/22x22/status/folder_open.png=folder-open.png
+s none /opt/csw/share/icons/Crux/22x22/status/gnome-fs-directory-visiting.png=folder-visiting.png
+f none /opt/csw/share/icons/Crux/22x22/status/folder-drag-accept.png 0644 root bin
+s none /opt/csw/share/icons/Crux/22x22/status/stock_open.png=folder-open.png
+f none /opt/csw/share/icons/Crux/22x22/status/folder-open.png 0644 root bin
+f none /opt/csw/share/icons/Crux/22x22/status/folder-visiting.png 0644 root bin
+d none /opt/csw/share/icons/Crux/16x16 0755 root bin
+d none /opt/csw/share/icons/Crux/16x16/actions 0755 root bin
+f none /opt/csw/share/icons/Crux/16x16/actions/go-previous.png 0644 root bin
+f none /opt/csw/share/icons/Crux/16x16/actions/go-up.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_left.png=go-previous.png
+s none /opt/csw/share/icons/Crux/16x16/actions/bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/16x16/actions/kfm_home.png=go-home.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-go-back-ltr.png=go-previous.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_first.png=go-first.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-goto-bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gohome.png=go-home.png
+s none /opt/csw/share/icons/Crux/16x16/actions/next.png=go-next.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-go-forward-ltr.png=go-next.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-go-up.png=go-up.png
+s none /opt/csw/share/icons/Crux/16x16/actions/reload.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_down.png=go-down.png
+f none /opt/csw/share/icons/Crux/16x16/actions/go-top.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-go-down.png=go-down.png
+s none /opt/csw/share/icons/Crux/16x16/actions/forward.png=go-next.png
+f none /opt/csw/share/icons/Crux/16x16/actions/go-down.png 0644 root bin
+f none /opt/csw/share/icons/Crux/16x16/actions/go-bottom.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_top.png=go-top.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-home.png=go-home.png
+s none /opt/csw/share/icons/Crux/16x16/actions/start.png=go-first.png
+s none /opt/csw/share/icons/Crux/16x16/actions/previous.png=go-previous.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-go-forward-rtl.png=go-previous.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_bottom.png=go-bottom.png
+s none /opt/csw/share/icons/Crux/16x16/actions/reload_page.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/16x16/actions/back.png=go-previous.png
+s none /opt/csw/share/icons/Crux/16x16/actions/finish.png=go-last.png
+s none /opt/csw/share/icons/Crux/16x16/actions/top.png=go-top.png
+f none /opt/csw/share/icons/Crux/16x16/actions/document-open.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-go-back-rtl.png=go-next.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-goto-last-ltr.png=go-last.png
+s none /opt/csw/share/icons/Crux/16x16/actions/down.png=go-down.png
+f none /opt/csw/share/icons/Crux/16x16/actions/go-next.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-goto-first-ltr.png=go-first.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_last.png=go-last.png
+f none /opt/csw/share/icons/Crux/16x16/actions/go-last.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/reload_all_tabs.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-refresh.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_refresh.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_up.png=go-up.png
+s none /opt/csw/share/icons/Crux/16x16/actions/reload3.png=view-refresh.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-open.png=document-open.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-goto-first-rtl.png=go-last.png
+s none /opt/csw/share/icons/Crux/16x16/actions/redhat-home.png=go-home.png
+s none /opt/csw/share/icons/Crux/16x16/actions/fileopen.png=document-open.png
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_right.png=go-next.png
+f none /opt/csw/share/icons/Crux/16x16/actions/go-home.png 0644 root bin
+f none /opt/csw/share/icons/Crux/16x16/actions/view-refresh.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/stock_home.png=go-home.png
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-goto-last-rtl.png=go-first.png
+s none /opt/csw/share/icons/Crux/16x16/actions/up.png=go-up.png
+f none /opt/csw/share/icons/Crux/16x16/actions/go-first.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/actions/gtk-goto-top.png=go-top.png
+d none /opt/csw/share/icons/Crux/16x16/places 0755 root bin
+f none /opt/csw/share/icons/Crux/16x16/places/user-home.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-ftp.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-smb.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/16x16/places/stock_folder.png=folder.png
+s none /opt/csw/share/icons/Crux/16x16/places/inode-directory.png=folder.png
+f none /opt/csw/share/icons/Crux/16x16/places/folder-remote.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-ssh.png=folder-remote.png
+f none /opt/csw/share/icons/Crux/16x16/places/folder-saved-search.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/places/folder_home.png=user-home.png
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-share.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/16x16/places/network.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/16x16/places/gtk-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-directory.png=folder.png
+s none /opt/csw/share/icons/Crux/16x16/places/application-x-gnome-saved-search.png=folder-saved-search.png
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-nfs.png=folder-remote.png
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-fs-home.png=user-home.png
+f none /opt/csw/share/icons/Crux/16x16/places/folder.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+d none /opt/csw/share/icons/Crux/16x16/status 0755 root bin
+s none /opt/csw/share/icons/Crux/16x16/status/stock_open.png=folder-open.png
+s none /opt/csw/share/icons/Crux/16x16/status/folder_open.png=folder-open.png
+f none /opt/csw/share/icons/Crux/16x16/status/folder-visiting.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+f none /opt/csw/share/icons/Crux/16x16/status/folder-drag-accept.png 0644 root bin
+s none /opt/csw/share/icons/Crux/16x16/status/gnome-fs-directory-visiting.png=folder-visiting.png
+f none /opt/csw/share/icons/Crux/16x16/status/folder-open.png 0644 root bin
+d none /opt/csw/share/icons/HighContrastInverse 0755 root bin
+f none /opt/csw/share/icons/HighContrastInverse/index.theme 0644 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse 0755 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48 0755 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes 0755 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-linux-psf.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/unknown.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-bzip.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package_editors.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-image.png=image-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-postscript.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/image.png=image-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-tex.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/deb.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/plan.png=x-office-calendar.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lzma.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-x-font-afm.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-rar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/vcard.png=x-office-address-book.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-text.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-ttf.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-wordperfect.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-bdf.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-magicpoint.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font_type1.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/tar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/rpm.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-compress.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/stock_calendar.png=x-office-calendar.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-applix-word.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package_wordprocessing.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-jar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-afm.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-executable.png=application-x-executable.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-archive.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-pcf.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/kpresenter_kpr.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-compressed-tar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.stardivision.writer.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font_truetype.png=font-x-generic.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/package-x-generic.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-7z-compressed.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-text-x-vcalendar.png=x-office-calendar.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/image-x-generic.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/empty.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png=x-office-document.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font-x-generic.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/ascii.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/video.png=video-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/misc.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-video.png=video-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.presentation.png=x-office-presentation.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/video-x-generic.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/text-x-generic-template.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/txt.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-killustrator.png=image-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/application-vnd.ms-powerpoint.presentation.macroEnabled.12.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/txt2.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png=video-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/wordprocessing.png=x-office-document.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/audio-x-generic.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-fs-regular.png=text-x-preview.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-package.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-audio.png=audio-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-dvi.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-tarz.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/folder_tar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-gzip.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/font_bitmap.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-gzpostscript.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.ms-powerpoint.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/document.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/application-vnd.openxmlformats-officedocument.presentationml.presentation.png=x-office-presentation.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-core-file.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-rtf.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-abiword.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/contents2.png=x-office-address-book.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-text-x-vcard.png=x-office-address-book.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-stuffit.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png=video-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-kpresenter.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/tgz.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-scribus.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-pdf.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-msword.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png=x-office-document.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-address-book.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-ogg.png=audio-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-fs-executable.png=application-x-executable.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-font-sunos-news.png=font-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gtk-file.png=text-x-preview.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png=package-x-generic.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-document.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/exec.png=application-x-executable.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.stardivision.impress.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-deb.png=package-x-generic.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/text-x-generic.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.impress.png=x-office-presentation.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-arj.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-ms-dos-executable.png=application-x-executable.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/binary.png=application-x-executable.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-presentation.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-kword.png=x-office-document.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-zip.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/vcalendar.png=x-office-calendar.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/text-x-preview.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/x-office-calendar.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/stock_addressbook.png=x-office-address-book.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-cpio.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lhz.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/zip.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-rpm.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-tar.png=package-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png=video-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/sound.png=audio-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/template_source.png=text-x-generic-template.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/mime_ascii.png=text-x-generic.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-x-lha.png=package-x-generic.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/application-x-executable.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png=video-x-generic.png
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status 0755 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/network-transmit-receive.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_shuffle.png=media-playlist-shuffle.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-few-clouds.png=weather-few-clouds.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/media-playlist-repeat.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/sunny.png=weather-clear.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-showers.png=weather-showers.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-snow.png=weather-snow.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-netstatus-tx.png=network-transmit.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-0.png=audio-volume-low.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-netstatus-idle.png=network-idle.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/network-transmit.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/nm-no-connection.png=network-offline.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-night-few-clouds.png=weather-few-clouds-night.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/folder-drag-accept.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/printer-printing.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/battery-low.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-showers-scattered.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-clear.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-stock-trash-full.png=user-trash-full.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/folder-drag-accept.icon 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-min.png=audio-volume-low.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-fog.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_repeat.png=media-playlist-repeat.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-fs-trash-full.png=user-trash-full.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-overcast.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-night-clear.png=weather-clear-night.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-few-clouds.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume.png=audio-volume-high.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-low.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-clear-night.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/xfce-trash_full.png=user-trash-full.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-storm.png=weather-storm.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-snow.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-cloudy.png=weather-overcast.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/printer-error.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/media-playlist-shuffle.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-med.png=audio-volume-medium.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-max.png=audio-volume-high.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/connect_no.png=network-offline.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_volume-mute.png=audio-volume-muted.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/trashcan_full.png=user-trash-full.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_trash_full.png=user-trash-full.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/network-idle.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-sunny.png=weather-clear.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-fs-directory-accept.icon=folder-drag-accept.icon
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/network-offline.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/nm-device-wireless.png=network-idle.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-few-clouds-night.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-storm.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-netstatus-disconn.png=network-offline.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-high.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/edittrash.png=user-trash-full.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/connect_creating.png=network-transmit-receive.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-netstatus-error.png=network-error.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/nm-adhoc.png=network-idle.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-medium.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/connect_established.png=network-idle.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/battery-caution.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/nm-device-wired.png=network-idle.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/network-error.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/stock_weather-fog.png=weather-fog.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-netstatus-rx.png=network-receive.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/weather-showers.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/user-trash-full.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/audio-volume-muted.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/gnome-netstatus-txrx.png=network-transmit-receive.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/status/network-receive.png 0644 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places 0755 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gtk-directory.icon=folder.icon
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/distributor-logo.png=start-here.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/folder-remote.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-ssh.png=folder-remote.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/network.png=folder-remote.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-directory.icon=folder.icon
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-trash-empty.png=user-trash.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-smb-workgroup.png=network-workgroup.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-directory.png=folder.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/network-server.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/stock_folder.png=folder.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/network-workgroup.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/novell-button.png=start-here.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-smb-server.png=network-server.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/folder_home.png=user-home.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/user-desktop.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-stock-trash.png=user-trash.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-smb.png=folder-remote.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/xfce-trash_empty.png=user-trash.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/network_local.png=network-workgroup.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/start-here.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/user-home.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/folder.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-ftp.png=folder-remote.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-desktop.png=user-desktop.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/inode-directory.icon=folder.icon
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-nfs.png=folder-remote.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-home.png=user-home.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/folder.icon 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gtk-network.png=network-workgroup.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-network.png=network-workgroup.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-mime-x-directory-nfs-server.png=network-server.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/redhat-network-server.png=network-server.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gtk-directory.png=folder.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/trashcan_empty.png=user-trash.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-server.png=network-server.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/stock_folder.icon=folder.icon
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/emptytrash.png=user-trash.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/desktop.png=user-desktop.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/user-trash.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/inode-directory.png=folder.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-main-menu.png=start-here.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/server.png=network-server.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/places/gnome-fs-share.png=folder-remote.png
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions 0755 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-home.png=go-home.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/stock_refresh.png=view-refresh.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/search.png=system-search.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/go-home.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/kfind.png=system-search.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-execute.png=system-run.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/reload3.png=view-refresh.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/insert-text.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-media-pause.png=media-playback-pause.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/kfm_home.png=go-home.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/reload_all_tabs.png=view-refresh.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/stock_mail-send-receive.png=mail-send-receive.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gtk-refresh.png=view-refresh.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/exit.png=system-log-out.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-searchtool.png=system-search.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/redhat-home.png=go-home.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/view-refresh.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-shutdown.png=system-shutdown.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/system-search.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/stock_home.png=go-home.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/reload.png=view-refresh.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gohome.png=go-home.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/mail-send-receive.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-run.png=system-run.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/system-run.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/system-shutdown.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/stock_new-tab.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/reload_page.png=view-refresh.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/stock_media-pause.png=media-playback-pause.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/media-playback-pause.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/system-log-out.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/player_pause.png=media-playback-pause.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/insert-image.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/actions/gnome-logout.png=system-log-out.png
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems 0755 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-important.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-desktop.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-special.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-unreadable.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-default.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-noread.png=emblem-unreadable.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/emblems/emblem-personal.png 0644 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories 0755 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/kcontrol.png=preferences-desktop.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/stock_internet.png=applications-internet.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-devel.png=applications-development.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-games.png=applications-games.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-desktop-personal.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-development.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_multimedia.png=applications-multimedia.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce4-settings.png=preferences-desktop.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-programming.png=applications-development.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-other.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-science.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-system_settings.png=preferences-system.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-joystick.png=applications-games.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-utils.png=applications-accessories.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-office.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-office.png=applications-office.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-system.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_utilities.png=applications-accessories.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gtk-preferences.png=preferences-desktop.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-sound_video.png=applications-multimedia.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-util.png=applications-accessories.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-applications.png=applications-office.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-internet.png=applications-internet.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-graphics.png=applications-graphics.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-graphics.png=applications-graphics.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-system-network.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-office.png=applications-office.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-globe.png=applications-internet.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-games.png=applications-games.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-multimedia.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-multimedia.png=applications-multimedia.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-multimedia.png=applications-multimedia.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-settings.png=preferences-desktop.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-desktop.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-accessories.png=applications-accessories.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-system.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-desktop-peripherals.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-engineering.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/input_devices_settings.png=preferences-desktop-peripherals.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_network.png=applications-internet.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-accessories.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/preferences-other.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-graphics.png=applications-graphics.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-other.png=applications-other.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-internet.png=applications-internet.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_development.png=applications-development.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-system.png=applications-system.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-preferences.png=preferences-desktop.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/gnome-control-center.png=preferences-desktop.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_office.png=applications-office.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_graphics.png=applications-graphics.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/redhat-system_tools.png=applications-system.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_system.png=applications-system.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_games.png=applications-games.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/xfce-system-settings.png=preferences-system.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-internet.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-games.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-utilities.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/applications-graphics.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/categories/package_settings.png=preferences-system.png
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices 0755 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-cdrom.png=drive-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-mouse-optical.png=input-mouse.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/drive-harddisk.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-removable.png=drive-removable-media.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-computer.png=computer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-wavelan.png=network-wireless.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdr.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-harddisk-usb.png=drive-harddisk.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/drive-cdrom.png=drive-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/printer1.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/xfce4-mouse.png=input-mouse.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-floppy.png=media-floppy.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/media-optical.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-removable-1394.png=drive-removable-media.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/kxkb.png=input-keyboard.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/dvd_unmount.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-cdrom-audio.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/yast_mouse.png=input-mouse.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-printer-network.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/yast_HD.png=drive-harddisk.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/input-mouse.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-dvd.png=drive-optical.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-printer-new.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/cdwriter_unmount.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/media-cdrom.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-removable-usb.png=drive-removable-media.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gtk-floppy.png=media-floppy.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-printer.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/printmgr.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/hdd_unmount.png=drive-harddisk.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/keyboard.png=input-keyboard.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/network-wireless.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/mouse.png=input-mouse.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-cdrw.png=media-optical.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/drive-removable-media.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gtk-cdrom.png=media-optical.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/media-floppy.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/drive-optical.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdrom.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gtk-harddisk.png=drive-harddisk.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdr-plus.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/stock_printers.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-mouse-ball.png=input-mouse.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdram.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-cdr.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-disc-dvdrw.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/xfce4-keyboard.png=input-keyboard.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-fs-client.png=computer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-keyboard.png=input-keyboard.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/printer.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/printer-remote.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/cdrom_unmount.png=media-optical.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/system.png=computer.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/input-keyboard.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/yast_printer.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/system-floppy.png=media-floppy.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-harddisk-1394.png=drive-harddisk.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/computer.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/xfce-printer.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/yast_idetude.png=drive-harddisk.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/kjobviewer.png=printer.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/harddrive.png=drive-harddisk.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/gnome-dev-harddisk.png=drive-harddisk.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/3floppy_unmount.png=media-floppy.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/devices/usbpendrive_unmount.png=drive-removable-media.png
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps 0755 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-default-applications.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/eog.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gimp.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/ksysguard.png=utilities-system-monitor.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/firefox-icon.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-audio2.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-monitor.png=utilities-system-monitor.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/config-language.png=preferences-desktop-locale.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-accessibility-technologies.png=preferences-desktop-accessibility.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/utilities-system-monitor.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-text-editor.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/launcher-program.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/utilities-terminal.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/applets-screenshooter.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-font.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/evolution.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mailcheck.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-accessibility.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-grecord.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kcmkwm.png=preferences-system-windows.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/multimedia.png=multimedia-volume-control.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-background.png=preferences-desktop-wallpaper.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-terminal.png=utilities-terminal.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kcharselect.png=accessories-character-map.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/sound-juicer.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-logo-icon-transparent.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-searchtool-animation.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/file-roller.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/panel-force-quit.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/display-capplet.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/konsole.png=utilities-terminal.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-ccmime.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-log.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-calc3.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-workspace.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/susehelpcenter.png=help-browser.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/ax-applet.png=preferences-desktop-accessibility.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-ccscreensaver.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/ghex.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-mixer.png=multimedia-volume-control.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-keyboard-shortcuts.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-starthere.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/background.png=preferences-desktop-wallpaper.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-home.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/file-manager.png=system-file-manager.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/clock.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-accessibility-keyboard.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-keyboard.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/smc.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/accessibility-directory.png=preferences-desktop-accessibility.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-keybindings.png=preferences-desktop-keyboard-shortcuts.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfwm4.png=preferences-system-windows.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/perfmeter.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/panel-drawer.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-folder-generic.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-wallpaper.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-font.png=preferences-desktop-font.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mixer.png=multimedia-volume-control.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-theme.png=preferences-desktop-theme.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-panel.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/style.png=preferences-desktop-theme.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kcmsound.png=multimedia-volume-control.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-cd.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/wallpaper.png=preferences-desktop-wallpaper.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/system-file-manager.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-application-generic.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-dictionary.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mixer-applet.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-calculator.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/terminal.png=utilities-terminal.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/rhythmbox.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-sound.png=preferences-desktop-sound.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/advanced-directory.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/mozilla-icon.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-system-windows.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfce-terminal.png=utilities-terminal.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/locale.png=preferences-desktop-locale.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gucharmap.png=accessories-character-map.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/window-capplet.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/redhat-filemanager.png=system-file-manager.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-sound.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-session.png=preferences-system-session.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-session.png=preferences-system-session.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kwin.png=preferences-system-windows.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/access.png=preferences-desktop-accessibility.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/key_bindings.png=preferences-desktop-keyboard-shortcuts.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kedit.png=accessories-text-editor.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/help-browser.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfce4-backdrop.png=preferences-desktop-wallpaper.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/xfce-filemanager.png=system-file-manager.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/volume-knob.png=multimedia-volume-control.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/brasero.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/star.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-window-manager.png=preferences-system-windows.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-theme.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/fonts.png=preferences-desktop-font.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kcalc.png=accessories-calculator.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/totem.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/session-properties.png=preferences-system-session.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-calculator.png=accessories-calculator.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-searchtool-animation-rest.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-help.png=help-browser.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-windows.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-mini-commander.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/calc.png=accessories-calculator.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/orca.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-ui-behavior.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/accessories-character-map.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/charpick.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/text-editor.png=accessories-text-editor.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/openterm.png=utilities-terminal.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gkb.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/arts.png=multimedia-volume-control.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/kfm.png=system-file-manager.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/knotify.png=preferences-desktop-sound.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gok.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-info.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/multimedia-volume-control.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-character-map.png=accessories-character-map.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-system-session.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/gnome-settings-sound.png=preferences-desktop-sound.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/evince.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/khelpcenter.png=help-browser.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/48x48/apps/preferences-desktop-locale.png 0644 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/index.theme 0644 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/36x36 0755 root bin
+d none /opt/csw/share/icons/HighContrastLargePrintInverse/36x36/animations 0755 root bin
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/36x36/animations/process-working.png 0644 root bin
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/36x36/animations/gnome-spinner.png=process-working.png
+s none /opt/csw/share/icons/HighContrastLargePrintInverse/36x36/animations/gnome-spinner-rest.png=process-idle.png
+f none /opt/csw/share/icons/HighContrastLargePrintInverse/36x36/animations/process-idle.png 0644 root bin
+d none /opt/csw/share/icons/Mist 0755 root bin
+d none /opt/csw/share/icons/Mist/scalable 0755 root bin
+d none /opt/csw/share/icons/Mist/scalable/places 0755 root bin
+f none /opt/csw/share/icons/Mist/scalable/places/user-home.svg 0644 root bin
+s none /opt/csw/share/icons/Mist/scalable/places/stock_folder.svg=folder.svg
+s none /opt/csw/share/icons/Mist/scalable/places/gnome-fs-directory.svg=folder.svg
+s none /opt/csw/share/icons/Mist/scalable/places/network.svg=folder-remote.svg
+f none /opt/csw/share/icons/Mist/scalable/places/folder-new.svg 0644 root bin
+s none /opt/csw/share/icons/Mist/scalable/places/gnome-fs-ssh.svg=folder-remote.svg
+s none /opt/csw/share/icons/Mist/scalable/places/gnome-fs-ftp.svg=folder-remote.svg
+s none /opt/csw/share/icons/Mist/scalable/places/gnome-fs-share.svg=folder-remote.svg
+f none /opt/csw/share/icons/Mist/scalable/places/folder-remote.svg 0644 root bin
+f none /opt/csw/share/icons/Mist/scalable/places/folder-saved-search.svg 0644 root bin
+s none /opt/csw/share/icons/Mist/scalable/places/gnome-fs-smb.svg=folder-remote.svg
+f none /opt/csw/share/icons/Mist/scalable/places/folder.svg 0644 root bin

@@ Diff output truncated at 100000 characters. @@

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list