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

theferret at users.sourceforge.net theferret at users.sourceforge.net
Mon Jun 28 05:40:58 CEST 2010


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

Log Message:
-----------
libgnomeui: new

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


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


Added: csw/mgar/pkg/libgnomeui/branch-c/Makefile
===================================================================
--- csw/mgar/pkg/libgnomeui/branch-c/Makefile	                        (rev 0)
+++ csw/mgar/pkg/libgnomeui/branch-c/Makefile	2010-06-28 03:40:57 UTC (rev 10356)
@@ -0,0 +1,169 @@
+# 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 ?= libgnomeui-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/libgnomeui/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 LIBS=-lm --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.LIB cswstage/COPYING)
+	@rm -f build/.*64.done
+	touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32:	build/.configure-$(ARCH)-32.done
+	@echo $@ done
+build-$(ARCH)-32:	build/.build-$(ARCH)-32.done
+	@echo $@ done
+stage-$(ARCH)-32:	build/.stage-$(ARCH)-32.done
+	@echo $@ done
+
+# manual targets
+pkgproto:
+	cat $(SRCDIR)/cswstage/prototype | sed 's/root root$$/root bin/'>prototype
+	@echo Dont forget to add a COPYING line !!

Added: csw/mgar/pkg/libgnomeui/branch-c/copyright
===================================================================
--- csw/mgar/pkg/libgnomeui/branch-c/copyright	                        (rev 0)
+++ csw/mgar/pkg/libgnomeui/branch-c/copyright	2010-06-28 03:40:57 UTC (rev 10356)
@@ -0,0 +1,2 @@
+Please see /opt/csw/share/gtk-doc/html/libgnomeui/COPYING for full
+text of license (LGPL v2)

Added: csw/mgar/pkg/libgnomeui/branch-c/depend
===================================================================
--- csw/mgar/pkg/libgnomeui/branch-c/depend	                        (rev 0)
+++ csw/mgar/pkg/libgnomeui/branch-c/depend	2010-06-28 03:40:57 UTC (rev 10356)
@@ -0,0 +1,23 @@
+P	CSWbonobo2
+P	CSWdbusglib
+P	CSWfconfig
+P	CSWftype2
+P	CSWgconf2
+P	CSWggettextrt
+P	CSWglib2
+P	CSWgnomekeyring
+P	CSWgnomevfs2
+P	CSWgtk2
+P	CSWlibart
+P	CSWlibatk
+P	CSWlibbonoboui
+P	CSWlibcairo
+P	CSWlibdbus
+P	CSWlibglade2
+P	CSWlibgnome
+P	CSWlibgnomecanvas
+P	CSWlibpopt
+P	CSWlibxml2
+P	CSWorbit2
+P	CSWosslrt
+P	CSWpango

Added: csw/mgar/pkg/libgnomeui/branch-c/pkginfo
===================================================================
--- csw/mgar/pkg/libgnomeui/branch-c/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/libgnomeui/branch-c/pkginfo	2010-06-28 03:40:57 UTC (rev 10356)
@@ -0,0 +1,8 @@
+PKG=CSWlibgnomeui
+NAME=libgnomeui - The main GNOME 2 UI library
+VERSION=2.24.3,REV=2010.06.26
+CATEGORY=application
+VENDOR=http://www.gnome.org/ packaged for CSW by Philip Brown
+HOTLINE=http://www.opencsw.org/bugtrack/
+EMAIL=phil at opencsw.org
+OPENCSW_REPOSITORY=https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/pkg/libgnomeui/branch-c

Added: csw/mgar/pkg/libgnomeui/branch-c/prototype
===================================================================
--- csw/mgar/pkg/libgnomeui/branch-c/prototype	                        (rev 0)
+++ csw/mgar/pkg/libgnomeui/branch-c/prototype	2010-06-28 03:40:57 UTC (rev 10356)
@@ -0,0 +1,485 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/lib 0755 root bin
+f none /opt/csw/lib/libgnomeui-2.so.0.2400.3 0755 root bin
+s none /opt/csw/lib/libgnomeui-2.so.0=libgnomeui-2.so.0.2400.3
+d none /opt/csw/lib/libglade 0755 root bin
+d none /opt/csw/lib/libglade/2.0 0755 root bin
+f none /opt/csw/lib/libglade/2.0/libgnome.so 0755 root bin
+f none /opt/csw/lib/libglade/2.0/libgnome.la 0755 root bin
+s none /opt/csw/lib/libgnomeui-2.so=libgnomeui-2.so.0.2400.3
+f none /opt/csw/lib/libgnomeui-2.la 0755 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/libgnomeui-2.0.pc 0644 root bin
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/libgnomeui-2.0 0755 root bin
+f none /opt/csw/include/libgnomeui-2.0/gnome.h 0644 root bin
+d none /opt/csw/include/libgnomeui-2.0/libgnomeui 0755 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-druid-page.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-font-picker.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-standard.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-icon-item.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-ui-init.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-popup-menu.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-authentication-manager.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-entry.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-mdi-child.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-uidefs.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-mdi-generic-child.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-dateedit.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-pixmap-entry.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-icon-lookup.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-color-picker.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-client.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-help.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-href.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-mdi-session.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-file-entry.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-about.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-icon-sel.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-password-dialog.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-theme-parser.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-pixmap.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-propertybox.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/libgnomeui.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-dialog-util.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-scores.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-stock-icons.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-messagebox.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-types.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-app-helper.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-window.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-icon-list.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-vfs-util.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-thumbnail.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-window-icon.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-druid.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-url.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-icon-theme.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-appbar.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-ice.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-icon-entry.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-dialog.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-druid-page-edge.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-app.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-mdi.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnome-app-util.h 0644 root bin
+f none /opt/csw/include/libgnomeui-2.0/libgnomeui/gnometypebuiltins.h 0644 root bin
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/pixmaps 0755 root bin
+f none /opt/csw/share/pixmaps/gnome-about-logo.png 0644 root bin
+d none /opt/csw/share/locale 0755 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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/mi 0755 root bin
+d none /opt/csw/share/locale/mi/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/mi/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/af 0755 root bin
+d none /opt/csw/share/locale/af/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/af/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/tt 0755 root bin
+d none /opt/csw/share/locale/tt/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/tt/LC_MESSAGES/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/sr at ije 0755 root bin
+d none /opt/csw/share/locale/sr at ije/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/sr at ije/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/nds 0755 root bin
+d none /opt/csw/share/locale/nds/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nds/LC_MESSAGES/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/uz at cyrillic 0755 root bin
+d none /opt/csw/share/locale/uz at cyrillic/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/uz at cyrillic/LC_MESSAGES/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/si 0755 root bin
+d none /opt/csw/share/locale/si/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/si/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/crh 0755 root bin
+d none /opt/csw/share/locale/crh/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/crh/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/tk 0755 root bin
+d none /opt/csw/share/locale/tk/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/tk/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/ast 0755 root bin
+d none /opt/csw/share/locale/ast/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ast/LC_MESSAGES/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/la 0755 root bin
+d none /opt/csw/share/locale/la/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/la/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/nso 0755 root bin
+d none /opt/csw/share/locale/nso/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/nso/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/be at latin 0755 root bin
+d none /opt/csw/share/locale/be at latin/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/be at latin/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/ps 0755 root bin
+d none /opt/csw/share/locale/ps/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/ps/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/hy 0755 root bin
+d none /opt/csw/share/locale/hy/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/hy/LC_MESSAGES/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/zu 0755 root bin
+d none /opt/csw/share/locale/zu/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/zu/LC_MESSAGES/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-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/libgnomeui-2.0.mo 0644 root bin
+d none /opt/csw/share/locale/fur 0755 root bin
+d none /opt/csw/share/locale/fur/LC_MESSAGES 0755 root bin
+f none /opt/csw/share/locale/fur/LC_MESSAGES/libgnomeui-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/libgnomeui 0755 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/COPYING=COPYING 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeDruidPageStandard.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeIce.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeThumbnail.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeFontPicker.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomePixmapEntry.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix08.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeMDI.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/miscellaneous.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_attach.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_menu_about.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeDialog.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix10.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeIconTheme.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_menu_blank.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeAuthentication.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-app-util.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_midi.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeScores.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeAppBar.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_book_red.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-stock-icons.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/home.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/index.sgml 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_trash.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomePropertyBox.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_timer.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mail_receive.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix04.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mail_forward.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/style.css 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/index.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-ui-init.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeClient.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeDruidPageEdge.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mail.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeMultiScreen.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix05.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/up.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/druids.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_line_in.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeIconSelection.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeEntry.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnometypebuiltins.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix01.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/initialization.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-uidefs.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-window-icon.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeMessageBox.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-mdi-session.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_book_green.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/fixme.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_multiple_file.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix09.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeColorPicker.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeMDIGenericChild.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mail_compose.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-vfs-util.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-popup-menu.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-types.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-app-helper.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix07.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_trash_full.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix03.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-objects.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-dialog-util.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeDruid.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_book_open.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/application-mgmt.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mic.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui.devhelp2 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeThemeFile.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui.devhelp 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomeIconLookup.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_scores.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mail_reply.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_not.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomePixmap.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeDateEdit.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeIconEntry.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_text_bulleted_list.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeApp.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_table_fill.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/left.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_text_indent.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_book_yellow.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeIconTextItem.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_text_unindent.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_book_blue.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/pt01.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeMDIChild.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeHRef.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-GnomePassword.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/deprecated.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_text_numbered_list.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/libgnomeui-gnome-window.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix06.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_timer_stopped.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_mail_send.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeAbout.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/right.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/ix02.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeDruidPage.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeIconList.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/GnomeFileEntry.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_table_borders.png 0644 root bin
+f none /opt/csw/share/gtk-doc/html/libgnomeui/stock_volume.png 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