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

theferret at users.sourceforge.net theferret at users.sourceforge.net
Mon Jun 28 05:38:10 CEST 2010


Revision: 10355
          http://gar.svn.sourceforge.net/gar/?rev=10355&view=rev
Author:   theferret
Date:     2010-06-28 03:38:10 +0000 (Mon, 28 Jun 2010)

Log Message:
-----------
gedit: new

Added Paths:
-----------
    csw/mgar/pkg/gedit/
    csw/mgar/pkg/gedit/Makefile
    csw/mgar/pkg/gedit/trunk/
    csw/mgar/pkg/gedit/trunk/Makefile
    csw/mgar/pkg/gedit/trunk/copyright
    csw/mgar/pkg/gedit/trunk/depend
    csw/mgar/pkg/gedit/trunk/patchfile.preconf
    csw/mgar/pkg/gedit/trunk/pkginfo
    csw/mgar/pkg/gedit/trunk/prototype

Added: csw/mgar/pkg/gedit/Makefile
===================================================================
--- csw/mgar/pkg/gedit/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gedit/Makefile	2010-06-28 03:38:10 UTC (rev 10355)
@@ -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/gedit/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work
cswstage
build


Added: csw/mgar/pkg/gedit/trunk/Makefile
===================================================================
--- csw/mgar/pkg/gedit/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gedit/trunk/Makefile	2010-06-28 03:38:10 UTC (rev 10355)
@@ -0,0 +1,172 @@
+# 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 "?="
+
+# Customize your prototype file(s) as needed
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# for stupid intltool...
+PATH := /opt/csw/gnu:$(PATH)
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= gedit-2.30.3.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/gedit/2.30
+
+ARCH := $(shell /bin/uname -p)
+
+LDFLAGS_COMMON :=
+
+SRCDIR= build/*
+
+# DO NOT specify the arch-64 stuff such as -m64 here.
+# the individual targets will do that.
+
+CFLAGS_COMMON   ?= -mt -xnorunpath -xO3
+CXXFLAGS_COMMON ?= -mt -norunpath  -xO3
+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 --enable-static=no
+
+
+
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
+
+
+all:	$(ARCH)-32
+#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) $@
+
+
+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
+
+
+
+build/.$(ARCH)-32.done:	$(ARCH)-32
+
+# 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 $@
+
+
+# See note about LDFLAGS and ORIGIN, higher up	
+build/.build-$(ARCH)-32.done:
+	@echo handling $@ target
+	LD_OPTIONS='-R$$ORIGIN' $(MAKE) -C $(SRCDIR) $(MFLAGS)
+	touch $@
+
+
+
+## NOTE: This is a DESTRUCTIVE target build!!
+## 'stagepkg'  will destroy any prior "cswstage" directory!!!
+## So, we remove all 64bit milestones
+build/.stage-$(ARCH)-32.done:
+	@echo Handling stage of $(ARCH)-32
+	(cd $(SRCDIR) ; MAKE=gmake stagepkg)
+	(cd $(SRCDIR); cp COPYING cswstage/.)
+	@rm -f build/.*64.done
+	touch $@
+
+
+
+#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
+
+# manual targets
+pkgproto:
+	cat $(SRCDIR)/cswstage/prototype | sed 's/root root$$/root bin/'>prototype
+	@echo Dont forget to add a COPYING line !!

Added: csw/mgar/pkg/gedit/trunk/copyright
===================================================================
--- csw/mgar/pkg/gedit/trunk/copyright	                        (rev 0)
+++ csw/mgar/pkg/gedit/trunk/copyright	2010-06-28 03:38:10 UTC (rev 10355)
@@ -0,0 +1,2 @@
+Please see /opt/csw/share/gtk-doc/html/gedit/COPYING for full license text
+(GPL v2)

Added: csw/mgar/pkg/gedit/trunk/depend
===================================================================
--- csw/mgar/pkg/gedit/trunk/depend	                        (rev 0)
+++ csw/mgar/pkg/gedit/trunk/depend	2010-06-28 03:38:10 UTC (rev 10355)
@@ -0,0 +1,13 @@
+P	CSWenchant
+P	CSWfconfig
+P	CSWftype2
+P	CSWgconf2
+P	CSWggettextrt
+P	CSWglib2
+P	CSWgtk2
+P	CSWgtksourceview
+P	CSWlibatk
+P	CSWlibcairo
+P	CSWlibxml2
+P	CSWpango
+P	CSWiso-codes

Added: csw/mgar/pkg/gedit/trunk/patchfile.preconf
===================================================================
--- csw/mgar/pkg/gedit/trunk/patchfile.preconf	                        (rev 0)
+++ csw/mgar/pkg/gedit/trunk/patchfile.preconf	2010-06-28 03:38:10 UTC (rev 10355)
@@ -0,0 +1,14 @@
+--- tests/document-saver.c.orig	2010-06-26 23:08:00.628354438 +0200
++++ tests/document-saver.c	2010-06-26 23:10:15.048708870 +0200
+@@ -27,6 +27,11 @@
+ #include <string.h>
+ #include <sys/stat.h>
+ 
++/* linux/bsd has it. others such as Solaris, do not */
++#ifndef ACCESSPERMS
++#define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO) 
++#endif
++
+ #define DEFAULT_LOCAL_URI "/tmp/gedit-document-saver-test.txt"
+ #define DEFAULT_REMOTE_URI "sftp://localhost/tmp/gedit-document-saver-test.txt"
+ #define DEFAULT_CONTENT "hello world!"

Added: csw/mgar/pkg/gedit/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/gedit/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gedit/trunk/pkginfo	2010-06-28 03:38:10 UTC (rev 10355)
@@ -0,0 +1,8 @@
+PKG=CSWgedit
+NAME=gedit - The official GNOME text editor
+VERSION=2.30.3,REV=2010.06.26
+CATEGORY=application
+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/gedit/trunk

Added: csw/mgar/pkg/gedit/trunk/prototype
===================================================================
--- csw/mgar/pkg/gedit/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/gedit/trunk/prototype	2010-06-28 03:38:10 UTC (rev 10355)
@@ -0,0 +1,698 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/gedit-2.20 0755 root bin
+d none /opt/csw/include/gedit-2.20/gedit 0755 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-status-combo-box.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-progress-message-area.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-message-type.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-file-chooser-dialog.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-encodings.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-encodings-combo-box.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-window.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-app.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-debug.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-prefs-manager-app.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-view.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-commands.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-message-bus.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-plugin.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-document.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-panel.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-tab.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-notebook.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-utils.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-message.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-help.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-prefs-manager.h 0644 root bin
+f none /opt/csw/include/gedit-2.20/gedit/gedit-statusbar.h 0644 root bin
+d none /opt/csw/etc 0755 root bin
+d none /opt/csw/etc/gconf 0755 root bin
+d none /opt/csw/etc/gconf/schemas 0755 root bin
+f none /opt/csw/etc/gconf/schemas/gedit.schemas 0644 root bin
+f none /opt/csw/etc/gconf/schemas/gedit-file-browser.schemas 0644 root bin
+d none /opt/csw/bin 0755 root bin
+s none /opt/csw/bin/gnome-text-editor=gedit
+f none /opt/csw/bin/gedit 0755 root bin
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/gtk-doc 0755 root bin
+d none /opt/csw/share/gtk-doc/html 0755 root bin
+d none /opt/csw/share/gtk-doc/html/gedit 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/COPYING=COPYING 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/index.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-encodings-option-menu.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/index.sgml 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-statusbar.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-document.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/style.css 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/ch01.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-tab.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-GeditPrintJob.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-app.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit.devhelp 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-GeditMessageType.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/left.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-progress-message-area.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-file-chooser-dialog.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/up.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/GeditPlugin.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-prefs-manager-app.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-print-job-preview.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-panel.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-encodings.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-notebook.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-convert.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-help.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-view.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/home.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-utils.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-debug.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/right.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/GeditMessage.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/GeditMessageBus.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-window.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit.devhelp2 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-metadata-manager.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/gedit/gedit-gedit-prefs-manager.html 0644 root bin
+d none /opt/csw/share/applications 0755 root bin
+f none /opt/csw/share/applications/gedit.desktop 0644 root bin
+d none /opt/csw/share/omf 0755 root bin
+d none /opt/csw/share/omf/gedit 0755 root bin
+f none /opt/csw/share/omf/gedit/gedit-uk.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-ru.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-ja.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-de.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-ko.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-fi.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-el.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-fr.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-bg.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-pt_BR.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-ca.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-cs.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-th.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-zh_CN.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-it.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-sv.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-zh_HK.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-hu.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-es.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-zh_TW.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-da.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-ar.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-oc.omf 0644 root bin
+f none /opt/csw/share/omf/gedit/gedit-C.omf 0644 root bin
+d none /opt/csw/share/gnome 0755 root bin
+d none /opt/csw/share/gnome/help 0755 root bin
+d none /opt/csw/share/gnome/help/gedit 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/it 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/it/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/it/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/it/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/it/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/it/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/it/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/it/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/it/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+f none /opt/csw/share/gnome/help/gedit/it/figures/gedit_window.png 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ca 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/ca/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/ca/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ca/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/ca/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/ca/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+f none /opt/csw/share/gnome/help/gedit/ca/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/ca/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/ca/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/ca/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+d none /opt/csw/share/gnome/help/gedit/da 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/da/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/da/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/da/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/da/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/da/figures/gedit_window.png=../../C/figures/gedit_window.png
+s none /opt/csw/share/gnome/help/gedit/da/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/da/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/da/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/da/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/pt_BR 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/pt_BR/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/pt_BR/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/pt_BR/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/pt_BR/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/pt_BR/figures/gedit_window.png=../../C/figures/gedit_window.png
+s none /opt/csw/share/gnome/help/gedit/pt_BR/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/pt_BR/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+f none /opt/csw/share/gnome/help/gedit/pt_BR/gedit.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/pt_BR/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/oc 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/oc/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/oc/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/oc/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/oc/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/oc/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/oc/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/oc/figures/gedit_window.png=../../C/figures/gedit_window.png
+f none /opt/csw/share/gnome/help/gedit/oc/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/oc/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/th 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/th/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/th/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/th/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/th/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/th/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/th/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/th/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/th/figures/gedit_window.png=../../C/figures/gedit_window.png
+s none /opt/csw/share/gnome/help/gedit/th/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+d none /opt/csw/share/gnome/help/gedit/el 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/el/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/el/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/el/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/el/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/el/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/el/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/el/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/el/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/el/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+d none /opt/csw/share/gnome/help/gedit/uk 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/uk/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/uk/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/uk/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/uk/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/uk/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/uk/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/uk/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/uk/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/uk/figures/gedit_window.png 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ja 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/ja/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ja/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/ja/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+f none /opt/csw/share/gnome/help/gedit/ja/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/ja/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/ja/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/ja/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/ja/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+f none /opt/csw/share/gnome/help/gedit/ja/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/de 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/de/gedit.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/de/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/de/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/de/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/de/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/de/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/de/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+f none /opt/csw/share/gnome/help/gedit/de/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/de/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+d none /opt/csw/share/gnome/help/gedit/ru 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/ru/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/ru/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ru/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/ru/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/ru/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/ru/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/ru/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/ru/figures/gedit_window.png=../../C/figures/gedit_window.png
+s none /opt/csw/share/gnome/help/gedit/ru/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+d none /opt/csw/share/gnome/help/gedit/ko 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/ko/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/ko/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/ko/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+f none /opt/csw/share/gnome/help/gedit/ko/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/ko/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/ko/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/ko/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+f none /opt/csw/share/gnome/help/gedit/ko/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/ko/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/sv 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/sv/gedit.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/sv/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/sv/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/sv/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/sv/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/sv/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+f none /opt/csw/share/gnome/help/gedit/sv/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/sv/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/sv/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+d none /opt/csw/share/gnome/help/gedit/fi 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/fi/figures 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/fi/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/fi/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/fi/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/fi/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/fi/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/fi/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+f none /opt/csw/share/gnome/help/gedit/fi/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/fi/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/zh_TW 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/zh_TW/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/zh_TW/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/zh_TW/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/zh_TW/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+f none /opt/csw/share/gnome/help/gedit/zh_TW/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/zh_TW/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/zh_TW/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/zh_TW/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/zh_TW/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/zh_HK 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/zh_HK/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/zh_HK/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/zh_HK/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/zh_HK/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/zh_HK/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/zh_HK/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/zh_HK/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+f none /opt/csw/share/gnome/help/gedit/zh_HK/gedit.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/zh_HK/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ar 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/ar/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/ar/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/ar/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/ar/figures/gedit_window.png=../../C/figures/gedit_window.png
+s none /opt/csw/share/gnome/help/gedit/ar/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/ar/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/ar/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/ar/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/ar/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+d none /opt/csw/share/gnome/help/gedit/cs 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/cs/figures 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/cs/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/cs/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/cs/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/cs/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/cs/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/cs/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/cs/gedit.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/cs/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/zh_CN 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/zh_CN/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/zh_CN/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/zh_CN/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/zh_CN/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/zh_CN/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/zh_CN/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/zh_CN/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+f none /opt/csw/share/gnome/help/gedit/zh_CN/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/zh_CN/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+d none /opt/csw/share/gnome/help/gedit/fr 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/fr/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/fr/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/fr/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/fr/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+f none /opt/csw/share/gnome/help/gedit/fr/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/fr/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+f none /opt/csw/share/gnome/help/gedit/fr/figures/gedit_recent_files_menu_icon.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/fr/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/fr/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/bg 0755 root bin
+d none /opt/csw/share/gnome/help/gedit/bg/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/bg/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+f none /opt/csw/share/gnome/help/gedit/bg/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/bg/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/bg/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/bg/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/bg/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+f none /opt/csw/share/gnome/help/gedit/bg/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/bg/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/hu 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/hu/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/hu/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/hu/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/hu/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+s none /opt/csw/share/gnome/help/gedit/hu/figures/gedit_window.png=../../C/figures/gedit_window.png
+s none /opt/csw/share/gnome/help/gedit/hu/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/hu/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/hu/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+s none /opt/csw/share/gnome/help/gedit/hu/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+d none /opt/csw/share/gnome/help/gedit/C 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/C/legal.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/C/gedit.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/C/figures 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/C/figures/gedit_window.png 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/C/figures/gedit_format_italic.png 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/C/figures/gedit_recent_files_menu_icon.png 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/C/figures/gedit_format_strikethrough.png 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/C/figures/gedit_format_underline.png 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/C/figures/gedit_format_bold.png 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/es 0755 root bin
+f none /opt/csw/share/gnome/help/gedit/es/gedit.xml 0644 root bin
+f none /opt/csw/share/gnome/help/gedit/es/legal.xml 0644 root bin
+d none /opt/csw/share/gnome/help/gedit/es/figures 0755 root bin
+s none /opt/csw/share/gnome/help/gedit/es/figures/gedit_format_strikethrough.png=../../C/figures/gedit_format_strikethrough.png
+s none /opt/csw/share/gnome/help/gedit/es/figures/gedit_format_italic.png=../../C/figures/gedit_format_italic.png
+s none /opt/csw/share/gnome/help/gedit/es/figures/gedit_format_underline.png=../../C/figures/gedit_format_underline.png
+s none /opt/csw/share/gnome/help/gedit/es/figures/gedit_recent_files_menu_icon.png=../../C/figures/gedit_recent_files_menu_icon.png
+f none /opt/csw/share/gnome/help/gedit/es/figures/gedit_window.png 0644 root bin
+s none /opt/csw/share/gnome/help/gedit/es/figures/gedit_format_bold.png=../../C/figures/gedit_format_bold.png
+d none /opt/csw/share/gedit-2 0755 root bin
+d none /opt/csw/share/gedit-2/ui 0755 root bin
+f none /opt/csw/share/gedit-2/ui/gedit-preferences-dialog.ui 0644 root bin
+f none /opt/csw/share/gedit-2/ui/gedit-ui.xml 0644 root bin
+f none /opt/csw/share/gedit-2/ui/gedit-search-dialog.ui 0644 root bin
+f none /opt/csw/share/gedit-2/ui/gedit-print-preferences.ui 0644 root bin
+f none /opt/csw/share/gedit-2/ui/gedit-encodings-dialog.ui 0644 root bin
+d none /opt/csw/share/gedit-2/plugins 0755 root bin
+d none /opt/csw/share/gedit-2/plugins/time 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/time/gedit-time-dialog.ui 0644 root bin
+f none /opt/csw/share/gedit-2/plugins/time/gedit-time-setup-dialog.ui 0644 root bin
+d none /opt/csw/share/gedit-2/plugins/sort 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/sort/sort.ui 0644 root bin
+d none /opt/csw/share/gedit-2/plugins/docinfo 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/docinfo/docinfo.ui 0644 root bin
+d none /opt/csw/share/gedit-2/plugins/taglist 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/taglist/HTML.tags.gz 0644 root bin
+f none /opt/csw/share/gedit-2/plugins/taglist/Latex.tags.gz 0644 root bin
+f none /opt/csw/share/gedit-2/plugins/taglist/XUL.tags.gz 0644 root bin
+f none /opt/csw/share/gedit-2/plugins/taglist/XSLT.tags.gz 0644 root bin
+d none /opt/csw/share/gedit-2/plugins/spell 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/spell/spell-checker.ui 0644 root bin
+f none /opt/csw/share/gedit-2/plugins/spell/languages-dialog.ui 0644 root bin
+d none /opt/csw/share/gedit-2/plugins/filebrowser 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/filebrowser/gedit-file-browser-widget-ui.xml 0644 root bin
+d none /opt/csw/share/gedit-2/plugins/changecase 0755 root bin
+d none /opt/csw/share/gedit-2/plugins/modelines 0755 root bin
+f none /opt/csw/share/gedit-2/plugins/modelines/language-mappings 0644 root bin
+d none /opt/csw/share/gedit-2/icons 0755 root bin
+f none /opt/csw/share/gedit-2/icons/gedit-plugin.png 0644 root bin
+d none /opt/csw/share/gedit-2/logo 0755 root bin
+f none /opt/csw/share/gedit-2/logo/gedit-logo.png 0644 root bin
+d none /opt/csw/share/locale 0755 root bin
+d none /opt/csw/share/locale/lv 0755 root bin
+d none /opt/csw/share/locale/lv/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/lv/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/br 0755 root bin
+d none /opt/csw/share/locale/br/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/br/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/eu 0755 root bin
+d none /opt/csw/share/locale/eu/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/eu/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/pt 0755 root bin
+d none /opt/csw/share/locale/pt/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ko 0755 root bin
+d none /opt/csw/share/locale/ko/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/az 0755 root bin
+d none /opt/csw/share/locale/az/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/az/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/hy 0755 root bin
+d none /opt/csw/share/locale/hy/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/hy/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/te 0755 root bin
+d none /opt/csw/share/locale/te/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/te/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/sv 0755 root bin
+d none /opt/csw/share/locale/sv/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/fi 0755 root bin
+d none /opt/csw/share/locale/fi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ca at valencia 0755 root bin
+d none /opt/csw/share/locale/ca at valencia/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ca at valencia/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/en_GB 0755 root bin
+d none /opt/csw/share/locale/en_GB/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/en_GB/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/mk 0755 root bin
+d none /opt/csw/share/locale/mk/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mk/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/id 0755 root bin
+d none /opt/csw/share/locale/id/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/id/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ru 0755 root bin
+d none /opt/csw/share/locale/ru/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/nn 0755 root bin
+d none /opt/csw/share/locale/nn/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nn/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/uk 0755 root bin
+d none /opt/csw/share/locale/uk/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/uk/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ja 0755 root bin
+d none /opt/csw/share/locale/ja/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/de 0755 root bin
+d none /opt/csw/share/locale/de/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ml 0755 root bin
+d none /opt/csw/share/locale/ml/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ml/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/vi 0755 root bin
+d none /opt/csw/share/locale/vi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/mr 0755 root bin
+d none /opt/csw/share/locale/mr/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mr/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/sq 0755 root bin
+d none /opt/csw/share/locale/sq/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sq/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/th 0755 root bin
+d none /opt/csw/share/locale/th/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/th/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ps 0755 root bin
+d none /opt/csw/share/locale/ps/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ps/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/el 0755 root bin
+d none /opt/csw/share/locale/el/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/el/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/la 0755 root bin
+d none /opt/csw/share/locale/la/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/la/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/be 0755 root bin
+d none /opt/csw/share/locale/be/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/be/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/am 0755 root bin
+d none /opt/csw/share/locale/am/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/am/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/oc 0755 root bin
+d none /opt/csw/share/locale/oc/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/oc/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/tr 0755 root bin
+d none /opt/csw/share/locale/tr/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/tr/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/as 0755 root bin
+d none /opt/csw/share/locale/as/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/as/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/sk 0755 root bin
+d none /opt/csw/share/locale/sk/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/da 0755 root bin
+d none /opt/csw/share/locale/da/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/be at latin 0755 root bin
+d none /opt/csw/share/locale/be at latin/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/be at latin/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/sr at latin 0755 root bin
+d none /opt/csw/share/locale/sr at latin/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sr at latin/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/nds 0755 root bin
+d none /opt/csw/share/locale/nds/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nds/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/is 0755 root bin
+d none /opt/csw/share/locale/is/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/is/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ro 0755 root bin
+d none /opt/csw/share/locale/ro/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ro/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/it 0755 root bin
+d none /opt/csw/share/locale/it/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ca 0755 root bin
+d none /opt/csw/share/locale/ca/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ta 0755 root bin
+d none /opt/csw/share/locale/ta/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ta/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/sl 0755 root bin
+d none /opt/csw/share/locale/sl/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sl/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/tk 0755 root bin
+d none /opt/csw/share/locale/tk/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/tk/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/sr 0755 root bin
+d none /opt/csw/share/locale/sr/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sr/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/hi 0755 root bin
+d none /opt/csw/share/locale/hi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/hi/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/pt_BR 0755 root bin
+d none /opt/csw/share/locale/pt_BR/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ku 0755 root bin
+d none /opt/csw/share/locale/ku/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ku/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/crh 0755 root bin
+d none /opt/csw/share/locale/crh/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/crh/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ka 0755 root bin
+d none /opt/csw/share/locale/ka/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ka/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/eo 0755 root bin
+d none /opt/csw/share/locale/eo/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/eo/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/hu 0755 root bin
+d none /opt/csw/share/locale/hu/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/or 0755 root bin
+d none /opt/csw/share/locale/or/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/or/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/wa 0755 root bin
+d none /opt/csw/share/locale/wa/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/wa/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/es 0755 root bin
+d none /opt/csw/share/locale/es/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/pl 0755 root bin
+d none /opt/csw/share/locale/pl/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/gl 0755 root bin
+d none /opt/csw/share/locale/gl/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/gl/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ne 0755 root bin
+d none /opt/csw/share/locale/ne/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ne/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/en_CA 0755 root bin
+d none /opt/csw/share/locale/en_CA/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/en_CA/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/en at shaw 0755 root bin
+d none /opt/csw/share/locale/en at shaw/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/en at shaw/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/mg 0755 root bin
+d none /opt/csw/share/locale/mg/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mg/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ms 0755 root bin
+d none /opt/csw/share/locale/ms/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ms/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/dz 0755 root bin
+d none /opt/csw/share/locale/dz/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/dz/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ast 0755 root bin
+d none /opt/csw/share/locale/ast/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ast/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/gu 0755 root bin
+d none /opt/csw/share/locale/gu/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/gu/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ga 0755 root bin
+d none /opt/csw/share/locale/ga/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ga/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/nb 0755 root bin
+d none /opt/csw/share/locale/nb/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/pa 0755 root bin
+d none /opt/csw/share/locale/pa/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/pa/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/et 0755 root bin
+d none /opt/csw/share/locale/et/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/bs 0755 root bin
+d none /opt/csw/share/locale/bs/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bs/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/bg 0755 root bin
+d none /opt/csw/share/locale/bg/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bg/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/kn 0755 root bin
+d none /opt/csw/share/locale/kn/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/kn/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/hr 0755 root bin
+d none /opt/csw/share/locale/hr/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/hr/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/si 0755 root bin
+d none /opt/csw/share/locale/si/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/si/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/fr 0755 root bin
+d none /opt/csw/share/locale/fr/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/zh_HK 0755 root bin
+d none /opt/csw/share/locale/zh_HK/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/zh_HK/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/zh_TW 0755 root bin
+d none /opt/csw/share/locale/zh_TW/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/nl 0755 root bin
+d none /opt/csw/share/locale/nl/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/mn 0755 root bin
+d none /opt/csw/share/locale/mn/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mn/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/mi 0755 root bin
+d none /opt/csw/share/locale/mi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mi/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/cs 0755 root bin
+d none /opt/csw/share/locale/cs/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/cs/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/xh 0755 root bin
+d none /opt/csw/share/locale/xh/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/xh/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/cy 0755 root bin
+d none /opt/csw/share/locale/cy/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/cy/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/bn_IN 0755 root bin
+d none /opt/csw/share/locale/bn_IN/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bn_IN/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/zh_CN 0755 root bin
+d none /opt/csw/share/locale/zh_CN/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/rw 0755 root bin
+d none /opt/csw/share/locale/rw/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/rw/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/bn 0755 root bin
+d none /opt/csw/share/locale/bn/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bn/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/lt 0755 root bin
+d none /opt/csw/share/locale/lt/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/lt/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/fa 0755 root bin
+d none /opt/csw/share/locale/fa/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/fa/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/af 0755 root bin
+d none /opt/csw/share/locale/af/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/af/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/he 0755 root bin
+d none /opt/csw/share/locale/he/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/he/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/mai 0755 root bin
+d none /opt/csw/share/locale/mai/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mai/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/locale/ar 0755 root bin
+d none /opt/csw/share/locale/ar/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ar/LC_MESSAGES/gedit.mo 0644 root bin
+d none /opt/csw/share/man 0755 root bin
+d none /opt/csw/share/man/man1 0755 root bin
+f none /opt/csw/share/man/man1/gedit.1 0644 root bin
+d none /opt/csw/lib 0755 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/gedit-2.20.pc 0644 root bin
+d none /opt/csw/lib/gedit-2 0755 root bin
+d none /opt/csw/lib/gedit-2/plugin-loaders 0755 root bin
+f none /opt/csw/lib/gedit-2/plugin-loaders/libcloader.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugin-loaders/libcloader.la 0755 root bin
+d none /opt/csw/lib/gedit-2/plugins 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libtaglist.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/modelines.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/libchangecase.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libspell.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libdocinfo.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libsort.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/docinfo.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/libsort.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libdocinfo.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/changecase.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/libspell.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libtaglist.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libchangecase.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libmodelines.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libfilebrowser.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/time.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/libtime.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/filebrowser.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/sort.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/taglist.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/libtime.so 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/libfilebrowser.la 0755 root bin
+f none /opt/csw/lib/gedit-2/plugins/spell.gedit-plugin 0644 root bin
+f none /opt/csw/lib/gedit-2/plugins/libmodelines.la 0755 root bin
+d none /opt/csw/libexec 0755 root bin
+d none /opt/csw/libexec/gedit-2 0755 root bin
+f none /opt/csw/libexec/gedit-2/gedit-bugreport.sh 0755 root bin


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