[csw-devel] SF.net SVN: gar:[10406] csw/mgar/pkg

theferret at users.sourceforge.net theferret at users.sourceforge.net
Fri Jul 2 23:23:00 CEST 2010


Revision: 10406
          http://gar.svn.sourceforge.net/gar/?rev=10406&view=rev
Author:   theferret
Date:     2010-07-02 21:23:00 +0000 (Fri, 02 Jul 2010)

Log Message:
-----------
gnome_theme_extras: mv and rebuild

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

Added: csw/mgar/pkg/gnome_theme_extras/Makefile
===================================================================
--- csw/mgar/pkg/gnome_theme_extras/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gnome_theme_extras/Makefile	2010-07-02 21:23:00 UTC (rev 10406)
@@ -0,0 +1,15 @@
+
+# This is somewhat of a "stub" Makefile, for 
+# directories managed by the "createpkg" TEMPLATES.
+#
+# Not all of targets listed here may actualy be supported by
+# the subdir in question. But they are a goal
+
+DEFAULT_DIR=trunk
+
+
+# The -C means you must use gmake, unfortunately.
+
+all package build garchive extract configure clean distclean reallyclean :
+	@echo Going to make $@ in $(DEFAULT_DIR)
+	$(MAKE) -C  $(DEFAULT_DIR) $@


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


Added: csw/mgar/pkg/gnome_theme_extras/trunk/Makefile
===================================================================
--- csw/mgar/pkg/gnome_theme_extras/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gnome_theme_extras/trunk/Makefile	2010-07-02 21:23:00 UTC (rev 10406)
@@ -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-extras-2.22.0.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-extras/2.22
+
+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 -b `pwd`/build/*/cswstage/opt/csw
+
+
+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/opt/csw/.)
+	@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  share/themes/COPYING.gnome_theme_extras=COPYING 0644 root bin'>>prototype

Added: csw/mgar/pkg/gnome_theme_extras/trunk/copyright
===================================================================
--- csw/mgar/pkg/gnome_theme_extras/trunk/copyright	                        (rev 0)
+++ csw/mgar/pkg/gnome_theme_extras/trunk/copyright	2010-07-02 21:23:00 UTC (rev 10406)
@@ -0,0 +1,3 @@
+please see /opt/csw/share/themes/COPYING.gnome_theme_extras for full
+license text
+(LGPL 2)

Added: csw/mgar/pkg/gnome_theme_extras/trunk/depend
===================================================================
Added: csw/mgar/pkg/gnome_theme_extras/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/gnome_theme_extras/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gnome_theme_extras/trunk/pkginfo	2010-07-02 21:23:00 UTC (rev 10406)
@@ -0,0 +1,9 @@
+PKG=CSWgnomethemes
+NAME=gnome_themes - Official themes for the GNOME desktop environment
+ARCH=all
+VERSION=2.22.0,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_theme_extras/trunk/prototype
===================================================================
--- csw/mgar/pkg/gnome_theme_extras/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/gnome_theme_extras/trunk/prototype	2010-07-02 21:23:00 UTC (rev 10406)
@@ -0,0 +1,5711 @@
+i pkginfo
+i copyright
+i depend
+d none share 0755 root bin
+d none share/locale 0755 root bin
+d none share/locale/ca 0755 root bin
+d none share/locale/ca/LC_MESSAGES 0755 root bin
+f none share/locale/ca/LC_MESSAGES/gnome-themes-extras.mo 0644 root bin
+d none share/locale/en_GB 0755 root bin
+d none share/locale/en_GB/LC_MESSAGES 0755 root bin
+f none share/locale/en_GB/LC_MESSAGES/gnome-themes-extras.mo 0644 root bin
+d none share/locale/sv 0755 root bin
+d none share/locale/sv/LC_MESSAGES 0755 root bin
+f none share/locale/sv/LC_MESSAGES/gnome-themes-extras.mo 0644 root bin
+d none share/locale/eu 0755 root bin
+d none share/locale/eu/LC_MESSAGES 0755 root bin
+f none share/locale/eu/LC_MESSAGES/gnome-themes-extras.mo 0644 root bin
+d none share/themes 0755 root bin
+d none share/themes/Darklooks 0755 root bin
+d none share/themes/Darklooks/gtk-2.0 0755 root bin
+f none share/themes/Darklooks/gtk-2.0/gtkrc 0644 root bin
+f none share/themes/Darklooks/index.theme 0644 root bin
+d none share/themes/Unity 0755 root bin
+d none share/themes/Unity/metacity-1 0755 root bin
+f none share/themes/Unity/metacity-1/metacity-theme-1.xml 0644 root bin
+f none share/themes/Unity/index.theme 0644 root bin
+d none share/themes/Unity/gtk-2.0 0755 root bin
+f none share/themes/Unity/gtk-2.0/gtkrc 0644 root bin
+d none share/icons 0755 root bin
+d none share/icons/Neu 0755 root bin
+d none share/icons/Neu/48x48 0755 root bin
+d none share/icons/Neu/48x48/devices 0755 root bin
+f none share/icons/Neu/48x48/devices/media-cdrw.png 0644 root bin
+s none share/icons/Neu/48x48/devices/gnome-dev-keyboard.png=input-keyboard.png
+s none share/icons/Neu/48x48/devices/gnome-dev-removable.png=drive-removable-media.png
+s none share/icons/Neu/48x48/devices/yast_mouse.png=input-mouse.png
+s none share/icons/Neu/48x48/devices/keyboard.png=input-keyboard.png
+f none share/icons/Neu/48x48/devices/video-display.png 0644 root bin
+s none share/icons/Neu/48x48/devices/gnome-dev-mouse-ball.png=input-mouse.png
+s none share/icons/Neu/48x48/devices/gnome-dev-removable-1394.png=drive-removable-media.png
+f none share/icons/Neu/48x48/devices/input-keyboard.png 0644 root bin
+s none share/icons/Neu/48x48/devices/harddrive.png=drive-harddisk.png
+s none share/icons/Neu/48x48/devices/printmgr.png=printer.png
+s none share/icons/Neu/48x48/devices/xfce4-display.png=video-display.png
+s none share/icons/Neu/48x48/devices/gnome-dev-harddisk.png=drive-harddisk.png
+s none share/icons/Neu/48x48/devices/chardevice.png=video-display.png
+s none share/icons/Neu/48x48/devices/printer-remote.png=printer.png
+s none share/icons/Neu/48x48/devices/xfce4-keyboard.png=input-keyboard.png
+s none share/icons/Neu/48x48/devices/gnome-dev-printer.png=printer.png
+s none share/icons/Neu/48x48/devices/display.png=video-display.png
+s none share/icons/Neu/48x48/devices/gnome-dev-harddisk-1394.png=drive-harddisk.png
+s none share/icons/Neu/48x48/devices/gtk-harddisk.png=drive-harddisk.png
+s none share/icons/Neu/48x48/devices/printer1.png=printer.png
+s none share/icons/Neu/48x48/devices/gtk-floppy.png=media-floppy.png
+s none share/icons/Neu/48x48/devices/mouse.png=input-mouse.png
+f none share/icons/Neu/48x48/devices/printer.png 0644 root bin
+f none share/icons/Neu/48x48/devices/media-cdrom-audio.png 0644 root bin
+f none share/icons/Neu/48x48/devices/media-floppy.png 0644 root bin
+s none share/icons/Neu/48x48/devices/gnome-dev-computer.png=computer.png
+s none share/icons/Neu/48x48/devices/gnome-dev-removable-usb.png=drive-removable-media.png
+f none share/icons/Neu/48x48/devices/media-cdrom.png 0644 root bin
+s none share/icons/Neu/48x48/devices/stock_printers.png=printer.png
+s none share/icons/Neu/48x48/devices/gnome-fs-client.png=computer.png
+f none share/icons/Neu/48x48/devices/input-mouse.png 0644 root bin
+s none share/icons/Neu/48x48/devices/xfce4-mouse.png=input-mouse.png
+s none share/icons/Neu/48x48/devices/system-floppy.png=media-floppy.png
+f none share/icons/Neu/48x48/devices/computer.png 0644 root bin
+s none share/icons/Neu/48x48/devices/gnome-dev-mouse-optical.png=input-mouse.png
+s none share/icons/Neu/48x48/devices/gnome-dev-harddisk-usb.png=drive-harddisk.png
+f none share/icons/Neu/48x48/devices/media-dvdrw.png 0644 root bin
+f none share/icons/Neu/48x48/devices/drive-cdrom.png 0644 root bin
+f none share/icons/Neu/48x48/devices/media-dvd.png 0644 root bin
+f none share/icons/Neu/48x48/devices/battery.png 0644 root bin
+s none share/icons/Neu/48x48/devices/xfce-printer.png=printer.png
+s none share/icons/Neu/48x48/devices/3floppy_unmount.png=media-floppy.png
+s none share/icons/Neu/48x48/devices/yast_idetude.png=drive-harddisk.png
+s none share/icons/Neu/48x48/devices/yast_printer.png=printer.png
+s none share/icons/Neu/48x48/devices/yast_HD.png=drive-harddisk.png
+s none share/icons/Neu/48x48/devices/gnome-dev-battery.png=battery.png
+s none share/icons/Neu/48x48/devices/kxkb.png=input-keyboard.png
+s none share/icons/Neu/48x48/devices/gnome-dev-floppy.png=media-floppy.png
+s none share/icons/Neu/48x48/devices/kjobviewer.png=printer.png
+s none share/icons/Neu/48x48/devices/hdd_unmount.png=drive-harddisk.png
+f none share/icons/Neu/48x48/devices/drive-removable-media.png 0644 root bin
+s none share/icons/Neu/48x48/devices/usbpendrive_unmount.png=drive-removable-media.png
+f none share/icons/Neu/48x48/devices/drive-harddisk.png 0644 root bin
+s none share/icons/Neu/48x48/devices/system.png=computer.png
+d none share/icons/Neu/48x48/categories 0755 root bin
+s none share/icons/Neu/48x48/categories/xfce-utils.png=applications-accessories.png
+s none share/icons/Neu/48x48/categories/gnome-other.png=applications-other.png
+f none share/icons/Neu/48x48/categories/applications-games.png 0644 root bin
+s none share/icons/Neu/48x48/categories/redhat-system_settings.png=preferences-system.png
+f none share/icons/Neu/48x48/categories/applications-accessories.png 0644 root bin
+s none share/icons/Neu/48x48/categories/gnome-multimedia.png=applications-multimedia.png
+s none share/icons/Neu/48x48/categories/package_system.png=applications-system.png
+s none share/icons/Neu/48x48/categories/xfce-games.png=applications-games.png
+s none share/icons/Neu/48x48/categories/package_office.png=applications-office.png
+f none share/icons/Neu/48x48/categories/applications-graphics.png 0644 root bin
+s none share/icons/Neu/48x48/categories/package_development.png=applications-development.png
+s none share/icons/Neu/48x48/categories/xfce-multimedia.png=applications-multimedia.png
+f none share/icons/Neu/48x48/categories/applications-internet.png 0644 root bin
+s none share/icons/Neu/48x48/categories/redhat-system_tools.png=applications-system.png
+s none share/icons/Neu/48x48/categories/xfce-system-settings.png=preferences-system.png
+s none share/icons/Neu/48x48/categories/redhat-preferences.png=preferences-desktop.png
+s none share/icons/Neu/48x48/categories/package_games.png=applications-games.png
+s none share/icons/Neu/48x48/categories/redhat-games.png=applications-games.png
+s none share/icons/Neu/48x48/categories/gnome-util.png=applications-accessories.png
+s none share/icons/Neu/48x48/categories/gnome-control-center.png=preferences-desktop.png
+f none share/icons/Neu/48x48/categories/preferences-system.png 0644 root bin
+s none share/icons/Neu/48x48/categories/gtk-preferences.png=preferences-desktop.png
+s none share/icons/Neu/48x48/categories/gnome-system.png=applications-system.png
+s none share/icons/Neu/48x48/categories/redhat-office.png=applications-office.png
+s none share/icons/Neu/48x48/categories/package_graphics.png=applications-graphics.png
+s none share/icons/Neu/48x48/categories/redhat-accessories.png=applications-accessories.png
+s none share/icons/Neu/48x48/categories/gnome-settings.png=preferences-desktop.png
+f none share/icons/Neu/48x48/categories/preferences-desktop-peripherals.png 0644 root bin
+f none share/icons/Neu/48x48/categories/applications-development.png 0644 root bin
+s none share/icons/Neu/48x48/categories/gnome-graphics.png=applications-graphics.png
+f none share/icons/Neu/48x48/categories/applications-system.png 0644 root bin
+s none share/icons/Neu/48x48/categories/package_settings.png=preferences-system.png
+f none share/icons/Neu/48x48/categories/applications-office.png 0644 root bin
+s none share/icons/Neu/48x48/categories/package_utilities.png=applications-accessories.png
+s none share/icons/Neu/48x48/categories/input_devices_settings.png=preferences-desktop-peripherals.png
+s none share/icons/Neu/48x48/categories/gnome-devel.png=applications-development.png
+s none share/icons/Neu/48x48/categories/gnome-applications.png=applications-office.png
+s none share/icons/Neu/48x48/categories/package_network.png=applications-internet.png
+s none share/icons/Neu/48x48/categories/kcontrol.png=preferences-desktop.png
+s none share/icons/Neu/48x48/categories/gnome-joystick.png=applications-games.png
+s none share/icons/Neu/48x48/categories/redhat-sound_video.png=applications-multimedia.png
+s none share/icons/Neu/48x48/categories/redhat-programming.png=applications-development.png
+f none share/icons/Neu/48x48/categories/applications-other.png 0644 root bin
+s none share/icons/Neu/48x48/categories/xfce4-settings.png=preferences-desktop.png
+s none share/icons/Neu/48x48/categories/gnome-globe.png=applications-internet.png
+f none share/icons/Neu/48x48/categories/applications-multimedia.png 0644 root bin
+s none share/icons/Neu/48x48/categories/xfce-office.png=applications-office.png
+s none share/icons/Neu/48x48/categories/redhat-internet.png=applications-internet.png
+s none share/icons/Neu/48x48/categories/xfce-internet.png=applications-internet.png
+f none share/icons/Neu/48x48/categories/preferences-desktop.png 0644 root bin
+s none share/icons/Neu/48x48/categories/redhat-graphics.png=applications-graphics.png
+s none share/icons/Neu/48x48/categories/xfce-graphics.png=applications-graphics.png
+s none share/icons/Neu/48x48/categories/package_multimedia.png=applications-multimedia.png
+s none share/icons/Neu/48x48/categories/stock_internet.png=applications-internet.png
+d none share/icons/Neu/48x48/status 0755 root bin
+s none share/icons/Neu/48x48/status/trashcan_full.png=user-trash-full.png
+s none share/icons/Neu/48x48/status/stock_dialog-error.png=dialog-error.png
+s none share/icons/Neu/48x48/status/stock_volume-med.png=audio-volume-medium.png
+s none share/icons/Neu/48x48/status/gtk-dialog-info.png=dialog-information.png
+s none share/icons/Neu/48x48/status/stock_dialog-question.png=dialog-question.png
+s none share/icons/Neu/48x48/status/stock_volume-max.png=audio-volume-high.png
+s none share/icons/Neu/48x48/status/gnome-netstatus-tx.png=network-transmit.png
+s none share/icons/Neu/48x48/status/gtk-dialog-authentication.png=dialog-password.png
+s none share/icons/Neu/48x48/status/gnome-fs-loading-icon.png=image-loading.png
+f none share/icons/Neu/48x48/status/network-idle.png 0644 root bin
+f none share/icons/Neu/48x48/status/folder-drag-accept.png 0644 root bin
+s none share/icons/Neu/48x48/status/gnome-fs-trash-full.png=user-trash-full.png
+s none share/icons/Neu/48x48/status/gnome-netstatus-idle.png=network-idle.png
+s none share/icons/Neu/48x48/status/gtk-dialog-warning.png=dialog-warning.png
+s none share/icons/Neu/48x48/status/stock_trash_full.png=user-trash-full.png
+f none share/icons/Neu/48x48/status/dialog-information.png 0644 root bin
+s none share/icons/Neu/48x48/status/stock_volume-0.png=audio-volume-low.png
+f none share/icons/Neu/48x48/status/folder-visiting.png 0644 root bin
+f none share/icons/Neu/48x48/status/audio-volume-zero.png 0644 root bin
+s none share/icons/Neu/48x48/status/xfce-trash_full.png=user-trash-full.png
+s none share/icons/Neu/48x48/status/gnome-netstatus-disconn.png=network-offline.png
+s none share/icons/Neu/48x48/status/stock_dialog-info.png=dialog-information.png
+s none share/icons/Neu/48x48/status/messagebox_info.png=dialog-information.png
+s none share/icons/Neu/48x48/status/folder_open.png=folder-open.png
+s none share/icons/Neu/48x48/status/connect_creating.png=network-transmit-receive.png
+f none share/icons/Neu/48x48/status/dialog-password.png 0644 root bin
+f none share/icons/Neu/48x48/status/dialog-warning.png 0644 root bin
+f none share/icons/Neu/48x48/status/network-error.png 0644 root bin
+s none share/icons/Neu/48x48/status/messagebox_critical.png=dialog-error.png
+f none share/icons/Neu/48x48/status/image-missing.png 0644 root bin
+s none share/icons/Neu/48x48/status/gnome-fs-directory-visiting.png=folder-visiting.png
+s none share/icons/Neu/48x48/status/important.png=dialog-warning.png
+s none share/icons/Neu/48x48/status/gnome-netstatus-error.png=network-error.png
+s none share/icons/Neu/48x48/status/stock_open.png=folder-open.png
+f none share/icons/Neu/48x48/status/audio-volume-high.png 0644 root bin
+f none share/icons/Neu/48x48/status/audio-volume-medium.png 0644 root bin
+s none share/icons/Neu/48x48/status/connect_established.png=network-idle.png
+s none share/icons/Neu/48x48/status/nm-device-wireless.png=network-idle.png
+f none share/icons/Neu/48x48/status/battery-caution.png 0644 root bin
+s none share/icons/Neu/48x48/status/nm-device-wired.png=network-idle.png
+f none share/icons/Neu/48x48/status/folder-open.png 0644 root bin
+s none share/icons/Neu/48x48/status/stock_dialog-warning.png=dialog-warning.png
+f none share/icons/Neu/48x48/status/network-transmit.png 0644 root bin
+s none share/icons/Neu/48x48/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+f none share/icons/Neu/48x48/status/user-trash-full.png 0644 root bin
+s none share/icons/Neu/48x48/status/nm-no-connection.png=network-offline.png
+f none share/icons/Neu/48x48/status/network-receive.png 0644 root bin
+s none share/icons/Neu/48x48/status/gnome-stock-trash-full.png=user-trash-full.png
+s none share/icons/Neu/48x48/status/connect_no.png=network-offline.png
+f none share/icons/Neu/48x48/status/image-loading.png 0644 root bin
+f none share/icons/Neu/48x48/status/network-transmit-receive.png 0644 root bin
+s none share/icons/Neu/48x48/status/edittrash.png=user-trash-full.png
+s none share/icons/Neu/48x48/status/gnome-netstatus-txrx.png=network-transmit-receive.png
+s none share/icons/Neu/48x48/status/stock_volume.png=audio-volume-high.png
+s none share/icons/Neu/48x48/status/error.png=dialog-error.png
+s none share/icons/Neu/48x48/status/stock_volume-mute.png=audio-volume-muted.png
+s none share/icons/Neu/48x48/status/nm-adhoc.png=network-idle.png
+s none share/icons/Neu/48x48/status/gtk-dialog-error.png=dialog-error.png
+s none share/icons/Neu/48x48/status/messagebox_warning.png=dialog-warning.png
+f none share/icons/Neu/48x48/status/audio-volume-muted.png 0644 root bin
+s none share/icons/Neu/48x48/status/info.png=dialog-information.png
+s none share/icons/Neu/48x48/status/gtk-dialog-question.png=dialog-question.png
+s none share/icons/Neu/48x48/status/stock_volume-min.png=audio-volume-low.png
+s none share/icons/Neu/48x48/status/gtk-missing-image.png=image-missing.png
+s none share/icons/Neu/48x48/status/gnome-netstatus-rx.png=network-receive.png
+f none share/icons/Neu/48x48/status/network-offline.png 0644 root bin
+f none share/icons/Neu/48x48/status/printer-error.png 0644 root bin
+f none share/icons/Neu/48x48/status/audio-volume-low.png 0644 root bin
+f none share/icons/Neu/48x48/status/dialog-error.png 0644 root bin
+f none share/icons/Neu/48x48/status/dialog-question.png 0644 root bin
+d none share/icons/Neu/48x48/places 0755 root bin
+f none share/icons/Neu/48x48/places/network-workgroup.png 0644 root bin
+s none share/icons/Neu/48x48/places/gnome-fs-network.png=network-workgroup.png
+s none share/icons/Neu/48x48/places/gnome-mime-x-directory-smb-workgroup.png=network-workgroup.png
+s none share/icons/Neu/48x48/places/gnome-fs-ssh.png=folder-remote.png
+f none share/icons/Neu/48x48/places/folder-saved-search.png 0644 root bin
+s none share/icons/Neu/48x48/places/stock_folder.png=folder.png
+f none share/icons/Neu/48x48/places/folder.png 0644 root bin
+s none share/icons/Neu/48x48/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+s none share/icons/Neu/48x48/places/gtk-directory.png=folder.png
+s none share/icons/Neu/48x48/places/redhat-network-server.png=network-server.png
+s none share/icons/Neu/48x48/places/trashcan_empty.png=user-trash.png
+f none share/icons/Neu/48x48/places/user-trash.png 0644 root bin
+s none share/icons/Neu/48x48/places/application-x-gnome-saved-search.png=folder-saved-search.png
+s none share/icons/Neu/48x48/places/gnome-mime-x-directory-nfs-server.png=network-server.png
+f none share/icons/Neu/48x48/places/user-desktop.png 0644 root bin
+s none share/icons/Neu/48x48/places/gnome-fs-smb.png=folder-remote.png
+s none share/icons/Neu/48x48/places/network.png=folder-remote.png
+s none share/icons/Neu/48x48/places/gnome-fs-trash-empty.png=user-trash.png
+s none share/icons/Neu/48x48/places/emptytrash.png=user-trash.png
+s none share/icons/Neu/48x48/places/gnome-fs-ftp.png=folder-remote.png
+f none share/icons/Neu/48x48/places/user-home.png 0644 root bin
+s none share/icons/Neu/48x48/places/folder_home.png=user-home.png
+s none share/icons/Neu/48x48/places/gnome-fs-share.png=folder-remote.png
+s none share/icons/Neu/48x48/places/gnome-fs-home.png=user-home.png
+s none share/icons/Neu/48x48/places/gnome-stock-trash.png=user-trash.png
+s none share/icons/Neu/48x48/places/desktop.png=user-desktop.png
+s none share/icons/Neu/48x48/places/gnome-mime-x-directory-smb-server.png=network-server.png
+s none share/icons/Neu/48x48/places/gnome-fs-server.png=network-server.png
+s none share/icons/Neu/48x48/places/gnome-fs-nfs.png=folder-remote.png
+s none share/icons/Neu/48x48/places/distributor-logo.png=start-here.png
+s none share/icons/Neu/48x48/places/network_local.png=network-workgroup.png
+s none share/icons/Neu/48x48/places/gtk-network.png=network-workgroup.png
+f none share/icons/Neu/48x48/places/network-server.png 0644 root bin
+s none share/icons/Neu/48x48/places/server.png=network-server.png
+s none share/icons/Neu/48x48/places/gnome-fs-directory.png=folder.png
+s none share/icons/Neu/48x48/places/inode-directory.png=folder.png
+s none share/icons/Neu/48x48/places/gnome-main-menu.png=start-here.png
+s none share/icons/Neu/48x48/places/novell-button.png=start-here.png
+s none share/icons/Neu/48x48/places/xfce-trash_empty.png=user-trash.png
+f none share/icons/Neu/48x48/places/start-here.png 0644 root bin
+s none share/icons/Neu/48x48/places/gnome-fs-desktop.png=user-desktop.png
+f none share/icons/Neu/48x48/places/folder-remote.png 0644 root bin
+d none share/icons/Neu/48x48/mimetypes 0755 root bin
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-font-linux-psf.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-image.png=image-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-cpio.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-x-vcard.png=x-office-address-book.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.stardivision.calc.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/package.png=package-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/text-x-script.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-zip.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/sound.png=audio-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-7z-compressed.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-gnumeric.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/unknown.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/folder_tar.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.writer.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/www.png=text-html.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-php.png=text-html.png
+f none share/icons/Neu/48x48/mimetypes/x-office-document.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-dvi.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/txt.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/html.png=text-html.png
+f none share/icons/Neu/48x48/mimetypes/x-office-spreadsheet.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/stock_certificate.png=application-certificate.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-secure.png=video-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/text-x-generic.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/application-vnd.openxmlformats-officedocument.wordprocessingml.document.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-compressed-tar.png=package-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/application-x-executable.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/exec.png=application-x-executable.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-lha.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-rpm.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/spreadsheet.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-tar.png=package-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/application-certificate.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-html.png=text-html.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-lhz.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-msword.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-x-zsh.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/deb.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-perl.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/application-vnd.ms-excel.sheet.macroEnabled.12.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-x-sh.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-archive.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-killustrator.png=image-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-pdf.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-xhtml+xml.png=text-html.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-video.png=video-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-ogg.png=audio-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-arj.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-tarz.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-x-csh.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-shockwave-flash.png=video-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-kspread.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.stardivision.writer.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-deb.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-rtf.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-gzip.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/stock_addressbook.png=x-office-address-book.png
+s none share/icons/Neu/48x48/mimetypes/gnome-package.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/rpm.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/tar.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/mime_ascii.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-bzip-compressed-tar.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-font-sunos-news.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-cpio-compressed.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-x-font-afm.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/stock_script.png=text-x-script.png
+f none share/icons/Neu/48x48/mimetypes/misc-cd-image.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/package_editors.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-wordperfect.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-jar.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-gzpostscript.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-executable.png=application-x-executable.png
+s none share/icons/Neu/48x48/mimetypes/gnome-fs-executable.png=application-x-executable.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-audio.png=audio-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-font-pcf.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/video.png=video-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.sun.xml.calc.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/package_wordprocessing.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-rar.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/font_type1.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/document.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-kword.png=x-office-document.png
+f none share/icons/Neu/48x48/mimetypes/empty.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/ascii.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-python-bytecode.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-tex.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-shellscript.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/zip.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-applix-spreadsheet.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-applix-word.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/font_bitmap.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.lotus-1-2-3.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/binary.png=application-x-executable.png
+f none share/icons/Neu/48x48/mimetypes/text-html.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/font_truetype.png=font-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/package-x-generic.png 0644 root bin
+f none share/icons/Neu/48x48/mimetypes/text-x-source.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/contents2.png=x-office-address-book.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-postscript.png=x-office-document.png
+f none share/icons/Neu/48x48/mimetypes/x-office-address-book.png 0644 root bin
+f none share/icons/Neu/48x48/mimetypes/font-x-generic.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-x-python.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png=x-office-spreadsheet.png
+f none share/icons/Neu/48x48/mimetypes/image-x-generic.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.ms-excel.png=x-office-spreadsheet.png
+s none share/icons/Neu/48x48/mimetypes/vcard.png=x-office-address-book.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-bzip.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/font.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/shellscript.png=text-x-script.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-font-afm.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/misc.png=text-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/video-x-generic.png 0644 root bin
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-compress.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-scribus.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-font-bdf.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/wordprocessing.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-text-vnd.wap.wml.png=text-html.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia-vbr.png=video-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/application-vnd.ms-word.document.macroEnabled.12.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-lzma.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-font-ttf.png=font-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.oasis.opendocument.text-web.png=text-html.png
+s none share/icons/Neu/48x48/mimetypes/image.png=image-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-stuffit.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/tgz.png=package-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-ms-dos-executable.png=application-x-executable.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-vnd.rn-realmedia.png=video-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/txt2.png=text-x-generic.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-abiword.png=x-office-document.png
+s none share/icons/Neu/48x48/mimetypes/gnome-mime-application-x-lzma-compressed-tar.png=package-x-generic.png
+f none share/icons/Neu/48x48/mimetypes/audio-x-generic.png 0644 root bin
+d none share/icons/Neu/48x48/emblems 0755 root bin
+s none share/icons/Neu/48x48/emblems/emblem-noread.png=emblem-unreadable.png
+f none share/icons/Neu/48x48/emblems/emblem-symbolic-link.png 0644 root bin
+f none share/icons/Neu/48x48/emblems/emblem-important.png 0644 root bin
+f none share/icons/Neu/48x48/emblems/emblem-web.png 0644 root bin
+s none share/icons/Neu/48x48/emblems/emblem-nowrite.png=emblem-readonly.png
+f none share/icons/Neu/48x48/emblems/emblem-system.png 0644 root bin
+f none share/icons/Neu/48x48/emblems/emblem-pictures.png 0644 root bin
+f none share/icons/Neu/48x48/emblems/emblem-unreadable.png 0644 root bin
+f none share/icons/Neu/48x48/emblems/emblem-readonly.png 0644 root bin
+d none share/icons/Neu/48x48/actions 0755 root bin
+s none share/icons/Neu/48x48/actions/gtk-print.png=document-print.png
+s none share/icons/Neu/48x48/actions/gtk-print-preview.png=document-print-preview.png
+s none share/icons/Neu/48x48/actions/stock_search-and-replace.png=edit-find-replace.png
+s none share/icons/Neu/48x48/actions/filenew.png=document-new.png
+f none share/icons/Neu/48x48/actions/mail-message-new.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_undo.png=edit-undo.png
+s none share/icons/Neu/48x48/actions/gnome-stock-mail-new.png=mail-message-new.png
+f none share/icons/Neu/48x48/actions/system-run.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-redo-ltr.png=edit-redo.png
+s none share/icons/Neu/48x48/actions/stock_text_bold.png=format-text-bold.png
+s none share/icons/Neu/48x48/actions/editclear.png=edit-clear.png
+s none share/icons/Neu/48x48/actions/gnome-stock-text-unindent.png=format-indent-less.png
+s none share/icons/Neu/48x48/actions/kfind.png=system-search.png
+f none share/icons/Neu/48x48/actions/format-indent-more.png 0644 root bin
+f none share/icons/Neu/48x48/actions/document-new.png 0644 root bin
+f none share/icons/Neu/48x48/actions/document-save-as.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-goto-last-ltr.png=go-last.png
+s none share/icons/Neu/48x48/actions/stock_right.png=go-next.png
+s none share/icons/Neu/48x48/actions/gtk-go-back-rtl.png=go-next.png
+s none share/icons/Neu/48x48/actions/stock_text_underlined.png=format-text-underline.png
+s none share/icons/Neu/48x48/actions/reload3.png=view-refresh.png
+s none share/icons/Neu/48x48/actions/redhat-home.png=go-home.png
+s none share/icons/Neu/48x48/actions/exit.png=system-log-out.png
+s none share/icons/Neu/48x48/actions/gtk-bold.png=format-text-bold.png
+f none share/icons/Neu/48x48/actions/format-justify-fill.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_home.png=go-home.png
+s none share/icons/Neu/48x48/actions/gtk-save-as.png=document-save-as.png
+s none share/icons/Neu/48x48/actions/stock_mail-reply-to-all.png=mail-reply-all.png
+f none share/icons/Neu/48x48/actions/system-log-out.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-goto-first-rtl.png=go-last.png
+f none share/icons/Neu/48x48/actions/system-shutdown.png 0644 root bin
+s none share/icons/Neu/48x48/actions/search.png=system-search.png
+s none share/icons/Neu/48x48/actions/stock_new-appointment.png=appointment-new.png
+s none share/icons/Neu/48x48/actions/gtk-underline.png=format-text-underline.png
+s none share/icons/Neu/48x48/actions/folder_new.png=folder-new.png
+s none share/icons/Neu/48x48/actions/gtk-clear.png=edit-clear.png
+s none share/icons/Neu/48x48/actions/editcut.png=edit-cut.png
+f none share/icons/Neu/48x48/actions/go-home.png 0644 root bin
+s none share/icons/Neu/48x48/actions/bookmarks_list_add.png=bookmark-new.png
+f none share/icons/Neu/48x48/actions/edit-find.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-refresh.png=view-refresh.png
+s none share/icons/Neu/48x48/actions/window_new.png=window-new.png
+s none share/icons/Neu/48x48/actions/stock_text_justify.png=format-justify-fill.png
+s none share/icons/Neu/48x48/actions/lock.png=system-lock-screen.png
+s none share/icons/Neu/48x48/actions/fileprint.png=document-print.png
+s none share/icons/Neu/48x48/actions/stock_mail-reply.png=mail-reply-sender.png
+s none share/icons/Neu/48x48/actions/gtk-unindent-rtl.png=format-indent-more.png
+f none share/icons/Neu/48x48/actions/list-remove.png 0644 root bin
+s none share/icons/Neu/48x48/actions/editdelete.png=edit-delete.png
+s none share/icons/Neu/48x48/actions/stock_stop.png=process-stop.png
+s none share/icons/Neu/48x48/actions/find.png=edit-find.png
+s none share/icons/Neu/48x48/actions/gtk-paste.png=edit-paste.png
+f none share/icons/Neu/48x48/actions/format-justify-right.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-remove.png=list-remove.png
+s none share/icons/Neu/48x48/actions/stock_text_center.png=format-justify-center.png
+s none share/icons/Neu/48x48/actions/gtk-unindent-ltr.png=format-indent-less.png
+f none share/icons/Neu/48x48/actions/go-next.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_bottom.png=go-bottom.png
+s none share/icons/Neu/48x48/actions/gtk-cancel.png=dialog-cancel.png
+s none share/icons/Neu/48x48/actions/stock_save-as.png=document-save-as.png
+s none share/icons/Neu/48x48/actions/stock_cut.png=edit-cut.png
+s none share/icons/Neu/48x48/actions/stock_about.png=help-about.png
+f none share/icons/Neu/48x48/actions/dialog-ok.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_copy.png=edit-copy.png
+s none share/icons/Neu/48x48/actions/stock_refresh.png=view-refresh.png
+s none share/icons/Neu/48x48/actions/filesaveas.png=document-save-as.png
+s none share/icons/Neu/48x48/actions/gnome-stock-mail-fwd.png=mail-forward.png
+s none share/icons/Neu/48x48/actions/gtk-justify-center.png=format-justify-center.png
+s none share/icons/Neu/48x48/actions/stock_redo.png=edit-redo.png
+f none share/icons/Neu/48x48/actions/go-jump.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_up.png=go-up.png
+s none share/icons/Neu/48x48/actions/stock_new-window.png=window-new.png
+s none share/icons/Neu/48x48/actions/filequickprint.png=document-print-preview.png
+s none share/icons/Neu/48x48/actions/add.png=list-add.png
+s none share/icons/Neu/48x48/actions/stock_text_italic.png=format-text-italic.png
+s none share/icons/Neu/48x48/actions/gtk-cut.png=edit-cut.png
+s none share/icons/Neu/48x48/actions/gtk-goto-first-ltr.png=go-first.png
+s none share/icons/Neu/48x48/actions/down.png=go-down.png
+s none share/icons/Neu/48x48/actions/stock_text_left.png=format-justify-left.png
+s none share/icons/Neu/48x48/actions/editpaste.png=edit-paste.png
+s none share/icons/Neu/48x48/actions/gtk-find.png=edit-find.png
+s none share/icons/Neu/48x48/actions/centrejust.png=format-justify-center.png
+f none share/icons/Neu/48x48/actions/mail-reply-sender.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_add-bookmark.png=bookmark-new.png
+f none share/icons/Neu/48x48/actions/document-save.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-goto-last-rtl.png=go-first.png
+s none share/icons/Neu/48x48/actions/gtk-go-up.png=go-up.png
+f none share/icons/Neu/48x48/actions/edit-delete.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-go-back-ltr.png=go-previous.png
+f none share/icons/Neu/48x48/actions/go-first.png 0644 root bin
+f none share/icons/Neu/48x48/actions/go-last.png 0644 root bin
+f none share/icons/Neu/48x48/actions/address-book-new.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-goto-bottom.png=go-bottom.png
+s none share/icons/Neu/48x48/actions/filefind.png=edit-find.png
+s none share/icons/Neu/48x48/actions/gtk-undo-ltr.png=edit-undo.png
+s none share/icons/Neu/48x48/actions/fileopen.png=document-open.png
+s none share/icons/Neu/48x48/actions/gtk-justify-left.png=format-justify-left.png
+s none share/icons/Neu/48x48/actions/gnome-lockscreen.png=system-lock-screen.png
+f none share/icons/Neu/48x48/actions/window-new.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_text_unindent.png=format-indent-less.png
+s none share/icons/Neu/48x48/actions/gtk-execute.png=system-run.png
+f none share/icons/Neu/48x48/actions/mail-reply-all.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_save.png=document-save.png
+f none share/icons/Neu/48x48/actions/go-bottom.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gnome-logout.png=system-log-out.png
+f none share/icons/Neu/48x48/actions/folder-new.png 0644 root bin
+f none share/icons/Neu/48x48/actions/appointment-new.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-open.png=document-open.png
+s none share/icons/Neu/48x48/actions/stock_top.png=go-top.png
+s none share/icons/Neu/48x48/actions/stock_last.png=go-last.png
+s none share/icons/Neu/48x48/actions/stock_new-bcard.png=contact-new.png
+f none share/icons/Neu/48x48/actions/document-print.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_print.png=document-print.png
+s none share/icons/Neu/48x48/actions/text_under.png=format-text-underline.png
+f none share/icons/Neu/48x48/actions/format-justify-center.png 0644 root bin
+f none share/icons/Neu/48x48/actions/dialog-close.png 0644 root bin
+f none share/icons/Neu/48x48/actions/edit-redo.png 0644 root bin
+f none share/icons/Neu/48x48/actions/format-justify-left.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gnome-stock-text-indent.png=format-indent-more.png
+s none share/icons/Neu/48x48/actions/gtk-italic.png=format-text-italic.png
+f none share/icons/Neu/48x48/actions/edit-copy.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-add.png=list-add.png
+f none share/icons/Neu/48x48/actions/document-properties.png 0644 root bin
+s none share/icons/Neu/48x48/actions/back.png=go-previous.png
+f none share/icons/Neu/48x48/actions/document-print-preview.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gohome.png=go-home.png
+s none share/icons/Neu/48x48/actions/stock_help-add-bookmark.png=bookmark-new.png
+s none share/icons/Neu/48x48/actions/xfce-system-lock.png=system-lock-screen.png
+f none share/icons/Neu/48x48/actions/edit-find-replace.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_mail-forward.png=mail-forward.png
+s none share/icons/Neu/48x48/actions/mail_reply.png=mail-reply-sender.png
+s none share/icons/Neu/48x48/actions/kfm_home.png=go-home.png
+f none share/icons/Neu/48x48/actions/edit-cut.png 0644 root bin
+s none share/icons/Neu/48x48/actions/bookmark_add.png=bookmark-new.png
+s none share/icons/Neu/48x48/actions/mail_forward.png=mail-forward.png
+s none share/icons/Neu/48x48/actions/gtk-go-forward-rtl.png=go-previous.png
+s none share/icons/Neu/48x48/actions/bottom.png=go-bottom.png
+s none share/icons/Neu/48x48/actions/stock_new-dir.png=folder-new.png
+f none share/icons/Neu/48x48/actions/go-up.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-indent-rtl.png=format-indent-less.png
+f none share/icons/Neu/48x48/actions/bookmark-new.png 0644 root bin
+f none share/icons/Neu/48x48/actions/format-indent-less.png 0644 root bin
+s none share/icons/Neu/48x48/actions/reload_page.png=view-refresh.png
+f none share/icons/Neu/48x48/actions/list-add.png 0644 root bin
+f none share/icons/Neu/48x48/actions/edit-paste.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-find-and-replace.png=edit-find-replace.png
+s none share/icons/Neu/48x48/actions/stock_properties.png=document-properties.png
+s none share/icons/Neu/48x48/actions/up.png=go-up.png
+s none share/icons/Neu/48x48/actions/gtk-home.png=go-home.png
+s none share/icons/Neu/48x48/actions/gnome-stock-mail-rpl.png=mail-reply-sender.png
+s none share/icons/Neu/48x48/actions/undo.png=edit-undo.png
+f none share/icons/Neu/48x48/actions/mail-send-receive.png 0644 root bin
+s none share/icons/Neu/48x48/actions/button_cancel.png=dialog-cancel.png
+f none share/icons/Neu/48x48/actions/dialog-cancel.png 0644 root bin
+s none share/icons/Neu/48x48/actions/top.png=go-top.png
+s none share/icons/Neu/48x48/actions/gtk-delete.png=edit-delete.png
+s none share/icons/Neu/48x48/actions/stock_text_indent.png=format-indent-more.png
+s none share/icons/Neu/48x48/actions/stock_print-preview.png=document-print-preview.png
+s none share/icons/Neu/48x48/actions/gtk-jump-to-ltr.png=go-jump.png
+s none share/icons/Neu/48x48/actions/reload.png=view-refresh.png
+s none share/icons/Neu/48x48/actions/stock_mail-send-receive.png=mail-send-receive.png
+s none share/icons/Neu/48x48/actions/stock_select-all.png=edit-select-all.png
+f none share/icons/Neu/48x48/actions/go-top.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_new-address-book.png=address-book-new.png
+s none share/icons/Neu/48x48/actions/gtk-justify-right.png=format-justify-right.png
+f none share/icons/Neu/48x48/actions/format-text-bold.png 0644 root bin
+s none share/icons/Neu/48x48/actions/appointment.png=appointment-new.png
+s none share/icons/Neu/48x48/actions/gnome-shutdown.png=system-shutdown.png
+s none share/icons/Neu/48x48/actions/stock_paste.png=edit-paste.png
+s none share/icons/Neu/48x48/actions/gtk-stop.png=process-stop.png
+f none share/icons/Neu/48x48/actions/mail-forward.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-jump-to-rtl.png=go-jump.png
+s none share/icons/Neu/48x48/actions/gtk-new.png=document-new.png
+f none share/icons/Neu/48x48/actions/edit-select-all.png 0644 root bin
+f none share/icons/Neu/48x48/actions/contact-new.png 0644 root bin
+f none share/icons/Neu/48x48/actions/process-stop.png 0644 root bin
+f none share/icons/Neu/48x48/actions/system-lock-screen.png 0644 root bin
+f none share/icons/Neu/48x48/actions/edit-clear.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-about.png=help-about.png
+s none share/icons/Neu/48x48/actions/gtk-copy.png=edit-copy.png
+s none share/icons/Neu/48x48/actions/stock_text_right.png=format-justify-right.png
+f none share/icons/Neu/48x48/actions/edit-undo.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_left.png=go-previous.png
+s none share/icons/Neu/48x48/actions/mail_replyall.png=mail-reply-all.png
+s none share/icons/Neu/48x48/actions/previous.png=go-previous.png
+s none share/icons/Neu/48x48/actions/start.png=go-first.png
+s none share/icons/Neu/48x48/actions/gtk-justify-fill.png=format-justify-fill.png
+s none share/icons/Neu/48x48/actions/remove.png=list-remove.png
+s none share/icons/Neu/48x48/actions/mail_new.png=mail-message-new.png
+s none share/icons/Neu/48x48/actions/gtk-go-down.png=go-down.png
+s none share/icons/Neu/48x48/actions/reload_all_tabs.png=view-refresh.png
+f none share/icons/Neu/48x48/actions/system-search.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_mail-compose.png=mail-message-new.png
+s none share/icons/Neu/48x48/actions/cancel.png=dialog-cancel.png
+s none share/icons/Neu/48x48/actions/gtk-properties.png=document-properties.png
+s none share/icons/Neu/48x48/actions/stop.png=process-stop.png
+s none share/icons/Neu/48x48/actions/gtk-goto-top.png=go-top.png
+s none share/icons/Neu/48x48/actions/text_bold.png=format-text-bold.png
+s none share/icons/Neu/48x48/actions/stock_file-properites.png=document-properties.png
+f none share/icons/Neu/48x48/actions/document-open.png 0644 root bin
+f none share/icons/Neu/48x48/actions/help-about.png 0644 root bin
+s none share/icons/Neu/48x48/actions/gtk-go-forward-ltr.png=go-next.png
+s none share/icons/Neu/48x48/actions/gnome-run.png=system-run.png
+f none share/icons/Neu/48x48/actions/format-text-italic.png 0644 root bin
+s none share/icons/Neu/48x48/actions/text_italic.png=format-text-italic.png
+s none share/icons/Neu/48x48/actions/stock_new-text.png=document-new.png
+s none share/icons/Neu/48x48/actions/gtk-indent-ltr.png=format-indent-more.png
+s none share/icons/Neu/48x48/actions/rightjust.png=format-justify-right.png
+f none share/icons/Neu/48x48/actions/go-down.png 0644 root bin
+s none share/icons/Neu/48x48/actions/finish.png=go-last.png
+f none share/icons/Neu/48x48/actions/view-refresh.png 0644 root bin
+s none share/icons/Neu/48x48/actions/stock_search.png=edit-find.png
+f none share/icons/Neu/48x48/actions/go-previous.png 0644 root bin
+s none share/icons/Neu/48x48/actions/leftjust.png=format-justify-left.png
+s none share/icons/Neu/48x48/actions/filesave.png=document-save.png
+s none share/icons/Neu/48x48/actions/redo.png=edit-redo.png
+f none share/icons/Neu/48x48/actions/format-text-underline.png 0644 root bin
+s none share/icons/Neu/48x48/actions/forward.png=go-next.png
+s none share/icons/Neu/48x48/actions/next.png=go-next.png
+s none share/icons/Neu/48x48/actions/gtk-save.png=document-save.png
+s none share/icons/Neu/48x48/actions/stock_delete.png=edit-delete.png
+s none share/icons/Neu/48x48/actions/stock_first.png=go-first.png
+s none share/icons/Neu/48x48/actions/stock_down.png=go-down.png
+s none share/icons/Neu/48x48/actions/gnome-searchtool.png=system-search.png
+s none share/icons/Neu/48x48/actions/gtk-select-all.png=edit-select-all.png
+s none share/icons/Neu/48x48/actions/editcopy.png=edit-copy.png
+d none share/icons/Neu/48x48/apps 0755 root bin
+f none share/icons/Neu/48x48/apps/preferences-desktop-accessibility.png 0644 root bin
+f none share/icons/Neu/48x48/apps/help-browser.png 0644 root bin
+f none share/icons/Neu/48x48/apps/system-users.png 0644 root bin
+s none share/icons/Neu/48x48/apps/redhat-filemanager.png=system-file-manager.png
+f none share/icons/Neu/48x48/apps/utilities-system-monitor.png 0644 root bin
+s none share/icons/Neu/48x48/apps/xfwm4.png=preferences-system-windows.png
+s none share/icons/Neu/48x48/apps/config-users.png=system-users.png
+s none share/icons/Neu/48x48/apps/kuser.png=system-users.png
+s none share/icons/Neu/48x48/apps/gnome-terminal.png=utilities-terminal.png
+s none share/icons/Neu/48x48/apps/konsole.png=utilities-terminal.png
+s none share/icons/Neu/48x48/apps/gnome-window-manager.png=preferences-system-windows.png
+f none share/icons/Neu/48x48/apps/internet-web-browser.png 0644 root bin
+f none share/icons/Neu/48x48/apps/preferences-system-network-proxy.png 0644 root bin
+s none share/icons/Neu/48x48/apps/proxy-config.png=preferences-system-network-proxy.png
+s none share/icons/Neu/48x48/apps/kscreensaver.png=preferences-desktop-screensaver.png
+s none share/icons/Neu/48x48/apps/xfce4-mixer.png=multimedia-volume-control.png
+s none share/icons/Neu/48x48/apps/gnome-help.png=help-browser.png
+s none share/icons/Neu/48x48/apps/kfm.png=system-file-manager.png
+f none share/icons/Neu/48x48/apps/preferences-desktop-font.png 0644 root bin
+s none share/icons/Neu/48x48/apps/proxy.png=preferences-system-network-proxy.png
+s none share/icons/Neu/48x48/apps/gnome-settings-background.png=preferences-desktop-wallpaper.png
+s none share/icons/Neu/48x48/apps/kcharselect.png=accessories-character-map.png
+f none share/icons/Neu/48x48/apps/graphics-svg-editor.png 0644 root bin
+s none share/icons/Neu/48x48/apps/gucharmap.png=accessories-character-map.png
+f none share/icons/Neu/48x48/apps/graphics-image-editor.png 0644 root bin
+s none share/icons/Neu/48x48/apps/krfb.png=preferences-desktop-remote-desktop.png
+s none share/icons/Neu/48x48/apps/zen-icon.png=system-software-update.png
+s none share/icons/Neu/48x48/apps/gnome-monitor.png=utilities-system-monitor.png
+f none share/icons/Neu/48x48/apps/preferences-desktop-remote-desktop.png 0644 root bin
+f none share/icons/Neu/48x48/apps/system-installer.png 0644 root bin
+s none share/icons/Neu/48x48/apps/wallpaper.png=preferences-desktop-wallpaper.png
+f none share/icons/Neu/48x48/apps/gimp.png 0644 root bin
+f none share/icons/Neu/48x48/apps/internet-mail.png 0644 root bin
+s none share/icons/Neu/48x48/apps/kcmkwm.png=preferences-system-windows.png
+s none share/icons/Neu/48x48/apps/susehelpcenter.png=help-browser.png
+f none share/icons/Neu/48x48/apps/epiphany-bookmarks.png 0644 root bin
+s none share/icons/Neu/48x48/apps/system-config-users.png=system-users.png
+s none share/icons/Neu/48x48/apps/xfce-filemanager.png=system-file-manager.png
+s none share/icons/Neu/48x48/apps/web-browser.png=internet-web-browser.png
+f none share/icons/Neu/48x48/apps/system-lock-screen.png 0644 root bin
+s none share/icons/Neu/48x48/apps/screensaver.png=preferences-desktop-screensaver.png
+f none share/icons/Neu/48x48/apps/multimedia-volume-control.png 0644 root bin
+s none share/icons/Neu/48x48/apps/khelpcenter.png=help-browser.png
+s none share/icons/Neu/48x48/apps/arts.png=multimedia-volume-control.png
+s none share/icons/Neu/48x48/apps/xscreensaver.png=preferences-desktop-screensaver.png
+s none share/icons/Neu/48x48/apps/redhat-email.png=internet-mail.png
+f none share/icons/Neu/48x48/apps/internet-group-chat.png 0644 root bin
+s none share/icons/Neu/48x48/apps/text-editor.png=accessories-text-editor.png
+s none share/icons/Neu/48x48/apps/background.png=preferences-desktop-wallpaper.png
+f none share/icons/Neu/48x48/apps/accessories-character-map.png 0644 root bin
+f none share/icons/Neu/48x48/apps/system-software-update.png 0644 root bin
+f none share/icons/Neu/48x48/apps/preferences-desktop-screensaver.png 0644 root bin
+s none share/icons/Neu/48x48/apps/fonts.png=preferences-desktop-font.png
+s none share/icons/Neu/48x48/apps/file-manager.png=system-file-manager.png
+f none share/icons/Neu/48x48/apps/preferences-user-information.png 0644 root bin
+s none share/icons/Neu/48x48/apps/volume-knob.png=multimedia-volume-control.png
+f none share/icons/Neu/48x48/apps/utilities-terminal.png 0644 root bin
+f none share/icons/Neu/48x48/apps/gaim.png 0644 root bin
+s none share/icons/Neu/48x48/apps/gnome-character-map.png=accessories-character-map.png
+s none share/icons/Neu/48x48/apps/mail_generic.png=internet-mail.png
+s none share/icons/Neu/48x48/apps/redhat-web-browser.png=internet-web-browser.png
+s none share/icons/Neu/48x48/apps/email.png=internet-mail.png
+s none share/icons/Neu/48x48/apps/kedit.png=accessories-text-editor.png
+s none share/icons/Neu/48x48/apps/accessibility-directory.png=preferences-desktop-accessibility.png
+f none share/icons/Neu/48x48/apps/preferences-system-windows.png 0644 root bin
+s none share/icons/Neu/48x48/apps/openterm.png=utilities-terminal.png
+s none share/icons/Neu/48x48/apps/update-manager.png=system-software-update.png
+s none share/icons/Neu/48x48/apps/gnome-settings-font.png=preferences-desktop-font.png
+s none share/icons/Neu/48x48/apps/terminal.png=utilities-terminal.png
+s none share/icons/Neu/48x48/apps/multimedia.png=multimedia-volume-control.png
+f none share/icons/Neu/48x48/apps/evolution.png 0644 root bin
+s none share/icons/Neu/48x48/apps/gnome-settings-accessibility-technologies.png=preferences-desktop-accessibility.png
+s none share/icons/Neu/48x48/apps/kwin.png=preferences-system-windows.png
+f none share/icons/Neu/48x48/apps/graphics-image-viewer.png 0644 root bin
+f none share/icons/Neu/48x48/apps/system-file-manager.png 0644 root bin
+f none share/icons/Neu/48x48/apps/accessories-text-editor.png 0644 root bin
+f none share/icons/Neu/48x48/apps/preferences-desktop-assistive-technology.png 0644 root bin
+s none share/icons/Neu/48x48/apps/kcmsound.png=multimedia-volume-control.png
+s none share/icons/Neu/48x48/apps/gnome-remote-desktop.png=preferences-desktop-remote-desktop.png
+s none share/icons/Neu/48x48/apps/browser.png=internet-web-browser.png
+s none share/icons/Neu/48x48/apps/xfce4-session.png=preferences-system-session.png
+s none share/icons/Neu/48x48/apps/gnome-session.png=preferences-system-session.png
+s none share/icons/Neu/48x48/apps/ksysguard.png=utilities-system-monitor.png
+s none share/icons/Neu/48x48/apps/access.png=preferences-desktop-accessibility.png
+f none share/icons/Neu/48x48/apps/preferences-system-session.png 0644 root bin
+s none share/icons/Neu/48x48/apps/stock_proxy.png=preferences-system-network-proxy.png
+s none share/icons/Neu/48x48/apps/xfce-mail.png=internet-mail.png
+s none share/icons/Neu/48x48/apps/xfce-terminal.png=utilities-terminal.png
+f none share/icons/Neu/48x48/apps/sound-juicer.png 0644 root bin
+s none share/icons/Neu/48x48/apps/xfce4-backdrop.png=preferences-desktop-wallpaper.png
+s none share/icons/Neu/48x48/apps/gnome-mixer.png=multimedia-volume-control.png
+f none share/icons/Neu/48x48/apps/preferences-desktop-wallpaper.png 0644 root bin
+d none share/icons/Neu/24x24 0755 root bin
+d none share/icons/Neu/24x24/places 0755 root bin
+s none share/icons/Neu/24x24/places/gtk-directory.png=folder.png
+s none share/icons/Neu/24x24/places/redhat-network-server.png=network-server.png
+s none share/icons/Neu/24x24/places/emptytrash.png=user-trash.png
+s none share/icons/Neu/24x24/places/gnome-fs-nfs.png=folder-remote.png
+f none share/icons/Neu/24x24/places/user-trash.png 0644 root bin
+s none share/icons/Neu/24x24/places/gnome-fs-network.png=network-workgroup.png
+f none share/icons/Neu/24x24/places/folder-saved-search.png 0644 root bin
+f none share/icons/Neu/24x24/places/network-server.png 0644 root bin
+s none share/icons/Neu/24x24/places/desktop.png=user-desktop.png
+s none share/icons/Neu/24x24/places/gnome-fs-trash-empty.png=user-trash.png
+s none share/icons/Neu/24x24/places/gnome-fs-home.png=user-home.png
+s none share/icons/Neu/24x24/places/gtk-network.png=network-workgroup.png
+s none share/icons/Neu/24x24/places/server.png=network-server.png
+s none share/icons/Neu/24x24/places/gnome-mime-x-directory-smb-server.png=network-server.png
+s none share/icons/Neu/24x24/places/novell-button.png=start-here.png
+f none share/icons/Neu/24x24/places/start-here.png 0644 root bin
+s none share/icons/Neu/24x24/places/folder_home.png=user-home.png
+s none share/icons/Neu/24x24/places/gnome-mime-x-directory-smb-workgroup.png=network-workgroup.png
+s none share/icons/Neu/24x24/places/gnome-fs-ssh.png=folder-remote.png
+s none share/icons/Neu/24x24/places/gnome-fs-directory.png=folder.png
+s none share/icons/Neu/24x24/places/stock_folder.png=folder.png
+s none share/icons/Neu/24x24/places/distributor-logo.png=start-here.png
+f none share/icons/Neu/24x24/places/folder-remote.png 0644 root bin
+s none share/icons/Neu/24x24/places/gnome-mime-x-directory-nfs-server.png=network-server.png
+s none share/icons/Neu/24x24/places/gnome-stock-trash.png=user-trash.png
+s none share/icons/Neu/24x24/places/gnome-fs-desktop.png=user-desktop.png
+s none share/icons/Neu/24x24/places/gnome-fs-server.png=network-server.png
+f none share/icons/Neu/24x24/places/network-workgroup.png 0644 root bin
+s none share/icons/Neu/24x24/places/trashcan_empty.png=user-trash.png
+f none share/icons/Neu/24x24/places/folder.png 0644 root bin
+s none share/icons/Neu/24x24/places/network.png=folder-remote.png
+f none share/icons/Neu/24x24/places/user-desktop.png 0644 root bin
+s none share/icons/Neu/24x24/places/gnome-fs-smb.png=folder-remote.png
+s none share/icons/Neu/24x24/places/gnome-fs-ftp.png=folder-remote.png
+s none share/icons/Neu/24x24/places/network_local.png=network-workgroup.png
+s none share/icons/Neu/24x24/places/xfce-trash_empty.png=user-trash.png
+s none share/icons/Neu/24x24/places/gnome-mime-x-directory-smb-share.png=folder-remote.png
+s none share/icons/Neu/24x24/places/gnome-main-menu.png=start-here.png
+s none share/icons/Neu/24x24/places/inode-directory.png=folder.png
+f none share/icons/Neu/24x24/places/user-home.png 0644 root bin
+s none share/icons/Neu/24x24/places/gnome-fs-share.png=folder-remote.png
+s none share/icons/Neu/24x24/places/application-x-gnome-saved-search.png=folder-saved-search.png
+d none share/icons/Neu/24x24/status 0755 root bin
+s none share/icons/Neu/24x24/status/gnome-netstatus-idle.png=network-idle.png
+s none share/icons/Neu/24x24/status/stock_dialog-question.png=dialog-question.png
+s none share/icons/Neu/24x24/status/gnome-fs-loading-icon.png=image-loading.png
+s none share/icons/Neu/24x24/status/edittrash.png=user-trash-full.png
+s none share/icons/Neu/24x24/status/trashcan_full.png=user-trash-full.png
+s none share/icons/Neu/24x24/status/stock_trash_full.png=user-trash-full.png
+f none share/icons/Neu/24x24/status/network-receive.png 0644 root bin
+f none share/icons/Neu/24x24/status/user-trash-full.png 0644 root bin
+s none share/icons/Neu/24x24/status/gnome-netstatus-rx.png=network-receive.png
+s none share/icons/Neu/24x24/status/stock_open.png=folder-open.png
+s none share/icons/Neu/24x24/status/folder_open.png=folder-open.png
+f none share/icons/Neu/24x24/status/network-idle.png 0644 root bin
+s none share/icons/Neu/24x24/status/error.png=dialog-error.png
+s none share/icons/Neu/24x24/status/nm-device-wired.png=network-idle.png
+f none share/icons/Neu/24x24/status/audio-volume-muted.png 0644 root bin
+f none share/icons/Neu/24x24/status/battery-caution.png 0644 root bin
+s none share/icons/Neu/24x24/status/messagebox_warning.png=dialog-warning.png
+s none share/icons/Neu/24x24/status/stock_volume-max.png=audio-volume-high.png
+s none share/icons/Neu/24x24/status/messagebox_critical.png=dialog-error.png
+s none share/icons/Neu/24x24/status/nm-adhoc.png=network-idle.png
+s none share/icons/Neu/24x24/status/stock_volume-med.png=audio-volume-medium.png
+s none share/icons/Neu/24x24/status/stock_dialog-info.png=dialog-information.png
+f none share/icons/Neu/24x24/status/audio-volume-zero.png 0644 root bin
+f none share/icons/Neu/24x24/status/dialog-question.png 0644 root bin
+s none share/icons/Neu/24x24/status/important.png=dialog-warning.png
+s none share/icons/Neu/24x24/status/nm-device-wireless.png=network-idle.png
+s none share/icons/Neu/24x24/status/connect_no.png=network-offline.png
+s none share/icons/Neu/24x24/status/gnome-fs-trash-full.png=user-trash-full.png
+f none share/icons/Neu/24x24/status/network-offline.png 0644 root bin
+f none share/icons/Neu/24x24/status/network-error.png 0644 root bin
+f none share/icons/Neu/24x24/status/image-missing.png 0644 root bin
+s none share/icons/Neu/24x24/status/gtk-dialog-authentication.png=dialog-password.png
+f none share/icons/Neu/24x24/status/network-transmit-receive.png 0644 root bin
+s none share/icons/Neu/24x24/status/connect_creating.png=network-transmit-receive.png
+s none share/icons/Neu/24x24/status/gnome-stock-trash-full.png=user-trash-full.png
+s none share/icons/Neu/24x24/status/gnome-netstatus-error.png=network-error.png
+f none share/icons/Neu/24x24/status/network-transmit.png 0644 root bin
+s none share/icons/Neu/24x24/status/xfce-trash_full.png=user-trash-full.png
+f none share/icons/Neu/24x24/status/folder-visiting.png 0644 root bin
+s none share/icons/Neu/24x24/status/nm-no-connection.png=network-offline.png
+s none share/icons/Neu/24x24/status/gtk-dialog-question.png=dialog-question.png
+f none share/icons/Neu/24x24/status/dialog-warning.png 0644 root bin
+s none share/icons/Neu/24x24/status/gtk-missing-image.png=image-missing.png
+s none share/icons/Neu/24x24/status/gtk-dialog-info.png=dialog-information.png
+s none share/icons/Neu/24x24/status/stock_dialog-warning.png=dialog-warning.png
+s none share/icons/Neu/24x24/status/stock_volume-mute.png=audio-volume-muted.png
+f none share/icons/Neu/24x24/status/audio-volume-low.png 0644 root bin
+s none share/icons/Neu/24x24/status/gnome-netstatus-tx.png=network-transmit.png
+s none share/icons/Neu/24x24/status/gnome-fs-directory-accept.png=folder-drag-accept.png
+s none share/icons/Neu/24x24/status/stock_dialog-error.png=dialog-error.png
+f none share/icons/Neu/24x24/status/image-loading.png 0644 root bin
+s none share/icons/Neu/24x24/status/gnome-fs-directory-visiting.png=folder-visiting.png
+f none share/icons/Neu/24x24/status/audio-volume-medium.png 0644 root bin
+s none share/icons/Neu/24x24/status/connect_established.png=network-idle.png
+s none share/icons/Neu/24x24/status/stock_volume.png=audio-volume-high.png
+s none share/icons/Neu/24x24/status/stock_volume-0.png=audio-volume-low.png
+s none share/icons/Neu/24x24/status/gtk-dialog-warning.png=dialog-warning.png
+s none share/icons/Neu/24x24/status/gnome-netstatus-txrx.png=network-transmit-receive.png
+f none share/icons/Neu/24x24/status/folder-drag-accept.png 0644 root bin
+s none share/icons/Neu/24x24/status/info.png=dialog-information.png
+s none share/icons/Neu/24x24/status/gnome-netstatus-disconn.png=network-offline.png
+f none share/icons/Neu/24x24/status/audio-volume-high.png 0644 root bin
+f none share/icons/Neu/24x24/status/printer-error.png 0644 root bin
+f none share/icons/Neu/24x24/status/dialog-information.png 0644 root bin
+f none share/icons/Neu/24x24/status/dialog-password.png 0644 root bin
+s none share/icons/Neu/24x24/status/messagebox_info.png=dialog-information.png
+f none share/icons/Neu/24x24/status/dialog-error.png 0644 root bin
+s none share/icons/Neu/24x24/status/gtk-dialog-error.png=dialog-error.png
+s none share/icons/Neu/24x24/status/stock_volume-min.png=audio-volume-low.png
+f none share/icons/Neu/24x24/status/folder-open.png 0644 root bin
+d none share/icons/Neu/24x24/categories 0755 root bin
+s none share/icons/Neu/24x24/categories/redhat-system_settings.png=preferences-system.png
+f none share/icons/Neu/24x24/categories/applications-games.png 0644 root bin
+s none share/icons/Neu/24x24/categories/package_system.png=applications-system.png
+s none share/icons/Neu/24x24/categories/xfce-system-settings.png=preferences-system.png
+s none share/icons/Neu/24x24/categories/package_office.png=applications-office.png
+f none share/icons/Neu/24x24/categories/applications-multimedia.png 0644 root bin
+s none share/icons/Neu/24x24/categories/xfce-games.png=applications-games.png
+s none share/icons/Neu/24x24/categories/package_network.png=applications-internet.png
+f none share/icons/Neu/24x24/categories/applications-accessories.png 0644 root bin
+s none share/icons/Neu/24x24/categories/xfce-utils.png=applications-accessories.png
+s none share/icons/Neu/24x24/categories/gnome-control-center.png=preferences-desktop.png
+s none share/icons/Neu/24x24/categories/redhat-office.png=applications-office.png
+s none share/icons/Neu/24x24/categories/redhat-games.png=applications-games.png
+s none share/icons/Neu/24x24/categories/redhat-graphics.png=applications-graphics.png
+f none share/icons/Neu/24x24/categories/applications-system.png 0644 root bin
+f none share/icons/Neu/24x24/categories/applications-office.png 0644 root bin
+s none share/icons/Neu/24x24/categories/redhat-internet.png=applications-internet.png
+s none share/icons/Neu/24x24/categories/xfce-graphics.png=applications-graphics.png
+s none share/icons/Neu/24x24/categories/xfce-internet.png=applications-internet.png
+s none share/icons/Neu/24x24/categories/gnome-other.png=applications-other.png
+s none share/icons/Neu/24x24/categories/gnome-multimedia.png=applications-multimedia.png
+s none share/icons/Neu/24x24/categories/redhat-preferences.png=preferences-desktop.png
+s none share/icons/Neu/24x24/categories/gnome-util.png=applications-accessories.png
+f none share/icons/Neu/24x24/categories/applications-graphics.png 0644 root bin
+f none share/icons/Neu/24x24/categories/applications-internet.png 0644 root bin
+f none share/icons/Neu/24x24/categories/preferences-system.png 0644 root bin
+f none share/icons/Neu/24x24/categories/preferences-desktop.png 0644 root bin
+s none share/icons/Neu/24x24/categories/gnome-graphics.png=applications-graphics.png
+s none share/icons/Neu/24x24/categories/redhat-accessories.png=applications-accessories.png
+s none share/icons/Neu/24x24/categories/gnome-globe.png=applications-internet.png
+f none share/icons/Neu/24x24/categories/applications-development.png 0644 root bin
+s none share/icons/Neu/24x24/categories/gnome-applications.png=applications-office.png
+s none share/icons/Neu/24x24/categories/package_development.png=applications-development.png
+s none share/icons/Neu/24x24/categories/gtk-preferences.png=preferences-desktop.png
+s none share/icons/Neu/24x24/categories/input_devices_settings.png=preferences-desktop-peripherals.png
+s none share/icons/Neu/24x24/categories/xfce-office.png=applications-office.png
+s none share/icons/Neu/24x24/categories/gnome-settings.png=preferences-desktop.png
+s none share/icons/Neu/24x24/categories/kcontrol.png=preferences-desktop.png
+s none share/icons/Neu/24x24/categories/package_utilities.png=applications-accessories.png
+s none share/icons/Neu/24x24/categories/redhat-programming.png=applications-development.png
+f none share/icons/Neu/24x24/categories/applications-other.png 0644 root bin
+s none share/icons/Neu/24x24/categories/redhat-system_tools.png=applications-system.png
+s none share/icons/Neu/24x24/categories/stock_internet.png=applications-internet.png
+s none share/icons/Neu/24x24/categories/redhat-sound_video.png=applications-multimedia.png
+s none share/icons/Neu/24x24/categories/package_settings.png=preferences-system.png
+f none share/icons/Neu/24x24/categories/preferences-desktop-peripherals.png 0644 root bin
+s none share/icons/Neu/24x24/categories/xfce-multimedia.png=applications-multimedia.png
+s none share/icons/Neu/24x24/categories/gnome-joystick.png=applications-games.png
+s none share/icons/Neu/24x24/categories/gnome-system.png=applications-system.png
+s none share/icons/Neu/24x24/categories/package_multimedia.png=applications-multimedia.png
+s none share/icons/Neu/24x24/categories/xfce4-settings.png=preferences-desktop.png
+s none share/icons/Neu/24x24/categories/package_graphics.png=applications-graphics.png
+s none share/icons/Neu/24x24/categories/package_games.png=applications-games.png
+s none share/icons/Neu/24x24/categories/gnome-devel.png=applications-development.png
+d none share/icons/Neu/24x24/apps 0755 root bin
+s none share/icons/Neu/24x24/apps/xfce-terminal.png=utilities-terminal.png
+s none share/icons/Neu/24x24/apps/system-config-users.png=system-users.png
+s none share/icons/Neu/24x24/apps/kfm.png=system-file-manager.png
+s none share/icons/Neu/24x24/apps/kwin.png=preferences-system-windows.png
+s none share/icons/Neu/24x24/apps/browser.png=internet-web-browser.png
+s none share/icons/Neu/24x24/apps/wallpaper.png=preferences-desktop-wallpaper.png
+s none share/icons/Neu/24x24/apps/proxy.png=preferences-system-network-proxy.png
+s none share/icons/Neu/24x24/apps/xfce4-session.png=preferences-system-session.png
+s none share/icons/Neu/24x24/apps/gnome-session.png=preferences-system-session.png
+s none share/icons/Neu/24x24/apps/kcmsound.png=multimedia-volume-control.png
+s none share/icons/Neu/24x24/apps/gnome-mixer.png=multimedia-volume-control.png
+s none share/icons/Neu/24x24/apps/xfwm4.png=preferences-system-windows.png
+s none share/icons/Neu/24x24/apps/stock_proxy.png=preferences-system-network-proxy.png
+s none share/icons/Neu/24x24/apps/kuser.png=system-users.png
+s none share/icons/Neu/24x24/apps/proxy-config.png=preferences-system-network-proxy.png
+s none share/icons/Neu/24x24/apps/kscreensaver.png=preferences-desktop-screensaver.png
+f none share/icons/Neu/24x24/apps/help-browser.png 0644 root bin
+f none share/icons/Neu/24x24/apps/system-users.png 0644 root bin
+f none share/icons/Neu/24x24/apps/graphics-svg-editor.png 0644 root bin
+s none share/icons/Neu/24x24/apps/terminal.png=utilities-terminal.png
+s none share/icons/Neu/24x24/apps/gucharmap.png=accessories-character-map.png
+f none share/icons/Neu/24x24/apps/preferences-system-network-proxy.png 0644 root bin
+s none share/icons/Neu/24x24/apps/config-users.png=system-users.png
+s none share/icons/Neu/24x24/apps/background.png=preferences-desktop-wallpaper.png
+s none share/icons/Neu/24x24/apps/gnome-terminal.png=utilities-terminal.png
+s none share/icons/Neu/24x24/apps/openterm.png=utilities-terminal.png
+f none share/icons/Neu/24x24/apps/preferences-user-information.png 0644 root bin
+f none share/icons/Neu/24x24/apps/utilities-terminal.png 0644 root bin
+s none share/icons/Neu/24x24/apps/redhat-web-browser.png=internet-web-browser.png
+s none share/icons/Neu/24x24/apps/text-editor.png=accessories-text-editor.png
+s none share/icons/Neu/24x24/apps/arts.png=multimedia-volume-control.png
+f none share/icons/Neu/24x24/apps/system-software-update.png 0644 root bin
+s none share/icons/Neu/24x24/apps/screensaver.png=preferences-desktop-screensaver.png
+s none share/icons/Neu/24x24/apps/khelpcenter.png=help-browser.png
+s none share/icons/Neu/24x24/apps/susehelpcenter.png=help-browser.png
+f none share/icons/Neu/24x24/apps/internet-web-browser.png 0644 root bin
+s none share/icons/Neu/24x24/apps/multimedia.png=multimedia-volume-control.png
+s none share/icons/Neu/24x24/apps/kcmkwm.png=preferences-system-windows.png
+f none share/icons/Neu/24x24/apps/gaim.png 0644 root bin
+f none share/icons/Neu/24x24/apps/multimedia-volume-control.png 0644 root bin
+f none share/icons/Neu/24x24/apps/preferences-desktop-assistive-technology.png 0644 root bin
+f none share/icons/Neu/24x24/apps/accessories-character-map.png 0644 root bin
+s none share/icons/Neu/24x24/apps/volume-knob.png=multimedia-volume-control.png
+s none share/icons/Neu/24x24/apps/gnome-window-manager.png=preferences-system-windows.png
+s none share/icons/Neu/24x24/apps/xfce-mail.png=internet-mail.png
+s none share/icons/Neu/24x24/apps/mail_generic.png=internet-mail.png
+s none share/icons/Neu/24x24/apps/fonts.png=preferences-desktop-font.png
+s none share/icons/Neu/24x24/apps/gnome-settings-accessibility-technologies.png=preferences-desktop-accessibility.png
+s none share/icons/Neu/24x24/apps/krfb.png=preferences-desktop-remote-desktop.png
+s none share/icons/Neu/24x24/apps/gnome-help.png=help-browser.png
+s none share/icons/Neu/24x24/apps/update-manager.png=system-software-update.png
+f none share/icons/Neu/24x24/apps/utilities-system-monitor.png 0644 root bin
+s none share/icons/Neu/24x24/apps/accessibility-directory.png=preferences-desktop-accessibility.png
+s none share/icons/Neu/24x24/apps/kedit.png=accessories-text-editor.png
+s none share/icons/Neu/24x24/apps/email.png=internet-mail.png
+s none share/icons/Neu/24x24/apps/file-manager.png=system-file-manager.png
+f none share/icons/Neu/24x24/apps/system-installer.png 0644 root bin
+s none share/icons/Neu/24x24/apps/ksysguard.png=utilities-system-monitor.png
+f none share/icons/Neu/24x24/apps/epiphany-bookmarks.png 0644 root bin
+f none share/icons/Neu/24x24/apps/internet-mail.png 0644 root bin
+s none share/icons/Neu/24x24/apps/kcharselect.png=accessories-character-map.png
+f none share/icons/Neu/24x24/apps/preferences-desktop-font.png 0644 root bin
+f none share/icons/Neu/24x24/apps/preferences-system-windows.png 0644 root bin
+s none share/icons/Neu/24x24/apps/web-browser.png=internet-web-browser.png
+f none share/icons/Neu/24x24/apps/system-file-manager.png 0644 root bin
+f none share/icons/Neu/24x24/apps/accessories-archiver.png 0644 root bin
+s none share/icons/Neu/24x24/apps/zen-icon.png=system-software-update.png
+s none share/icons/Neu/24x24/apps/gnome-monitor.png=utilities-system-monitor.png
+s none share/icons/Neu/24x24/apps/gnome-settings-background.png=preferences-desktop-wallpaper.png
+f none share/icons/Neu/24x24/apps/preferences-desktop-wallpaper.png 0644 root bin
+s none share/icons/Neu/24x24/apps/gnome-remote-desktop.png=preferences-desktop-remote-desktop.png
+s none share/icons/Neu/24x24/apps/gnome-settings-font.png=preferences-desktop-font.png
+s none share/icons/Neu/24x24/apps/xscreensaver.png=preferences-desktop-screensaver.png
+f none share/icons/Neu/24x24/apps/gimp.png 0644 root bin
+s none share/icons/Neu/24x24/apps/xfce-filemanager.png=system-file-manager.png
+f none share/icons/Neu/24x24/apps/evolution.png 0644 root bin
+s none share/icons/Neu/24x24/apps/redhat-email.png=internet-mail.png
+s none share/icons/Neu/24x24/apps/gnome-character-map.png=accessories-character-map.png
+s none share/icons/Neu/24x24/apps/xfce4-mixer.png=multimedia-volume-control.png
+f none share/icons/Neu/24x24/apps/sound-juicer.png 0644 root bin
+s none share/icons/Neu/24x24/apps/xfce4-backdrop.png=preferences-desktop-wallpaper.png
+f none share/icons/Neu/24x24/apps/graphics-image-viewer.png 0644 root bin
+f none share/icons/Neu/24x24/apps/internet-news-reader.png 0644 root bin
+f none share/icons/Neu/24x24/apps/preferences-desktop-screensaver.png 0644 root bin
+s none share/icons/Neu/24x24/apps/access.png=preferences-desktop-accessibility.png
+s none share/icons/Neu/24x24/apps/konsole.png=utilities-terminal.png
+f none share/icons/Neu/24x24/apps/preferences-desktop-accessibility.png 0644 root bin
+f none share/icons/Neu/24x24/apps/preferences-system-session.png 0644 root bin
+s none share/icons/Neu/24x24/apps/redhat-filemanager.png=system-file-manager.png
+f none share/icons/Neu/24x24/apps/accessories-text-editor.png 0644 root bin
+f none share/icons/Neu/24x24/apps/preferences-desktop-remote-desktop.png 0644 root bin
+f none share/icons/Neu/24x24/apps/internet-group-chat.png 0644 root bin
+d none share/icons/Neu/24x24/actions 0755 root bin
+s none share/icons/Neu/24x24/actions/gnome-logout.png=system-log-out.png
+f none share/icons/Neu/24x24/actions/edit-redo.png 0644 root bin
+s none share/icons/Neu/24x24/actions/finish.png=go-last.png
+f none share/icons/Neu/24x24/actions/go-next.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-underline.png=format-text-underline.png
+f none share/icons/Neu/24x24/actions/edit-copy.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-find.png=edit-find.png
+f none share/icons/Neu/24x24/actions/go-first.png 0644 root bin
+s none share/icons/Neu/24x24/actions/up.png=go-up.png
+f none share/icons/Neu/24x24/actions/go-up.png 0644 root bin
+s none share/icons/Neu/24x24/actions/filefind.png=edit-find.png
+s none share/icons/Neu/24x24/actions/gtk-unindent-ltr.png=format-indent-less.png
+s none share/icons/Neu/24x24/actions/gnome-stock-text-unindent.png=format-indent-less.png
+s none share/icons/Neu/24x24/actions/undo.png=edit-undo.png
+s none share/icons/Neu/24x24/actions/stock_print-preview.png=document-print-preview.png
+f none share/icons/Neu/24x24/actions/go-jump.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-go-forward-ltr.png=go-next.png
+f none share/icons/Neu/24x24/actions/mail-reply-sender.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-goto-last-rtl.png=go-first.png
+s none share/icons/Neu/24x24/actions/add.png=list-add.png
+s none share/icons/Neu/24x24/actions/gtk-undo-ltr.png=edit-undo.png
+s none share/icons/Neu/24x24/actions/stock_about.png=help-about.png
+s none share/icons/Neu/24x24/actions/fileopen.png=document-open.png
+s none share/icons/Neu/24x24/actions/gtk-cut.png=edit-cut.png
+s none share/icons/Neu/24x24/actions/gtk-open.png=document-open.png
+f none share/icons/Neu/24x24/actions/mail-reply-all.png 0644 root bin
+f none share/icons/Neu/24x24/actions/format-text-italic.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_left.png=go-previous.png
+s none share/icons/Neu/24x24/actions/stock_new-window.png=window-new.png
+s none share/icons/Neu/24x24/actions/stock_new-appointment.png=appointment-new.png
+f none share/icons/Neu/24x24/actions/edit-clear.png 0644 root bin
+f none share/icons/Neu/24x24/actions/edit-delete.png 0644 root bin
+f none share/icons/Neu/24x24/actions/format-justify-left.png 0644 root bin
+f none share/icons/Neu/24x24/actions/document-properties.png 0644 root bin
+s none share/icons/Neu/24x24/actions/remove.png=list-remove.png
+f none share/icons/Neu/24x24/actions/system-lock-screen.png 0644 root bin
+f none share/icons/Neu/24x24/actions/go-last.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_text_underlined.png=format-text-underline.png
+s none share/icons/Neu/24x24/actions/stock_mail-compose.png=mail-message-new.png
+s none share/icons/Neu/24x24/actions/stock_text_italic.png=format-text-italic.png
+f none share/icons/Neu/24x24/actions/help-about.png 0644 root bin
+f none share/icons/Neu/24x24/actions/address-book-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/cancel.png=dialog-cancel.png
+s none share/icons/Neu/24x24/actions/reload_all_tabs.png=view-refresh.png
+s none share/icons/Neu/24x24/actions/back.png=go-previous.png
+s none share/icons/Neu/24x24/actions/stock_bottom.png=go-bottom.png
+s none share/icons/Neu/24x24/actions/gtk-jump-to-rtl.png=go-jump.png
+s none share/icons/Neu/24x24/actions/stock_text_center.png=format-justify-center.png
+s none share/icons/Neu/24x24/actions/gnome-lockscreen.png=system-lock-screen.png
+s none share/icons/Neu/24x24/actions/stock_down.png=go-down.png
+s none share/icons/Neu/24x24/actions/gtk-justify-left.png=format-justify-left.png
+f none share/icons/Neu/24x24/actions/edit-select-all.png 0644 root bin
+s none share/icons/Neu/24x24/actions/filequickprint.png=document-print-preview.png
+s none share/icons/Neu/24x24/actions/stock_up.png=go-up.png
+s none share/icons/Neu/24x24/actions/gtk-execute.png=system-run.png
+s none share/icons/Neu/24x24/actions/start.png=go-first.png
+s none share/icons/Neu/24x24/actions/stock_mail-reply-to-all.png=mail-reply-all.png
+s none share/icons/Neu/24x24/actions/gtk-jump-to-ltr.png=go-jump.png
+f none share/icons/Neu/24x24/actions/mail-message-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-bold.png=format-text-bold.png
+s none share/icons/Neu/24x24/actions/reload.png=view-refresh.png
+s none share/icons/Neu/24x24/actions/filenew.png=document-new.png
+s none share/icons/Neu/24x24/actions/gtk-italic.png=format-text-italic.png
+s none share/icons/Neu/24x24/actions/stop.png=process-stop.png
+s none share/icons/Neu/24x24/actions/text_under.png=format-text-underline.png
+f none share/icons/Neu/24x24/actions/go-top.png 0644 root bin
+f none share/icons/Neu/24x24/actions/system-log-out.png 0644 root bin
+f none share/icons/Neu/24x24/actions/document-save.png 0644 root bin
+f none share/icons/Neu/24x24/actions/edit-undo.png 0644 root bin
+s none share/icons/Neu/24x24/actions/next.png=go-next.png
+f none share/icons/Neu/24x24/actions/document-save-as.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-about.png=help-about.png
+s none share/icons/Neu/24x24/actions/stock_search-and-replace.png=edit-find-replace.png
+s none share/icons/Neu/24x24/actions/reload3.png=view-refresh.png
+s none share/icons/Neu/24x24/actions/redhat-home.png=go-home.png
+s none share/icons/Neu/24x24/actions/stock_right.png=go-next.png
+s none share/icons/Neu/24x24/actions/mail_reply.png=mail-reply-sender.png
+s none share/icons/Neu/24x24/actions/redo.png=edit-redo.png
+s none share/icons/Neu/24x24/actions/gtk-go-forward-rtl.png=go-previous.png
+s none share/icons/Neu/24x24/actions/gtk-goto-last-ltr.png=go-last.png
+s none share/icons/Neu/24x24/actions/text_bold.png=format-text-bold.png
+s none share/icons/Neu/24x24/actions/gnome-run.png=system-run.png
+s none share/icons/Neu/24x24/actions/stock_mail-forward.png=mail-forward.png
+s none share/icons/Neu/24x24/actions/stock_refresh.png=view-refresh.png
+s none share/icons/Neu/24x24/actions/bottom.png=go-bottom.png
+f none share/icons/Neu/24x24/actions/format-indent-less.png 0644 root bin
+f none share/icons/Neu/24x24/actions/edit-paste.png 0644 root bin
+s none share/icons/Neu/24x24/actions/rightjust.png=format-justify-right.png
+s none share/icons/Neu/24x24/actions/gtk-save-as.png=document-save-as.png
+f none share/icons/Neu/24x24/actions/document-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-redo-ltr.png=edit-redo.png
+s none share/icons/Neu/24x24/actions/gtk-refresh.png=view-refresh.png
+s none share/icons/Neu/24x24/actions/stock_new-bcard.png=contact-new.png
+s none share/icons/Neu/24x24/actions/gtk-print-preview.png=document-print-preview.png
+s none share/icons/Neu/24x24/actions/stock_save-as.png=document-save-as.png
+s none share/icons/Neu/24x24/actions/gtk-find-and-replace.png=edit-find-replace.png
+s none share/icons/Neu/24x24/actions/gohome.png=go-home.png
+s none share/icons/Neu/24x24/actions/gnome-stock-mail-rpl.png=mail-reply-sender.png
+f none share/icons/Neu/24x24/actions/go-home.png 0644 root bin
+f none share/icons/Neu/24x24/actions/list-remove.png 0644 root bin
+s none share/icons/Neu/24x24/actions/editcut.png=edit-cut.png
+s none share/icons/Neu/24x24/actions/gtk-unindent-rtl.png=format-indent-more.png
+s none share/icons/Neu/24x24/actions/stock_mail-reply.png=mail-reply-sender.png
+s none share/icons/Neu/24x24/actions/gtk-delete.png=edit-delete.png
+s none share/icons/Neu/24x24/actions/stock_delete.png=edit-delete.png
+s none share/icons/Neu/24x24/actions/gtk-print.png=document-print.png
+s none share/icons/Neu/24x24/actions/gtk-properties.png=document-properties.png
+s none share/icons/Neu/24x24/actions/gtk-cancel.png=dialog-cancel.png
+s none share/icons/Neu/24x24/actions/kfind.png=system-search.png
+s none share/icons/Neu/24x24/actions/stock_paste.png=edit-paste.png
+f none share/icons/Neu/24x24/actions/format-justify-fill.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_new-text.png=document-new.png
+f none share/icons/Neu/24x24/actions/contact-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_search.png=edit-find.png
+f none share/icons/Neu/24x24/actions/view-refresh.png 0644 root bin
+f none share/icons/Neu/24x24/actions/appointment-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-remove.png=list-remove.png
+f none share/icons/Neu/24x24/actions/document-print-preview.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-indent-ltr.png=format-indent-more.png
+s none share/icons/Neu/24x24/actions/gtk-new.png=document-new.png
+s none share/icons/Neu/24x24/actions/gnome-stock-mail-fwd.png=mail-forward.png
+s none share/icons/Neu/24x24/actions/stock_stop.png=process-stop.png
+s none share/icons/Neu/24x24/actions/leftjust.png=format-justify-left.png
+s none share/icons/Neu/24x24/actions/stock_add-bookmark.png=bookmark-new.png
+s none share/icons/Neu/24x24/actions/editclear.png=edit-clear.png
+s none share/icons/Neu/24x24/actions/lock.png=system-lock-screen.png
+s none share/icons/Neu/24x24/actions/filesave.png=document-save.png
+s none share/icons/Neu/24x24/actions/gtk-justify-fill.png=format-justify-fill.png
+s none share/icons/Neu/24x24/actions/stock_text_right.png=format-justify-right.png
+s none share/icons/Neu/24x24/actions/stock_text_left.png=format-justify-left.png
+s none share/icons/Neu/24x24/actions/stock_redo.png=edit-redo.png
+f none share/icons/Neu/24x24/actions/format-justify-right.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-goto-bottom.png=go-bottom.png
+s none share/icons/Neu/24x24/actions/gtk-goto-top.png=go-top.png
+s none share/icons/Neu/24x24/actions/filesaveas.png=document-save-as.png
+s none share/icons/Neu/24x24/actions/editcopy.png=edit-copy.png
+s none share/icons/Neu/24x24/actions/stock_copy.png=edit-copy.png
+s none share/icons/Neu/24x24/actions/gtk-select-all.png=edit-select-all.png
+s none share/icons/Neu/24x24/actions/button_cancel.png=dialog-cancel.png
+f none share/icons/Neu/24x24/actions/dialog-cancel.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-save.png=document-save.png
+s none share/icons/Neu/24x24/actions/gtk-go-back-ltr.png=go-previous.png
+s none share/icons/Neu/24x24/actions/gtk-go-down.png=go-down.png
+s none share/icons/Neu/24x24/actions/gtk-justify-center.png=format-justify-center.png
+f none share/icons/Neu/24x24/actions/go-down.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-stop.png=process-stop.png
+s none share/icons/Neu/24x24/actions/gtk-goto-first-ltr.png=go-first.png
+s none share/icons/Neu/24x24/actions/stock_new-dir.png=folder-new.png
+s none share/icons/Neu/24x24/actions/centrejust.png=format-justify-center.png
+s none share/icons/Neu/24x24/actions/text_italic.png=format-text-italic.png
+s none share/icons/Neu/24x24/actions/previous.png=go-previous.png
+s none share/icons/Neu/24x24/actions/stock_last.png=go-last.png
+f none share/icons/Neu/24x24/actions/format-justify-center.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-clear.png=edit-clear.png
+f none share/icons/Neu/24x24/actions/folder-new.png 0644 root bin
+f none share/icons/Neu/24x24/actions/go-previous.png 0644 root bin
+f none share/icons/Neu/24x24/actions/process-stop.png 0644 root bin
+s none share/icons/Neu/24x24/actions/exit.png=system-log-out.png
+s none share/icons/Neu/24x24/actions/gtk-copy.png=edit-copy.png
+s none share/icons/Neu/24x24/actions/stock_save.png=document-save.png
+f none share/icons/Neu/24x24/actions/edit-find.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_new-address-book.png=address-book-new.png
+s none share/icons/Neu/24x24/actions/gnome-searchtool.png=system-search.png
+s none share/icons/Neu/24x24/actions/fileprint.png=document-print.png
+s none share/icons/Neu/24x24/actions/stock_first.png=go-first.png
+f none share/icons/Neu/24x24/actions/window-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/mail_new.png=mail-message-new.png
+s none share/icons/Neu/24x24/actions/forward.png=go-next.png
+f none share/icons/Neu/24x24/actions/mail-forward.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-paste.png=edit-paste.png
+s none share/icons/Neu/24x24/actions/bookmarks_list_add.png=bookmark-new.png
+s none share/icons/Neu/24x24/actions/gtk-home.png=go-home.png
+f none share/icons/Neu/24x24/actions/list-add.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_print.png=document-print.png
+f none share/icons/Neu/24x24/actions/format-text-underline.png 0644 root bin
+f none share/icons/Neu/24x24/actions/system-run.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_text_indent.png=format-indent-more.png
+s none share/icons/Neu/24x24/actions/gtk-justify-right.png=format-justify-right.png
+s none share/icons/Neu/24x24/actions/stock_undo.png=edit-undo.png
+s none share/icons/Neu/24x24/actions/xfce-system-lock.png=system-lock-screen.png
+s none share/icons/Neu/24x24/actions/stock_text_justify.png=format-justify-fill.png
+s none share/icons/Neu/24x24/actions/gtk-add.png=list-add.png
+s none share/icons/Neu/24x24/actions/stock_mail-send-receive.png=mail-send-receive.png
+f none share/icons/Neu/24x24/actions/dialog-ok.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_file-properites.png=document-properties.png
+f none share/icons/Neu/24x24/actions/mail-send-receive.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_cut.png=edit-cut.png
+s none share/icons/Neu/24x24/actions/gnome-stock-mail-new.png=mail-message-new.png
+f none share/icons/Neu/24x24/actions/document-open.png 0644 root bin
+f none share/icons/Neu/24x24/actions/system-shutdown.png 0644 root bin
+s none share/icons/Neu/24x24/actions/gtk-goto-first-rtl.png=go-last.png
+s none share/icons/Neu/24x24/actions/gnome-shutdown.png=system-shutdown.png
+s none share/icons/Neu/24x24/actions/stock_text_unindent.png=format-indent-less.png
+s none share/icons/Neu/24x24/actions/search.png=system-search.png
+f none share/icons/Neu/24x24/actions/document-print.png 0644 root bin
+s none share/icons/Neu/24x24/actions/mail_replyall.png=mail-reply-all.png
+s none share/icons/Neu/24x24/actions/editpaste.png=edit-paste.png
+s none share/icons/Neu/24x24/actions/gtk-go-up.png=go-up.png
+f none share/icons/Neu/24x24/actions/bookmark-new.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_text_bold.png=format-text-bold.png
+s none share/icons/Neu/24x24/actions/reload_page.png=view-refresh.png
+s none share/icons/Neu/24x24/actions/top.png=go-top.png
+s none share/icons/Neu/24x24/actions/stock_properties.png=document-properties.png
+s none share/icons/Neu/24x24/actions/stock_help-add-bookmark.png=bookmark-new.png
+f none share/icons/Neu/24x24/actions/format-indent-more.png 0644 root bin
+f none share/icons/Neu/24x24/actions/edit-find-replace.png 0644 root bin
+s none share/icons/Neu/24x24/actions/bookmark_add.png=bookmark-new.png
+f none share/icons/Neu/24x24/actions/system-search.png 0644 root bin
+s none share/icons/Neu/24x24/actions/stock_home.png=go-home.png
+s none share/icons/Neu/24x24/actions/find.png=edit-find.png
+s none share/icons/Neu/24x24/actions/gtk-go-back-rtl.png=go-next.png
+s none share/icons/Neu/24x24/actions/gnome-stock-text-indent.png=format-indent-more.png
+s none share/icons/Neu/24x24/actions/mail_forward.png=mail-forward.png
+s none share/icons/Neu/24x24/actions/editdelete.png=edit-delete.png
+s none share/icons/Neu/24x24/actions/down.png=go-down.png
+f none share/icons/Neu/24x24/actions/edit-cut.png 0644 root bin
+s none share/icons/Neu/24x24/actions/window_new.png=window-new.png
+s none share/icons/Neu/24x24/actions/kfm_home.png=go-home.png

@@ 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