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

theferret at users.sourceforge.net theferret at users.sourceforge.net
Tue Jun 8 19:26:00 CEST 2010


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

Log Message:
-----------
libpango: works for 64bit compiles now

Modified Paths:
--------------
    csw/mgar/pkg/libpango/trunk/Makefile
    csw/mgar/pkg/libpango/trunk/README
    csw/mgar/pkg/libpango/trunk/devel/pkginfo
    csw/mgar/pkg/libpango/trunk/doc/pkginfo
    csw/mgar/pkg/libpango/trunk/doc/prototype
    csw/mgar/pkg/libpango/trunk/pkginfo
    csw/mgar/pkg/libpango/trunk/prototype.i386
    csw/mgar/pkg/libpango/trunk/prototype.sparc

Added Paths:
-----------
    csw/mgar/pkg/libpango/Makefile
    csw/mgar/pkg/libpango/trunk/devel/prototype.i386
    csw/mgar/pkg/libpango/trunk/devel/prototype.sparc

Removed Paths:
-------------
    csw/mgar/pkg/libpango/trunk/devel/prototype

Added: csw/mgar/pkg/libpango/Makefile
===================================================================
--- csw/mgar/pkg/libpango/Makefile	                        (rev 0)
+++ csw/mgar/pkg/libpango/Makefile	2010-06-08 17:26:00 UTC (rev 10133)
@@ -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) $@

Modified: csw/mgar/pkg/libpango/trunk/Makefile
===================================================================
--- csw/mgar/pkg/libpango/trunk/Makefile	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/Makefile	2010-06-08 17:26:00 UTC (rev 10133)
@@ -1,91 +1,226 @@
-#This Makefile originally generated from a template under 
-# pkg/TEMPLATES/createpkg
-#   -- THis is actually  from the "build sparcv9" Makefile,
-#  but I cant get v9 build working...
+# 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 "?="
 
-# So rest of this file is a bit of a hack on a hack.
 
-# You will most likely have to use GNU make to use it.
-# This is one specifically hacked to make building sparcv9 packages
-# easier.
-#
-# Steps to use:
-# 
-# 1. put your normal prototype  as prototype.i386
-# 2. copy to prototype.sparc and edit as appropriate
-# 3. search for "XXX" and replace with appropriate string
-#
-# 4. build your package with:
-#    "make", "make sparcv9", "make package"
+# If you do NOT want to build 64bit libs, remove the $(ARCH)-64 from
+# the "all:" target.
 
+# If you DO want to, then leave it in, and also customize your
+#  the build/.stage-$(ARCH)-64.done    target(s),
+# PLUS, customize your prototype file(s) as needed
+# Dont forget to handle any 64bit pkg-config .pc files properly!!
 
+# Organization: variable defintions up top,
+# targets in second half.
+# Note that assignments with "?=" mean "assign if not already assigned.
 
-## hax for sparcv9
-#### THis is more complicated than my regular sparcv9 hack, 
-# so had to make a custom hack.
+# Where do we keep local downloads of software src files
+ARCHIVEDIR ?= /home/src
+ARCHIVENAME ?= pango-1.28.0.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/pango/1.28
 
-BUILDDIR=build/*
+ARCH := $(shell /bin/uname -p)
 
+LDFLAGS_COMMON :=
 
+SRCDIR= build/*
+DESTDIR=$(SRCDIR)/cswstage
 
-STDFILES=pkginfo copyright prototype
-FILES=
+# DO NOT specify the arch-64 stuff such as -m64 here.
+# the individual targets will do that.
 
-all:	build package
+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
 
-build:	build/.config.done
-	(cd $(BUILDDIR) ; \
-	$(MAKE) ; \
-	MAKE=$(MAKE) stagepkg ; cp COPYING cswstage/.)
+CONFIGURE_64_sparc=  --libdir=/opt/csw/lib/sparcv9
+CONFIGURE_64_i386=   --libdir=/opt/csw/lib/amd64
+CONFIGURE_64_EXTRAS:=  $(CONFIGURE_64_$(ARCH)) --enable-introspection=no
 
+PC64DIR_sparc=/opt/csw/lib/sparcv9/pkgconfig
+PC64DIR_i386=/opt/csw/lib/amd64/pkgconfig
 
-# dummy target for configure
-build/.config.done:
-	@echo Configuring with:
-	@echo CC=$(CC) $(CFLAGS)
-	@echo CXX=$(CXX) $(CXXFLAGS)
-	(cd $(BUILDDIR) ; \
-	test -f ../../patchfile.preconf && \
-		gpatch -p0 <../../patchfile.preconf ; \
-	./configure --prefix=/opt/csw --disable-static ; \
-	if test -f ../../patchfile.postconf ; then \
-                 gpatch -p0 <../../patchfile.postconf ; fi)
-	touch build/.config.done
+LDFLAGS_64_sparc := -R/opt/csw/lib/sparcv9 -L/opt/csw/lib/sparcv9
+LDFLAGS_64_i386  := -R/opt/csw/lib/amd64 -L/opt/csw/lib/amd64
 
 
-# I tried depending this on   $(BUILDDIR)/config.log  but that didnt stick
-configure:	build/.config.done
+CREATEPKG=createpkg -r `pwd`/build/*/cswstage
 
-sparcv9:
-	(cd $(BUILDDIR) ; \
-	gmake clean;  \
-	LD_OPTIONS="" gmake CFLAGS='-xstrconst -fast -xarch=v9 -mt' \
-	   CXXFLAGS='-fast -xarch=v9 -mt' \
-	  LDFLAGS='-R/opt/csw/lib/sparcv9 -L/opt/csw/lib/sparcv9'  ;\
-	  cd pango ;\
-	  cp `find .libs -type f -name 'lib*.so*'` ../cswstage ;\
-	  cd .. ;\
-	  for f in *.pc ; do sed 's:libdir=.*:/opt/csw/lib/sparcv9:' $$f>cswstage/$$f.sparcv9 ; \
-	  done ;\
-	echo sparcv9 build done  )
 
+all:	$(ARCH)-32 build/.stage1 $(ARCH)-64 package
 
-package:	$(STDFILE) $(FILES)
-	createpkg -r `pwd`/build/*/cswstage
-	cd devel; createpkg -r `pwd`/../build/*/cswstage; cd ..
-	cd doc; createpkg -r `pwd`/../build/*/cswstage; cd ..
-	mv */*.pkg.gz .
+# ARCH-XX handles configure, build, and stage for its own combo
+# 
+
+EXTRACTPROG ?= /bin/echo ERROR: need to set EXTRACTPROG ; exit 1 ;
+
+
+
+extract:
+	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
 	
 
+clean distclean:
+	@echo Calling $@ in $(SRCDIR)
+	$(MAKE) -C $(SRCDIR) $@
 
-pkgclean:
-	rm -f *.pkg.gz package
+# This is a bit of a hack.. it does a "make clean", 
+# only when we're between 32bit and 64bit builds, when doing "make all".
+# Once we're IN the 64bit builds, it should not be automatically called.
+build/.stage1:
+	@echo Doing inter 32-64 bit cleanup
+	$(MAKE) -C $(SRCDIR) distclean
+	touch $@
+	
 
-clean:	pkgclean
-	cd $(BUILDDIR) && make clean
+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)'
 
-reallyclean:	clean
-	rm -f $BUILDDIR/config.log $BUILDDIR/config.cache $BUILDDIR/config.status
-	rm -f build/.config.done	
+garchive:
+	@echo Call the fetch target instead: it does the same thing.
+
+
+# Downloads the source code to the common ARCHIVEDIR
+fetch:	$(ARCHIVEDIR)/$(ARCHIVENAME)
+	@echo fetch done
+
+$(ARCHIVEDIR)/$(ARCHIVENAME):
+	wget -P $(ARCHIVEDIR) $(MASTER_SITES)/$(ARCHIVENAME)
+
+patch:
+	@echo patch: patching is handled automatically as part of the configure phase.
+
+package:
+	$(CREATEPKG)
+	for subdir in devel doc ; do \
+	   set +e ;\
+	   cd $$subdir ;\
+	   createpkg -r ../build/*/cswstage ;\
+	   mv *.pkg* .. ; cd .. ;\
+	done
+#yes I know createpkg will error out because it calls checkpkg
+
+# split out generic $(ARCH) sections to platform-specific sections if needed.
+# but it usually should not be neccessary
+
+
+$(ARCH)-32 ::   configure-$(ARCH)-32 build-$(ARCH)-32 stage-$(ARCH)-32
+	@echo Completed $(ARCH)-32 configure, build and stage
+	touch build/.$(ARCH)-32.done
+
+
+$(ARCH)-64 ::  stage-$(ARCH)-32 configure-$(ARCH)-64 build-$(ARCH)-64 stage-$(ARCH)-64
+	@echo Completed $@ configure, build and stage
+	touch build/.$(ARCH)-64.done
+
+build/.$(ARCH)-32.done:	$(ARCH)-32
+
+build/.$(ARCH)-64.done:	$(ARCH)-64
+
+
+# Since we share the same src tree, we should only need to
+# pre-configure patching one time for all.
+build/.patch-preconf.done:
+	if test -f patchfile.preconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.preconf ; fi
+	touch $@
+
+
+#Note: I WANT to use LDFLAGS=-R$$ORIGIN, but stupid libtool
+# wont allow it! so force it at build time
+build/.configure-$(ARCH)-32.done:	build/.patch-preconf.done
+	@echo handling $@ target
+	(cd $(SRCDIR) ; \
+	  CFLAGS="$(CFLAGS_COMMON) $(CFLAGS_$(ARCH))" \
+	  CXXFLAGS="$(CXXFLAGS_COMMON)" \
+	  LDFLAGS='-R/opt/csw/lib -L/opt/csw/lib' \
+	  $(CONFIGURE) )
+	if test -f patchfile.postconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.postconf ; fi
+	touch $@
+
+build/.configure-$(ARCH)-64.done:	build/.patch-preconf.done
+	if test "$(ARCH)" = "i386" -a "`uname -r`" != "5.10" ; then \
+		echo Error: do 64bit for i386 on sol19 only ; exit 1 ; fi
+	@echo handling $@ target
+	(cd $(SRCDIR) ; \
+	  CFLAGS="$(CFLAGS_COMMON) -m64"  \
+	  CXXFLAGS="$(CXXFLAGS_COMMON) -m64" \
+	  LDFLAGS="$(LDFLAGS_64_$(ARCH))" \
+	  PKG_CONFIG_PATH=/opt/csw/lib/64/pkgconfig \
+	  $(CONFIGURE) $(CONFIGURE_64_EXTRAS)  )
+	if test -f patchfile.postconf ; then \
+	 gpatch -d $(SRCDIR) -p0  <patchfile.postconf ; fi
+	touch $@
+
+
+# See note about LDFLAGS and ORIGIN, higher up	
+build/.build-$(ARCH)-32.done build/.build-$(ARCH)-64.done:
+	@echo handling $@ target
+	LD_OPTIONS='-R$$ORIGIN' $(MAKE) -C $(SRCDIR) $(MFLAGS)
+	touch $@
+
+
+
+## NOTE: This is a DESTRUCTIVE target build!!
+## 'stagepkg'  will destroy any prior "cswstage" directory!!!
+## So, we remove all 64bit milestones
+build/.stage-$(ARCH)-32.done:
+	@echo Handling stage of $(ARCH)-32
+	(cd $(SRCDIR) ; MAKE=gmake stagepkg)
+	@rm -f build/.*64.done
+	touch $@
+
+
+# Note: This is the tricky bit. we cannot just call 
+#  "stagepkg": we dont usually want EVERYTHING; just the
+# libs that are rebuilt in 64bit, and we need them to go to
+# the subdirs, not the regular place!
+# SOME things, will have a clean libdir, and respect --libdir,
+# and do the right thing easily. However, many will not!
+# SO, odds are you'll have to write a customized target
+build/.stage-$(ARCH)-64.done:	$(SRCDIR)/cswstage
+	@echo ""
+	@echo Running special staging customized for pango64
+	@(cd $(SRCDIR)/pango;  $(MAKE) DESTDIR=`pwd`/../cswstage install-libLTLIBRARIES)
+	@(cd $(SRCDIR)/modules;  $(MAKE) DESTDIR=`pwd`/../cswstage install)
+	@(cd $(SRCDIR); mkdir -p cswstage/$(PC64DIR_$(ARCH)) )
+	@(cd $(SRCDIR); cp *.pc cswstage/$(PC64DIR_$(ARCH)) )
+	@echo ""
+	(cd $(SRCDIR); cp COPYING cswstage)
+	touch $@
+
+
+
+#These are the easy-to-type targets. They just trigger the real ones.
+configure-$(ARCH)-32:	build/.configure-$(ARCH)-32.done
+	@echo $@ done
+build-$(ARCH)-32:	build/.build-$(ARCH)-32.done
+	@echo $@ done
+stage-$(ARCH)-32:	build/.stage-$(ARCH)-32.done
+	@echo $@ done
+configure-$(ARCH)-64:	build/.configure-$(ARCH)-64.done
+	@echo $@ done
+build-$(ARCH)-64:	build/.build-$(ARCH)-64.done
+	@echo $@ done
+stage-$(ARCH)-64:	build/.stage-$(ARCH)-64.done
+	@echo $@ done
+

Modified: csw/mgar/pkg/libpango/trunk/README
===================================================================
--- csw/mgar/pkg/libpango/trunk/README	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/README	2010-06-08 17:26:00 UTC (rev 10133)
@@ -1,16 +1,47 @@
 This is a "quickie" redo of pango, for our X11 recompile project
 ( http://wiki.opencsw.org/project-x11-reloaded )
 
-It unfortunately does not have 64bit support, because Phil had
- issues when trying to get that to work right. some kind of complaints from
-  glib.h includes or some such.
+ALthough it's now becoming a little less "quickie" and a bit more
+"proper".
+64bit issues have been resolved.
 
-Normally, this would delay release of the package. but since our X11
-is in dire straits, higher priority is given to "Fix X11 for 95%
-  of everyone" vs "hold this until 64bit is fixed".
+It is in here, rather than in pkg/pango, because the software 'name'
+is libpango, so I thought this was the right dirname to use.
 
 
-include and pkgconfig files get split out into _devel. (see subdir)
-htmldoc gets split into _doc. 
-everything else stays in top level. 
+PROBLEM SHOOTING:
 
+If amd64 blows up about g-ir-scanner, then just remove it from config.status
+(Set INTROSPECTION_SCANNER to "")
+Actually, set all INTROSPECTION stuff to "", and then set
+S["HAVE_INTROSPECTION_FALSE"]=""
+S["HAVE_INTROSPECTION_TRUE"]="#"
+
+eeeexcept that doesnt seem to be enough, so we force --enable-introspection=no
+for the 64bit configs
+
+
+x86 also gets picky about the staging. Some problem with libfakeroot, at
+least on our build machine setup?
+
+You May have to manually redo the 32bit staging with
+  cd build/*;
+  gmake DESTDIR=$PWD/cswstage install
+
+
+
+TWEAKS FOR prototype files:
+
+
+
+*. include and pkgconfig files get split out into _devel. (see subdir)
+*. htmldoc gets split into _doc. 
+*. everything else stays in top level. 
+
+*. To get the 64bit libby stuffs, fgrep out "csw/lib" from a "pure" 
+   prototype, and then  sed s:/lib/:/lib/sparcv9/:  or amd64, as appropriate
+   Dont forget to update the devel package prototype if needed
+
+*. strip out .la files from top libdirs, but NOT from "modules" dirs!
+
+

Modified: csw/mgar/pkg/libpango/trunk/devel/pkginfo
===================================================================
--- csw/mgar/pkg/libpango/trunk/devel/pkginfo	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/devel/pkginfo	2010-06-08 17:26:00 UTC (rev 10133)
@@ -1,6 +1,6 @@
 PKG=CSWpangodevel
 NAME=libpango_devel - Pango Developer Files
-VERSION=1.26.2,REV=2010.05.30
+VERSION=1.28,REV=2010.06.07
 CATEGORY=application
 VENDOR=http://ftp.gnome.org/pub/GNOME/sources/pango packaged for CSW by Philip Brown
 HOTLINE=http://www.opencsw.org/bugtrack/

Deleted: csw/mgar/pkg/libpango/trunk/devel/prototype
===================================================================
--- csw/mgar/pkg/libpango/trunk/devel/prototype	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/devel/prototype	2010-06-08 17:26:00 UTC (rev 10133)
@@ -1,46 +0,0 @@
-i pkginfo
-i copyright
-i depend
-d none /opt/csw/include 0755 root bin
-d none /opt/csw/include/pango-1.0 0755 root bin
-d none /opt/csw/include/pango-1.0/pango 0755 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-script.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-glyph-item.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-glyph.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-types.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-break.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-gravity.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-item.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-features.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-utils.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-enum-types.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-bidi-type.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-attributes.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangox.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-language.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangoxft.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-tabs.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangofc-font.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-coverage.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangofc-decoder.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangoft2.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-renderer.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-layout.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-context.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-ot.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangocairo.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-modules.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-engine.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangoxft-render.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-fontmap.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-font.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pangofc-fontmap.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-fontset.h 0644 root bin
-f none /opt/csw/include/pango-1.0/pango/pango-matrix.h 0644 root bin
-d none /opt/csw/lib/pkgconfig 0755 root bin
-f none /opt/csw/lib/pkgconfig/pangocairo.pc 0644 root bin
-f none /opt/csw/lib/pkgconfig/pangoft2.pc 0644 root bin
-f none /opt/csw/lib/pkgconfig/pango.pc 0644 root bin
-f none /opt/csw/lib/pkgconfig/pangox.pc 0644 root bin
-f none /opt/csw/lib/pkgconfig/pangoxft.pc 0644 root bin

Added: csw/mgar/pkg/libpango/trunk/devel/prototype.i386
===================================================================
--- csw/mgar/pkg/libpango/trunk/devel/prototype.i386	                        (rev 0)
+++ csw/mgar/pkg/libpango/trunk/devel/prototype.i386	2010-06-08 17:26:00 UTC (rev 10133)
@@ -0,0 +1,52 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/pango-1.0 0755 root bin
+d none /opt/csw/include/pango-1.0/pango 0755 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-script.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-glyph-item.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-glyph.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-types.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-break.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-gravity.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-item.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-features.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-utils.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-enum-types.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-bidi-type.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-attributes.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangox.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-language.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangoxft.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-tabs.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangofc-font.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-coverage.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangofc-decoder.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangoft2.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-renderer.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-layout.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-context.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-ot.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangocairo.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-modules.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-engine.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangoxft-render.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-fontmap.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-font.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangofc-fontmap.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-fontset.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-matrix.h 0644 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/pangocairo.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pangoft2.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pango.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pangox.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pangoxft.pc 0644 root bin
+d none /opt/csw/lib/amd64/pkgconfig 0755 root bin
+f none /opt/csw/lib/amd64/pkgconfig/pangocairo.pc 0644 root bin
+f none /opt/csw/lib/amd64/pkgconfig/pangoft2.pc 0644 root bin
+f none /opt/csw/lib/amd64/pkgconfig/pango.pc 0644 root bin
+f none /opt/csw/lib/amd64/pkgconfig/pangox.pc 0644 root bin
+f none /opt/csw/lib/amd64/pkgconfig/pangoxft.pc 0644 root bin

Added: csw/mgar/pkg/libpango/trunk/devel/prototype.sparc
===================================================================
--- csw/mgar/pkg/libpango/trunk/devel/prototype.sparc	                        (rev 0)
+++ csw/mgar/pkg/libpango/trunk/devel/prototype.sparc	2010-06-08 17:26:00 UTC (rev 10133)
@@ -0,0 +1,52 @@
+i pkginfo
+i copyright
+i depend
+d none /opt/csw/include 0755 root bin
+d none /opt/csw/include/pango-1.0 0755 root bin
+d none /opt/csw/include/pango-1.0/pango 0755 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-script.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-glyph-item.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-glyph.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-types.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-break.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-gravity.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-item.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-features.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-utils.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-enum-types.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-bidi-type.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-attributes.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangox.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-language.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangoxft.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-tabs.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangofc-font.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-coverage.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangofc-decoder.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangoft2.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-renderer.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-layout.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-context.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-ot.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangocairo.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-modules.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-engine.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangoxft-render.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-fontmap.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-font.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pangofc-fontmap.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-fontset.h 0644 root bin
+f none /opt/csw/include/pango-1.0/pango/pango-matrix.h 0644 root bin
+d none /opt/csw/lib/pkgconfig 0755 root bin
+f none /opt/csw/lib/pkgconfig/pangocairo.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pangoft2.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pango.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pangox.pc 0644 root bin
+f none /opt/csw/lib/pkgconfig/pangoxft.pc 0644 root bin
+d none /opt/csw/lib/sparcv9/pkgconfig 0755 root bin
+f none /opt/csw/lib/sparcv9/pkgconfig/pangocairo.pc 0644 root bin
+f none /opt/csw/lib/sparcv9/pkgconfig/pangoft2.pc 0644 root bin
+f none /opt/csw/lib/sparcv9/pkgconfig/pango.pc 0644 root bin
+f none /opt/csw/lib/sparcv9/pkgconfig/pangox.pc 0644 root bin
+f none /opt/csw/lib/sparcv9/pkgconfig/pangoxft.pc 0644 root bin

Modified: csw/mgar/pkg/libpango/trunk/doc/pkginfo
===================================================================
--- csw/mgar/pkg/libpango/trunk/doc/pkginfo	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/doc/pkginfo	2010-06-08 17:26:00 UTC (rev 10133)
@@ -1,6 +1,7 @@
 PKG=CSWpangodoc
 NAME=libpango_doc - Pango HTML Documentation
-VERSION=1.26.2,REV=2010.05.30
+ARCH=all
+VERSION=1.28.0,REV=2010.06.07
 CATEGORY=application
 VENDOR=http://ftp.gnome.org/pub/GNOME/sources/pango packaged for CSW by Philip Brown
 HOTLINE=http://www.opencsw.org/bugtrack/

Modified: csw/mgar/pkg/libpango/trunk/doc/prototype
===================================================================
--- csw/mgar/pkg/libpango/trunk/doc/prototype	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/doc/prototype	2010-06-08 17:26:00 UTC (rev 10133)
@@ -10,6 +10,7 @@
 f none /opt/csw/share/gtk-doc/html/pango/pango-Layout-Objects.html 0644 root bin
 f none /opt/csw/share/gtk-doc/html/pango/index.html 0644 root bin
 f none /opt/csw/share/gtk-doc/html/pango/index-1.26.html 0644 root bin
+f none /opt/csw/share/gtk-doc/html/pango/index-1.28.html 0644 root bin
 f none /opt/csw/share/gtk-doc/html/pango/pango-Text-Processing.html 0644 root bin
 f none /opt/csw/share/gtk-doc/html/pango/index-1.22.html 0644 root bin
 f none /opt/csw/share/gtk-doc/html/pango/index.sgml 0644 root bin

Modified: csw/mgar/pkg/libpango/trunk/pkginfo
===================================================================
--- csw/mgar/pkg/libpango/trunk/pkginfo	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/pkginfo	2010-06-08 17:26:00 UTC (rev 10133)
@@ -1,6 +1,6 @@
 PKG=CSWpango
 NAME=libpango - A framework for the layout and rendering of international text
-VERSION=1.26.2,REV=2010.05.30
+VERSION=1.28.0,REV=2010.06.07
 CATEGORY=application
 VENDOR=http://ftp.gnome.org/pub/GNOME/sources/pango packaged for CSW by Philip Brown
 HOTLINE=http://www.opencsw.org/bugtrack/

Modified: csw/mgar/pkg/libpango/trunk/prototype.i386
===================================================================
--- csw/mgar/pkg/libpango/trunk/prototype.i386	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/prototype.i386	2010-06-08 17:26:00 UTC (rev 10133)
@@ -9,19 +9,19 @@
 d none /opt/csw/etc/pango 0755 root bin
 f none /opt/csw/etc/pango/pangox.aliases 0644 root bin
 d none /opt/csw/lib 0755 root bin
-s none /opt/csw/lib/libpangoxft-1.0.so.0=libpangoxft-1.0.so.0.2600.2
-f none /opt/csw/lib/libpangoxft-1.0.so.0.2600.2 0755 root bin
-f none /opt/csw/lib/libpangocairo-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpango-1.0.so=libpango-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangox-1.0.so.0=libpangox-1.0.so.0.2600.2
-f none /opt/csw/lib/libpangox-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpangoxft-1.0.so=libpangoxft-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangoft2-1.0.so.0=libpangoft2-1.0.so.0.2600.2
-f none /opt/csw/lib/libpango-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpangox-1.0.so=libpangox-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangocairo-1.0.so=libpangocairo-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangoft2-1.0.so=libpangoft2-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangocairo-1.0.so.0=libpangocairo-1.0.so.0.2600.2
+s none /opt/csw/lib/libpangoxft-1.0.so.0=libpangoxft-1.0.so.0.2800.0
+f none /opt/csw/lib/libpangoxft-1.0.so.0.2800.0 0755 root bin
+f none /opt/csw/lib/libpangocairo-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpango-1.0.so=libpango-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangox-1.0.so.0=libpangox-1.0.so.0.2800.0
+f none /opt/csw/lib/libpangox-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpangoxft-1.0.so=libpangoxft-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangoft2-1.0.so.0=libpangoft2-1.0.so.0.2800.0
+f none /opt/csw/lib/libpango-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpangox-1.0.so=libpangox-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangocairo-1.0.so=libpangocairo-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangoft2-1.0.so=libpangoft2-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangocairo-1.0.so.0=libpangocairo-1.0.so.0.2800.0
 d none /opt/csw/lib/pango 0755 root bin
 d none /opt/csw/lib/pango/1.6.0 0755 root bin
 d none /opt/csw/lib/pango/1.6.0/modules 0755 root bin
@@ -49,8 +49,8 @@
 f none /opt/csw/lib/pango/1.6.0/modules/pango-khmer-fc.so 0755 root bin
 f none /opt/csw/lib/pango/1.6.0/modules/pango-arabic-fc.la 0755 root bin
 f none /opt/csw/lib/pango/1.6.0/modules/pango-indic-fc.la 0755 root bin
-f none /opt/csw/lib/libpangoft2-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpango-1.0.so.0=libpango-1.0.so.0.2600.2
+f none /opt/csw/lib/libpangoft2-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpango-1.0.so.0=libpango-1.0.so.0.2800.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
@@ -58,3 +58,45 @@
 f none /opt/csw/share/man/man1/pango-view.1 0644 root bin
 d none /opt/csw/share/gtk-doc 0755 root bin
 f none /opt/csw/share/gtk-doc/COPYING.pango=COPYING 0644 root bin
+s none /opt/csw/lib/amd64/libpangoxft-1.0.so.0=libpangoxft-1.0.so.0.2800.0
+f none /opt/csw/lib/amd64/libpangoxft-1.0.so.0.2800.0 0755 root bin
+f none /opt/csw/lib/amd64/libpangocairo-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/amd64/libpango-1.0.so=libpango-1.0.so.0.2800.0
+s none /opt/csw/lib/amd64/libpangox-1.0.so.0=libpangox-1.0.so.0.2800.0
+f none /opt/csw/lib/amd64/libpangox-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/amd64/libpangoxft-1.0.so=libpangoxft-1.0.so.0.2800.0
+s none /opt/csw/lib/amd64/libpangoft2-1.0.so.0=libpangoft2-1.0.so.0.2800.0
+f none /opt/csw/lib/amd64/libpango-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/amd64/libpangox-1.0.so=libpangox-1.0.so.0.2800.0
+s none /opt/csw/lib/amd64/libpangocairo-1.0.so=libpangocairo-1.0.so.0.2800.0
+s none /opt/csw/lib/amd64/libpangoft2-1.0.so=libpangoft2-1.0.so.0.2800.0
+s none /opt/csw/lib/amd64/libpangocairo-1.0.so.0=libpangocairo-1.0.so.0.2800.0
+d none /opt/csw/lib/amd64/pango 0755 root bin
+d none /opt/csw/lib/amd64/pango/1.6.0 0755 root bin
+d none /opt/csw/lib/amd64/pango/1.6.0/modules 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-hangul-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-thai-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-hebrew-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-arabic-lang.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-basic-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-tibetan-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-tibetan-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-arabic-lang.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-basic-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-thai-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-hebrew-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-hangul-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-arabic-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-indic-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-basic-x.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-khmer-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-indic-lang.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-syriac-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-basic-x.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-indic-lang.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-syriac-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-khmer-fc.so 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-arabic-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/pango/1.6.0/modules/pango-indic-fc.la 0755 root bin
+f none /opt/csw/lib/amd64/libpangoft2-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/amd64/libpango-1.0.so.0=libpango-1.0.so.0.2800.0

Modified: csw/mgar/pkg/libpango/trunk/prototype.sparc
===================================================================
--- csw/mgar/pkg/libpango/trunk/prototype.sparc	2010-06-08 17:22:48 UTC (rev 10132)
+++ csw/mgar/pkg/libpango/trunk/prototype.sparc	2010-06-08 17:26:00 UTC (rev 10133)
@@ -9,19 +9,19 @@
 d none /opt/csw/etc/pango 0755 root bin
 f none /opt/csw/etc/pango/pangox.aliases 0644 root bin
 d none /opt/csw/lib 0755 root bin
-s none /opt/csw/lib/libpangoxft-1.0.so.0=libpangoxft-1.0.so.0.2600.2
-f none /opt/csw/lib/libpangoxft-1.0.so.0.2600.2 0755 root bin
-f none /opt/csw/lib/libpangocairo-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpango-1.0.so=libpango-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangox-1.0.so.0=libpangox-1.0.so.0.2600.2
-f none /opt/csw/lib/libpangox-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpangoxft-1.0.so=libpangoxft-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangoft2-1.0.so.0=libpangoft2-1.0.so.0.2600.2
-f none /opt/csw/lib/libpango-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpangox-1.0.so=libpangox-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangocairo-1.0.so=libpangocairo-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangoft2-1.0.so=libpangoft2-1.0.so.0.2600.2
-s none /opt/csw/lib/libpangocairo-1.0.so.0=libpangocairo-1.0.so.0.2600.2
+s none /opt/csw/lib/libpangoxft-1.0.so.0=libpangoxft-1.0.so.0.2800.0
+f none /opt/csw/lib/libpangoxft-1.0.so.0.2800.0 0755 root bin
+f none /opt/csw/lib/libpangocairo-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpango-1.0.so=libpango-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangox-1.0.so.0=libpangox-1.0.so.0.2800.0
+f none /opt/csw/lib/libpangox-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpangoxft-1.0.so=libpangoxft-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangoft2-1.0.so.0=libpangoft2-1.0.so.0.2800.0
+f none /opt/csw/lib/libpango-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpangox-1.0.so=libpangox-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangocairo-1.0.so=libpangocairo-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangoft2-1.0.so=libpangoft2-1.0.so.0.2800.0
+s none /opt/csw/lib/libpangocairo-1.0.so.0=libpangocairo-1.0.so.0.2800.0
 d none /opt/csw/lib/pango 0755 root bin
 d none /opt/csw/lib/pango/1.6.0 0755 root bin
 d none /opt/csw/lib/pango/1.6.0/modules 0755 root bin
@@ -49,8 +49,8 @@
 f none /opt/csw/lib/pango/1.6.0/modules/pango-khmer-fc.so 0755 root bin
 f none /opt/csw/lib/pango/1.6.0/modules/pango-arabic-fc.la 0755 root bin
 f none /opt/csw/lib/pango/1.6.0/modules/pango-indic-fc.la 0755 root bin
-f none /opt/csw/lib/libpangoft2-1.0.so.0.2600.2 0755 root bin
-s none /opt/csw/lib/libpango-1.0.so.0=libpango-1.0.so.0.2600.2
+f none /opt/csw/lib/libpangoft2-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/libpango-1.0.so.0=libpango-1.0.so.0.2800.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
@@ -58,3 +58,45 @@
 f none /opt/csw/share/man/man1/pango-view.1 0644 root bin
 d none /opt/csw/share/gtk-doc 0755 root bin
 f none /opt/csw/share/gtk-doc/COPYING.pango=COPYING 0644 root bin
+s none /opt/csw/lib/sparcv9/libpangoxft-1.0.so.0=libpangoxft-1.0.so.0.2800.0
+f none /opt/csw/lib/sparcv9/libpangoxft-1.0.so.0.2800.0 0755 root bin
+f none /opt/csw/lib/sparcv9/libpangocairo-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/sparcv9/libpango-1.0.so=libpango-1.0.so.0.2800.0
+s none /opt/csw/lib/sparcv9/libpangox-1.0.so.0=libpangox-1.0.so.0.2800.0
+f none /opt/csw/lib/sparcv9/libpangox-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/sparcv9/libpangoxft-1.0.so=libpangoxft-1.0.so.0.2800.0
+s none /opt/csw/lib/sparcv9/libpangoft2-1.0.so.0=libpangoft2-1.0.so.0.2800.0
+f none /opt/csw/lib/sparcv9/libpango-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/sparcv9/libpangox-1.0.so=libpangox-1.0.so.0.2800.0
+s none /opt/csw/lib/sparcv9/libpangocairo-1.0.so=libpangocairo-1.0.so.0.2800.0
+s none /opt/csw/lib/sparcv9/libpangoft2-1.0.so=libpangoft2-1.0.so.0.2800.0
+s none /opt/csw/lib/sparcv9/libpangocairo-1.0.so.0=libpangocairo-1.0.so.0.2800.0
+d none /opt/csw/lib/sparcv9/pango 0755 root bin
+d none /opt/csw/lib/sparcv9/pango/1.6.0 0755 root bin
+d none /opt/csw/lib/sparcv9/pango/1.6.0/modules 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-hangul-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-thai-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-hebrew-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-arabic-lang.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-basic-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-tibetan-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-tibetan-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-arabic-lang.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-basic-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-thai-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-hebrew-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-hangul-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-arabic-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-indic-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-basic-x.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-khmer-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-indic-lang.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-syriac-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-basic-x.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-indic-lang.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-syriac-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-khmer-fc.so 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-arabic-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/pango/1.6.0/modules/pango-indic-fc.la 0755 root bin
+f none /opt/csw/lib/sparcv9/libpangoft2-1.0.so.0.2800.0 0755 root bin
+s none /opt/csw/lib/sparcv9/libpango-1.0.so.0=libpango-1.0.so.0.2800.0


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