[csw-devel] SF.net SVN: gar:[10207] csw/mgar/pkg
theferret at users.sourceforge.net
theferret at users.sourceforge.net
Sat Jun 12 20:14:43 CEST 2010
Revision: 10207
http://gar.svn.sourceforge.net/gar/?rev=10207&view=rev
Author: theferret
Date: 2010-06-12 18:14:43 +0000 (Sat, 12 Jun 2010)
Log Message:
-----------
libgegl: another gimp requirement
Added Paths:
-----------
csw/mgar/pkg/libgegl/
csw/mgar/pkg/libgegl/Makefile
csw/mgar/pkg/libgegl/trunk/
csw/mgar/pkg/libgegl/trunk/Makefile
csw/mgar/pkg/libgegl/trunk/README
csw/mgar/pkg/libgegl/trunk/copyright
csw/mgar/pkg/libgegl/trunk/depend
csw/mgar/pkg/libgegl/trunk/patchfile.pre-conf
csw/mgar/pkg/libgegl/trunk/pkginfo
csw/mgar/pkg/libgegl/trunk/prototype.i386
csw/mgar/pkg/libgegl/trunk/prototype.sparc
Added: csw/mgar/pkg/libgegl/Makefile
===================================================================
--- csw/mgar/pkg/libgegl/Makefile (rev 0)
+++ csw/mgar/pkg/libgegl/Makefile 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,15 @@
+
+# This is somewhat of a "stub" Makefile, for
+# directories managed by the "createpkg" TEMPLATES.
+#
+# Not all of targets listed here may actualy be supported by
+# the subdir in question. But they are a goal
+
+DEFAULT_DIR=trunk
+
+
+# The -C means you must use gmake, unfortunately.
+
+all package build garchive extract configure clean distclean reallyclean :
+ @echo Going to make $@ in $(DEFAULT_DIR)
+ $(MAKE) -C $(DEFAULT_DIR) $@
Property changes on: csw/mgar/pkg/libgegl/trunk
___________________________________________________________________
Added: svn:ignore
+ cookies
download
work
cswstage
build
Added: csw/mgar/pkg/libgegl/trunk/Makefile
===================================================================
--- csw/mgar/pkg/libgegl/trunk/Makefile (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/Makefile 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,227 @@
+# This file is from TEMPLATES/createpkg/Makefile.lib
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
+
+
+# If you do NOT want to build 64bit libs, remove the $(ARCH)-64 from
+# the "all:" target.
+
+# If you DO want to, then leave it in, and also customize your
+# the build/.stage-$(ARCH)-64.done target(s),
+# PLUS, customize your prototype file(s) as needed
+# Dont forget to handle any 64bit pkg-config .pc files properly!!
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= gegl-0.1.2.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/gegl/0.1
+
+ARCH := $(shell /bin/uname -p)
+
+LDFLAGS_COMMON :=
+
+SRCDIR= build/*
+
+# DO NOT specify the arch-64 stuff such as -m64 here.
+# the individual targets will do that.
+
+CFLAGS_COMMON ?= -mt -xnorunpath -xO2 -DNO_GLIB_BACKTRACE
+CXXFLAGS_COMMON ?= -mt -norunpath -xO2
+CFLAGS_sparc ?= -xarch=v8
+CFLAGS_i386 ?= -xarch=386
+
+# Keep this arch-neutral if possible. add arch-specific tweaks
+# to arch-specific target
+CONFIGURE=./configure --prefix=/opt/csw --enable-static=no \
+ CPPFLAGS=-I/opt/csw/include --without-openexr --without-sdl
+
+# openexr uses exr-load.cpp, which is the only c++ file, and it breaks
+# due to gegl-lookup.h use of gfloat[]
+# Have to skip sdl, only until it is recompiled to not use CSW X11 libs
+
+
+LIBDIR64_sparc:=/opt/csw/lib/sparcv9
+LIBDIR64_i386 :=/opt/csw/lib/amd64
+
+CONFIGURE_64_$(ARCH) := --libdir=$(LIBDIR64_$(ARCH))
+CONFIGURE_64_EXTRAS := $(CONFIGURE_64_$(ARCH)) --without-librsvg
+
+LDFLAGS_64_$(ARCH) := -R$(LIBDIR64_$(ARCH)) -L$(LIBDIR64_$(ARCH))
+
+
+
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
+
+
+all: $(ARCH)-32 build/.stage1 $(ARCH)-64 package
+#all: $(ARCH)-32 package
+
+# ARCH-XX handles configure, build, and stage for its own combo
+#
+
+EXTRACTPROG ?= /bin/echo ERROR: need to set EXTRACTPROG ; exit 1 ;
+
+
+
+extract: build/.extract.done
+
+build/.extract.done:
+ test -d build || mkdir build
+ @if test -f $(ARCHIVEDIR)/$(ARCHIVENAME) ; then \
+ echo Extracting $(ARCHIVENAME) under build dir... ;\
+ ( cd build && $(EXTRACTPROG) $(ARCHIVEDIR)/$(ARCHIVENAME) ) ; \
+ else echo Cannot extract - $(ARCHIVEDIR)/$(ARCHIVENAME) does not exist ;\
+ exit 1; \
+ fi
+ touch build/.extract.done
+
+
+clean distclean:
+ @echo Calling $@ in $(SRCDIR)
+ $(MAKE) -C $(SRCDIR) $@
+
+# This is a bit of a hack.. it does a "make clean",
+# only when we're between 32bit and 64bit builds, when doing "make all".
+# Once we're IN the 64bit builds, it should not be automatically called.
+build/.stage1:
+ @echo Doing inter 32-64 bit cleanup
+ $(MAKE) -C $(SRCDIR) distclean
+ touch $@
+
+
+reallyclean: distclean
+ @echo Removing any milestone files in build as well...
+ @rm -f build/.??*
+ @echo '(However, leaving src tree intact, with any patches in it)'
+ @echo '(If you want, you could rm -r build, then make extract once more)'
+
+garchive:
+ @echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch: $(ARCHIVEDIR)/$(ARCHIVENAME)
+ @echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+ wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+ @echo patch: patching is handled automatically as part of the configure phase.
+
+package:
+ $(CREATEPKG)
+
+
+# split out generic $(ARCH) sections to platform-specific sections if needed.
+# but it usually should not be neccessary
+
+
+$(ARCH)-32 :: configure-$(ARCH)-32 build-$(ARCH)-32 stage-$(ARCH)-32
+ @echo Completed $(ARCH)-32 configure, build and stage
+ touch build/.$(ARCH)-32.done
+
+
+$(ARCH)-64 :: stage-$(ARCH)-32 configure-$(ARCH)-64 build-$(ARCH)-64 stage-$(ARCH)-64
+ @echo Completed $@ configure, build and stage
+ touch build/.$(ARCH)-64.done
+
+build/.$(ARCH)-32.done: $(ARCH)-32
+
+build/.$(ARCH)-64.done: $(ARCH)-64
+
+
+# Since we share the same src tree, we should only need to
+# pre-configure patching one time for all.
+build/.patch-preconf.done: build/.extract.done
+ if test -f patchfile.preconf ; then \
+ gpatch -d $(SRCDIR) -p0 <patchfile.preconf ; fi
+ touch $@
+
+
+#Note: I WANT to use LDFLAGS=-R$$ORIGIN, but stupid libtool
+# wont allow it! so force it at build time
+build/.configure-$(ARCH)-32.done: build/.patch-preconf.done
+ @echo handling $@ target
+ (cd $(SRCDIR) ; \
+ CFLAGS="$(CFLAGS_COMMON) $(CFLAGS_$(ARCH))" \
+ CXXFLAGS="$(CXXFLAGS_COMMON)" \
+ LDFLAGS='-R/opt/csw/lib -L/opt/csw/lib' \
+ $(CONFIGURE) )
+ if test -f patchfile.postconf ; then \
+ gpatch -d $(SRCDIR) -p0 <patchfile.postconf ; fi
+ touch $@
+
+build/.configure-$(ARCH)-64.done: build/.patch-preconf.done
+ if test "$(ARCH)" = "i386" -a "`uname -r`" != "5.10" ; then \
+ echo Error: do 64bit for i386 on sol10 only ; exit 1 ; fi
+ @echo handling $@ target
+ (cd $(SRCDIR) ; \
+ CFLAGS="$(CFLAGS_COMMON) -m64" \
+ CXXFLAGS="$(CXXFLAGS_COMMON) -m64" \
+ LDFLAGS="$(LDFLAGS_64_$(ARCH))" \
+ PKG_CONFIG_PATH=/opt/csw/lib/64/pkgconfig \
+ $(CONFIGURE) $(CONFIGURE_64_EXTRAS) )
+ if test -f patchfile.postconf ; then \
+ gpatch -d $(SRCDIR) -p0 <patchfile.postconf ; fi
+ touch $@
+
+
+# See note about LDFLAGS and ORIGIN, higher up
+build/.build-$(ARCH)-32.done build/.build-$(ARCH)-64.done:
+ @echo handling $@ target
+ LD_OPTIONS='-R$$ORIGIN' $(MAKE) -C $(SRCDIR) $(MFLAGS)
+ touch $@
+
+
+
+## NOTE: This is a DESTRUCTIVE target build!!
+## 'stagepkg' will destroy any prior "cswstage" directory!!!
+## So, we remove all 64bit milestones
+build/.stage-$(ARCH)-32.done:
+ @echo Handling stage of $(ARCH)-32
+ (cd $(SRCDIR) ; MAKE=gmake stagepkg)
+ cp $(SRCDIR)/COPYING $(SRCDIR)/cswstage
+ @rm -f build/.*64.done
+ touch $@
+
+
+# Note: This is the tricky bit. we cannot just call
+# "stagepkg": we dont usually want EVERYTHING; just the
+# libs that are rebuilt in 64bit, and we need them to go to
+# the subdirs, not the regular place!
+# SOME things, will have a clean libdir, and respect --libdir,
+# and do the right thing easily. However, many will not!
+# SO, odds are you'll have to write a customized target
+build/.stage-$(ARCH)-64.done: $(SRCDIR)/cswstage
+ @echo ""
+ rm -rf cd $(SRCDIR)/tmpdest
+ cd $(SRCDIR) && $(MAKE) DESTDIR=`/bin/pwd`/tmpdest install
+ (cd $(SRCDIR)/tmpdest; tar cf - ./$(LIBDIR64_$(ARCH)) )| \
+ (cd $(SRCDIR)/cswstage; tar xvf -)
+ @echo ""
+ touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32: build/.configure-$(ARCH)-32.done
+ @echo $@ done
+build-$(ARCH)-32: build/.build-$(ARCH)-32.done
+ @echo $@ done
+stage-$(ARCH)-32: build/.stage-$(ARCH)-32.done
+ @echo $@ done
+configure-$(ARCH)-64: build/.configure-$(ARCH)-64.done
+ @echo $@ done
+build-$(ARCH)-64: build/.build-$(ARCH)-64.done
+ @echo $@ done
+stage-$(ARCH)-64: build/.stage-$(ARCH)-64.done
+ @echo $@ done
+
Added: csw/mgar/pkg/libgegl/trunk/README
===================================================================
--- csw/mgar/pkg/libgegl/trunk/README (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/README 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,20 @@
+this thing has support for alll kinds of external progs:
+
+Optional dependencies:
+ asciidoc: yes
+ enscript: yes
+ GIO: yes
+ GTK+: yes
+ Ruby: yes
+ Lua: no (usable lua not found)
+ Cairo: yes
+ Pango: yes
+ pangocairo: yes
+ GDKPixbuf: yes
+ JPEG: yes
+ PNG: yes
+ OpenEXR: yes
+ rsvg: yes
+ SDL: yes
+ openraw: no (openraw library not found)
+ graphviz: yes
Added: csw/mgar/pkg/libgegl/trunk/copyright
===================================================================
--- csw/mgar/pkg/libgegl/trunk/copyright (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/copyright 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,2 @@
+This library is copyrighted by the GNU LGPL v3.
+See /opt/csw/share/doc/libgegl/COPYING for the full text.
Added: csw/mgar/pkg/libgegl/trunk/depend
===================================================================
--- csw/mgar/pkg/libgegl/trunk/depend (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/depend 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,9 @@
+P CSWggettextrt
+P CSWglib2
+P CSWgtk2
+P CSWjpeg
+P CSWlibbabl
+P CSWlibcairo
+P CSWlibrsvg
+P CSWpango
+P CSWpng
Added: csw/mgar/pkg/libgegl/trunk/patchfile.pre-conf
===================================================================
--- csw/mgar/pkg/libgegl/trunk/patchfile.pre-conf (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/patchfile.pre-conf 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,30 @@
+--- gegl/buffer/gegl-buffer.c.orig Sat Jun 12 07:40:58 2010
++++ gegl/buffer/gegl-buffer.c Sat Jun 12 07:42:13 2010
+@@ -35,6 +35,7 @@
+ #endif
+
+ #ifdef G_OS_WIN32
++#define NO_GLIB_BACKTRACE 1
+ #include <process.h>
+ #define getpid() _getpid()
+ #endif
+@@ -80,7 +81,7 @@
+ /* #define GEGL_BUFFER_DEBUG_ALLOCATIONS to print allocation stack
+ * traces for leaked GeglBuffers using GNU C libs backtrace_symbols()
+ */
+-#ifndef G_OS_WIN32
++#ifndef NO_GLIB_BACKTRACE 1
+ #include <execinfo.h>
+ #endif
+
+@@ -876,8 +877,8 @@
+ gegl_buffer_get_alloc_stack (void)
+ {
+ char *result = NULL;
+-#ifdef G_OS_WIN32
+- result = g_strdup ("backtrack not available on win32\n");
++#ifdef NO_GLIB_BACKTRACE
++ result = g_strdup ("backtrack not available in this executable\n");
+ #else
+ void *functions[MAX_N_FUNCTIONS];
+ int n_functions = 0;
Added: csw/mgar/pkg/libgegl/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/libgegl/trunk/pkginfo (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/pkginfo 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,8 @@
+PKG=CSWlibgegl
+NAME=libgegl - generic graphics library required by GIMP
+VERSION=0.1.2,REV=2010.06.12
+CATEGORY=system
+VENDOR=http://www.gegl.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/libgegl/trunk
Added: csw/mgar/pkg/libgegl/trunk/prototype.i386
===================================================================
--- csw/mgar/pkg/libgegl/trunk/prototype.i386 (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/prototype.i386 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,412 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/gegl-0.1 0755 root bin
+d none /opt/csw/include/gegl-0.1/operation 0755 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-temporal.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-sink.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-filter.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-source.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-composer3.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-area-filter.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-meta.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-composer3.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-render.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-composer.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-filter.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-composer.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-lookup.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-types.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-color.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-simd.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-version.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-buffer.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-paramspecs.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-utils.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-matrix.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-chant.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-curve.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-plugin.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-path.h 0644 root bin
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/gtk-doc 0755 root bin
+d none /opt/csw/share/gtk-doc/html 0755 root bin
+d none /opt/csw/share/gtk-doc/html/gegl 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-meta.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-composer.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-filter.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/operations.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-point-render.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-sink.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-area-filter.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-temporal.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-plugin.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-point-composer.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/api.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/brightness-contrast.c.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl.css 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-point-filter.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl.devhelp 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-source.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation.h.html 0755 root bin
+d none /opt/csw/bin 0755 root bin
+f none /opt/csw/bin/gegl 0755 root bin
+d none /opt/csw/lib 0755 root bin
+d none /opt/csw/lib/gegl-0.1 0755 root bin
+f none /opt/csw/lib/gegl-0.1/pixbuf.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/snn-mean.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/opacity.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/over.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stress.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/whitebalance.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-multiply.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gamma.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/path.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/raw-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/layer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-save.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-over.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/save-pixbuf.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/divide.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-dodge.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-atop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/open-buffer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stretch-contrast.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/multiply.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/screen.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/xor.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/affine.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/invert.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/rectangle.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mblur.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/remap.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-temperature.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/overlay.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/grey.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/darken.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/value-invert.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-over.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/fractal-explorer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-sink.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-atop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-burn.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/checkerboard.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clone.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/fractal-explorer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-sink.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-over.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-atop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-burn.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/checkerboard.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clone.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/affine.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/invert.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/rectangle.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mblur.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/screen.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/xor.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/overlay.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/grey.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/darken.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/value-invert.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/remap.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-temperature.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/save-pixbuf.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/layer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-save.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-over.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stretch-contrast.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/open-buffer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/multiply.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/divide.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-dodge.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-atop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/whitebalance.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-multiply.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/pixbuf.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/snn-mean.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/opacity.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stress.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/over.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/raw-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gamma.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/path.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/text.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/exclusion.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/threshold.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-matrix.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-huerotate.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gaussian-blur.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/lighten.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/add.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/plus.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/brightness-contrast.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/bilateral-filter.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference-of-gaussians.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/unsharp-mask.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/weighted-blend.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clear.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/c2g.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/nop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-in.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/introspect.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/jpg-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dropshadow.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-luminancetoalpha.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/levels.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-save.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-saturate.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/soft-light.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-out.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-out.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/hard-light.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-in.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/subtract.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-source.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mono-mixer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/noise.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/convert-format.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/contrast-curve.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/magick-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/write-buffer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/crop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/box-blur.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/magick-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/noise.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/convert-format.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/contrast-curve.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/box-blur.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/crop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/write-buffer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/levels.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-luminancetoalpha.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-in.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/introspect.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/jpg-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dropshadow.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-in.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/hard-light.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/subtract.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-source.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mono-mixer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-save.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/soft-light.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-saturate.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-out.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-out.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/bilateral-filter.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference-of-gaussians.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/unsharp-mask.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/brightness-contrast.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clear.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/c2g.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/nop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/weighted-blend.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-matrix.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gaussian-blur.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-huerotate.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/lighten.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/text.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/exclusion.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/threshold.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/plus.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/add.so 0755 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/gegl.pc 0644 root bin
+f none /opt/csw/lib/libgegl-0.1.so.0.101.1 0755 root bin
+s none /opt/csw/lib/libgegl-0.1.so.0=libgegl-0.1.so.0.101.1
+s none /opt/csw/lib/libgegl-0.1.so=libgegl-0.1.so.0.101.1
+f none /opt/csw/lib/libgegl-0.1.la 0755 root bin
+
+
+
+d none /opt/csw/lib/amd64 0755 root bin
+d none /opt/csw/lib/amd64/gegl-0.1 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/pixbuf.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/snn-mean.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/opacity.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/over.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/stress.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/whitebalance.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/gamma.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/path.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/raw-load.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/layer.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/png-load.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/ppm-save.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-over.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/save-pixbuf.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/divide.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color-dodge.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-atop.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/open-buffer.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/stretch-contrast.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/multiply.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/screen.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/xor.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/affine.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/invert.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/rectangle.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/mblur.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/remap.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color-temperature.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/overlay.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/grey.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/darken.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/value-invert.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-over.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/fractal-explorer.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/buffer-sink.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/difference.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-atop.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color-burn.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/checkerboard.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/clone.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/fractal-explorer.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/buffer-sink.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/difference.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-over.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-atop.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color-burn.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/checkerboard.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/clone.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/affine.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/invert.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/rectangle.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/mblur.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/screen.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/xor.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/overlay.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/grey.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/darken.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/value-invert.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/remap.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color-temperature.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/save-pixbuf.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/png-load.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/layer.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/ppm-save.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-over.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/stretch-contrast.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/open-buffer.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/multiply.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/divide.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color-dodge.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-atop.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/whitebalance.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/pixbuf.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/snn-mean.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/opacity.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/stress.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/over.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/raw-load.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/gamma.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/path.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/text.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/exclusion.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/threshold.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/gaussian-blur.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/lighten.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/add.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/plus.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/brightness-contrast.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/bilateral-filter.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/difference-of-gaussians.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/unsharp-mask.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/weighted-blend.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/clear.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/load.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/c2g.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/nop.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-in.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/introspect.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/jpg-load.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dropshadow.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/levels.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/ppm-load.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/png-save.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/soft-light.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-out.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-out.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/hard-light.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-in.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/subtract.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/buffer-source.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/mono-mixer.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/noise.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/convert-format.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/contrast-curve.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/magick-load.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/write-buffer.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/crop.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/box-blur.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/magick-load.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/noise.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/convert-format.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/contrast-curve.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/box-blur.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/color.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/crop.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/write-buffer.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/levels.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-in.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/introspect.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/jpg-load.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dropshadow.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-in.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/hard-light.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/subtract.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/buffer-source.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/mono-mixer.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/ppm-load.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/png-save.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/soft-light.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/src-out.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/dst-out.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/bilateral-filter.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/difference-of-gaussians.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/unsharp-mask.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/brightness-contrast.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/load.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/clear.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/c2g.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/nop.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/weighted-blend.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/gaussian-blur.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/lighten.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/text.la 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/exclusion.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/threshold.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/plus.so 0755 root bin
+f none /opt/csw/lib/amd64/gegl-0.1/add.so 0755 root bin
+d none /opt/csw/lib/amd64/pkgconfig 0755 root bin
+f none /opt/csw/lib/amd64/pkgconfig/gegl.pc 0644 root bin
+f none /opt/csw/lib/amd64/libgegl-0.1.so.0.101.1 0755 root bin
+s none /opt/csw/lib/amd64/libgegl-0.1.so.0=libgegl-0.1.so.0.101.1
+s none /opt/csw/lib/amd64/libgegl-0.1.so=libgegl-0.1.so.0.101.1
+f none /opt/csw/lib/amd64/libgegl-0.1.la 0755 root bin
Added: csw/mgar/pkg/libgegl/trunk/prototype.sparc
===================================================================
--- csw/mgar/pkg/libgegl/trunk/prototype.sparc (rev 0)
+++ csw/mgar/pkg/libgegl/trunk/prototype.sparc 2010-06-12 18:14:43 UTC (rev 10207)
@@ -0,0 +1,412 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/gegl-0.1 0755 root bin
+d none /opt/csw/include/gegl-0.1/operation 0755 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-temporal.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-sink.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-filter.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-source.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-composer3.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-area-filter.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-meta.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-composer3.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-render.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-composer.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-filter.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/operation/gegl-operation-point-composer.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-lookup.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-types.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-color.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-simd.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-version.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-buffer.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-paramspecs.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-utils.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-matrix.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-chant.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-curve.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-plugin.h 0644 root bin
+f none /opt/csw/include/gegl-0.1/gegl-path.h 0644 root bin
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/gtk-doc 0755 root bin
+d none /opt/csw/share/gtk-doc/html 0755 root bin
+d none /opt/csw/share/gtk-doc/html/gegl 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-meta.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-composer.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-filter.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/operations.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-point-render.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-sink.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-area-filter.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-temporal.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-plugin.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-point-composer.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/api.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/brightness-contrast.c.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl.css 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-point-filter.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl.devhelp 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation-source.h.html 0755 root bin
+f none /opt/csw/share/gtk-doc/html/gegl/gegl-operation.h.html 0755 root bin
+d none /opt/csw/bin 0755 root bin
+f none /opt/csw/bin/gegl 0755 root bin
+d none /opt/csw/lib 0755 root bin
+d none /opt/csw/lib/gegl-0.1 0755 root bin
+f none /opt/csw/lib/gegl-0.1/pixbuf.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/snn-mean.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/opacity.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/over.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stress.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/whitebalance.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-multiply.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gamma.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/path.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/raw-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/layer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-save.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-over.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/save-pixbuf.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/divide.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-dodge.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-atop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/open-buffer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stretch-contrast.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/multiply.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/screen.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/xor.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/affine.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/invert.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/rectangle.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mblur.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/remap.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-temperature.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/overlay.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/grey.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/darken.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/value-invert.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-over.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/fractal-explorer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-sink.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-atop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-burn.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/checkerboard.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clone.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/fractal-explorer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-sink.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-over.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-atop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-burn.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/checkerboard.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clone.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/affine.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/invert.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/rectangle.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mblur.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/screen.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/xor.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/overlay.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/grey.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/darken.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/value-invert.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/remap.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-temperature.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/save-pixbuf.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/layer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-save.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-over.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stretch-contrast.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/open-buffer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/multiply.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/divide.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color-dodge.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-atop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/whitebalance.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-multiply.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/pixbuf.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/snn-mean.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/opacity.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/stress.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/over.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/raw-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gamma.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/path.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/text.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/exclusion.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/threshold.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-matrix.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-huerotate.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gaussian-blur.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/lighten.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/add.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/plus.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/brightness-contrast.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/bilateral-filter.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference-of-gaussians.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/unsharp-mask.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/weighted-blend.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clear.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/c2g.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/nop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-in.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/introspect.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/jpg-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dropshadow.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-luminancetoalpha.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/levels.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-save.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-saturate.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/soft-light.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-out.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-out.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/hard-light.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-in.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/subtract.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-source.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mono-mixer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/noise.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/convert-format.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/contrast-curve.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/magick-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/write-buffer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/crop.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/box-blur.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/magick-load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/noise.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/convert-format.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/contrast-curve.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/box-blur.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/color.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/crop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/write-buffer.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/levels.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-luminancetoalpha.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-in.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/introspect.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/jpg-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dropshadow.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-in.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/hard-light.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/subtract.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/buffer-source.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/mono-mixer.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/ppm-load.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/png-save.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/soft-light.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-saturate.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/src-out.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/dst-out.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/bilateral-filter.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/difference-of-gaussians.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/unsharp-mask.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/brightness-contrast.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/load.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/clear.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/c2g.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/nop.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/weighted-blend.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-matrix.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/gaussian-blur.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/svg-huerotate.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/lighten.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/text.la 0755 root bin
+f none /opt/csw/lib/gegl-0.1/exclusion.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/threshold.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/plus.so 0755 root bin
+f none /opt/csw/lib/gegl-0.1/add.so 0755 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/gegl.pc 0644 root bin
+f none /opt/csw/lib/libgegl-0.1.so.0.101.1 0755 root bin
+s none /opt/csw/lib/libgegl-0.1.so.0=libgegl-0.1.so.0.101.1
+s none /opt/csw/lib/libgegl-0.1.so=libgegl-0.1.so.0.101.1
+f none /opt/csw/lib/libgegl-0.1.la 0755 root bin
+
+
+
+d none /opt/csw/lib/sparcv9 0755 root bin
+d none /opt/csw/lib/sparcv9/gegl-0.1 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/pixbuf.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/snn-mean.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/opacity.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/over.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/stress.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/whitebalance.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/gamma.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/path.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/raw-load.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/layer.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/png-load.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/ppm-save.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-over.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/save-pixbuf.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/divide.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color-dodge.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-atop.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/open-buffer.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/stretch-contrast.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/multiply.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/screen.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/xor.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/affine.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/invert.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/rectangle.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/mblur.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/remap.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color-temperature.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/overlay.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/grey.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/darken.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/value-invert.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-over.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/fractal-explorer.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/buffer-sink.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/difference.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-atop.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color-burn.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/checkerboard.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/clone.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/fractal-explorer.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/buffer-sink.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/difference.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-over.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-atop.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color-burn.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/checkerboard.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/clone.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/affine.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/invert.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/rectangle.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/mblur.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/screen.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/xor.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/overlay.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/grey.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/darken.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/value-invert.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/remap.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color-temperature.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/save-pixbuf.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/png-load.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/layer.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/ppm-save.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-over.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/stretch-contrast.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/open-buffer.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/multiply.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/divide.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color-dodge.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-atop.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/whitebalance.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/pixbuf.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/snn-mean.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/opacity.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/stress.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/over.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/raw-load.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/gamma.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/path.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/text.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/exclusion.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/threshold.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/gaussian-blur.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/lighten.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/add.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/plus.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/brightness-contrast.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/bilateral-filter.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/difference-of-gaussians.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/unsharp-mask.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/weighted-blend.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/clear.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/load.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/c2g.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/nop.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-in.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/introspect.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/jpg-load.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dropshadow.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/levels.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/ppm-load.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/png-save.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/soft-light.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-out.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-out.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/hard-light.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-in.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/subtract.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/buffer-source.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/mono-mixer.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/noise.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/convert-format.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/contrast-curve.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/magick-load.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/write-buffer.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/crop.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/box-blur.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/magick-load.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/noise.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/convert-format.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/contrast-curve.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/box-blur.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/color.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/crop.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/write-buffer.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/levels.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-in.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/introspect.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/jpg-load.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dropshadow.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-in.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/hard-light.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/subtract.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/buffer-source.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/mono-mixer.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/ppm-load.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/png-save.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/soft-light.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/src-out.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/dst-out.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/bilateral-filter.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/difference-of-gaussians.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/unsharp-mask.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/brightness-contrast.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/load.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/clear.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/c2g.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/nop.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/weighted-blend.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/gaussian-blur.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/lighten.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/text.la 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/exclusion.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/threshold.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/plus.so 0755 root bin
+f none /opt/csw/lib/sparcv9/gegl-0.1/add.so 0755 root bin
+d none /opt/csw/lib/sparcv9/pkgconfig 0755 root bin
+f none /opt/csw/lib/sparcv9/pkgconfig/gegl.pc 0644 root bin
+f none /opt/csw/lib/sparcv9/libgegl-0.1.so.0.101.1 0755 root bin
+s none /opt/csw/lib/sparcv9/libgegl-0.1.so.0=libgegl-0.1.so.0.101.1
+s none /opt/csw/lib/sparcv9/libgegl-0.1.so=libgegl-0.1.so.0.101.1
+f none /opt/csw/lib/sparcv9/libgegl-0.1.la 0755 root bin
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the devel
mailing list