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

theferret at users.sourceforge.net theferret at users.sourceforge.net
Mon Jun 28 02:00:49 CEST 2010


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

Log Message:
-----------
gimp/branch-c: bring gimp up to date nicely, I hope

Added Paths:
-----------
    csw/mgar/pkg/gimp/branch-c/
    csw/mgar/pkg/gimp/branch-c/Makefile
    csw/mgar/pkg/gimp/branch-c/README
    csw/mgar/pkg/gimp/branch-c/copyright
    csw/mgar/pkg/gimp/branch-c/depend
    csw/mgar/pkg/gimp/branch-c/gimp_gnomeplugins/
    csw/mgar/pkg/gimp/branch-c/gimp_gnomeplugins/pkginfo
    csw/mgar/pkg/gimp/branch-c/gimp_i18n/
    csw/mgar/pkg/gimp/branch-c/gimp_i18n/copyright
    csw/mgar/pkg/gimp/branch-c/gimp_i18n/depend
    csw/mgar/pkg/gimp/branch-c/gimp_i18n/pkginfo
    csw/mgar/pkg/gimp/branch-c/gimp_i18n/prototype
    csw/mgar/pkg/gimp/branch-c/gimp_minimal/
    csw/mgar/pkg/gimp/branch-c/gimp_minimal/copyright
    csw/mgar/pkg/gimp/branch-c/gimp_minimal/depend
    csw/mgar/pkg/gimp/branch-c/gimp_minimal/pkginfo
    csw/mgar/pkg/gimp/branch-c/gimp_minimal/prototype
    csw/mgar/pkg/gimp/branch-c/gimp_minimal/prototype.add
    csw/mgar/pkg/gimp/branch-c/gimp_python/
    csw/mgar/pkg/gimp/branch-c/gimplibs/
    csw/mgar/pkg/gimp/branch-c/gimplibs/copyright
    csw/mgar/pkg/gimp/branch-c/gimplibs/depend
    csw/mgar/pkg/gimp/branch-c/gimplibs/pkginfo
    csw/mgar/pkg/gimp/branch-c/gimplibs/prototype
    csw/mgar/pkg/gimp/branch-c/gimplibs/prototype.add
    csw/mgar/pkg/gimp/branch-c/gimplibs_doc/
    csw/mgar/pkg/gimp/branch-c/gimplibs_doc/copyright
    csw/mgar/pkg/gimp/branch-c/gimplibs_doc/depend
    csw/mgar/pkg/gimp/branch-c/gimplibs_doc/pkginfo
    csw/mgar/pkg/gimp/branch-c/gimplibs_doc/prototype
    csw/mgar/pkg/gimp/branch-c/pkginfo
    csw/mgar/pkg/gimp/branch-c/prototype


Property changes on: csw/mgar/pkg/gimp/branch-c
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work
cswstage
build


Added: csw/mgar/pkg/gimp/branch-c/Makefile
===================================================================
--- csw/mgar/pkg/gimp/branch-c/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/Makefile	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,205 @@
+# This file based from TEMPLATES/createpkg/Makefile.lib
+# but only handles 32bit build.
+# 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.
+
+# because of intltool nonsense
+PATH := /opt/csw/gnu:$(PATH)
+
+#COMPILED_SUBDIRS:=gimp_minimal gimplibs gimp_gnomeplugins gimp_python
+COMPILED_SUBDIRS:=gimp_minimal gimplibs gimplibs_doc
+SUBDIRS = $(COMPILED_SUBDIRS) gimp_i18n
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= gimp-2.6.8.tar.bz2
+EXTRACTPROG ?= /usr/sfw/bin/gtar jfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= ftp://ftp.gimp.org/pub/gimp/v2.6
+
+ARCH := $(shell /bin/uname -p)
+
+LDFLAGS_COMMON :=
+
+SRCDIR= build/*
+
+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 \
+  CPPFLAGS=-I/opt/csw/include --without-alsa --disable-python
+
+#I want to actualy compile python stuff but our dev support is broken
+# somehow
+
+##  --without-gnomevfs --without-gvfs --without-webkit --disable-python \
+##  --without-dbus --without-libcurl \
+
+
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
+
+
+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.
+
+package:
+	for dir in $(SUBDIRS) ; do \
+		(cd $$dir; createpkg -r `pwd`/../build/*/cswstage ) ;\
+	done
+	$(CREATEPKG)
+	mv -i */*.pkg.gz .
+
+# 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!!!
+build/.stage-$(ARCH)-32.done:
+	@echo Handling stage of $(ARCH)-32
+	(cd $(SRCDIR) ; MAKE=gmake stagepkg -m)
+	(cd  $(SRCDIR); cp COPYING cswstage/COPYING.gimp)
+	(cd  $(SRCDIR); cp libgimp/COPYING cswstage/COPYING.libgimp)
+	@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
+
+configure:	configure-$(ARCH)-32
+
+build:		build-$(ARCH)-32
+
+stage:		stage-$(ARCH)-32
+
+
+
+GIMPLIBS_EXPR='(/opt/csw/lib/libm|/opt/csw/include)'
+LIBDOC_EXPR='gtk-doc/html/lib'
+#GIMP_GNOME_EXPR='depend'
+#GIMP_PYTHON_EXPR='depend'
+
+# Manual target. Run after stage step, to generate all the prototype files
+# There is some complicated stuff that cant be done
+# in any easier way.
+# You should only need to run this the first time a new version is compiled.
+# Then just svn commit the prototypes, IF they look okay.
+pkgproto:
+	cp $(SRCDIR)/cswstage/prototype prototype.tmp
+	for d in $(COMPILED_SUBDIRS) gimp_i18n ; do \
+	  echo setting up $$d ;\
+	  (echo "i pkginfo";echo "i depend";echo "i copyright") >$$d/prototype ;\
+	done
+	egrep $(GIMPLIBS_EXPR) prototype.tmp >>gimplibs/prototype
+	egrep $(LIBDOC_EXPR) prototype.tmp >>gimplibs_doc/prototype
+	egrep -v $(GIMPLIBS_EXPR) prototype.tmp | \
+		egrep -v $(LIBDOC_EXPR)  | \
+		egrep -v locale	>gimp_minimal/prototype
+	egrep locale/en prototype.tmp >>gimp_minimal/prototype
+	egrep locale prototype.tmp |egrep -v locale/en >>gimp_i18n/prototype
+	for dir in gimplibs gimp_minimal ; do \
+		(cd $$dir; cat prototype.add >>prototype) ;\
+	done
+	##rm prototype.tmp
+	## egrep $(GIMP_GNOME_EXPR) prototype.tmp >>gimp_gnomeplugins/prototype
+	## egrep $(GIMP_PYTHON_EXPR) prototype.tmp >>gimp_python/prototype
+
+

Added: csw/mgar/pkg/gimp/branch-c/README
===================================================================
--- csw/mgar/pkg/gimp/branch-c/README	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/README	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,41 @@
+Quickie notes for gimpq compilation.
+
+basically, this should be "gimp_minimal"
+
+note also: the configuration has that annoying 
+ configure: error: GNU gettext tools not found; required for intltool
+
+problem. so have to force /opt/csw/gnu first in PATH. which we do.
+
+
+WARNING: Before releasing a "real" package of this,
+  we have to split some stuffout of this beastie.
+  like, "gimplibs"., which xsane uses.
+  gimplibs is basically
+  /opt/csw/include/.*
+  /opt/csw/lib/lib.*
+  /opt/csw/lib/pkgconfig/.*
+
+
+
+
+DAAAAANG... the only gnomeish stuffs, is in the plugins? !?!?!  
+  Original had:
+  ./lib/gimp/2.0/plug-ins/helpbrowser
+  ./lib/gimp/2.0/plug-ins/uri
+  ./lib/gimp/2.0/plug-ins/svg
+
+  (Debian separates out gnome-vfs plugin (which is "uri")
+
+  oddly, new one seemed to have built helpbrowser WITHOUT gnome..??
+
+  Separate out python plugins (not IN plugin dir, funnily enough)
+     to gimp_python
+
+
+SEPARATE (upstream) PACKAGES:
+	gimp_help
+	gimp_extras
+	gimp_template
+	gimpprint
+

Added: csw/mgar/pkg/gimp/branch-c/copyright
===================================================================
--- csw/mgar/pkg/gimp/branch-c/copyright	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/copyright	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,3 @@
+Please see /opt/csw/share/doc/gimp_gtk/COPYING for full text of
+copyright license
+

Added: csw/mgar/pkg/gimp/branch-c/depend
===================================================================
--- csw/mgar/pkg/gimp/branch-c/depend	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/depend	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,6 @@
+P	CSWgimpminimal
+P	CSWgimpi18n
+P	CSWgimplibs
+P	CSWgimpextras
+P	CSWgimpprint
+P	CSWgimphelp

Added: csw/mgar/pkg/gimp/branch-c/gimp_gnomeplugins/pkginfo
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_gnomeplugins/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_gnomeplugins/pkginfo	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,8 @@
+PKG=CSWgimpgnomeplugins
+NAME=gimp_gnomeplugins - gnome-dependant plugins for the gimp
+VERSION=2.6.8,REV=2010.06.12
+CATEGORY=application
+VENDOR=http://www.gimp.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/gimp/branch-c

Added: csw/mgar/pkg/gimp/branch-c/gimp_i18n/copyright
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_i18n/copyright	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_i18n/copyright	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,2 @@
+This file should not be distributed separatedly from CSWgimp. Please see that
+package for full copyright notice.

Added: csw/mgar/pkg/gimp/branch-c/gimp_i18n/depend
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_i18n/depend	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_i18n/depend	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1 @@
+P	CSWcommon

Added: csw/mgar/pkg/gimp/branch-c/gimp_i18n/pkginfo
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_i18n/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_i18n/pkginfo	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,8 @@
+PKG=CSWgimpi18n
+NAME=gimp_i18n - internationalization files for gimp
+VERSION=2.6.8,REV=2010.06.12
+CATEGORY=application
+VENDOR=http://www.gimp.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/gimp/branch-c

Added: csw/mgar/pkg/gimp/branch-c/gimp_i18n/prototype
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_i18n/prototype	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_i18n/prototype	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,495 @@
+i pkginfo
+i depend
+i copyright
+d none /opt/csw/share/locale 0755 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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/xh/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/xh/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/xh/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/xh/LC_MESSAGES/gimp20.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/cs/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/cs/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/cs/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/cs/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/cs/LC_MESSAGES/gimp20-python.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/gimp20-tips.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/rw/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/rw/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/rw/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/rw/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/rw/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+d none /opt/csw/share/locale/km 0755 root bin
+d none /opt/csw/share/locale/km/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/km/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/km/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/km/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/km/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/km/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/km/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/lt/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/lt/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/lt/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/lt/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/lt/LC_MESSAGES/gimp20-libgimp.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/fa/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/fa/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/fa/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/fa/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/fa/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/he/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/he/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/he/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/he/LC_MESSAGES/gimp20-libgimp.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ar/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ar/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/ar/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ar/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ar/LC_MESSAGES/gimp20.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/fr/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+d none /opt/csw/share/locale/tt 0755 root bin
+d none /opt/csw/share/locale/tt/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/tt/LC_MESSAGES/gimp20.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/nl/LC_MESSAGES/gimp20.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/gu/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/gu/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/gu/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/gu/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/gu/LC_MESSAGES/gimp20-script-fu.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/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ga/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ga/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ga/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ga/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/nb/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/et/LC_MESSAGES/gimp20-script-fu.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/pa/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/pa/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/pa/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/pa/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/pa/LC_MESSAGES/gimp20-script-fu.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/kn/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/bg/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/bg/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/bg/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/bg/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/bg/LC_MESSAGES/gimp20-python.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/gimp20.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/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/hr/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/hr/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/hr/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/hr/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/hr/LC_MESSAGES/gimp20-script-fu.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/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/sr at latin/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/sr at latin/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/sr at latin/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/sr at latin/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/sr at latin/LC_MESSAGES/gimp20-tips.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/hu/LC_MESSAGES/gimp20-python.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/or/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/or/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/es/LC_MESSAGES/gimp20-libgimp.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/pl/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ne/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/ne/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ne/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ne/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ne/LC_MESSAGES/gimp20-script-fu.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/gl/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/gl/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/gl/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/gl/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/gl/LC_MESSAGES/gimp20-python.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/dz/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/dz/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/dz/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/dz/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/dz/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/ms/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ms/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ms/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ms/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ms/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/it/LC_MESSAGES/gimp20.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ro/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ro/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ro/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ro/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ro/LC_MESSAGES/gimp20-tips.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/ca/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/sl/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/sl/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/sl/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/sl/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/sl/LC_MESSAGES/gimp20.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/gimp20.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/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/sr/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/sr/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/sr/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/sr/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/sr/LC_MESSAGES/gimp20-tips.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/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/zh_CN/LC_MESSAGES/gimp20-tips.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/eo/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/eo/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/eo/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/eo/LC_MESSAGES/gimp20-libgimp.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/gimp20.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/be/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/be/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/be/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/be/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/be/LC_MESSAGES/gimp20.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/oc/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/oc/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/oc/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/oc/LC_MESSAGES/gimp20.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/gimp20.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/tr/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/tr/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/tr/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/tr/LC_MESSAGES/gimp20.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/sk/LC_MESSAGES/gimp20.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/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/da/LC_MESSAGES/gimp20-libgimp.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ca at valencia/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ca at valencia/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ca at valencia/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/ca at valencia/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ca at valencia/LC_MESSAGES/gimp20-python.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/zh_TW/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/is/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/is/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/is/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/is/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/is/LC_MESSAGES/gimp20-libgimp.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/nn/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/nn/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/nn/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/nn/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/nn/LC_MESSAGES/gimp20-python.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/uk/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/uk/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/uk/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/uk/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/uk/LC_MESSAGES/gimp20-libgimp.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ja/LC_MESSAGES/gimp20-tips.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/gimp20.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/de/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/mr/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/mr/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/mr/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/mr/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/mr/LC_MESSAGES/gimp20-libgimp.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/vi/LC_MESSAGES/gimp20-python.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/gimp20.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/el/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/el/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/el/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/el/LC_MESSAGES/gimp20-script-fu.mo 0644 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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/lv/LC_MESSAGES/gimp20.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/eu/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/eu/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/eu/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/eu/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/eu/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+d none /opt/csw/share/locale/yi 0755 root bin
+d none /opt/csw/share/locale/yi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/yi/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/yi/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/yi/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/yi/LC_MESSAGES/gimp20-libgimp.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ko/LC_MESSAGES/gimp20-tips.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/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/pt/LC_MESSAGES/gimp20-python.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/az/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/az/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/az/LC_MESSAGES/gimp20-libgimp.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/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/sv/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/fi/LC_MESSAGES/gimp20-python.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/gimp20.mo 0644 root bin
+f none /opt/csw/share/locale/mk/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/mk/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/mk/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/mk/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/mk/LC_MESSAGES/gimp20-std-plug-ins.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/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/id/LC_MESSAGES/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/id/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/id/LC_MESSAGES/gimp20.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/gimp20-script-fu.mo 0644 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/gimp20-std-plug-ins.mo 0644 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/gimp20-libgimp.mo 0644 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/gimp20-tips.mo 0644 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/gimp20-python.mo 0644 root bin
+f none /opt/csw/share/locale/ru/LC_MESSAGES/gimp20.mo 0644 root bin

Added: csw/mgar/pkg/gimp/branch-c/gimp_minimal/copyright
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_minimal/copyright	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_minimal/copyright	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,2 @@
+Please see /opt/csw/share/gtk-doc/html/COPYING.gimp
+full copyright notice. (GPL)

Added: csw/mgar/pkg/gimp/branch-c/gimp_minimal/depend
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_minimal/depend	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_minimal/depend	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,27 @@
+P	CSWgimplibs
+P	CSWaalib
+P	CSWdbusglib
+P	CSWfconfig
+P	CSWftype2
+P	CSWggettextrt
+P	CSWgimplibs
+P	CSWglib2
+P	CSWgtk2
+P	CSWiconv
+P	CSWjpeg
+P	CSWlcmsrt
+P	CSWlibatk
+P	CSWlibbabl
+P	CSWlibcairo
+P	CSWlibdbus
+P	CSWlibexif
+P	CSWlibgegl
+P	CSWlibrsvg
+P	CSWlibwmf
+P	CSWlibxml2
+P	CSWncurses
+P	CSWpango
+P	CSWpng
+P	CSWtiff
+P	CSWxpm
+P	CSWzlib

Added: csw/mgar/pkg/gimp/branch-c/gimp_minimal/pkginfo
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_minimal/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_minimal/pkginfo	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,8 @@
+PKG=CSWgimpminimal
+NAME=gimp_minimal - bare essentials for running gimp
+VERSION=2.6.8,REV=2010.06.12
+CATEGORY=application
+VENDOR=http://www.gimp.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/gimp/branch-c

Added: csw/mgar/pkg/gimp/branch-c/gimp_minimal/prototype
===================================================================
--- csw/mgar/pkg/gimp/branch-c/gimp_minimal/prototype	                        (rev 0)
+++ csw/mgar/pkg/gimp/branch-c/gimp_minimal/prototype	2010-06-28 00:00:48 UTC (rev 10350)
@@ -0,0 +1,906 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/etc 0755 root bin
+d none /opt/csw/etc/gimp 0755 root bin
+d none /opt/csw/etc/gimp/2.0 0755 root bin
+f none /opt/csw/etc/gimp/2.0/gimprc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/unitrc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/sessionrc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/templaterc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/ps-menurc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/menurc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/controllerrc 0644 root bin
+f none /opt/csw/etc/gimp/2.0/gtkrc 0644 root bin
+d none /opt/csw/bin 0755 root bin
+s none /opt/csw/bin/gimp=gimp-2.6
+s none /opt/csw/bin/gimp-console=gimp-console-2.6
+f none /opt/csw/bin/gimptool-2.0 0755 root bin
+f none /opt/csw/bin/gimp-console-2.6 0755 root bin
+f none /opt/csw/bin/gimp-2.6 0755 root bin
+d none /opt/csw/lib 0755 root bin
+s none /opt/csw/lib/libgimpcolor-2.0.so=libgimpcolor-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpui-2.0.so.0=libgimpui-2.0.so.0.600.8
+f none /opt/csw/lib/libgimpwidgets-2.0.so.0.600.8 0755 root bin
+f none /opt/csw/lib/libgimpconfig-2.0.la 0755 root bin
+s none /opt/csw/lib/libgimpmodule-2.0.so=libgimpmodule-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpmath-2.0.so=libgimpmath-2.0.so.0.600.8
+f none /opt/csw/lib/libgimpbase-2.0.so.0.600.8 0755 root bin
+f none /opt/csw/lib/libgimpcolor-2.0.so.0.600.8 0755 root bin
+f none /opt/csw/lib/libgimpmodule-2.0.la 0755 root bin
+f none /opt/csw/lib/libgimpmath-2.0.la 0755 root bin
+d none /opt/csw/lib/gimp 0755 root bin
+d none /opt/csw/lib/gimp/2.0 0755 root bin
+d none /opt/csw/lib/gimp/2.0/modules 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcontroller-midi.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-proof.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-proof.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcontroller-midi.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-high-contrast.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcolor-selector-cmyk.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-color-blind.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-lcms.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-gamma.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcolor-selector-water.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcolor-selector-wheel.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcolor-selector-water.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcolor-selector-wheel.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libcolor-selector-cmyk.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-color-blind.so 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-gamma.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-lcms.la 0755 root bin
+f none /opt/csw/lib/gimp/2.0/modules/libdisplay-filter-high-contrast.so 0755 root bin
+d none /opt/csw/lib/gimp/2.0/plug-ins 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/filter-pack 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/imagemap 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/crop-auto 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/color-rotate 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-compressor 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/tile-seamless 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/gradient-map 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-pat 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/guillotine 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/convolution-matrix 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/mail 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/tile-small 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-bmp 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-header 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/ripple 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-fits 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/tile 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-desktop-link 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/noise-randomize 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/gimpressionist 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-gbr 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-dicom 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/shift 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/lens-flare 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/cml-explorer 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/whirl-pinch 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/edge 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/oilify 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-pnm 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/lcms 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-png 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/alien-map 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/jigsaw 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/animation-play 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-tga 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-html-table 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/cubism 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-pcx 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/video 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-xpm 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/wind 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-raw 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/unit-editor 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/plugin-browser 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/edge-sobel 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/flame 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/edge-dog 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/gee-zoom 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/fractal-explorer 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/unsharp-mask 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-psd-save 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/ifs-compose 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/despeckle 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/nl-filter 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/metadata 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/apply-canvas 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/plasma 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/mosaic 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/color-to-alpha 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/checkerboard 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-tiff-save 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/iwarp 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/pagecurl 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-uri 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/edge-laplace 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/sinus 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/contrast-normalize 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-xwd 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/lighting 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/border-average 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-jpeg 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-csource 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-sgi 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/hot 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/colorify 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-svg 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-aa 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-gif-load 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/noise-spread 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/destripe 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/print 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/polar-coords 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/noise-solid 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/selection-to-path 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-gih 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/blinds 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/emboss 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/lens-apply 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/crop-zealous 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/script-fu 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/compose 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/film 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/blur-motion 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-ps 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/color-exchange 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/engrave 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-xjt 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/maze 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/curve-bend 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-pix 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/lens-distortion 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-fli 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/deinterlace 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/blur-gauss 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/noise-rgb 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/threshold-alpha 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/sparkle 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/bump-map 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-xbm 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/sphere-designer 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/red-eye-removal 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/warp 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/smooth-palette 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/van-gogh-lic 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/web-browser 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/color-enhance 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/sample-colorize 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/pixelize 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/animation-optimize 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/procedure-browser 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/edge-neon 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/noise-hsv 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/cartoon 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/grid 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/gradient-flare 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/displace 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/value-propagate 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/waves 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-gif-save 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/screenshot 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-faxg3 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/contrast-stretch-hsv 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/gee 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/qbist 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/gfig 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/sharpen 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-glob 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/photocopy 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-cel 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/channel-mixer 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/decompose 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/depth-merge 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/value-invert 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/diffraction 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/tile-paper 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/tile-glass 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/contrast-retinex 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/align-layers 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/max-rgb 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-sunras 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/antialias 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/contrast-stretch 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-tiff-load 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/fractal-trace 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/map-object 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/blur 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/illusion 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/semi-flatten 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/softglow 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-ico 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-wmf 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/blur-gauss-selective 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/nova 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-psd-load 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/color-cube-analyze 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/file-psp 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/colormap-remap 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/help 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/rotate 0755 root bin
+f none /opt/csw/lib/gimp/2.0/plug-ins/newsprint 0755 root bin
+d none /opt/csw/lib/gimp/2.0/interpreters 0755 root bin
+f none /opt/csw/lib/gimp/2.0/interpreters/default.interp 0644 root bin
+d none /opt/csw/lib/gimp/2.0/environ 0755 root bin
+f none /opt/csw/lib/gimp/2.0/environ/default.env 0644 root bin
+s none /opt/csw/lib/libgimpconfig-2.0.so=libgimpconfig-2.0.so.0.600.8
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/gimpthumb-2.0.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/gimpui-2.0.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/gimp-2.0.pc 0644 root bin
+s none /opt/csw/lib/libgimpthumb-2.0.so.0=libgimpthumb-2.0.so.0.600.8
+f none /opt/csw/lib/libgimpcolor-2.0.la 0755 root bin
+s none /opt/csw/lib/libgimpconfig-2.0.so.0=libgimpconfig-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpbase-2.0.so.0=libgimpbase-2.0.so.0.600.8
+f none /opt/csw/lib/libgimp-2.0.la 0755 root bin
+f none /opt/csw/lib/libgimpconfig-2.0.so.0.600.8 0755 root bin
+f none /opt/csw/lib/libgimpbase-2.0.la 0755 root bin
+f none /opt/csw/lib/libgimpwidgets-2.0.la 0755 root bin
+s none /opt/csw/lib/libgimpthumb-2.0.so=libgimpthumb-2.0.so.0.600.8
+s none /opt/csw/lib/libgimp-2.0.so.0=libgimp-2.0.so.0.600.8
+f none /opt/csw/lib/libgimp-2.0.so.0.600.8 0755 root bin
+f none /opt/csw/lib/libgimpui-2.0.la 0755 root bin
+f none /opt/csw/lib/libgimpui-2.0.so.0.600.8 0755 root bin
+f none /opt/csw/lib/libgimpthumb-2.0.so.0.600.8 0755 root bin
+s none /opt/csw/lib/libgimpui-2.0.so=libgimpui-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpwidgets-2.0.so.0=libgimpwidgets-2.0.so.0.600.8
+f none /opt/csw/lib/libgimpmath-2.0.so.0.600.8 0755 root bin
+s none /opt/csw/lib/libgimpwidgets-2.0.so=libgimpwidgets-2.0.so.0.600.8
+f none /opt/csw/lib/libgimpthumb-2.0.la 0755 root bin
+s none /opt/csw/lib/libgimpcolor-2.0.so.0=libgimpcolor-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpmath-2.0.so.0=libgimpmath-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpbase-2.0.so=libgimpbase-2.0.so.0.600.8
+s none /opt/csw/lib/libgimp-2.0.so=libgimp-2.0.so.0.600.8
+s none /opt/csw/lib/libgimpmodule-2.0.so.0=libgimpmodule-2.0.so.0.600.8
+f none /opt/csw/lib/libgimpmodule-2.0.so.0.600.8 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/gimp 0755 root bin
+d none /opt/csw/share/gimp/2.0 0755 root bin
+d none /opt/csw/share/gimp/2.0/tips 0755 root bin
+f none /opt/csw/share/gimp/2.0/tips/gimp-tips.xml 0644 root bin
+d none /opt/csw/share/gimp/2.0/scripts 0755 root bin
+f none /opt/csw/share/gimp/2.0/scripts/beveled-pattern-button.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/chalk.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/alien-glow-button.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/drop-shadow.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/paste-as-pattern.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/beveled-pattern-hrule.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/carved-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/ripply-anim.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/select-to-pattern.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/textured-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/line-nova.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/plug-in-compat.init 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/title-header.scm 0644 root bin
+d none /opt/csw/share/gimp/2.0/scripts/images 0755 root bin
+f none /opt/csw/share/gimp/2.0/scripts/images/texture1.jpg 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/images/texture.jpg 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/images/texture3.jpg 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/images/beavis.jpg 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/images/texture2.jpg 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/lava.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/starscape-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/fuzzyborder.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/perspective-shadow.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/beveled-pattern-arrow.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/chip-away.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/carve-it.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/glowing-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/guides-new.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/speed-text.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/alien-glow-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/frosty-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/alien-neon-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/clothify.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/paste-as-brush.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/addborder.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/burn-in-anim.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/select-to-brush.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/grid-system.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/coffee.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/predator.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/gradient-example.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/gradient-bevel-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/gimp-headers.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/unsharp-mask.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/reverse-layers.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/basic1-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/3dTruchet.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/rendermap.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/pupi-button.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/alien-glow-bar.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/t-o-p-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/waves-anim.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/tileblur.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/add-bevel.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/alien-glow-bullet.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/beveled-pattern-bullet.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/basic2-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/guides-new-percent.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/beveled-pattern-heading.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/bovinated-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/text-circle.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/i26-gunya2.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/sota-chrome-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/chrome-it.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/guides-from-selection.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/guides-remove-all.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/gimp-labels.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/weave.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/erase-rows.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/selection-round.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/distress-selection.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/3d-outline.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/blended-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/old-photo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/flatland.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/crystal-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/chrome-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/select-to-image.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/difference-clouds.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/xach-effect.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/copy-visible.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/alien-glow-arrow.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/web-browser.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/swirly-pattern.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/font-map.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/beveled-button.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/camo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/script-fu-compat.init 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/blend-anim.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/coolmetal-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/swirltile.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/neon-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/news-text.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/comic-logo.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/spinning-globe.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/slide.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/land.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/script-fu.init 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/circuit.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/round-corners.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/mkbrush.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/glossy.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/script-fu-util.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/script-fu-set-cmap.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/spyrogimp.scm 0644 root bin
+f none /opt/csw/share/gimp/2.0/scripts/truchet.scm 0644 root bin
+d none /opt/csw/share/gimp/2.0/themes 0755 root bin
+d none /opt/csw/share/gimp/2.0/themes/Default 0755 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/gtkrc 0644 root bin
+d none /opt/csw/share/gimp/2.0/themes/Default/images 0755 root bin
+d none /opt/csw/share/gimp/2.0/themes/Default/images/preferences 0755 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-interp.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/toolbox.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/window-management-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-environ.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/session.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/toolbox-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/controllers.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/window-management.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/image-windows-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-gradients.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-fonts-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/theme-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/interface.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-palettes-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/input-devices.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-patterns-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/controllers-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-environ-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/display.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/new-image-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-themes-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/color-management.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/help-system-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-tool-plug-ins-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/color-management-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/image-windows.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-scripts-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/environment.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/default-grid.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/tool-options-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/default-grid-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-tools-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-plug-ins-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/default-comment.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-interp-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/session-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-brushes-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-fonts.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/image-title-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/help-system.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-modules.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-themes.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/new-image.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-scripts.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/environment-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-brushes.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-patterns.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/theme.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-modules-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/tool-options.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/image-title.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-palettes.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/display-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/input-devices-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/folders-gradients-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/preferences/interface-22.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/stock-info-64.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/stock-question-64.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/stock-warning-64.png 0644 root bin
+f none /opt/csw/share/gimp/2.0/themes/Default/images/stock-error-64.png 0644 root bin
+d none /opt/csw/share/gimp/2.0/themes/Small 0755 root bin
+f none /opt/csw/share/gimp/2.0/themes/Small/gtkrc 0644 root bin
+d none /opt/csw/share/gimp/2.0/gimpressionist 0755 root bin
+d none /opt/csw/share/gimp/2.0/gimpressionist/Brushes 0755 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paper01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/torus.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/splat1.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/fabric01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon05.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/defaultbrush.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/leaf01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/cone.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/flower02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/grad01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/pentagram.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paintbrush02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/sphere.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/shape01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/ball.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/spunge01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon04.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paintbrush03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paintbrush04.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paintbrush.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/flower03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/flower04.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/grad03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/shape02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/fabric.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/snow1.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/weave.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/dribble.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/spunge05.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/spunge02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/fabric03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon07.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/box.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paper03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paper04.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/splat3.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/flower01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/blob.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/wavy.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/strange01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/scribble.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/grad02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paintbrush01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/worm.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/thegimp.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon08.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/splat2.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/paper02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/chalk01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/arrow01.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/fabric02.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/crayon06.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/spunge03.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/spunge04.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/heart.ppm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/shape04.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Brushes/shape03.pgm 0644 root bin
+d none /opt/csw/share/gimp/2.0/gimpressionist/Paper 0755 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/marble2.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/stone.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/struc.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/defaultpaper.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/canvas2.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/bricks2.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/marble.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/burlap.pgm 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Paper/bricks.pgm 0644 root bin
+d none /opt/csw/share/gimp/2.0/gimpressionist/Presets 0755 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Canvas 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Feathers 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Dotify 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/ApplyCanvas 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Flowerbed 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Crosshatch 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Smash 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Patchwork 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Cubism 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Sample 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Maggot-invasion 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Line-art-2 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Ringworks 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Ballpark 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Mossy 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Felt-marker 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Straws 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Embroidery 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Parquette 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Line-art 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/MarbleMadness 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Wormcan 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Painted_Rock 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Weave 0644 root bin
+f none /opt/csw/share/gimp/2.0/gimpressionist/Presets/Furry 0644 root bin
+d none /opt/csw/share/gimp/2.0/palettes 0755 root bin
+f none /opt/csw/share/gimp/2.0/palettes/China.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Borders.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Op2.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Default.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Lights.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Named_Colors.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Gold.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Blues.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Cranes.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Royal.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Paintjet.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Volcano.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Firecode.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Grayblue.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Tango.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Caramel.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Reds.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Grays.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Visibone_2.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Hilite.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Cascade.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Ega.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Web.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Cool_Colors.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Warm_Colors.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Bears.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Browns_And_Yellows.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Khaki.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/News3.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Coldfire.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Reds_And_Purples.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Pastels.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Visibone.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/GrayViolet.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Plasma.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Dark_pastels.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Greens.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Topographic.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Muted.gpl 0644 root bin
+f none /opt/csw/share/gimp/2.0/palettes/Bgold.gpl 0644 root bin
+d none /opt/csw/share/gimp/2.0/gflare 0755 root bin
+f none /opt/csw/share/gimp/2.0/gflare/GFlare_102 0644 root bin
+f none /opt/csw/share/gimp/2.0/gflare/Default 0644 root bin
+f none /opt/csw/share/gimp/2.0/gflare/GFlare_101 0644 root bin
+f none /opt/csw/share/gimp/2.0/gflare/Bright_Star 0644 root bin
+f none /opt/csw/share/gimp/2.0/gflare/Classic 0644 root bin
+f none /opt/csw/share/gimp/2.0/gflare/Hidden_Planet 0644 root bin
+f none /opt/csw/share/gimp/2.0/gflare/Distant_Sun 0644 root bin
+d none /opt/csw/share/gimp/2.0/patterns 0755 root bin
+f none /opt/csw/share/gimp/2.0/patterns/nops.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/marble3.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/slate.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/bluegrid.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/choc_swirl.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/ground1.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/wood4.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/wood3.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/leaves.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/parque1.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/terra.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/qube1.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/blue.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/starfield.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/amethyst.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/wood2.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/blueweb.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/wood5.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/leopard.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/burlwood.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/redcube.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/brick.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/marble2.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/Craters.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/pink_marble.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/bluesquares.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/leather.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/pool.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/rain.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/fibers.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/rock.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/lightning.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/stone33.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/warning.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/recessed.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/pastel.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/sky.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/paper.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/parque3.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/3dgreen.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/granite1.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/bark.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/wood1.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/Moonfoot.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/burlap.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/marble1.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/Stripes2px.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/crinklepaper.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/java.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/pine.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/parque2.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/walnut.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/Stripes1px.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/cracked.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/ice.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/electric.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/sm_squares.pat 0644 root bin
+f none /opt/csw/share/gimp/2.0/patterns/corkboard.pat 0644 root bin
+d none /opt/csw/share/gimp/2.0/gradients 0755 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Land_and_Sea.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Sizefac_101.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Shadows_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/German_flag.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Radial_Eyeball_Brown.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Purples.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Skyline.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Caribbean_Blues.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Abstract_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Deep_Sea.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Wood_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Glow_Radial_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Square_Wood_Frame.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Radial_101.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Blinds.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/German_flag_smooth.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/French_flag_smooth.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Radial_Eyeball_Green.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Neon_Green.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Four_bars.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Pastels.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Radial_Rainbow_Hoop.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Romanian_flag_smooth.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Glow_Angular_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Browns.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Rays_Radial_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Yellow_Orange.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Cold_Steel_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Neon_Yellow.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Blue_Green.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Full_saturation_spectrum_CCW.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Golden.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Yellow_Contrast.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Aneurism.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Horizon_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Burning_Paper.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Incandescent.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Crown_molding.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Radial_Eyeball_Blue.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Rounded_edge.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Mexican_flag_smooth.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Dark_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Radial_Glow_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Metallic_Something.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Tube_Red.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Glow_Radial_3.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Three_bars_sin.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Radial_103.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Glow_Radial_4.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Horizon_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Abstract_3.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Greens.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Land_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Tropical_Colors.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Rays_Radial_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/French_flag.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Skyline_polluted.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Shadows_3.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Mexican_flag.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Brushed_Aluminium.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Cold_Steel.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Abstract_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Full_saturation_spectrum_CW.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Radial_102.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Wood_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Glow_Radial_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Flare_Rays_Size_1.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Neon_Cyan.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/CD.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/CD_Half.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Shadows_2.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Sunrise.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Nauseating_Headache.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Default.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Burning_Transparency.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Pastel_Rainbow.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Coffee.ggr 0644 root bin
+f none /opt/csw/share/gimp/2.0/gradients/Romanian_flag.ggr 0644 root bin
+d none /opt/csw/share/gimp/2.0/fonts 0755 root bin
+d none /opt/csw/share/gimp/2.0/fractalexplorer 0755 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Leaves 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Lightning 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Asteroid_Field 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Saturn 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Fragments 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Mandelbrot 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Car_Track 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Plant 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/High_Voltage 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Ice_Crystal 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Snow_Crystal 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Spark 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Suns 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Hoops 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Explosive 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Nebula 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Marble 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Hemp 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Medusa 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Tentacles 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Zooming_Circle 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Nautilus 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Wood 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Flower 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Bar_Code_Label 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Marble2 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Beauty_of_Nature 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Soma 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Blue_Curtain 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Rose 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Energetic_Diamond 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/The_Green_Place 0644 root bin
+f none /opt/csw/share/gimp/2.0/fractalexplorer/Wave 0644 root bin
+d none /opt/csw/share/gimp/2.0/brushes 0755 root bin

@@ Diff output truncated at 100000 characters. @@

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


More information about the devel mailing list