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

theferret at users.sourceforge.net theferret at users.sourceforge.net
Sat Jun 26 00:31:14 CEST 2010


Revision: 10332
          http://gar.svn.sourceforge.net/gar/?rev=10332&view=rev
Author:   theferret
Date:     2010-06-25 22:31:14 +0000 (Fri, 25 Jun 2010)

Log Message:
-----------
libbonobo/branch-c: new branch

Added Paths:
-----------
    csw/mgar/pkg/libbonobo2/branch-c/
    csw/mgar/pkg/libbonobo2/branch-c/Makefile
    csw/mgar/pkg/libbonobo2/branch-c/copyright
    csw/mgar/pkg/libbonobo2/branch-c/depend
    csw/mgar/pkg/libbonobo2/branch-c/pkginfo
    csw/mgar/pkg/libbonobo2/branch-c/prototype

Added: csw/mgar/pkg/libbonobo2/branch-c/Makefile
===================================================================
--- csw/mgar/pkg/libbonobo2/branch-c/Makefile	                        (rev 0)
+++ csw/mgar/pkg/libbonobo2/branch-c/Makefile	2010-06-25 22:31:14 UTC (rev 10332)
@@ -0,0 +1,167 @@
+# Please note: this requires /opt/csw/gnu first in path,
+# because of stupid intltool stuffs
+
+# This file is from TEMPLATES/createpkg/Makefile.lib
+# You MUST build this with gnu make, unfortunately.
+# Mainly just because of the ARCH expansion, but also for "?="
+
+# Customize your prototype file(s) as needed
+
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
+
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= libbonobo-2.24.3.tar.bz2
+EXTRACTPROG ?= /usr/sfw/bin/gtar jfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= http://ftp.gnome.org/pub/gnome/sources/libbonobo/2.24
+
+ARCH := $(shell /bin/uname -p)
+
+LDFLAGS_COMMON :=
+
+SRCDIR= build/*
+
+# DO NOT specify the arch-64 stuff such as -m64 here.
+# the individual targets will do that.
+
+CFLAGS_COMMON   ?= -mt -xnorunpath -xO2
+CXXFLAGS_COMMON ?= -mt -norunpath  -xO2
+CFLAGS_sparc    ?= -xarch=v8
+CFLAGS_i386     ?= -xarch=386
+
+# Keep this arch-neutral if possible. add arch-specific tweaks
+# to arch-specific target
+CONFIGURE=./configure --prefix=/opt/csw --enable-static=no
+
+
+
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
+
+
+all:	$(ARCH)-32
+#all:	$(ARCH)-32 package
+
+# ARCH-XX handles configure, build, and stage for its own combo
+# 
+
+EXTRACTPROG ?= /bin/echo ERROR: need to set EXTRACTPROG ; exit 1 ;
+
+
+
+extract:	build/.extract.done
+
+build/.extract.done:
+	test -d build || mkdir build
+	@if test -f  $(ARCHIVEDIR)/$(ARCHIVENAME) ; then \
+		echo Extracting $(ARCHIVENAME) under build dir... ;\
+		( cd build && $(EXTRACTPROG) $(ARCHIVEDIR)/$(ARCHIVENAME) ) ; \
+	else echo Cannot extract - $(ARCHIVEDIR)/$(ARCHIVENAME) does not exist ;\
+		exit 1; \
+	fi
+	touch build/.extract.done
+	
+
+clean distclean:
+	@echo Calling $@ in $(SRCDIR)
+	$(MAKE) -C $(SRCDIR) $@
+
+
+reallyclean:	distclean
+	@echo Removing any milestone files in build as well...
+	@rm -f build/.??*
+	@echo '(However, leaving src tree intact, with any patches in it)'
+	@echo '(If you want, you could rm -r build, then make extract once more)'
+
+garchive:
+	@echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch:	$(ARCHIVEDIR)/$(ARCHIVENAME)
+	@echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+	wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+	@echo patch: patching is handled automatically as part of the configure phase.
+
+stage-preserved:
+	@if test -f preserve-$(ARCH).tar ; then \
+		echo Copying preserved arch-specific files; \
+		cat preserve-$(ARCH).tar |(cd $(SRCDIR)/cswstage && tar xvf -);\
+	fi
+	@if test -f preserve.tar ; then \
+		echo Copying preserved arch-neutral files; \
+		cat preserve.tar |(cd $(SRCDIR)/cswstage && tar xvf -);\
+	fi
+		
+package:	stage-preserved
+	$(CREATEPKG)
+
+
+# split out generic $(ARCH) sections to platform-specific sections if needed.
+# but it usually should not be neccessary
+
+
+$(ARCH)-32 ::   configure-$(ARCH)-32 build-$(ARCH)-32 stage-$(ARCH)-32
+	@echo Completed $(ARCH)-32 configure, build and stage
+	touch build/.$(ARCH)-32.done
+
+
+
+build/.$(ARCH)-32.done:	$(ARCH)-32
+
+# Since we share the same src tree, we should only need to
+# pre-configure patching one time for all.
+build/.patch-preconf.done:	build/.extract.done
+	if test -f patchfile.preconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.preconf ; fi
+	touch $@
+
+
+#Note: I WANT to use LDFLAGS=-R$$ORIGIN, but stupid libtool
+# wont allow it! so force it at build time
+build/.configure-$(ARCH)-32.done:	build/.patch-preconf.done
+	@echo handling $@ target
+	(cd $(SRCDIR) ; \
+	  CFLAGS="$(CFLAGS_COMMON) $(CFLAGS_$(ARCH))" \
+	  CXXFLAGS="$(CXXFLAGS_COMMON)" \
+	  LDFLAGS='-R/opt/csw/lib -L/opt/csw/lib' \
+	  $(CONFIGURE) )
+	if test -f patchfile.postconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.postconf ; fi
+	touch $@
+
+
+# See note about LDFLAGS and ORIGIN, higher up	
+build/.build-$(ARCH)-32.done:
+	@echo handling $@ target
+	LD_OPTIONS='-R$$ORIGIN' $(MAKE) -C $(SRCDIR) $(MFLAGS)
+	touch $@
+
+
+
+## NOTE: This is a DESTRUCTIVE target build!!
+## 'stagepkg'  will destroy any prior "cswstage" directory!!!
+## So, we remove all 64bit milestones
+build/.stage-$(ARCH)-32.done:
+	@echo Handling stage of $(ARCH)-32
+	(cd $(SRCDIR) ; MAKE=gmake stagepkg)
+	(cd $(SRCDIR); cp COPYING cswstage/.)
+	@rm -f build/.*64.done
+	touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32:	build/.configure-$(ARCH)-32.done
+	@echo $@ done
+build-$(ARCH)-32:	build/.build-$(ARCH)-32.done
+	@echo $@ done
+stage-$(ARCH)-32:	build/.stage-$(ARCH)-32.done
+	@echo $@ done

Added: csw/mgar/pkg/libbonobo2/branch-c/copyright
===================================================================
--- csw/mgar/pkg/libbonobo2/branch-c/copyright	                        (rev 0)
+++ csw/mgar/pkg/libbonobo2/branch-c/copyright	2010-06-25 22:31:14 UTC (rev 10332)
@@ -0,0 +1,3 @@
+Please see /opt/csw/share/gtk-doc/html/bonobo-activation/COPYING for 
+full license text (GPL v2)
+

Added: csw/mgar/pkg/libbonobo2/branch-c/depend
===================================================================
--- csw/mgar/pkg/libbonobo2/branch-c/depend	                        (rev 0)
+++ csw/mgar/pkg/libbonobo2/branch-c/depend	2010-06-25 22:31:14 UTC (rev 10332)
@@ -0,0 +1,6 @@
+P	CSWdbusglib
+P	CSWggettextrt
+P	CSWglib2
+P	CSWlibdbus
+P	CSWlibxml2
+P	CSWorbit2

Added: csw/mgar/pkg/libbonobo2/branch-c/pkginfo
===================================================================
--- csw/mgar/pkg/libbonobo2/branch-c/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/libbonobo2/branch-c/pkginfo	2010-06-25 22:31:14 UTC (rev 10332)
@@ -0,0 +1,8 @@
+PKG=CSWbonobo2
+NAME=libbonobo2 - GNOME component and compound document system
+VERSION=2.24.3,REV=2010.06.25
+CATEGORY=application
+VENDOR=http://www.opencsw.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/libbonobo2/branch-c

Added: csw/mgar/pkg/libbonobo2/branch-c/prototype
===================================================================
--- csw/mgar/pkg/libbonobo2/branch-c/prototype	                        (rev 0)
+++ csw/mgar/pkg/libbonobo2/branch-c/prototype	2010-06-25 22:31:14 UTC (rev 10332)
@@ -0,0 +1,477 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/sbin 0755 root bin
+f none /opt/csw/sbin/bonobo-activation-sysconf 0755 root bin
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/libbonobo-2.0 0755 root bin
+f none /opt/csw/include/libbonobo-2.0/libbonobo.h 0644 root bin
+d none /opt/csw/include/libbonobo-2.0/bonobo 0755 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-main.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-storage-memory.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-storage.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/Bonobo.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-persist-stream.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-property-bag.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-persist-file.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-moniker-extender.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-generic-factory.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-xobject.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-moniker.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-property-bag-client.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-stream-memory.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-i18n.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-persist-client.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-item-handler.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-moniker-simple.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-object.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-persist.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-stream.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-stream-client.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-event-source.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-item-container.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-moniker-util.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-shlib-factory.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-app-client.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-listener.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-application.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-types.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-context.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-arg.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-foreign-object.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-exception.h 0644 root bin
+f none /opt/csw/include/libbonobo-2.0/bonobo/bonobo-macros.h 0644 root bin
+d none /opt/csw/include/bonobo-activation-2.0 0755 root bin
+d none /opt/csw/include/bonobo-activation-2.0/bonobo-activation 0755 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-init.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Unknown.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-activate.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-shlib.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-mime.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/Bonobo_GenericFactory.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-server-info.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-async.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/Bonobo_Activation_types.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-version.h 0644 root bin
+f none /opt/csw/include/bonobo-activation-2.0/bonobo-activation/bonobo-activation-register.h 0644 root bin
+d none /opt/csw/lib 0755 root bin
+s none /opt/csw/lib/libbonobo-2.so.0=libbonobo-2.so.0.0.0
+f none /opt/csw/lib/libbonobo-activation.la 0755 root bin
+d none /opt/csw/lib/orbit-2.0 0755 root bin
+f none /opt/csw/lib/orbit-2.0/Bonobo_module.so 0755 root bin
+f none /opt/csw/lib/orbit-2.0/Bonobo_module.la 0755 root bin
+s none /opt/csw/lib/libbonobo-activation.so=libbonobo-activation.so.4.0.0
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/libbonobo-2.0.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/bonobo-activation-2.0.pc 0644 root bin
+d none /opt/csw/lib/bonobo 0755 root bin
+d none /opt/csw/lib/bonobo/servers 0755 root bin
+f none /opt/csw/lib/bonobo/servers/Bonobo_CosNaming_NamingContext.server 0644 root bin
+f none /opt/csw/lib/bonobo/servers/Bonobo_Moniker_std.server 0644 root bin
+f none /opt/csw/lib/bonobo/servers/Bonobo_Sample_Echo.server 0644 root bin
+d none /opt/csw/lib/bonobo/monikers 0755 root bin
+f none /opt/csw/lib/bonobo/monikers/libmoniker_std_2.la 0755 root bin
+f none /opt/csw/lib/bonobo/monikers/libmoniker_std_2.so 0755 root bin
+f none /opt/csw/lib/libbonobo-2.la 0755 root bin
+d none /opt/csw/lib/bonobo-2.0 0755 root bin
+d none /opt/csw/lib/bonobo-2.0/samples 0755 root bin
+f none /opt/csw/lib/bonobo-2.0/samples/bonobo-echo-2 0755 root bin
+f none /opt/csw/lib/libbonobo-activation.so.4.0.0 0755 root bin
+f none /opt/csw/lib/libbonobo-2.so.0.0.0 0755 root bin
+s none /opt/csw/lib/libbonobo-activation.so.4=libbonobo-activation.so.4.0.0
+s none /opt/csw/lib/libbonobo-2.so=libbonobo-2.so.0.0.0
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/man 0755 root bin
+d none /opt/csw/share/man/man1 0755 root bin
+f none /opt/csw/share/man/man1/bonobo-activation-server.1 0644 root bin
+d none /opt/csw/share/locale 0755 root bin
+d none /opt/csw/share/locale/ast 0755 root bin
+d none /opt/csw/share/locale/ast/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ast/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/wa 0755 root bin
+d none /opt/csw/share/locale/wa/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/wa/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/mg 0755 root bin
+d none /opt/csw/share/locale/mg/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mg/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/bs 0755 root bin
+d none /opt/csw/share/locale/bs/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bs/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/li 0755 root bin
+d none /opt/csw/share/locale/li/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/li/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/mai 0755 root bin
+d none /opt/csw/share/locale/mai/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mai/LC_MESSAGES/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/mn 0755 root bin
+d none /opt/csw/share/locale/mn/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mn/LC_MESSAGES/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/xh 0755 root bin
+d none /opt/csw/share/locale/xh/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/xh/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/cy 0755 root bin
+d none /opt/csw/share/locale/cy/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/cy/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/bn 0755 root bin
+d none /opt/csw/share/locale/bn/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bn/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/en_GB 0755 root bin
+d none /opt/csw/share/locale/en_GB/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/en_GB/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/br 0755 root bin
+d none /opt/csw/share/locale/br/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/br/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/bn_IN 0755 root bin
+d none /opt/csw/share/locale/bn_IN/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/bn_IN/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/te 0755 root bin
+d none /opt/csw/share/locale/te/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/te/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/sq 0755 root bin
+d none /opt/csw/share/locale/sq/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sq/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/en at shaw 0755 root bin
+d none /opt/csw/share/locale/en at shaw/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/en at shaw/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/as 0755 root bin
+d none /opt/csw/share/locale/as/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/as/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/en_CA 0755 root bin
+d none /opt/csw/share/locale/en_CA/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/en_CA/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/ku 0755 root bin
+d none /opt/csw/share/locale/ku/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ku/LC_MESSAGES/libbonobo-2.0.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/libbonobo-2.0.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/libbonobo-2.0.mo 0644 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/bonobo-activation 0755 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/COPYING=COPYING 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/query-langage.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation-Utilities.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/index.sgml 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation-Query-and-Activation.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/index.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/checklist.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation-Registration.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation-Debugging.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/api-reference.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/server-arch.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/left.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation.devhelp 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/style.css 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/server-xml-reference.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/up.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/tutorial.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/terms.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/migrating.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/right.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/home.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation.devhelp2 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/attribute-tag.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/async-activation.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/bonobo-activation-Initialization.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/architecture.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/query-syntax.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/configuring.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/bonobo-activation/lgpl.html 0644 root bin
+d none /opt/csw/share/gtk-doc/html/libbonobo 0755 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/index.sgml 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-shutdown.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-moniker-simple.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/style.css 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-context.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-application.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/property-bags.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-arg.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-event-source.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-listener.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/index.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/left.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/persist-file.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-storage.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/monikers-overview.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-persist.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-property-bag.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/persist-stream.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/storage.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-moniker-util.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-running-context.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/stream.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-types.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-main.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/unknown.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/general.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/monikers.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/ix01.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/persist-storage.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-object.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-storage-memory.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-moniker-context.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-moniker.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/refcounting.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-persist-stream.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo.devhelp 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-property-bag-client.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-exception.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-generic-factory.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-moniker-extender.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-persist-client.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-faq.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-i18n.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-app-client.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-shlib-factory.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/properties.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/factories.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/persist.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo.devhelp2 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-persist-file.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/streams.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-stream-memory.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/running-context.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/up.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-stream-client.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/persist.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/right.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/home.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/debugging.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-item-container.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/misc.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-config-database.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libbonobo/libbonobo-bonobo-item-handler.html 0644 root bin
+d none /opt/csw/share/idl 0755 root bin
+d none /opt/csw/share/idl/bonobo-2.0 0755 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Property.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Control.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_UI.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Sample_Echo.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Gdk.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_ItemContainer.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Application.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Persist.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Context.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Clipboard.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Print.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Exception.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Canvas.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Embeddable.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Moniker.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Listener.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Storage.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-2.0/Bonobo_Zoomable.idl 0644 root bin
+d none /opt/csw/share/idl/bonobo-activation-2.0 0755 root bin
+f none /opt/csw/share/idl/bonobo-activation-2.0/Bonobo_ObjectDirectory.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-activation-2.0/Bonobo_Activation_types.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-activation-2.0/Bonobo_ActivationContext.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-activation-2.0/Bonobo_GenericFactory.idl 0644 root bin
+f none /opt/csw/share/idl/bonobo-activation-2.0/Bonobo_Unknown.idl 0644 root bin
+d none /opt/csw/bin 0755 root bin
+f none /opt/csw/bin/activation-client 0755 root bin
+f none /opt/csw/bin/echo-client-2 0755 root bin
+f none /opt/csw/bin/bonobo-activation-run-query 0755 root bin
+f none /opt/csw/bin/bonobo-slay 0755 root bin
+d none /opt/csw/libexec 0755 root bin
+f none /opt/csw/libexec/bonobo-activation-server 0755 root bin
+d none /opt/csw/etc 0755 root bin
+d none /opt/csw/etc/bonobo-activation 0755 root bin
+f none /opt/csw/etc/bonobo-activation/bonobo-activation-config.xml 0644 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