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

theferret at users.sourceforge.net theferret at users.sourceforge.net
Tue Jun 29 02:06:05 CEST 2010


Revision: 10383
          http://gar.svn.sourceforge.net/gar/?rev=10383&view=rev
Author:   theferret
Date:     2010-06-29 00:06:05 +0000 (Tue, 29 Jun 2010)

Log Message:
-----------
gtk_engines: new respin. old bad version in gtk-engines, dont know how to rename

Added Paths:
-----------
    csw/mgar/pkg/gtk_engines/
    csw/mgar/pkg/gtk_engines/Makefile
    csw/mgar/pkg/gtk_engines/trunk/
    csw/mgar/pkg/gtk_engines/trunk/Makefile
    csw/mgar/pkg/gtk_engines/trunk/copyright
    csw/mgar/pkg/gtk_engines/trunk/depend
    csw/mgar/pkg/gtk_engines/trunk/pkginfo
    csw/mgar/pkg/gtk_engines/trunk/prototype

Added: csw/mgar/pkg/gtk_engines/Makefile
===================================================================
--- csw/mgar/pkg/gtk_engines/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gtk_engines/Makefile	2010-06-29 00:06:05 UTC (rev 10383)
@@ -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/gtk_engines/trunk
___________________________________________________________________
Added: svn:ignore
   + cookies
download
work
cswstage
build


Added: csw/mgar/pkg/gtk_engines/trunk/Makefile
===================================================================
--- csw/mgar/pkg/gtk_engines/trunk/Makefile	                        (rev 0)
+++ csw/mgar/pkg/gtk_engines/trunk/Makefile	2010-06-29 00:06:05 UTC (rev 10383)
@@ -0,0 +1,172 @@
+# This file is from TEMPLATES/createpkg/Makefile.lib32
+# 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 ?= gtk-engines-2.18.5.tar.bz2
+EXTRACTPROG ?= /usr/sfw/bin/gtar jfx
+
+# Only use ONE here. The name is used for compat with 'gar'.
+MASTER_SITES ?= http://ftp.acc.umu.se/pub/GNOME/sources/gtk-engines/2.18
+
+ARCH := $(shell /bin/uname -p)
+
+# for intltool only
+PATH := /opt/csw/gnu:$(PATH)
+
+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 cswstage/.)
+	@rm -f build/.*64.done
+	touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32:	build/.configure-$(ARCH)-32.done
+	@echo $@ done
+build-$(ARCH)-32:	build/.build-$(ARCH)-32.done
+	@echo $@ done
+stage-$(ARCH)-32:	build/.stage-$(ARCH)-32.done
+	@echo $@ done
+
+# manual targets
+pkgproto:
+	cat $(SRCDIR)/cswstage/prototype | sed 's/root root$$/root bin/'>prototype
+	@echo Dont forget to add a COPYING line !!

Added: csw/mgar/pkg/gtk_engines/trunk/copyright
===================================================================
Added: csw/mgar/pkg/gtk_engines/trunk/depend
===================================================================
--- csw/mgar/pkg/gtk_engines/trunk/depend	                        (rev 0)
+++ csw/mgar/pkg/gtk_engines/trunk/depend	2010-06-29 00:06:05 UTC (rev 10383)
@@ -0,0 +1,8 @@
+P	CSWfconfig
+P	CSWftype2
+P	CSWggettextrt
+P	CSWglib2
+P	CSWgtk2
+P	CSWlibatk
+P	CSWlibcairo
+P	CSWpango

Added: csw/mgar/pkg/gtk_engines/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/gtk_engines/trunk/pkginfo	                        (rev 0)
+++ csw/mgar/pkg/gtk_engines/trunk/pkginfo	2010-06-29 00:06:05 UTC (rev 10383)
@@ -0,0 +1,8 @@
+PKG=CSWgtkengines
+NAME=gtk_engines - A collection of basic theme engines for GTK+
+VERSION=2.18.5,REV=2010.06.29
+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/gtk_engines/trunk

Added: csw/mgar/pkg/gtk_engines/trunk/prototype
===================================================================
--- csw/mgar/pkg/gtk_engines/trunk/prototype	                        (rev 0)
+++ csw/mgar/pkg/gtk_engines/trunk/prototype	2010-06-29 00:06:05 UTC (rev 10383)
@@ -0,0 +1,238 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/share 0755 root bin
+d none /opt/csw/share/locale 0755 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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.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/gtk-engines.mo 0644 root bin
+d none /opt/csw/share/gtk-engines 0755 root bin
+f none /opt/csw/share/gtk-engines/glide.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/mist.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/crux-engine.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/clearlooks.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/thinice.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/hcengine.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/redmond95.xml 0644 root bin
+f none /opt/csw/share/gtk-engines/industrial.xml 0644 root bin
+d none /opt/csw/share/themes 0755 root bin
+d none /opt/csw/share/themes/Industrial 0755 root bin
+d none /opt/csw/share/themes/Industrial/gtk-2.0 0755 root bin
+f none /opt/csw/share/themes/Industrial/gtk-2.0/gtkrc 0644 root bin
+d none /opt/csw/share/themes/Redmond 0755 root bin
+d none /opt/csw/share/themes/Redmond/gtk-2.0 0755 root bin
+f none /opt/csw/share/themes/Redmond/gtk-2.0/gtkrc 0644 root bin
+d none /opt/csw/share/themes/Mist 0755 root bin
+d none /opt/csw/share/themes/Mist/gtk-2.0 0755 root bin
+f none /opt/csw/share/themes/Mist/gtk-2.0/gtkrc 0644 root bin
+d none /opt/csw/share/themes/Clearlooks 0755 root bin
+d none /opt/csw/share/themes/Clearlooks/gtk-2.0 0755 root bin
+f none /opt/csw/share/themes/Clearlooks/gtk-2.0/gtkrc 0644 root bin
+d none /opt/csw/share/themes/Crux 0755 root bin
+d none /opt/csw/share/themes/Crux/gtk-2.0 0755 root bin
+f none /opt/csw/share/themes/Crux/gtk-2.0/gtkrc 0644 root bin
+d none /opt/csw/share/themes/ThinIce 0755 root bin
+d none /opt/csw/share/themes/ThinIce/gtk-2.0 0755 root bin
+f none /opt/csw/share/themes/ThinIce/gtk-2.0/gtkrc 0644 root bin
+d none /opt/csw/lib 0755 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/gtk-engines-2.pc 0644 root bin
+d none /opt/csw/lib/gtk-2.0 0755 root bin
+d none /opt/csw/lib/gtk-2.0/2.10.0 0755 root bin
+d none /opt/csw/lib/gtk-2.0/2.10.0/engines 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libglide.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libhcengine.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libindustrial.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libthinice.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libclearlooks.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libclearlooks.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libthinice.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libindustrial.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libhcengine.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libglide.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libcrux-engine.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libmist.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libredmond95.la 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libmist.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libredmond95.so 0755 root bin
+f none /opt/csw/lib/gtk-2.0/2.10.0/engines/libcrux-engine.so 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