From chninkel at users.sourceforge.net Thu Jan 1 15:56:18 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 01 Jan 2009 14:56:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[2726] csw/mgar/pkg/ca_certificates/trunk Message-ID: Revision: 2726 http://gar.svn.sourceforge.net/gar/?rev=2726&view=rev Author: chninkel Date: 2009-01-01 14:56:18 +0000 (Thu, 01 Jan 2009) Log Message: ----------- ca_certificates: added README.CSW Modified Paths: -------------- csw/mgar/pkg/ca_certificates/trunk/Makefile csw/mgar/pkg/ca_certificates/trunk/checksums Added Paths: ----------- csw/mgar/pkg/ca_certificates/trunk/files/README.CSW Modified: csw/mgar/pkg/ca_certificates/trunk/Makefile =================================================================== --- csw/mgar/pkg/ca_certificates/trunk/Makefile 2008-12-31 18:56:46 UTC (rev 2725) +++ csw/mgar/pkg/ca_certificates/trunk/Makefile 2009-01-01 14:56:18 UTC (rev 2726) @@ -8,7 +8,7 @@ endef MASTER_SITES = http://hg.mozilla.org/mozilla-central/raw-file/default/security/nss/lib/ckfw/builtins/ -DISTFILES = certdata.txt certdata2pem.pl update-ca-certificates ca-certificates.conf +DISTFILES = certdata.txt certdata2pem.pl update-ca-certificates ca-certificates.conf README.CSW DISTFILES += $(call admfiles,CSWcacertificates,depend postinstall postremove) # We define upstream file regex so we can be notifed of new upstream software release @@ -28,7 +28,7 @@ $(WORKDIR)/hash.db: $(WORKDIR)/certdata.txt rm -f $(WORKDIR)/hash.db find "$(DESTDIR)/$(sharedstatedir)/ca-certificates" -name *.pem | while read FILE; do \ - echo "`basename $$FILE`=`/opt/csw/bin/openssl x509 -hash -fingerprint -noout -in "$$FILE" | head -n 1`.0" >> hash.db; \ + echo "`basename $$FILE`=`/opt/csw/bin/openssl x509 -hash -fingerprint -noout -in "$$FILE" | head -n 1`.0" >> $(WORKDIR)/hash.db; \ done $(WORKDIR)/LICENSE: $(WORKDIR)/certdata.txt @@ -38,8 +38,9 @@ install-custom: $(WORKDIR)/hash.db $(WORKDIR)/LICENSE ginstall -d "$(DESTDIR)/$(sysconfdir)/ssl/certs" ginstall -d "$(DESTDIR)/$(sharedstatedir)/ca-certificates" - ginstall -D $(WORKDIR)/update-ca-certificates "$(DESTDIR)/$(sbindir)/update-ca-certificates" - ginstall -D hash.db "$(DESTDIR)/$(sharedstatedir)/ca-certificates/hash.db" + ginstall -D "$(WORKDIR)/update-ca-certificates" "$(DESTDIR)/$(sbindir)/update-ca-certificates" + ginstall -D "$(WORKDIR)/hash.db" "$(DESTDIR)/$(sharedstatedir)/ca-certificates/hash.db" + ginstall -D "$(WORKDIR)/README.CSW" "$(DESTDIR)/$(docdir)/ca-certificates/README.CSW" ginstall -d "$(DESTDIR)/$(sharedstatedir)/ca-certificates/mozilla" cd "$(DESTDIR)/$(sharedstatedir)/ca-certificates/mozilla" && perl "$(CURDIR)/$(WORKDIR)/certdata2pem.pl" < "$(CURDIR)/$(WORKDIR)/certdata.txt" Modified: csw/mgar/pkg/ca_certificates/trunk/checksums =================================================================== --- csw/mgar/pkg/ca_certificates/trunk/checksums 2008-12-31 18:56:46 UTC (rev 2725) +++ csw/mgar/pkg/ca_certificates/trunk/checksums 2009-01-01 14:56:18 UTC (rev 2726) @@ -2,6 +2,7 @@ 77fe4c8feb1b341814a6ed03d4ff764a download/certdata2pem.pl 8163827375c4cb08f9734930adb06ee2 download/update-ca-certificates b4f6772525da6772d51eb30f90605d60 download/ca-certificates.conf +c7fd74bceddf27039a26a5f1dfede163 download/README.CSW 787d361f8d8b8ecf89e83bb813fdaec5 download/CSWcacertificates.gspec 31227010faaad1c2b9893ba91d6b16bb download/CSWcacertificates.depend 32e6ea27867c760d2279330fd4c480d3 download/CSWcacertificates.postinstall Added: csw/mgar/pkg/ca_certificates/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/ca_certificates/trunk/files/README.CSW (rev 0) +++ csw/mgar/pkg/ca_certificates/trunk/files/README.CSW 2009-01-01 14:56:18 UTC (rev 2726) @@ -0,0 +1,53 @@ + +Notes for ca_certificates +------------------------- + +The ca_certificates package provides common Certification Authorities to +allow ssl-based software to check the validity of certificates exchanged +during a SSL connection. +It also provides a simple way to configure which CA is considered valid and +to add new custom certificate to the set of CA. + +Currently the CA provided by this package are the ones that are shipped with +the mozilla firefox browser. + +Quick Usage FAQ: + +* How to disable a certificate ? + +Just edit the /opt/csw/etc/ca-certificates.conf file and add the full path of the +certificate prefixed by an exclamation mark, then launch: + + /opt/csw/sbin/update-ca-certificates + +For exemple, to remove the Equifax Secure CA from the valid CA, add the following +line in /opt/csw/etc/ca-certificates.conf: + + !/opt/csw/share/ca-certificates/mozilla/Equifax_Secure_CA.crt + +and launch /opt/csw/sbin/update-ca-certificates + +For CA provided by ca-certificates, you can just put the filename, as by default +update-ca-certificates will look under /opt/csw/share/ca-certificates/. + +For Equifax Secure CA you could just add the line: + + !Equifax_Secure_CA.crt + + +* How to add a new certificate ? + +To add a CA not provided by the ca-certificates package, you first need to install +the openssl_utils package so update-ca-certificates will be able to generate the +hash of the certificate using the openssl binary: + + pkg-get install openssl_utils (or pkg-util -i openssl_utils) + +Then either you add the full location of the certificate in /opt/csw/etc/ca-certificates.conf +or you just copy the certificate in /opt/csw/etc/ssl/certs and make sure it has a +pem extension. + +Eventually you launch the update-ca-certificate command: + + /opt/csw/sbin/update-ca-certificates + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Thu Jan 1 16:06:19 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 01 Jan 2009 15:06:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2727] csw/mgar/pkg/ca_certificates/trunk/Makefile Message-ID: Revision: 2727 http://gar.svn.sourceforge.net/gar/?rev=2727&view=rev Author: chninkel Date: 2009-01-01 15:06:18 +0000 (Thu, 01 Jan 2009) Log Message: ----------- ca_certificates: fixed mistake in Makefile Modified Paths: -------------- csw/mgar/pkg/ca_certificates/trunk/Makefile Modified: csw/mgar/pkg/ca_certificates/trunk/Makefile =================================================================== --- csw/mgar/pkg/ca_certificates/trunk/Makefile 2009-01-01 14:56:18 UTC (rev 2726) +++ csw/mgar/pkg/ca_certificates/trunk/Makefile 2009-01-01 15:06:18 UTC (rev 2727) @@ -25,7 +25,7 @@ include gar/category.mk -$(WORKDIR)/hash.db: $(WORKDIR)/certdata.txt +$(WORKDIR)/hash.db: install-certificates rm -f $(WORKDIR)/hash.db find "$(DESTDIR)/$(sharedstatedir)/ca-certificates" -name *.pem | while read FILE; do \ echo "`basename $$FILE`=`/opt/csw/bin/openssl x509 -hash -fingerprint -noout -in "$$FILE" | head -n 1`.0" >> $(WORKDIR)/hash.db; \ @@ -35,12 +35,14 @@ sed -ne '/BEGIN LICENSE BLOCK/,/END LICENSE BLOCK/p' "$(WORKDIR)/certdata.txt" | grep -v "LICENSE BLOCK" \ > "$(WORKDIR)/LICENSE" -install-custom: $(WORKDIR)/hash.db $(WORKDIR)/LICENSE +install-certificates: $(WORKDIR)/certdata.txt + ginstall -d "$(DESTDIR)/$(sharedstatedir)/ca-certificates/mozilla" + cd "$(DESTDIR)/$(sharedstatedir)/ca-certificates/mozilla" && perl "$(CURDIR)/$(WORKDIR)/certdata2pem.pl" < "$(CURDIR)/$(WORKDIR)/certdata.txt" + +install-custom: install-certificates $(WORKDIR)/hash.db $(WORKDIR)/LICENSE ginstall -d "$(DESTDIR)/$(sysconfdir)/ssl/certs" ginstall -d "$(DESTDIR)/$(sharedstatedir)/ca-certificates" ginstall -D "$(WORKDIR)/update-ca-certificates" "$(DESTDIR)/$(sbindir)/update-ca-certificates" ginstall -D "$(WORKDIR)/hash.db" "$(DESTDIR)/$(sharedstatedir)/ca-certificates/hash.db" ginstall -D "$(WORKDIR)/README.CSW" "$(DESTDIR)/$(docdir)/ca-certificates/README.CSW" - ginstall -d "$(DESTDIR)/$(sharedstatedir)/ca-certificates/mozilla" - cd "$(DESTDIR)/$(sharedstatedir)/ca-certificates/mozilla" && perl "$(CURDIR)/$(WORKDIR)/certdata2pem.pl" < "$(CURDIR)/$(WORKDIR)/certdata.txt" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Thu Jan 1 17:54:54 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 01 Jan 2009 16:54:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[2728] csw/mgar/pkg/openssl/trunk Message-ID: Revision: 2728 http://gar.svn.sourceforge.net/gar/?rev=2728&view=rev Author: chninkel Date: 2009-01-01 16:54:52 +0000 (Thu, 01 Jan 2009) Log Message: ----------- openssl: updated changelog Modified Paths: -------------- csw/mgar/pkg/openssl/trunk/checksums csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-i386 csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-sparc csw/mgar/pkg/openssl/trunk/files/changelog.CSW Modified: csw/mgar/pkg/openssl/trunk/checksums =================================================================== --- csw/mgar/pkg/openssl/trunk/checksums 2009-01-01 15:06:18 UTC (rev 2727) +++ csw/mgar/pkg/openssl/trunk/checksums 2009-01-01 16:54:52 UTC (rev 2728) @@ -11,12 +11,12 @@ b71924fca6e324743e6977f370cce76b download/CSWosslrt.prototype-sparc 2ac43ebf4689d236540e22171541be4e download/CSWossldevel.gspec 37995caa7f4155066b00fb7503e853da download/CSWossldevel.depend -e85eb38fc1a7301fa4951355859ee5e9 download/CSWossldevel.prototype-i386 -427edaecb41b1536013db23a02d69f42 download/CSWossldevel.prototype-sparc +da3116a1d8dfd2bd3e4f2a11f4fb5f8b download/CSWossldevel.prototype-i386 +bd40fcb60dfef960da30c718b718149d download/CSWossldevel.prototype-sparc eec77249fb642c525cad67dcd055fb77 download/CSWosslutils.gspec 37995caa7f4155066b00fb7503e853da download/CSWosslutils.depend a441995e4e3c95497e77aa613d2c673c download/CSWosslutils.prototype -1b23306c534a4c0a3920bdf1984b39bd download/changelog.CSW +1322076d544d1a7d4d494ae65d324d5a download/changelog.CSW b78faa440d6f6a2a07663de331678648 download/README.CSW 7fdc09cd3c11db459c83c8946f7872f6 download/i.conf a454ac09091085813ec8900f5a0c917c download/r.conf Modified: csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-i386 =================================================================== --- csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-i386 2009-01-01 15:06:18 UTC (rev 2727) +++ csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-i386 2009-01-01 16:54:52 UTC (rev 2728) @@ -81,7 +81,6 @@ f none /opt/csw/lib/pkgconfig/libssl.pc 0644 root bin f none /opt/csw/lib/pkgconfig/openssl.pc 0644 root bin d none /opt/csw/share/doc/openssl_devel 0755 root bin -f none /opt/csw/share/doc/openssl_devel/changelog.CSW=changelog.CSW 644 root bin d none /opt/csw/share/man 0755 root bin d none /opt/csw/share/man/man3 0755 root bin s none /opt/csw/share/man/man3/ASN1_OBJECT_free.3=ASN1_OBJECT_new.3 Modified: csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-sparc =================================================================== --- csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-sparc 2009-01-01 15:06:18 UTC (rev 2727) +++ csw/mgar/pkg/openssl/trunk/files/CSWossldevel.prototype-sparc 2009-01-01 16:54:52 UTC (rev 2728) @@ -81,7 +81,6 @@ f none /opt/csw/lib/pkgconfig/libssl.pc 0644 root bin f none /opt/csw/lib/pkgconfig/openssl.pc 0644 root bin d none /opt/csw/share/doc/openssl_devel 0755 root bin -f none /opt/csw/share/doc/openssl_devel/changelog.CSW=changelog.CSW 644 root bin d none /opt/csw/share/man 0755 root bin d none /opt/csw/share/man/man3 0755 root bin s none /opt/csw/share/man/man3/ASN1_OBJECT_free.3=ASN1_OBJECT_new.3 Modified: csw/mgar/pkg/openssl/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/openssl/trunk/files/changelog.CSW 2009-01-01 15:06:18 UTC (rev 2727) +++ csw/mgar/pkg/openssl/trunk/files/changelog.CSW 2009-01-01 16:54:52 UTC (rev 2728) @@ -1,4 +1,4 @@ -openssl (0.9.8,rev=2008.12.26_rev=i) unstable +openssl (0.9.8,rev=2009.01.01_rev=i) unstable * Removed CA and added dependancy on ca_certificates. * Added openssl documentation files. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jan 1 19:52:31 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 01 Jan 2009 18:52:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2729] csw/mgar/pkg/docbook-style-xsl/trunk Message-ID: Revision: 2729 http://gar.svn.sourceforge.net/gar/?rev=2729&view=rev Author: bdwalton Date: 2009-01-01 18:52:31 +0000 (Thu, 01 Jan 2009) Log Message: ----------- - Clean up path names of install directories (remove patch level) - Override PATH so that my lightly modified checkpkg is used during the packaging step (allow docbookxsldoc to depend on docbookxsl even though it's not installed yet). Modified Paths: -------------- csw/mgar/pkg/docbook-style-xsl/trunk/Makefile csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch Modified: csw/mgar/pkg/docbook-style-xsl/trunk/Makefile =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/Makefile 2009-01-01 16:54:52 UTC (rev 2728) +++ csw/mgar/pkg/docbook-style-xsl/trunk/Makefile 2009-01-01 18:52:31 UTC (rev 2729) @@ -20,6 +20,9 @@ Microsoft HTML Help, and man pages. endef +SPKG_DESC_CSWdocbookxsl = Norman Walsh's XSL stylesheets for DocBook XML +SPKG_DESC_CSWdocbookxsldoc = Documentation for the Docbook XSL stylesheets + # docbook-xsl is housed in the docbook master project at SF. SF_PROJ = docbook MASTER_SITES = $(SF_MIRRORS) @@ -40,16 +43,18 @@ TEST_SCRIPTS = -INSTALL_ARGS = DESTDIR=$(DESTDIR) GARVERSION=$(GARVERSION) \ - PATCHLEVEL=$(PATCHLEVEL) +INSTALL_ARGS = DESTDIR=$(DESTDIR) GARVERSION=$(GARVERSION) + #to make the package extraction happy...(we don't use the - separator) WORKSRC = $(WORKDIR)/docbook-xsl-$(GARVERSION) post-install-modulated: @(cd $(DESTDIR)/opt/csw/share/sgml/docbook; \ - ln -s xsl-stylesheets-$(GARVERSION)-$(PATCHLEVEL) \ - xsl-stylesheets ) + ln -s xsl-stylesheets-$(GARVERSION) xsl-stylesheets ) @$(MAKECOOKIE) include gar/category.mk + +#override system checkpkg so that docbookxsldoc can depend on docbookxsl +PATH := /home/bwalton:$(PATH) Modified: csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch 2009-01-01 16:54:52 UTC (rev 2728) +++ csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch 2009-01-01 18:52:31 UTC (rev 2729) @@ -1,10 +1,9 @@ --- /dev/null 2008-12-14 03:06:26.000000000 +0100 +++ docbook-xsl-1.69.1/Makefile 2008-12-14 04:12:33.444192066 +0100 -@@ -0,0 +1,51 @@ +@@ -0,0 +1,50 @@ + +DESTDIR ?= ... should be overridden by GAR ... +GARVERSION ?= ... should be overridden by GAR ... -+PATCHLEVEL ?= ... should be overridden by GAR ... + +SHELL = /opt/csw/bin/bash + @@ -12,8 +11,8 @@ +bindir = $(prefix)/bin +datadir = $(prefix)/share + -+instdir = $(datadir)/sgml/docbook/xsl-stylesheets-$(GARVERSION)-$(PATCHLEVEL) -+docdir = $(datadir)/doc/docbookxsl-$(GARVERSION)-$(PATCHLEVEL) ++instdir = $(datadir)/sgml/docbook/xsl-stylesheets-$(GARVERSION) ++docdir = $(datadir)/doc/docbookxsl-$(GARVERSION) + +all: install + @@ -52,4 +51,4 @@ + gmkdir -p $(docdir) + cp BUGS ChangeLog README TODO $(docdir)/ + cp -R doc $(docdir)/ -\ No newline at end of file + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jan 1 20:19:57 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 01 Jan 2009 19:19:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[2730] csw/mgar/pkg/docbook-style-xsl/trunk Message-ID: Revision: 2730 http://gar.svn.sourceforge.net/gar/?rev=2730&view=rev Author: bdwalton Date: 2009-01-01 19:19:57 +0000 (Thu, 01 Jan 2009) Log Message: ----------- Further path cleaning. No longer refernce the version in the diretory name at all. Modified Paths: -------------- csw/mgar/pkg/docbook-style-xsl/trunk/Makefile csw/mgar/pkg/docbook-style-xsl/trunk/checksums csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.postinstall csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.preremove csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch Modified: csw/mgar/pkg/docbook-style-xsl/trunk/Makefile =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/Makefile 2009-01-01 18:52:31 UTC (rev 2729) +++ csw/mgar/pkg/docbook-style-xsl/trunk/Makefile 2009-01-01 19:19:57 UTC (rev 2730) @@ -43,17 +43,11 @@ TEST_SCRIPTS = -INSTALL_ARGS = DESTDIR=$(DESTDIR) GARVERSION=$(GARVERSION) +INSTALL_ARGS = DESTDIR=$(DESTDIR) - #to make the package extraction happy...(we don't use the - separator) WORKSRC = $(WORKDIR)/docbook-xsl-$(GARVERSION) -post-install-modulated: - @(cd $(DESTDIR)/opt/csw/share/sgml/docbook; \ - ln -s xsl-stylesheets-$(GARVERSION) xsl-stylesheets ) - @$(MAKECOOKIE) - include gar/category.mk #override system checkpkg so that docbookxsldoc can depend on docbookxsl Modified: csw/mgar/pkg/docbook-style-xsl/trunk/checksums =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/checksums 2009-01-01 18:52:31 UTC (rev 2729) +++ csw/mgar/pkg/docbook-style-xsl/trunk/checksums 2009-01-01 19:19:57 UTC (rev 2730) @@ -1,11 +1,11 @@ 6ebd29a67f2dcc3f2220f475ee6f6552 download/docbook-xsl-1.69.1.tar.bz2 b3bf09a0b1a368a3490e68ffc695d290 download/docbook-xsl-doc-1.69.1.tar.bz2 4120f10e50070dd8fc2284d5214bf51d download/CSWdocbookxsl.gspec -8911f851d78a1ab1a21c49286f37f6cb download/CSWdocbookxsl.postinstall -88f331d079de730ef77a5091e69989e2 download/CSWdocbookxsl.preremove +e96ac786b8d7b1bd6bc76787c965017a download/CSWdocbookxsl.postinstall +1b98827c1a02fcec57ec0f7376bb8815 download/CSWdocbookxsl.preremove a0c6ee83fdef595158d9eed95d508d8f download/CSWdocbookxsldoc.gspec 84b37b559cc95c747e39a5a8f79558a3 download/docbook-xsl-pagesetup.patch 1d1ff63f5ebd3527c925f68e55138b6f download/docbook-xsl-marginleft.patch cec8c281ed1c9be99ad47a74362248d5 download/docbook-xsl-lists.patch e7bbf777eadbb70aaed073006de0347e download/docbook-xsl-sp.patch -6e7ff9307e810ea822c94818cfbc86e0 download/add_makefile.patch +8b8a8d4307fa3f3dcb992ebd16c4fb09 download/add_makefile.patch Modified: csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.postinstall =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.postinstall 2009-01-01 18:52:31 UTC (rev 2729) +++ csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.postinstall 2009-01-01 19:19:57 UTC (rev 2730) @@ -9,21 +9,22 @@ CATCMD=/opt/csw/bin/xmlcatalog -VERSION=1.69.1 -RELEASE=5.1 DBHOME=/opt/csw/share/sgml/docbook CATALOG=/opt/csw/etc/xml/catalog +#we need a version here, since that will be referenced in URLS being redirected +VERSION=1.69.1 + $PREFIX $CATCMD --noout --add "rewriteSystem" \ "http://docbook.sourceforge.net/release/xsl/$VERSION" \ - "file://$DBHOME/xsl-stylesheets-$VERSION-$RELEASE" $CATALOG + "file://$DBHOME/xsl-stylesheets" $CATALOG $PREFIX $CATCMD --noout --add "rewriteURI" \ "http://docbook.sourceforge.net/release/xsl/$VERSION" \ - "file://$DBHOME/xsl-stylesheets-$VERSION-$RELEASE" $CATALOG + "file://$DBHOME/xsl-stylesheets" $CATALOG $PREFIX $CATCMD --noout --add "rewriteSystem" \ "http://docbook.sourceforge.net/release/xsl/current" \ - "file://$DBHOME/xsl-stylesheets-$VERSION-$RELEASE" $CATALOG + "file://$DBHOME/xsl-stylesheets" $CATALOG $PREFIX $CATCMD --noout --add "rewriteURI" \ "http://docbook.sourceforge.net/release/xsl/current" \ - "file://$DBHOME/xsl-stylesheets-$VERSION-$RELEASE" $CATALOG + "file://$DBHOME/xsl-stylesheets" $CATALOG Modified: csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.preremove =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.preremove 2009-01-01 18:52:31 UTC (rev 2729) +++ csw/mgar/pkg/docbook-style-xsl/trunk/files/CSWdocbookxsl.preremove 2009-01-01 19:19:57 UTC (rev 2730) @@ -10,8 +10,6 @@ CATALOG=/opt/csw/etc/xml/catalog XMLCAT=/opt/csw/bin/xmlcatalog DBHOME=/opt/csw/share/sgml/docbook -VERSION=1.69.1 -RELEASE=5.1 $PREFIX $XMLCAT --noout --del \ - "file://$DBHOME/xsl-stylesheets-$VERSION-$RELEASE" $CATALOG + "file://$DBHOME/xsl-stylesheets" $CATALOG Modified: csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch =================================================================== --- csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch 2009-01-01 18:52:31 UTC (rev 2729) +++ csw/mgar/pkg/docbook-style-xsl/trunk/files/add_makefile.patch 2009-01-01 19:19:57 UTC (rev 2730) @@ -1,9 +1,8 @@ --- /dev/null 2008-12-14 03:06:26.000000000 +0100 +++ docbook-xsl-1.69.1/Makefile 2008-12-14 04:12:33.444192066 +0100 -@@ -0,0 +1,50 @@ +@@ -0,0 +1,49 @@ + +DESTDIR ?= ... should be overridden by GAR ... -+GARVERSION ?= ... should be overridden by GAR ... + +SHELL = /opt/csw/bin/bash + @@ -11,8 +10,8 @@ +bindir = $(prefix)/bin +datadir = $(prefix)/share + -+instdir = $(datadir)/sgml/docbook/xsl-stylesheets-$(GARVERSION) -+docdir = $(datadir)/doc/docbookxsl-$(GARVERSION) ++instdir = $(datadir)/sgml/docbook/xsl-stylesheets ++docdir = $(datadir)/doc/docbookxsl + +all: install + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 1 22:26:19 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 01 Jan 2009 21:26:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2731] csw/mgar/pkg Message-ID: Revision: 2731 http://gar.svn.sourceforge.net/gar/?rev=2731&view=rev Author: dmichelsen Date: 2009-01-01 21:26:19 +0000 (Thu, 01 Jan 2009) Log Message: ----------- libidn: Initial commit Added Paths: ----------- csw/mgar/pkg/libidn/ csw/mgar/pkg/libidn/branches/ csw/mgar/pkg/libidn/tags/ csw/mgar/pkg/libidn/trunk/ csw/mgar/pkg/libidn/trunk/Makefile csw/mgar/pkg/libidn/trunk/checksums csw/mgar/pkg/libidn/trunk/files/ csw/mgar/pkg/libidn/trunk/files/CSWlibidn.gspec Property changes on: csw/mgar/pkg/libidn/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libidn/trunk/Makefile =================================================================== --- csw/mgar/pkg/libidn/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libidn/trunk/Makefile 2009-01-01 21:26:19 UTC (rev 2731) @@ -0,0 +1,27 @@ +GARNAME = libidn +GARVERSION = 1.9 +CATEGORIES = lib + +DESCRIPTION = GNU IDN Library +define BLURB + GNU Libidn is a fully documented implementation of the Stringprep, + Punycode and IDNA specifications. Libidn's purpose is to encode and + decode internationalized domain names. The native C, C# and Java + libraries are available under the GNU Lesser General Public License + version 2.1 or later. +endef + +MASTER_SITES = $(GNU_MIRROR) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWlibidn,) + +BUILD64 = 1 +NO_ISAEXEC = 1 + +REQUIRED_PKGS = CSWggettext CSWiconv + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/libidn/trunk/checksums =================================================================== --- csw/mgar/pkg/libidn/trunk/checksums (rev 0) +++ csw/mgar/pkg/libidn/trunk/checksums 2009-01-01 21:26:19 UTC (rev 2731) @@ -0,0 +1,2 @@ +f4d794639564256a367566302611224e download/libidn-1.9.tar.gz +93e0fbb8839375ed9f8683713a5f7d8f download/CSWlibidn.gspec Added: csw/mgar/pkg/libidn/trunk/files/CSWlibidn.gspec =================================================================== --- csw/mgar/pkg/libidn/trunk/files/CSWlibidn.gspec (rev 0) +++ csw/mgar/pkg/libidn/trunk/files/CSWlibidn.gspec 2009-01-01 21:26:19 UTC (rev 2731) @@ -0,0 +1,4 @@ +%var bitname libidn +%var pkgname CSWlibidn +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 1 22:43:50 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 01 Jan 2009 21:43:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[2732] csw/mgar/pkg/pcre/trunk/Makefile Message-ID: Revision: 2732 http://gar.svn.sourceforge.net/gar/?rev=2732&view=rev Author: dmichelsen Date: 2009-01-01 21:43:50 +0000 (Thu, 01 Jan 2009) Log Message: ----------- pcre: Fix VENDOR URL Modified Paths: -------------- csw/mgar/pkg/pcre/trunk/Makefile Modified: csw/mgar/pkg/pcre/trunk/Makefile =================================================================== --- csw/mgar/pkg/pcre/trunk/Makefile 2009-01-01 21:26:19 UTC (rev 2731) +++ csw/mgar/pkg/pcre/trunk/Makefile 2009-01-01 21:43:50 UTC (rev 2732) @@ -15,6 +15,8 @@ DISTFILES += $(call admfiles,CSWpcre) DISTFILES += $(call admfiles,CSWpcrert) +SPKG_SOURCEURL = http://www.pcre.org + PREREQUISITE_PKGS = CSWgnulinks REQUIRED_PKGS_CSWpcre = CSWpcrert REQUIRED_PKGS_CSWpcrert = CSWzlib CSWbzip2 CSWreadline This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 1 23:25:42 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 01 Jan 2009 22:25:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[2733] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 2733 http://gar.svn.sourceforge.net/gar/?rev=2733&view=rev Author: dmichelsen Date: 2009-01-01 22:25:42 +0000 (Thu, 01 Jan 2009) Log Message: ----------- mGAR v2: Add EXTRA_LINKER_FLAGS Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-01-01 21:43:50 UTC (rev 2732) +++ csw/mgar/gar/v2/gar.conf.mk 2009-01-01 22:25:42 UTC (rev 2733) @@ -419,7 +419,7 @@ ifeq ($(origin LINKER_FLAGS), undefined) ifdef NOISALIST -LINKER_FLAGS = $(foreach ELIB,$(libdir_install) $(EXTRA_LIB),-L$(abspath $(ELIB)/$(MM_LIBDIR))$(if $(_ADD_RUNPATH), -R$(abspath $(ELIB)/$(MM_LIBDIR)))) +LINKER_FLAGS = $(foreach ELIB,$(libdir_install) $(EXTRA_LIB),-L$(abspath $(ELIB)/$(MM_LIBDIR))$(if $(_ADD_RUNPATH), -R$(abspath $(ELIB)/$(MM_LIBDIR)))) $(EXTRA_LINKER_FLAGS) else # If we use $ISALIST it is a good idea to also add $MM_LIBDIR as there # may not be a subdirectory for the 32-bit standard case (this would normally @@ -434,7 +434,7 @@ else _Q = \\\\\\\$$\$$ endif -LINKER_FLAGS = $(foreach ELIB,$(libdir_install) $(EXTRA_LIB),-L$(abspath $(ELIB)/$(MM_LIBDIR))$(if $(_ADD_RUNPATH), -R$(ELIB)/$(_Q)ISALIST -R$(abspath $(ELIB)/$(MM_LIBDIR)))) +LINKER_FLAGS = $(foreach ELIB,$(libdir_install) $(EXTRA_LIB),-L$(abspath $(ELIB)/$(MM_LIBDIR))$(if $(_ADD_RUNPATH), -R$(ELIB)/$(_Q)ISALIST -R$(abspath $(ELIB)/$(MM_LIBDIR)))) $(EXTRA_LINKER_FLAGS) endif endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 12:10:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 11:10:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2734] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 2734 http://gar.svn.sourceforge.net/gar/?rev=2734&view=rev Author: dmichelsen Date: 2009-01-02 11:10:12 +0000 (Fri, 02 Jan 2009) Log Message: ----------- mGAR v2: Fix clean-modulated Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-01-01 22:25:42 UTC (rev 2733) +++ csw/mgar/gar/v2/gar.mk 2009-01-02 11:10:12 UTC (rev 2734) @@ -621,7 +621,7 @@ # cookie, but that would be lame and unportable). clean: $(addprefix clean-,$(MODULATIONS)) - @rm -rf $(WORKROOTDIR) + @rm -rf $(WORKROOTDIR) $(COOKIEROOTDIR) $(DOWNLOADDIR) clean-modulated: $(call _pmod,Cleaning ) @@ -630,8 +630,6 @@ $(SCRATCHDIR)-build $(SCRATCHDIR)-$(COOKIEROOTDIR) \ $(LOGDIR) *~ @rm -rf $(COOKIEDIR) - @rm -rf $(COOKIEROOTDIR) - @rm -rf $(DOWNLOADDIR) SRC_CLEAN_TARGET ?= clean This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 15:08:57 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 14:08:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[2735] csw/mgar/pkg/ncurses/trunk Message-ID: Revision: 2735 http://gar.svn.sourceforge.net/gar/?rev=2735&view=rev Author: dmichelsen Date: 2009-01-02 14:08:57 +0000 (Fri, 02 Jan 2009) Log Message: ----------- ncurses: Remove unnecessary stuff in files and dropped legacy support as it doesn't seem to be used anywhere Modified Paths: -------------- csw/mgar/pkg/ncurses/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/ncurses/trunk/files/CSWncurses.prototype.i386 csw/mgar/pkg/ncurses/trunk/files/CSWncurses.prototype.sparc csw/mgar/pkg/ncurses/trunk/files/ncurses-i386-libs-5.4.tar.gz csw/mgar/pkg/ncurses/trunk/files/ncurses-sparc-libs-5.4.tar.gz Modified: csw/mgar/pkg/ncurses/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-02 11:10:12 UTC (rev 2734) +++ csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-02 14:08:57 UTC (rev 2735) @@ -2,9 +2,6 @@ GARVERSION = 5.7 CATEGORIES = lib -EXTRA_MODULATORS = GARVERSION -MODULATIONS_GARVERSION = 5.4 5.6 5.7 - DESCRIPTION = ncurses library and utilities define BLURB The ncurses (new curses) library is a free software emulation of curses in System V Release 4.0 and more. It uses terminfo forma @@ -14,32 +11,23 @@ endef MASTER_SITES = $(GNU_MIRROR) -DISTFILES = $(foreach V,$(MODULATIONS_GARVERSION),$(GARNAME)-$(V).tar.gz) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWncurses) +SPKG_SOURCEURL = http://www.gnu.org/software/ncurses/ncurses.html + BUILD64 = 1 +RUNPATHQUOTE = 1 -CONFIGURE_ARGS = --prefix=/opt/csw +CONFIGURE_ARGS = --prefix=$(prefix) +CONFIGURE_ARGS += --bindir=$(bindir) +CONFIGURE_ARGS += --libdir=$(libdir) +CONFIGURE_ARGS += --mandir=$(mandir) CONFIGURE_ARGS += --without-libtool CONFIGURE_ARGS += --with-shared CONFIGURE_ARGS += --disable-overwrite CONFIGURE_ARGS += --without-ada -ifeq ($(MEMORYMODEL),64) -CONFIGURE_ARGS += --with-build-ldflags="-64" -endif -ifeq ($(GARVERSION),5.7) -LD_OPTIONS = $(LD_FLAGS) -endif - -TEST_SCRIPTS = - include gar/category.mk -#LDFLAGS := $(filter-out -xarch=%,$(filter-out -m%,$(LDFLAGS))) -LDFLAGS := - -ifeq ($(MEMORYMODEL),64) -LDFLAGS := $(LDFLAGS) $(if $(findstring $(GARVERSION),5.6),-xarch=v9) -endif - +LDFLAGS := $(filter-out -L%,$(LDFLAGS)) Deleted: csw/mgar/pkg/ncurses/trunk/files/CSWncurses.prototype.i386 =================================================================== --- csw/mgar/pkg/ncurses/trunk/files/CSWncurses.prototype.i386 2009-01-02 11:10:12 UTC (rev 2734) +++ csw/mgar/pkg/ncurses/trunk/files/CSWncurses.prototype.i386 2009-01-02 14:08:57 UTC (rev 2735) @@ -1,3271 +0,0 @@ -d none /opt/csw/bin ? ? ? -s none /opt/csw/bin/captoinfo=tic root bin -f none /opt/csw/bin/clear 0755 root bin -f none /opt/csw/bin/infocmp 0755 root bin -s none /opt/csw/bin/infotocap=tic root bin -s none /opt/csw/bin/reset=tset root bin -f none /opt/csw/bin/tack 0755 root bin -f none /opt/csw/bin/tic 0755 root bin -f none /opt/csw/bin/toe 0755 root bin -f none /opt/csw/bin/tput 0755 root bin -f none /opt/csw/bin/tset 0755 root bin -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/ncurses 0755 root bin -f none /opt/csw/include/ncurses/curses.h 0644 root bin -f none /opt/csw/include/ncurses/cursesapp.h 0644 root bin -f none /opt/csw/include/ncurses/cursesf.h 0644 root bin -f none /opt/csw/include/ncurses/cursesm.h 0644 root bin -f none /opt/csw/include/ncurses/cursesp.h 0644 root bin -f none /opt/csw/include/ncurses/cursesw.h 0644 root bin -f none /opt/csw/include/ncurses/cursslk.h 0644 root bin -f none /opt/csw/include/ncurses/eti.h 0644 root bin -f none /opt/csw/include/ncurses/etip.h 0644 root bin -f none /opt/csw/include/ncurses/form.h 0644 root bin -f none /opt/csw/include/ncurses/menu.h 0644 root bin -s none /opt/csw/include/ncurses/ncurses.h=curses.h root bin -f none /opt/csw/include/ncurses/ncurses_dll.h 0644 root bin -f none /opt/csw/include/ncurses/panel.h 0644 root bin -f none /opt/csw/include/ncurses/term.h 0644 root bin -f none /opt/csw/include/ncurses/termcap.h 0644 root bin -f none /opt/csw/include/ncurses/unctrl.h 0644 root bin -d none /opt/csw/lib ? ? ? -f none /opt/csw/lib/libform.a 0644 root bin -f none /opt/csw/lib/libform.so.5.5 0644 root bin -s none /opt/csw/lib/libform.so.5=libform.so.5.5 root bin -s none /opt/csw/lib/libform.so=libform.so.5 root bin -f none /opt/csw/lib/libform_g.a 0644 root bin -f none /opt/csw/lib/libmenu.a 0644 root bin -f none /opt/csw/lib/libmenu.so.5.5 0644 root bin -s none /opt/csw/lib/libmenu.so.5=libmenu.so.5.5 root bin -s none /opt/csw/lib/libmenu.so=libmenu.so.5 root bin -f none /opt/csw/lib/libmenu_g.a 0644 root bin -f none /opt/csw/lib/libncurses++.a 0755 root bin -f none /opt/csw/lib/libncurses.a 0644 root bin -f none /opt/csw/lib/libncurses.so.5.5 0644 root bin -s none /opt/csw/lib/libncurses.so.5=libncurses.so.5.5 root bin -s none /opt/csw/lib/libncurses.so=libncurses.so.5 root bin -f none /opt/csw/lib/libncurses_g.a 0644 root bin -f none /opt/csw/lib/libpanel.a 0644 root bin -f none /opt/csw/lib/libpanel.so.5.5 0644 root bin -s none /opt/csw/lib/libpanel.so.5=libpanel.so.5.5 root bin -s none /opt/csw/lib/libpanel.so=libpanel.so.5 root bin -f none /opt/csw/lib/libpanel_g.a 0644 root bin -f none /opt/csw/lib/libncurses.so.5.4 0644 root bin -f none /opt/csw/lib/libpanel.so.5.4 0644 root bin -f none /opt/csw/lib/libmenu.so.5.4 0644 root bin -f none /opt/csw/lib/libform.so.5.4 0644 root bin -s none /opt/csw/lib/terminfo=../share/terminfo root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man5 0755 root bin -f none /opt/csw/share/man/man5/terminfo.5 0644 root bin -f none /opt/csw/share/man/man5/term.5 0644 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/captoinfo.1m 0644 root bin -f none /opt/csw/share/man/man1/clear.1 0644 root bin -f none /opt/csw/share/man/man1/infocmp.1m 0644 root bin -f none /opt/csw/share/man/man1/infotocap.1m 0644 root bin -f none /opt/csw/share/man/man1/tic.1m 0644 root bin -f none /opt/csw/share/man/man1/toe.1m 0644 root bin -f none /opt/csw/share/man/man1/tput.1 0644 root bin -s none /opt/csw/share/man/man1/reset.1=tset.1 -f none /opt/csw/share/man/man1/tset.1 0644 root bin -f none /opt/csw/share/man/man1/tack.1 0644 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/curs_add_wch.3x 0644 root bin -s none /opt/csw/share/man/man3/add_wch.3x=curs_add_wch.3x -s none /opt/csw/share/man/man3/echo_wchar.3x=curs_add_wch.3x -s none /opt/csw/share/man/man3/mvadd_wch.3x=curs_add_wch.3x -s none /opt/csw/share/man/man3/mvwadd_wch.3x=curs_add_wch.3x -s none /opt/csw/share/man/man3/wadd_wch.3x=curs_add_wch.3x -s none /opt/csw/share/man/man3/wecho_wchar.3x=curs_add_wch.3x -f none /opt/csw/share/man/man3/curs_add_wchstr.3x 0644 root bin -s none /opt/csw/share/man/man3/add_wchnstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/add_wchstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/mvadd_wchnstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/mvadd_wchstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/mvwadd_wchnstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/mvwadd_wchstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/wadd_wchnstr.3x=curs_add_wchstr.3x -s none /opt/csw/share/man/man3/wadd_wchstr.3x=curs_add_wchstr.3x -f none /opt/csw/share/man/man3/curs_addch.3x 0644 root bin -s none /opt/csw/share/man/man3/addch.3x=curs_addch.3x -s none /opt/csw/share/man/man3/echochar.3x=curs_addch.3x -s none /opt/csw/share/man/man3/mvaddch.3x=curs_addch.3x -s none /opt/csw/share/man/man3/mvwaddch.3x=curs_addch.3x -s none /opt/csw/share/man/man3/waddch.3x=curs_addch.3x -s none /opt/csw/share/man/man3/wechochar.3x=curs_addch.3x -f none /opt/csw/share/man/man3/curs_addchstr.3x 0644 root bin -s none /opt/csw/share/man/man3/addchnstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/addchstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/mvaddchnstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/mvaddchstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/mvwaddchnstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/mvwaddchstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/waddchnstr.3x=curs_addchstr.3x -s none /opt/csw/share/man/man3/waddchstr.3x=curs_addchstr.3x -f none /opt/csw/share/man/man3/curs_addstr.3x 0644 root bin -s none /opt/csw/share/man/man3/addnstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/addstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/mvaddnstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/mvaddstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/mvwaddnstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/mvwaddstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/waddnstr.3x=curs_addstr.3x -s none /opt/csw/share/man/man3/waddstr.3x=curs_addstr.3x -f none /opt/csw/share/man/man3/curs_addwstr.3x 0644 root bin -s none /opt/csw/share/man/man3/addnwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/addwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/mvaddnwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/mvaddwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/mvwaddnwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/mvwaddwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/waddnwstr.3x=curs_addwstr.3x -s none /opt/csw/share/man/man3/waddwstr.3x=curs_addwstr.3x -f none /opt/csw/share/man/man3/curs_attr.3x 0644 root bin -s none /opt/csw/share/man/man3/PAIR_NUMBER.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attr_get.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attr_off.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attr_on.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attr_set.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attroff.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attron.3x=curs_attr.3x -s none /opt/csw/share/man/man3/attrset.3x=curs_attr.3x -s none /opt/csw/share/man/man3/chgat.3x=curs_attr.3x -s none /opt/csw/share/man/man3/color_set.3x=curs_attr.3x -s none /opt/csw/share/man/man3/mvchgat.3x=curs_attr.3x -s none /opt/csw/share/man/man3/mvwchgat.3x=curs_attr.3x -s none /opt/csw/share/man/man3/standend.3x=curs_attr.3x -s none /opt/csw/share/man/man3/standout.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattr_on.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattr_get.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattr_off.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattr_set.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattroff.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattron.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wattrset.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wchgat.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wcolor_set.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wstandend.3x=curs_attr.3x -s none /opt/csw/share/man/man3/wstandout.3x=curs_attr.3x -f none /opt/csw/share/man/man3/curs_beep.3x 0644 root bin -s none /opt/csw/share/man/man3/beep.3x=curs_beep.3x -s none /opt/csw/share/man/man3/flash.3x=curs_beep.3x -f none /opt/csw/share/man/man3/curs_bkgd.3x 0644 root bin -s none /opt/csw/share/man/man3/bkgd.3x=curs_bkgd.3x -s none /opt/csw/share/man/man3/bkgdset.3x=curs_bkgd.3x -s none /opt/csw/share/man/man3/getbkgd.3x=curs_bkgd.3x -s none /opt/csw/share/man/man3/wbkgd.3x=curs_bkgd.3x -s none /opt/csw/share/man/man3/wbkgdset.3x=curs_bkgd.3x -f none /opt/csw/share/man/man3/curs_bkgrnd.3x 0644 root bin -s none /opt/csw/share/man/man3/bkgrnd.3x=curs_bkgrnd.3x -s none /opt/csw/share/man/man3/bkgrndset.3x=curs_bkgrnd.3x -s none /opt/csw/share/man/man3/getbkgrnd.3x=curs_bkgrnd.3x -s none /opt/csw/share/man/man3/box.3x=curs_border.3x -s none /opt/csw/share/man/man3/wbkgrnd.3x=curs_bkgrnd.3x -s none /opt/csw/share/man/man3/wbkgrndset.3x=curs_bkgrnd.3x -s none /opt/csw/share/man/man3/wgetbkgrnd.3x=curs_bkgrnd.3x -f none /opt/csw/share/man/man3/curs_border.3x 0644 root bin -s none /opt/csw/share/man/man3/border.3x=curs_border.3x -s none /opt/csw/share/man/man3/hline.3x=curs_border.3x -s none /opt/csw/share/man/man3/mvhline.3x=curs_border.3x -s none /opt/csw/share/man/man3/mvvline.3x=curs_border.3x -s none /opt/csw/share/man/man3/mvwhline.3x=curs_border.3x -s none /opt/csw/share/man/man3/mvwvline.3x=curs_border.3x -s none /opt/csw/share/man/man3/vline.3x=curs_border.3x -s none /opt/csw/share/man/man3/wborder.3x=curs_border.3x -s none /opt/csw/share/man/man3/whline.3x=curs_border.3x -s none /opt/csw/share/man/man3/wvline.3x=curs_border.3x -f none /opt/csw/share/man/man3/curs_border_set.3x 0644 root bin -s none /opt/csw/share/man/man3/border_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/box_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/hline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/mvhline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/mvvline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/mvwhline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/mvwvline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/vline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/wborder_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/whline_set.3x=curs_border_set.3x -s none /opt/csw/share/man/man3/wvline_set.3x=curs_border_set.3x -f none /opt/csw/share/man/man3/curs_clear.3x 0644 root bin -s none /opt/csw/share/man/man3/clear.3x=curs_clear.3x -s none /opt/csw/share/man/man3/clrtobot.3x=curs_clear.3x -s none /opt/csw/share/man/man3/clrtoeol.3x=curs_clear.3x -s none /opt/csw/share/man/man3/erase.3x=curs_clear.3x -s none /opt/csw/share/man/man3/wclear.3x=curs_clear.3x -s none /opt/csw/share/man/man3/wclrtobot.3x=curs_clear.3x -s none /opt/csw/share/man/man3/wclrtoeol.3x=curs_clear.3x -s none /opt/csw/share/man/man3/werase.3x=curs_clear.3x -f none /opt/csw/share/man/man3/curs_color.3x 0644 root bin -s none /opt/csw/share/man/man3/COLOR_PAIR.3x=curs_color.3x -s none /opt/csw/share/man/man3/can_change_color.3x=curs_color.3x -s none /opt/csw/share/man/man3/color_content.3x=curs_color.3x -s none /opt/csw/share/man/man3/has_colors.3x=curs_color.3x -s none /opt/csw/share/man/man3/init_color.3x=curs_color.3x -s none /opt/csw/share/man/man3/init_pair.3x=curs_color.3x -s none /opt/csw/share/man/man3/pair_content.3x=curs_color.3x -s none /opt/csw/share/man/man3/start_color.3x=curs_color.3x -f none /opt/csw/share/man/man3/curs_delch.3x 0644 root bin -s none /opt/csw/share/man/man3/delch.3x=curs_delch.3x -s none /opt/csw/share/man/man3/mvdelch.3x=curs_delch.3x -s none /opt/csw/share/man/man3/mvwdelch.3x=curs_delch.3x -s none /opt/csw/share/man/man3/wdelch.3x=curs_delch.3x -f none /opt/csw/share/man/man3/curs_deleteln.3x 0644 root bin -s none /opt/csw/share/man/man3/deleteln.3x=curs_deleteln.3x -s none /opt/csw/share/man/man3/insdelln.3x=curs_deleteln.3x -s none /opt/csw/share/man/man3/insertln.3x=curs_deleteln.3x -s none /opt/csw/share/man/man3/wdeleteln.3x=curs_deleteln.3x -s none /opt/csw/share/man/man3/winsdelln.3x=curs_deleteln.3x -s none /opt/csw/share/man/man3/winsertln.3x=curs_deleteln.3x -f none /opt/csw/share/man/man3/curs_extend.3x 0644 root bin -s none /opt/csw/share/man/man3/curses_version.3x=curs_extend.3x -s none /opt/csw/share/man/man3/use_extended_names.3x=curs_extend.3x -f none /opt/csw/share/man/man3/curs_get_wch.3x 0644 root bin -s none /opt/csw/share/man/man3/get_wch.3x=curs_get_wch.3x -s none /opt/csw/share/man/man3/mvget_wch.3x=curs_get_wch.3x -s none /opt/csw/share/man/man3/mvwget_wch.3x=curs_get_wch.3x -s none /opt/csw/share/man/man3/unget_wch.3x=curs_get_wch.3x -s none /opt/csw/share/man/man3/wget_wch.3x=curs_get_wch.3x -f none /opt/csw/share/man/man3/curs_get_wstr.3x 0644 root bin -s none /opt/csw/share/man/man3/get_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/getn_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/mvget_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/mvgetn_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/mvwget_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/mvwgetn_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/wget_wstr.3x=curs_get_wstr.3x -s none /opt/csw/share/man/man3/wgetn_wstr.3x=curs_get_wstr.3x -f none /opt/csw/share/man/man3/curs_getcchar.3x 0644 root bin -s none /opt/csw/share/man/man3/getcchar.3x=curs_getcchar.3x -s none /opt/csw/share/man/man3/setcchar.3x=curs_getcchar.3x -f none /opt/csw/share/man/man3/curs_getch.3x 0644 root bin -s none /opt/csw/share/man/man3/getch.3x=curs_getch.3x -s none /opt/csw/share/man/man3/has_key.3x=curs_getch.3x -s none /opt/csw/share/man/man3/mvgetch.3x=curs_getch.3x -s none /opt/csw/share/man/man3/mvwgetch.3x=curs_getch.3x -s none /opt/csw/share/man/man3/ungetch.3x=curs_getch.3x -s none /opt/csw/share/man/man3/wgetch.3x=curs_getch.3x -f none /opt/csw/share/man/man3/curs_getstr.3x 0644 root bin -s none /opt/csw/share/man/man3/getnstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/getstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/mvgetnstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/mvgetstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/mvwgetnstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/mvwgetstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/wgetnstr.3x=curs_getstr.3x -s none /opt/csw/share/man/man3/wgetstr.3x=curs_getstr.3x -f none /opt/csw/share/man/man3/curs_getyx.3x 0644 root bin -s none /opt/csw/share/man/man3/getbegyx.3x=curs_getyx.3x -s none /opt/csw/share/man/man3/getmaxyx.3x=curs_getyx.3x -s none /opt/csw/share/man/man3/getparyx.3x=curs_getyx.3x -s none /opt/csw/share/man/man3/getyx.3x=curs_getyx.3x -f none /opt/csw/share/man/man3/curs_in_wch.3x 0644 root bin -s none /opt/csw/share/man/man3/in_wch.3x=curs_in_wch.3x -s none /opt/csw/share/man/man3/mvin_wch.3x=curs_in_wch.3x -s none /opt/csw/share/man/man3/mvwin_wch.3x=curs_in_wch.3x -s none /opt/csw/share/man/man3/win_wch.3x=curs_in_wch.3x -f none /opt/csw/share/man/man3/curs_in_wchstr.3x 0644 root bin -s none /opt/csw/share/man/man3/in_wchnstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/in_wchstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/mvin_wchnstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/mvin_wchstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/mvwin_wchnstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/mvwin_wchstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/win_wchnstr.3x=curs_in_wchstr.3x -s none /opt/csw/share/man/man3/win_wchstr.3x=curs_in_wchstr.3x -f none /opt/csw/share/man/man3/curs_inch.3x 0644 root bin -s none /opt/csw/share/man/man3/inch.3x=curs_inch.3x -s none /opt/csw/share/man/man3/mvinch.3x=curs_inch.3x -s none /opt/csw/share/man/man3/mvwinch.3x=curs_inch.3x -s none /opt/csw/share/man/man3/winch.3x=curs_inch.3x -f none /opt/csw/share/man/man3/curs_inchstr.3x 0644 root bin -s none /opt/csw/share/man/man3/inchnstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/inchstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/mvinchnstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/mvinchstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/mvwinchnstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/mvwinchstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/winchnstr.3x=curs_inchstr.3x -s none /opt/csw/share/man/man3/winchstr.3x=curs_inchstr.3x -f none /opt/csw/share/man/man3/curs_initscr.3x 0644 root bin -s none /opt/csw/share/man/man3/delscreen.3x=curs_initscr.3x -s none /opt/csw/share/man/man3/endwin.3x=curs_initscr.3x -s none /opt/csw/share/man/man3/initscr.3x=curs_initscr.3x -s none /opt/csw/share/man/man3/isendwin.3x=curs_initscr.3x -s none /opt/csw/share/man/man3/newterm.3x=curs_initscr.3x -s none /opt/csw/share/man/man3/set_term.3x=curs_initscr.3x -f none /opt/csw/share/man/man3/curs_inopts.3x 0644 root bin -s none /opt/csw/share/man/man3/cbreak.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/echo.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/halfdelay.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/intrflush.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/keypad.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/meta.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/nocbreak.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/nodelay.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/noecho.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/noqiflush.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/noraw.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/notimeout.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/qiflush.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/raw.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/timeout.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/typeahead.3x=curs_inopts.3x -s none /opt/csw/share/man/man3/wtimeout.3x=curs_inopts.3x -f none /opt/csw/share/man/man3/curs_ins_wch.3x 0644 root bin -s none /opt/csw/share/man/man3/ins_wch.3x=curs_ins_wch.3x -s none /opt/csw/share/man/man3/mvins_wch.3x=curs_ins_wch.3x -s none /opt/csw/share/man/man3/mvwins_wch.3x=curs_ins_wch.3x -s none /opt/csw/share/man/man3/wins_wch.3x=curs_ins_wch.3x -f none /opt/csw/share/man/man3/curs_ins_wstr.3x 0644 root bin -s none /opt/csw/share/man/man3/ins_nwstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/ins_wstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/move.3x=curs_move.3x -s none /opt/csw/share/man/man3/mvins_nwstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/mvins_wstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/mvwins_nwstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/mvwins_wstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/wins_nwstr.3x=curs_ins_wstr.3x -s none /opt/csw/share/man/man3/wins_wstr.3x=curs_ins_wstr.3x -f none /opt/csw/share/man/man3/curs_insch.3x 0644 root bin -s none /opt/csw/share/man/man3/insch.3x=curs_insch.3x -s none /opt/csw/share/man/man3/mvinsch.3x=curs_insch.3x -s none /opt/csw/share/man/man3/mvwinsch.3x=curs_insch.3x -s none /opt/csw/share/man/man3/winsch.3x=curs_insch.3x -f none /opt/csw/share/man/man3/curs_insstr.3x 0644 root bin -s none /opt/csw/share/man/man3/insnstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/insstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/mvinsnstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/mvinsstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/mvwinsnstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/mvwinsstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/winsnstr.3x=curs_insstr.3x -s none /opt/csw/share/man/man3/winsstr.3x=curs_insstr.3x -f none /opt/csw/share/man/man3/curs_instr.3x 0644 root bin -s none /opt/csw/share/man/man3/innstr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/instr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/mvinnstr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/mvinstr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/mvwinnstr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/mvwinstr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/winnstr.3x=curs_instr.3x -s none /opt/csw/share/man/man3/winstr.3x=curs_instr.3x -f none /opt/csw/share/man/man3/curs_inwstr.3x 0644 root bin -s none /opt/csw/share/man/man3/innwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/inwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/mvinnwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/mvinwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/mvwinnwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/mvwinwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/winnwstr.3x=curs_inwstr.3x -s none /opt/csw/share/man/man3/winwstr.3x=curs_inwstr.3x -f none /opt/csw/share/man/man3/curs_kernel.3x 0644 root bin -s none /opt/csw/share/man/man3/curs_set.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/def_prog_mode.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/def_shell_mode.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/getsyx.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/napms.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/reset_prog_mode.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/resetty.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/reset_shell_mode.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/ripoffline.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/savetty.3x=curs_kernel.3x -s none /opt/csw/share/man/man3/setsyx.3x=curs_kernel.3x -f none /opt/csw/share/man/man3/curs_mouse.3x 0644 root bin -s none /opt/csw/share/man/man3/getmouse.3x=curs_mouse.3x -s none /opt/csw/share/man/man3/mouse_trafo.3x=curs_mouse.3x -s none /opt/csw/share/man/man3/mouseinterval.3x=curs_mouse.3x -s none /opt/csw/share/man/man3/mousemask.3x=curs_mouse.3x -s none /opt/csw/share/man/man3/ungetmouse.3x=curs_mouse.3x -s none /opt/csw/share/man/man3/wenclose.3x=curs_mouse.3x -s none /opt/csw/share/man/man3/wmouse_trafo.3x=curs_mouse.3x -f none /opt/csw/share/man/man3/curs_move.3x 0644 root bin -s none /opt/csw/share/man/man3/wmove.3x=curs_move.3x -f none /opt/csw/share/man/man3/curs_outopts.3x 0644 root bin -s none /opt/csw/share/man/man3/clearok.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/idcok.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/idlok.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/immedok.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/leaveok.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/nl.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/nonl.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/scrollok.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/setscrreg.3x=curs_outopts.3x -s none /opt/csw/share/man/man3/wsetscrreg.3x=curs_outopts.3x -f none /opt/csw/share/man/man3/curs_overlay.3x 0644 root bin -s none /opt/csw/share/man/man3/copywin.3x=curs_overlay.3x -s none /opt/csw/share/man/man3/overlay.3x=curs_overlay.3x -s none /opt/csw/share/man/man3/overwrite.3x=curs_overlay.3x -f none /opt/csw/share/man/man3/curs_pad.3x 0644 root bin -s none /opt/csw/share/man/man3/newpad.3x=curs_pad.3x -s none /opt/csw/share/man/man3/pecho_wchar.3x=curs_pad.3x -s none /opt/csw/share/man/man3/pechochar.3x=curs_pad.3x -s none /opt/csw/share/man/man3/pnoutrefresh.3x=curs_pad.3x -s none /opt/csw/share/man/man3/prefresh.3x=curs_pad.3x -s none /opt/csw/share/man/man3/subpad.3x=curs_pad.3x -f none /opt/csw/share/man/man3/curs_print.3x 0644 root bin -s none /opt/csw/share/man/man3/mcprint.3x=curs_print.3x -f none /opt/csw/share/man/man3/curs_printw.3x 0644 root bin -s none /opt/csw/share/man/man3/mvprintw.3x=curs_printw.3x -s none /opt/csw/share/man/man3/mvwprintw.3x=curs_printw.3x -s none /opt/csw/share/man/man3/printw.3x=curs_printw.3x -s none /opt/csw/share/man/man3/vw_printw.3x=curs_printw.3x -s none /opt/csw/share/man/man3/vwprintw.3x=curs_printw.3x -s none /opt/csw/share/man/man3/wprintw.3x=curs_printw.3x -f none /opt/csw/share/man/man3/curs_refresh.3x 0644 root bin -s none /opt/csw/share/man/man3/doupdate.3x=curs_refresh.3x -s none /opt/csw/share/man/man3/redrawwin.3x=curs_refresh.3x -s none /opt/csw/share/man/man3/refresh.3x=curs_refresh.3x -s none /opt/csw/share/man/man3/wnoutrefresh.3x=curs_refresh.3x -s none /opt/csw/share/man/man3/wredrawln.3x=curs_refresh.3x -s none /opt/csw/share/man/man3/wrefresh.3x=curs_refresh.3x -f none /opt/csw/share/man/man3/curs_scanw.3x 0644 root bin -s none /opt/csw/share/man/man3/mvscanw.3x=curs_scanw.3x -s none /opt/csw/share/man/man3/mvwscanw.3x=curs_scanw.3x -s none /opt/csw/share/man/man3/scanw.3x=curs_scanw.3x -s none /opt/csw/share/man/man3/vw_scanw.3x=curs_scanw.3x -s none /opt/csw/share/man/man3/vwscanw.3x=curs_scanw.3x -s none /opt/csw/share/man/man3/wscanw.3x=curs_scanw.3x -f none /opt/csw/share/man/man3/curs_scr_dump.3x 0644 root bin -s none /opt/csw/share/man/man3/scr_dump.3x=curs_scr_dump.3x -s none /opt/csw/share/man/man3/scr_init.3x=curs_scr_dump.3x -s none /opt/csw/share/man/man3/scr_restore.3x=curs_scr_dump.3x -s none /opt/csw/share/man/man3/scr_set.3x=curs_scr_dump.3x -f none /opt/csw/share/man/man3/curs_scroll.3x 0644 root bin -s none /opt/csw/share/man/man3/scrl.3x=curs_scroll.3x -s none /opt/csw/share/man/man3/scroll.3x=curs_scroll.3x -s none /opt/csw/share/man/man3/wscrl.3x=curs_scroll.3x -f none /opt/csw/share/man/man3/curs_slk.3x 0644 root bin -s none /opt/csw/share/man/man3/slk_attr.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_attr_off.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_attr_on.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_attr_set.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_attroff.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_attron.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_attrset.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_clear.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_color.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_init.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_label.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_noutrefresh.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_refresh.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_restore.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_set.3x=curs_slk.3x -s none /opt/csw/share/man/man3/slk_touch.3x=curs_slk.3x -f none /opt/csw/share/man/man3/curs_termattrs.3x 0644 root bin -s none /opt/csw/share/man/man3/baudrate.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/erasechar.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/erasewchar.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/has_ic.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/has_il.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/killchar.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/killwchar.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/longname.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/term_attrs.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/termattrs.3x=curs_termattrs.3x -s none /opt/csw/share/man/man3/termname.3x=curs_termattrs.3x -f none /opt/csw/share/man/man3/curs_termcap.3x 0644 root bin -s none /opt/csw/share/man/man3/tgetent.3x=curs_termcap.3x -s none /opt/csw/share/man/man3/tgetflag.3x=curs_termcap.3x -s none /opt/csw/share/man/man3/tgetnum.3x=curs_termcap.3x -s none /opt/csw/share/man/man3/tgetstr.3x=curs_termcap.3x -s none /opt/csw/share/man/man3/tgoto.3x=curs_termcap.3x -s none /opt/csw/share/man/man3/tputs.3x=curs_terminfo.3x -f none /opt/csw/share/man/man3/curs_terminfo.3x 0644 root bin -s none /opt/csw/share/man/man3/del_curterm.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/mvcur.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/putp.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/restartterm.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/set_curterm.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/setterm.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/setupterm.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/tigetflag.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/tigetnum.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/tigetstr.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/tparm.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/vid_attr.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/vid_puts.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/vidattr.3x=curs_terminfo.3x -s none /opt/csw/share/man/man3/vidputs.3x=curs_terminfo.3x -f none /opt/csw/share/man/man3/curs_touch.3x 0644 root bin -s none /opt/csw/share/man/man3/is_linetouched.3x=curs_touch.3x -s none /opt/csw/share/man/man3/is_wintouched.3x=curs_touch.3x -s none /opt/csw/share/man/man3/touchline.3x=curs_touch.3x -s none /opt/csw/share/man/man3/touchwin.3x=curs_touch.3x -s none /opt/csw/share/man/man3/untouchwin.3x=curs_touch.3x -s none /opt/csw/share/man/man3/wtouchln.3x=curs_touch.3x -f none /opt/csw/share/man/man3/curs_trace.3x 0644 root bin -s none /opt/csw/share/man/man3/_nc_tracebits.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_traceattr.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_traceattr2.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_tracechar.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_tracechtype.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_tracechtype2.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_tracedump.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_tracef.3x=curs_trace.3x -s none /opt/csw/share/man/man3/_tracemouse.3x=curs_trace.3x -s none /opt/csw/share/man/man3/trace.3x=curs_trace.3x -f none /opt/csw/share/man/man3/curs_util.3x 0644 root bin -s none /opt/csw/share/man/man3/delay_output.3x=curs_util.3x -s none /opt/csw/share/man/man3/filter.3x=curs_util.3x -s none /opt/csw/share/man/man3/flushinp.3x=curs_util.3x -s none /opt/csw/share/man/man3/getwin.3x=curs_util.3x -s none /opt/csw/share/man/man3/key_name.3x=curs_util.3x -s none /opt/csw/share/man/man3/keyname.3x=curs_util.3x -s none /opt/csw/share/man/man3/putwin.3x=curs_util.3x -s none /opt/csw/share/man/man3/unctrl.3x=curs_util.3x -s none /opt/csw/share/man/man3/use_env.3x=curs_util.3x -s none /opt/csw/share/man/man3/wunctrl.3x=curs_util.3x -f none /opt/csw/share/man/man3/curs_window.3x 0644 root bin -s none /opt/csw/share/man/man3/delwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/derwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/dupwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/mvderwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/mvwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/newwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/subwin.3x=curs_window.3x -s none /opt/csw/share/man/man3/syncok.3x=curs_window.3x -s none /opt/csw/share/man/man3/wcursyncup.3x=curs_window.3x -s none /opt/csw/share/man/man3/wsyncdown.3x=curs_window.3x -s none /opt/csw/share/man/man3/wsyncup.3x=curs_window.3x -f none /opt/csw/share/man/man3/default_colors.3x 0644 root bin -s none /opt/csw/share/man/man3/assume_default_colors.3x=default_colors.3x -s none /opt/csw/share/man/man3/use_default_colors.3x=default_colors.3x -f none /opt/csw/share/man/man3/define_key.3x 0644 root bin -f none /opt/csw/share/man/man3/form.3x 0644 root bin -f none /opt/csw/share/man/man3/form_cursor.3x 0644 root bin -s none /opt/csw/share/man/man3/pos_form_cursor.3x=form_cursor.3x -f none /opt/csw/share/man/man3/form_data.3x 0644 root bin -s none /opt/csw/share/man/man3/data_ahead.3x=form_data.3x -s none /opt/csw/share/man/man3/data_behind.3x=form_data.3x -f none /opt/csw/share/man/man3/form_driver.3x 0644 root bin -f none /opt/csw/share/man/man3/form_field.3x 0644 root bin -s none /opt/csw/share/man/man3/field_count.3x=form_field.3x -s none /opt/csw/share/man/man3/form_fields.3x=form_field.3x -s none /opt/csw/share/man/man3/move_field.3x=form_field.3x -s none /opt/csw/share/man/man3/set_form_fields.3x=form_field.3x -f none /opt/csw/share/man/man3/form_field_attributes.3x 0644 root bin -s none /opt/csw/share/man/man3/field_back.3x=form_field_attributes.3x -s none /opt/csw/share/man/man3/field_fore.3x=form_field_attributes.3x -f none /opt/csw/share/man/man3/form_new.3x 0644 root bin -s none /opt/csw/share/man/man3/field_pad.3x=form_field_attributes.3x -s none /opt/csw/share/man/man3/set_field_back.3x=form_field_attributes.3x -s none /opt/csw/share/man/man3/set_field_fore.3x=form_field_attributes.3x -s none /opt/csw/share/man/man3/set_field_pad.3x=form_field_attributes.3x -f none /opt/csw/share/man/man3/form_field_buffer.3x 0644 root bin -s none /opt/csw/share/man/man3/field_buffer.3x=form_field_buffer.3x -s none /opt/csw/share/man/man3/field_status.3x=form_field_buffer.3x -s none /opt/csw/share/man/man3/set_field_buffer.3x=form_field_buffer.3x -s none /opt/csw/share/man/man3/set_field_status.3x=form_field_buffer.3x -s none /opt/csw/share/man/man3/set_max_field.3x=form_field_buffer.3x -f none /opt/csw/share/man/man3/form_field_info.3x 0644 root bin -s none /opt/csw/share/man/man3/dynamic_field_info.3x=form_field_info.3x -s none /opt/csw/share/man/man3/field_info.3x=form_field_info.3x -f none /opt/csw/share/man/man3/form_field_just.3x 0644 root bin -s none /opt/csw/share/man/man3/field_just.3x=form_field_just.3x -s none /opt/csw/share/man/man3/set_field_just.3x=form_field_just.3x -f none /opt/csw/share/man/man3/form_field_new.3x 0644 root bin -s none /opt/csw/share/man/man3/dup_field.3x=form_field_new.3x -s none /opt/csw/share/man/man3/free_field.3x=form_field_new.3x -s none /opt/csw/share/man/man3/link_field.3x=form_field_new.3x -s none /opt/csw/share/man/man3/new_field.3x=form_field_new.3x -f none /opt/csw/share/man/man3/form_field_opts.3x 0644 root bin -s none /opt/csw/share/man/man3/field_opts.3x=form_field_opts.3x -s none /opt/csw/share/man/man3/field_opts_off.3x=form_field_opts.3x -s none /opt/csw/share/man/man3/field_opts_on.3x=form_field_opts.3x -s none /opt/csw/share/man/man3/set_field_opts.3x=form_field_opts.3x -f none /opt/csw/share/man/man3/form_field_userptr.3x 0644 root bin -s none /opt/csw/share/man/man3/field_userptr.3x=form_field_userptr.3x -s none /opt/csw/share/man/man3/set_field_userptr.3x=form_field_userptr.3x -f none /opt/csw/share/man/man3/form_field_validation.3x 0644 root bin -s none /opt/csw/share/man/man3/field_arg.3x=form_field_validation.3x -s none /opt/csw/share/man/man3/field_type.3x=form_field_validation.3x -s none /opt/csw/share/man/man3/set_field_type.3x=form_field_validation.3x -f none /opt/csw/share/man/man3/form_fieldtype.3x 0644 root bin -s none /opt/csw/share/man/man3/free_fieldtype.3x=form_fieldtype.3x -s none /opt/csw/share/man/man3/link_fieldtype.3x=form_fieldtype.3x -s none /opt/csw/share/man/man3/new_fieldtype.3x=form_fieldtype.3x -s none /opt/csw/share/man/man3/set_fieldtype_arg.3x=form_fieldtype.3x -s none /opt/csw/share/man/man3/set_fieldtype_choice.3x=form_fieldtype.3x -f none /opt/csw/share/man/man3/form_hook.3x 0644 root bin -s none /opt/csw/share/man/man3/set_field_init.3x=form_hook.3x -s none /opt/csw/share/man/man3/set_field_term.3x=form_hook.3x -s none /opt/csw/share/man/man3/set_form_init.3x=form_hook.3x -s none /opt/csw/share/man/man3/set_form_term.3x=form_hook.3x -s none /opt/csw/share/man/man3/free_form.3x=form_new.3x -s none /opt/csw/share/man/man3/new_form.3x=form_new.3x -f none /opt/csw/share/man/man3/form_new_page.3x 0644 root bin -s none /opt/csw/share/man/man3/new_page.3x=form_new_page.3x -s none /opt/csw/share/man/man3/set_new_page.3x=form_new_page.3x -f none /opt/csw/share/man/man3/form_opts.3x 0644 root bin -s none /opt/csw/share/man/man3/form_opts_off.3x=form_opts.3x -s none /opt/csw/share/man/man3/form_opts_on.3x=form_opts.3x -s none /opt/csw/share/man/man3/set_form_opts.3x=form_opts.3x -f none /opt/csw/share/man/man3/form_page.3x 0644 root bin -s none /opt/csw/share/man/man3/current_field.3x=form_page.3x -s none /opt/csw/share/man/man3/field_index.3x=form_page.3x -f none /opt/csw/share/man/man3/menu.3x 0644 root bin -s none /opt/csw/share/man/man3/set_current_field.3x=form_page.3x -s none /opt/csw/share/man/man3/set_form_page.3x=form_page.3x -f none /opt/csw/share/man/man3/form_post.3x 0644 root bin -s none /opt/csw/share/man/man3/post_form.3x=form_post.3x -s none /opt/csw/share/man/man3/unpost_form.3x=form_post.3x -f none /opt/csw/share/man/man3/form_requestname.3x 0644 root bin -s none /opt/csw/share/man/man3/form_request_by_name.3x=form_requestname.3x -s none /opt/csw/share/man/man3/form_request_name.3x=form_requestname.3x -f none /opt/csw/share/man/man3/form_userptr.3x 0644 root bin -s none /opt/csw/share/man/man3/set_form_userptr.3x=form_userptr.3x -f none /opt/csw/share/man/man3/form_win.3x 0644 root bin -s none /opt/csw/share/man/man3/form_sub.3x=form_win.3x -s none /opt/csw/share/man/man3/scale_form.3x=form_win.3x -s none /opt/csw/share/man/man3/set_form_sub.3x=form_win.3x -s none /opt/csw/share/man/man3/set_form_win.3x=form_win.3x -f none /opt/csw/share/man/man3/key_defined.3x 0644 root bin -f none /opt/csw/share/man/man3/keybound.3x 0644 root bin -f none /opt/csw/share/man/man3/keyok.3x 0644 root bin -f none /opt/csw/share/man/man3/menu_attributes.3x 0644 root bin -s none /opt/csw/share/man/man3/menu_back.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/menu_fore.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/menu_grey.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/menu_pad.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/set_menu_back.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/set_menu_fore.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/set_menu_grey.3x=menu_attributes.3x -s none /opt/csw/share/man/man3/set_menu_pad.3x=menu_attributes.3x -f none /opt/csw/share/man/man3/menu_cursor.3x 0644 root bin -s none /opt/csw/share/man/man3/pos_menu_cursor.3x=menu_cursor.3x -f none /opt/csw/share/man/man3/menu_driver.3x 0644 root bin -f none /opt/csw/share/man/man3/menu_format.3x 0644 root bin -s none /opt/csw/share/man/man3/set_menu_format.3x=menu_format.3x -f none /opt/csw/share/man/man3/menu_hook.3x 0644 root bin -s none /opt/csw/share/man/man3/set_item_init.3x=menu_hook.3x -s none /opt/csw/share/man/man3/set_item_term.3x=menu_hook.3x -s none /opt/csw/share/man/man3/set_menu_init.3x=menu_hook.3x -s none /opt/csw/share/man/man3/set_menu_term.3x=menu_hook.3x -f none /opt/csw/share/man/man3/menu_items.3x 0644 root bin -s none /opt/csw/share/man/man3/item_count.3x=menu_items.3x -f none /opt/csw/share/man/man3/menu_mark.3x 0644 root bin -s none /opt/csw/share/man/man3/set_menu_items.3x=menu_items.3x -s none /opt/csw/share/man/man3/set_menu_mark.3x=menu_mark.3x -f none /opt/csw/share/man/man3/menu_new.3x 0644 root bin -s none /opt/csw/share/man/man3/free_menu.3x=menu_new.3x -s none /opt/csw/share/man/man3/new_menu.3x=menu_new.3x -f none /opt/csw/share/man/man3/menu_opts.3x 0644 root bin -s none /opt/csw/share/man/man3/menu_opts_off.3x=menu_opts.3x -s none /opt/csw/share/man/man3/menu_opts_on.3x=menu_opts.3x -s none /opt/csw/share/man/man3/set_menu_opts.3x=menu_opts.3x -f none /opt/csw/share/man/man3/menu_pattern.3x 0644 root bin -s none /opt/csw/share/man/man3/set_menu_pattern.3x=menu_pattern.3x -f none /opt/csw/share/man/man3/menu_post.3x 0644 root bin -s none /opt/csw/share/man/man3/post_menu.3x=menu_post.3x -s none /opt/csw/share/man/man3/unpost_menu.3x=menu_post.3x -f none /opt/csw/share/man/man3/menu_requestname.3x 0644 root bin -s none /opt/csw/share/man/man3/menu_request_by_name.3x=menu_requestname.3x -s none /opt/csw/share/man/man3/menu_request_name.3x=menu_requestname.3x -f none /opt/csw/share/man/man3/menu_spacing.3x 0644 root bin -s none /opt/csw/share/man/man3/set_menu_spacing.3x=menu_spacing.3x -f none /opt/csw/share/man/man3/menu_win.3x 0644 root bin -f none /opt/csw/share/man/man3/menu_userptr.3x 0644 root bin -s none /opt/csw/share/man/man3/set_menu_userptr.3x=menu_userptr.3x -s none /opt/csw/share/man/man3/menu_sub.3x=menu_win.3x -s none /opt/csw/share/man/man3/scale_menu.3x=menu_win.3x -s none /opt/csw/share/man/man3/set_menu_sub.3x=menu_win.3x -s none /opt/csw/share/man/man3/set_menu_win.3x=menu_win.3x -f none /opt/csw/share/man/man3/mitem_current.3x 0644 root bin -s none /opt/csw/share/man/man3/current_item.3x=mitem_current.3x -s none /opt/csw/share/man/man3/item_index.3x=mitem_current.3x -s none /opt/csw/share/man/man3/set_current_item.3x=mitem_current.3x -s none /opt/csw/share/man/man3/set_top_row.3x=mitem_current.3x -s none /opt/csw/share/man/man3/top_row.3x=mitem_current.3x -f none /opt/csw/share/man/man3/mitem_name.3x 0644 root bin -s none /opt/csw/share/man/man3/item_description.3x=mitem_name.3x -s none /opt/csw/share/man/man3/item_name.3x=mitem_name.3x -f none /opt/csw/share/man/man3/mitem_new.3x 0644 root bin -s none /opt/csw/share/man/man3/free_item.3x=mitem_new.3x -s none /opt/csw/share/man/man3/new_item.3x=mitem_new.3x -f none /opt/csw/share/man/man3/mitem_opts.3x 0644 root bin -s none /opt/csw/share/man/man3/item_opts.3x=mitem_opts.3x -s none /opt/csw/share/man/man3/item_opts_off.3x=mitem_opts.3x -s none /opt/csw/share/man/man3/item_opts_on.3x=mitem_opts.3x -s none /opt/csw/share/man/man3/set_item_opts.3x=mitem_opts.3x -f none /opt/csw/share/man/man3/mitem_userptr.3x 0644 root bin -s none /opt/csw/share/man/man3/item_userptr.3x=mitem_userptr.3x -s none /opt/csw/share/man/man3/set_item_userptr.3x=mitem_userptr.3x -f none /opt/csw/share/man/man3/mitem_value.3x 0644 root bin -s none /opt/csw/share/man/man3/item_value.3x=mitem_value.3x -s none /opt/csw/share/man/man3/set_item_value.3x=mitem_value.3x -f none /opt/csw/share/man/man3/mitem_visible.3x 0644 root bin -s none /opt/csw/share/man/man3/item_visible.3x=mitem_visible.3x -f none /opt/csw/share/man/man3/ncurses.3x 0644 root bin -f none /opt/csw/share/man/man3/panel.3x 0644 root bin -s none /opt/csw/share/man/man3/bottom_panel.3x=panel.3x -s none /opt/csw/share/man/man3/del_panel.3x=panel.3x -s none /opt/csw/share/man/man3/hide_panel.3x=panel.3x -s none /opt/csw/share/man/man3/move_panel.3x=panel.3x -s none /opt/csw/share/man/man3/new_panel.3x=panel.3x -s none /opt/csw/share/man/man3/panel_above.3x=panel.3x -s none /opt/csw/share/man/man3/panel_below.3x=panel.3x -s none /opt/csw/share/man/man3/panel_hidden.3x=panel.3x -f none /opt/csw/share/man/man3/wresize.3x 0644 root bin -s none /opt/csw/share/man/man3/panel_userptr.3x=panel.3x -s none /opt/csw/share/man/man3/panel_window.3x=panel.3x -s none /opt/csw/share/man/man3/replace_panel.3x=panel.3x -s none /opt/csw/share/man/man3/set_panel_userptr.3x=panel.3x -s none /opt/csw/share/man/man3/show_panel.3x=panel.3x -s none /opt/csw/share/man/man3/top_panel.3x=panel.3x -s none /opt/csw/share/man/man3/update_panels.3x=panel.3x -f none /opt/csw/share/man/man3/resizeterm.3x 0644 root bin -s none /opt/csw/share/man/man3/is_term_resized.3x=resizeterm.3x -s none /opt/csw/share/man/man3/resize_term.3x=resizeterm.3x -d none /opt/csw/share/man/man7 0755 root bin -f none /opt/csw/share/man/man7/term.7 0644 root bin -d none /opt/csw/share/terminfo 0755 root bin -d none /opt/csw/share/terminfo/d 0755 root bin -f none /opt/csw/share/terminfo/d/dumb 0644 root bin -f none /opt/csw/share/terminfo/d/dec-vt340 0644 root bin -l none /opt/csw/share/terminfo/d/dec-vt330=dec-vt340 -f none /opt/csw/share/terminfo/d/dec-vt400 0644 root bin -f none /opt/csw/share/terminfo/d/dec-vt100 0644 root bin -f none /opt/csw/share/terminfo/d/dec-vt220 0644 root bin -f none /opt/csw/share/terminfo/d/decansi 0644 root bin -f none /opt/csw/share/terminfo/d/dtterm 0644 root bin -f none /opt/csw/share/terminfo/d/djgpp 0644 root bin -f none /opt/csw/share/terminfo/d/djgpp203 0644 root bin -f none /opt/csw/share/terminfo/d/djgpp204 0644 root bin -f none /opt/csw/share/terminfo/d/dku7003-dumb 0644 root bin -f none /opt/csw/share/terminfo/d/dku7003 0644 root bin -f none /opt/csw/share/terminfo/d/dmd1 0644 root bin -f none /opt/csw/share/terminfo/d/dmd 0644 root bin -f none /opt/csw/share/terminfo/d/dmd-24 0644 root bin -f none /opt/csw/share/terminfo/d/dmd-34 0644 root bin -f none /opt/csw/share/terminfo/d/d80 0644 root bin -l none /opt/csw/share/terminfo/d/dialogue=d80 -l none /opt/csw/share/terminfo/d/dialogue80=d80 -f none /opt/csw/share/terminfo/d/dgkeys+8b 0644 root bin -f none /opt/csw/share/terminfo/d/dgkeys+7b 0644 root bin -f none /opt/csw/share/terminfo/d/dgkeys+11 0644 root bin -f none /opt/csw/share/terminfo/d/dgkeys+15 0644 root bin -f none /opt/csw/share/terminfo/d/dgunix+fixed 0644 root bin -f none /opt/csw/share/terminfo/d/dg+fixed 0644 root bin -f none /opt/csw/share/terminfo/d/dg+color8 0644 root bin -f none /opt/csw/share/terminfo/d/dg+color 0644 root bin -f none /opt/csw/share/terminfo/d/dgmode+color8 0644 root bin -f none /opt/csw/share/terminfo/d/dgmode+color 0644 root bin -f none /opt/csw/share/terminfo/d/dgunix+ccc 0644 root bin -f none /opt/csw/share/terminfo/d/dg+ccc 0644 root bin -f none /opt/csw/share/terminfo/d/dg-generic 0644 root bin -f none /opt/csw/share/terminfo/d/dg200 0644 root bin -f none /opt/csw/share/terminfo/d/dg210 0644 root bin -l none /opt/csw/share/terminfo/d/dg-ansi=dg210 -f none /opt/csw/share/terminfo/d/dg211 0644 root bin -f none /opt/csw/share/terminfo/d/dg450 0644 root bin -l none /opt/csw/share/terminfo/d/dg6134=dg450 -f none /opt/csw/share/terminfo/d/dg460-ansi 0644 root bin -f none /opt/csw/share/terminfo/d/dg6053-old 0644 root bin -l none /opt/csw/share/terminfo/d/dg100=dg6053-old -f none /opt/csw/share/terminfo/d/dg6053 0644 root bin -l none /opt/csw/share/terminfo/d/dg605x=dg6053 -l none /opt/csw/share/terminfo/d/d2=dg6053 -l none /opt/csw/share/terminfo/d/d2-dg=dg6053 -f none /opt/csw/share/terminfo/d/d200 0644 root bin -l none /opt/csw/share/terminfo/d/d200-dg=d200 -f none /opt/csw/share/terminfo/d/d210 0644 root bin -l none /opt/csw/share/terminfo/d/d214=d210 -f none /opt/csw/share/terminfo/d/d210-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d214-dg=d210-dg -f none /opt/csw/share/terminfo/d/d211 0644 root bin -l none /opt/csw/share/terminfo/d/d215=d211 -f none /opt/csw/share/terminfo/d/d211-7b 0644 root bin -f none /opt/csw/share/terminfo/d/dw1 0644 root bin -l none /opt/csw/share/terminfo/d/d215-7b=d211-7b -f none /opt/csw/share/terminfo/d/d211-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d215-dg=d211-dg -f none /opt/csw/share/terminfo/d/d216-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d216e-dg=d216-dg -l none /opt/csw/share/terminfo/d/d216+dg=d216-dg -l none /opt/csw/share/terminfo/d/d216e+dg=d216-dg -l none /opt/csw/share/terminfo/d/d217-dg=d216-dg -f none /opt/csw/share/terminfo/d/d216-unix 0644 root bin -l none /opt/csw/share/terminfo/d/d216e-unix=d216-unix -l none /opt/csw/share/terminfo/d/d216+=d216-unix -l none /opt/csw/share/terminfo/d/d216e+=d216-unix -f none /opt/csw/share/terminfo/d/d216-unix-25 0644 root bin -l none /opt/csw/share/terminfo/d/d216+25=d216-unix-25 -f none /opt/csw/share/terminfo/d/d217-unix 0644 root bin -f none /opt/csw/share/terminfo/d/d217-unix-25 0644 root bin -f none /opt/csw/share/terminfo/d/d220 0644 root bin -f none /opt/csw/share/terminfo/d/d220-7b 0644 root bin -f none /opt/csw/share/terminfo/d/d220-dg 0644 root bin -f none /opt/csw/share/terminfo/d/d230c 0644 root bin -l none /opt/csw/share/terminfo/d/d230=d230c -f none /opt/csw/share/terminfo/d/d230c-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d230-dg=d230c-dg -f none /opt/csw/share/terminfo/d/d400 0644 root bin -l none /opt/csw/share/terminfo/d/d400-dg=d400 -l none /opt/csw/share/terminfo/d/d450=d400 -l none /opt/csw/share/terminfo/d/d450-dg=d400 -f none /opt/csw/share/terminfo/d/d410 0644 root bin -l none /opt/csw/share/terminfo/d/d411=d410 -l none /opt/csw/share/terminfo/d/d460=d410 -l none /opt/csw/share/terminfo/d/d461=d410 -f none /opt/csw/share/terminfo/d/d410-7b 0644 root bin -l none /opt/csw/share/terminfo/d/d411-7b=d410-7b -l none /opt/csw/share/terminfo/d/d460-7b=d410-7b -l none /opt/csw/share/terminfo/d/d461-7b=d410-7b -f none /opt/csw/share/terminfo/d/d410-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d460-dg=d410-dg -l none /opt/csw/share/terminfo/d/d411-dg=d410-dg -l none /opt/csw/share/terminfo/d/d461-dg=d410-dg -f none /opt/csw/share/terminfo/d/d410-w 0644 root bin -l none /opt/csw/share/terminfo/d/d411-w=d410-w -l none /opt/csw/share/terminfo/d/d460-w=d410-w -l none /opt/csw/share/terminfo/d/d461-w=d410-w -f none /opt/csw/share/terminfo/d/d410-7b-w 0644 root bin -l none /opt/csw/share/terminfo/d/d411-7b-w=d410-7b-w -l none /opt/csw/share/terminfo/d/d460-7b-w=d410-7b-w -l none /opt/csw/share/terminfo/d/d461-7b-w=d410-7b-w -f none /opt/csw/share/terminfo/d/d412-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d462-dg=d412-dg -l none /opt/csw/share/terminfo/d/d462e-dg=d412-dg -l none /opt/csw/share/terminfo/d/d412+dg=d412-dg -l none /opt/csw/share/terminfo/d/d462+dg=d412-dg -l none /opt/csw/share/terminfo/d/d413-dg=d412-dg -l none /opt/csw/share/terminfo/d/d463-dg=d412-dg -f none /opt/csw/share/terminfo/d/d412-unix 0644 root bin -l none /opt/csw/share/terminfo/d/d462-unix=d412-unix -l none /opt/csw/share/terminfo/d/d412+=d412-unix -l none /opt/csw/share/terminfo/d/d462+=d412-unix -f none /opt/csw/share/terminfo/d/d412-unix-w 0644 root bin -l none /opt/csw/share/terminfo/d/d462-unix-w=d412-unix-w -l none /opt/csw/share/terminfo/d/d412+w=d412-unix-w -l none /opt/csw/share/terminfo/d/d462+w=d412-unix-w -f none /opt/csw/share/terminfo/d/d412-unix-25 0644 root bin -l none /opt/csw/share/terminfo/d/d462-unix-25=d412-unix-25 -l none /opt/csw/share/terminfo/d/d412+25=d412-unix-25 -l none /opt/csw/share/terminfo/d/d462+25=d412-unix-25 -f none /opt/csw/share/terminfo/d/d412-unix-s 0644 root bin -l none /opt/csw/share/terminfo/d/d462-unix-s=d412-unix-s -l none /opt/csw/share/terminfo/d/d412+s=d412-unix-s -l none /opt/csw/share/terminfo/d/d462+s=d412-unix-s -f none /opt/csw/share/terminfo/d/d412-unix-sr 0644 root bin -l none /opt/csw/share/terminfo/d/d462-unix-sr=d412-unix-sr -l none /opt/csw/share/terminfo/d/d412+sr=d412-unix-sr -l none /opt/csw/share/terminfo/d/d462+sr=d412-unix-sr -f none /opt/csw/share/terminfo/d/d413-unix 0644 root bin -l none /opt/csw/share/terminfo/d/d463-unix=d413-unix -f none /opt/csw/share/terminfo/d/d413-unix-w 0644 root bin -l none /opt/csw/share/terminfo/d/d463-unix-w=d413-unix-w -f none /opt/csw/share/terminfo/d/d413-unix-25 0644 root bin -l none /opt/csw/share/terminfo/d/d463-unix-25=d413-unix-25 -f none /opt/csw/share/terminfo/d/d413-unix-s 0644 root bin -l none /opt/csw/share/terminfo/d/d463-unix-s=d413-unix-s -f none /opt/csw/share/terminfo/d/d413-unix-sr 0644 root bin -l none /opt/csw/share/terminfo/d/d463-unix-sr=d413-unix-sr -f none /opt/csw/share/terminfo/d/dw2 0644 root bin -f none /opt/csw/share/terminfo/d/d414-unix 0644 root bin -l none /opt/csw/share/terminfo/d/d464-unix=d414-unix -f none /opt/csw/share/terminfo/d/d414-unix-w 0644 root bin -l none /opt/csw/share/terminfo/d/d464-unix-w=d414-unix-w -f none /opt/csw/share/terminfo/d/d414-unix-25 0644 root bin -l none /opt/csw/share/terminfo/d/d464-unix-25=d414-unix-25 -f none /opt/csw/share/terminfo/d/d414-unix-s 0644 root bin -l none /opt/csw/share/terminfo/d/d464-unix-s=d414-unix-s -f none /opt/csw/share/terminfo/d/d414-unix-sr 0644 root bin -l none /opt/csw/share/terminfo/d/d464-unix-sr=d414-unix-sr -f none /opt/csw/share/terminfo/d/d430c-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d430-dg=d430c-dg -f none /opt/csw/share/terminfo/d/d430c-dg-ccc 0644 root bin -l none /opt/csw/share/terminfo/d/d430-dg-ccc=d430c-dg-ccc -f none /opt/csw/share/terminfo/d/d430c-unix 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix=d430c-unix -f none /opt/csw/share/terminfo/d/d430c-unix-w 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-w=d430c-unix-w -f none /opt/csw/share/terminfo/d/d430c-unix-25 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-25=d430c-unix-25 -f none /opt/csw/share/terminfo/d/d430c-unix-s 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-s=d430c-unix-s -f none /opt/csw/share/terminfo/d/d430c-unix-sr 0644 root bin -f none /opt/csw/share/terminfo/d/d470c 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-sr=d430c-unix-sr -f none /opt/csw/share/terminfo/d/d430c-unix-ccc 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-ccc=d430c-unix-ccc -f none /opt/csw/share/terminfo/d/d430c-unix-w-ccc 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-w-ccc=d430c-unix-w-ccc -f none /opt/csw/share/terminfo/d/d430c-unix-25-ccc 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-25-ccc=d430c-unix-25-ccc -f none /opt/csw/share/terminfo/d/d430c-unix-s-ccc 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-s-ccc=d430c-unix-s-ccc -f none /opt/csw/share/terminfo/d/d430c-unix-sr-ccc 0644 root bin -l none /opt/csw/share/terminfo/d/d430-unix-sr-ccc=d430c-unix-sr-ccc -l none /opt/csw/share/terminfo/d/d470=d470c -f none /opt/csw/share/terminfo/d/d470c-7b 0644 root bin -l none /opt/csw/share/terminfo/d/d470-7b=d470c-7b -f none /opt/csw/share/terminfo/d/d470c-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d470-dg=d470c-dg -f none /opt/csw/share/terminfo/d/d555 0644 root bin -f none /opt/csw/share/terminfo/d/d555-7b 0644 root bin -f none /opt/csw/share/terminfo/d/d555-w 0644 root bin -f none /opt/csw/share/terminfo/d/d555-7b-w 0644 root bin -f none /opt/csw/share/terminfo/d/d555-dg 0644 root bin -f none /opt/csw/share/terminfo/d/d577 0644 root bin -f none /opt/csw/share/terminfo/d/d577-7b 0644 root bin -f none /opt/csw/share/terminfo/d/d577-w 0644 root bin -f none /opt/csw/share/terminfo/d/d577-7b-w 0644 root bin -f none /opt/csw/share/terminfo/d/d577-dg 0644 root bin -l none /opt/csw/share/terminfo/d/d578-dg=d577-dg -f none /opt/csw/share/terminfo/d/d578 0644 root bin -f none /opt/csw/share/terminfo/d/d578-7b 0644 root bin -f none /opt/csw/share/terminfo/d/dm1520 0644 root bin -l none /opt/csw/share/terminfo/d/dm1521=dm1520 -f none /opt/csw/share/terminfo/d/dm2500 0644 root bin -l none /opt/csw/share/terminfo/d/datamedia2500=dm2500 -f none /opt/csw/share/terminfo/d/dmchat 0644 root bin -f none /opt/csw/share/terminfo/d/dm3025 0644 root bin -f none /opt/csw/share/terminfo/d/dm3045 0644 root bin -f none /opt/csw/share/terminfo/d/dm80 0644 root bin -l none /opt/csw/share/terminfo/d/dmdt80=dm80 -l none /opt/csw/share/terminfo/d/dt80=dm80 -f none /opt/csw/share/terminfo/d/dm80w 0644 root bin -l none /opt/csw/share/terminfo/d/dmdt80w=dm80w -l none /opt/csw/share/terminfo/d/dt80w=dm80w -f none /opt/csw/share/terminfo/d/dt80-sas 0644 root bin -f none /opt/csw/share/terminfo/d/dmterm 0644 root bin -f none /opt/csw/share/terminfo/d/dt100 0644 root bin -l none /opt/csw/share/terminfo/d/dt-100=dt100 -f none /opt/csw/share/terminfo/d/dt100w 0644 root bin -l none /opt/csw/share/terminfo/d/dt-100w=dt100w -f none /opt/csw/share/terminfo/d/dt110 0644 root bin -f none /opt/csw/share/terminfo/d/ds40 0644 root bin -l none /opt/csw/share/terminfo/d/ds40-2=ds40 -l none /opt/csw/share/terminfo/d/dataspeed40=ds40 -f none /opt/csw/share/terminfo/d/darwin-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-m-b 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-b 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-m-f 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-f 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-m-f2 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-f2 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-80x25-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-80x25 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-80x30-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-80x30 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-90x30-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-90x30 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-100x37-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-100x37 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-112x37-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-112x37 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-128x40-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-128x40 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-128x48-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-128x48 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-144x48-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-144x48 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-160x64-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-160x64 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-200x64-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-200x64 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-200x75-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-200x75 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-256x96-m 0644 root bin -f none /opt/csw/share/terminfo/d/darwin-256x96 0644 root bin -f none /opt/csw/share/terminfo/d/dku7102 0644 root bin -f none /opt/csw/share/terminfo/d/dku7102-sna 0644 root bin -f none /opt/csw/share/terminfo/d/dku7103-sna 0644 root bin -f none /opt/csw/share/terminfo/d/dku7102-old 0644 root bin -f none /opt/csw/share/terminfo/d/dku7202 0644 root bin -f none /opt/csw/share/terminfo/d/dp3360 0644 root bin -l none /opt/csw/share/terminfo/d/datapoint=dp3360 -f none /opt/csw/share/terminfo/d/dp8242 0644 root bin -f none /opt/csw/share/terminfo/d/decpro 0644 root bin -l none /opt/csw/share/terminfo/d/decwriter=dw2 -l none /opt/csw/share/terminfo/d/dw=dw2 -f none /opt/csw/share/terminfo/d/dw3 0644 root bin -f none /opt/csw/share/terminfo/d/dw4 0644 root bin -f none /opt/csw/share/terminfo/d/delta 0644 root bin -l none /opt/csw/share/terminfo/d/dd5000=delta -f none /opt/csw/share/terminfo/d/ddr 0644 root bin -l none /opt/csw/share/terminfo/d/ddr3180=ddr -f none /opt/csw/share/terminfo/d/diablo1620 0644 root bin -l none /opt/csw/share/terminfo/d/diablo1720=diablo1620 -l none /opt/csw/share/terminfo/d/diablo450=diablo1620 -f none /opt/csw/share/terminfo/d/diablo1620-m8 0644 root bin -l none /opt/csw/share/terminfo/d/diablo1640-m8=diablo1620-m8 -f none /opt/csw/share/terminfo/d/diablo1640 0644 root bin -l none /opt/csw/share/terminfo/d/diablo1730=diablo1640 -l none /opt/csw/share/terminfo/d/diablo1740=diablo1640 -l none /opt/csw/share/terminfo/d/diablo630=diablo1640 -l none /opt/csw/share/terminfo/d/diablo=diablo1640 -f none /opt/csw/share/terminfo/d/diablo1640-lm 0644 root bin -l none /opt/csw/share/terminfo/d/diablo-lm=diablo1640-lm -f none /opt/csw/share/terminfo/d/diablo1740-lm 0644 root bin -f none /opt/csw/share/terminfo/d/dtc382 0644 root bin -f none /opt/csw/share/terminfo/d/dtc300s 0644 root bin -f none /opt/csw/share/terminfo/d/d132 0644 root bin -l none /opt/csw/share/terminfo/d/datagraphix=d132 -f none /opt/csw/share/terminfo/d/d800 0644 root bin -f none /opt/csw/share/terminfo/d/digilog 0644 root bin -f none /opt/csw/share/terminfo/d/dwk 0644 root bin -l none /opt/csw/share/terminfo/d/dwk-vt=dwk -d none /opt/csw/share/terminfo/u 0755 root bin -f none /opt/csw/share/terminfo/u/unknown 0644 root bin -f none /opt/csw/share/terminfo/u/unixpc 0644 root bin -f none /opt/csw/share/terminfo/u/uwin 0644 root bin -f none /opt/csw/share/terminfo/u/uts30 0644 root bin -f none /opt/csw/share/terminfo/u/uniterm 0644 root bin -l none /opt/csw/share/terminfo/u/uniterm49=uniterm -f none /opt/csw/share/terminfo/u/ultima2 0644 root bin -l none /opt/csw/share/terminfo/u/ultimaII=ultima2 -d none /opt/csw/share/terminfo/l 0755 root bin -f none /opt/csw/share/terminfo/l/lpr 0644 root bin -f none /opt/csw/share/terminfo/l/linux-basic 0644 root bin -f none /opt/csw/share/terminfo/l/linux-m 0644 root bin -f none /opt/csw/share/terminfo/l/linux-c-nc 0644 root bin -f none /opt/csw/share/terminfo/l/linux-c 0644 root bin -f none /opt/csw/share/terminfo/l/linux 0644 root bin -f none /opt/csw/share/terminfo/l/linux-nic 0644 root bin -f none /opt/csw/share/terminfo/l/linux-koi8 0644 root bin -f none /opt/csw/share/terminfo/l/linux-koi8r 0644 root bin -f none /opt/csw/share/terminfo/l/linux-lat 0644 root bin -f none /opt/csw/share/terminfo/l/linux-vt 0644 root bin -f none /opt/csw/share/terminfo/l/layer 0644 root bin -f none /opt/csw/share/terminfo/l/lft 0644 root bin -l none /opt/csw/share/terminfo/l/lft-pc850=lft -f none /opt/csw/share/terminfo/l/lisa 0644 root bin -f none /opt/csw/share/terminfo/l/liswb 0644 root bin -f none /opt/csw/share/terminfo/l/lisaterm 0644 root bin -f none /opt/csw/share/terminfo/l/lisaterm-w 0644 root bin -f none /opt/csw/share/terminfo/l/luna 0644 root bin -l none /opt/csw/share/terminfo/l/luna68k=luna -l none /opt/csw/share/terminfo/l/la120=../d/dw3 -f none /opt/csw/share/terminfo/l/ln03 0644 root bin -f none /opt/csw/share/terminfo/l/ln03-w 0644 root bin -d none /opt/csw/share/terminfo/p 0755 root bin -l none /opt/csw/share/terminfo/p/printer=../l/lpr -f none /opt/csw/share/terminfo/p/pcansi-m 0644 root bin -l none /opt/csw/share/terminfo/p/pcansi-mono=pcansi-m -f none /opt/csw/share/terminfo/p/pcansi-25-m 0644 root bin -l none /opt/csw/share/terminfo/p/pcansi25m=pcansi-25-m -f none /opt/csw/share/terminfo/p/pcansi-33-m 0644 root bin -l none /opt/csw/share/terminfo/p/pcansi33m=pcansi-33-m -f none /opt/csw/share/terminfo/p/pcansi-43-m 0644 root bin -f none /opt/csw/share/terminfo/p/pcansi 0644 root bin -f none /opt/csw/share/terminfo/p/pcansi-25 0644 root bin -l none /opt/csw/share/terminfo/p/pcansi25=pcansi-25 -f none /opt/csw/share/terminfo/p/pcansi-33 0644 root bin -l none /opt/csw/share/terminfo/p/pcansi33=pcansi-33 -f none /opt/csw/share/terminfo/p/pcansi-43 0644 root bin -l none /opt/csw/share/terminfo/p/pcansi43=pcansi-43 -f none /opt/csw/share/terminfo/p/pmcons 0644 root bin -l none /opt/csw/share/terminfo/p/pmconsole=pmcons -f none /opt/csw/share/terminfo/p/pc6300plus 0644 root bin -l none /opt/csw/share/terminfo/p/pc7300=../u/unixpc -f none /opt/csw/share/terminfo/p/pcix 0644 root bin -f none /opt/csw/share/terminfo/p/pcvtXX 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt25 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt28 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt35 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt40 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt43 0644 root bin -f none /opt/csw/share/terminfo/p/pc3 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt50 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt25w 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt28w 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt35w 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt40w 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt43w 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt50w 0644 root bin -f none /opt/csw/share/terminfo/p/pcvt25-color 0644 root bin -f none /opt/csw/share/terminfo/p/pc3r 0644 root bin -f none /opt/csw/share/terminfo/p/pc3r-m 0644 root bin -f none /opt/csw/share/terminfo/p/pc3-bold 0644 root bin -f none /opt/csw/share/terminfo/p/putty 0644 root bin -f none /opt/csw/share/terminfo/p/pty 0644 root bin -f none /opt/csw/share/terminfo/p/pilot 0644 root bin -f none /opt/csw/share/terminfo/p/pccons 0644 root bin -l none /opt/csw/share/terminfo/p/pcconsole=pccons -f none /opt/csw/share/terminfo/p/psterm 0644 root bin -l none /opt/csw/share/terminfo/p/psterm-basic=psterm -f none /opt/csw/share/terminfo/p/psterm-96x48 0644 root bin -f none /opt/csw/share/terminfo/p/psterm-90x28 0644 root bin -f none /opt/csw/share/terminfo/p/psterm-80x24 0644 root bin -f none /opt/csw/share/terminfo/p/psterm-fast 0644 root bin -f none /opt/csw/share/terminfo/p/psx_ansi 0644 root bin -f none /opt/csw/share/terminfo/p/pcmw 0644 root bin -f none /opt/csw/share/terminfo/p/pt100 0644 root bin -l none /opt/csw/share/terminfo/p/pt200=pt100 -f none /opt/csw/share/terminfo/p/pt100w 0644 root bin -l none /opt/csw/share/terminfo/p/pt200w=pt100w -f none /opt/csw/share/terminfo/p/p4 0644 root bin -f none /opt/csw/share/terminfo/p/pt250 0644 root bin -f none /opt/csw/share/terminfo/p/pt250w 0644 root bin -f none /opt/csw/share/terminfo/p/pckermit 0644 root bin -l none /opt/csw/share/terminfo/p/pckermit12=pckermit -f none /opt/csw/share/terminfo/p/pckermit120 0644 root bin -f none /opt/csw/share/terminfo/p/pt505 0644 root bin -f none /opt/csw/share/terminfo/p/pt505-24 0644 root bin -f none /opt/csw/share/terminfo/p/pt505-22 0644 root bin -f none /opt/csw/share/terminfo/p/prism2 0644 root bin -l none /opt/csw/share/terminfo/p/prism4=p4 -f none /opt/csw/share/terminfo/p/prism5 0644 root bin -l none /opt/csw/share/terminfo/p/p5=prism5 -f none /opt/csw/share/terminfo/p/prism7 0644 root bin -l none /opt/csw/share/terminfo/p/p7=prism7 -f none /opt/csw/share/terminfo/p/prism8 0644 root bin -l none /opt/csw/share/terminfo/p/p8=prism8 -f none /opt/csw/share/terminfo/p/prism8-w 0644 root bin -l none /opt/csw/share/terminfo/p/p8-w=prism8-w -f none /opt/csw/share/terminfo/p/prism9 0644 root bin -l none /opt/csw/share/terminfo/p/p9=prism9 -f none /opt/csw/share/terminfo/p/prism9-w 0644 root bin -l none /opt/csw/share/terminfo/p/p9-w=prism9-w -f none /opt/csw/share/terminfo/p/prism9-8 0644 root bin -l none /opt/csw/share/terminfo/p/p9-8=prism9-8 -f none /opt/csw/share/terminfo/p/prism9-8-w 0644 root bin -l none /opt/csw/share/terminfo/p/p9-8-w=prism9-8-w -f none /opt/csw/share/terminfo/p/prism12 0644 root bin -l none /opt/csw/share/terminfo/p/p12=prism12 -f none /opt/csw/share/terminfo/p/prism12-w 0644 root bin -l none /opt/csw/share/terminfo/p/p12-w=prism12-w -f none /opt/csw/share/terminfo/p/p14 0644 root bin -f none /opt/csw/share/terminfo/p/prism12-m 0644 root bin -l none /opt/csw/share/terminfo/p/p12-m=prism12-m -f none /opt/csw/share/terminfo/p/prism12-m-w 0644 root bin -l none /opt/csw/share/terminfo/p/p12-m-w=prism12-m-w -l none /opt/csw/share/terminfo/p/prism14=p14 -f none /opt/csw/share/terminfo/p/prism14-w 0644 root bin -l none /opt/csw/share/terminfo/p/p14-w=prism14-w -f none /opt/csw/share/terminfo/p/prism14-m 0644 root bin -l none /opt/csw/share/terminfo/p/p14-m=prism14-m -f none /opt/csw/share/terminfo/p/prism14-m-w 0644 root bin -l none /opt/csw/share/terminfo/p/p14-m-w=prism14-m-w -f none /opt/csw/share/terminfo/p/p8gl 0644 root bin -l none /opt/csw/share/terminfo/p/prism8gl=p8gl -f none /opt/csw/share/terminfo/p/pe550 0644 root bin -l none /opt/csw/share/terminfo/p/pe6100=pe550 -f none /opt/csw/share/terminfo/p/pe1100 0644 root bin -f none /opt/csw/share/terminfo/p/pe1200 0644 root bin -f none /opt/csw/share/terminfo/p/pe1251 0644 root bin -l none /opt/csw/share/terminfo/p/pe6300=pe1251 -l none /opt/csw/share/terminfo/p/pe6312=pe1251 -f none /opt/csw/share/terminfo/p/pe7000m 0644 root bin -f none /opt/csw/share/terminfo/p/pe7000c 0644 root bin -f none /opt/csw/share/terminfo/p/pt210 0644 root bin -f none /opt/csw/share/terminfo/p/pcplot 0644 root bin -f none /opt/csw/share/terminfo/p/pc-minix 0644 root bin -f none /opt/csw/share/terminfo/p/pc-coherent 0644 root bin -l none /opt/csw/share/terminfo/p/pcz19=pc-coherent -f none /opt/csw/share/terminfo/p/pc-venix 0644 root bin -l none /opt/csw/share/terminfo/p/pro350=../d/decpro -f none /opt/csw/share/terminfo/p/p19 0644 root bin -f none /opt/csw/share/terminfo/p/ps300 0644 root bin -d none /opt/csw/share/terminfo/g 0755 root bin -f none /opt/csw/share/terminfo/g/glasstty 0644 root bin -f none /opt/csw/share/terminfo/g/gnome-rh62 0644 root bin -f none /opt/csw/share/terminfo/g/gnome-rh72 0644 root bin -f none /opt/csw/share/terminfo/g/gnome-rh80 0644 root bin -f none /opt/csw/share/terminfo/g/gnome-rh90 0644 root bin -f none /opt/csw/share/terminfo/g/gnome 0644 root bin -f none /opt/csw/share/terminfo/g/gator-t 0644 root bin -f none /opt/csw/share/terminfo/g/gator 0644 root bin -f none /opt/csw/share/terminfo/g/gator-52 0644 root bin -f none /opt/csw/share/terminfo/g/gator-52t 0644 root bin -l none /opt/csw/share/terminfo/g/gs5430=../p/pt505 -l none /opt/csw/share/terminfo/g/gs5430-24=../p/pt505-24 -l none /opt/csw/share/terminfo/g/gs5430-22=../p/pt505-22 -f none /opt/csw/share/terminfo/g/guru 0644 root bin -l none /opt/csw/share/terminfo/g/guru-33=guru -l none /opt/csw/share/terminfo/g/guru+unk=guru -f none /opt/csw/share/terminfo/g/guru+rv 0644 root bin -f none /opt/csw/share/terminfo/g/guru-rv 0644 root bin -l none /opt/csw/share/terminfo/g/guru-33-rv=guru-rv -f none /opt/csw/share/terminfo/g/guru+s 0644 root bin -f none /opt/csw/share/terminfo/g/guru-nctxt 0644 root bin -f none /opt/csw/share/terminfo/g/guru-s 0644 root bin -l none /opt/csw/share/terminfo/g/guru-33-s=guru-s -f none /opt/csw/share/terminfo/g/guru-24 0644 root bin -f none /opt/csw/share/terminfo/g/guru-44 0644 root bin -f none /opt/csw/share/terminfo/g/guru-44-s 0644 root bin -f none /opt/csw/share/terminfo/g/guru-76 0644 root bin -f none /opt/csw/share/terminfo/g/guru-76-s 0644 root bin -f none /opt/csw/share/terminfo/g/guru-76-lp 0644 root bin -l none /opt/csw/share/terminfo/g/guru-lp=guru-76-lp -f none /opt/csw/share/terminfo/g/guru-76-w 0644 root bin -f none /opt/csw/share/terminfo/g/guru-76-w-s 0644 root bin -f none /opt/csw/share/terminfo/g/guru-76-wm 0644 root bin -f none /opt/csw/share/terminfo/g/go140 0644 root bin -f none /opt/csw/share/terminfo/g/go140w 0644 root bin -f none /opt/csw/share/terminfo/g/go225 0644 root bin -l none /opt/csw/share/terminfo/g/go-225=go225 -f none /opt/csw/share/terminfo/g/gt100 0644 root bin -l none /opt/csw/share/terminfo/g/gt100a=gt100 -f none /opt/csw/share/terminfo/g/gt40 0644 root bin -f none /opt/csw/share/terminfo/g/gt42 0644 root bin -f none /opt/csw/share/terminfo/g/gigi 0644 root bin -f none /opt/csw/share/terminfo/g/graphos 0644 root bin -f none /opt/csw/share/terminfo/g/graphos-30 0644 root bin -f none /opt/csw/share/terminfo/g/gs6300 0644 root bin -f none /opt/csw/share/terminfo/g/gsi 0644 root bin -d none /opt/csw/share/terminfo/v 0755 root bin -f none /opt/csw/share/terminfo/v/vanilla 0644 root bin -f none /opt/csw/share/terminfo/v/vt52 0644 root bin -f none /opt/csw/share/terminfo/v/vt100+keypad 0644 root bin -f none /opt/csw/share/terminfo/v/vt100+pfkeys 0644 root bin -f none /opt/csw/share/terminfo/v/vt100+fnkeys 0644 root bin -f none /opt/csw/share/terminfo/v/vt220+keypad 0644 root bin -f none /opt/csw/share/terminfo/v/vt100 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-am=vt100 -f none /opt/csw/share/terminfo/v/vt100nam 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-nam=vt100nam -f none /opt/csw/share/terminfo/v/vt100-vb 0644 root bin -f none /opt/csw/share/terminfo/v/vt100-w 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-w-am=vt100-w -f none /opt/csw/share/terminfo/v/vt100-w-nam 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-nam-w=vt100-w-nam -f none /opt/csw/share/terminfo/v/vt100-nav 0644 root bin -f none /opt/csw/share/terminfo/v/vt100-nav-w 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-w-nav=vt100-nav-w -f none /opt/csw/share/terminfo/v/vt100-s 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-s-top=vt100-s -l none /opt/csw/share/terminfo/v/vt100-top-s=vt100-s -f none /opt/csw/share/terminfo/v/vt100-s-bot 0644 root bin -l none /opt/csw/share/terminfo/v/vt100-bot-s=vt100-s-bot -f none /opt/csw/share/terminfo/v/vt102 0644 root bin -f none /opt/csw/share/terminfo/v/vt102-w 0644 root bin -f none /opt/csw/share/terminfo/v/vt102-nsgr 0644 root bin -f none /opt/csw/share/terminfo/v/vt125 0644 root bin -f none /opt/csw/share/terminfo/v/vt131 0644 root bin -f none /opt/csw/share/terminfo/v/vt132 0644 root bin -f none /opt/csw/share/terminfo/v/vt220-old 0644 root bin -l none /opt/csw/share/terminfo/v/vt200-old=vt220-old -f none /opt/csw/share/terminfo/v/vt220 0644 root bin -l none /opt/csw/share/terminfo/v/vt200=vt220 -f none /opt/csw/share/terminfo/v/vt220-w 0644 root bin -l none /opt/csw/share/terminfo/v/vt200-w=vt220-w -f none /opt/csw/share/terminfo/v/vt220-8bit 0644 root bin -l none /opt/csw/share/terminfo/v/vt220-8=vt220-8bit -l none /opt/csw/share/terminfo/v/vt200-8bit=vt220-8bit -l none /opt/csw/share/terminfo/v/vt200-8=vt220-8bit -f none /opt/csw/share/terminfo/v/vt220d 0644 root bin -f none /opt/csw/share/terminfo/v/vt220-nam 0644 root bin -l none /opt/csw/share/terminfo/v/v200-nam=vt220-nam -f none /opt/csw/share/terminfo/v/vt200-js 0644 root bin -l none /opt/csw/share/terminfo/v/vt220-js=vt200-js -f none /opt/csw/share/terminfo/v/vt320nam 0644 root bin -l none /opt/csw/share/terminfo/v/v320n=vt320nam -f none /opt/csw/share/terminfo/v/vt320 0644 root bin -l none /opt/csw/share/terminfo/v/vt300=vt320 -f none /opt/csw/share/terminfo/v/vt320-nam 0644 root bin -l none /opt/csw/share/terminfo/v/vt300-nam=vt320-nam -f none /opt/csw/share/terminfo/v/vt320-w 0644 root bin -l none /opt/csw/share/terminfo/v/vt300-w=vt320-w -f none /opt/csw/share/terminfo/v/vt320-w-nam 0644 root bin -f none /opt/csw/share/terminfo/v/vip 0644 root bin -l none /opt/csw/share/terminfo/v/vt300-w-nam=vt320-w-nam -l none /opt/csw/share/terminfo/v/vt340=../d/dec-vt340 -l none /opt/csw/share/terminfo/v/vt330=../d/dec-vt340 -l none /opt/csw/share/terminfo/v/vt400=../d/dec-vt400 -l none /opt/csw/share/terminfo/v/vt400-24=../d/dec-vt400 -f none /opt/csw/share/terminfo/v/vt420 0644 root bin -f none /opt/csw/share/terminfo/v/vt420pc 0644 root bin -f none /opt/csw/share/terminfo/v/vt420pcdos 0644 root bin -f none /opt/csw/share/terminfo/v/vt420f 0644 root bin -f none /opt/csw/share/terminfo/v/vt510 0644 root bin -f none /opt/csw/share/terminfo/v/vt510pc 0644 root bin -f none /opt/csw/share/terminfo/v/vt510pcdos 0644 root bin -f none /opt/csw/share/terminfo/v/vt520 0644 root bin -f none /opt/csw/share/terminfo/v/vt525 0644 root bin -f none /opt/csw/share/terminfo/v/vt100-putty 0644 root bin -f none /opt/csw/share/terminfo/v/vtnt 0644 root bin -f none /opt/csw/share/terminfo/v/vt100+ 0644 root bin -f none /opt/csw/share/terminfo/v/vt-utf8 0644 root bin -f none /opt/csw/share/terminfo/v/vs100-x10 0644 root bin -f none /opt/csw/share/terminfo/v/vs100 0644 root bin -f none /opt/csw/share/terminfo/v/vv100 0644 root bin -f none /opt/csw/share/terminfo/v/vremote 0644 root bin -f none /opt/csw/share/terminfo/v/vt100-bm 0644 root bin -f none /opt/csw/share/terminfo/v/vt100-bm-o 0644 root bin -f none /opt/csw/share/terminfo/v/vi50 0644 root bin -f none /opt/csw/share/terminfo/v/vi50adm 0644 root bin -f none /opt/csw/share/terminfo/v/vi55 0644 root bin -f none /opt/csw/share/terminfo/v/vi200 0644 root bin -f none /opt/csw/share/terminfo/v/vi200-f 0644 root bin -f none /opt/csw/share/terminfo/v/vi300 0644 root bin -f none /opt/csw/share/terminfo/v/vi200-rv 0644 root bin -f none /opt/csw/share/terminfo/v/vi300-old 0644 root bin -f none /opt/csw/share/terminfo/v/vi500 0644 root bin -f none /opt/csw/share/terminfo/v/vi550 0644 root bin -f none /opt/csw/share/terminfo/v/vi603 0644 root bin -l none /opt/csw/share/terminfo/v/visual603=vi603 -f none /opt/csw/share/terminfo/v/vt320-k3 0644 root bin -f none /opt/csw/share/terminfo/v/vt320-k311 0644 root bin -f none /opt/csw/share/terminfo/v/v5410 0644 root bin -l none /opt/csw/share/terminfo/v/vitty=../l/layer -f none /opt/csw/share/terminfo/v/viewpoint 0644 root bin -f none /opt/csw/share/terminfo/v/vp3a+ 0644 root bin -l none /opt/csw/share/terminfo/v/viewpoint3a+=vp3a+ -f none /opt/csw/share/terminfo/v/vp60 0644 root bin -l none /opt/csw/share/terminfo/v/viewpoint60=vp60 -f none /opt/csw/share/terminfo/v/vp90 0644 root bin -l none /opt/csw/share/terminfo/v/viewpoint90=vp90 -f none /opt/csw/share/terminfo/v/visa50 0644 root bin -f none /opt/csw/share/terminfo/v/vc303 0644 root bin -l none /opt/csw/share/terminfo/v/vc103=vc303 -l none /opt/csw/share/terminfo/v/vc203=vc303 -f none /opt/csw/share/terminfo/v/vc303a 0644 root bin -l none /opt/csw/share/terminfo/v/vc403a=vc303a -f none /opt/csw/share/terminfo/v/vc404 0644 root bin -f none /opt/csw/share/terminfo/v/vc404-s 0644 root bin -f none /opt/csw/share/terminfo/v/vc414 0644 root bin -l none /opt/csw/share/terminfo/v/vc414h=vc414 -f none /opt/csw/share/terminfo/v/vc415 0644 root bin -f none /opt/csw/share/terminfo/v/vapple 0644 root bin -l none /opt/csw/share/terminfo/v/venix=../p/pc-venix -f none /opt/csw/share/terminfo/v/vip-w 0644 root bin -l none /opt/csw/share/terminfo/v/vip7800-w=vip-w -f none /opt/csw/share/terminfo/v/vip-H 0644 root bin -l none /opt/csw/share/terminfo/v/vip7800-H=vip-H -f none /opt/csw/share/terminfo/v/vip-Hw 0644 root bin -l none /opt/csw/share/terminfo/v/vip7800-Hw=vip-Hw -f none /opt/csw/share/terminfo/v/vt50 0644 root bin -f none /opt/csw/share/terminfo/v/vt50h 0644 root bin -f none /opt/csw/share/terminfo/v/vt61 0644 root bin -l none /opt/csw/share/terminfo/v/vt-61=vt61 -l none /opt/csw/share/terminfo/v/vt61.5=vt61 -l none /opt/csw/share/terminfo/v/vk100=../g/gigi -f none /opt/csw/share/terminfo/v/vsc 0644 root bin -f none /opt/csw/share/terminfo/v/versaterm 0644 root bin -f none /opt/csw/share/terminfo/v/v3220 0644 root bin -d none /opt/csw/share/terminfo/a 0755 root bin -f none /opt/csw/share/terminfo/a/ansi+local1 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+local 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+tabs 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+inittabs 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+erase 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+rca 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+cup 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+rep 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+idl1 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+idl 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+idc 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+arrows 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+sgr 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+sgrso 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+sgrul 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+sgrbold 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+sgrdim 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+pp 0644 root bin -f none /opt/csw/share/terminfo/a/ansi+csr 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-mr 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-mini 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-mtabs 0644 root bin -f none /opt/csw/share/terminfo/a/ansi77 0644 root bin -l none /opt/csw/share/terminfo/a/ansi43m=../p/pcansi-43-m -f none /opt/csw/share/terminfo/a/ansi-m 0644 root bin -l none /opt/csw/share/terminfo/a/ansi-mono=ansi-m -f none /opt/csw/share/terminfo/a/ansi 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-generic 0644 root bin -f none /opt/csw/share/terminfo/a/ansi.sys-old 0644 root bin -f none /opt/csw/share/terminfo/a/ansi.sys 0644 root bin -f none /opt/csw/share/terminfo/a/ansi.sysk 0644 root bin -l none /opt/csw/share/terminfo/a/ansisysk=ansi.sysk -f none /opt/csw/share/terminfo/a/att6386 0644 root bin -l none /opt/csw/share/terminfo/a/at386=att6386 -l none /opt/csw/share/terminfo/a/att7300=../u/unixpc -f none /opt/csw/share/terminfo/a/arm100 0644 root bin -l none /opt/csw/share/terminfo/a/arm100-am=arm100 -f none /opt/csw/share/terminfo/a/arm100-w 0644 root bin -l none /opt/csw/share/terminfo/a/arm100-wam=arm100-w -f none /opt/csw/share/terminfo/a/ansiw 0644 root bin -l none /opt/csw/share/terminfo/a/ansi80x25-raw=ansiw -f none /opt/csw/share/terminfo/a/ansis 0644 root bin -l none /opt/csw/share/terminfo/a/ansi80x25=ansis -f none /opt/csw/share/terminfo/a/ansis-mono 0644 root bin -l none /opt/csw/share/terminfo/a/ansi80x25-mono=ansis-mono -f none /opt/csw/share/terminfo/a/ansi80x30 0644 root bin -f none /opt/csw/share/terminfo/a/ansi80x30-mono 0644 root bin -f none /opt/csw/share/terminfo/a/ansi80x43 0644 root bin -f none /opt/csw/share/terminfo/a/ansi80x43-mono 0644 root bin -f none /opt/csw/share/terminfo/a/ansil 0644 root bin -l none /opt/csw/share/terminfo/a/ansi80x50=ansil -f none /opt/csw/share/terminfo/a/ansil-mono 0644 root bin -l none /opt/csw/share/terminfo/a/ansi80x50-mono=ansil-mono -f none /opt/csw/share/terminfo/a/ansi80x60 0644 root bin -f none /opt/csw/share/terminfo/a/ansi80x60-mono 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-emx 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-color-2-emx 0644 root bin -f none /opt/csw/share/terminfo/a/ansi-color-3-emx 0644 root bin -l none /opt/csw/share/terminfo/a/ansi-nt=../p/psx_ansi -f none /opt/csw/share/terminfo/a/altos2 0644 root bin -l none /opt/csw/share/terminfo/a/alt2=altos2 -l none /opt/csw/share/terminfo/a/altos-2=altos2 -f none /opt/csw/share/terminfo/a/altos3 0644 root bin -l none /opt/csw/share/terminfo/a/altos5=altos3 -l none /opt/csw/share/terminfo/a/alt3=altos3 -l none /opt/csw/share/terminfo/a/alt5=altos3 -l none /opt/csw/share/terminfo/a/altos-3=altos3 -l none /opt/csw/share/terminfo/a/altos-5=altos3 -f none /opt/csw/share/terminfo/a/altos4 0644 root bin -l none /opt/csw/share/terminfo/a/alt4=altos4 -l none /opt/csw/share/terminfo/a/altos-4=altos4 -f none /opt/csw/share/terminfo/a/altos7 0644 root bin -l none /opt/csw/share/terminfo/a/alt7=altos7 -f none /opt/csw/share/terminfo/a/altos7pc 0644 root bin -l none /opt/csw/share/terminfo/a/alt7pc=altos7pc -f none /opt/csw/share/terminfo/a/adm1a 0644 root bin -l none /opt/csw/share/terminfo/a/adm1=adm1a -f none /opt/csw/share/terminfo/a/adm2 0644 root bin -f none /opt/csw/share/terminfo/a/adm3 0644 root bin -f none /opt/csw/share/terminfo/a/adm3a 0644 root bin -f none /opt/csw/share/terminfo/a/adm3a+ 0644 root bin -f none /opt/csw/share/terminfo/a/adm5 0644 root bin -f none /opt/csw/share/terminfo/a/adm+sgr 0644 root bin -f none /opt/csw/share/terminfo/a/adm11 0644 root bin -f none /opt/csw/share/terminfo/a/adm12 0644 root bin -f none /opt/csw/share/terminfo/a/adm20 0644 root bin -f none /opt/csw/share/terminfo/a/adm21 0644 root bin -f none /opt/csw/share/terminfo/a/adm22 0644 root bin -f none /opt/csw/share/terminfo/a/adm31 0644 root bin -f none /opt/csw/share/terminfo/a/adm31-old 0644 root bin -f none /opt/csw/share/terminfo/a/adm36 0644 root bin -f none /opt/csw/share/terminfo/a/adm42 0644 root bin -f none /opt/csw/share/terminfo/a/adm42-ns 0644 root bin -f none /opt/csw/share/terminfo/a/adm1178 0644 root bin -f none /opt/csw/share/terminfo/a/avatar0 0644 root bin -f none /opt/csw/share/terminfo/a/avatar0+ 0644 root bin -f none /opt/csw/share/terminfo/a/avatar 0644 root bin -l none /opt/csw/share/terminfo/a/avatar1=avatar -f none /opt/csw/share/terminfo/a/att2300 0644 root bin -f none /opt/csw/share/terminfo/a/att2350 0644 root bin -f none /opt/csw/share/terminfo/a/att5410v1 0644 root bin -l none /opt/csw/share/terminfo/a/att4410v1=att5410v1 -f none /opt/csw/share/terminfo/a/att4410v1-w 0644 root bin -l none /opt/csw/share/terminfo/a/att5410v1-w=att4410v1-w -f none /opt/csw/share/terminfo/a/att4410 0644 root bin -l none /opt/csw/share/terminfo/a/att5410=att4410 -f none /opt/csw/share/terminfo/a/att5410-w 0644 root bin -l none /opt/csw/share/terminfo/a/att4410-w=att5410-w -l none /opt/csw/share/terminfo/a/a80=../d/d80 -f none /opt/csw/share/terminfo/a/att4415 0644 root bin -l none /opt/csw/share/terminfo/a/att5420=att4415 -f none /opt/csw/share/terminfo/a/att4415-w 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-w=att4415-w -f none /opt/csw/share/terminfo/a/att4415-rv 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-rv=att4415-rv -f none /opt/csw/share/terminfo/a/att4415-w-rv 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-w-rv=att4415-w-rv -f none /opt/csw/share/terminfo/a/att4415+nl 0644 root bin -l none /opt/csw/share/terminfo/a/att5420+nl=att4415+nl -f none /opt/csw/share/terminfo/a/att4415-nl 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-nl=att4415-nl -f none /opt/csw/share/terminfo/a/att4415-rv-nl 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-rv-nl=att4415-rv-nl -f none /opt/csw/share/terminfo/a/att4415-w-nl 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-w-nl=att4415-w-nl -f none /opt/csw/share/terminfo/a/att4415-w-rv-n 0644 root bin -l none /opt/csw/share/terminfo/a/att5420-w-rv-n=att4415-w-rv-n -f none /opt/csw/share/terminfo/a/att5420_2 0644 root bin -f none /opt/csw/share/terminfo/a/att5420_2-w 0644 root bin -f none /opt/csw/share/terminfo/a/att4418 0644 root bin -l none /opt/csw/share/terminfo/a/att5418=att4418 -f none /opt/csw/share/terminfo/a/att4418-w 0644 root bin -l none /opt/csw/share/terminfo/a/att5418-w=att4418-w -f none /opt/csw/share/terminfo/a/att4420 0644 root bin -f none /opt/csw/share/terminfo/a/att4424 0644 root bin -f none /opt/csw/share/terminfo/a/att4424-1 0644 root bin -f none /opt/csw/share/terminfo/a/att4424m 0644 root bin -f none /opt/csw/share/terminfo/a/att5425 0644 root bin -l none /opt/csw/share/terminfo/a/att4425=att5425 -f none /opt/csw/share/terminfo/a/att5425-nl 0644 root bin -l none /opt/csw/share/terminfo/a/att4425-nl=att5425-nl -f none /opt/csw/share/terminfo/a/att5425-w 0644 root bin -l none /opt/csw/share/terminfo/a/att4425-w=att5425-w -f none /opt/csw/share/terminfo/a/att4426 0644 root bin -f none /opt/csw/share/terminfo/a/att510a 0644 root bin -f none /opt/csw/share/terminfo/a/att510d 0644 root bin -f none /opt/csw/share/terminfo/a/att500 0644 root bin -l none /opt/csw/share/terminfo/a/att513=att500 -f none /opt/csw/share/terminfo/a/att5310 0644 root bin -l none /opt/csw/share/terminfo/a/att5320=att5310 -l none /opt/csw/share/terminfo/a/att5620-1=../d/dmd1 -l none /opt/csw/share/terminfo/a/att5620=../d/dmd -l none /opt/csw/share/terminfo/a/att5620-24=../d/dmd-24 -l none /opt/csw/share/terminfo/a/att5620-34=../d/dmd-34 -l none /opt/csw/share/terminfo/a/att5620-s=../l/layer -f none /opt/csw/share/terminfo/a/att605 0644 root bin -f none /opt/csw/share/terminfo/a/att605-pc 0644 root bin -f none /opt/csw/share/terminfo/a/att605-w 0644 root bin -f none /opt/csw/share/terminfo/a/att610 0644 root bin -f none /opt/csw/share/terminfo/a/att610-w 0644 root bin -f none /opt/csw/share/terminfo/a/att610-103k 0644 root bin -f none /opt/csw/share/terminfo/a/att610-103k-w 0644 root bin -f none /opt/csw/share/terminfo/a/att615 0644 root bin -f none /opt/csw/share/terminfo/a/att615-w 0644 root bin -f none /opt/csw/share/terminfo/a/att615-103k 0644 root bin -f none /opt/csw/share/terminfo/a/att615-103k-w 0644 root bin -f none /opt/csw/share/terminfo/a/att620 0644 root bin -f none /opt/csw/share/terminfo/a/att620-w 0644 root bin -f none /opt/csw/share/terminfo/a/att620-103k 0644 root bin -f none /opt/csw/share/terminfo/a/att620-103k-w 0644 root bin -f none /opt/csw/share/terminfo/a/att630 0644 root bin -f none /opt/csw/share/terminfo/a/att630-24 0644 root bin -f none /opt/csw/share/terminfo/a/att700 0644 root bin -f none /opt/csw/share/terminfo/a/att730 0644 root bin -f none /opt/csw/share/terminfo/a/att730-41 0644 root bin -f none /opt/csw/share/terminfo/a/att730-24 0644 root bin -f none /opt/csw/share/terminfo/a/att730r 0644 root bin -f none /opt/csw/share/terminfo/a/att730r-41 0644 root bin -f none /opt/csw/share/terminfo/a/att730r-24 0644 root bin -l none /opt/csw/share/terminfo/a/att505=../p/pt505 -l none /opt/csw/share/terminfo/a/att5430=../p/pt505 -l none /opt/csw/share/terminfo/a/att505-24=../p/pt505-24 -l none /opt/csw/share/terminfo/a/ampex80=../d/d80 -f none /opt/csw/share/terminfo/a/ampex175 0644 root bin -f none /opt/csw/share/terminfo/a/ampex175-b 0644 root bin -f none /opt/csw/share/terminfo/a/ampex210 0644 root bin -l none /opt/csw/share/terminfo/a/a210=ampex210 -f none /opt/csw/share/terminfo/a/ampex219 0644 root bin -l none /opt/csw/share/terminfo/a/ampex-219=ampex219 -l none /opt/csw/share/terminfo/a/amp219=ampex219 -f none /opt/csw/share/terminfo/a/ampex219w 0644 root bin -l none /opt/csw/share/terminfo/a/ampex-219w=ampex219w -l none /opt/csw/share/terminfo/a/amp219w=ampex219w -f none /opt/csw/share/terminfo/a/ampex232 0644 root bin -l none /opt/csw/share/terminfo/a/ampex-232=ampex232 -f none /opt/csw/share/terminfo/a/ampex232w 0644 root bin -f none /opt/csw/share/terminfo/a/annarbor4080 0644 root bin -l none /opt/csw/share/terminfo/a/aa4080=annarbor4080 -f none /opt/csw/share/terminfo/a/aas1901 0644 root bin -f none /opt/csw/share/terminfo/a/aaa+unk 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-unk=aaa+unk -f none /opt/csw/share/terminfo/a/aaa+rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa+dec 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-18 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-18-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-20 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-22 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-24 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-24-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-26 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-28 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-30-s 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-s=aaa-30-s -f none /opt/csw/share/terminfo/a/aaa-30-s-rv 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-s-rv=aaa-30-s-rv -f none /opt/csw/share/terminfo/a/aaa-s-ctxt 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-30-s-ctxt=aaa-s-ctxt -f none /opt/csw/share/terminfo/a/aaa-s-rv-ctxt 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-30-s-rv-ct=aaa-s-rv-ctxt -f none /opt/csw/share/terminfo/a/aaa 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-30=aaa -l none /opt/csw/share/terminfo/a/ambas=aaa -l none /opt/csw/share/terminfo/a/ambassador=aaa -f none /opt/csw/share/terminfo/a/aaa-30-rv 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-rv=aaa-30-rv -f none /opt/csw/share/terminfo/a/aaa-30-ctxt 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-ctxt=aaa-30-ctxt -f none /opt/csw/share/terminfo/a/aaa-30-rv-ctxt 0644 root bin -l none /opt/csw/share/terminfo/a/aaa-rv-ctxt=aaa-30-rv-ctxt -f none /opt/csw/share/terminfo/a/aaa-36 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-36-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-40 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-40-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-48 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-48-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-60-s 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-60-s-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-60-dec-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-60 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-60-rv 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-db 0644 root bin -f none /opt/csw/share/terminfo/a/aaa-rv-unk 0644 root bin -l none /opt/csw/share/terminfo/a/addsviewpoint=../v/viewpoint -f none /opt/csw/share/terminfo/a/avt 0644 root bin -l none /opt/csw/share/terminfo/a/addsvp60=../v/vp60 -f none /opt/csw/share/terminfo/a/adds980 0644 root bin -l none /opt/csw/share/terminfo/a/a980=adds980 -f none /opt/csw/share/terminfo/a/avt-ns 0644 root bin -f none /opt/csw/share/terminfo/a/avt-rv-ns 0644 root bin -f none /opt/csw/share/terminfo/a/avt-w-ns 0644 root bin -f none /opt/csw/share/terminfo/a/avt-w-rv-ns 0644 root bin -f none /opt/csw/share/terminfo/a/avt+s 0644 root bin -l none /opt/csw/share/terminfo/a/avt-s=avt -f none /opt/csw/share/terminfo/a/avt-rv 0644 root bin -l none /opt/csw/share/terminfo/a/avt-rv-s=avt-rv -f none /opt/csw/share/terminfo/a/avt-w 0644 root bin -l none /opt/csw/share/terminfo/a/avt-w-s=avt-w -f none /opt/csw/share/terminfo/a/avt-w-rv 0644 root bin -l none /opt/csw/share/terminfo/a/avt-w-rv-s=avt-w-rv -f none /opt/csw/share/terminfo/a/apl 0644 root bin -f none /opt/csw/share/terminfo/a/aixterm 0644 root bin -f none /opt/csw/share/terminfo/a/aixterm-m 0644 root bin -f none /opt/csw/share/terminfo/a/aixterm-m-old 0644 root bin -f none /opt/csw/share/terminfo/a/aixterm-16color 0644 root bin -f none /opt/csw/share/terminfo/a/addrinfo 0644 root bin -f none /opt/csw/share/terminfo/a/abm85 0644 root bin -f none /opt/csw/share/terminfo/a/abm85h 0644 root bin -f none /opt/csw/share/terminfo/a/abm85e 0644 root bin -f none /opt/csw/share/terminfo/a/abm85h-old 0644 root bin -f none /opt/csw/share/terminfo/a/act4 0644 root bin -f none /opt/csw/share/terminfo/a/act5 0644 root bin -f none /opt/csw/share/terminfo/a/appleIIgs 0644 root bin -l none /opt/csw/share/terminfo/a/appleIIe=appleIIgs -l none /opt/csw/share/terminfo/a/appleIIc=appleIIgs -f none /opt/csw/share/terminfo/a/apple2e 0644 root bin -f none /opt/csw/share/terminfo/a/apple2e-p 0644 root bin -f none /opt/csw/share/terminfo/a/apple-ae 0644 root bin -f none /opt/csw/share/terminfo/a/appleII 0644 root bin -f none /opt/csw/share/terminfo/a/apple-80 0644 root bin -f none /opt/csw/share/terminfo/a/apple-soroc 0644 root bin -f none /opt/csw/share/terminfo/a/apple-videx 0644 root bin -f none /opt/csw/share/terminfo/a/apple-uterm-vb 0644 root bin -f none /opt/csw/share/terminfo/a/apple-uterm 0644 root bin -f none /opt/csw/share/terminfo/a/apple80p 0644 root bin -f none /opt/csw/share/terminfo/a/apple-videx2 0644 root bin -l none /opt/csw/share/terminfo/a/apple-videx3=../v/vapple -f none /opt/csw/share/terminfo/a/aepro 0644 root bin -f none /opt/csw/share/terminfo/a/apple-vm80 0644 root bin -l none /opt/csw/share/terminfo/a/ap-vm80=apple-vm80 -f none /opt/csw/share/terminfo/a/atari 0644 root bin -f none /opt/csw/share/terminfo/a/amiga 0644 root bin -f none /opt/csw/share/terminfo/a/amiga-h 0644 root bin -f none /opt/csw/share/terminfo/a/amiga-8bit 0644 root bin -f none /opt/csw/share/terminfo/a/amiga-vnc 0644 root bin -f none /opt/csw/share/terminfo/a/abm80 0644 root bin -f none /opt/csw/share/terminfo/a/alto-h19 0644 root bin -l none /opt/csw/share/terminfo/a/altoh19=alto-h19 -l none /opt/csw/share/terminfo/a/altoheath=alto-h19 -f none /opt/csw/share/terminfo/a/apollo 0644 root bin -l none /opt/csw/share/terminfo/a/alto-heath=alto-h19 -f none /opt/csw/share/terminfo/a/apollo_15P 0644 root bin -f none /opt/csw/share/terminfo/a/apollo_19L 0644 root bin -f none /opt/csw/share/terminfo/a/apollo_color 0644 root bin -f none /opt/csw/share/terminfo/a/aws 0644 root bin -f none /opt/csw/share/terminfo/a/awsc 0644 root bin -f none /opt/csw/share/terminfo/a/aj830 0644 root bin -l none /opt/csw/share/terminfo/a/aj832=aj830 -l none /opt/csw/share/terminfo/a/aj=aj830 -f none /opt/csw/share/terminfo/a/aj510 0644 root bin -d none /opt/csw/share/terminfo/k 0755 root bin -f none /opt/csw/share/terminfo/k/klone+acs 0644 root bin -f none /opt/csw/share/terminfo/k/klone+sgr 0644 root bin -f none /opt/csw/share/terminfo/k/klone+sgr-dumb 0644 root bin -f none /opt/csw/share/terminfo/k/klone+koi8acs 0644 root bin -f none /opt/csw/share/terminfo/k/klone+color 0644 root bin -f none /opt/csw/share/terminfo/k/kterm 0644 root bin -f none /opt/csw/share/terminfo/k/kterm-color 0644 root bin -l none /opt/csw/share/terminfo/k/kterm-co=kterm-color -f none /opt/csw/share/terminfo/k/kvt 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-base 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-linux 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-xf3x 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-xf4x 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-vt100 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-vt420pc 0644 root bin -f none /opt/csw/share/terminfo/k/konsole-16color 0644 root bin -f none /opt/csw/share/terminfo/k/konsole 0644 root bin -f none /opt/csw/share/terminfo/k/k45 0644 root bin -f none /opt/csw/share/terminfo/k/kermit 0644 root bin -f none /opt/csw/share/terminfo/k/kermit-am 0644 root bin -f none /opt/csw/share/terminfo/k/kds7372 0644 root bin -l none /opt/csw/share/terminfo/k/kds6402=kds7372 -f none /opt/csw/share/terminfo/k/kds7372-w 0644 root bin -f none /opt/csw/share/terminfo/k/kt7 0644 root bin -f none /opt/csw/share/terminfo/k/kt7ix 0644 root bin -f none /opt/csw/share/terminfo/k/kaypro 0644 root bin -l none /opt/csw/share/terminfo/k/kaypro2=kaypro -f none /opt/csw/share/terminfo/k/ktm 0644 root bin -d none /opt/csw/share/terminfo/e 0755 root bin -f none /opt/csw/share/terminfo/e/ecma+color 0644 root bin -f none /opt/csw/share/terminfo/e/ecma+sgr 0644 root bin -f none /opt/csw/share/terminfo/e/emu 0644 root bin -f none /opt/csw/share/terminfo/e/emu-220 0644 root bin -f none /opt/csw/share/terminfo/e/eterm 0644 root bin -f none /opt/csw/share/terminfo/e/elks-glasstty 0644 root bin -f none /opt/csw/share/terminfo/e/elks-vt52 0644 root bin -f none /opt/csw/share/terminfo/e/elks-ansi 0644 root bin -f none /opt/csw/share/terminfo/e/elks 0644 root bin -f none /opt/csw/share/terminfo/e/emx-base 0644 root bin -f none /opt/csw/share/terminfo/e/excel62 0644 root bin -l none /opt/csw/share/terminfo/e/excel64=excel62 -f none /opt/csw/share/terminfo/e/excel62-w 0644 root bin -l none /opt/csw/share/terminfo/e/excel64-w=excel62-w -f none /opt/csw/share/terminfo/e/excel62-rv 0644 root bin -l none /opt/csw/share/terminfo/e/excel64-rv=excel62-rv -f none /opt/csw/share/terminfo/e/esprit 0644 root bin -f none /opt/csw/share/terminfo/e/esprit-am 0644 root bin -f none /opt/csw/share/terminfo/e/exec80 0644 root bin -f none /opt/csw/share/terminfo/e/ergo4000 0644 root bin -f none /opt/csw/share/terminfo/e/ex155 0644 root bin -l none /opt/csw/share/terminfo/e/emots=../g/gs6300 -f none /opt/csw/share/terminfo/e/env230 0644 root bin -l none /opt/csw/share/terminfo/e/envision230=env230 -f none /opt/csw/share/terminfo/e/ep48 0644 root bin -l none /opt/csw/share/terminfo/e/ep4080=ep48 -f none /opt/csw/share/terminfo/e/ep40 0644 root bin -l none /opt/csw/share/terminfo/e/ep4000=ep40 -d none /opt/csw/share/terminfo/i 0755 root bin -f none /opt/csw/share/terminfo/i/ibcs2 0644 root bin -f none /opt/csw/share/terminfo/i/iris-ansi 0644 root bin -l none /opt/csw/share/terminfo/i/iris-ansi-net=iris-ansi -f none /opt/csw/share/terminfo/i/iris-ansi-ap 0644 root bin -f none /opt/csw/share/terminfo/i/iris-color 0644 root bin -f none /opt/csw/share/terminfo/i/ibmpcx 0644 root bin -l none /opt/csw/share/terminfo/i/ibmx=ibmpcx -l none /opt/csw/share/terminfo/i/ibmpc3r=../p/pc3r -l none /opt/csw/share/terminfo/i/ibmpc3r-mono=../p/pc3r-m -l none /opt/csw/share/terminfo/i/ibmpc3=../p/pc3-bold -f none /opt/csw/share/terminfo/i/iris40 0644 root bin -f none /opt/csw/share/terminfo/i/interix 0644 root bin -f none /opt/csw/share/terminfo/i/interix-nti 0644 root bin -f none /opt/csw/share/terminfo/i/ips 0644 root bin -f none /opt/csw/share/terminfo/i/ibm327x 0644 root bin -f none /opt/csw/share/terminfo/i/ibm3101 0644 root bin -l none /opt/csw/share/terminfo/i/i3101=ibm3101 -f none /opt/csw/share/terminfo/i/ibm3151 0644 root bin -f none /opt/csw/share/terminfo/i/ibm3161 0644 root bin -l none /opt/csw/share/terminfo/i/ibm3163=ibm3161 -f none /opt/csw/share/terminfo/i/ibm3161-C 0644 root bin -f none /opt/csw/share/terminfo/i/ibm3162 0644 root bin -f none /opt/csw/share/terminfo/i/ibm3164 0644 root bin -l none /opt/csw/share/terminfo/i/i3164=ibm3164 -f none /opt/csw/share/terminfo/i/ibm5151 0644 root bin -f none /opt/csw/share/terminfo/i/ibmaed 0644 root bin -l none /opt/csw/share/terminfo/i/ibm-apl=../a/apl -f none /opt/csw/share/terminfo/i/ibmmono 0644 root bin -f none /opt/csw/share/terminfo/i/ibmega 0644 root bin -f none /opt/csw/share/terminfo/i/ibm+color 0644 root bin -f none /opt/csw/share/terminfo/i/ibm+16color 0644 root bin -f none /opt/csw/share/terminfo/i/ibm5154 0644 root bin -f none /opt/csw/share/terminfo/i/ibmega-c 0644 root bin -l none /opt/csw/share/terminfo/i/ibm5154-c=ibmega-c -f none /opt/csw/share/terminfo/i/ibmvga-c 0644 root bin -f none /opt/csw/share/terminfo/i/ibmvga 0644 root bin -f none /opt/csw/share/terminfo/i/ibmapa16 0644 root bin -f none /opt/csw/share/terminfo/i/ibm6155 0644 root bin -f none /opt/csw/share/terminfo/i/ibmapa8c 0644 root bin -l none /opt/csw/share/terminfo/i/ibmapa8=ibmapa8c @@ Diff output truncated at 100000 characters. @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 15:33:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 14:33:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2736] csw/mgar/pkg/ncurses/trunk/Makefile Message-ID: Revision: 2736 http://gar.svn.sourceforge.net/gar/?rev=2736&view=rev Author: dmichelsen Date: 2009-01-02 14:33:07 +0000 (Fri, 02 Jan 2009) Log Message: ----------- ncurses: Don't use ISAEXEC on binaries Modified Paths: -------------- csw/mgar/pkg/ncurses/trunk/Makefile Modified: csw/mgar/pkg/ncurses/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-02 14:08:57 UTC (rev 2735) +++ csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-02 14:33:07 UTC (rev 2736) @@ -17,6 +17,7 @@ SPKG_SOURCEURL = http://www.gnu.org/software/ncurses/ncurses.html BUILD64 = 1 +NO_ISAEXEC = 1 RUNPATHQUOTE = 1 CONFIGURE_ARGS = --prefix=$(prefix) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 16:31:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 15:31:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2737] csw/mgar/pkg/ncurses/trunk Message-ID: Revision: 2737 http://gar.svn.sourceforge.net/gar/?rev=2737&view=rev Author: dmichelsen Date: 2009-01-02 15:31:09 +0000 (Fri, 02 Jan 2009) Log Message: ----------- ncurses: Don't use new option -xcode as SOS11 on x86 doesn't understand it Modified Paths: -------------- csw/mgar/pkg/ncurses/trunk/Makefile csw/mgar/pkg/ncurses/trunk/checksums Added Paths: ----------- csw/mgar/pkg/ncurses/trunk/files/patch-xcode.diff Modified: csw/mgar/pkg/ncurses/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-02 14:33:07 UTC (rev 2736) +++ csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-02 15:31:09 UTC (rev 2737) @@ -14,6 +14,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWncurses) +PATCHFILES = patch-xcode.diff + SPKG_SOURCEURL = http://www.gnu.org/software/ncurses/ncurses.html BUILD64 = 1 Modified: csw/mgar/pkg/ncurses/trunk/checksums =================================================================== --- csw/mgar/pkg/ncurses/trunk/checksums 2009-01-02 14:33:07 UTC (rev 2736) +++ csw/mgar/pkg/ncurses/trunk/checksums 2009-01-02 15:31:09 UTC (rev 2737) @@ -1,4 +1,3 @@ -069c8880072060373290a4fefff43520 download/ncurses-5.4.tar.gz -b6593abe1089d6aab1551c105c9300e3 download/ncurses-5.6.tar.gz cce05daf61a64501ef6cd8da1f727ec6 download/ncurses-5.7.tar.gz 15d0b480df618fcdf7a8b829fe4a2300 download/CSWncurses.gspec +74e4c56ff1c8d4e29695f1b0d887a070 download/patch-xcode.diff Added: csw/mgar/pkg/ncurses/trunk/files/patch-xcode.diff =================================================================== --- csw/mgar/pkg/ncurses/trunk/files/patch-xcode.diff (rev 0) +++ csw/mgar/pkg/ncurses/trunk/files/patch-xcode.diff 2009-01-02 15:31:09 UTC (rev 2737) @@ -0,0 +1,12 @@ +diff -Naur ncurses-5.7.orig/configure ncurses-5.7.patched/configure +--- ncurses-5.7.orig/configure 2008-10-26 02:04:38.000000000 +0200 ++++ ncurses-5.7.patched/configure 2009-01-02 16:18:33.593535166 +0100 +@@ -5258,7 +5258,7 @@ + fi + + if test "$GCC" != yes; then +- CC_SHARED_OPTS='-xcode=pic32' ++ CC_SHARED_OPTS='-KPIC' + MK_SHARED_LIB='${CC} -dy -G -h '$cf_cv_shared_soname' -o $@' + else + MK_SHARED_LIB='${CC} -shared -dy -G -h '$cf_cv_shared_soname' -o $@' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 17:05:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 16:05:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2738] csw/mgar/pkg/jdk14/ Message-ID: Revision: 2738 http://gar.svn.sourceforge.net/gar/?rev=2738&view=rev Author: dmichelsen Date: 2009-01-02 16:05:40 +0000 (Fri, 02 Jan 2009) Log Message: ----------- jdk14: Drop old Java version Removed Paths: ------------- csw/mgar/pkg/jdk14/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dam at opencsw.org Fri Jan 2 18:25:58 2009 From: dam at opencsw.org (Dagobert Michelsen) Date: Fri, 2 Jan 2009 18:25:58 +0100 Subject: [csw-devel] Unknown flag '-xcode=pic32' on Sun Studio 11 x86 when compiling ncurses 5.7 Message-ID: Hi, there was a change in Solaris flags some time ago: 20080614 ... + change CC_SHARED_OPTS from -KPIC to -xcode=pic32 for Solaris. ... This flag is only allowed on Sparc and invalid on Sun Studio 11 x86 (from cc(1)): -xcode=v (SPARC) Specify code address space On Sparc -xcode=pic32 is identical to the obsoleted option -KPIC, however on x86 there is no -xcode and -KPIC is equivalent -Kpic. I guess is may be best if it would be checked during compilation if the compiler accepts -xcode. Best regards -- Dagobert Michelsen From harpchad at users.sourceforge.net Fri Jan 2 20:18:22 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 02 Jan 2009 19:18:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[2739] csw/mgar/pkg Message-ID: Revision: 2739 http://gar.svn.sourceforge.net/gar/?rev=2739&view=rev Author: harpchad Date: 2009-01-02 19:18:22 +0000 (Fri, 02 Jan 2009) Log Message: ----------- pidgin: Initial commit Added Paths: ----------- csw/mgar/pkg/pidgin/ csw/mgar/pkg/pidgin/branches/ csw/mgar/pkg/pidgin/tags/ csw/mgar/pkg/pidgin/trunk/ csw/mgar/pkg/pidgin/trunk/Makefile csw/mgar/pkg/pidgin/trunk/checksums csw/mgar/pkg/pidgin/trunk/files/ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype csw/mgar/pkg/pidgin/trunk/files/x11.pc Property changes on: csw/mgar/pkg/pidgin/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 Added: csw/mgar/pkg/pidgin/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-02 19:18:22 UTC (rev 2739) @@ -0,0 +1,36 @@ +GARNAME = pidgin +GARVERSION = 2.5.3 +CATEGORIES = apps + +DESCRIPTION = Multi-protocol IM client +define BLURB + Pidgin is a chat program which lets you log in to accounts on multiple chat networks simultaneously. This means that you can be chatting with friends on MSN, talking to a friend on Google Talk, and sitting in a Yahoo chat room all at the same time. +endef + +MASTER_SITES = $(SF_MIRROR) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += x11.pc +DISTFILES += $(call admfiles,CSWpidgin,prototype depend) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += '--with-dbus-services=/opt/csw/etc/dbus-1' +CONFIGURE_ARGS += '--with-tclconfig=/opt/csw/lib' +CONFIGURE_ARGS += '--with-tkconfig=/opt/csw/lib' +CONFIGURE_ARGS += '--enable-gnutls=yes' +CONFIGURE_ARGS += '--disable-nss' +CONFIGURE_ARGS += '--disable-avahi' +CONFIGURE_ARGS += '--disable-nm' + +#Need to include out own x11.pc file as solaris 8 doesn't have one +PKG_CONFIG_PATH += $(CURDIR)/$(WORKDIR) + +#No tests +TEST_SCRIPTS = + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# If the url used to check for software update is different of MASTER_SITES, then +# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES +# UPSTREAM_MASTER_SITES = + +include gar/category.mk Added: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums (rev 0) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-01-02 19:18:22 UTC (rev 2739) @@ -0,0 +1,5 @@ +47c6ecd45b3a62c7a826f7ceb2663fb8 download/pidgin-2.5.3.tar.gz +a7b09db0dd384035709295238a3df7f5 download/CSWpidgin.depend +e3bacfec1eab2b829d4255afa4f69bee download/CSWpidgin.gspec +cecae2b58285e35fe3881e14f63b27b1 download/CSWpidgin.prototype +6dd3c13c4b6f610409fd267692dbe716 download/x11.pc Added: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend (rev 0) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-02 19:18:22 UTC (rev 2739) @@ -0,0 +1,30 @@ +P CSWaspell +P CSWdbusglib +P CSWexpat +P CSWfconfig +P CSWftype2 +P CSWgcrypt +P CSWggettext +P CSWglib2 +P CSWgnutls +P CSWgstreamer +P CSWgtk2 +P CSWgtkspell +P CSWiconv +P CSWlibatk +P CSWlibcairo +P CSWlibdbus +P CSWlibxml2 +P CSWlibxrender +P CSWmeanwhile +P CSWncurses +P CSWpango +P CSWperl +P CSWpng +P CSWpython +P CSWsilctoolkit +P CSWstartupnotif +P CSWsunmath +P CSWtcl +P CSWtk +P CSWzlib Added: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec (rev 0) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec 2009-01-02 19:18:22 UTC (rev 2739) @@ -0,0 +1,4 @@ +%var bitname pidgin +%var pkgname CSWpidgin +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/COPYING Added: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype (rev 0) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-02 19:18:22 UTC (rev 2739) @@ -0,0 +1,1016 @@ +d none /opt/csw/include 0755 root bin +d none /opt/csw/include/finch 0755 root bin +f none /opt/csw/include/finch/gntconv.h 0644 root bin +f none /opt/csw/include/finch/gntrequest.h 0644 root bin +f none /opt/csw/include/finch/gntlog.h 0644 root bin +f none /opt/csw/include/finch/gntstatus.h 0644 root bin +f none /opt/csw/include/finch/gntprefs.h 0644 root bin +f none /opt/csw/include/finch/finch.h 0644 root bin +f none /opt/csw/include/finch/gntplugin.h 0644 root bin +f none /opt/csw/include/finch/gntblist.h 0644 root bin +f none /opt/csw/include/finch/gntsound.h 0644 root bin +f none /opt/csw/include/finch/gntcertmgr.h 0644 root bin +f none /opt/csw/include/finch/gntdebug.h 0644 root bin +f none /opt/csw/include/finch/gntui.h 0644 root bin +f none /opt/csw/include/finch/gntconn.h 0644 root bin +f none /opt/csw/include/finch/gntft.h 0644 root bin +f none /opt/csw/include/finch/gntaccount.h 0644 root bin +f none /opt/csw/include/finch/gntnotify.h 0644 root bin +f none /opt/csw/include/finch/gntpounce.h 0644 root bin +f none /opt/csw/include/finch/gntroomlist.h 0644 root bin +f none /opt/csw/include/finch/gntidle.h 0644 root bin +d none /opt/csw/include/libpurple 0755 root bin +f none /opt/csw/include/libpurple/mime.h 0644 root bin +f none /opt/csw/include/libpurple/ft.h 0644 root bin +f none /opt/csw/include/libpurple/server.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-server.h 0644 root bin +f none /opt/csw/include/libpurple/account.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-useful.h 0644 root bin +f none /opt/csw/include/libpurple/desktopitem.h 0644 root bin +f none /opt/csw/include/libpurple/util.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-bindings.h 0644 root bin +f none /opt/csw/include/libpurple/imgstore.h 0644 root bin +f none /opt/csw/include/libpurple/smiley.h 0644 root bin +f none /opt/csw/include/libpurple/buddyicon.h 0644 root bin +f none /opt/csw/include/libpurple/certificate.h 0644 root bin +f none /opt/csw/include/libpurple/dnsquery.h 0644 root bin +f none /opt/csw/include/libpurple/conversation.h 0644 root bin +f none /opt/csw/include/libpurple/pounce.h 0644 root bin +f none /opt/csw/include/libpurple/signals.h 0644 root bin +f none /opt/csw/include/libpurple/pluginpref.h 0644 root bin +f none /opt/csw/include/libpurple/network.h 0644 root bin +f none /opt/csw/include/libpurple/notify.h 0644 root bin +f none /opt/csw/include/libpurple/core.h 0644 root bin +f none /opt/csw/include/libpurple/stun.h 0644 root bin +f none /opt/csw/include/libpurple/whiteboard.h 0644 root bin +f none /opt/csw/include/libpurple/debug.h 0644 root bin +f none /opt/csw/include/libpurple/savedstatuses.h 0644 root bin +f none /opt/csw/include/libpurple/blist.h 0644 root bin +f none /opt/csw/include/libpurple/prpl.h 0644 root bin +f none /opt/csw/include/libpurple/status.h 0644 root bin +f none /opt/csw/include/libpurple/ntlm.h 0644 root bin +f none /opt/csw/include/libpurple/nat-pmp.h 0644 root bin +f none /opt/csw/include/libpurple/sound.h 0644 root bin +f none /opt/csw/include/libpurple/sslconn.h 0644 root bin +f none /opt/csw/include/libpurple/privacy.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-types.h 0644 root bin +f none /opt/csw/include/libpurple/connection.h 0644 root bin +f none /opt/csw/include/libpurple/purple.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-purple.h 0644 root bin +f none /opt/csw/include/libpurple/cmds.h 0644 root bin +f none /opt/csw/include/libpurple/accountopt.h 0644 root bin +f none /opt/csw/include/libpurple/gaim-compat.h 0644 root bin +f none /opt/csw/include/libpurple/proxy.h 0644 root bin +f none /opt/csw/include/libpurple/version.h 0644 root bin +f none /opt/csw/include/libpurple/dnssrv.h 0644 root bin +f none /opt/csw/include/libpurple/cipher.h 0644 root bin +f none /opt/csw/include/libpurple/value.h 0644 root bin +f none /opt/csw/include/libpurple/plugin.h 0644 root bin +f none /opt/csw/include/libpurple/request.h 0644 root bin +f none /opt/csw/include/libpurple/prefs.h 0644 root bin +f none /opt/csw/include/libpurple/idle.h 0644 root bin +f none /opt/csw/include/libpurple/upnp.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-define-api.h 0644 root bin +f none /opt/csw/include/libpurple/eventloop.h 0644 root bin +f none /opt/csw/include/libpurple/circbuffer.h 0644 root bin +f none /opt/csw/include/libpurple/log.h 0644 root bin +f none /opt/csw/include/libpurple/stringref.h 0644 root bin +f none /opt/csw/include/libpurple/xmlnode.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-maybe.h 0644 root bin +f none /opt/csw/include/libpurple/roomlist.h 0644 root bin +d none /opt/csw/include/pidgin 0755 root bin +f none /opt/csw/include/pidgin/gtkstatusbox.h 0644 root bin +f none /opt/csw/include/pidgin/gtkconn.h 0644 root bin +f none /opt/csw/include/pidgin/gtkscrollbook.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcelllayout.h 0644 root bin +f none /opt/csw/include/pidgin/gtkaccount.h 0644 root bin +f none /opt/csw/include/pidgin/gtkconvwin.h 0644 root bin +f none /opt/csw/include/pidgin/gtkimhtmltoolbar.h 0644 root bin +f none /opt/csw/include/pidgin/gtkpounce.h 0644 root bin +f none /opt/csw/include/pidgin/gtkthemes.h 0644 root bin +f none /opt/csw/include/pidgin/gtkutils.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdialogs.h 0644 root bin +f none /opt/csw/include/pidgin/gtknotify.h 0644 root bin +f none /opt/csw/include/pidgin/gtkprefs.h 0644 root bin +f none /opt/csw/include/pidgin/gtkimhtml.h 0644 root bin +f none /opt/csw/include/pidgin/minidialog.h 0644 root bin +f none /opt/csw/include/pidgin/gtkidle.h 0644 root bin +f none /opt/csw/include/pidgin/gtksmiley.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcertmgr.h 0644 root bin +f none /opt/csw/include/pidgin/pidgin.h 0644 root bin +f none /opt/csw/include/pidgin/gtkgaim-compat.h 0644 root bin +f none /opt/csw/include/pidgin/gtkmenutray.h 0644 root bin +f none /opt/csw/include/pidgin/gtksourceiter.h 0644 root bin +f none /opt/csw/include/pidgin/gtkblist.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellview.h 0644 root bin +f none /opt/csw/include/pidgin/gtksound.h 0644 root bin +f none /opt/csw/include/pidgin/gtkeventloop.h 0644 root bin +f none /opt/csw/include/pidgin/gtkexpander.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdebug.h 0644 root bin +f none /opt/csw/include/pidgin/gtkroomlist.h 0644 root bin +f none /opt/csw/include/pidgin/gtksession.h 0644 root bin +f none /opt/csw/include/pidgin/gtkpluginpref.h 0644 root bin +f none /opt/csw/include/pidgin/gtksourceview-marshal.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellrendererexpander.h 0644 root bin +f none /opt/csw/include/pidgin/gtkwhiteboard.h 0644 root bin +f none /opt/csw/include/pidgin/gtknickcolors.h 0644 root bin +f none /opt/csw/include/pidgin/gtkplugin.h 0644 root bin +f none /opt/csw/include/pidgin/pidgintooltip.h 0644 root bin +f none /opt/csw/include/pidgin/gtkconv.h 0644 root bin +f none /opt/csw/include/pidgin/gtkprivacy.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellviewmenuitem.h 0644 root bin +f none /opt/csw/include/pidgin/gtkft.h 0644 root bin +f none /opt/csw/include/pidgin/gtksourceundomanager.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellrendererprogress.h 0644 root bin +f none /opt/csw/include/pidgin/gtklog.h 0644 root bin +f none /opt/csw/include/pidgin/gtkrequest.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdocklet.h 0644 root bin +f none /opt/csw/include/pidgin/pidginstock.h 0644 root bin +f none /opt/csw/include/pidgin/gtksavedstatuses.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdnd-hints.h 0644 root bin +f none /opt/csw/include/pidgin/pidgincombobox.h 0644 root bin +f none /opt/csw/include/pidgin/eggtrayicon.h 0644 root bin +d none /opt/csw/include/gnt 0755 root bin +f none /opt/csw/include/gnt/gntbindable.h 0644 root bin +f none /opt/csw/include/gnt/gntcheckbox.h 0644 root bin +f none /opt/csw/include/gnt/gntcombobox.h 0644 root bin +f none /opt/csw/include/gnt/gntentry.h 0644 root bin +f none /opt/csw/include/gnt/gnttree.h 0644 root bin +f none /opt/csw/include/gnt/gntwm.h 0644 root bin +f none /opt/csw/include/gnt/gntws.h 0644 root bin +f none /opt/csw/include/gnt/gnttextview.h 0644 root bin +f none /opt/csw/include/gnt/gntmarshal.h 0644 root bin +f none /opt/csw/include/gnt/gntfilesel.h 0644 root bin +f none /opt/csw/include/gnt/gntwidget.h 0644 root bin +f none /opt/csw/include/gnt/gntmenu.h 0644 root bin +f none /opt/csw/include/gnt/gntline.h 0644 root bin +f none /opt/csw/include/gnt/gntstyle.h 0644 root bin +f none /opt/csw/include/gnt/gntcolors.h 0644 root bin +f none /opt/csw/include/gnt/gntslider.h 0644 root bin +f none /opt/csw/include/gnt/gntmenuitemcheck.h 0644 root bin +f none /opt/csw/include/gnt/gntbox.h 0644 root bin +f none /opt/csw/include/gnt/gntutils.h 0644 root bin +f none /opt/csw/include/gnt/gntkeys.h 0644 root bin +f none /opt/csw/include/gnt/gntclipboard.h 0644 root bin +f none /opt/csw/include/gnt/gnt.h 0644 root bin +f none /opt/csw/include/gnt/gntbutton.h 0644 root bin +f none /opt/csw/include/gnt/gntlabel.h 0644 root bin +f none /opt/csw/include/gnt/gntwindow.h 0644 root bin +f none /opt/csw/include/gnt/gntmenuitem.h 0644 root bin +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/icons 0755 root bin +d none /opt/csw/share/icons/hicolor 0755 root bin +d none /opt/csw/share/icons/hicolor/48x48 0755 root bin +d none /opt/csw/share/icons/hicolor/48x48/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/48x48/apps/pidgin.png 0644 root bin +d none /opt/csw/share/icons/hicolor/24x24 0755 root bin +d none /opt/csw/share/icons/hicolor/24x24/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/24x24/apps/pidgin.png 0644 root bin +d none /opt/csw/share/icons/hicolor/32x32 0755 root bin +d none /opt/csw/share/icons/hicolor/32x32/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/32x32/apps/pidgin.png 0644 root bin +d none /opt/csw/share/icons/hicolor/22x22 0755 root bin +d none /opt/csw/share/icons/hicolor/22x22/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/22x22/apps/pidgin.png 0644 root bin +d none /opt/csw/share/icons/hicolor/16x16 0755 root bin +d none /opt/csw/share/icons/hicolor/16x16/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/16x16/apps/pidgin.png 0644 root bin +d none /opt/csw/share/sounds 0755 root bin +d none /opt/csw/share/sounds/purple 0755 root bin +f none /opt/csw/share/sounds/purple/receive.wav 0644 root bin +f none /opt/csw/share/sounds/purple/send.wav 0644 root bin +f none /opt/csw/share/sounds/purple/login.wav 0644 root bin +f none /opt/csw/share/sounds/purple/logout.wav 0644 root bin +f none /opt/csw/share/sounds/purple/alert.wav 0644 root bin +d none /opt/csw/share/aclocal 0755 root bin +f none /opt/csw/share/aclocal/purple.m4 0644 root bin +d none /opt/csw/share/purple 0755 root bin +d none /opt/csw/share/purple/ca-certs 0755 root bin +f none /opt/csw/share/purple/ca-certs/Microsoft_Secure_Server_Authority.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/Verisign_Class3_Primary_CA.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/Verisign_RSA_Secure_Server_CA.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/CAcert_Class3.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/Equifax_Secure_CA.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/StartCom_Free_SSL_CA.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/CAcert_Root.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem 0644 root bin +f none /opt/csw/share/purple/ca-certs/GTE_CyberTrust_Global_Root.pem 0644 root bin +d none /opt/csw/share/applications 0755 root bin +f none /opt/csw/share/applications/pidgin.desktop 0644 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man3 0755 root bin +f none /opt/csw/share/man/man3/Pidgin.3perl 0644 root bin +f none /opt/csw/share/man/man3/Purple.3perl 0644 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/pidgin.1 0644 root bin +f none /opt/csw/share/man/man1/finch.1 0644 root bin +d none /opt/csw/share/pixmaps 0755 root bin +d none /opt/csw/share/pixmaps/pidgin 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/emotes 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/emotes/none 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/none/theme 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/emotes/default 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/kiss.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/jump.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cow.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/female-fighter.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dazed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/stop.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/doctor.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/theme 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mobile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/weep.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/laugh.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/yin-yang.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/music.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hammer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clock.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rose-dead.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/kissing.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/curse.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/doh.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/plate.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/call-me.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/watermelon.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cowboy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/devil.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/nailbiting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/vampire.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shout.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/time-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/starving.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hug-right.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sweat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sad.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/boy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/disappointed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/terror.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/island.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/glasses-nerdy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/coffee.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/blowkiss.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cigarette.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/search.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hypnotized.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/male-fighter2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/talktohand.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/airplane.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/smirk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/excruciating.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/brb.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dont-know.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/at-wits-end.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/teeth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hug-left.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clap.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cloudy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/liquor.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/car.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dog.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/soccerball.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/love-over.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/star.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cute.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bulgy-eyes.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/disdain.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sidefrown.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/girl.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/can.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sheep.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn_online.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/angry.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/snicker.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shock.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/in-love.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/victory.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/skeleton.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/yawn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bowl.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/thinking.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/film.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/lashes.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/struggle.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sarcastic.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/silly.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/smile-big.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/handcuffs.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/act-up.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sleepy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/fingers-crossed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/alien.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/tremble.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/thunder.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/drink.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/lamp.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pirate.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/desire.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/flag.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rotfl.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/on-the-phone.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/wink.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/giggle.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/poop.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/goat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pig.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/foot-in-mouth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/coins.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/moon.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/knife.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sun.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/beer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rain.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/smile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dance.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/eyeroll.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/question.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/soldier.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cake.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/snail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/crying.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/kissed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/waving.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sick.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/go-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bad.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/handshake.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/moneymouth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/angel.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/phone.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rainbow.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cyclops.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/loser.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shut-mouth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/lying.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/meeting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/chicken.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mean.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/waiting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/umbrella.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/tv.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pumpkin.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/wilt.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/freaked-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/peace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/tongue.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bashful.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bye.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/musical-note.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/snowman.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/qq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sinister.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/secret.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/worship.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/arrogant.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pray.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/confused.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rose.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/quiet.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/monkey.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/male-fighter1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bomb.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/drool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/beauty.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn-busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/present.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/good.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/curl-lip.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/eat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clown.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/turtle.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/camera.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shame.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/computer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/messed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pizza.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/neutral.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/glasses-cool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pissed-off.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/highfive.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/party.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/beat-up.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clover.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/console.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mohawk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/embarrassed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/ghost.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bunny.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/love.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/skywalker.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mad-tongue.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pill.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn-away.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/tray 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/tray/48 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-connecting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-online.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-new-im.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-extended-away.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/tray/32 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-connecting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-new-im.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-online.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-away.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/tray/22 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-new-im.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-message.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-connecting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-online.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/tray/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-online.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/connecting_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/busy_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/away_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-new-im.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/available_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-connecting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-message.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/invisible_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/offline_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/extended-away_4bit.ico 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/tray/16/message_4bit.ico 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/animations 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/animations/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing5.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect5.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working20.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working4.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working3.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working27.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working29.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working12.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working15.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect3.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working30.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing3.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing4.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect4.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working14.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working13.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working28.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working26.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working21.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working5.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working10.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working17.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working19.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working8.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working22.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working6.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working25.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect7.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect0.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing0.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working0.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working24.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working23.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working7.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working9.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working18.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working16.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working11.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect8.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect6.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-left.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-down.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-right.xpm 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/protocols 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/protocols/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/myspace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/qq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/bonjour.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/novell.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/yahoo.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/aim.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/silc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/google-talk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/simple.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/meanwhile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/jabber.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/gadu-gadu.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/zephyr.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/msn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/icq.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/protocols/22 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/novell.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/msn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/yahoo.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/qq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/gadu-gadu.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/icq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/aim.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/meanwhile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/google-talk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/silc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/zephyr.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/bonjour.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/simple.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/myspace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/jabber.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/protocols/48 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/msn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/yahoo.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/silc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/simple.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/icq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/meanwhile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/jabber.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/gadu-gadu.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/qq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/zephyr.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/aim.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/myspace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/novell.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/bonjour.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/emblems 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/emblems/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/hiptop.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/game.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/aol-client.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/qq-member.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/external.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/voice.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/video.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/birthday.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/female.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/bot.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/founder.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/music.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/operator.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/half-operator.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/male.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/not-authorized.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/unavailable.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/mobile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/blocked.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/secure.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/free-for-chat.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/status/16 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/status/16/rtl 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/person.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/available.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/log-in.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/11 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/available.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/person.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/11/rtl 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/rtl/extended-away.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/22 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/person.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/invisible.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/22/rtl 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/rtl/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/rtl/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/rtl/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/available.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/32 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/status/32/rtl 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/rtl/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/rtl/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/rtl/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/person.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/available.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/32/offline.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/48 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/available.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/person.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/extended-away.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/48/rtl 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/rtl/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/rtl/login.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/rtl/logout.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/48/log-out.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/buttons 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/edit.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/music.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/info.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/pause.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-up.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/logo.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/toolbar 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/toolbar/22 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/22/select-avatar.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/toolbar/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/transfer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/font-size-down.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/insert-image.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/font-face.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/font-size-up.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/emote-select.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/change-fgcolor.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/send-file.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/message-new.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/insert-link.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/change-bgcolor.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/plugins.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/insert.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/toolbar/16/unblock.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/dialogs 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/dialogs/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/auth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/mail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/info.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/error.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/question.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/dialogs/64 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/info.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/cool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/mail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/auth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/warning.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/dialog.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/question.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/error.png 0644 root bin +d none /opt/csw/share/locale 0755 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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/lo 0755 root bin +d none /opt/csw/share/locale/lo/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/lo/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/ur 0755 root bin +d none /opt/csw/share/locale/ur/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/ur/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/en_AU 0755 root bin +d none /opt/csw/share/locale/en_AU/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/en_AU/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/my_MM 0755 root bin +d none /opt/csw/share/locale/my_MM/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/my_MM/LC_MESSAGES/pidgin.mo 0644 root bin +d none /opt/csw/share/perl 0755 root bin +d none /opt/csw/share/perl/csw 0755 root bin +d none /opt/csw/lib 0755 root bin +s none /opt/csw/lib/libpurple.so.0=libpurple.so.0.5.2 +s none /opt/csw/lib/libpurple-client.so.0=libpurple-client.so.0.5.2 +d none /opt/csw/lib/pidgin 0755 root bin +f none /opt/csw/lib/pidgin/timestamp_format.so 0755 root bin +f none /opt/csw/lib/pidgin/notify.so 0755 root bin +f none /opt/csw/lib/pidgin/gtkbuddynote.so 0755 root bin +f none /opt/csw/lib/pidgin/ticker.so 0755 root bin +f none /opt/csw/lib/pidgin/spellchk.so 0755 root bin +f none /opt/csw/lib/pidgin/history.so 0755 root bin +f none /opt/csw/lib/pidgin/pidginrc.so 0755 root bin +f none /opt/csw/lib/pidgin/musicmessaging.so 0755 root bin +f none /opt/csw/lib/pidgin/sendbutton.so 0755 root bin +f none /opt/csw/lib/pidgin/extplacement.so 0755 root bin +f none /opt/csw/lib/pidgin/timestamp.so 0755 root bin +f none /opt/csw/lib/pidgin/relnot.so 0755 root bin +f none /opt/csw/lib/pidgin/xmppconsole.so 0755 root bin +f none /opt/csw/lib/pidgin/markerline.so 0755 root bin +f none /opt/csw/lib/pidgin/iconaway.so 0755 root bin +f none /opt/csw/lib/pidgin/convcolors.so 0755 root bin +f none /opt/csw/lib/pidgin/gestures.so 0755 root bin +f none /opt/csw/lib/libpurple.so.0.5.2 0755 root bin +f none /opt/csw/lib/libgnt.so.0.0.0 0755 root bin +d none /opt/csw/lib/pkgconfig 0755 root bin +f none /opt/csw/lib/pkgconfig/gnt.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/purple.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/pidgin.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/finch.pc 0644 root bin +s none /opt/csw/lib/libpurple-client.so=libpurple-client.so.0.5.2 +d none /opt/csw/lib/finch 0755 root bin +f none /opt/csw/lib/finch/gntclipboard.so 0755 root bin +f none /opt/csw/lib/finch/gnthistory.so 0755 root bin +f none /opt/csw/lib/finch/grouping.so 0755 root bin +f none /opt/csw/lib/finch/gntgf.so 0755 root bin +f none /opt/csw/lib/finch/gntlastlog.so 0755 root bin +s none /opt/csw/lib/libgnt.so.0=libgnt.so.0.0.0 +d none /opt/csw/lib/purple-2 0755 root bin +f none /opt/csw/lib/purple-2/ssl-nss.so 0755 root bin +f none /opt/csw/lib/purple-2/libirc.so 0755 root bin +f none /opt/csw/lib/purple-2/libyahoo.so 0755 root bin +f none /opt/csw/lib/purple-2/libnovell.so 0755 root bin +f none /opt/csw/lib/purple-2/dbus-example.so 0755 root bin +f none /opt/csw/lib/purple-2/libjabber.so.0.0.0 0755 root bin +f none /opt/csw/lib/purple-2/buddynote.so 0755 root bin +f none /opt/csw/lib/purple-2/libsametime.so 0755 root bin +s none /opt/csw/lib/purple-2/liboscar.so.0=liboscar.so.0.0.0 +f none /opt/csw/lib/purple-2/ssl-gnutls.so 0755 root bin +f none /opt/csw/lib/purple-2/autoaccept.so 0755 root bin +f none /opt/csw/lib/purple-2/liboscar.so.0.0.0 0755 root bin +f none /opt/csw/lib/purple-2/statenotify.so 0755 root bin +s none /opt/csw/lib/purple-2/liboscar.so=liboscar.so.0.0.0 +f none /opt/csw/lib/purple-2/idle.so 0755 root bin +f none /opt/csw/lib/purple-2/libgg.so 0755 root bin +f none /opt/csw/lib/purple-2/perl.so 0755 root bin +f none /opt/csw/lib/purple-2/libqq.so 0755 root bin +f none /opt/csw/lib/purple-2/libsimple.so 0755 root bin +f none /opt/csw/lib/purple-2/psychic.so 0755 root bin +f none /opt/csw/lib/purple-2/tcl.so 0755 root bin +f none /opt/csw/lib/purple-2/libsilcpurple.so 0755 root bin +s none /opt/csw/lib/purple-2/libjabber.so=libjabber.so.0.0.0 +f none /opt/csw/lib/purple-2/ssl.so 0755 root bin +f none /opt/csw/lib/purple-2/log_reader.so 0755 root bin +f none /opt/csw/lib/purple-2/libicq.so 0755 root bin +f none /opt/csw/lib/purple-2/libaim.so 0755 root bin +s none /opt/csw/lib/purple-2/libjabber.so.0=libjabber.so.0.0.0 +f none /opt/csw/lib/purple-2/offlinemsg.so 0755 root bin +f none /opt/csw/lib/purple-2/libmyspace.so 0755 root bin +f none /opt/csw/lib/purple-2/libxmpp.so 0755 root bin +f none /opt/csw/lib/purple-2/joinpart.so 0755 root bin +f none /opt/csw/lib/purple-2/libmsn.so 0755 root bin +f none /opt/csw/lib/purple-2/libzephyr.so 0755 root bin +f none /opt/csw/lib/purple-2/newline.so 0755 root bin +d none /opt/csw/lib/gnt 0755 root bin +f none /opt/csw/lib/gnt/irssi.so 0755 root bin +f none /opt/csw/lib/gnt/s.so 0755 root bin +s none /opt/csw/lib/libgnt.so=libgnt.so.0.0.0 +s none /opt/csw/lib/libpurple.so=libpurple.so.0.5.2 +d none /opt/csw/lib/perl 0755 root bin +d none /opt/csw/lib/perl/csw 0755 root bin +f none /opt/csw/lib/perl/csw/Pidgin.pm 0644 root bin +d none /opt/csw/lib/perl/csw/auto 0755 root bin +d none /opt/csw/lib/perl/csw/auto/Purple 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/Purple.so 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/.packlist 0664 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/Purple.bs 0644 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/autosplit.ix 0644 root bin +d none /opt/csw/lib/perl/csw/auto/Pidgin 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Pidgin/Pidgin.so 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Pidgin/.packlist 0664 root bin +f none /opt/csw/lib/perl/csw/auto/Pidgin/Pidgin.bs 0644 root bin +f none /opt/csw/lib/perl/csw/Purple.pm 0644 root bin +f none /opt/csw/lib/libpurple-client.so.0.5.2 0755 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/purple-send-async 0755 root bin +f none /opt/csw/bin/finch 0755 root bin +f none /opt/csw/bin/purple-remote 0755 root bin +f none /opt/csw/bin/pidgin 0755 root bin +f none /opt/csw/bin/purple-client-example 0755 root bin +f none /opt/csw/bin/purple-send 0755 root bin +f none /opt/csw/bin/purple-url-handler 0755 root bin +d none /opt/csw/etc 0755 root bin +d none /opt/csw/etc/gconf 0755 root bin +d none /opt/csw/etc/gconf/schemas 0755 root bin +f none /opt/csw/etc/gconf/schemas/purple.schemas 0644 root bin Added: csw/mgar/pkg/pidgin/trunk/files/x11.pc =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/x11.pc (rev 0) +++ csw/mgar/pkg/pidgin/trunk/files/x11.pc 2009-01-02 19:18:22 UTC (rev 2739) @@ -0,0 +1,15 @@ +prefix=/usr/openwin +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +xthreadlib= + +Name: X11 +Description: X Library +Version: 0.0 +Requires: xproto kbproto inputproto +Requires.private: xau xdmcp +Cflags: -I${includedir} -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DXTHREADS -DXUSE_MTSAFE_API +Libs: -L${libdir} -R${libdir} -lX11 +Libs.private: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 20:37:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 19:37:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2740] csw/mgar/pkg Message-ID: Revision: 2740 http://gar.svn.sourceforge.net/gar/?rev=2740&view=rev Author: dmichelsen Date: 2009-01-02 19:37:04 +0000 (Fri, 02 Jan 2009) Log Message: ----------- libnet: Initial commit Added Paths: ----------- csw/mgar/pkg/libnet/ csw/mgar/pkg/libnet/branches/ csw/mgar/pkg/libnet/tags/ csw/mgar/pkg/libnet/trunk/ csw/mgar/pkg/libnet/trunk/Makefile csw/mgar/pkg/libnet/trunk/checksums csw/mgar/pkg/libnet/trunk/files/ csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec Property changes on: csw/mgar/pkg/libnet/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libnet/trunk/Makefile =================================================================== --- csw/mgar/pkg/libnet/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libnet/trunk/Makefile 2009-01-02 19:37:04 UTC (rev 2740) @@ -0,0 +1,22 @@ +GARNAME = libnet +GARVERSION = 1.1.2.1 +CATEGORIES = lib + +DESCRIPTION = The libnet packet construction library +define BLURB + Libnet is a high-level API (toolkit) allowing the application programmer to construct and inject network packets. It provides a portable and simplified interface for low-level network packet shaping, handling and injection. Libnet hides much of the tedium of packet creation from the application programmer such as multiplexing, buffer management, arcane packet header information, byte-ordering, OS-dependent issues, and much more. Libnet features portable packet creation interfaces at both the IP-layer and link-layer, as well as a host of supplementary and complementary functionality. +endef + +MASTER_SITES = http://www.packetfactory.net/libnet/dist/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWlibnet,) + +SPKG_SOURCEURL = http://www.packetfactory.net/libnet/ + +BUILD64 = 1 + +DISTNAME = libnet + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/libnet/trunk/checksums =================================================================== --- csw/mgar/pkg/libnet/trunk/checksums (rev 0) +++ csw/mgar/pkg/libnet/trunk/checksums 2009-01-02 19:37:04 UTC (rev 2740) @@ -0,0 +1,2 @@ +be845c41170d72c7db524f3411b50256 download/libnet-1.1.2.1.tar.gz +7f2b40aa020216e90b6758876c9c7408 download/CSWlibnet.gspec Added: csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec =================================================================== --- csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec (rev 0) +++ csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec 2009-01-02 19:37:04 UTC (rev 2740) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 2 22:30:16 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 02 Jan 2009 21:30:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[2741] csw/mgar/pkg/libnet/trunk Message-ID: Revision: 2741 http://gar.svn.sourceforge.net/gar/?rev=2741&view=rev Author: dmichelsen Date: 2009-01-02 21:30:15 +0000 (Fri, 02 Jan 2009) Log Message: ----------- libnet: Fix gspec, compilation *is* hairy, current version incompatible with dependencies Modified Paths: -------------- csw/mgar/pkg/libnet/trunk/checksums csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec Modified: csw/mgar/pkg/libnet/trunk/checksums =================================================================== --- csw/mgar/pkg/libnet/trunk/checksums 2009-01-02 19:37:04 UTC (rev 2740) +++ csw/mgar/pkg/libnet/trunk/checksums 2009-01-02 21:30:15 UTC (rev 2741) @@ -1,2 +1,2 @@ be845c41170d72c7db524f3411b50256 download/libnet-1.1.2.1.tar.gz -7f2b40aa020216e90b6758876c9c7408 download/CSWlibnet.gspec +f88f915ffd9e70173036d42db0d3642b download/CSWlibnet.gspec Modified: csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec =================================================================== --- csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec 2009-01-02 19:37:04 UTC (rev 2740) +++ csw/mgar/pkg/libnet/trunk/files/CSWlibnet.gspec 2009-01-02 21:30:15 UTC (rev 2741) @@ -1,4 +1,4 @@ -%var bitname package -%var pkgname CSWpackage +%var bitname libnet +%var pkgname CSWlibnet %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Fri Jan 2 22:44:39 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 02 Jan 2009 21:44:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[2742] csw/mgar/pkg/pidgin/trunk/Makefile Message-ID: Revision: 2742 http://gar.svn.sourceforge.net/gar/?rev=2742&view=rev Author: harpchad Date: 2009-01-02 21:44:31 +0000 (Fri, 02 Jan 2009) Log Message: ----------- Add path to dot and ncurses include Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/Makefile Modified: csw/mgar/pkg/pidgin/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-02 21:30:15 UTC (rev 2741) +++ csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-02 21:44:31 UTC (rev 2742) @@ -11,6 +11,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += x11.pc DISTFILES += $(call admfiles,CSWpidgin,prototype depend) + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += '--with-dbus-services=/opt/csw/etc/dbus-1' CONFIGURE_ARGS += '--with-tclconfig=/opt/csw/lib' @@ -20,7 +21,11 @@ CONFIGURE_ARGS += '--disable-avahi' CONFIGURE_ARGS += '--disable-nm' -#Need to include out own x11.pc file as solaris 8 doesn't have one +CONFIGURE_ENV += DOT="/opt/csw/graphviz2/bin/dot" + +EXTRA_INC += /opt/csw/include/ncurses + +#Need to include our own x11.pc file as solaris 8 doesn't have one PKG_CONFIG_PATH += $(CURDIR)/$(WORKDIR) #No tests This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Fri Jan 2 23:24:39 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 02 Jan 2009 22:24:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[2743] csw/mgar/pkg/pidgin/trunk Message-ID: Revision: 2743 http://gar.svn.sourceforge.net/gar/?rev=2743&view=rev Author: harpchad Date: 2009-01-02 22:24:39 +0000 (Fri, 02 Jan 2009) Log Message: ----------- Update prototype for 2.5.3 Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/checksums csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype Modified: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums 2009-01-02 21:44:31 UTC (rev 2742) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-01-02 22:24:39 UTC (rev 2743) @@ -1,5 +1,5 @@ 47c6ecd45b3a62c7a826f7ceb2663fb8 download/pidgin-2.5.3.tar.gz +6dd3c13c4b6f610409fd267692dbe716 download/x11.pc a7b09db0dd384035709295238a3df7f5 download/CSWpidgin.depend e3bacfec1eab2b829d4255afa4f69bee download/CSWpidgin.gspec -cecae2b58285e35fe3881e14f63b27b1 download/CSWpidgin.prototype -6dd3c13c4b6f610409fd267692dbe716 download/x11.pc +dd1cc45fce7e85a4326c5bddd306840c download/CSWpidgin.prototype Modified: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-02 21:44:31 UTC (rev 2742) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-02 22:24:39 UTC (rev 2743) @@ -1,1016 +1,1061 @@ +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/finch 0755 root bin +f none /opt/csw/bin/pidgin 0755 root bin +f none /opt/csw/bin/purple-client-example 0755 root bin +f none /opt/csw/bin/purple-remote 0755 root bin +f none /opt/csw/bin/purple-send 0755 root bin +f none /opt/csw/bin/purple-send-async 0755 root bin +f none /opt/csw/bin/purple-url-handler 0755 root bin +d none /opt/csw/etc 0755 root bin +d none /opt/csw/etc/gconf 0755 root bin +d none /opt/csw/etc/gconf/schemas 0755 root bin +f none /opt/csw/etc/gconf/schemas/purple.schemas 0644 root bin d none /opt/csw/include 0755 root bin d none /opt/csw/include/finch 0755 root bin -f none /opt/csw/include/finch/gntconv.h 0644 root bin -f none /opt/csw/include/finch/gntrequest.h 0644 root bin -f none /opt/csw/include/finch/gntlog.h 0644 root bin -f none /opt/csw/include/finch/gntstatus.h 0644 root bin -f none /opt/csw/include/finch/gntprefs.h 0644 root bin f none /opt/csw/include/finch/finch.h 0644 root bin -f none /opt/csw/include/finch/gntplugin.h 0644 root bin +f none /opt/csw/include/finch/gntaccount.h 0644 root bin f none /opt/csw/include/finch/gntblist.h 0644 root bin -f none /opt/csw/include/finch/gntsound.h 0644 root bin f none /opt/csw/include/finch/gntcertmgr.h 0644 root bin +f none /opt/csw/include/finch/gntconn.h 0644 root bin +f none /opt/csw/include/finch/gntconv.h 0644 root bin f none /opt/csw/include/finch/gntdebug.h 0644 root bin -f none /opt/csw/include/finch/gntui.h 0644 root bin -f none /opt/csw/include/finch/gntconn.h 0644 root bin f none /opt/csw/include/finch/gntft.h 0644 root bin -f none /opt/csw/include/finch/gntaccount.h 0644 root bin +f none /opt/csw/include/finch/gntidle.h 0644 root bin +f none /opt/csw/include/finch/gntlog.h 0644 root bin f none /opt/csw/include/finch/gntnotify.h 0644 root bin +f none /opt/csw/include/finch/gntplugin.h 0644 root bin f none /opt/csw/include/finch/gntpounce.h 0644 root bin +f none /opt/csw/include/finch/gntprefs.h 0644 root bin +f none /opt/csw/include/finch/gntrequest.h 0644 root bin f none /opt/csw/include/finch/gntroomlist.h 0644 root bin -f none /opt/csw/include/finch/gntidle.h 0644 root bin +f none /opt/csw/include/finch/gntsound.h 0644 root bin +f none /opt/csw/include/finch/gntstatus.h 0644 root bin +f none /opt/csw/include/finch/gntui.h 0644 root bin +d none /opt/csw/include/gnt 0755 root bin +f none /opt/csw/include/gnt/gnt.h 0644 root bin +f none /opt/csw/include/gnt/gntbindable.h 0644 root bin +f none /opt/csw/include/gnt/gntbox.h 0644 root bin +f none /opt/csw/include/gnt/gntbutton.h 0644 root bin +f none /opt/csw/include/gnt/gntcheckbox.h 0644 root bin +f none /opt/csw/include/gnt/gntclipboard.h 0644 root bin +f none /opt/csw/include/gnt/gntcolors.h 0644 root bin +f none /opt/csw/include/gnt/gntcombobox.h 0644 root bin +f none /opt/csw/include/gnt/gntentry.h 0644 root bin +f none /opt/csw/include/gnt/gntfilesel.h 0644 root bin +f none /opt/csw/include/gnt/gntkeys.h 0644 root bin +f none /opt/csw/include/gnt/gntlabel.h 0644 root bin +f none /opt/csw/include/gnt/gntline.h 0644 root bin +f none /opt/csw/include/gnt/gntmarshal.h 0644 root bin +f none /opt/csw/include/gnt/gntmenu.h 0644 root bin +f none /opt/csw/include/gnt/gntmenuitem.h 0644 root bin +f none /opt/csw/include/gnt/gntmenuitemcheck.h 0644 root bin +f none /opt/csw/include/gnt/gntslider.h 0644 root bin +f none /opt/csw/include/gnt/gntstyle.h 0644 root bin +f none /opt/csw/include/gnt/gnttextview.h 0644 root bin +f none /opt/csw/include/gnt/gnttree.h 0644 root bin +f none /opt/csw/include/gnt/gntutils.h 0644 root bin +f none /opt/csw/include/gnt/gntwidget.h 0644 root bin +f none /opt/csw/include/gnt/gntwindow.h 0644 root bin +f none /opt/csw/include/gnt/gntwm.h 0644 root bin +f none /opt/csw/include/gnt/gntws.h 0644 root bin d none /opt/csw/include/libpurple 0755 root bin -f none /opt/csw/include/libpurple/mime.h 0644 root bin -f none /opt/csw/include/libpurple/ft.h 0644 root bin -f none /opt/csw/include/libpurple/server.h 0644 root bin +f none /opt/csw/include/libpurple/account.h 0644 root bin +f none /opt/csw/include/libpurple/accountopt.h 0644 root bin +f none /opt/csw/include/libpurple/blist.h 0644 root bin +f none /opt/csw/include/libpurple/buddyicon.h 0644 root bin +f none /opt/csw/include/libpurple/certificate.h 0644 root bin +f none /opt/csw/include/libpurple/cipher.h 0644 root bin +f none /opt/csw/include/libpurple/circbuffer.h 0644 root bin +f none /opt/csw/include/libpurple/cmds.h 0644 root bin +f none /opt/csw/include/libpurple/connection.h 0644 root bin +f none /opt/csw/include/libpurple/conversation.h 0644 root bin +f none /opt/csw/include/libpurple/core.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-bindings.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-define-api.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-maybe.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-purple.h 0644 root bin f none /opt/csw/include/libpurple/dbus-server.h 0644 root bin -f none /opt/csw/include/libpurple/account.h 0644 root bin +f none /opt/csw/include/libpurple/dbus-types.h 0644 root bin f none /opt/csw/include/libpurple/dbus-useful.h 0644 root bin +f none /opt/csw/include/libpurple/debug.h 0644 root bin f none /opt/csw/include/libpurple/desktopitem.h 0644 root bin -f none /opt/csw/include/libpurple/util.h 0644 root bin -f none /opt/csw/include/libpurple/dbus-bindings.h 0644 root bin +f none /opt/csw/include/libpurple/dnsquery.h 0644 root bin +f none /opt/csw/include/libpurple/dnssrv.h 0644 root bin +f none /opt/csw/include/libpurple/eventloop.h 0644 root bin +f none /opt/csw/include/libpurple/ft.h 0644 root bin +f none /opt/csw/include/libpurple/gaim-compat.h 0644 root bin +f none /opt/csw/include/libpurple/idle.h 0644 root bin f none /opt/csw/include/libpurple/imgstore.h 0644 root bin -f none /opt/csw/include/libpurple/smiley.h 0644 root bin -f none /opt/csw/include/libpurple/buddyicon.h 0644 root bin -f none /opt/csw/include/libpurple/certificate.h 0644 root bin -f none /opt/csw/include/libpurple/dnsquery.h 0644 root bin -f none /opt/csw/include/libpurple/conversation.h 0644 root bin -f none /opt/csw/include/libpurple/pounce.h 0644 root bin -f none /opt/csw/include/libpurple/signals.h 0644 root bin -f none /opt/csw/include/libpurple/pluginpref.h 0644 root bin +f none /opt/csw/include/libpurple/log.h 0644 root bin +f none /opt/csw/include/libpurple/mime.h 0644 root bin +f none /opt/csw/include/libpurple/nat-pmp.h 0644 root bin f none /opt/csw/include/libpurple/network.h 0644 root bin f none /opt/csw/include/libpurple/notify.h 0644 root bin -f none /opt/csw/include/libpurple/core.h 0644 root bin -f none /opt/csw/include/libpurple/stun.h 0644 root bin -f none /opt/csw/include/libpurple/whiteboard.h 0644 root bin -f none /opt/csw/include/libpurple/debug.h 0644 root bin -f none /opt/csw/include/libpurple/savedstatuses.h 0644 root bin -f none /opt/csw/include/libpurple/blist.h 0644 root bin -f none /opt/csw/include/libpurple/prpl.h 0644 root bin -f none /opt/csw/include/libpurple/status.h 0644 root bin f none /opt/csw/include/libpurple/ntlm.h 0644 root bin -f none /opt/csw/include/libpurple/nat-pmp.h 0644 root bin -f none /opt/csw/include/libpurple/sound.h 0644 root bin -f none /opt/csw/include/libpurple/sslconn.h 0644 root bin +f none /opt/csw/include/libpurple/plugin.h 0644 root bin +f none /opt/csw/include/libpurple/pluginpref.h 0644 root bin +f none /opt/csw/include/libpurple/pounce.h 0644 root bin +f none /opt/csw/include/libpurple/prefs.h 0644 root bin f none /opt/csw/include/libpurple/privacy.h 0644 root bin -f none /opt/csw/include/libpurple/dbus-types.h 0644 root bin -f none /opt/csw/include/libpurple/connection.h 0644 root bin +f none /opt/csw/include/libpurple/proxy.h 0644 root bin +f none /opt/csw/include/libpurple/prpl.h 0644 root bin f none /opt/csw/include/libpurple/purple.h 0644 root bin -f none /opt/csw/include/libpurple/dbus-purple.h 0644 root bin -f none /opt/csw/include/libpurple/cmds.h 0644 root bin -f none /opt/csw/include/libpurple/accountopt.h 0644 root bin -f none /opt/csw/include/libpurple/gaim-compat.h 0644 root bin -f none /opt/csw/include/libpurple/proxy.h 0644 root bin -f none /opt/csw/include/libpurple/version.h 0644 root bin -f none /opt/csw/include/libpurple/dnssrv.h 0644 root bin -f none /opt/csw/include/libpurple/cipher.h 0644 root bin -f none /opt/csw/include/libpurple/value.h 0644 root bin -f none /opt/csw/include/libpurple/plugin.h 0644 root bin f none /opt/csw/include/libpurple/request.h 0644 root bin -f none /opt/csw/include/libpurple/prefs.h 0644 root bin -f none /opt/csw/include/libpurple/idle.h 0644 root bin +f none /opt/csw/include/libpurple/roomlist.h 0644 root bin +f none /opt/csw/include/libpurple/savedstatuses.h 0644 root bin +f none /opt/csw/include/libpurple/server.h 0644 root bin +f none /opt/csw/include/libpurple/signals.h 0644 root bin +f none /opt/csw/include/libpurple/smiley.h 0644 root bin +f none /opt/csw/include/libpurple/sound.h 0644 root bin +f none /opt/csw/include/libpurple/sslconn.h 0644 root bin +f none /opt/csw/include/libpurple/status.h 0644 root bin +f none /opt/csw/include/libpurple/stringref.h 0644 root bin +f none /opt/csw/include/libpurple/stun.h 0644 root bin f none /opt/csw/include/libpurple/upnp.h 0644 root bin -f none /opt/csw/include/libpurple/dbus-define-api.h 0644 root bin -f none /opt/csw/include/libpurple/eventloop.h 0644 root bin -f none /opt/csw/include/libpurple/circbuffer.h 0644 root bin -f none /opt/csw/include/libpurple/log.h 0644 root bin -f none /opt/csw/include/libpurple/stringref.h 0644 root bin +f none /opt/csw/include/libpurple/util.h 0644 root bin +f none /opt/csw/include/libpurple/value.h 0644 root bin +f none /opt/csw/include/libpurple/version.h 0644 root bin +f none /opt/csw/include/libpurple/whiteboard.h 0644 root bin f none /opt/csw/include/libpurple/xmlnode.h 0644 root bin -f none /opt/csw/include/libpurple/dbus-maybe.h 0644 root bin -f none /opt/csw/include/libpurple/roomlist.h 0644 root bin d none /opt/csw/include/pidgin 0755 root bin -f none /opt/csw/include/pidgin/gtkstatusbox.h 0644 root bin +f none /opt/csw/include/pidgin/eggtrayicon.h 0644 root bin +f none /opt/csw/include/pidgin/gtkaccount.h 0644 root bin +f none /opt/csw/include/pidgin/gtkblist.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcelllayout.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellrendererexpander.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellrendererprogress.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellview.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcellviewmenuitem.h 0644 root bin +f none /opt/csw/include/pidgin/gtkcertmgr.h 0644 root bin f none /opt/csw/include/pidgin/gtkconn.h 0644 root bin -f none /opt/csw/include/pidgin/gtkscrollbook.h 0644 root bin -f none /opt/csw/include/pidgin/gtkcelllayout.h 0644 root bin -f none /opt/csw/include/pidgin/gtkaccount.h 0644 root bin +f none /opt/csw/include/pidgin/gtkconv.h 0644 root bin f none /opt/csw/include/pidgin/gtkconvwin.h 0644 root bin -f none /opt/csw/include/pidgin/gtkimhtmltoolbar.h 0644 root bin -f none /opt/csw/include/pidgin/gtkpounce.h 0644 root bin -f none /opt/csw/include/pidgin/gtkthemes.h 0644 root bin -f none /opt/csw/include/pidgin/gtkutils.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdebug.h 0644 root bin f none /opt/csw/include/pidgin/gtkdialogs.h 0644 root bin -f none /opt/csw/include/pidgin/gtknotify.h 0644 root bin -f none /opt/csw/include/pidgin/gtkprefs.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdnd-hints.h 0644 root bin +f none /opt/csw/include/pidgin/gtkdocklet.h 0644 root bin +f none /opt/csw/include/pidgin/gtkeventloop.h 0644 root bin +f none /opt/csw/include/pidgin/gtkexpander.h 0644 root bin +f none /opt/csw/include/pidgin/gtkft.h 0644 root bin +f none /opt/csw/include/pidgin/gtkgaim-compat.h 0644 root bin +f none /opt/csw/include/pidgin/gtkidle.h 0644 root bin f none /opt/csw/include/pidgin/gtkimhtml.h 0644 root bin -f none /opt/csw/include/pidgin/minidialog.h 0644 root bin -f none /opt/csw/include/pidgin/gtkidle.h 0644 root bin -f none /opt/csw/include/pidgin/gtksmiley.h 0644 root bin -f none /opt/csw/include/pidgin/gtkcertmgr.h 0644 root bin -f none /opt/csw/include/pidgin/pidgin.h 0644 root bin -f none /opt/csw/include/pidgin/gtkgaim-compat.h 0644 root bin +f none /opt/csw/include/pidgin/gtkimhtmltoolbar.h 0644 root bin +f none /opt/csw/include/pidgin/gtklog.h 0644 root bin f none /opt/csw/include/pidgin/gtkmenutray.h 0644 root bin -f none /opt/csw/include/pidgin/gtksourceiter.h 0644 root bin -f none /opt/csw/include/pidgin/gtkblist.h 0644 root bin -f none /opt/csw/include/pidgin/gtkcellview.h 0644 root bin -f none /opt/csw/include/pidgin/gtksound.h 0644 root bin -f none /opt/csw/include/pidgin/gtkeventloop.h 0644 root bin -f none /opt/csw/include/pidgin/gtkexpander.h 0644 root bin -f none /opt/csw/include/pidgin/gtkdebug.h 0644 root bin -f none /opt/csw/include/pidgin/gtkroomlist.h 0644 root bin -f none /opt/csw/include/pidgin/gtksession.h 0644 root bin -f none /opt/csw/include/pidgin/gtkpluginpref.h 0644 root bin -f none /opt/csw/include/pidgin/gtksourceview-marshal.h 0644 root bin -f none /opt/csw/include/pidgin/gtkcellrendererexpander.h 0644 root bin -f none /opt/csw/include/pidgin/gtkwhiteboard.h 0644 root bin f none /opt/csw/include/pidgin/gtknickcolors.h 0644 root bin +f none /opt/csw/include/pidgin/gtknotify.h 0644 root bin f none /opt/csw/include/pidgin/gtkplugin.h 0644 root bin -f none /opt/csw/include/pidgin/pidgintooltip.h 0644 root bin -f none /opt/csw/include/pidgin/gtkconv.h 0644 root bin +f none /opt/csw/include/pidgin/gtkpluginpref.h 0644 root bin +f none /opt/csw/include/pidgin/gtkpounce.h 0644 root bin +f none /opt/csw/include/pidgin/gtkprefs.h 0644 root bin f none /opt/csw/include/pidgin/gtkprivacy.h 0644 root bin -f none /opt/csw/include/pidgin/gtkcellviewmenuitem.h 0644 root bin -f none /opt/csw/include/pidgin/gtkft.h 0644 root bin -f none /opt/csw/include/pidgin/gtksourceundomanager.h 0644 root bin -f none /opt/csw/include/pidgin/gtkcellrendererprogress.h 0644 root bin -f none /opt/csw/include/pidgin/gtklog.h 0644 root bin f none /opt/csw/include/pidgin/gtkrequest.h 0644 root bin -f none /opt/csw/include/pidgin/gtkdocklet.h 0644 root bin -f none /opt/csw/include/pidgin/pidginstock.h 0644 root bin +f none /opt/csw/include/pidgin/gtkroomlist.h 0644 root bin f none /opt/csw/include/pidgin/gtksavedstatuses.h 0644 root bin -f none /opt/csw/include/pidgin/gtkdnd-hints.h 0644 root bin +f none /opt/csw/include/pidgin/gtkscrollbook.h 0644 root bin +f none /opt/csw/include/pidgin/gtksession.h 0644 root bin +f none /opt/csw/include/pidgin/gtksmiley.h 0644 root bin +f none /opt/csw/include/pidgin/gtksound.h 0644 root bin +f none /opt/csw/include/pidgin/gtksourceiter.h 0644 root bin +f none /opt/csw/include/pidgin/gtksourceundomanager.h 0644 root bin +f none /opt/csw/include/pidgin/gtksourceview-marshal.h 0644 root bin +f none /opt/csw/include/pidgin/gtkstatusbox.h 0644 root bin +f none /opt/csw/include/pidgin/gtkthemes.h 0644 root bin +f none /opt/csw/include/pidgin/gtkutils.h 0644 root bin +f none /opt/csw/include/pidgin/gtkwhiteboard.h 0644 root bin +f none /opt/csw/include/pidgin/minidialog.h 0644 root bin +f none /opt/csw/include/pidgin/pidgin.h 0644 root bin f none /opt/csw/include/pidgin/pidgincombobox.h 0644 root bin -f none /opt/csw/include/pidgin/eggtrayicon.h 0644 root bin -d none /opt/csw/include/gnt 0755 root bin -f none /opt/csw/include/gnt/gntbindable.h 0644 root bin -f none /opt/csw/include/gnt/gntcheckbox.h 0644 root bin -f none /opt/csw/include/gnt/gntcombobox.h 0644 root bin -f none /opt/csw/include/gnt/gntentry.h 0644 root bin -f none /opt/csw/include/gnt/gnttree.h 0644 root bin -f none /opt/csw/include/gnt/gntwm.h 0644 root bin -f none /opt/csw/include/gnt/gntws.h 0644 root bin -f none /opt/csw/include/gnt/gnttextview.h 0644 root bin -f none /opt/csw/include/gnt/gntmarshal.h 0644 root bin -f none /opt/csw/include/gnt/gntfilesel.h 0644 root bin -f none /opt/csw/include/gnt/gntwidget.h 0644 root bin -f none /opt/csw/include/gnt/gntmenu.h 0644 root bin -f none /opt/csw/include/gnt/gntline.h 0644 root bin -f none /opt/csw/include/gnt/gntstyle.h 0644 root bin -f none /opt/csw/include/gnt/gntcolors.h 0644 root bin -f none /opt/csw/include/gnt/gntslider.h 0644 root bin -f none /opt/csw/include/gnt/gntmenuitemcheck.h 0644 root bin -f none /opt/csw/include/gnt/gntbox.h 0644 root bin -f none /opt/csw/include/gnt/gntutils.h 0644 root bin -f none /opt/csw/include/gnt/gntkeys.h 0644 root bin -f none /opt/csw/include/gnt/gntclipboard.h 0644 root bin -f none /opt/csw/include/gnt/gnt.h 0644 root bin -f none /opt/csw/include/gnt/gntbutton.h 0644 root bin -f none /opt/csw/include/gnt/gntlabel.h 0644 root bin -f none /opt/csw/include/gnt/gntwindow.h 0644 root bin -f none /opt/csw/include/gnt/gntmenuitem.h 0644 root bin +f none /opt/csw/include/pidgin/pidginstock.h 0644 root bin +f none /opt/csw/include/pidgin/pidgintooltip.h 0644 root bin +d none /opt/csw/lib 0755 root bin +d none /opt/csw/lib/finch 0755 root bin +f none /opt/csw/lib/finch/gntclipboard.so 0755 root bin +f none /opt/csw/lib/finch/gntgf.so 0755 root bin +f none /opt/csw/lib/finch/gnthistory.so 0755 root bin +f none /opt/csw/lib/finch/gntlastlog.so 0755 root bin +f none /opt/csw/lib/finch/grouping.so 0755 root bin +d none /opt/csw/lib/gnt 0755 root bin +f none /opt/csw/lib/gnt/irssi.so 0755 root bin +f none /opt/csw/lib/gnt/s.so 0755 root bin +f none /opt/csw/lib/libgnt.so.0.0.0 0755 root bin +s none /opt/csw/lib/libgnt.so.0=libgnt.so.0.0.0 +s none /opt/csw/lib/libgnt.so=libgnt.so.0.0.0 +f none /opt/csw/lib/libpurple-client.so.0.5.3 0755 root bin +s none /opt/csw/lib/libpurple-client.so.0=libpurple-client.so.0.5.3 +s none /opt/csw/lib/libpurple-client.so=libpurple-client.so.0.5.3 +f none /opt/csw/lib/libpurple.so.0.5.3 0755 root bin +s none /opt/csw/lib/libpurple.so.0=libpurple.so.0.5.3 +s none /opt/csw/lib/libpurple.so=libpurple.so.0.5.3 +d none /opt/csw/lib/perl 0755 root bin +d none /opt/csw/lib/perl/csw 0755 root bin +f none /opt/csw/lib/perl/csw/Pidgin.pm 0644 root bin +f none /opt/csw/lib/perl/csw/Purple.pm 0644 root bin +d none /opt/csw/lib/perl/csw/auto 0755 root bin +d none /opt/csw/lib/perl/csw/auto/Pidgin 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Pidgin/.packlist 0644 root bin +f none /opt/csw/lib/perl/csw/auto/Pidgin/Pidgin.bs 0644 root bin +f none /opt/csw/lib/perl/csw/auto/Pidgin/Pidgin.so 0755 root bin +d none /opt/csw/lib/perl/csw/auto/Purple 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/.packlist 0644 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/Purple.bs 0644 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/Purple.so 0755 root bin +f none /opt/csw/lib/perl/csw/auto/Purple/autosplit.ix 0644 root bin +d none /opt/csw/lib/pidgin 0755 root bin +f none /opt/csw/lib/pidgin/convcolors.so 0755 root bin +f none /opt/csw/lib/pidgin/extplacement.so 0755 root bin +f none /opt/csw/lib/pidgin/gestures.so 0755 root bin +f none /opt/csw/lib/pidgin/gtkbuddynote.so 0755 root bin +f none /opt/csw/lib/pidgin/history.so 0755 root bin +f none /opt/csw/lib/pidgin/iconaway.so 0755 root bin +f none /opt/csw/lib/pidgin/markerline.so 0755 root bin +f none /opt/csw/lib/pidgin/musicmessaging.so 0755 root bin +f none /opt/csw/lib/pidgin/notify.so 0755 root bin +f none /opt/csw/lib/pidgin/pidginrc.so 0755 root bin +f none /opt/csw/lib/pidgin/relnot.so 0755 root bin +f none /opt/csw/lib/pidgin/sendbutton.so 0755 root bin +f none /opt/csw/lib/pidgin/spellchk.so 0755 root bin +f none /opt/csw/lib/pidgin/ticker.so 0755 root bin +f none /opt/csw/lib/pidgin/timestamp.so 0755 root bin +f none /opt/csw/lib/pidgin/timestamp_format.so 0755 root bin +f none /opt/csw/lib/pidgin/xmppconsole.so 0755 root bin +d none /opt/csw/lib/pkgconfig 0755 root bin +f none /opt/csw/lib/pkgconfig/finch.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/gnt.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/pidgin.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/purple.pc 0644 root bin +d none /opt/csw/lib/purple-2 0755 root bin +f none /opt/csw/lib/purple-2/autoaccept.so 0755 root bin +f none /opt/csw/lib/purple-2/buddynote.so 0755 root bin +f none /opt/csw/lib/purple-2/dbus-example.so 0755 root bin +f none /opt/csw/lib/purple-2/idle.so 0755 root bin +f none /opt/csw/lib/purple-2/joinpart.so 0755 root bin +f none /opt/csw/lib/purple-2/libaim.so 0755 root bin +f none /opt/csw/lib/purple-2/libgg.so 0755 root bin +f none /opt/csw/lib/purple-2/libicq.so 0755 root bin +f none /opt/csw/lib/purple-2/libirc.so 0755 root bin +f none /opt/csw/lib/purple-2/libjabber.so.0.0.0 0755 root bin +s none /opt/csw/lib/purple-2/libjabber.so.0=libjabber.so.0.0.0 +s none /opt/csw/lib/purple-2/libjabber.so=libjabber.so.0.0.0 +f none /opt/csw/lib/purple-2/libmsn.so 0755 root bin +f none /opt/csw/lib/purple-2/libmyspace.so 0755 root bin +f none /opt/csw/lib/purple-2/libnovell.so 0755 root bin +f none /opt/csw/lib/purple-2/liboscar.so.0.0.0 0755 root bin +s none /opt/csw/lib/purple-2/liboscar.so.0=liboscar.so.0.0.0 +s none /opt/csw/lib/purple-2/liboscar.so=liboscar.so.0.0.0 +f none /opt/csw/lib/purple-2/libqq.so 0755 root bin +f none /opt/csw/lib/purple-2/libsametime.so 0755 root bin +f none /opt/csw/lib/purple-2/libsilcpurple.so 0755 root bin +f none /opt/csw/lib/purple-2/libsimple.so 0755 root bin +f none /opt/csw/lib/purple-2/libxmpp.so 0755 root bin +f none /opt/csw/lib/purple-2/libyahoo.so 0755 root bin +f none /opt/csw/lib/purple-2/libzephyr.so 0755 root bin +f none /opt/csw/lib/purple-2/log_reader.so 0755 root bin +f none /opt/csw/lib/purple-2/newline.so 0755 root bin +f none /opt/csw/lib/purple-2/offlinemsg.so 0755 root bin +f none /opt/csw/lib/purple-2/perl.so 0755 root bin +f none /opt/csw/lib/purple-2/psychic.so 0755 root bin +f none /opt/csw/lib/purple-2/ssl-gnutls.so 0755 root bin +f none /opt/csw/lib/purple-2/ssl.so 0755 root bin +f none /opt/csw/lib/purple-2/statenotify.so 0755 root bin +f none /opt/csw/lib/purple-2/tcl.so 0755 root bin d none /opt/csw/share 0755 root bin +d none /opt/csw/share/aclocal 0755 root bin +f none /opt/csw/share/aclocal/purple.m4 0644 root bin +d none /opt/csw/share/applications 0755 root bin +f none /opt/csw/share/applications/pidgin.desktop 0644 root bin d none /opt/csw/share/icons 0755 root bin d none /opt/csw/share/icons/hicolor 0755 root bin -d none /opt/csw/share/icons/hicolor/48x48 0755 root bin -d none /opt/csw/share/icons/hicolor/48x48/apps 0755 root bin -f none /opt/csw/share/icons/hicolor/48x48/apps/pidgin.png 0644 root bin +d none /opt/csw/share/icons/hicolor/16x16 0755 root bin +d none /opt/csw/share/icons/hicolor/16x16/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/16x16/apps/pidgin.png 0644 root bin +d none /opt/csw/share/icons/hicolor/22x22 0755 root bin +d none /opt/csw/share/icons/hicolor/22x22/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/22x22/apps/pidgin.png 0644 root bin d none /opt/csw/share/icons/hicolor/24x24 0755 root bin d none /opt/csw/share/icons/hicolor/24x24/apps 0755 root bin f none /opt/csw/share/icons/hicolor/24x24/apps/pidgin.png 0644 root bin d none /opt/csw/share/icons/hicolor/32x32 0755 root bin d none /opt/csw/share/icons/hicolor/32x32/apps 0755 root bin f none /opt/csw/share/icons/hicolor/32x32/apps/pidgin.png 0644 root bin -d none /opt/csw/share/icons/hicolor/22x22 0755 root bin -d none /opt/csw/share/icons/hicolor/22x22/apps 0755 root bin -f none /opt/csw/share/icons/hicolor/22x22/apps/pidgin.png 0644 root bin -d none /opt/csw/share/icons/hicolor/16x16 0755 root bin -d none /opt/csw/share/icons/hicolor/16x16/apps 0755 root bin -f none /opt/csw/share/icons/hicolor/16x16/apps/pidgin.png 0644 root bin -d none /opt/csw/share/sounds 0755 root bin -d none /opt/csw/share/sounds/purple 0755 root bin -f none /opt/csw/share/sounds/purple/receive.wav 0644 root bin -f none /opt/csw/share/sounds/purple/send.wav 0644 root bin -f none /opt/csw/share/sounds/purple/login.wav 0644 root bin -f none /opt/csw/share/sounds/purple/logout.wav 0644 root bin -f none /opt/csw/share/sounds/purple/alert.wav 0644 root bin -d none /opt/csw/share/aclocal 0755 root bin -f none /opt/csw/share/aclocal/purple.m4 0644 root bin -d none /opt/csw/share/purple 0755 root bin -d none /opt/csw/share/purple/ca-certs 0755 root bin -f none /opt/csw/share/purple/ca-certs/Microsoft_Secure_Server_Authority.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/Verisign_Class3_Primary_CA.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/Verisign_RSA_Secure_Server_CA.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/CAcert_Class3.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/Equifax_Secure_CA.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/StartCom_Free_SSL_CA.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/CAcert_Root.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/GTE_CyberTrust_Global_Root.pem 0644 root bin -d none /opt/csw/share/applications 0755 root bin -f none /opt/csw/share/applications/pidgin.desktop 0644 root bin +d none /opt/csw/share/icons/hicolor/48x48 0755 root bin +d none /opt/csw/share/icons/hicolor/48x48/apps 0755 root bin +f none /opt/csw/share/icons/hicolor/48x48/apps/pidgin.png 0644 root bin +d none /opt/csw/share/locale 0755 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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/en_AU 0755 root bin +d none /opt/csw/share/locale/en_AU/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/en_AU/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/lo 0755 root bin +d none /opt/csw/share/locale/lo/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/lo/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/my_MM 0755 root bin +d none /opt/csw/share/locale/my_MM/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/my_MM/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin +d none /opt/csw/share/locale/ur 0755 root bin +d none /opt/csw/share/locale/ur/LC_MESSAGES 0755 root bin +f none /opt/csw/share/locale/ur/LC_MESSAGES/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.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/pidgin.mo 0644 root bin d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/finch.1 0644 root bin +f none /opt/csw/share/man/man1/pidgin.1 0644 root bin d none /opt/csw/share/man/man3 0755 root bin f none /opt/csw/share/man/man3/Pidgin.3perl 0644 root bin f none /opt/csw/share/man/man3/Purple.3perl 0644 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/pidgin.1 0644 root bin -f none /opt/csw/share/man/man1/finch.1 0644 root bin +d none /opt/csw/share/perl 0755 root bin +d none /opt/csw/share/perl/csw 0755 root bin d none /opt/csw/share/pixmaps 0755 root bin d none /opt/csw/share/pixmaps/pidgin 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/animations 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/animations/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect0.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect3.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect4.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect5.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect6.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect7.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/connect8.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working0.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working10.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working11.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working12.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working13.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working14.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working15.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working16.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working17.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working18.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working19.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working20.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working21.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working22.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working23.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working24.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working25.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working26.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working27.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working28.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working29.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working3.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working30.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working4.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working5.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working6.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working7.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working8.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working9.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing0.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing3.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing4.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/animations/16/typing5.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-down.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-left.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-right.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/arrow-up.xpm 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/buttons 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/edit.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/info.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/music.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/buttons/pause.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/dialogs 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/dialogs/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/auth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/error.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/info.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/mail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/16/question.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/dialogs/64 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/auth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/cool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/dialog.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/error.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/info.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/mail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/question.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/dialogs/64/warning.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/emblems 0755 root bin +d none /opt/csw/share/pixmaps/pidgin/emblems/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/aol-client.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/birthday.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/blocked.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/bot.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/external.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/female.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/founder.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/free-for-chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/game.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/half-operator.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/hiptop.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/male.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/mobile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/music.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/not-authorized.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/operator.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/qq-member.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/secure.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/unavailable.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/video.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emblems/16/voice.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/emotes 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/emotes/none 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/none/theme 0644 root bin d none /opt/csw/share/pixmaps/pidgin/emotes/default 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/kiss.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/jump.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cow.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/female-fighter.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/dazed.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/stop.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/doctor.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/theme 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/mobile.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/weep.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/act-up.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/airplane.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/alien.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/angel.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/angry.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/arrogant.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/at-wits-end.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bad.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bashful.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/beat-up.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/beauty.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/beer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/blowkiss.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bomb.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bowl.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/boy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/brb.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bulgy-eyes.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bunny.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/bye.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cake.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/call-me.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/camera.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/can.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/car.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/cat.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/laugh.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/yin-yang.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/music.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/hammer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/chicken.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cigarette.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clap.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/clock.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/rose-dead.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/kissing.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cloudy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clover.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/clown.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/coffee.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/coins.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/computer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/confused.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/console.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cow.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cowboy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/crying.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/curl-lip.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/curse.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/doh.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/plate.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/call-me.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/watermelon.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cowboy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cute.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/cyclops.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dance.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dazed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/desire.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/devil.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/nailbiting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/vampire.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/shout.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/time-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/starving.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/hug-right.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sweat.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sad.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/boy.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/disappointed.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/terror.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/island.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/glasses-nerdy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/coffee.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/blowkiss.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cigarette.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/search.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/hypnotized.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/male-fighter2.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/talktohand.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/airplane.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/smirk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/disdain.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/doctor.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dog.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/doh.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/dont-know.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/drink.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/drool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/eat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/embarrassed.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/excruciating.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/brb.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/dont-know.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/at-wits-end.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/teeth.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/hug-left.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/clap.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cloudy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/liquor.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/car.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/dog.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/soccerball.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/love-over.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/star.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cute.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bulgy-eyes.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/disdain.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sidefrown.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/girl.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/can.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sheep.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn_online.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/angry.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/snicker.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/shock.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/in-love.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/victory.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/skeleton.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/yawn.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bowl.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/thinking.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/eyeroll.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/female-fighter.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/film.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/lashes.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/struggle.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sarcastic.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/silly.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/smile-big.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/handcuffs.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/act-up.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sleepy.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/fingers-crossed.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/alien.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/tremble.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/thunder.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/drink.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/lamp.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/pirate.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/desire.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/flag.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/rotfl.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/on-the-phone.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/wink.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/foot-in-mouth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/freaked-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/ghost.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/giggle.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/poop.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/girl.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/glasses-cool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/glasses-nerdy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/go-away.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/goat.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/pig.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/foot-in-mouth.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/coins.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/moon.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/good.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hammer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/handcuffs.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/handshake.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/highfive.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hug-left.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hug-right.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/hypnotized.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/in-love.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/island.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/jump.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/kiss.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/kissed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/kissing.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/knife.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sun.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/beer.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/rain.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/smile.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/dance.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/eyeroll.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/question.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/soldier.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cake.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/snail.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/crying.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/kissed.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/waving.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sick.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/go-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bad.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/handshake.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/moneymouth.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/angel.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/phone.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/rainbow.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/cyclops.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/lamp.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/lashes.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/laugh.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/liquor.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/loser.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/love-over.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/love.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/lying.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mad-tongue.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/mail.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/shut-mouth.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/lying.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/male-fighter1.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/male-fighter2.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mean.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/meeting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/chicken.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/mean.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/waiting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/umbrella.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/tv.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/messed.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mobile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/mohawk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/moneymouth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/monkey.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/moon.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn-busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn_online.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/music.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/musical-note.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/nailbiting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/neutral.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/on-the-phone.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/party.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/peace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/phone.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pig.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pill.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pirate.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pissed-off.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pizza.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/plate.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/poop.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/pray.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/present.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/pumpkin.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/wilt.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/freaked-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/peace.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/tongue.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bashful.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bye.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/musical-note.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/snowman.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/qq.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/sinister.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/question.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/quiet.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rain.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rainbow.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rose-dead.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rose.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/rotfl.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sad.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sarcastic.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/search.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/secret.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/worship.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/arrogant.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/pray.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/confused.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/rose.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/quiet.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/monkey.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/male-fighter1.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bomb.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/drool.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/beauty.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn-busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/present.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/good.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/curl-lip.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/eat.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/clown.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/turtle.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/camera.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/shame.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/computer.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/messed.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/pizza.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/neutral.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/glasses-cool.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/pissed-off.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/highfive.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/party.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/beat-up.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/clover.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/console.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/mohawk.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/embarrassed.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/ghost.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/bunny.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/love.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sheep.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shock.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shout.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/shut-mouth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sick.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sidefrown.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/silly.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sinister.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/skeleton.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/emotes/default/skywalker.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/mad-tongue.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/pill.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emotes/default/msn-away.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/tray 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/48 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-connecting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-online.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-new-im.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/48/tray-extended-away.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/32 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-connecting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-new-im.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-online.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-away.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/22 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-new-im.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-message.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-connecting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/22/tray-online.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/16 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-online.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/connecting_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/busy_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/away_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-new-im.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/available_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-connecting.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-message.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/invisible_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/offline_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/extended-away_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/message_4bit.ico 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/animations 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/animations/16 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/typing5.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect5.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect2.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/typing2.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working20.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working4.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working3.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working27.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working29.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working12.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working15.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect3.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working30.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/typing3.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/typing4.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect4.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working14.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working13.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working28.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working2.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working26.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working21.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working5.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working10.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working17.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working19.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working8.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working22.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working6.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working1.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working25.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect7.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect0.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/typing0.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working0.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working24.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working23.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working7.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working9.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working18.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working16.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/process-working11.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect8.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect1.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/typing1.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/animations/16/connect6.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/arrow-left.xpm 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/arrow-down.xpm 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/arrow-right.xpm 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sleepy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/smile-big.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/smile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/smirk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/snail.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/snicker.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/snowman.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/soccerball.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/soldier.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/star.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/starving.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/stop.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/struggle.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sun.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/sweat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/talktohand.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/teeth.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/terror.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/theme 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/thinking.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/thunder.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/time-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/tongue.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/tremble.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/turtle.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/tv.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/umbrella.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/vampire.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/victory.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/waiting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/watermelon.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/waving.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/weep.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/wilt.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/wink.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/worship.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/yawn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/default/yin-yang.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/emotes/none 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/none/theme 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/emotes/small 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/angel.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/angry.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/beer.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/camera.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/cigarette.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/coffee.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/confused.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/console.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/cool.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/cross.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/crying.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/devil.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/dont-know.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/grin.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/hug-left.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/hug-right.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/kiss.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/love.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/meeting.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/musical-note.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/nerdy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/neutral.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/party.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/phone.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/plate.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/question.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/sad.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/shame.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/shock.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/sick.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/silent.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/sleepy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/smile-big.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/smile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/theme 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/thinking.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/tongue.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/tv.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/uhm-yeah.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/wink.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/emotes/small/yawn.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/logo.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/protocols 0755 root bin d none /opt/csw/share/pixmaps/pidgin/protocols/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/aim.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/bonjour.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/gadu-gadu.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/google-talk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/icq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/jabber.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/meanwhile.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/msn.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/16/myspace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/novell.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/16/qq.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/bonjour.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/novell.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/yahoo.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/aim.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/16/silc.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/google-talk.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/16/simple.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/meanwhile.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/jabber.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/gadu-gadu.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/16/yahoo.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/16/zephyr.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/msn.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/icq.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/protocols/22 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/novell.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/aim.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/bonjour.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/gadu-gadu.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/google-talk.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/icq.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/22/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/jabber.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/meanwhile.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/22/msn.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/yahoo.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/myspace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/novell.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/22/qq.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/gadu-gadu.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/icq.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/aim.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/meanwhile.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/google-talk.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/22/silc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/simple.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/22/yahoo.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/22/zephyr.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/bonjour.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/simple.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/myspace.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/22/jabber.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/protocols/48 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/aim.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/bonjour.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/gadu-gadu.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/icq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/irc.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/jabber.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/meanwhile.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/48/msn.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/irc.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/yahoo.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/myspace.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/novell.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/qq.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/48/silc.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/48/simple.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/icq.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/meanwhile.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/jabber.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/gadu-gadu.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/qq.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/protocols/48/yahoo.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/protocols/48/zephyr.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/aim.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/myspace.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/novell.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/bonjour.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/emblems 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/emblems/16 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/hiptop.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/game.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/aol-client.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/qq-member.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/external.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/voice.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/video.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/birthday.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/female.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/bot.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/founder.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/music.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/operator.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/half-operator.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/male.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/not-authorized.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/unavailable.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/mobile.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/blocked.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/secure.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/emblems/16/free-for-chat.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/status 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/status/16 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/status/16/rtl 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/log-in.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/person.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/chat.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/available.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/16/log-in.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/status/11 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/status/11/invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/11/offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/11/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/11/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/available.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/11/away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/11/available.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/11/busy.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/11/chat.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/11/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/offline.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/11/person.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/status/11/rtl 0755 root bin f none /opt/csw/share/pixmaps/pidgin/status/11/rtl/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/rtl/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/11/rtl/log-out.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/16 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/available.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/busy.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/offline.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/person.png 0644 root bin +d none /opt/csw/share/pixmaps/pidgin/status/16/rtl 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/16/rtl/log-out.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/status/22 0755 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/available.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/22/away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/busy.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/22/chat.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/extended-away.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/invisible.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/log-in.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/log-out.png 0644 root bin +f none /opt/csw/share/pixmaps/pidgin/status/22/offline.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/22/person.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/busy.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/invisible.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/status/22/rtl 0755 root bin f none /opt/csw/share/pixmaps/pidgin/status/22/rtl/extended-away.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/22/rtl/log-in.png 0644 root bin f none /opt/csw/share/pixmaps/pidgin/status/22/rtl/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/log-in.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/22/available.png 0644 root bin d none /opt/csw/share/pixmaps/pidgin/status/32 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/status/32/rtl 0755 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/rtl/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/rtl/extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/rtl/log-in.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/invisible.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/person.png 0644 root bin @@ Diff output truncated at 100000 characters. @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Fri Jan 2 23:29:57 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 02 Jan 2009 22:29:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[2744] csw/mgar/pkg/pidgin/trunk Message-ID: Revision: 2744 http://gar.svn.sourceforge.net/gar/?rev=2744&view=rev Author: harpchad Date: 2009-01-02 22:29:57 +0000 (Fri, 02 Jan 2009) Log Message: ----------- Add CSWgpgerr as a dependency Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/checksums csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend Modified: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums 2009-01-02 22:24:39 UTC (rev 2743) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-01-02 22:29:57 UTC (rev 2744) @@ -1,5 +1,5 @@ 47c6ecd45b3a62c7a826f7ceb2663fb8 download/pidgin-2.5.3.tar.gz 6dd3c13c4b6f610409fd267692dbe716 download/x11.pc -a7b09db0dd384035709295238a3df7f5 download/CSWpidgin.depend +75d0097a23fe4aa80f6d1a0a77312be5 download/CSWpidgin.depend e3bacfec1eab2b829d4255afa4f69bee download/CSWpidgin.gspec dd1cc45fce7e85a4326c5bddd306840c download/CSWpidgin.prototype Modified: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-02 22:24:39 UTC (rev 2743) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-02 22:29:57 UTC (rev 2744) @@ -28,3 +28,4 @@ P CSWtcl P CSWtk P CSWzlib +P CSWgpgerr This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sun Jan 4 18:26:13 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sun, 04 Jan 2009 17:26:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2745] csw/mgar/pkg/xmlto/trunk/Makefile Message-ID: Revision: 2745 http://gar.svn.sourceforge.net/gar/?rev=2745&view=rev Author: bdwalton Date: 2009-01-04 17:26:13 +0000 (Sun, 04 Jan 2009) Log Message: ----------- corrected REQUIRED_PKGS lines...must have mental block here. Modified Paths: -------------- csw/mgar/pkg/xmlto/trunk/Makefile Modified: csw/mgar/pkg/xmlto/trunk/Makefile =================================================================== --- csw/mgar/pkg/xmlto/trunk/Makefile 2009-01-02 22:29:57 UTC (rev 2744) +++ csw/mgar/pkg/xmlto/trunk/Makefile 2009-01-04 17:26:13 UTC (rev 2745) @@ -5,8 +5,8 @@ PREREQUISITE_PKGS = CSWmktemp CSWfindutils CSWdocbookxsl CSWlibxslt PREREQUISITE_PKGS = CSWflex CSWggetopt CSWgnulinks -REQUIRES_PKGS = CSWsgmlcommon CSWxmlcommon CSWlibxml2 CSWdocbookdtds -REQUIRES_PKGS += CSWdocbookxsl CSWlibxslt CSWflex CSWw3m +REQUIRED_PKGS = CSWsgmlcommon CSWxmlcommon CSWlibxml2 CSWdocbookdtds +REQUIRED_PKGS += CSWdocbookxsl CSWlibxslt CSWflex CSWw3m DESCRIPTION = An XSL toolchain front end. define BLURB This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Tue Jan 6 03:44:03 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Tue, 06 Jan 2009 02:44:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[2746] csw/mgar/pkg/git/trunk Message-ID: Revision: 2746 http://gar.svn.sourceforge.net/gar/?rev=2746&view=rev Author: bdwalton Date: 2009-01-06 02:44:03 +0000 (Tue, 06 Jan 2009) Log Message: ----------- convert to SPKG_DESC_ descriptions so subpackage deps will work Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile csw/mgar/pkg/git/trunk/checksums csw/mgar/pkg/git/trunk/files/CSWgitcvs.gspec csw/mgar/pkg/git/trunk/files/CSWgitdoc.gspec csw/mgar/pkg/git/trunk/files/CSWgitgui.gspec csw/mgar/pkg/git/trunk/files/CSWgitk.gspec csw/mgar/pkg/git/trunk/files/CSWgitsvn.gspec Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/Makefile 2009-01-06 02:44:03 UTC (rev 2746) @@ -28,6 +28,13 @@ mainly for various open source projects, most notably the Linux kernel. endef +SPKG_DESC_CSWgit = Fast Version Control System +SPKG_DESC_CSWgitk = Git revision tree visualiser +SPKG_DESC_CSWgitgui = Git GUI tool +SPKG_DESC_CSWgitsvn = Git tools for working with Subversion repositories +SPKG_DESC_CSWgitcvs = Git tools for working with CVS repositories +SPKG_DESC_CSWgitdoc = Documentation for Git + MASTER_SITES = http://kernel.org/pub/software/scm/$(GARNAME)/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 DISTFILES += $(call admfiles,CSWgitsvn,) @@ -45,7 +52,7 @@ PKGFILES_CSWgitk = .*gitk.* PKGFILES_CSWgitemacs = .*emacs.* PKGFILES_CSWgitcvs = .*cvs.* -PKGFILES_CSWgitdoc = $(datadir)/doc/.* +PKGFILES_CSWgitdoc = $(PKGFILES_DOC) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 Modified: csw/mgar/pkg/git/trunk/checksums =================================================================== --- csw/mgar/pkg/git/trunk/checksums 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/checksums 2009-01-06 02:44:03 UTC (rev 2746) @@ -1,9 +1,9 @@ 899172ebeac65f7a09a8e204d4f87d8c download/git-1.6.0.5.tar.bz2 -e2124d3e47454df813a2085a7a85597e download/CSWgitsvn.gspec -2ad395619c97ef714738778be9132e6e download/CSWgitgui.gspec -2dfce68b5746df8dfe8da8941f0d757b download/CSWgitk.gspec +52eec3e59489ecca898ef2b3d1bb4323 download/CSWgitsvn.gspec +e8fb4cb1b06cd7bdfeeb9317ad6aae12 download/CSWgitgui.gspec +50ab41f1f828ad1401cf9d05d8775499 download/CSWgitk.gspec 393d10b23a1ecb60f91bdc5f2d12a75d download/CSWgitemacs.gspec -01901aa2ffdf51c89d5b7ffc28dc9cfc download/CSWgitcvs.gspec -15faf599c27b35aad91a0af518831b29 download/CSWgitdoc.gspec +20718be97e218e2fc1b21982cf71f32a download/CSWgitcvs.gspec +7d668417a6375d27a49212c58f26db60 download/CSWgitdoc.gspec 57d2c46660773d3a1e87651447e3252a download/CSWgit.gspec 369547e8222dcf8be214b5013f28afcc download/doc-makefile.patch Modified: csw/mgar/pkg/git/trunk/files/CSWgitcvs.gspec =================================================================== --- csw/mgar/pkg/git/trunk/files/CSWgitcvs.gspec 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/files/CSWgitcvs.gspec 2009-01-06 02:44:03 UTC (rev 2746) @@ -1,6 +1,5 @@ %var bitname git_cvs %var pkgname CSWgitcvs -%var desc Git tools for working with CVS repositories %var arch all %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/git/trunk/files/CSWgitdoc.gspec =================================================================== --- csw/mgar/pkg/git/trunk/files/CSWgitdoc.gspec 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/files/CSWgitdoc.gspec 2009-01-06 02:44:03 UTC (rev 2746) @@ -1,6 +1,5 @@ %var bitname git_doc %var pkgname CSWgitdoc -%var desc Documentation for Git %var arch all %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/git/trunk/files/CSWgitgui.gspec =================================================================== --- csw/mgar/pkg/git/trunk/files/CSWgitgui.gspec 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/files/CSWgitgui.gspec 2009-01-06 02:44:03 UTC (rev 2746) @@ -1,6 +1,5 @@ %var bitname git_gui %var pkgname CSWgitgui -%var desc Git GUI tool %var arch all %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/git/trunk/files/CSWgitk.gspec =================================================================== --- csw/mgar/pkg/git/trunk/files/CSWgitk.gspec 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/files/CSWgitk.gspec 2009-01-06 02:44:03 UTC (rev 2746) @@ -1,6 +1,5 @@ %var bitname gitk %var pkgname CSWgitk -%var desc Git revision tree visualiser %var arch all %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/git/trunk/files/CSWgitsvn.gspec =================================================================== --- csw/mgar/pkg/git/trunk/files/CSWgitsvn.gspec 2009-01-04 17:26:13 UTC (rev 2745) +++ csw/mgar/pkg/git/trunk/files/CSWgitsvn.gspec 2009-01-06 02:44:03 UTC (rev 2746) @@ -1,6 +1,5 @@ %var bitname git_svn %var pkgname CSWgitsvn -%var desc Git tools for working with Subversion repositories %var arch all %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Tue Jan 6 13:59:58 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 06 Jan 2009 12:59:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[2747] csw/mgar/pkg/mbuffer/trunk/ Message-ID: Revision: 2747 http://gar.svn.sourceforge.net/gar/?rev=2747&view=rev Author: skayser Date: 2009-01-06 12:59:58 +0000 (Tue, 06 Jan 2009) Log Message: ----------- mbuffer: switched to gar v2 Property Changed: ---------------- csw/mgar/pkg/mbuffer/trunk/ Property changes on: csw/mgar/pkg/mbuffer/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Tue Jan 6 15:53:39 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Tue, 06 Jan 2009 14:53:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[2748] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 2748 http://gar.svn.sourceforge.net/gar/?rev=2748&view=rev Author: bdwalton Date: 2009-01-06 14:53:39 +0000 (Tue, 06 Jan 2009) Log Message: ----------- use modified checkpkg in /home/bwalton (to overrided dep warnings from subpackages) Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-01-06 12:59:58 UTC (rev 2747) +++ csw/mgar/pkg/git/trunk/Makefile 2009-01-06 14:53:39 UTC (rev 2748) @@ -73,6 +73,9 @@ include gar/category.mk +# override path so we use the local modifications to checkpkg. +PATH := /home/bwalton:$(PATH) + # for tail -n and to override things like, etc with the gnu counterparts # gnu must come first so xpg4/sed isn't found first. PATH := /opt/csw/gnu:/usr/xpg4/bin:$(PATH) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Tue Jan 6 19:52:33 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Tue, 06 Jan 2009 18:52:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[2749] csw/mgar/pkg/vim/trunk Message-ID: Revision: 2749 http://gar.svn.sourceforge.net/gar/?rev=2749&view=rev Author: harpchad Date: 2009-01-06 18:52:32 +0000 (Tue, 06 Jan 2009) Log Message: ----------- Updating to 7.2.079 Modified Paths: -------------- csw/mgar/pkg/vim/trunk/checksums csw/mgar/pkg/vim/trunk/files/patches.mk Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2009-01-06 14:53:39 UTC (rev 2748) +++ csw/mgar/pkg/vim/trunk/checksums 2009-01-06 18:52:32 UTC (rev 2749) @@ -75,6 +75,8 @@ d7eccf57f8fc04cf0385f85eff3d989a download/7.2.075 99750c988d0c48f56cb12a04b78aebc2 download/7.2.076 1967f5e7fa4cec07bd67cc47925ec3c8 download/7.2.077 +7b285d2ba24fdd2390b4aaba08fcf5f6 download/7.2.078 +a3385578174d3867f17ab287276db49b download/7.2.079 198b5e809eddd24650dac5ab237e26d0 download/CSWvim.depend 59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec 7f886f132e8404332757262c82aac7af download/CSWvim.prototype Modified: csw/mgar/pkg/vim/trunk/files/patches.mk =================================================================== --- csw/mgar/pkg/vim/trunk/files/patches.mk 2009-01-06 14:53:39 UTC (rev 2748) +++ csw/mgar/pkg/vim/trunk/files/patches.mk 2009-01-06 18:52:32 UTC (rev 2749) @@ -1,5 +1,5 @@ # Vim 72 patchset -PATCHREV = 077 +PATCHREV = 079 PATCHDIRLEVEL = 0 GARVERSION = $(DISTVERSION).$(PATCHREV) PATCHFILES += $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Tue Jan 6 20:26:05 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Tue, 06 Jan 2009 19:26:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[2750] csw/mgar/pkg/gvim/trunk/checksums Message-ID: Revision: 2750 http://gar.svn.sourceforge.net/gar/?rev=2750&view=rev Author: harpchad Date: 2009-01-06 19:25:58 +0000 (Tue, 06 Jan 2009) Log Message: ----------- Update for 7.2.079 Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/checksums Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-06 18:52:32 UTC (rev 2749) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-06 19:25:58 UTC (rev 2750) @@ -75,6 +75,8 @@ d7eccf57f8fc04cf0385f85eff3d989a download/7.2.075 99750c988d0c48f56cb12a04b78aebc2 download/7.2.076 1967f5e7fa4cec07bd67cc47925ec3c8 download/7.2.077 +7b285d2ba24fdd2390b4aaba08fcf5f6 download/7.2.078 +a3385578174d3867f17ab287276db49b download/7.2.079 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From william at wbonnet.net Tue Jan 6 22:16:53 2009 From: william at wbonnet.net (William Bonnet) Date: Tue, 06 Jan 2009 22:16:53 +0100 Subject: [csw-devel] Packages age In-Reply-To: <4937150C.6080907@wbonnet.net> References: <4937150C.6080907@wbonnet.net> Message-ID: <4963CA45.1040706@wbonnet.net> Hi Here are the age statistics of the package from the unstable and stable source. The last colum show the delta between this month and previous month. As you can notice packages total from 2005 2006 2007 decreased, which is good (they have been updated). Delta of packages in 2008 is +36, which is good also. This number is higher than the -12 packages for year 2005 to 2007 (it means 24 new packages). Finally there is 5 packages in 2009. I'll try to send theses stats at the beginning of each month. Stats geenration is scripted. It should generated a web page (or wiki entry) starting next month. Cheers W. Unstable 1997 1 0 1998 1 0 2001 3 0 2002 4 0 2003 26 0 2004 107 0 2005 180 -4 2006 204 -4 2007 203 -4 2008 431 +36 2009 5 +5 Stable : 1997 1 0 1998 1 0 2001 3 0 2002 3 0 2003 27 0 2004 102 +1 2005 180 +1 2006 212 +1 2007 290 +2 2008 177 0 -- William http://www.wbonnet.net http://www.sunwizard.net Le site fran?ais des amateurs de stations Unix http://www.blastwave.org An OpenSolaris Community Site http://www.opencsw.org Community SoftWare for Solaris http://www.guses.org French speaking Solaris User Group From wbonnet at users.sourceforge.net Tue Jan 6 23:54:30 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 06 Jan 2009 22:54:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[2751] csw/mgar/pkg/x11/libXau/trunk/Makefile Message-ID: Revision: 2751 http://gar.svn.sourceforge.net/gar/?rev=2751&view=rev Author: wbonnet Date: 2009-01-06 22:54:30 +0000 (Tue, 06 Jan 2009) Log Message: ----------- fix dynamic prototypes Modified Paths: -------------- csw/mgar/pkg/x11/libXau/trunk/Makefile Modified: csw/mgar/pkg/x11/libXau/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-01-06 19:25:58 UTC (rev 2750) +++ csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-01-06 22:54:30 UTC (rev 2751) @@ -14,10 +14,16 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +SPKG_DESC_CSWlibxau = X11 authorisation library +SPKG_DESC_CSWlibxaudevel = X11 authorisation library development package + DISTFILES += $(call admfiles,CSWlibxaudevel, ) DISTFILES += $(call admfiles,CSWlibxau, ) -PKGFILES_CSWlibxaudevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibxaudevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibxaudevel += $(prefix)/X11/include/.* +PKGFILES_CSWlibxaudevel += $(prefix)/X11/lib/.*\.a +PKGFILES_CSWlibxaudevel += $(prefix)/X11/lib/pkgconfig/.* include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 7 13:33:54 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 07 Jan 2009 12:33:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[2752] csw/mgar/pkg/phpldapadmin/trunk Message-ID: Revision: 2752 http://gar.svn.sourceforge.net/gar/?rev=2752&view=rev Author: dmichelsen Date: 2009-01-07 12:33:54 +0000 (Wed, 07 Jan 2009) Log Message: ----------- phpldapadmin: Update to 1.1.0.6 Modified Paths: -------------- csw/mgar/pkg/phpldapadmin/trunk/Makefile csw/mgar/pkg/phpldapadmin/trunk/checksums Modified: csw/mgar/pkg/phpldapadmin/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpldapadmin/trunk/Makefile 2009-01-06 22:54:30 UTC (rev 2751) +++ csw/mgar/pkg/phpldapadmin/trunk/Makefile 2009-01-07 12:33:54 UTC (rev 2752) @@ -1,5 +1,5 @@ GARNAME = phpldapadmin -GARVERSION = 1.1.0.5 +GARVERSION = 1.1.0.6 CATEGORIES = apps DESCRIPTION = Web-based LDAP browser to manage your LDAP server Modified: csw/mgar/pkg/phpldapadmin/trunk/checksums =================================================================== --- csw/mgar/pkg/phpldapadmin/trunk/checksums 2009-01-06 22:54:30 UTC (rev 2751) +++ csw/mgar/pkg/phpldapadmin/trunk/checksums 2009-01-07 12:33:54 UTC (rev 2752) @@ -1,4 +1,4 @@ -5ea78a6758e347c77ef291882675f266 download/phpldapadmin-1.1.0.5.tar.gz +f763977c46d09c5801d9af4ebde07a4f download/phpldapadmin-1.1.0.6.tar.gz 45c8d22ee54b7ecf7a18b85de0777f28 download/CSWphpldapadmin.gspec 0a5093f77c31ac9a30572e2ef9e2c57f download/CSWphpldapadmin.depend 640e8d4ce62a9d2d5508f68f4284cf1f download/CSWphpldapadmin.postinstall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 7 14:10:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 07 Jan 2009 13:10:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2753] csw/mgar/gar/v2 Message-ID: Revision: 2753 http://gar.svn.sourceforge.net/gar/?rev=2753&view=rev Author: dmichelsen Date: 2009-01-07 13:10:37 +0000 (Wed, 07 Jan 2009) Log Message: ----------- mGAR v2: Fix prototype generation when making relative hardlinks to files in other directories within the package Modified Paths: -------------- csw/mgar/gar/v2/bin/cswproto csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/bin/cswproto =================================================================== --- csw/mgar/gar/v2/bin/cswproto 2009-01-07 12:33:54 UTC (rev 2752) +++ csw/mgar/gar/v2/bin/cswproto 2009-01-07 13:10:37 UTC (rev 2753) @@ -132,7 +132,6 @@ ? catfile($actual, $lhs) : $lhs; - $F[2] = join "=", $lhs, basename($rhs) if $F[0] eq 'l'; } else { $F[2] = $lhs if $lhs and $rhs; Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-01-07 12:33:54 UTC (rev 2752) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-01-07 13:10:37 UTC (rev 2753) @@ -55,7 +55,7 @@ SPKG_SPOOLDIR ?= $(SPKG_SPOOLROOT)/spool.$(GAROSREL)-$(GARCH) SPKG_EXPORT ?= $(WORKDIR) SPKG_PKGROOT ?= $(PKGROOT) -SPKG_PKGBASE ?= $(CURDIR)/$(WORKDIR) +SPKG_PKGBASE ?= $(PKGROOT) SPKG_WORKDIR ?= $(CURDIR)/$(WORKDIR) SPKG_DEPEND_DB = $(GARDIR)/csw/depend.db @@ -162,7 +162,7 @@ # Pulled in from pkglib/csw_prototype.gspec $(PROTOTYPE): $(WORKDIR) merge - $(_DBG)cswproto -r $(PKGROOT) $(PKGROOT) >$@ + $(_DBG)cswproto -r $(PKGROOT) $(PKGROOT)=. >$@ .PRECIOUS: $(WORKDIR)/%.prototype $(WORKDIR)/%.prototype-$(GARCH) $(WORKDIR)/%.prototype: | $(PROTOTYPE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 7 14:11:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 07 Jan 2009 13:11:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[2754] csw/mgar/pkg/msmtp/trunk Message-ID: Revision: 2754 http://gar.svn.sourceforge.net/gar/?rev=2754&view=rev Author: dmichelsen Date: 2009-01-07 13:11:26 +0000 (Wed, 07 Jan 2009) Log Message: ----------- msmtp: Update to 1.4.17, has issues with libidn 0.5.19, recheck after update of libidn Modified Paths: -------------- csw/mgar/pkg/msmtp/trunk/Makefile csw/mgar/pkg/msmtp/trunk/checksums Modified: csw/mgar/pkg/msmtp/trunk/Makefile =================================================================== --- csw/mgar/pkg/msmtp/trunk/Makefile 2009-01-07 13:10:37 UTC (rev 2753) +++ csw/mgar/pkg/msmtp/trunk/Makefile 2009-01-07 13:11:26 UTC (rev 2754) @@ -1,5 +1,5 @@ GARNAME = msmtp -GARVERSION = 1.4.16 +GARVERSION = 1.4.17 CATEGORIES = net DESCRIPTION = SMTP client Modified: csw/mgar/pkg/msmtp/trunk/checksums =================================================================== --- csw/mgar/pkg/msmtp/trunk/checksums 2009-01-07 13:10:37 UTC (rev 2753) +++ csw/mgar/pkg/msmtp/trunk/checksums 2009-01-07 13:11:26 UTC (rev 2754) @@ -1,2 +1,2 @@ -77a333601e9de03f695539498e678cc2 download/msmtp-1.4.16.tar.bz2 +b0b74f1144812b60688f590c62a0d3dd download/msmtp-1.4.17.tar.bz2 42e9683c63a21aeb281bbb72d9e4b527 download/CSWmsmtp.gspec This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 7 15:29:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 07 Jan 2009 14:29:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2755] csw/mgar/gar/v2 Message-ID: Revision: 2755 http://gar.svn.sourceforge.net/gar/?rev=2755&view=rev Author: dmichelsen Date: 2009-01-07 14:29:09 +0000 (Wed, 07 Jan 2009) Log Message: ----------- mGAR v2: Add fix to make package non-relocatable by default again Modified Paths: -------------- csw/mgar/gar/v2/bin/cswproto csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/bin/cswproto =================================================================== --- csw/mgar/gar/v2/bin/cswproto 2009-01-07 13:11:26 UTC (rev 2754) +++ csw/mgar/gar/v2/bin/cswproto 2009-01-07 14:29:09 UTC (rev 2755) @@ -77,6 +77,7 @@ sub exclude { my $path = shift; + return 0 unless $stamp; return 1 unless $path; die "Path $path is not readable by current user!\n" unless -r $path or -l $path; @@ -162,6 +163,7 @@ # Common directories (CSWcommon plus a few others) __DATA__ +/ /etc /etc/opt /etc/opt/csw Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-01-07 13:11:26 UTC (rev 2754) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-01-07 14:29:09 UTC (rev 2755) @@ -162,7 +162,7 @@ # Pulled in from pkglib/csw_prototype.gspec $(PROTOTYPE): $(WORKDIR) merge - $(_DBG)cswproto -r $(PKGROOT) $(PKGROOT)=. >$@ + $(_DBG)cswproto -r $(PKGROOT) $(PKGROOT)=/ >$@ .PRECIOUS: $(WORKDIR)/%.prototype $(WORKDIR)/%.prototype-$(GARCH) $(WORKDIR)/%.prototype: | $(PROTOTYPE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jan 7 17:32:19 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 07 Jan 2009 16:32:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2756] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 2756 http://gar.svn.sourceforge.net/gar/?rev=2756&view=rev Author: bonivart Date: 2009-01-07 16:32:18 +0000 (Wed, 07 Jan 2009) Log Message: ----------- cswclassutils: fixed bug in initsmf Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswinitsmf Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-01-07 14:29:09 UTC (rev 2755) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-01-07 16:32:18 UTC (rev 2756) @@ -1,5 +1,5 @@ GARNAME = cswclassutils -GARVERSION = 1.1 +GARVERSION = 1.2 CATEGORIES = utils DESCRIPTION = CSW class action utilities @@ -21,13 +21,13 @@ @echo " ==> Installing $(GARNAME)" @rm -rf $(DESTDIR) @ginstall -d $(DESTDIR)/etc/opt/csw/init.d - @ginstall -d $(DESTDIR)/opt/csw/share/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) @ginstall -d $(DESTDIR)/usr/sadm/install/scripts @ginstall -d $(DESTDIR)/var/opt/csw/svc/manifest @ginstall -d $(DESTDIR)/var/opt/csw/svc/method @cp $(FILEDIR)/CSW$(GARNAME).csw.smf.sample $(DESTDIR)/etc/opt/csw/init.d/csw.smf.sample - @cp $(FILEDIR)/CSW$(GARNAME).README.CSW $(DESTDIR)/opt/csw/share/doc/$(GARNAME)/README.CSW - @cp $(FILEDIR)/CSW$(GARNAME).copyright $(DESTDIR)/opt/csw/share/doc/$(GARNAME)/LICENSE + @cp $(FILEDIR)/CSW$(GARNAME).README.CSW $(DESTDIR)$(docdir)/$(GARNAME)/README.CSW + @cp $(FILEDIR)/CSW$(GARNAME).copyright $(DESTDIR)$(docdir)/$(GARNAME)/LICENSE @cp $(FILEDIR)/CSW$(GARNAME).i.cswcpsampleconf $(DESTDIR)/usr/sadm/install/scripts/i.cswcpsampleconf @cp $(FILEDIR)/CSW$(GARNAME).r.cswcpsampleconf $(DESTDIR)/usr/sadm/install/scripts/r.cswcpsampleconf @cp $(FILEDIR)/CSW$(GARNAME).i.cswpreserveconf $(DESTDIR)/usr/sadm/install/scripts/i.cswpreserveconf Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswinitsmf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswinitsmf 2009-01-07 14:29:09 UTC (rev 2755) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.r.cswinitsmf 2009-01-07 16:32:18 UTC (rev 2756) @@ -7,6 +7,7 @@ # # 2008-04-21 First release # 2008-11-23 Fixed grep bug for FMRI +# 2009-01-07 Fixed bug with multiple services per package DEBUG= # clear to disable debug, set to anything to enable @@ -35,16 +36,20 @@ # Stop service echo Stopping $PKGINST ... -if [ "$smf" = "yes" ]; then - # Find out FMRI complete with service name - FMRI=`grep ${PKGINST}$ /var/sadm/install/contents | grep "^/var/opt/csw/svc/manifest" | egrep '\.xml ' | cut -d'/' -f7- | awk -F'.xml' '{print $1}'` - /usr/sbin/svcadm disable svc:/$FMRI > /dev/null 2>&1 - # Unregister with SMF - echo Unregister svc:/${FMRI}:default with SMF ... - /usr/sbin/svccfg delete svc:/${FMRI}:default >/dev/null 2>&1 -else - /etc/init.d/$service stop > /dev/null 2>&1 -fi +# Find out FMRI complete with service name +FMRI=`grep ${PKGINST}$ /var/sadm/install/contents | grep "^/var/opt/csw/svc/manifest" | egrep '\.xml ' | cut -d'/' -f7- | awk -F'.xml' '{print $1}'` +for i in `echo $FMRI | tr '\n' ' '` +do + if [ "$smf" = "yes" ]; then + /usr/sbin/svcadm disable svc:/$i + sleep 1 + # Unregister with SMF + echo Unregister svc:/${i}:default with SMF ... + /usr/sbin/svccfg delete -f svc:/${i}:default + else + /etc/init.d/`basename $i` stop > /dev/null 2>&1 + fi +done # Remove files in class cswinitsmf echo "Removing class ..." This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jan 7 17:45:34 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 07 Jan 2009 16:45:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[2757] csw/mgar/pkg/cswclassutils/trunk/Makefile Message-ID: Revision: 2757 http://gar.svn.sourceforge.net/gar/?rev=2757&view=rev Author: bonivart Date: 2009-01-07 16:45:33 +0000 (Wed, 07 Jan 2009) Log Message: ----------- cswclassutils: fix Makefile Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-01-07 16:32:18 UTC (rev 2756) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-01-07 16:45:33 UTC (rev 2757) @@ -12,13 +12,13 @@ TEST_SCRIPTS = INSTALL_SCRIPTS = custom -include ../category.mk +include gar/category.mk WORKSRC = $(WORKDIR) SPKG_SOURCEURL = http://www.opencsw.org/ install-custom: - @echo " ==> Installing $(GARNAME)" + @echo " ==> Installing $(GARNAME) (custom)" @rm -rf $(DESTDIR) @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dam at opencsw.org Wed Jan 7 22:59:11 2009 From: dam at opencsw.org (Dagobert Michelsen) Date: Wed, 7 Jan 2009 22:59:11 +0100 Subject: [csw-devel] Please take care: prototype generation on mGAR v2 Message-ID: Hi, it turns out the prototype generation of mGAR v2 had some issues generating packages containing hardlinks to files in other directories from the same package. Commit r2753 should have fixed this, however this path rewriting from cswproto is not straight-forward. Please be extra careful with the auto-generated prototypes and let me know if you encounter other issues. This does not affect mGAR v1. Thanks! -- Dago From bdwalton at users.sourceforge.net Thu Jan 8 01:40:17 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 08 Jan 2009 00:40:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[2758] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 2758 http://gar.svn.sourceforge.net/gar/?rev=2758&view=rev Author: bdwalton Date: 2009-01-08 00:40:17 +0000 (Thu, 08 Jan 2009) Log Message: ----------- make git depend on pm_error at runtime too Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-01-07 16:45:33 UTC (rev 2757) +++ csw/mgar/pkg/git/trunk/Makefile 2009-01-08 00:40:17 UTC (rev 2758) @@ -7,7 +7,7 @@ PREREQUISITE_PKGS += CSWzlib CSWpmerror CSWpmsvn CSWcvs CSWemacs REQUIRED_PKGS_CSWgit = CSWzlib CSWperl CSWrsync CSWcurlrt CSWosslrt -REQUIRED_PKGS_CSWgit += CSWossh CSWiconv CSWexpat CSWbash +REQUIRED_PKGS_CSWgit += CSWossh CSWiconv CSWexpat CSWbash CSWpmerror REQUIRED_PKGS_CSWgitk = CSWgit CSWtk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jan 8 18:41:32 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 08 Jan 2009 17:41:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2759] csw/mgar/pkg/docbook-style-dsssl/trunk Message-ID: Revision: 2759 http://gar.svn.sourceforge.net/gar/?rev=2759&view=rev Author: bdwalton Date: 2009-01-08 17:41:32 +0000 (Thu, 08 Jan 2009) Log Message: ----------- include a preremove script; skip using VERSION in install paths. Modified Paths: -------------- csw/mgar/pkg/docbook-style-dsssl/trunk/Makefile csw/mgar/pkg/docbook-style-dsssl/trunk/checksums csw/mgar/pkg/docbook-style-dsssl/trunk/files/add_makefile.patch Added Paths: ----------- csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/Makefile =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/Makefile 2009-01-08 00:40:17 UTC (rev 2758) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/Makefile 2009-01-08 17:41:32 UTC (rev 2759) @@ -13,7 +13,7 @@ SF_PROJ = docbook MASTER_SITES = $(SF_MIRRORS) DISTFILES = docbook-dsssl-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWdocbookdsssl,postinstall) +DISTFILES += $(call admfiles,CSWdocbookdsssl,postinstall preremove) PATCHFILES = add_makefile.patch fix_perl_path.patch REQUIRED_PKGS = CSWdocbookdtds CSWsgmlcommon CSWopenjade CSWperl @@ -36,7 +36,7 @@ BUILD_SCRIPTS = TEST_SCRIPTS = -INSTALL_ARGS = DESTDIR=$(DESTDIR) VERSION=$(GARVERSION) +INSTALL_ARGS = DESTDIR=$(DESTDIR) INSTALL_ARGS += bindir=$(bindir) datadir=$(datadir) post-install-modulated: Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/checksums =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/checksums 2009-01-08 00:40:17 UTC (rev 2758) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/checksums 2009-01-08 17:41:32 UTC (rev 2759) @@ -1,5 +1,6 @@ 8459913bbd8a5724a6fe4b9ed5bab5af download/docbook-dsssl-1.79.tar.gz 02510cf81c864e00a76bcda6c479341b download/CSWdocbookdsssl.gspec ca3151dd10e081a972d51cd1421ec933 download/CSWdocbookdsssl.postinstall -0ef217556ebfc23d51bc90684464dd6e download/add_makefile.patch +df867c379a285965e1192907439d9b90 download/CSWdocbookdsssl.preremove +6cb0e57eb959e159fb4677fc6c945d63 download/add_makefile.patch bcd9c3faeba3e034152c26b489f2abcc download/fix_perl_path.patch Added: csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove (rev 0) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove 2009-01-08 17:41:32 UTC (rev 2759) @@ -0,0 +1,25 @@ +#!/bin/sh + +PATH=/opt/csw/bin:$PATH +export PATH + +case "$PKG_INSTALL_ROOT" in + ""|"/") PREFIX= ;; + *) PREFIX="chroot $PKG_INSTALL_ROOT";; +esac + +# set SGML_BASE_DIR and SGML_CATALOGS_DIR +. `$PKG_INSTALL_ROOT/opt/csw/bin/sgmlwhich` + +dsssldir=$SGML_BASE_DIR/docbook/dsssl-stylesheets +ojadedir=`$PREFIX echo $SGML_BASE_DIR/openjade-*` + +for cat in $PKG_INSTALL_ROOT/$SGML_CATALOGS_DIR/sgml/*-docbook-*.cat; do + if [ "x$PKG_INSTALL_ROOT" != "x" ]; then + cat=`echo $cat | sed "s#$PKG_INSTALL_ROOT##"` + fi + catalog=`echo $cat | sed 's#//#/#g'` + + $PREFIX install-catalog --remove $catalog $ojadedir/catalog + $PREFIX install-catalog --remove $catalog $dsssldir/catalog +done Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/files/add_makefile.patch =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/files/add_makefile.patch 2009-01-08 00:40:17 UTC (rev 2758) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/files/add_makefile.patch 2009-01-08 17:41:32 UTC (rev 2759) @@ -2,8 +2,8 @@ +++ docbook-dsssl-1.79/Makefile 2008-12-30 05:40:27.256449575 +0100 @@ -0,0 +1,54 @@ +BINDIR = $(DESTDIR)/$(bindir) -+DEST = $(DESTDIR)/$(datadir)/sgml/docbook/dsssl-stylesheets-$(VERSION) -+DOCS = $(DESTDIR)/$(datadir)/doc/docbookdsssl-$(VERSION) ++DEST = $(DESTDIR)/$(datadir)/sgml/docbook/dsssl-stylesheets ++DOCS = $(DESTDIR)/$(datadir)/doc/docbookdsssl + +INSTALLDATA = ginstall -c -m 0644 +INSTALLDIR = ginstall -c -m 0755 -d This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jan 8 18:49:04 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 08 Jan 2009 17:49:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2760] csw/mgar/pkg/docbook-style-dsssl/trunk Message-ID: Revision: 2760 http://gar.svn.sourceforge.net/gar/?rev=2760&view=rev Author: bdwalton Date: 2009-01-08 17:49:03 +0000 (Thu, 08 Jan 2009) Log Message: ----------- remove debugging from postinstall Modified Paths: -------------- csw/mgar/pkg/docbook-style-dsssl/trunk/checksums csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.postinstall Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/checksums =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/checksums 2009-01-08 17:41:32 UTC (rev 2759) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/checksums 2009-01-08 17:49:03 UTC (rev 2760) @@ -1,6 +1,6 @@ 8459913bbd8a5724a6fe4b9ed5bab5af download/docbook-dsssl-1.79.tar.gz 02510cf81c864e00a76bcda6c479341b download/CSWdocbookdsssl.gspec -ca3151dd10e081a972d51cd1421ec933 download/CSWdocbookdsssl.postinstall +ff8e7d8bbb0f1f696f063e312da67545 download/CSWdocbookdsssl.postinstall df867c379a285965e1192907439d9b90 download/CSWdocbookdsssl.preremove 6cb0e57eb959e159fb4677fc6c945d63 download/add_makefile.patch bcd9c3faeba3e034152c26b489f2abcc download/fix_perl_path.patch Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.postinstall =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.postinstall 2009-01-08 17:41:32 UTC (rev 2759) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.postinstall 2009-01-08 17:49:03 UTC (rev 2760) @@ -23,7 +23,7 @@ fi catalog=`echo $cat | sed 's#//#/#g'` - echo $PREFIX install-catalog --remove $catalog $dsssldir/catalog + $PREFIX install-catalog --remove $catalog $dsssldir/catalog done #add new entries for the current release of the docbook dtds. @@ -33,6 +33,6 @@ fi catalog=`echo $cat | sed 's#//#/#g'` - echo $PREFIX install-catalog --add $catalog $ojadedir/catalog - echo $PREFIX install-catalog --add $catalog $dsssldir/catalog + $PREFIX install-catalog --add $catalog $ojadedir/catalog + $PREFIX install-catalog --add $catalog $dsssldir/catalog done \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jan 8 19:11:40 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 08 Jan 2009 18:11:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2761] csw/mgar/pkg/docbook-style-dsssl/trunk Message-ID: Revision: 2761 http://gar.svn.sourceforge.net/gar/?rev=2761&view=rev Author: bdwalton Date: 2009-01-08 18:11:40 +0000 (Thu, 08 Jan 2009) Log Message: ----------- correct path error in preremove script Modified Paths: -------------- csw/mgar/pkg/docbook-style-dsssl/trunk/checksums csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/checksums =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/checksums 2009-01-08 17:49:03 UTC (rev 2760) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/checksums 2009-01-08 18:11:40 UTC (rev 2761) @@ -1,6 +1,6 @@ 8459913bbd8a5724a6fe4b9ed5bab5af download/docbook-dsssl-1.79.tar.gz 02510cf81c864e00a76bcda6c479341b download/CSWdocbookdsssl.gspec ff8e7d8bbb0f1f696f063e312da67545 download/CSWdocbookdsssl.postinstall -df867c379a285965e1192907439d9b90 download/CSWdocbookdsssl.preremove +0cf25b8d3ca259f7776526e4450797f2 download/CSWdocbookdsssl.preremove 6cb0e57eb959e159fb4677fc6c945d63 download/add_makefile.patch bcd9c3faeba3e034152c26b489f2abcc download/fix_perl_path.patch Modified: csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove =================================================================== --- csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove 2009-01-08 17:49:03 UTC (rev 2760) +++ csw/mgar/pkg/docbook-style-dsssl/trunk/files/CSWdocbookdsssl.preremove 2009-01-08 18:11:40 UTC (rev 2761) @@ -14,7 +14,7 @@ dsssldir=$SGML_BASE_DIR/docbook/dsssl-stylesheets ojadedir=`$PREFIX echo $SGML_BASE_DIR/openjade-*` -for cat in $PKG_INSTALL_ROOT/$SGML_CATALOGS_DIR/sgml/*-docbook-*.cat; do +for cat in $PKG_INSTALL_ROOT/$SGML_CATALOGS_DIR/*-docbook-*.cat; do if [ "x$PKG_INSTALL_ROOT" != "x" ]; then cat=`echo $cat | sed "s#$PKG_INSTALL_ROOT##"` fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Thu Jan 8 19:54:44 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Thu, 08 Jan 2009 18:54:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2762] csw/mgar/pkg Message-ID: Revision: 2762 http://gar.svn.sourceforge.net/gar/?rev=2762&view=rev Author: aigoshin Date: 2009-01-08 18:54:43 +0000 (Thu, 08 Jan 2009) Log Message: ----------- nginx: Initial commit Added Paths: ----------- csw/mgar/pkg/nginx/ csw/mgar/pkg/nginx/branches/ csw/mgar/pkg/nginx/tags/ csw/mgar/pkg/nginx/trunk/ csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/files/ Property changes on: csw/mgar/pkg/nginx/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 Added: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile (rev 0) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-08 18:54:43 UTC (rev 2762) @@ -0,0 +1,70 @@ +GARNAME = nginx +GARVERSION = 0.7.30 +CATEGORIES = server + +DESCRIPTION = HTTP server and mail proxy server +define BLURB + Nginx (pronounced "engine x") is a free, open-source, high-performance + HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. +endef + +MASTER_SITES = http://sysoev.ru/nginx/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWnginx,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +PREREQUISITE_PKGS = CSWpcre CSWosslrt CSWzlib + +CONFIGURE_ARGS += --prefix=$(prefix) +CONFIGURE_ARGS += --conf-path=etc/nginx/nginx.conf +CONFIGURE_ARGS += --sbin-path=sbin/nginx +CONFIGURE_ARGS += --lock-path=var/run/nginx/nginx.lock +CONFIGURE_ARGS += --pid-path=var/run/nginx/nginx.pid +CONFIGURE_ARGS += --http-client-body-temp-path=var/spool/nginx/client +CONFIGURE_ARGS += --http-fastcgi-temp-path=var/spool/nginx/fastcgi +CONFIGURE_ARGS += --http-proxy-temp-path=var/spool/nginx/proxy +CONFIGURE_ARGS += --error-log-path=var/log/nginx/error.log +CONFIGURE_ARGS += --http-log-path=var/log/nginx/access.log +CONFIGURE_ARGS += --with-cc-opt="-I/opt/csw/include/openssl" +CONFIGURE_ARGS += --with-ld-opt="-L/opt/csw/lib" +CONFIGURE_ARGS += --with-md5=YES +CONFIGURE_ARGS += --with-sha1=YES +CONFIGURE_ARGS += --with-http_ssl_module +CONFIGURE_ARGS += --with-http_realip_module +CONFIGURE_ARGS += --with-http_dav_module +CONFIGURE_ARGS += --with-http_flv_module +CONFIGURE_ARGS += --with-http_stub_status_module + +include gar/category.mk + +# No test suite +TEST_SCRIPTS = + +INSTALL_SCRIPTS = custom + +NGINXDOC=CHANGES CHANGES.ru LICENSE README + +install-custom: + ginstall -d $(DESTDIR)$(prefix)/etc + ginstall -d $(DESTDIR)$(prefix)/sbin + ginstall -d $(DESTDIR)$(prefix)/var/nginx + ginstall -d $(DESTDIR)$(prefix)/var/nginx/html + ginstall -d $(DESTDIR)$(prefix)/var/nginx/sites + ginstall -d $(DESTDIR)$(prefix)/var/log/nginx + ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx + ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/client + ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/fastcgi + ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/proxy + ginstall -d $(DESTDIR)$(prefix)/share/doc/nginx + cd $(WORKSRC); \ + cp objs/nginx $(DESTDIR)$(prefix)/sbin; \ + cp html/* $(DESTDIR)$(prefix)/var/nginx/html; \ + cp conf/* $(DESTDIR)$(prefix)/etc; \ + cp conf/fastcgi_params $(DESTDIR)$(prefix)/etc/fastcgi_params.default; \ + cp conf/mime.types $(DESTDIR)$(prefix)/etc/mime.types.default; \ + cp conf/nginx.conf $(DESTDIR)$(prefix)/etc/nginx.conf.default; \ + cp $(NGINXDOC) $(DESTDIR)$(prefix)/share/doc/nginx; \ + $(MAKECOOKIE) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Jan 8 22:19:14 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 08 Jan 2009 21:19:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[2763] csw/mgar/pkg/x11 Message-ID: Revision: 2763 http://gar.svn.sourceforge.net/gar/?rev=2763&view=rev Author: wbonnet Date: 2009-01-08 21:19:14 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Fix kbproto path Move libXdmcp under x11 Modified Paths: -------------- csw/mgar/pkg/x11/kbproto/trunk/Makefile csw/mgar/pkg/x11/kbproto/trunk/checksums csw/mgar/pkg/x11/libXdmcp/trunk/Makefile csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec Added Paths: ----------- csw/mgar/pkg/x11/libXdmcp/ Removed Paths: ------------- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.depend csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.prototype csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.depend csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.prototype Property Changed: ---------------- csw/mgar/pkg/x11/libXdmcp/trunk/ Modified: csw/mgar/pkg/x11/kbproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/kbproto/trunk/Makefile 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/kbproto/trunk/Makefile 2009-01-08 21:19:14 UTC (rev 2763) @@ -16,5 +16,7 @@ DISTFILES += $(call admfiles,CSWkbproto) +# PATCHFILES += gar-base.diff + include gar/category.mk Modified: csw/mgar/pkg/x11/kbproto/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/kbproto/trunk/checksums 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/kbproto/trunk/checksums 2009-01-08 21:19:14 UTC (rev 2763) @@ -1,3 +1,2 @@ 1efc6a4d97acb3ec3f34c4b2508478dc download/kbproto-1.0.3.tar.gz 18e0000ca77d25e593f4b4b960ad1a7c download/CSWkbproto.gspec -1efc6a4d97acb3ec3f34c4b2508478dc download/kbproto-1.0.3.tar.gz Property changes on: csw/mgar/pkg/x11/libXdmcp/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/x11/libXdmcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/libXdmcp/trunk/Makefile 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/libXdmcp/trunk/Makefile 2009-01-08 21:19:14 UTC (rev 2763) @@ -14,26 +14,15 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -DISTFILES += CSWlibXdmcp.gspec CSWlibXdmcp.prototype CSWlibXdmcp.depend -DISTFILES += CSWlibXdmcpdev.gspec CSWlibXdmcpdev.prototype CSWlibXdmcpdev.depend -# DISTFILES += $(call admfiles,CSWlibXdmcp, depend) +SPKG_DESC_CSWlibxdmcp = X11 authorisation library +SPKG_DESC_CSWlibxdmcpdevel = X11 authorisation library development package -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib +DISTFILES += $(call admfiles,CSWlibxdmcpdevel, ) +DISTFILES += $(call admfiles,CSWlibxdmcp, ) -export CFLAGS CXXFLAGS LDFLAGS +PKGFILES_CSWlibxdmcpdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibxdmcpdevel += $(prefix)/X11/include/.* +PKGFILES_CSWlibxdmcpdevel += $(prefix)/X11/lib/.*\.a +PKGFILES_CSWlibxdmcpdevel += $(prefix)/X11/lib/pkgconfig/.* -TEST_SCRIPTS = none - -GREP = ggrep - include gar/category.mk - -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man - -test-none: - @$(MAKECOOKIE) - -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) Modified: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec =================================================================== --- csw/mgar/pkg/libXdmcp/trunk/files/CSWlibXdmcp.gspec 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec 2009-01-08 21:19:14 UTC (rev 2763) @@ -1,4 +1,4 @@ %var bitname libxdmcp %var pkgname CSWlibxdmcp %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.prototype =================================================================== --- csw/mgar/pkg/libXdmcp/trunk/files/CSWlibXdmcp.prototype 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.prototype 2009-01-08 21:19:14 UTC (rev 2763) @@ -1,8 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libXdmcp.la 0755 root bin -f none /opt/csw/lib/libXdmcp.so.6.0.0 0755 root bin -s none /opt/csw/lib/libXdmcp.so.6=libXdmcp.so.6.0.0 -s none /opt/csw/lib/libXdmcp.so=libXdmcp.so.6.0.0 -i copyright=CSWlibXdmcp.copyright -i depend=CSWlibXdmcp.depend -i pkginfo=CSWlibXdmcp.pkginfo Deleted: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.depend =================================================================== --- csw/mgar/pkg/libXdmcp/trunk/files/CSWlibXdmcpdev.depend 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.depend 2009-01-08 21:19:14 UTC (rev 2763) @@ -1 +0,0 @@ -P CSWlibxdmcp Modified: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec =================================================================== --- csw/mgar/pkg/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec 2009-01-08 21:19:14 UTC (rev 2763) @@ -1,4 +1,4 @@ -%var bitname libxdmcp_dev -%var pkgname CSWlibxdmcpdev +%var bitname libxdmcp_devel +%var pkgname CSWlibxdmcpdevel %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.prototype =================================================================== --- csw/mgar/pkg/libXdmcp/trunk/files/CSWlibXdmcpdev.prototype 2009-01-08 18:54:43 UTC (rev 2762) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.prototype 2009-01-08 21:19:14 UTC (rev 2763) @@ -1,10 +0,0 @@ -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/X11 0755 root bin -f none /opt/csw/include/X11/Xdmcp.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libXdmcp.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/xdmcp.pc 0644 root bin -i copyright=CSWlibXdmcpdev.copyright -i depend=CSWlibXdmcpdev.depend -i pkginfo=CSWlibXdmcpdev.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Jan 8 22:27:15 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 08 Jan 2009 21:27:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[2764] csw/mgar/pkg Message-ID: Revision: 2764 http://gar.svn.sourceforge.net/gar/?rev=2764&view=rev Author: wbonnet Date: 2009-01-08 21:27:07 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Delete libXdmcp fix some Makefiles Modified Paths: -------------- csw/mgar/pkg/gphoto2/trunk/Makefile csw/mgar/pkg/x11/libXdmcp/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/libXdmcp/ Modified: csw/mgar/pkg/gphoto2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gphoto2/trunk/Makefile 2009-01-08 21:19:14 UTC (rev 2763) +++ csw/mgar/pkg/gphoto2/trunk/Makefile 2009-01-08 21:27:07 UTC (rev 2764) @@ -16,7 +16,9 @@ DISTFILES += cc # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)= +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) DEPENDS += lib/libgphoto2 Modified: csw/mgar/pkg/x11/libXdmcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/Makefile 2009-01-08 21:19:14 UTC (rev 2763) +++ csw/mgar/pkg/x11/libXdmcp/trunk/Makefile 2009-01-08 21:27:07 UTC (rev 2764) @@ -2,7 +2,7 @@ GARVERSION = 1.0.2 CATEGORIES = lib -DESCRIPTION = X11 authorisation library +DESCRIPTION = X11 display manager control protocol library define BLURB This package provides the main interface to the X11 display manager control protocol library, which allows for remote logins to display managers. endef @@ -14,8 +14,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -SPKG_DESC_CSWlibxdmcp = X11 authorisation library -SPKG_DESC_CSWlibxdmcpdevel = X11 authorisation library development package +SPKG_DESC_CSWlibxdmcp = X11 display manager control protocol library +SPKG_DESC_CSWlibxdmcpdevel = X11 display manager control protocol library development package DISTFILES += $(call admfiles,CSWlibxdmcpdevel, ) DISTFILES += $(call admfiles,CSWlibxdmcp, ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Jan 8 22:34:02 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 08 Jan 2009 21:34:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[2765] csw/mgar/pkg/x11/libXdmcp/trunk/files Message-ID: Revision: 2765 http://gar.svn.sourceforge.net/gar/?rev=2765&view=rev Author: wbonnet Date: 2009-01-08 21:34:02 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Rename gspec files Added Paths: ----------- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcp.gspec Removed Paths: ------------- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec Deleted: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec 2009-01-08 21:27:07 UTC (rev 2764) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec 2009-01-08 21:34:02 UTC (rev 2765) @@ -1,4 +0,0 @@ -%var bitname libxdmcp -%var pkgname CSWlibxdmcp -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec 2009-01-08 21:27:07 UTC (rev 2764) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec 2009-01-08 21:34:02 UTC (rev 2765) @@ -1,4 +0,0 @@ -%var bitname libxdmcp_devel -%var pkgname CSWlibxdmcpdevel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec (from rev 2763, csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdev.gspec) =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec (rev 0) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec 2009-01-08 21:34:02 UTC (rev 2765) @@ -0,0 +1,4 @@ +%var bitname libxdmcp_devel +%var pkgname CSWlibxdmcpdevel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcp.gspec (from rev 2763, csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcp.gspec) =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcp.gspec (rev 0) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcp.gspec 2009-01-08 21:34:02 UTC (rev 2765) @@ -0,0 +1,4 @@ +%var bitname libxdmcp +%var pkgname CSWlibxdmcp +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Jan 8 22:35:22 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 08 Jan 2009 21:35:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[2766] csw/mgar/pkg/x11/libXdmcp/trunk/files Message-ID: Revision: 2766 http://gar.svn.sourceforge.net/gar/?rev=2766&view=rev Author: wbonnet Date: 2009-01-08 21:35:21 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Rename gspec file Added Paths: ----------- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcpdevel.gspec Removed Paths: ------------- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec Deleted: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec 2009-01-08 21:34:02 UTC (rev 2765) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec 2009-01-08 21:35:21 UTC (rev 2766) @@ -1,4 +0,0 @@ -%var bitname libxdmcp_devel -%var pkgname CSWlibxdmcpdevel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcpdevel.gspec (from rev 2765, csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibXdmcpdevel.gspec) =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcpdevel.gspec (rev 0) +++ csw/mgar/pkg/x11/libXdmcp/trunk/files/CSWlibxdmcpdevel.gspec 2009-01-08 21:35:21 UTC (rev 2766) @@ -0,0 +1,4 @@ +%var bitname libxdmcp_devel +%var pkgname CSWlibxdmcpdevel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Jan 8 22:53:22 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 08 Jan 2009 21:53:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[2767] csw/mgar/pkg/x11/libXdmcp/trunk Message-ID: Revision: 2767 http://gar.svn.sourceforge.net/gar/?rev=2767&view=rev Author: wbonnet Date: 2009-01-08 21:53:21 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Add dynamic prototypes Modified Paths: -------------- csw/mgar/pkg/x11/libXdmcp/trunk/Makefile csw/mgar/pkg/x11/libXdmcp/trunk/checksums Modified: csw/mgar/pkg/x11/libXdmcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/Makefile 2009-01-08 21:35:21 UTC (rev 2766) +++ csw/mgar/pkg/x11/libXdmcp/trunk/Makefile 2009-01-08 21:53:21 UTC (rev 2767) @@ -1,6 +1,6 @@ GARNAME = libXdmcp GARVERSION = 1.0.2 -CATEGORIES = lib +CATEGORIES = x11 DESCRIPTION = X11 display manager control protocol library define BLURB Modified: csw/mgar/pkg/x11/libXdmcp/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libXdmcp/trunk/checksums 2009-01-08 21:35:21 UTC (rev 2766) +++ csw/mgar/pkg/x11/libXdmcp/trunk/checksums 2009-01-08 21:53:21 UTC (rev 2767) @@ -1,7 +1,3 @@ a7e23f356a2b4fe8668f9ff4a2b0413a download/libXdmcp-1.0.2.tar.gz -ae64f61d76ab9a3129253709b061c748 download/CSWlibXdmcp.gspec -79f8df783d04a76c212b8e5b99f0b4c4 download/CSWlibXdmcp.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWlibXdmcp.depend -46fcf9ba1e62a9948380e1e6f9e96b60 download/CSWlibXdmcpdev.gspec -2876dbffd5fb10221410c1145ca554d5 download/CSWlibXdmcpdev.prototype -8b90723094224abc8cc6d584d2551c91 download/CSWlibXdmcpdev.depend +20dad59c182df97ada83576e674af11e download/CSWlibxdmcpdevel.gspec +f3ebb87eca57d398aa99ab87ec064bef download/CSWlibxdmcp.gspec This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Jan 9 01:56:51 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 09 Jan 2009 00:56:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[2768] csw/mgar/pkg/mbuffer/trunk Message-ID: Revision: 2768 http://gar.svn.sourceforge.net/gar/?rev=2768&view=rev Author: skayser Date: 2009-01-09 00:56:50 +0000 (Fri, 09 Jan 2009) Log Message: ----------- mbuffer: Adjusted build description for amd64 build Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile csw/mgar/pkg/mbuffer/trunk/checksums csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-08 21:53:21 UTC (rev 2767) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-09 00:56:50 UTC (rev 2768) @@ -27,15 +27,32 @@ # value of MASTER_SITES # UPSTREAM_MASTER_SITES = +# To build amd64 you have to do the following +# 1) build8x: gmake build-isa-i386 +# 2) build10x: gmake merge +# 3) build8x: gmake package +BUILD64 = 1 +ISAEXEC_BINS = $(bindir)/mbuffer + CONFIGURE_ARGS = $(DIRPATHS) -TEST_TARGET = check +# While i am still fighting with the packaging stuff, skip the tests +# TEST_TARGET = check +TEST_TARGET = include gar/category.mk -DOCS = ChangeLog README AUTHORS -DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) +# Solaris 10 on build10x has libm.so which points to libm.so.2. libm.so.2 +# is however not available on Solaris 8. So we have to explicitly use +# libm.so.1 during linking and get rid of the -lm reference +post-configure-isa-amd64: M1=$(WORKSRC)/Makefile +post-configure-isa-amd64: M2=$(WORKSRC)/Makefile.tmp +post-configure-isa-amd64: + @echo "Patching Makefile to use /lib/64/libm.so.1 instead of -lm" + @sed 's#-lm#/lib/64/libm.so.1#' $(M1) > $(M2) && mv $(M2) $(M1) -post-install: +post-install-modulated: DOCS = ChangeLog README AUTHORS +post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: @ginstall -d $(DOCDEST) @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) Modified: csw/mgar/pkg/mbuffer/trunk/checksums =================================================================== --- csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-08 21:53:21 UTC (rev 2767) +++ csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-09 00:56:50 UTC (rev 2768) @@ -1,2 +1,2 @@ 640dab1531246f4e93ba5f0ccccff65b download/mbuffer-20081207.tgz -6607910097dc7478838eed424c4ef45e download/CSWpackage.gspec +ee84b171939ddb3f60a49b5989626000 download/CSWpackage.gspec Modified: csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec 2009-01-08 21:53:21 UTC (rev 2767) +++ csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec 2009-01-09 00:56:50 UTC (rev 2768) @@ -1,4 +1,4 @@ %var bitname mbuffer %var pkgname CSWmbuffer %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Fri Jan 9 10:56:11 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 09 Jan 2009 09:56:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[2769] csw/mgar/pkg/bind/trunk Message-ID: Revision: 2769 http://gar.svn.sourceforge.net/gar/?rev=2769&view=rev Author: bonivart Date: 2009-01-09 09:56:09 +0000 (Fri, 09 Jan 2009) Log Message: ----------- bind: update to 9.6.0-P1 Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile csw/mgar/pkg/bind/trunk/checksums csw/mgar/pkg/bind/trunk/files/CSWbind.cswnamed Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-01-09 00:56:50 UTC (rev 2768) +++ csw/mgar/pkg/bind/trunk/Makefile 2009-01-09 09:56:09 UTC (rev 2769) @@ -1,6 +1,6 @@ GARNAME = bind -GARVERSION = 9.5.0 -RELEASE = P2 +GARVERSION = 9.6.0 +RELEASE = P1 DISTVERSION = $(GARVERSION)-$(RELEASE) DISTNAME = $(GARNAME)-$(DISTVERSION) WORKSRC = $(WORKDIR)/$(DISTNAME) Modified: csw/mgar/pkg/bind/trunk/checksums =================================================================== --- csw/mgar/pkg/bind/trunk/checksums 2009-01-09 00:56:50 UTC (rev 2768) +++ csw/mgar/pkg/bind/trunk/checksums 2009-01-09 09:56:09 UTC (rev 2769) @@ -1,4 +1,4 @@ -16c893f73a394c8cc36d7900cb9bb801 download/bind-9.5.0-P2.tar.gz +886b7eae55cfdc8cd8d2ca74a2f99c6e download/bind-9.6.0-P1.tar.gz e346b8d43181db864605c76435a0f731 download/CSWbind.gspec 9338f20547092ec54136ebebd5f663d3 download/CSWbind.preinstall 90026b0ca15e2435ddae730c5bed4a42 download/CSWbind.preremove Modified: csw/mgar/pkg/bind/trunk/files/CSWbind.cswnamed =================================================================== --- csw/mgar/pkg/bind/trunk/files/CSWbind.cswnamed 2009-01-09 00:56:50 UTC (rev 2768) +++ csw/mgar/pkg/bind/trunk/files/CSWbind.cswnamed 2009-01-09 09:56:09 UTC (rev 2769) @@ -1,7 +1,7 @@ #!/sbin/sh # rc-script for CSW Bind -# Peter Bonivart, 2008-12-16 +# Peter Bonivart, 2008-12-18 USER=named #OPTIONS="-d 1" # debug mode @@ -25,8 +25,7 @@ ZONE="-z global" fi fi - pkill $ZONE named - exit 0 + pkill $ZONE -x named ;; reload|refresh) echo 'Reloading bind.' @@ -35,11 +34,9 @@ ZONE="-z global" fi fi - pkill -HUP $ZONE named - exit 0 + pkill -HUP $ZONE -x named ;; *) echo "Usage: $0 { start | stop | reload | refresh }" - exit 1 ;; esac This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Jan 9 12:35:08 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 09 Jan 2009 11:35:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2770] csw/mgar/pkg/mbuffer/trunk/Makefile Message-ID: Revision: 2770 http://gar.svn.sourceforge.net/gar/?rev=2770&view=rev Author: skayser Date: 2009-01-09 11:35:08 +0000 (Fri, 09 Jan 2009) Log Message: ----------- mbuffer: updated comments Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-09 09:56:09 UTC (rev 2769) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-09 11:35:08 UTC (rev 2770) @@ -44,7 +44,8 @@ # Solaris 10 on build10x has libm.so which points to libm.so.2. libm.so.2 # is however not available on Solaris 8. So we have to explicitly use -# libm.so.1 during linking and get rid of the -lm reference +# libm.so.1 during linking and get rid of the -lm reference. Otherwise +# the package check on build8x when running "gmake package" fails. post-configure-isa-amd64: M1=$(WORKSRC)/Makefile post-configure-isa-amd64: M2=$(WORKSRC)/Makefile.tmp post-configure-isa-amd64: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Fri Jan 9 17:30:46 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 09 Jan 2009 16:30:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2771] csw/mgar/pkg/bind/trunk/Makefile Message-ID: Revision: 2771 http://gar.svn.sourceforge.net/gar/?rev=2771&view=rev Author: bonivart Date: 2009-01-09 16:30:46 +0000 (Fri, 09 Jan 2009) Log Message: ----------- bind: add deps to bind_utils Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-01-09 11:35:08 UTC (rev 2770) +++ csw/mgar/pkg/bind/trunk/Makefile 2009-01-09 16:30:46 UTC (rev 2771) @@ -30,7 +30,7 @@ REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils REQUIRED_PKGS_CSWbinddevel = CSWbind REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib -REQUIRED_PKGS_CSWbindutils = CSWlibbind +REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*)-([A-Z][0-9]) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 9 18:39:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 09 Jan 2009 17:39:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[2772] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 2772 http://gar.svn.sourceforge.net/gar/?rev=2772&view=rev Author: dmichelsen Date: 2009-01-09 17:39:56 +0000 (Fri, 09 Jan 2009) Log Message: ----------- mGAR v2: Make sure pre- and post-scripts for specific modulations are called Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-01-09 16:30:46 UTC (rev 2771) +++ csw/mgar/gar/v2/gar.mk 2009-01-09 17:39:56 UTC (rev 2772) @@ -122,7 +122,7 @@ define _modulate_target $(1)-$(2): - @gmake MODULATION=$(2) $(3) pre-$(1)-$(2) $(1)-modulated post-$(1)-$(2) + @gmake MODULATION=$(2) $(3) $(1)-modulated @# This is MAKECOOKIE expanded to use the name of the rule explicily as the rule has @# not been evaluated yet. XXX: Use function _MAKECOOKIE for both @mkdir -p $(COOKIEDIR)/$(dir $(1)-$(2)) && date >> $(COOKIEDIR)/$(1)-$(2) @@ -132,13 +132,6 @@ define _modulate_target_nocookie $(1)-$(2): - @gmake -s MODULATION=$(2) $(3) pre-$(1)-$(2) $(1)-modulated post-$(1)-$(2) - @# The next line has intentionally been left blank to explicitly terminate this make rule - -endef - -define _modulate_target_nocookie_noprepost -$(1)-$(2): @gmake -s MODULATION=$(2) $(3) $(1)-modulated @# The next line has intentionally been left blank to explicitly terminate this make rule @@ -148,16 +141,16 @@ $(call _modulate_target,extract,$(2),$(4)) $(call _modulate_target,patch,$(2),$(4)) $(call _modulate_target,configure,$(2),$(4)) -$(call _modulate_target_nocookie_noprepost,reset-configure,$(2),$(4)) +$(call _modulate_target_nocookie,reset-configure,$(2),$(4)) $(call _modulate_target,build,$(2),$(4)) -$(call _modulate_target_nocookie_noprepost,reset-build,$(2),$(4)) +$(call _modulate_target_nocookie,reset-build,$(2),$(4)) $(call _modulate_target,test,$(2),$(4)) $(call _modulate_target,install,$(2),$(4)) -$(call _modulate_target_nocookie_noprepost,reset-install,$(2),$(4)) +$(call _modulate_target_nocookie,reset-install,$(2),$(4)) $(call _modulate_target,merge,$(2),$(4)) -$(call _modulate_target_nocookie_noprepost,reset-merge,$(2),$(4)) -$(call _modulate_target_nocookie_noprepost,clean,$(2),$(4)) -$(call _modulate_target_nocookie_noprepost,_modenv,$(2),$(4)) +$(call _modulate_target_nocookie,reset-merge,$(2),$(4)) +$(call _modulate_target_nocookie,clean,$(2),$(4)) +$(call _modulate_target_nocookie,_modenv,$(2),$(4)) endef # This evaluates to the make rules for all modulations passed as first argument @@ -302,7 +295,7 @@ extract-modulated: checksum-modulated $(EXTRACTDIR) $(COOKIEDIR) \ $(addprefix dep-$(GARDIR)/,$(EXTRACTDEPS)) \ announce-modulation \ - pre-extract-modulated $(EXTRACT_TARGETS) post-extract-modulated + pre-extract-modulated pre-extract-$(MODULATION) $(EXTRACT_TARGETS) post-extract-$(MODULATION) post-extract-modulated @$(DONADA) # returns true if extract has completed successfully, false @@ -323,7 +316,7 @@ patch: pre-patch $(addprefix patch-,$(MODULATIONS)) post-patch @$(DONADA) -patch-modulated: extract-modulated $(WORKSRC) pre-patch-modulated $(PATCH_TARGETS) post-patch-modulated +patch-modulated: extract-modulated $(WORKSRC) pre-patch-modulated pre-patch-$(MODULATION) $(PATCH_TARGETS) post-patch-$(MODULATION) post-patch-modulated # returns true if patch has completed successfully, false # otherwise @@ -372,7 +365,7 @@ configure-modulated: verify-isa patch-modulated $(CONFIGURE_IMGDEPS) $(CONFIGURE_BUILDDEPS) $(CONFIGURE_DEPS) \ $(addprefix srcdep-$(GARDIR)/,$(SOURCEDEPS)) \ - pre-configure-modulated $(CONFIGURE_TARGETS) post-configure-modulated + pre-configure-modulated pre-configure-$(MODULATION) $(CONFIGURE_TARGETS) post-configure-$(MODULATION) post-configure-modulated .PHONY: reset-configure reset-configure-modulated reconfigure: reset-configure configure @@ -400,7 +393,7 @@ $(error Code for the architecture $* can not be produced with the compiler $(GARCOMPILER)) \ ) -build-modulated: verify-isa configure-modulated pre-build-modulated $(BUILD_TARGETS) post-build-modulated +build-modulated: verify-isa configure-modulated pre-build-modulated pre-build-$(MODULATION) $(BUILD_TARGETS) post-build-$(MODULATION) post-build-modulated @$(MAKECOOKIE) # returns true if build has completed successfully, false @@ -410,10 +403,10 @@ TEST_TARGETS = $(addprefix test-,$(TEST_SCRIPTS)) -test: $(addprefix test-,$(MODULATIONS)) +test: pre-test $(addprefix test-,$(MODULATIONS)) post-test $(DONADA) -test-modulated: build-modulated pre-test $(TEST_TARGETS) post-test +test-modulated: build-modulated pre-test-modulated pre-test-$(MODULATION) $(TEST_TARGETS) post-test-$(MODULATION) post-test-modulated $(DONADA) # strip - Strip executables @@ -445,7 +438,7 @@ install: pre-install $(addprefix install-,$(MODULATIONS)) post-install $(DONADA) -install-modulated: build-modulated $(addprefix dep-$(GARDIR)/,$(INSTALLDEPS)) test-modulated $(INSTALL_DIRS) $(PRE_INSTALL_TARGETS) pre-install-modulated $(INSTALL_TARGETS) post-install-modulated $(POST_INSTALL_TARGETS) +install-modulated: build-modulated $(addprefix dep-$(GARDIR)/,$(INSTALLDEPS)) test-modulated $(INSTALL_DIRS) $(PRE_INSTALL_TARGETS) pre-install-modulated pre-install-$(MODULATION) $(INSTALL_TARGETS) post-install-$(MODULATION) post-install-modulated $(POST_INSTALL_TARGETS) @$(MAKECOOKIE) # returns true if install has completed successfully, false @@ -571,7 +564,7 @@ @$(DONADA) # This merges the -merge-modulated: install-modulated pre-merge-modulated $(MERGE_TARGETS) post-merge-modulated +merge-modulated: install-modulated pre-merge-modulated pre-merge-$(MODULATION) $(MERGE_TARGETS) post-merge-$(MODULATION) post-merge-modulated @$(MAKECOOKIE) # Copy the whole tree verbatim This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Fri Jan 9 18:40:31 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Fri, 09 Jan 2009 17:40:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2773] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 2773 http://gar.svn.sourceforge.net/gar/?rev=2773&view=rev Author: aigoshin Date: 2009-01-09 17:40:31 +0000 (Fri, 09 Jan 2009) Log Message: ----------- nginx: milestone 1 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec csw/mgar/pkg/nginx/trunk/files/cswnginx csw/mgar/pkg/nginx/trunk/files/cswnginx.xml csw/mgar/pkg/nginx/trunk/files/svc-cswnginx Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-09 17:39:56 UTC (rev 2772) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-09 17:40:31 UTC (rev 2773) @@ -11,22 +11,25 @@ MASTER_SITES = http://sysoev.ru/nginx/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWnginx,) +DISTFILES += cswnginx cswnginx.xml svc-cswnginx # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz -PREREQUISITE_PKGS = CSWpcre CSWosslrt CSWzlib +REQUIRED_PKGS = CSWosslrt CSWpcre CSWzlib -CONFIGURE_ARGS += --prefix=$(prefix) -CONFIGURE_ARGS += --conf-path=etc/nginx/nginx.conf -CONFIGURE_ARGS += --sbin-path=sbin/nginx -CONFIGURE_ARGS += --lock-path=var/run/nginx/nginx.lock -CONFIGURE_ARGS += --pid-path=var/run/nginx/nginx.pid -CONFIGURE_ARGS += --http-client-body-temp-path=var/spool/nginx/client -CONFIGURE_ARGS += --http-fastcgi-temp-path=var/spool/nginx/fastcgi -CONFIGURE_ARGS += --http-proxy-temp-path=var/spool/nginx/proxy -CONFIGURE_ARGS += --error-log-path=var/log/nginx/error.log -CONFIGURE_ARGS += --http-log-path=var/log/nginx/access.log +GARCOMPILER = GNU + +CONFIGURE_ARGS += --prefix=$(prefix)/var/nginx +CONFIGURE_ARGS += --conf-path=$(sysconfdir)/nginx/nginx.conf +CONFIGURE_ARGS += --sbin-path=$(sbindir)/nginx +CONFIGURE_ARGS += --lock-path=$(prefix)/var/run/nginx/nginx.lock +CONFIGURE_ARGS += --pid-path=$(prefix)/var/run/nginx/nginx.pid +CONFIGURE_ARGS += --http-client-body-temp-path=$(prefix)/var/spool/nginx/client +CONFIGURE_ARGS += --http-fastcgi-temp-path=$(prefix)/var/spool/nginx/fastcgi +CONFIGURE_ARGS += --http-proxy-temp-path=$(prefix)/var/spool/nginx/proxy +CONFIGURE_ARGS += --error-log-path=$(prefix)/var/log/nginx/error.log +CONFIGURE_ARGS += --http-log-path=$(prefix)/var/log/nginx/access.log CONFIGURE_ARGS += --with-cc-opt="-I/opt/csw/include/openssl" CONFIGURE_ARGS += --with-ld-opt="-L/opt/csw/lib" CONFIGURE_ARGS += --with-md5=YES @@ -37,34 +40,25 @@ CONFIGURE_ARGS += --with-http_flv_module CONFIGURE_ARGS += --with-http_stub_status_module -include gar/category.mk - -# No test suite TEST_SCRIPTS = -INSTALL_SCRIPTS = custom +include gar/category.mk NGINXDOC=CHANGES CHANGES.ru LICENSE README -install-custom: - ginstall -d $(DESTDIR)$(prefix)/etc +post-install: + ginstall -d $(DESTDIR)$(sysconfdir) + ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib + ginstall -d $(DESTDIR)$(docdir)/nginx ginstall -d $(DESTDIR)$(prefix)/sbin ginstall -d $(DESTDIR)$(prefix)/var/nginx - ginstall -d $(DESTDIR)$(prefix)/var/nginx/html ginstall -d $(DESTDIR)$(prefix)/var/nginx/sites ginstall -d $(DESTDIR)$(prefix)/var/log/nginx ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/client ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/fastcgi ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/proxy - ginstall -d $(DESTDIR)$(prefix)/share/doc/nginx cd $(WORKSRC); \ - cp objs/nginx $(DESTDIR)$(prefix)/sbin; \ - cp html/* $(DESTDIR)$(prefix)/var/nginx/html; \ - cp conf/* $(DESTDIR)$(prefix)/etc; \ - cp conf/fastcgi_params $(DESTDIR)$(prefix)/etc/fastcgi_params.default; \ - cp conf/mime.types $(DESTDIR)$(prefix)/etc/mime.types.default; \ - cp conf/nginx.conf $(DESTDIR)$(prefix)/etc/nginx.conf.default; \ - cp $(NGINXDOC) $(DESTDIR)$(prefix)/share/doc/nginx; \ + cp -r contrib/* $(DESTDIR)$(sharedstatedir)/nginx/contrib; \ + cp $(NGINXDOC) $(DESTDIR)$(docdir)/nginx; \ $(MAKECOOKIE) - Added: csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec (rev 0) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-09 17:40:31 UTC (rev 2773) @@ -0,0 +1,10 @@ +%var bitname nginx +%var pkgname CSWnginx +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE +%var SERVICE_CONF_FILES /opt/csw/etc/nginx/nginx.conf +%include url file://%{PKGLIB}/smf_enabled.gspec +%var RC_INIT_SCRIPT cswnginx +%var INIT_KILL_PRIO 16 +%var INIT_START_PRIO 90 +%var CAN_BE_AUTOENABLED no Added: csw/mgar/pkg/nginx/trunk/files/cswnginx =================================================================== --- csw/mgar/pkg/nginx/trunk/files/cswnginx (rev 0) +++ csw/mgar/pkg/nginx/trunk/files/cswnginx 2009-01-09 17:40:31 UTC (rev 2773) @@ -0,0 +1,112 @@ +#!/bin/sh +# +# SMF Method file for nginx +# + +NGINX=/opt/csw/sbin/nginx +CFGFILE=/opt/csw/etc/nginx/nginx.conf +VARRUNX=/opt/csw/var/run/nginx +PIDFILE=${VARRUNX}/nginx.pid +PIDFILO=${VARRUNX}/nginx.pid.oldbin + +[ ! -f ${NGINX} ] && exit $NGINX +[ ! -f ${CFGFILE} ] && exit $CFGFILE + + +start() { + $NGINX + RETVAL=$? + return $RETVAL +} + +stop() { + killpidf -TERM $PIDFILO + killpidf -TERM +} + +check() { + MSG=`$NGINX -t 2>&1` + RETVAL=$? + [ $RETVAL -ne 0 ] && echo $MSG + return $RETVAL +} + +killpidf() { + if [ "$2" != "" ]; then + PIDF=$2 + else + PIDF=$PIDFILE + fi + if [ -s "$PIDF" ]; then + /bin/kill $1 `/usr/bin/cat $PIDF` + RETVAL=$? + else + RETVAL=1 + fi + return $RETVAL +} + +reload() { + killpidf -HUP + RETVAL=$? + return $RETVAL +} + +restart() { + stop + start + RETVAL=$? + return $RETVAL +} + +rotate() { + killpidf -USR1 + RETVAL=$? + return $RETVAL +} + +upgrade() +{ + killpidf -USR2 + RETVAL=$? + return $RETVAL +} + + +case "$1" in +start) + [ ! -d $VARRUNX ] && /bin/mkdir -p $VARRUNX + check + start + RETVAL=$? + ;; +stop) + stop + ;; +refresh|reload) + check + RETVAL=$? + [ $RETVAL -eq 0 ] && reload ||: + ;; +restart) + check + RETVAL=$? + [ $RETVAL -eq 0 ] && restart ||: + ;; +rotate) + rotate + RETVAL=$? + ;; +upgrade) + check + RETVAL=$? + [ $RETVAL -eq 0 ] && upgrade ||: + ;; +*) + echo "Usage: $0 {start|stop|refresh|reload|restart|rotate|upgrade}" + exit 1 + ;; +esac + +RETVAL=$? +exit $RETVAL Property changes on: csw/mgar/pkg/nginx/trunk/files/cswnginx ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/nginx/trunk/files/cswnginx.xml =================================================================== --- csw/mgar/pkg/nginx/trunk/files/cswnginx.xml (rev 0) +++ csw/mgar/pkg/nginx/trunk/files/cswnginx.xml 2009-01-09 17:40:31 UTC (rev 2773) @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: csw/mgar/pkg/nginx/trunk/files/svc-cswnginx =================================================================== --- csw/mgar/pkg/nginx/trunk/files/svc-cswnginx (rev 0) +++ csw/mgar/pkg/nginx/trunk/files/svc-cswnginx 2009-01-09 17:40:31 UTC (rev 2773) @@ -0,0 +1,112 @@ +#!/bin/sh +# +# SMF Method file for nginx +# + +NGINX=/opt/csw/sbin/nginx +CFGFILE=/opt/csw/etc/nginx/nginx.conf +VARRUNX=/opt/csw/var/run/nginx +PIDFILE=${VARRUNX}/nginx.pid +PIDFILO=${VARRUNX}/nginx.pid.oldbin + +[ ! -f ${NGINX} ] && exit $NGINX +[ ! -f ${CFGFILE} ] && exit $CFGFILE + + +start() { + $NGINX + RETVAL=$? + return $RETVAL +} + +stop() { + killpidf -TERM $PIDFILO + killpidf -TERM +} + +check() { + MSG=`$NGINX -t 2>&1` + RETVAL=$? + [ $RETVAL -ne 0 ] && echo $MSG + return $RETVAL +} + +killpidf() { + if [ "$2" != "" ]; then + PIDF=$2 + else + PIDF=$PIDFILE + fi + if [ -s "$PIDF" ]; then + /bin/kill $1 `/usr/bin/cat $PIDF` + RETVAL=$? + else + RETVAL=1 + fi + return $RETVAL +} + +reload() { + killpidf -HUP + RETVAL=$? + return $RETVAL +} + +restart() { + stop + start + RETVAL=$? + return $RETVAL +} + +rotate() { + killpidf -USR1 + RETVAL=$? + return $RETVAL +} + +upgrade() +{ + killpidf -USR2 + RETVAL=$? + return $RETVAL +} + + +case "$1" in +start) + [ ! -d $VARRUNX ] && /bin/mkdir -p $VARRUNX + check + start + RETVAL=$? + ;; +stop) + stop + ;; +refresh|reload) + check + RETVAL=$? + [ $RETVAL -eq 0 ] && reload ||: + ;; +restart) + check + RETVAL=$? + [ $RETVAL -eq 0 ] && restart ||: + ;; +rotate) + rotate + RETVAL=$? + ;; +upgrade) + check + RETVAL=$? + [ $RETVAL -eq 0 ] && upgrade ||: + ;; +*) + echo "Usage: $0 {start|stop|refresh|reload|restart|rotate|upgrade}" + exit 1 + ;; +esac + +RETVAL=$? +exit $RETVAL Property changes on: csw/mgar/pkg/nginx/trunk/files/svc-cswnginx ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 9 20:32:44 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 09 Jan 2009 19:32:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2774] csw/mgar/pkg/ncurses/trunk/Makefile Message-ID: Revision: 2774 http://gar.svn.sourceforge.net/gar/?rev=2774&view=rev Author: dmichelsen Date: 2009-01-09 19:32:43 +0000 (Fri, 09 Jan 2009) Log Message: ----------- ncurses: Remove special xterm capabilities which Solaris xterm doesn't have Modified Paths: -------------- csw/mgar/pkg/ncurses/trunk/Makefile Modified: csw/mgar/pkg/ncurses/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-09 17:40:31 UTC (rev 2773) +++ csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-09 19:32:43 UTC (rev 2774) @@ -34,3 +34,17 @@ include gar/category.mk LDFLAGS := $(filter-out -L%,$(LDFLAGS)) + +# Remove capabilities HPA and VPA as Solaris xterm doesn't understand it. +# See for details +# +# +# + +post-install-modulated: + (W=$(abspath $(WORKDIR)); cd $(INSTALLISADIR)$(prefix); \ + LD_LIBRARY_PATH=lib TERMINFO=share/terminfo \ + ./bin/infocmp -1 xterm >$$W/xterm.src; \ + cat $$W/xterm.src | fgrep -v hpa= | fgrep -v vpa= > $$W/xterm.src.no-hpa-vpa; \ + LD_LIBRARY_PATH=lib TERMINFO=share/terminfo \ + ./bin/tic $$W/xterm.src.no-hpa-vpa) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dam at opencsw.org Fri Jan 9 20:50:20 2009 From: dam at opencsw.org (Dagobert Michelsen) Date: Fri, 9 Jan 2009 20:50:20 +0100 Subject: [csw-devel] csw/mgar/pkg In-Reply-To: <200901092115.23545.ai@vsu.ru> References: <200901091907.13134.ai@vsu.ru> <200901092115.23545.ai@vsu.ru> Message-ID: <8C883497-E621-4A77-B2CD-5441FAE52B66@opencsw.org> Hi Andy, Am 09.01.2009 um 19:15 schrieb Andy Igoshin: > - how may i customize pre-remove package script? > for example, pkgrm CSWnginx must stop service or run init.d script > before removing. maybe there are some mgar macroses i can use? You can look at cups/trunk/files/CSWcupsd.preremove as an example. > - "Building for multiple ISAs" are experimental. is it usable? Yes. It has been in production for a few month now. Once in a while still some oddity pops up which needs fixing, so "experimental". But the resulting packages have been released to current/. > - how may i specify differrent optimizations for differrent arches > and ISAs? First you need to look at gar.conf.mk on how the optimization variables are assembled. The easiest way to modify these is to use something like EXTRA_CFLAGS_sparcv9+vis = -fast EXTRA_CFLAGS_sparcv8-fsmuld = -fast EXTRA_CFLAGS = $(EXTRA_CFLAGS_$(ISA)) > - some files in package archive (.pkg.gz) should have specific > permissions and owner/group. how may i set them whithout > hardcoding in '.prototype'? Highly experimental ;-)) You can use prototype filters for this. The idea is to specify a program taking the prototype as stdin, rewriting it and put the result to stdout. What is needed is a program like pfilter --path=/opt/csw/etc/myconfig --owner=myself --perms=1644 No rocket science, just not been written yet. The current quoting from the prototype-filter in sysstat/trunk/Makefile looks a bit too complicated to be beautiful: PROTOTYPE_FILTER = awk '$$$$3 ~ /\/sysstatd$$$$/ { $$$$4 = "4755" } { print }' I guess you got the idea. > - nginx package should be build separately on solaris 8 and solaris 10 > (/dev/poll vs event port). what should i write in Makefile to do it? Same as specific flags for Makefiles or alternatively ifeq ($(GAROSREL),5.8) CONFIGURE_ARGS += --use-dev-poll endif ifeq ($(GAROSREL),5.10) CONFIGURE_ARGS += --use-event-port endif Then recompile once for Solaris 8 and Solaris 10. The resulting 4 packages should be correct for release. The naming and linking in the catalogs makes sure the right package gets pulled in for each release. > - nginx has two versions of sources: release and development. > may i support them in one package? The usual policy is to have stable/release/production versions only. Is there a specific reason to package the development version? You may of course make a separate package of that and put it in testing/. However, GAR supports putting multiple versions in one package. If you are curious you can look at libtool/trunk/Makefile for details (there is 1.5.26 and 2.2.4 in the same package there). Best regards -- Dago From dmichelsen at users.sourceforge.net Fri Jan 9 21:58:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 09 Jan 2009 20:58:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[2775] csw/mgar/pkg/ncurses/trunk/Makefile Message-ID: Revision: 2775 http://gar.svn.sourceforge.net/gar/?rev=2775&view=rev Author: dmichelsen Date: 2009-01-09 20:58:25 +0000 (Fri, 09 Jan 2009) Log Message: ----------- ncurses: Refine xterm capabilities patch Modified Paths: -------------- csw/mgar/pkg/ncurses/trunk/Makefile Modified: csw/mgar/pkg/ncurses/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-09 19:32:43 UTC (rev 2774) +++ csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-09 20:58:25 UTC (rev 2775) @@ -42,9 +42,9 @@ # post-install-modulated: - (W=$(abspath $(WORKDIR)); cd $(INSTALLISADIR)$(prefix); \ - LD_LIBRARY_PATH=lib TERMINFO=share/terminfo \ - ./bin/infocmp -1 xterm >$$W/xterm.src; \ + (W=$(abspath $(WORKDIR)); cd $(INSTALLISADIR); \ + LD_LIBRARY_PATH=./$(libdir) TERMINFO=./$(datadir)/terminfo \ + ./$(bindir)/infocmp -1 xterm >$$W/xterm.src; \ cat $$W/xterm.src | fgrep -v hpa= | fgrep -v vpa= > $$W/xterm.src.no-hpa-vpa; \ - LD_LIBRARY_PATH=lib TERMINFO=share/terminfo \ - ./bin/tic $$W/xterm.src.no-hpa-vpa) + LD_LIBRARY_PATH=./$(libdir) TERMINFO=./$(datadir)/terminfo \ + ./$(bindir)/tic $$W/xterm.src.no-hpa-vpa) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 9 22:26:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 09 Jan 2009 21:26:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[2776] csw/mgar/pkg/bdb44/trunk Message-ID: Revision: 2776 http://gar.svn.sourceforge.net/gar/?rev=2776&view=rev Author: dmichelsen Date: 2009-01-09 21:26:39 +0000 (Fri, 09 Jan 2009) Log Message: ----------- bdb44: Reapply patches from automatic-multiarch-compile for 6amd64 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/bdb44/trunk/Makefile csw/mgar/pkg/bdb44/trunk/checksums Added Paths: ----------- csw/mgar/pkg/bdb44/trunk/files/patch.4.4.20.5.diff Removed Paths: ------------- csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-devel.prototype csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-doc.prototype csw/mgar/pkg/bdb44/trunk/files/CSWbdb44.prototype Property Changed: ---------------- csw/mgar/pkg/bdb44/trunk/ Property changes on: csw/mgar/pkg/bdb44/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/bdb44/trunk/Makefile =================================================================== --- csw/mgar/pkg/bdb44/trunk/Makefile 2009-01-09 20:58:25 UTC (rev 2775) +++ csw/mgar/pkg/bdb44/trunk/Makefile 2009-01-09 21:26:39 UTC (rev 2776) @@ -13,11 +13,11 @@ (MSVC 4, 5 and 6). endef -MASTER_SITES = http://downloads.sleepycat.com/ +MASTER_SITES = http://download.oracle.com/berkeley-db/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWbdb44,depend prototype) -DISTFILES += $(call admfiles,CSWbdb44-devel,depend prototype) -DISTFILES += $(call admfiles,CSWbdb44-doc,depend prototype) +DISTFILES += $(call admfiles,CSWbdb44,depend) +DISTFILES += $(call admfiles,CSWbdb44-devel,depend) +DISTFILES += $(call admfiles,CSWbdb44-doc,depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -30,6 +30,8 @@ PATCHDIRLEVEL = 0 PATCHFILES += $(notdir $(wildcard $(FILEDIR)/patch.*.diff)) +BUILD64 = 1 + CONFIGURE_SCRIPTS = dist CONFIGURE_ARGS = --prefix=$(prefix)/bdb44 @@ -47,6 +49,16 @@ # bdb tests are *very* time consuming TEST_SCRIPTS = +NO_ISAEXEC = 1 +MERGE_EXCLUDE_FILES = .*~ .*\.la +ISA_RELOCATE_DIRS_sparcv9 = $(prefix)/bdb44/bin $(prefix)/bdb44/lib $(prefix)/bdb44/include +ISA_RELOCATE_DIRS_amd64 = $(prefix)/bdb44/bin $(prefix)/bdb44/lib $(prefix)/bdb44/include + +PKGFILES_CSWbdb44-doc = $(prefix)/bdb44/docs/.* + +PKGFILES_CSWbdb44-devel = $(prefix)/bdb44/include/.* +PKGFILES_CSWbdb44-devel += $(prefix)/bdb44/lib/.*\.a + include gar/category.mk LIBS += -lnsl @@ -59,3 +71,7 @@ @( cd $(WORKSRC) ; $(CONFIGURE_ENV) ../dist/configure $(CONFIGURE_ARGS) ) @$(MAKECOOKIE) +post-merge: + gln -s . $(PKGROOT)$(prefix)/bdb44/lib/32 + gln -s $(ISA_DEFAULT64) $(PKGROOT)$(prefix)/bdb44/lib/64 + @$(MAKECOOKIE) Modified: csw/mgar/pkg/bdb44/trunk/checksums =================================================================== --- csw/mgar/pkg/bdb44/trunk/checksums 2009-01-09 20:58:25 UTC (rev 2775) +++ csw/mgar/pkg/bdb44/trunk/checksums 2009-01-09 21:26:39 UTC (rev 2776) @@ -1,14 +1,15 @@ -33851f01b455cca48aa601956de93c6f download/db-4.4.20.tar.gz +d84dff288a19186b136b0daf7067ade3 download/db-4.4.20.tar.gz 931cfb08ad3c593f67f7987a1b0e38d2 download/CSWbdb44.gspec -8093298b67861e241b0d2499c9f2ff89 download/CSWbdb44.depend +d41d8cd98f00b204e9800998ecf8427e download/CSWbdb44.depend 9fb1ec203b562118a5efa65466f58cb8 download/CSWbdb44.prototype dfe4f07bd627ca8f26dff40b42858c89 download/CSWbdb44-devel.gspec -b15a8c1d4430e560838a03ec63eca6b3 download/CSWbdb44-devel.depend -66655c84ca6525fd4f4e6afcc4780a13 download/CSWbdb44-devel.prototype +5a1c7c6d2c1bdc317e0c11e134342154 download/CSWbdb44-devel.depend +ac47841e936dc64824fc24c2ec7edfc6 download/CSWbdb44-devel.prototype 3504f1aaf3736b0e4d7aeaa520e50c61 download/CSWbdb44-doc.gspec -7e78e963a84b5f0e4c2dacd3b25bec9a download/CSWbdb44-doc.depend -28d7da520fb018d57dd27d186588a423 download/CSWbdb44-doc.prototype +840f3b7ab7ea6a0b92fa00b11ed03551 download/CSWbdb44-doc.depend +5d66c098355c7bdcee114b69e1cbc822 download/CSWbdb44-doc.prototype 66584d621355df055b6e05b4a02e9c3e download/patch.4.4.20.1.diff 85df93a0867f6cace3501671cdeb6ed1 download/patch.4.4.20.2.diff 88ee91889ebf5498b22b2e7bed945d41 download/patch.4.4.20.3.diff c2ef7b3e59460c35950fab5f2faa3fc0 download/patch.4.4.20.4.diff +099621e0dad419188acd42c588242131 download/patch.4.4.20.5.diff Deleted: csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-devel.prototype =================================================================== --- csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-devel.prototype 2009-01-09 20:58:25 UTC (rev 2775) +++ csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-devel.prototype 2009-01-09 21:26:39 UTC (rev 2776) @@ -1,16 +0,0 @@ -d none /opt/csw/bdb44 0755 root bin -d none /opt/csw/bdb44/include 0755 root bin -f none /opt/csw/bdb44/include/db.h 0444 root bin -f none /opt/csw/bdb44/include/db_185.h 0444 root bin -f none /opt/csw/bdb44/include/db_cxx.h 0444 root bin -d none /opt/csw/bdb44/lib 0755 root bin -f none /opt/csw/bdb44/lib/libdb-4.4.a 0644 root bin -f none /opt/csw/bdb44/lib/libdb-4.4.la 0644 root bin -f none /opt/csw/bdb44/lib/libdb.a 0644 root bin -f none /opt/csw/bdb44/lib/libdb_cxx-4.4.a 0644 root bin -f none /opt/csw/bdb44/lib/libdb_cxx-4.4.la 0644 root bin -f none /opt/csw/bdb44/lib/libdb_cxx.a 0644 root bin -f none /opt/csw/bdb44/lib/libdb_java-4.4.a 0644 root bin -f none /opt/csw/bdb44/lib/libdb_java-4.4.la 0644 root bin -f none /opt/csw/bdb44/lib/libdb_tcl-4.4.a 0644 root bin -f none /opt/csw/bdb44/lib/libdb_tcl-4.4.la 0644 root bin Deleted: csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-doc.prototype =================================================================== --- csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-doc.prototype 2009-01-09 20:58:25 UTC (rev 2775) +++ csw/mgar/pkg/bdb44/trunk/files/CSWbdb44-doc.prototype 2009-01-09 21:26:39 UTC (rev 2776) @@ -1,1544 +0,0 @@ -d none /opt/csw/bdb44 0755 root bin -d none /opt/csw/bdb44/docs 0755 root bin -d none /opt/csw/bdb44/docs/api_c 0755 root bin -f none /opt/csw/bdb44/docs/api_c/api_core.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/c_pindex.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_associate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_compact.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_del.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_err.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_fd.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_get_byteswapped.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_get_mpf.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_get_type.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_getenv.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_join.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_key_range.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_rename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_alloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_append_recno.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_bt_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_bt_minkey.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_bt_prefix.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_dup_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_encrypt.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_errcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_errfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_errpfx.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_feedback.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_h_ffactor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_h_hash.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_h_nelem.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_lorder.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_msgcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_msgfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_pagesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_paniccall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_q_extentsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_re_delim.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_re_len.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_re_pad.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_set_re_source.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_truncate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_upgrade.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/db_verify.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_count.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_del.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_dup.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbc_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbm.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbt_bulk.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbt_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/dbt_package.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_dbremove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_dbrename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_err.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_failchk.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_fileid_reset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_lsn_reset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_alloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_app_dispatch.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_data_dir.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_encrypt.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_errcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_errfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_errpfx.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_feedback.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_isalive.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lg_bsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lg_dir.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lg_max.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lg_mode.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lg_regionmax.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lk_conflicts.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lk_detect.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lk_max_lockers.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lk_max_locks.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_lk_max_objects.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_mp_mmapsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_msgcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_msgfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_paniccall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_rpc_server.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_shm_key.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_thread_id.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_thread_id_string.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_timeout.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_tmp_dir.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_tx_max.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_tx_timestamp.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_set_verbose.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_strerror.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/env_version.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/frame.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/hsearch.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_detect.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_id.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_id_free.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lock_vec.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_archive.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_file.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_flush.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_printf.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/log_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/logc_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/logc_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/logc_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/lsn_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fclose.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fcreate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fget.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fopen.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fput.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_fsync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_maxwrite.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_openfd.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_register.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_clear_len.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_fileid.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_ftype.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_lsn_offset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_maxsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_pgcookie.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_set_priority.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/memp_trickle.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mempfile_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_alloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_free.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_lock.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_set_align.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_set_max.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_set_tas_spins.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/mutex_unlock.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/object.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_elect.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_limit.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_message.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_set_config.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_start.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/rep_transport.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_initial_value.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_set_cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_set_range.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/seq_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_dirfree.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_dirlist.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_exists.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_free.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_fsync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_ftruncate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_ioinfo.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_malloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_map.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_pread.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_pwrite.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_read.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_realloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_rename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_seek.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_sleep.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_unlink.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_unmap.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_write.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/set_func_yield.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_abort.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_begin.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_checkpoint.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_commit.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_discard.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_id.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_prepare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_recover.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_set_name.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_set_timeout.html 0444 root bin -f none /opt/csw/bdb44/docs/api_c/txn_stat.html 0444 root bin -d none /opt/csw/bdb44/docs/api_cxx 0755 root bin -f none /opt/csw/bdb44/docs/api_cxx/api_core.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/cxx_pindex.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_associate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_compact.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_del.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_err.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_fd.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_get_byteswapped.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_get_mpf.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_get_type.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_getenv.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_join.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_key_range.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_rename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_alloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_append_recno.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_bt_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_bt_minkey.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_bt_prefix.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_dup_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_encrypt.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_errcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_errfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_error_stream.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_errpfx.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_feedback.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_h_ffactor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_h_hash.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_h_nelem.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_lorder.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_msg_stream.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_msgcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_msgfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_pagesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_paniccall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_q_extentsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_re_delim.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_re_len.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_re_pad.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_set_re_source.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_truncate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_upgrade.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/db_verify.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_count.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_del.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_dup.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbc_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbt_bulk_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbt_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/dbt_package.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/deadlock_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_dbremove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_dbrename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_err.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_failchk.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_fileid_reset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_lsn_reset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_alloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_app_dispatch.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_data_dir.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_encrypt.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_errcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_errfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_error_stream.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_errpfx.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_feedback.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_isalive.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lg_bsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lg_dir.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lg_max.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lg_mode.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lg_regionmax.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lk_conflicts.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lk_detect.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lk_max_lockers.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lk_max_locks.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_lk_max_objects.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_mp_mmapsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_msg_stream.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_msgcall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_msgfile.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_paniccall.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_rpc_server.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_shm_key.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_thread_id.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_thread_id_string.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_timeout.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_tmp_dir.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_tx_max.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_tx_timestamp.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_set_verbose.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_strerror.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/env_version.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/exc_package.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/except_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/frame.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_detect.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_id.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_id_free.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lock_vec.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lockng_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_archive.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_file.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_flush.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_printf.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/log_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/logc_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/logc_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/logc_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/lsn_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fclose.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fcreate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fget.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fopen.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fput.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_fsync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_maxwrite.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_openfd.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_register.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_clear_len.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_fileid.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_ftype.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_lsn_offset.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_maxsize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_pgcookie.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_set_priority.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/memp_trickle.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mempfile_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_alloc.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_free.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_lock.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_set_align.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_set_max.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_set_tas_spins.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/mutex_unlock.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/object.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/pindex.src 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_elect.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_limit.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_message.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_set_config.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_start.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/rep_transport.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/runrec_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_initial_value.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_set_cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_set_flags.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_set_range.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/seq_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_abort.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_begin.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_checkpoint.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_class.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_commit.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_discard.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_id.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_list.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_prepare.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_recover.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_set_name.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_set_timeout.html 0444 root bin -f none /opt/csw/bdb44/docs/api_cxx/txn_stat.html 0444 root bin -d none /opt/csw/bdb44/docs/api_tcl 0755 root bin -f none /opt/csw/bdb44/docs/api_tcl/api_tcl.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_count.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_del.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_get_join.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_get_type.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_is_byteswapped.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_join.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_rename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_stat.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_sync.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/db_truncate.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/dbc_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/dbc_del.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/dbc_dup.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/dbc_get.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/dbc_put.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/env_close.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/env_dbremove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/env_dbrename.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/env_open.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/env_remove.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/txn.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/txn_abort.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/txn_checkpoint.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/txn_commit.html 0444 root bin -f none /opt/csw/bdb44/docs/api_tcl/version.html 0444 root bin -d none /opt/csw/bdb44/docs/collections 0755 root bin -d none /opt/csw/bdb44/docs/collections/tutorial 0755 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/BasicProgram.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/BerkeleyDB-Java-Collections.pdf 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/Entity.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/SerializableEntity.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/SerializedObjectStorage.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/Summary.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/Tuple.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/UsingCollectionsAPI.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/UsingSecondaries.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/UsingStoredCollections.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/addingdatabaseitems.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/collectionOverview.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/collectionswithentities.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/createbindingscollections.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/creatingentitybindings.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/developing.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/entitieswithcollections.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/handlingexceptions.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/implementingmain.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/index.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/indexedcollections.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/openclasscatalog.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/opendatabases.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/opendbenvironment.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/openingforeignkeys.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/removingredundantvalueclasses.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/retrievingbyindexkey.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/retrievingdatabaseitems.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/sortedcollections.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/transientfieldsinbinding.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/tuple-serialentitybindings.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/tuplekeybindings.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/tupleswithkeycreators.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/tutorialintroduction.html 0444 root bin -f none /opt/csw/bdb44/docs/collections/tutorial/usingtransactions.html 0444 root bin -d none /opt/csw/bdb44/docs/gsg 0755 root bin -d none /opt/csw/bdb44/docs/gsg/C 0755 root bin -f none /opt/csw/bdb44/docs/gsg/C/BerkeleyDB-Core-C-GSG.pdf 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/CoreCursorUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/CoreDBAdmin.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/CoreDbUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/CoreEnvUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/Cursors.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/DB.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/DBEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/DBOpenFlags.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/DbUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/DeleteEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/Positioning.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/PutEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/ReplacingEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/accessmethods.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/btree.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/concepts.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/coredbclose.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/coreindexusage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/cstructs.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/databaseLimits.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/dbErrorReporting.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/dbconfig.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/environments.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/gettingit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/index.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/indexes.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/introduction.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/joins.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/keyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/readSecondary.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/returns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/secondaryCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/secondaryDelete.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/C/usingDbt.html 0444 root bin -d none /opt/csw/bdb44/docs/gsg/CXX 0755 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/BerkeleyDB-Core-Cxx-GSG.pdf 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/CoreCursorUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/CoreDBAdmin.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/CoreDbCXXUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/CoreEnvUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/Cursors.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/DB.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/DBEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/DBOpenFlags.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/DbCXXUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/DeleteEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/Positioning.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/PutEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/ReplacingEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/accessmethods.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/btree.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/concepts.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/coreExceptions.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/coredbclose.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/coreindexusage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/databaseLimits.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/dbErrorReporting.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/dbconfig.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/environments.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/gettingit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/index.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/indexes.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/introduction.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/joins.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/keyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/readSecondary.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/returns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/secondaryCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/secondaryDelete.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/CXX/usingDbt.html 0444 root bin -d none /opt/csw/bdb44/docs/gsg/JAVA 0755 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/BerkeleyDB-Core-JAVA-GSG.pdf 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/CoreEnvUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/CoreJavaUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/Cursors.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/DB.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/DBAdmin.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/DBEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/DeleteEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/Positioning.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/PutEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/ReplacingEntryWCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/accessmethods.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/bindAPI.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/btree.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/concepts.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/coreExceptions.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/coredbclose.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/cursorJavaUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/databaseLimits.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/dbErrorReporting.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/db_config.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/dbconfig.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/dbtJavaUsage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/environments.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/gettingit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/index.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/indexes.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/introduction.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/javaindexusage.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/joins.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/keyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/readSecondary.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/returns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/secondaryCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/secondaryDelete.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/secondaryProps.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg/JAVA/usingDbt.html 0444 root bin -d none /opt/csw/bdb44/docs/gsg_txn 0755 root bin -d none /opt/csw/bdb44/docs/gsg_txn/C 0755 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/BerkeleyDB-Core-C-Txn.pdf 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/abortresults.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/architectrecovery.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/autocommit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/backuprestore.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/blocking_deadlocks.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/deadlock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/enabletxn.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/envopen.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/filemanagement.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/hotfailover.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/index.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/inmem_txnexample_c.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/introduction.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/isolation.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/lockingsubsystem.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/logconfig.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/logfileremoval.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/maxtxns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/nestedtxn.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/perftune-intro.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/readblock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/readmodifywrite.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/recovery-intro.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/recovery.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/reversesplit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/rwlocks1.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/simplelock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/txn_ccursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/txnconcurrency.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/txncursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/txnexample_c.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/txnindices.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/txnnowait.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/usingtxns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/wrapup.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/C/writeblock.jpg 0444 root bin -d none /opt/csw/bdb44/docs/gsg_txn/CXX 0755 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/BerkeleyDB-Core-Cxx-Txn.pdf 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/abortresults.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/architectrecovery.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/autocommit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/backuprestore.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/blocking_deadlocks.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/deadlock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/enabletxn.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/envopen.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/filemanagement.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/hotfailover.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/index.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/inmem_txnexample_c.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/introduction.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/isolation.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/lockingsubsystem.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/logconfig.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/logfileremoval.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/maxtxns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/nestedtxn.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/perftune-intro.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/readblock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/readmodifywrite.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/recovery-intro.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/recovery.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/reversesplit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/rwlocks1.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/simplelock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/txn_ccursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/txnconcurrency.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/txncursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/txnexample_c.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/txnindices.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/txnnowait.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/usingtxns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/wrapup.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/CXX/writeblock.jpg 0444 root bin -d none /opt/csw/bdb44/docs/gsg_txn/JAVA 0755 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/BerkeleyDB-Core-JAVA-Txn.pdf 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/abortresults.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/architectrecovery.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/autocommit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/backuprestore.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/blocking_deadlocks.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/deadlock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/enabletxn.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/envopen.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/filemanagement.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/gettingStarted.css 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/hotfailover.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/index.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/inmem_txnexample_java.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/introduction.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/isolation.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/lockingsubsystem.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/logconfig.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/logfileremoval.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/maxtxns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/nestedtxn.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/perftune-intro.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/preface.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/readblock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/readmodifywrite.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/recovery-intro.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/recovery.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/reversesplit.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/rwlocks1.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/simplelock.jpg 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/txn_ccursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/txnconcurrency.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/txncursor.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/txnexample_java.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/txnindices.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/txnnowait.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/usingtxns.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/wrapup.html 0444 root bin -f none /opt/csw/bdb44/docs/gsg_txn/JAVA/writeblock.jpg 0444 root bin -d none /opt/csw/bdb44/docs/images 0755 root bin -f none /opt/csw/bdb44/docs/images/api.gif 0444 root bin -f none /opt/csw/bdb44/docs/images/next.gif 0444 root bin -f none /opt/csw/bdb44/docs/images/prev.gif 0444 root bin -f none /opt/csw/bdb44/docs/images/ps.gif 0444 root bin -f none /opt/csw/bdb44/docs/images/ref.gif 0444 root bin -f none /opt/csw/bdb44/docs/images/sleepycat.gif 0444 root bin -f none /opt/csw/bdb44/docs/index.html 0444 root bin -d none /opt/csw/bdb44/docs/java 0755 root bin -f none /opt/csw/bdb44/docs/java/allclasses-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/allclasses-noframe.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com 0755 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat 0755 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/bind 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/ByteArrayBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/EntityBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/EntryBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/RecordNumberBinding.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/bind/class-use 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/class-use/ByteArrayBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/class-use/EntityBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/class-use/EntryBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/class-use/RecordNumberBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/package-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/package-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/package-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/package-use.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/ClassCatalog.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/SerialBase.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/SerialBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/SerialInput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/SerialOutput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/SerialSerialBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/SerialSerialKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/StoredClassCatalog.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/TupleSerialBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/TupleSerialKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/TupleSerialMarshalledBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/TupleSerialMarshalledKeyCreator.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/ClassCatalog.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/SerialBase.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/SerialBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/SerialInput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/SerialOutput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/SerialSerialBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/SerialSerialKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/StoredClassCatalog.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/TupleSerialBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/TupleSerialKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/TupleSerialMarshalledBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/class-use/TupleSerialMarshalledKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/package-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/package-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/package-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/serial/package-use.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/BooleanBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/ByteBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/CharacterBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/DoubleBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/FloatBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/IntegerBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/LongBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/MarshalledTupleEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/MarshalledTupleKeyEntity.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/ShortBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/StringBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleBase.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleInput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleInputBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleMarshalledBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleOutput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleTupleBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleTupleKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleTupleMarshalledBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/TupleTupleMarshalledKeyCreator.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/BooleanBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/ByteBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/CharacterBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/DoubleBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/FloatBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/IntegerBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/LongBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/MarshalledTupleEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/MarshalledTupleKeyEntity.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/ShortBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/StringBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleBase.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleInput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleInputBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleMarshalledBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleOutput.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleTupleBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleTupleKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleTupleMarshalledBinding.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/class-use/TupleTupleMarshalledKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/package-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/package-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/package-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/bind/tuple/package-use.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/collections 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/CurrentTransaction.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/MapEntryParameter.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/PrimaryKeyAssigner.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredCollection.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredCollections.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredContainer.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredEntrySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredIterator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredKeySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredList.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredMap.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredSortedEntrySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredSortedKeySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredSortedMap.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredSortedValueSet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/StoredValueSet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/TransactionRunner.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/TransactionWorker.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/TupleSerialFactory.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/CurrentTransaction.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/MapEntryParameter.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/PrimaryKeyAssigner.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredCollection.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredCollections.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredContainer.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredEntrySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredIterator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredKeySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredList.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredMap.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredSortedEntrySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredSortedKeySet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredSortedMap.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredSortedValueSet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/StoredValueSet.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/TransactionRunner.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/TransactionWorker.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/class-use/TupleSerialFactory.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/package-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/package-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/package-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/collections/package-use.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/db 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/BtreePrefixCalculator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/BtreeStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CacheFile.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CacheFilePriority.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CacheFileStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CacheStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CheckpointConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CompactConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CompactStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/CursorConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Database.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/DatabaseConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/DatabaseEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/DatabaseException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/DatabaseStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/DatabaseType.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/DeadlockException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Environment.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/EnvironmentConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ErrorHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/FeedbackHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/HashStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Hasher.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/JoinConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/JoinCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/KeyRange.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Lock.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockDetectMode.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockMode.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockNotGrantedException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockOperation.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockRequest.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockRequestMode.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LockStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LogCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LogRecordHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LogSequenceNumber.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/LogStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MemoryException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MessageHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MultipleDataEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MultipleEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MultipleKeyDataEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MultipleRecnoDataEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/MutexStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/OperationStatus.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/PanicHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/PreparedTransaction.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/QueueStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/RecordNumberAppender.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/RecoveryOperation.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationDuplicateMasterException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationHandleDeadException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationHoldElectionException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationJoinFailureException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationLockoutException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationSiteUnavailableException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationStatus.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/ReplicationTransport.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/RunRecoveryException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/SecondaryConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/SecondaryCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/SecondaryDatabase.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/SecondaryKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Sequence.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/SequenceConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/SequenceStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/StatsConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/Transaction.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/TransactionConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/TransactionStats.Active.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/TransactionStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/VerifyConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/VersionMismatchException.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/BtreePrefixCalculator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/BtreeStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CacheFile.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CacheFilePriority.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CacheFileStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CacheStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CheckpointConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CompactConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CompactStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/CursorConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Database.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/DatabaseConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/DatabaseEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/DatabaseException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/DatabaseStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/DatabaseType.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/DeadlockException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Environment.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/EnvironmentConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ErrorHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/FeedbackHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/HashStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Hasher.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/JoinConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/JoinCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/KeyRange.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Lock.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockDetectMode.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockMode.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockNotGrantedException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockOperation.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockRequest.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockRequestMode.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LockStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LogCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LogRecordHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LogSequenceNumber.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/LogStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MemoryException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MessageHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MultipleDataEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MultipleEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MultipleKeyDataEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MultipleRecnoDataEntry.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/MutexStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/OperationStatus.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/PanicHandler.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/PreparedTransaction.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/QueueStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/RecordNumberAppender.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/RecoveryOperation.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationDuplicateMasterException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationHandleDeadException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationHoldElectionException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationJoinFailureException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationLockoutException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationSiteUnavailableException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationStatus.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/ReplicationTransport.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/RunRecoveryException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/SecondaryConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/SecondaryCursor.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/SecondaryDatabase.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/SecondaryKeyCreator.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Sequence.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/SequenceConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/SequenceStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/StatsConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/Transaction.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/TransactionConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/TransactionStats.Active.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/TransactionStats.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/VerifyConfig.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/class-use/VersionMismatchException.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/package-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/package-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/package-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/db/package-use.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/util 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/ExceptionUnwrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/ExceptionWrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/FastInputStream.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/FastOutputStream.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/IOExceptionWrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/RuntimeExceptionWrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/UtfOps.html 0444 root bin -d none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use 0755 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/ExceptionUnwrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/ExceptionWrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/FastInputStream.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/FastOutputStream.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/IOExceptionWrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/RuntimeExceptionWrapper.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/class-use/UtfOps.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/package-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/package-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/package-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/com/sleepycat/util/package-use.html 0444 root bin -f none /opt/csw/bdb44/docs/java/constant-values.html 0444 root bin -f none /opt/csw/bdb44/docs/java/deprecated-list.html 0444 root bin -f none /opt/csw/bdb44/docs/java/help-doc.html 0444 root bin -f none /opt/csw/bdb44/docs/java/index-all.html 0444 root bin -f none /opt/csw/bdb44/docs/java/index.html 0444 root bin -f none /opt/csw/bdb44/docs/java/overview-frame.html 0444 root bin -f none /opt/csw/bdb44/docs/java/overview-summary.html 0444 root bin -f none /opt/csw/bdb44/docs/java/overview-tree.html 0444 root bin -f none /opt/csw/bdb44/docs/java/package-list 0444 root bin -f none /opt/csw/bdb44/docs/java/packages.html 0444 root bin -d none /opt/csw/bdb44/docs/java/resources 0755 root bin -f none /opt/csw/bdb44/docs/java/resources/inherit.gif 0444 root bin -f none /opt/csw/bdb44/docs/java/serialized-form.html 0444 root bin -f none /opt/csw/bdb44/docs/java/style.css 0444 root bin -d none /opt/csw/bdb44/docs/ref 0755 root bin -d none /opt/csw/bdb44/docs/ref/am 0755 root bin -f none /opt/csw/bdb44/docs/ref/am/close.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/count.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/curclose.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/curdel.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/curdup.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/curget.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/curput.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/cursor.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/delete.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/get.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/join.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/open.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/opensub.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/ops.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/put.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/second.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/second.javas 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/stat.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/sync.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/truncate.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/upgrade.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am/verify.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/am_conf 0755 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/bt_compare.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/bt_minkey.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/bt_prefix.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/bt_recnum.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/byteorder.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/cachesize.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/dup.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/extentsize.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/h_ffactor.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/h_hash.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/h_nelem.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/logrec.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/malloc.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/pagesize.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/re_source.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/recno.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/renumber.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_conf/select.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/am_misc 0755 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/align.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/dbsizes.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/diskspace.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/error.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/get_bulk.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/partial.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/perm.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/stability.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/struct.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/am_misc/tune.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/apprec 0755 root bin -f none /opt/csw/bdb44/docs/ref/apprec/auto.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/apprec/config.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/apprec/def.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/apprec/intro.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/arch 0755 root bin -f none /opt/csw/bdb44/docs/ref/arch/apis.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/arch/bigpic.gif 0444 root bin -f none /opt/csw/bdb44/docs/ref/arch/bigpic.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/arch/progmodel.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/arch/script.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/arch/smallpic.gif 0444 root bin -f none /opt/csw/bdb44/docs/ref/arch/utilities.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/build_unix 0755 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/aix.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/conf.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/flags.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/freebsd.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/hpux.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/install.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/irix.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/linux.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/macosx.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/notes.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/osf1.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/qnx.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/sco.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/shlib.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/small.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/solaris.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/sunos.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/test.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_unix/ultrix.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/build_vxworks 0755 root bin -f none /opt/csw/bdb44/docs/ref/build_vxworks/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_vxworks/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_vxworks/introae.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_vxworks/notes.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/build_win 0755 root bin -f none /opt/csw/bdb44/docs/ref/build_win/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_win/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_win/notes.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_win/small.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/build_win/test.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/cam 0755 root bin -f none /opt/csw/bdb44/docs/ref/cam/app.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/cam/fail.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/cam/intro.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/debug 0755 root bin -f none /opt/csw/bdb44/docs/ref/debug/common.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/debug/compile.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/debug/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/debug/printlog.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/debug/runtime.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/distrib 0755 root bin -f none /opt/csw/bdb44/docs/ref/distrib/layout.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/distrib/port.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/dumpload 0755 root bin -f none /opt/csw/bdb44/docs/ref/dumpload/format.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/dumpload/text.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/dumpload/utility.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/env 0755 root bin -f none /opt/csw/bdb44/docs/ref/env/create.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/db_config.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/encrypt.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/error.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/naming.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/open.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/region.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/remote.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/env/security.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/ext 0755 root bin -f none /opt/csw/bdb44/docs/ref/ext/mod.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/ext/perl.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/ext/php.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/install 0755 root bin -f none /opt/csw/bdb44/docs/ref/install/file.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/install/magic.s5.be.txt 0444 root bin -f none /opt/csw/bdb44/docs/ref/install/magic.s5.le.txt 0444 root bin -f none /opt/csw/bdb44/docs/ref/install/magic.txt 0444 root bin -f none /opt/csw/bdb44/docs/ref/install/multiple.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/intro 0755 root bin -f none /opt/csw/bdb44/docs/ref/intro/data.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/dbis.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/dbisnot.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/distrib.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/need.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/products.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/terrain.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/what.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/intro/where.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/java 0755 root bin -f none /opt/csw/bdb44/docs/ref/java/compat.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/java/conf.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/java/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/java/program.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/lock 0755 root bin -f none /opt/csw/bdb44/docs/ref/lock/am_conv.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/cam_conv.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/config.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/dead.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/deaddbg.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/max.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/nondb.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/notxn.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/page.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/stdmode.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/timeout.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/lock/twopl.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/log 0755 root bin -f none /opt/csw/bdb44/docs/ref/log/config.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/log/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/log/limits.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/mp 0755 root bin -f none /opt/csw/bdb44/docs/ref/mp/config.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/mp/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/pindex.src 0444 root bin -d none /opt/csw/bdb44/docs/ref/program 0755 root bin -f none /opt/csw/bdb44/docs/ref/program/appsignals.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/cache.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/compatible.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/copy.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/environ.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/errorret.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/mt.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/namespace.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/ram.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/runtime.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/scope.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/program/solaris.txt 0444 root bin -d none /opt/csw/bdb44/docs/ref/refs 0755 root bin -f none /opt/csw/bdb44/docs/ref/refs/bdb_usenix.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/refs/bdb_usenix.ps 0444 root bin -f none /opt/csw/bdb44/docs/ref/refs/embedded.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/refs/hash_usenix.ps 0444 root bin -f none /opt/csw/bdb44/docs/ref/refs/libtp_usenix.ps 0444 root bin -f none /opt/csw/bdb44/docs/ref/refs/refs.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/refs/witold.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/rep 0755 root bin -f none /opt/csw/bdb44/docs/ref/rep/app.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/bulk.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/comm.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/elect.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/ex.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/ex_comm.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/ex_rq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/faq.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/id.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/init.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/intro.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/mastersync.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/newsite.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/partition.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/pri.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rep/trans.html 0444 root bin -d none /opt/csw/bdb44/docs/ref/rpc 0755 root bin -f none /opt/csw/bdb44/docs/ref/rpc/client.html 0444 root bin -f none /opt/csw/bdb44/docs/ref/rpc/faq.html 0444 root bin @@ Diff output truncated at 100000 characters. @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 9 22:34:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 09 Jan 2009 21:34:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2777] csw/mgar/pkg Message-ID: Revision: 2777 http://gar.svn.sourceforge.net/gar/?rev=2777&view=rev Author: dmichelsen Date: 2009-01-09 21:34:40 +0000 (Fri, 09 Jan 2009) Log Message: ----------- libiconv: First commit, work in Phils' patches later Modified Paths: -------------- csw/mgar/pkg/libiconv/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libiconv/ csw/mgar/pkg/libiconv/branches/ csw/mgar/pkg/libiconv/tags/ csw/mgar/pkg/libiconv/trunk/ Property changes on: csw/mgar/pkg/libiconv/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/libiconv/trunk/Makefile =================================================================== --- csw/branches/dam/automatic-multiarch-compile/lib/libiconv/Makefile 2009-01-09 21:26:39 UTC (rev 2776) +++ csw/mgar/pkg/libiconv/trunk/Makefile 2009-01-09 21:34:40 UTC (rev 2777) @@ -134,7 +134,7 @@ @echo " ==> Cleaning bootstrap" @rm -rf $(BOOTSTRAPDIR) -include ../category.mk +include gar/category.mk # Bootstrap: # # Use gxgettext instead of xgettext, gmsgmerge instead of msgmerge This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Fri Jan 9 22:44:29 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Fri, 09 Jan 2009 21:44:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2778] csw/mgar/pkg Message-ID: Revision: 2778 http://gar.svn.sourceforge.net/gar/?rev=2778&view=rev Author: wbonnet Date: 2009-01-09 21:44:29 +0000 (Fri, 09 Jan 2009) Log Message: ----------- Move libxcb under x11 Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/x11/libxcb/ Removed Paths: ------------- csw/mgar/pkg/libxcb/ Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxcb/trunk/Makefile 2009-01-09 21:34:40 UTC (rev 2777) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-01-09 21:44:29 UTC (rev 2778) @@ -1,6 +1,6 @@ GARNAME = libxcb GARVERSION = 1.1 -CATEGORIES = lib +CATEGORIES = x11 DESCRIPTION = The XCB library define BLURB @@ -14,26 +14,18 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -DISTFILES += CSWlibxcb.gspec CSWlibxcb.prototype CSWlibxcb.depend -DISTFILES += CSWlibxcbdev.gspec CSWlibxcbdev.prototype CSWlibxcbdev.depend -# DISTFILES += $(call admfiles,CSWlibxcb, depend) +SPKG_DESC_CSWlibxcb = The XCB library +SPKG_DESC_CSWlibxcbdevel = The XCB library development package -TEST_SCRIPTS = none +DISTFILES += $(call admfiles,CSWlibxcbdevel, ) +DISTFILES += $(call admfiles,CSWlibxcb, ) +PKGFILES_CSWlibxcbdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibxcbdevel += $(prefix)/X11/include/.* +PKGFILES_CSWlibxcbdevel += $(prefix)/X11/lib/.*\.a +PKGFILES_CSWlibxcbdevel += $(prefix)/X11/lib/pkgconfig/.* + include gar/category.mk -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -D__solaris__ -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib -export CFLAGS CXXFLAGS LDFLAGS -GREP = ggrep - -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man - -test-none: - @$(MAKECOOKIE) - -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Fri Jan 9 22:46:36 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Fri, 09 Jan 2009 21:46:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[2779] csw/mgar/pkg/x11/libxcb/trunk/files Message-ID: Revision: 2779 http://gar.svn.sourceforge.net/gar/?rev=2779&view=rev Author: wbonnet Date: 2009-01-09 21:46:36 +0000 (Fri, 09 Jan 2009) Log Message: ----------- delete depends and prototype files Added Paths: ----------- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec Removed Paths: ------------- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.depend csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.prototype csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.depend csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.gspec csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.prototype Deleted: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.depend =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.depend 2009-01-09 21:44:29 UTC (rev 2778) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.depend 2009-01-09 21:46:36 UTC (rev 2779) @@ -1,2 +0,0 @@ -P CSWlibxau -P CSWlibxdmcp Deleted: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.prototype =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.prototype 2009-01-09 21:44:29 UTC (rev 2778) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.prototype 2009-01-09 21:46:36 UTC (rev 2779) @@ -1,98 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libxcb-composite.la 0755 root bin -f none /opt/csw/lib/libxcb-composite.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-composite.so.0=libxcb-composite.so.0.0.0 -s none /opt/csw/lib/libxcb-composite.so=libxcb-composite.so.0.0.0 -f none /opt/csw/lib/libxcb-damage.la 0755 root bin -f none /opt/csw/lib/libxcb-damage.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-damage.so.0=libxcb-damage.so.0.0.0 -s none /opt/csw/lib/libxcb-damage.so=libxcb-damage.so.0.0.0 -f none /opt/csw/lib/libxcb-dpms.la 0755 root bin -f none /opt/csw/lib/libxcb-dpms.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-dpms.so.0=libxcb-dpms.so.0.0.0 -s none /opt/csw/lib/libxcb-dpms.so=libxcb-dpms.so.0.0.0 -f none /opt/csw/lib/libxcb-glx.la 0755 root bin -f none /opt/csw/lib/libxcb-glx.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-glx.so.0=libxcb-glx.so.0.0.0 -s none /opt/csw/lib/libxcb-glx.so=libxcb-glx.so.0.0.0 -f none /opt/csw/lib/libxcb-randr.la 0755 root bin -f none /opt/csw/lib/libxcb-randr.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-randr.so.0=libxcb-randr.so.0.0.0 -s none /opt/csw/lib/libxcb-randr.so=libxcb-randr.so.0.0.0 -f none /opt/csw/lib/libxcb-record.la 0755 root bin -f none /opt/csw/lib/libxcb-record.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-record.so.0=libxcb-record.so.0.0.0 -s none /opt/csw/lib/libxcb-record.so=libxcb-record.so.0.0.0 -f none /opt/csw/lib/libxcb-render.la 0755 root bin -f none /opt/csw/lib/libxcb-render.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-render.so.0=libxcb-render.so.0.0.0 -s none /opt/csw/lib/libxcb-render.so=libxcb-render.so.0.0.0 -f none /opt/csw/lib/libxcb-res.la 0755 root bin -f none /opt/csw/lib/libxcb-res.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-res.so.0=libxcb-res.so.0.0.0 -s none /opt/csw/lib/libxcb-res.so=libxcb-res.so.0.0.0 -f none /opt/csw/lib/libxcb-screensaver.la 0755 root bin -f none /opt/csw/lib/libxcb-screensaver.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-screensaver.so.0=libxcb-screensaver.so.0.0.0 -s none /opt/csw/lib/libxcb-screensaver.so=libxcb-screensaver.so.0.0.0 -f none /opt/csw/lib/libxcb-shape.la 0755 root bin -f none /opt/csw/lib/libxcb-shape.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-shape.so.0=libxcb-shape.so.0.0.0 -s none /opt/csw/lib/libxcb-shape.so=libxcb-shape.so.0.0.0 -f none /opt/csw/lib/libxcb-shm.la 0755 root bin -f none /opt/csw/lib/libxcb-shm.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-shm.so.0=libxcb-shm.so.0.0.0 -s none /opt/csw/lib/libxcb-shm.so=libxcb-shm.so.0.0.0 -f none /opt/csw/lib/libxcb-sync.la 0755 root bin -f none /opt/csw/lib/libxcb-sync.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-sync.so.0=libxcb-sync.so.0.0.0 -s none /opt/csw/lib/libxcb-sync.so=libxcb-sync.so.0.0.0 -f none /opt/csw/lib/libxcb-xevie.la 0755 root bin -f none /opt/csw/lib/libxcb-xevie.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xevie.so.0=libxcb-xevie.so.0.0.0 -s none /opt/csw/lib/libxcb-xevie.so=libxcb-xevie.so.0.0.0 -f none /opt/csw/lib/libxcb-xf86dri.la 0755 root bin -f none /opt/csw/lib/libxcb-xf86dri.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xf86dri.so.0=libxcb-xf86dri.so.0.0.0 -s none /opt/csw/lib/libxcb-xf86dri.so=libxcb-xf86dri.so.0.0.0 -f none /opt/csw/lib/libxcb-xfixes.la 0755 root bin -f none /opt/csw/lib/libxcb-xfixes.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xfixes.so.0=libxcb-xfixes.so.0.0.0 -s none /opt/csw/lib/libxcb-xfixes.so=libxcb-xfixes.so.0.0.0 -f none /opt/csw/lib/libxcb-xinerama.la 0755 root bin -f none /opt/csw/lib/libxcb-xinerama.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xinerama.so.0=libxcb-xinerama.so.0.0.0 -s none /opt/csw/lib/libxcb-xinerama.so=libxcb-xinerama.so.0.0.0 -f none /opt/csw/lib/libxcb-xlib.la 0755 root bin -f none /opt/csw/lib/libxcb-xlib.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xlib.so.0=libxcb-xlib.so.0.0.0 -s none /opt/csw/lib/libxcb-xlib.so=libxcb-xlib.so.0.0.0 -f none /opt/csw/lib/libxcb-xprint.la 0755 root bin -f none /opt/csw/lib/libxcb-xprint.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xprint.so.0=libxcb-xprint.so.0.0.0 -s none /opt/csw/lib/libxcb-xprint.so=libxcb-xprint.so.0.0.0 -f none /opt/csw/lib/libxcb-xtest.la 0755 root bin -f none /opt/csw/lib/libxcb-xtest.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xtest.so.0=libxcb-xtest.so.0.0.0 -s none /opt/csw/lib/libxcb-xtest.so=libxcb-xtest.so.0.0.0 -f none /opt/csw/lib/libxcb-xv.la 0755 root bin -f none /opt/csw/lib/libxcb-xv.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xv.so.0=libxcb-xv.so.0.0.0 -s none /opt/csw/lib/libxcb-xv.so=libxcb-xv.so.0.0.0 -f none /opt/csw/lib/libxcb-xvmc.la 0755 root bin -f none /opt/csw/lib/libxcb-xvmc.so.0.0.0 0755 root bin -s none /opt/csw/lib/libxcb-xvmc.so.0=libxcb-xvmc.so.0.0.0 -s none /opt/csw/lib/libxcb-xvmc.so=libxcb-xvmc.so.0.0.0 -f none /opt/csw/lib/libxcb.la 0755 root bin -f none /opt/csw/lib/libxcb.so.1.0.0 0755 root bin -s none /opt/csw/lib/libxcb.so.1=libxcb.so.1.0.0 -s none /opt/csw/lib/libxcb.so=libxcb.so.1.0.0 -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/doc 0755 root bin -d none /opt/csw/share/doc/libxcb 0755 root bin -d none /opt/csw/share/doc/libxcb/tutorial 0755 root bin -f none /opt/csw/share/doc/libxcb/tutorial/index.html 0644 root bin -f none /opt/csw/share/doc/libxcb/tutorial/xcb.css 0644 root bin -i copyright=CSWlibxcb.copyright -i depend=CSWlibxcb.depend -i pkginfo=CSWlibxcb.pkginfo Deleted: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.depend =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.depend 2009-01-09 21:44:29 UTC (rev 2778) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.depend 2009-01-09 21:46:36 UTC (rev 2779) @@ -1 +0,0 @@ -P CSWlibxcb Deleted: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.gspec =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.gspec 2009-01-09 21:44:29 UTC (rev 2778) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.gspec 2009-01-09 21:46:36 UTC (rev 2779) @@ -1,4 +0,0 @@ -%var bitname libxcb_dev -%var pkgname CSWlibxcbdev -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.prototype =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.prototype 2009-01-09 21:44:29 UTC (rev 2778) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.prototype 2009-01-09 21:46:36 UTC (rev 2779) @@ -1,77 +0,0 @@ -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/xcb 0755 root bin -f none /opt/csw/include/xcb/bigreq.h 0644 root bin -f none /opt/csw/include/xcb/composite.h 0644 root bin -f none /opt/csw/include/xcb/damage.h 0644 root bin -f none /opt/csw/include/xcb/dpms.h 0644 root bin -f none /opt/csw/include/xcb/glx.h 0644 root bin -f none /opt/csw/include/xcb/randr.h 0644 root bin -f none /opt/csw/include/xcb/record.h 0644 root bin -f none /opt/csw/include/xcb/render.h 0644 root bin -f none /opt/csw/include/xcb/res.h 0644 root bin -f none /opt/csw/include/xcb/screensaver.h 0644 root bin -f none /opt/csw/include/xcb/shape.h 0644 root bin -f none /opt/csw/include/xcb/shm.h 0644 root bin -f none /opt/csw/include/xcb/sync.h 0644 root bin -f none /opt/csw/include/xcb/xc_misc.h 0644 root bin -f none /opt/csw/include/xcb/xcb.h 0644 root bin -f none /opt/csw/include/xcb/xcbext.h 0644 root bin -f none /opt/csw/include/xcb/xcbxlib.h 0644 root bin -f none /opt/csw/include/xcb/xevie.h 0644 root bin -f none /opt/csw/include/xcb/xf86dri.h 0644 root bin -f none /opt/csw/include/xcb/xfixes.h 0644 root bin -f none /opt/csw/include/xcb/xinerama.h 0644 root bin -f none /opt/csw/include/xcb/xprint.h 0644 root bin -f none /opt/csw/include/xcb/xproto.h 0644 root bin -f none /opt/csw/include/xcb/xtest.h 0644 root bin -f none /opt/csw/include/xcb/xv.h 0644 root bin -f none /opt/csw/include/xcb/xvmc.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libxcb-composite.a 0644 root bin -f none /opt/csw/lib/libxcb-damage.a 0644 root bin -f none /opt/csw/lib/libxcb-dpms.a 0644 root bin -f none /opt/csw/lib/libxcb-glx.a 0644 root bin -f none /opt/csw/lib/libxcb-randr.a 0644 root bin -f none /opt/csw/lib/libxcb-record.a 0644 root bin -f none /opt/csw/lib/libxcb-render.a 0644 root bin -f none /opt/csw/lib/libxcb-res.a 0644 root bin -f none /opt/csw/lib/libxcb-screensaver.a 0644 root bin -f none /opt/csw/lib/libxcb-shape.a 0644 root bin -f none /opt/csw/lib/libxcb-shm.a 0644 root bin -f none /opt/csw/lib/libxcb-sync.a 0644 root bin -f none /opt/csw/lib/libxcb-xevie.a 0644 root bin -f none /opt/csw/lib/libxcb-xf86dri.a 0644 root bin -f none /opt/csw/lib/libxcb-xfixes.a 0644 root bin -f none /opt/csw/lib/libxcb-xinerama.a 0644 root bin -f none /opt/csw/lib/libxcb-xlib.a 0644 root bin -f none /opt/csw/lib/libxcb-xprint.a 0644 root bin -f none /opt/csw/lib/libxcb-xtest.a 0644 root bin -f none /opt/csw/lib/libxcb-xv.a 0644 root bin -f none /opt/csw/lib/libxcb-xvmc.a 0644 root bin -f none /opt/csw/lib/libxcb.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/xcb-composite.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-damage.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-dpms.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-glx.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-randr.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-record.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-render.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-res.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-screensaver.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-shape.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-shm.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-sync.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xevie.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xf86dri.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xfixes.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xinerama.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xlib.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xprint.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xtest.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xv.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb-xvmc.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/xcb.pc 0644 root bin -i copyright=CSWlibxcbdev.copyright -i depend=CSWlibxcbdev.depend -i pkginfo=CSWlibxcbdev.pkginfo Copied: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec (from rev 2778, csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdev.gspec) =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec (rev 0) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec 2009-01-09 21:46:36 UTC (rev 2779) @@ -0,0 +1,4 @@ +%var bitname libxcb_dev +%var pkgname CSWlibxcbdev +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Fri Jan 9 22:48:13 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Fri, 09 Jan 2009 21:48:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2780] csw/mgar/pkg/x11/libxcb/trunk/ Message-ID: Revision: 2780 http://gar.svn.sourceforge.net/gar/?rev=2780&view=rev Author: wbonnet Date: 2009-01-09 21:48:13 +0000 (Fri, 09 Jan 2009) Log Message: ----------- Move to gar v2 Property Changed: ---------------- csw/mgar/pkg/x11/libxcb/trunk/ Property changes on: csw/mgar/pkg/x11/libxcb/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Sat Jan 10 15:36:36 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sat, 10 Jan 2009 14:36:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[2781] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 2781 http://gar.svn.sourceforge.net/gar/?rev=2781&view=rev Author: aigoshin Date: 2009-01-10 14:36:33 +0000 (Sat, 10 Jan 2009) Log Message: ----------- nginx: PROTOTYPE_FILTER Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/nginx/trunk/files/cswnginx Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-09 21:48:13 UTC (rev 2780) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-10 14:36:33 UTC (rev 2781) @@ -11,7 +11,7 @@ MASTER_SITES = http://sysoev.ru/nginx/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWnginx,) -DISTFILES += cswnginx cswnginx.xml svc-cswnginx +DISTFILES += cswnginx.xml svc-cswnginx # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz @@ -20,6 +20,7 @@ GARCOMPILER = GNU +#CONFIGURE_ARGS += --with-cpu-opt=pentiumpro CONFIGURE_ARGS += --prefix=$(prefix)/var/nginx CONFIGURE_ARGS += --conf-path=$(sysconfdir)/nginx/nginx.conf CONFIGURE_ARGS += --sbin-path=$(sbindir)/nginx @@ -42,11 +43,16 @@ TEST_SCRIPTS = +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/log$$$$/ { $$$$6 = "sys" } { print }' +#PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$/ { $$$$4 = "700" } { print }' + include gar/category.mk -NGINXDOC=CHANGES CHANGES.ru LICENSE README +NGINXDOC = CHANGES CHANGES.ru LICENSE README + post-install: + cp $(WORKDIR)/svc-cswnginx $(WORKDIR)/cswnginx ginstall -d $(DESTDIR)$(sysconfdir) ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib ginstall -d $(DESTDIR)$(docdir)/nginx Deleted: csw/mgar/pkg/nginx/trunk/files/cswnginx =================================================================== --- csw/mgar/pkg/nginx/trunk/files/cswnginx 2009-01-09 21:48:13 UTC (rev 2780) +++ csw/mgar/pkg/nginx/trunk/files/cswnginx 2009-01-10 14:36:33 UTC (rev 2781) @@ -1,112 +0,0 @@ -#!/bin/sh -# -# SMF Method file for nginx -# - -NGINX=/opt/csw/sbin/nginx -CFGFILE=/opt/csw/etc/nginx/nginx.conf -VARRUNX=/opt/csw/var/run/nginx -PIDFILE=${VARRUNX}/nginx.pid -PIDFILO=${VARRUNX}/nginx.pid.oldbin - -[ ! -f ${NGINX} ] && exit $NGINX -[ ! -f ${CFGFILE} ] && exit $CFGFILE - - -start() { - $NGINX - RETVAL=$? - return $RETVAL -} - -stop() { - killpidf -TERM $PIDFILO - killpidf -TERM -} - -check() { - MSG=`$NGINX -t 2>&1` - RETVAL=$? - [ $RETVAL -ne 0 ] && echo $MSG - return $RETVAL -} - -killpidf() { - if [ "$2" != "" ]; then - PIDF=$2 - else - PIDF=$PIDFILE - fi - if [ -s "$PIDF" ]; then - /bin/kill $1 `/usr/bin/cat $PIDF` - RETVAL=$? - else - RETVAL=1 - fi - return $RETVAL -} - -reload() { - killpidf -HUP - RETVAL=$? - return $RETVAL -} - -restart() { - stop - start - RETVAL=$? - return $RETVAL -} - -rotate() { - killpidf -USR1 - RETVAL=$? - return $RETVAL -} - -upgrade() -{ - killpidf -USR2 - RETVAL=$? - return $RETVAL -} - - -case "$1" in -start) - [ ! -d $VARRUNX ] && /bin/mkdir -p $VARRUNX - check - start - RETVAL=$? - ;; -stop) - stop - ;; -refresh|reload) - check - RETVAL=$? - [ $RETVAL -eq 0 ] && reload ||: - ;; -restart) - check - RETVAL=$? - [ $RETVAL -eq 0 ] && restart ||: - ;; -rotate) - rotate - RETVAL=$? - ;; -upgrade) - check - RETVAL=$? - [ $RETVAL -eq 0 ] && upgrade ||: - ;; -*) - echo "Usage: $0 {start|stop|refresh|reload|restart|rotate|upgrade}" - exit 1 - ;; -esac - -RETVAL=$? -exit $RETVAL This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Sat Jan 10 15:52:47 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sat, 10 Jan 2009 14:52:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[2782] csw/mgar/pkg/nginx/trunk/ Message-ID: Revision: 2782 http://gar.svn.sourceforge.net/gar/?rev=2782&view=rev Author: aigoshin Date: 2009-01-10 14:52:47 +0000 (Sat, 10 Jan 2009) Log Message: ----------- nginx: Changed to gar v2 Property Changed: ---------------- csw/mgar/pkg/nginx/trunk/ Property changes on: csw/mgar/pkg/nginx/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Sat Jan 10 16:54:08 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sat, 10 Jan 2009 15:54:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2783] csw/mgar/pkg/nginx/trunk/Makefile Message-ID: Revision: 2783 http://gar.svn.sourceforge.net/gar/?rev=2783&view=rev Author: aigoshin Date: 2009-01-10 15:54:08 +0000 (Sat, 10 Jan 2009) Log Message: ----------- nginx: PROTOTYPE_FILTER done Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-10 14:52:47 UTC (rev 2782) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-10 15:54:08 UTC (rev 2783) @@ -43,8 +43,7 @@ TEST_SCRIPTS = -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/log$$$$/ { $$$$6 = "sys" } { print }' -#PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$/ { $$$$4 = "700" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc\/(manifest|manifest\/site)))$$$$/ { $$$$6 = "sys" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Sat Jan 10 20:11:21 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sat, 10 Jan 2009 19:11:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[2784] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 2784 http://gar.svn.sourceforge.net/gar/?rev=2784&view=rev Author: aigoshin Date: 2009-01-10 19:11:21 +0000 (Sat, 10 Jan 2009) Log Message: ----------- nginx: switch to SUNPRO C Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-10 15:54:08 UTC (rev 2783) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-10 19:11:21 UTC (rev 2784) @@ -18,9 +18,11 @@ REQUIRED_PKGS = CSWosslrt CSWpcre CSWzlib -GARCOMPILER = GNU +CFLAGS = -#CONFIGURE_ARGS += --with-cpu-opt=pentiumpro +CONFIGURE_ARGS += --with-cpu-opt=pentium3 +CONFIGURE_ARGS += --with-cc-opt="-I/opt/csw/include -I/opt/csw/include/openssl" +CONFIGURE_ARGS += --with-ld-opt="-R$(ISALIBDIR) -R/opt/csw/lib -L/opt/csw/lib" CONFIGURE_ARGS += --prefix=$(prefix)/var/nginx CONFIGURE_ARGS += --conf-path=$(sysconfdir)/nginx/nginx.conf CONFIGURE_ARGS += --sbin-path=$(sbindir)/nginx @@ -31,8 +33,6 @@ CONFIGURE_ARGS += --http-proxy-temp-path=$(prefix)/var/spool/nginx/proxy CONFIGURE_ARGS += --error-log-path=$(prefix)/var/log/nginx/error.log CONFIGURE_ARGS += --http-log-path=$(prefix)/var/log/nginx/access.log -CONFIGURE_ARGS += --with-cc-opt="-I/opt/csw/include/openssl" -CONFIGURE_ARGS += --with-ld-opt="-L/opt/csw/lib" CONFIGURE_ARGS += --with-md5=YES CONFIGURE_ARGS += --with-sha1=YES CONFIGURE_ARGS += --with-http_ssl_module @@ -47,15 +47,14 @@ include gar/category.mk - NGINXDOC = CHANGES CHANGES.ru LICENSE README post-install: cp $(WORKDIR)/svc-cswnginx $(WORKDIR)/cswnginx + ginstall -d $(DESTDIR)$(sbindir) ginstall -d $(DESTDIR)$(sysconfdir) ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib ginstall -d $(DESTDIR)$(docdir)/nginx - ginstall -d $(DESTDIR)$(prefix)/sbin ginstall -d $(DESTDIR)$(prefix)/var/nginx ginstall -d $(DESTDIR)$(prefix)/var/nginx/sites ginstall -d $(DESTDIR)$(prefix)/var/log/nginx Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-10 15:54:08 UTC (rev 2783) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-10 19:11:21 UTC (rev 2784) @@ -1,7 +1,7 @@ %var bitname nginx %var pkgname CSWnginx %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE +%copyright url file://%{DESTDIR}/LICENSE %var SERVICE_CONF_FILES /opt/csw/etc/nginx/nginx.conf %include url file://%{PKGLIB}/smf_enabled.gspec %var RC_INIT_SCRIPT cswnginx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Jan 10 22:42:04 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 10 Jan 2009 21:42:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2785] csw/mgar/pkg/x11/libxcb/trunk Message-ID: Revision: 2785 http://gar.svn.sourceforge.net/gar/?rev=2785&view=rev Author: wbonnet Date: 2009-01-10 21:42:04 +0000 (Sat, 10 Jan 2009) Log Message: ----------- Fix package generation Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile csw/mgar/pkg/x11/libxcb/trunk/checksums csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.gspec csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec Added Paths: ----------- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdoc.gspec Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-01-10 19:11:21 UTC (rev 2784) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-01-10 21:42:04 UTC (rev 2785) @@ -16,8 +16,10 @@ SPKG_DESC_CSWlibxcb = The XCB library SPKG_DESC_CSWlibxcbdevel = The XCB library development package +SPKG_DESC_CSWlibxcbdoc = The XCB library documentation DISTFILES += $(call admfiles,CSWlibxcbdevel, ) +DISTFILES += $(call admfiles,CSWlibxcbdoc, ) DISTFILES += $(call admfiles,CSWlibxcb, ) PKGFILES_CSWlibxcbdevel = $(PKGFILES_DEVEL) @@ -25,6 +27,11 @@ PKGFILES_CSWlibxcbdevel += $(prefix)/X11/lib/.*\.a PKGFILES_CSWlibxcbdevel += $(prefix)/X11/lib/pkgconfig/.* +PKGFILES_CSWlibxcbdoc += $(prefix)/X11/share/doc/.* + +REQUIRED_PKGS_CSWlibxcbdevel = $(PREREQUISITE_BASE_PKGS) CSWlibxcb +REQUIRED_PKGS_CSWlibxcb = $(PREREQUISITE_BASE_PKGS) CSWlibxau CSWlibxdmcp + include gar/category.mk Modified: csw/mgar/pkg/x11/libxcb/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/checksums 2009-01-10 19:11:21 UTC (rev 2784) +++ csw/mgar/pkg/x11/libxcb/trunk/checksums 2009-01-10 21:42:04 UTC (rev 2785) @@ -1,7 +1,4 @@ 90e02378256d5dec96ddc6c7d72119b6 download/libxcb-1.1.tar.gz -ea7d268788deb990bedfee287f9ae322 download/CSWlibxcb.gspec -055a2b4f25737c1ab38f7d0c8253d69c download/CSWlibxcb.prototype -f67ee144d583911e04badd2598cac249 download/CSWlibxcb.depend -9f5722547dee7891ecf0819a34f19056 download/CSWlibxcbdev.gspec -ac2778e985dd666f7c366b8ca23174d7 download/CSWlibxcbdev.prototype -74ffa8b13cb65e9bdd22dca701d7f9d1 download/CSWlibxcbdev.depend +5ea9d5ef0b88062e38c0987c0ef48806 download/CSWlibxcbdevel.gspec +78e2027279d9012eb201138cf565d92a download/CSWlibxcbdoc.gspec +3a12038cc886e84f7e7a1d93dbe98c3a download/CSWlibxcb.gspec Modified: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.gspec =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.gspec 2009-01-10 19:11:21 UTC (rev 2784) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcb.gspec 2009-01-10 21:42:04 UTC (rev 2785) @@ -1,4 +1,4 @@ %var bitname libxcb %var pkgname CSWlibxcb %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec 2009-01-10 19:11:21 UTC (rev 2784) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdevel.gspec 2009-01-10 21:42:04 UTC (rev 2785) @@ -1,4 +1,4 @@ %var bitname libxcb_dev %var pkgname CSWlibxcbdev %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdoc.gspec =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdoc.gspec (rev 0) +++ csw/mgar/pkg/x11/libxcb/trunk/files/CSWlibxcbdoc.gspec 2009-01-10 21:42:04 UTC (rev 2785) @@ -0,0 +1,4 @@ +%var bitname libxcb_doc +%var pkgname CSWlibxcbdoc +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Jan 10 22:48:20 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 10 Jan 2009 21:48:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[2786] csw/mgar/pkg Message-ID: Revision: 2786 http://gar.svn.sourceforge.net/gar/?rev=2786&view=rev Author: wbonnet Date: 2009-01-10 21:48:20 +0000 (Sat, 10 Jan 2009) Log Message: ----------- Move xtrans under x11 Added Paths: ----------- csw/mgar/pkg/x11/xtrans/ Removed Paths: ------------- csw/mgar/pkg/xtrans/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Jan 10 22:56:18 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 10 Jan 2009 21:56:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[2787] csw/mgar/pkg/x11/xtrans/trunk Message-ID: Revision: 2787 http://gar.svn.sourceforge.net/gar/?rev=2787&view=rev Author: wbonnet Date: 2009-01-10 21:56:17 +0000 (Sat, 10 Jan 2009) Log Message: ----------- Fix Package generation Modified Paths: -------------- csw/mgar/pkg/x11/xtrans/trunk/Makefile csw/mgar/pkg/x11/xtrans/trunk/checksums csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.gspec Removed Paths: ------------- csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.depend csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.prototype Property Changed: ---------------- csw/mgar/pkg/x11/xtrans/trunk/ Property changes on: csw/mgar/pkg/x11/xtrans/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/x11/xtrans/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-01-10 21:48:20 UTC (rev 2786) +++ csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-01-10 21:56:17 UTC (rev 2787) @@ -1,6 +1,6 @@ GARNAME = xtrans GARVERSION = 1.2.2 -CATEGORIES = lib +CATEGORIES = x11 DESCRIPTION = X transport library define BLURB @@ -14,26 +14,19 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -# DISTFILES += CSWxtrans.gspec CSWxtrans.prototype CSWxtrans.depend -# DISTFILES += CSWxtransdev.gspec CSWxtransdev.prototype CSWxtransdev.depend -DISTFILES += $(call admfiles,CSWxtrans, depend) +SPKG_DESC_CSWxtrans = X transport library -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib +DISTFILES += $(call admfiles,CSWxtrans, ) -export CFLAGS CXXFLAGS LDFLAGS +#PKGFILES_CSWxtransdevel = $(PKGFILES_DEVEL) +#PKGFILES_CSWxtransdevel += $(prefix)/X11/include/.* +#PKGFILES_CSWxtransdevel += $(prefix)/X11/lib/.*\.a +#PKGFILES_CSWxtransdevel += $(prefix)/X11/lib/pkgconfig/.* -TEST_SCRIPTS = none +#PKGFILES_CSWxtransdoc += $(prefix)/X11/share/doc/.* -GREP = ggrep +#REQUIRED_PKGS_CSWxtransdevel = $(PREREQUISITE_BASE_PKGS) CSWxtrans +#REQUIRED_PKGS_CSWxtrans = $(PREREQUISITE_BASE_PKGS) CSWlibxau CSWlibxdmcp include gar/category.mk -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man - -test-none: - @$(MAKECOOKIE) - -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) Modified: csw/mgar/pkg/x11/xtrans/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/checksums 2009-01-10 21:48:20 UTC (rev 2786) +++ csw/mgar/pkg/x11/xtrans/trunk/checksums 2009-01-10 21:56:17 UTC (rev 2787) @@ -1,3 +1,2 @@ 1b9362b6c7577f1cd5009703949ac5d0 download/xtrans-1.2.2.tar.gz -d09062797ba9f323a797f61ea8a92886 download/CSWxtrans.gspec -d41d8cd98f00b204e9800998ecf8427e download/CSWxtrans.depend +c1c9b2429bbfb10c8c8c915cbf01ee93 download/CSWxtrans.gspec Modified: csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.gspec =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.gspec 2009-01-10 21:48:20 UTC (rev 2786) +++ csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.gspec 2009-01-10 21:56:17 UTC (rev 2787) @@ -1,4 +1,4 @@ %var bitname libxtrans %var pkgname CSWlibxtrans %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.prototype =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.prototype 2009-01-10 21:48:20 UTC (rev 2786) +++ csw/mgar/pkg/x11/xtrans/trunk/files/CSWxtrans.prototype 2009-01-10 21:56:17 UTC (rev 2787) @@ -1,18 +0,0 @@ -d none /opt/csw/include/X11 0755 root bin -d none /opt/csw/include/X11/Xtrans 0755 root bin -f none /opt/csw/include/X11/Xtrans/Xtrans.c 0644 root bin -f none /opt/csw/include/X11/Xtrans/Xtrans.h 0644 root bin -f none /opt/csw/include/X11/Xtrans/Xtransint.h 0644 root bin -f none /opt/csw/include/X11/Xtrans/Xtranslcl.c 0644 root bin -f none /opt/csw/include/X11/Xtrans/Xtranssock.c 0644 root bin -f none /opt/csw/include/X11/Xtrans/Xtranstli.c 0644 root bin -f none /opt/csw/include/X11/Xtrans/Xtransutil.c 0644 root bin -f none /opt/csw/include/X11/Xtrans/transport.c 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/xtrans.pc 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/aclocal 0755 root bin -f none /opt/csw/share/aclocal/xtrans.m4 0644 root bin -i copyright=CSWxtrans.copyright -i depend=CSWxtrans.depend -i pkginfo=CSWxtrans.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Jan 10 22:58:06 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 10 Jan 2009 21:58:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2788] csw/mgar/pkg/x11/xtrans/trunk/Makefile Message-ID: Revision: 2788 http://gar.svn.sourceforge.net/gar/?rev=2788&view=rev Author: wbonnet Date: 2009-01-10 21:58:05 +0000 (Sat, 10 Jan 2009) Log Message: ----------- Remove extra comments Modified Paths: -------------- csw/mgar/pkg/x11/xtrans/trunk/Makefile Modified: csw/mgar/pkg/x11/xtrans/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-01-10 21:56:17 UTC (rev 2787) +++ csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-01-10 21:58:05 UTC (rev 2788) @@ -18,15 +18,5 @@ DISTFILES += $(call admfiles,CSWxtrans, ) -#PKGFILES_CSWxtransdevel = $(PKGFILES_DEVEL) -#PKGFILES_CSWxtransdevel += $(prefix)/X11/include/.* -#PKGFILES_CSWxtransdevel += $(prefix)/X11/lib/.*\.a -#PKGFILES_CSWxtransdevel += $(prefix)/X11/lib/pkgconfig/.* - -#PKGFILES_CSWxtransdoc += $(prefix)/X11/share/doc/.* - -#REQUIRED_PKGS_CSWxtransdevel = $(PREREQUISITE_BASE_PKGS) CSWxtrans -#REQUIRED_PKGS_CSWxtrans = $(PREREQUISITE_BASE_PKGS) CSWlibxau CSWlibxdmcp - include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dam at opencsw.org Sat Jan 10 23:38:23 2009 From: dam at opencsw.org (Dagobert Michelsen) Date: Sat, 10 Jan 2009 23:38:23 +0100 Subject: [csw-devel] SF.net SVN: gar:[2784] csw/mgar/pkg/nginx/trunk In-Reply-To: References: Message-ID: Hi Andy, Am 10.01.2009 um 20:11 schrieb aigoshin at users.sourceforge.net: > -#CONFIGURE_ARGS += --with-cpu-opt=pentiumpro > +CONFIGURE_ARGS += --with-cpu-opt=pentium3 > +CONFIGURE_ARGS += --with-cc-opt="-I/opt/csw/include -I/opt/csw/ > include/openssl" You could better use $(includedir) and the other vars from gar.conf.mk here, but that is not really important. Your Makefile looks almost perfect at that would be 100% ;-) > %include url file://%{PKGLIB}/csw_dyndepend.gspec > -%copyright url file://%{WORKSRC}/LICENSE > +%copyright url file://%{DESTDIR}/LICENSE Yep, WORKSRC_FIRSTMOD should work here. LICENSE is sometimes not copied to DESTDIR. Best regards -- Dago From aigoshin at users.sourceforge.net Sun Jan 11 15:51:28 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sun, 11 Jan 2009 14:51:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[2789] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 2789 http://gar.svn.sourceforge.net/gar/?rev=2789&view=rev Author: aigoshin Date: 2009-01-11 14:51:28 +0000 (Sun, 11 Jan 2009) Log Message: ----------- nginx: milestone 1.5 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec Added Paths: ----------- csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-10 21:58:05 UTC (rev 2788) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-11 14:51:28 UTC (rev 2789) @@ -10,7 +10,7 @@ MASTER_SITES = http://sysoev.ru/nginx/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWnginx,) +DISTFILES += $(call admfiles,CSWnginx,postinstall) DISTFILES += cswnginx.xml svc-cswnginx # We define upstream file regex so we can be notifed of new upstream software release @@ -20,9 +20,10 @@ CFLAGS = -CONFIGURE_ARGS += --with-cpu-opt=pentium3 -CONFIGURE_ARGS += --with-cc-opt="-I/opt/csw/include -I/opt/csw/include/openssl" -CONFIGURE_ARGS += --with-ld-opt="-R$(ISALIBDIR) -R/opt/csw/lib -L/opt/csw/lib" +#CONFIGURE_ARGS += --with-cpu-opt=pentium3 +CONFIGURE_ARGS += --with-cc-opt="-I$(includedir) -I$(includedir)/openssl" +#CONFIGURE_ARGS += --with-ld-opt="$(LDFLAGS)" +CONFIGURE_ARGS += --with-ld-opt="-R$(libdir) -R$(libdir) -L$(libdir)" CONFIGURE_ARGS += --prefix=$(prefix)/var/nginx CONFIGURE_ARGS += --conf-path=$(sysconfdir)/nginx/nginx.conf CONFIGURE_ARGS += --sbin-path=$(sbindir)/nginx @@ -43,26 +44,26 @@ TEST_SCRIPTS = -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc\/(manifest|manifest\/site)))$$$$/ { $$$$6 = "sys" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc|(svc\/(manifest|manifest\/site))))$$$$/ { $$$$6 = "sys" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' include gar/category.mk -NGINXDOC = CHANGES CHANGES.ru LICENSE README +NGINXDOCS = CHANGES CHANGES.ru LICENSE README -post-install: +post-install-modulated: cp $(WORKDIR)/svc-cswnginx $(WORKDIR)/cswnginx - ginstall -d $(DESTDIR)$(sbindir) - ginstall -d $(DESTDIR)$(sysconfdir) ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib ginstall -d $(DESTDIR)$(docdir)/nginx ginstall -d $(DESTDIR)$(prefix)/var/nginx ginstall -d $(DESTDIR)$(prefix)/var/nginx/sites ginstall -d $(DESTDIR)$(prefix)/var/log/nginx - ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/client ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/fastcgi ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/proxy + mv $(DESTDIR)$(sysconfdir)/nginx/fastcgi_params $(DESTDIR)$(sysconfdir)/nginx/fastcgi_params.CSW + mv $(DESTDIR)$(sysconfdir)/nginx/mime.types $(DESTDIR)$(sysconfdir)/nginx/mime.types.CSW + mv $(DESTDIR)$(sysconfdir)/nginx/nginx.conf $(DESTDIR)$(sysconfdir)/nginx/nginx.conf.CSW cd $(WORKSRC); \ cp -r contrib/* $(DESTDIR)$(sharedstatedir)/nginx/contrib; \ - cp $(NGINXDOC) $(DESTDIR)$(docdir)/nginx; \ + cp $(NGINXDOCS) $(DESTDIR)$(docdir)/nginx; \ $(MAKECOOKIE) Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-10 21:58:05 UTC (rev 2788) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-11 14:51:28 UTC (rev 2789) @@ -1,7 +1,7 @@ %var bitname nginx %var pkgname CSWnginx %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{DESTDIR}/LICENSE +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE %var SERVICE_CONF_FILES /opt/csw/etc/nginx/nginx.conf %include url file://%{PKGLIB}/smf_enabled.gspec %var RC_INIT_SCRIPT cswnginx Added: csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall (rev 0) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall 2009-01-11 14:51:28 UTC (rev 2789) @@ -0,0 +1,29 @@ +#!/sbin/sh + +CONFDIR=$BASEDIR/opt/csw/etc/nginx +CONFFILES="fastcgi_params mime.types nginx.conf" + +# copy new config files, if it's not existing +for file in $CONFFILES; do + confpath="$CONFDIR/$file" + if [ -f "$confpath" ]; then + echo "Not touching existing $confpath" + else + if [ -r "$confpath.CSW" ]; then + echo "Copying $confpath.CSW to $confpath" + cp -p "$confpath.CSW" "$confpath" + else + echo "Skipping $confpath.CSW..." + fi + fi +done + +if [ "$NEEDUPGRADE" = "1" ] ; then + if [ -x "$BASEDIR/opt/csw/lib/svc/method/svc-cswnginx" ]; then + $BASEDIR/opt/csw/lib/svc/method/svc-cswnginx upgrade + else + test -x $BASEDIR/etc/init.d/cswnginx && $BASEDIR/etc/init.d/cswnginx upgrade + fi +fi + +exit 0 Property changes on: csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sun Jan 11 22:01:29 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 11 Jan 2009 21:01:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2790] csw/mgar/pkg/x11/libX11/trunk Message-ID: Revision: 2790 http://gar.svn.sourceforge.net/gar/?rev=2790&view=rev Author: wbonnet Date: 2009-01-11 21:01:28 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Move libX11 under x11 folde Modified Paths: -------------- csw/mgar/pkg/x11/libX11/trunk/Makefile csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec Removed Paths: ------------- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.depend csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.prototype csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.depend csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.prototype Property Changed: ---------------- csw/mgar/pkg/x11/libX11/trunk/ Property changes on: csw/mgar/pkg/x11/libX11/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-01-11 14:51:28 UTC (rev 2789) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-01-11 21:01:28 UTC (rev 2790) @@ -1,6 +1,6 @@ GARNAME = libX11 GARVERSION = 1.1.5 -CATEGORIES = lib +CATEGORIES = x11 DESCRIPTION = X11 client-side library define BLURB @@ -14,26 +14,16 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -DISTFILES += CSWlibX11.gspec CSWlibX11.prototype CSWlibX11.depend -DISTFILES += CSWlibX11dev.gspec CSWlibX11dev.prototype CSWlibX11dev.depend -# DISTFILES += $(call admfiles,CSWlibX11, depend) +SPKG_DESC_CSWlibx11 = $(DESCRIPTION) +SPKG_DESC_CSWlibx11devel = $(DESCRIPTION) development package -TEST_SCRIPTS = none +DISTFILES += $(call admfiles,CSWlibx11devel, ) +DISTFILES += $(call admfiles,CSWlibx11, ) +PKGFILES_CSWlibx11devel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibx11devel += $(prefix)/X11/include/.* +PKGFILES_CSWlibx11devel += $(prefix)/X11/lib/.*\.a +PKGFILES_CSWlibx11devel += $(prefix)/X11/lib/pkgconfig/.* + include gar/category.mk -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -D__solaris__ -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib - -export CFLAGS CXXFLAGS LDFLAGS - -GREP = ggrep - -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man - -test-none: - @$(MAKECOOKIE) - -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) Modified: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec 2009-01-11 14:51:28 UTC (rev 2789) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec 2009-01-11 21:01:28 UTC (rev 2790) @@ -1,4 +1,4 @@ %var bitname libx11 %var pkgname CSWlibx11 %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.prototype =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.prototype 2009-01-11 14:51:28 UTC (rev 2789) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.prototype 2009-01-11 21:01:28 UTC (rev 2790) @@ -1,1069 +0,0 @@ -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/X11 0755 root bin -f none /opt/csw/lib/X11/Xcms.txt 0644 root bin -f none /opt/csw/lib/libX11-xcb.la 0755 root bin -f none /opt/csw/lib/libX11-xcb.so.1.0.0 0755 root bin -s none /opt/csw/lib/libX11-xcb.so.1=libX11-xcb.so.1.0.0 -s none /opt/csw/lib/libX11-xcb.so=libX11-xcb.so.1.0.0 -f none /opt/csw/lib/libX11.la 0755 root bin -f none /opt/csw/lib/libX11.so.6.2.0 0755 root bin -s none /opt/csw/lib/libX11.so.6=libX11.so.6.2.0 -s none /opt/csw/lib/libX11.so=libX11.so.6.2.0 -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/X11 0755 root bin -f none /opt/csw/share/X11/XErrorDB 0644 root bin -f none /opt/csw/share/X11/XKeysymDB 0644 root bin -d none /opt/csw/share/X11/locale 0755 root bin -d none /opt/csw/share/X11/locale/C 0755 root bin -f none /opt/csw/share/X11/locale/C/Compose 0644 root bin -f none /opt/csw/share/X11/locale/C/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/C/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/am_ET.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/am_ET.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/am_ET.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/am_ET.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/armscii-8 0755 root bin -f none /opt/csw/share/X11/locale/armscii-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/armscii-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/armscii-8/XLC_LOCALE 0644 root bin -f none /opt/csw/share/X11/locale/compose.dir 0644 root bin -d none /opt/csw/share/X11/locale/el_GR.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/el_GR.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/el_GR.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/el_GR.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/en_US.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/en_US.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/en_US.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/en_US.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/georgian-academy 0755 root bin -f none /opt/csw/share/X11/locale/georgian-academy/Compose 0644 root bin -f none /opt/csw/share/X11/locale/georgian-academy/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/georgian-academy/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/georgian-ps 0755 root bin -f none /opt/csw/share/X11/locale/georgian-ps/Compose 0644 root bin -f none /opt/csw/share/X11/locale/georgian-ps/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/georgian-ps/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ibm-cp1133 0755 root bin -f none /opt/csw/share/X11/locale/ibm-cp1133/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ibm-cp1133/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ibm-cp1133/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iscii-dev 0755 root bin -f none /opt/csw/share/X11/locale/iscii-dev/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iscii-dev/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iscii-dev/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/isiri-3342 0755 root bin -f none /opt/csw/share/X11/locale/isiri-3342/Compose 0644 root bin -f none /opt/csw/share/X11/locale/isiri-3342/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/isiri-3342/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-1 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-1/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-1/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-1/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-10 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-10/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-10/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-10/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-11 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-11/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-11/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-11/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-13 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-13/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-13/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-13/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-14 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-14/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-14/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-14/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-15 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-15/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-15/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-15/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-2 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-2/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-2/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-2/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-3 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-3/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-3/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-3/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-4 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-4/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-4/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-4/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-5 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-5/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-5/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-5/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-6 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-6/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-6/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-6/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-7 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-7/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-7/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-7/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-8 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-9 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-9/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-9/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-9/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/iso8859-9e 0755 root bin -f none /opt/csw/share/X11/locale/iso8859-9e/Compose 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-9e/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/iso8859-9e/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ja 0755 root bin -d none /opt/csw/share/X11/locale/ja.JIS 0755 root bin -f none /opt/csw/share/X11/locale/ja.JIS/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ja.JIS/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ja.JIS/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ja.S90 0755 root bin -f none /opt/csw/share/X11/locale/ja.S90/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ja.S90/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ja.S90/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ja.SJIS 0755 root bin -f none /opt/csw/share/X11/locale/ja.SJIS/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ja.SJIS/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ja.SJIS/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ja.U90 0755 root bin -f none /opt/csw/share/X11/locale/ja.U90/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ja.U90/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ja.U90/XLC_LOCALE 0644 root bin -f none /opt/csw/share/X11/locale/ja/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ja/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ja/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ja_JP.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/ja_JP.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ja_JP.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ja_JP.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ko 0755 root bin -f none /opt/csw/share/X11/locale/ko/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ko/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ko/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/ko_KR.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/ko_KR.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/ko_KR.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/ko_KR.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/koi8-c 0755 root bin -f none /opt/csw/share/X11/locale/koi8-c/Compose 0644 root bin -f none /opt/csw/share/X11/locale/koi8-c/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/koi8-c/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/koi8-r 0755 root bin -f none /opt/csw/share/X11/locale/koi8-r/Compose 0644 root bin -f none /opt/csw/share/X11/locale/koi8-r/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/koi8-r/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/koi8-u 0755 root bin -f none /opt/csw/share/X11/locale/koi8-u/Compose 0644 root bin -f none /opt/csw/share/X11/locale/koi8-u/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/koi8-u/XLC_LOCALE 0644 root bin -f none /opt/csw/share/X11/locale/locale.alias 0644 root bin -f none /opt/csw/share/X11/locale/locale.dir 0644 root bin -d none /opt/csw/share/X11/locale/microsoft-cp1251 0755 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1251/Compose 0644 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1251/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1251/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/microsoft-cp1255 0755 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1255/Compose 0644 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1255/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1255/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/microsoft-cp1256 0755 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1256/Compose 0644 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1256/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/microsoft-cp1256/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/mulelao-1 0755 root bin -f none /opt/csw/share/X11/locale/mulelao-1/Compose 0644 root bin -f none /opt/csw/share/X11/locale/mulelao-1/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/mulelao-1/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/nokhchi-1 0755 root bin -f none /opt/csw/share/X11/locale/nokhchi-1/Compose 0644 root bin -f none /opt/csw/share/X11/locale/nokhchi-1/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/nokhchi-1/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/pt_BR.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/pt_BR.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/pt_BR.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/pt_BR.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/tatar-cyr 0755 root bin -f none /opt/csw/share/X11/locale/tatar-cyr/Compose 0644 root bin -f none /opt/csw/share/X11/locale/tatar-cyr/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/tatar-cyr/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/th_TH 0755 root bin -d none /opt/csw/share/X11/locale/th_TH.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/th_TH.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/th_TH.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/th_TH.UTF-8/XLC_LOCALE 0644 root bin -f none /opt/csw/share/X11/locale/th_TH/Compose 0644 root bin -f none /opt/csw/share/X11/locale/th_TH/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/th_TH/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/tscii-0 0755 root bin -f none /opt/csw/share/X11/locale/tscii-0/Compose 0644 root bin -f none /opt/csw/share/X11/locale/tscii-0/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/tscii-0/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/vi_VN.tcvn 0755 root bin -f none /opt/csw/share/X11/locale/vi_VN.tcvn/Compose 0644 root bin -f none /opt/csw/share/X11/locale/vi_VN.tcvn/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/vi_VN.tcvn/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/vi_VN.viscii 0755 root bin -f none /opt/csw/share/X11/locale/vi_VN.viscii/Compose 0644 root bin -f none /opt/csw/share/X11/locale/vi_VN.viscii/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/vi_VN.viscii/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_CN 0755 root bin -d none /opt/csw/share/X11/locale/zh_CN.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/zh_CN.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_CN.gb18030 0755 root bin -f none /opt/csw/share/X11/locale/zh_CN.gb18030/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN.gb18030/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN.gb18030/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_CN.gbk 0755 root bin -f none /opt/csw/share/X11/locale/zh_CN.gbk/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN.gbk/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN.gbk/XLC_LOCALE 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_CN/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_HK.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/zh_HK.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_HK.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_HK.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_HK.big5 0755 root bin -f none /opt/csw/share/X11/locale/zh_HK.big5/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_HK.big5/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_HK.big5/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_HK.big5hkscs 0755 root bin -f none /opt/csw/share/X11/locale/zh_HK.big5hkscs/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_HK.big5hkscs/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_HK.big5hkscs/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_TW 0755 root bin -d none /opt/csw/share/X11/locale/zh_TW.UTF-8 0755 root bin -f none /opt/csw/share/X11/locale/zh_TW.UTF-8/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW.UTF-8/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW.UTF-8/XLC_LOCALE 0644 root bin -d none /opt/csw/share/X11/locale/zh_TW.big5 0755 root bin -f none /opt/csw/share/X11/locale/zh_TW.big5/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW.big5/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW.big5/XLC_LOCALE 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW/Compose 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW/XI18N_OBJS 0644 root bin -f none /opt/csw/share/X11/locale/zh_TW/XLC_LOCALE 0644 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/AllPlanes.3 0644 root bin -f none /opt/csw/share/man/man3/BitmapBitOrder.3 0644 root bin -f none /opt/csw/share/man/man3/BitmapPad.3 0644 root bin -f none /opt/csw/share/man/man3/BitmapUnit.3 0644 root bin -f none /opt/csw/share/man/man3/BlackPixel.3 0644 root bin -f none /opt/csw/share/man/man3/BlackPixelOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/CellsOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/ClientWhitePointOfCCC.3 0644 root bin -f none /opt/csw/share/man/man3/ConnectionNumber.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultColormap.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultColormapOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultDepth.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultDepthOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultGC.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultGCOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultRootWindow.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultScreen.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultScreenOfDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultVisual.3 0644 root bin -f none /opt/csw/share/man/man3/DefaultVisualOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayCells.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayHeight.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayHeightMM.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayOfCCC.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayPlanes.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayString.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayWidth.3 0644 root bin -f none /opt/csw/share/man/man3/DisplayWidthMM.3 0644 root bin -f none /opt/csw/share/man/man3/DoesBackingStore.3 0644 root bin -f none /opt/csw/share/man/man3/DoesSaveUnders.3 0644 root bin -f none /opt/csw/share/man/man3/EventMaskOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/HeightMMOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/HeightOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/ImageByteOrder.3 0644 root bin -f none /opt/csw/share/man/man3/IsCursorKey.3 0644 root bin -f none /opt/csw/share/man/man3/IsFunctionKey.3 0644 root bin -f none /opt/csw/share/man/man3/IsKeypadKey.3 0644 root bin -f none /opt/csw/share/man/man3/IsMiscFunctionKey.3 0644 root bin -f none /opt/csw/share/man/man3/IsModifierKey.3 0644 root bin -f none /opt/csw/share/man/man3/IsPFKey.3 0644 root bin -f none /opt/csw/share/man/man3/IsPrivateKeypadKey.3 0644 root bin -f none /opt/csw/share/man/man3/LastKnownRequestProcessed.3 0644 root bin -f none /opt/csw/share/man/man3/MaxCmapsOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/MinCmapsOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/NextRequest.3 0644 root bin -f none /opt/csw/share/man/man3/PlanesOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/ProtocolRevision.3 0644 root bin -f none /opt/csw/share/man/man3/ProtocolVersion.3 0644 root bin -f none /opt/csw/share/man/man3/QLength.3 0644 root bin -f none /opt/csw/share/man/man3/RootWindow.3 0644 root bin -f none /opt/csw/share/man/man3/RootWindowOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/ScreenCount.3 0644 root bin -f none /opt/csw/share/man/man3/ScreenNumberOfCCC.3 0644 root bin -f none /opt/csw/share/man/man3/ScreenOfDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/ScreenWhitePointOfCCC.3 0644 root bin -f none /opt/csw/share/man/man3/ServerVendor.3 0644 root bin -f none /opt/csw/share/man/man3/VendorRelease.3 0644 root bin -f none /opt/csw/share/man/man3/VisualOfCCC.3 0644 root bin -f none /opt/csw/share/man/man3/WhitePixel.3 0644 root bin -f none /opt/csw/share/man/man3/WhitePixelOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/WidthMMOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/WidthOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/XActivateScreenSaver.3 0644 root bin -f none /opt/csw/share/man/man3/XAddConnectionWatch.3 0644 root bin -f none /opt/csw/share/man/man3/XAddHost.3 0644 root bin -f none /opt/csw/share/man/man3/XAddHosts.3 0644 root bin -f none /opt/csw/share/man/man3/XAddPixel.3 0644 root bin -f none /opt/csw/share/man/man3/XAddToSaveSet.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocClassHint.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocColor.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocColorCells.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocColorPlanes.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocIconSize.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocNamedColor.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocSizeHints.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocStandardColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XAllocWMHints.3 0644 root bin -f none /opt/csw/share/man/man3/XAllowEvents.3 0644 root bin -f none /opt/csw/share/man/man3/XAnyEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XArc.3 0644 root bin -f none /opt/csw/share/man/man3/XAutoRepeatOff.3 0644 root bin -f none /opt/csw/share/man/man3/XAutoRepeatOn.3 0644 root bin -f none /opt/csw/share/man/man3/XBaseFontNameListOfFontSet.3 0644 root bin -f none /opt/csw/share/man/man3/XBell.3 0644 root bin -f none /opt/csw/share/man/man3/XButtonEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeActivePointerGrab.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeGC.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeKeyboardControl.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeKeyboardMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XChangePointerControl.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeSaveSet.3 0644 root bin -f none /opt/csw/share/man/man3/XChangeWindowAttributes.3 0644 root bin -f none /opt/csw/share/man/man3/XChar2b.3 0644 root bin -f none /opt/csw/share/man/man3/XCharStruct.3 0644 root bin -f none /opt/csw/share/man/man3/XCheckIfEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCheckMaskEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCheckTypedEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCheckTypedWindowEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCheckWindowEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCirculateEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCirculateRequestEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCirculateSubwindows.3 0644 root bin -f none /opt/csw/share/man/man3/XCirculateSubwindowsDown.3 0644 root bin -f none /opt/csw/share/man/man3/XCirculateSubwindowsUp.3 0644 root bin -f none /opt/csw/share/man/man3/XClassHint.3 0644 root bin -f none /opt/csw/share/man/man3/XClearArea.3 0644 root bin -f none /opt/csw/share/man/man3/XClearWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XClientMessageEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XClipBox.3 0644 root bin -f none /opt/csw/share/man/man3/XCloseDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/XCloseIM.3 0644 root bin -f none /opt/csw/share/man/man3/XCloseOM.3 0644 root bin -f none /opt/csw/share/man/man3/XColor.3 0644 root bin -f none /opt/csw/share/man/man3/XColormapEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XConfigureEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XConfigureRequestEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XConfigureWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XContextDependentDrawing.3 0644 root bin -f none /opt/csw/share/man/man3/XContextualDrawing.3 0644 root bin -f none /opt/csw/share/man/man3/XConvertCase.3 0644 root bin -f none /opt/csw/share/man/man3/XConvertSelection.3 0644 root bin -f none /opt/csw/share/man/man3/XCopyArea.3 0644 root bin -f none /opt/csw/share/man/man3/XCopyColormapAndFree.3 0644 root bin -f none /opt/csw/share/man/man3/XCopyGC.3 0644 root bin -f none /opt/csw/share/man/man3/XCopyPlane.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateBitmapFromData.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateFontCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateFontSet.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateGC.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateGlyphCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateIC.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateImage.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateOC.3 0644 root bin -f none /opt/csw/share/man/man3/XCreatePixmap.3 0644 root bin -f none /opt/csw/share/man/man3/XCreatePixmapCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XCreatePixmapFromBitmapData.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateSimpleWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XCreateWindowEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XCrossingEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XDefaultString.3 0644 root bin -f none /opt/csw/share/man/man3/XDefineCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XDeleteContext.3 0644 root bin -f none /opt/csw/share/man/man3/XDeleteModifiermapEntry.3 0644 root bin -f none /opt/csw/share/man/man3/XDeleteProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroyIC.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroyImage.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroyOC.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroyRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroySubwindows.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroyWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XDestroyWindowEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XDirectionalDependentDrawing.3 0644 root bin -f none /opt/csw/share/man/man3/XDisableAccessControl.3 0644 root bin -f none /opt/csw/share/man/man3/XDisplayKeycodes.3 0644 root bin -f none /opt/csw/share/man/man3/XDisplayMotionBufferSize.3 0644 root bin -f none /opt/csw/share/man/man3/XDisplayName.3 0644 root bin -f none /opt/csw/share/man/man3/XDisplayOfIM.3 0644 root bin -f none /opt/csw/share/man/man3/XDisplayOfOM.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawArc.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawArcs.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawImageString.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawImageString16.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawLine.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawLines.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawPoint.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawPoints.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawRectangle.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawRectangles.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawSegments.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawString.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawString16.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawText.3 0644 root bin -f none /opt/csw/share/man/man3/XDrawText16.3 0644 root bin -f none /opt/csw/share/man/man3/XEmptyRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XEnableAccessControl.3 0644 root bin -f none /opt/csw/share/man/man3/XEqualRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XErrorEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XEventsQueued.3 0644 root bin -f none /opt/csw/share/man/man3/XExposeEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XExtendedMaxRequestSize.3 0644 root bin -f none /opt/csw/share/man/man3/XExtentsOfFontSet.3 0644 root bin -f none /opt/csw/share/man/man3/XFetchBuffer.3 0644 root bin -f none /opt/csw/share/man/man3/XFetchBytes.3 0644 root bin -f none /opt/csw/share/man/man3/XFetchName.3 0644 root bin -f none /opt/csw/share/man/man3/XFillArc.3 0644 root bin -f none /opt/csw/share/man/man3/XFillArcs.3 0644 root bin -f none /opt/csw/share/man/man3/XFillPolygon.3 0644 root bin -f none /opt/csw/share/man/man3/XFillRectangle.3 0644 root bin -f none /opt/csw/share/man/man3/XFillRectangles.3 0644 root bin -f none /opt/csw/share/man/man3/XFilterEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XFindContext.3 0644 root bin -f none /opt/csw/share/man/man3/XFlush.3 0644 root bin -f none /opt/csw/share/man/man3/XFocusChangeEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XFontProp.3 0644 root bin -f none /opt/csw/share/man/man3/XFontSetExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XFontStruct.3 0644 root bin -f none /opt/csw/share/man/man3/XFontsOfFontSet.3 0644 root bin -f none /opt/csw/share/man/man3/XForceScreenSaver.3 0644 root bin -f none /opt/csw/share/man/man3/XFree.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeColors.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeExtensionList.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeFont.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeFontInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeFontNames.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeFontPath.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeFontSet.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeGC.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeModifierMap.3 0644 root bin -f none /opt/csw/share/man/man3/XFreePixmap.3 0644 root bin -f none /opt/csw/share/man/man3/XFreeStringList.3 0644 root bin -f none /opt/csw/share/man/man3/XGCValues.3 0644 root bin -f none /opt/csw/share/man/man3/XGContextFromGC.3 0644 root bin -f none /opt/csw/share/man/man3/XGetAtomName.3 0644 root bin -f none /opt/csw/share/man/man3/XGetAtomNames.3 0644 root bin -f none /opt/csw/share/man/man3/XGetClassHint.3 0644 root bin -f none /opt/csw/share/man/man3/XGetCommand.3 0644 root bin -f none /opt/csw/share/man/man3/XGetErrorDatabaseText.3 0644 root bin -f none /opt/csw/share/man/man3/XGetErrorText.3 0644 root bin -f none /opt/csw/share/man/man3/XGetFontPath.3 0644 root bin -f none /opt/csw/share/man/man3/XGetFontProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XGetGCValues.3 0644 root bin -f none /opt/csw/share/man/man3/XGetGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XGetICValues.3 0644 root bin -f none /opt/csw/share/man/man3/XGetIMValues.3 0644 root bin -f none /opt/csw/share/man/man3/XGetIconName.3 0644 root bin -f none /opt/csw/share/man/man3/XGetIconSizes.3 0644 root bin -f none /opt/csw/share/man/man3/XGetImage.3 0644 root bin -f none /opt/csw/share/man/man3/XGetInputFocus.3 0644 root bin -f none /opt/csw/share/man/man3/XGetKeyboardControl.3 0644 root bin -f none /opt/csw/share/man/man3/XGetKeyboardMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XGetModifierMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XGetMotionEvents.3 0644 root bin -f none /opt/csw/share/man/man3/XGetOCValues.3 0644 root bin -f none /opt/csw/share/man/man3/XGetOMValues.3 0644 root bin -f none /opt/csw/share/man/man3/XGetPixel.3 0644 root bin -f none /opt/csw/share/man/man3/XGetPointerControl.3 0644 root bin -f none /opt/csw/share/man/man3/XGetPointerMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XGetRGBColormaps.3 0644 root bin -f none /opt/csw/share/man/man3/XGetScreenSaver.3 0644 root bin -f none /opt/csw/share/man/man3/XGetSelectionOwner.3 0644 root bin -f none /opt/csw/share/man/man3/XGetSubImage.3 0644 root bin -f none /opt/csw/share/man/man3/XGetTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XGetTransientForHint.3 0644 root bin -f none /opt/csw/share/man/man3/XGetVisualInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMClientMachine.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMColormapWindows.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMHints.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMIconName.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMName.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMNormalHints.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMProtocols.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWMSizeHints.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWindowAttributes.3 0644 root bin -f none /opt/csw/share/man/man3/XGetWindowProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XGetXCBConnection.3 0644 root bin -f none /opt/csw/share/man/man3/XGrabButton.3 0644 root bin -f none /opt/csw/share/man/man3/XGrabKey.3 0644 root bin -f none /opt/csw/share/man/man3/XGrabKeyboard.3 0644 root bin -f none /opt/csw/share/man/man3/XGrabPointer.3 0644 root bin -f none /opt/csw/share/man/man3/XGrabServer.3 0644 root bin -f none /opt/csw/share/man/man3/XGraphicsExposeEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XGravityEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XHostAddress.3 0644 root bin -f none /opt/csw/share/man/man3/XIMOfIC.3 0644 root bin -f none /opt/csw/share/man/man3/XIconSize.3 0644 root bin -f none /opt/csw/share/man/man3/XIconifyWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XIfEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XInitImage.3 0644 root bin -f none /opt/csw/share/man/man3/XInitThreads.3 0644 root bin -f none /opt/csw/share/man/man3/XInsertModifiermapEntry.3 0644 root bin -f none /opt/csw/share/man/man3/XInstallColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XInternAtom.3 0644 root bin -f none /opt/csw/share/man/man3/XInternAtoms.3 0644 root bin -f none /opt/csw/share/man/man3/XInternalConnectionNumbers.3 0644 root bin -f none /opt/csw/share/man/man3/XIntersectRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XKeyEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XKeyboardControl.3 0644 root bin -f none /opt/csw/share/man/man3/XKeycodeToKeysym.3 0644 root bin -f none /opt/csw/share/man/man3/XKeymapEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XKeysymToKeycode.3 0644 root bin -f none /opt/csw/share/man/man3/XKeysymToString.3 0644 root bin -f none /opt/csw/share/man/man3/XKillClient.3 0644 root bin -f none /opt/csw/share/man/man3/XListDepths.3 0644 root bin -f none /opt/csw/share/man/man3/XListExtensions.3 0644 root bin -f none /opt/csw/share/man/man3/XListFonts.3 0644 root bin -f none /opt/csw/share/man/man3/XListFontsWithInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XListHosts.3 0644 root bin -f none /opt/csw/share/man/man3/XListInstalledColormaps.3 0644 root bin -f none /opt/csw/share/man/man3/XListPixmapFormats.3 0644 root bin -f none /opt/csw/share/man/man3/XListProperties.3 0644 root bin -f none /opt/csw/share/man/man3/XLoadFont.3 0644 root bin -f none /opt/csw/share/man/man3/XLoadQueryFont.3 0644 root bin -f none /opt/csw/share/man/man3/XLocaleOfFontSet.3 0644 root bin -f none /opt/csw/share/man/man3/XLocaleOfIM.3 0644 root bin -f none /opt/csw/share/man/man3/XLocaleOfOM.3 0644 root bin -f none /opt/csw/share/man/man3/XLockDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/XLookupColor.3 0644 root bin -f none /opt/csw/share/man/man3/XLookupKeysym.3 0644 root bin -f none /opt/csw/share/man/man3/XLookupString.3 0644 root bin -f none /opt/csw/share/man/man3/XLowerWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XMapEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XMapRaised.3 0644 root bin -f none /opt/csw/share/man/man3/XMapRequestEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XMapSubwindows.3 0644 root bin -f none /opt/csw/share/man/man3/XMapWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XMappingEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XMaskEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XMatchVisualInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XMaxRequestSize.3 0644 root bin -f none /opt/csw/share/man/man3/XModifierKeymap.3 0644 root bin -f none /opt/csw/share/man/man3/XMotionEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XMoveResizeWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XMoveWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XNewModifiermap.3 0644 root bin -f none /opt/csw/share/man/man3/XNextEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XNoExposeEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XNoOp.3 0644 root bin -f none /opt/csw/share/man/man3/XOMOfOC.3 0644 root bin -f none /opt/csw/share/man/man3/XOffsetRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XOpenDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/XOpenIM.3 0644 root bin -f none /opt/csw/share/man/man3/XOpenOM.3 0644 root bin -f none /opt/csw/share/man/man3/XParseColor.3 0644 root bin -f none /opt/csw/share/man/man3/XParseGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XPeekEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XPeekIfEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XPending.3 0644 root bin -f none /opt/csw/share/man/man3/XPixmapFormatValues.3 0644 root bin -f none /opt/csw/share/man/man3/XPoint.3 0644 root bin -f none /opt/csw/share/man/man3/XPointInRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XPolygonRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XProcessInternalConnection.3 0644 root bin -f none /opt/csw/share/man/man3/XPropertyEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XPutBackEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XPutImage.3 0644 root bin -f none /opt/csw/share/man/man3/XPutPixel.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryBestCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryBestSize.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryBestStipple.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryBestTile.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryColor.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryColors.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryExtension.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryFont.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryKeymap.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryPointer.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryTextExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryTextExtents16.3 0644 root bin -f none /opt/csw/share/man/man3/XQueryTree.3 0644 root bin -f none /opt/csw/share/man/man3/XRaiseWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XReadBitmapFile.3 0644 root bin -f none /opt/csw/share/man/man3/XReadBitmapFileData.3 0644 root bin -f none /opt/csw/share/man/man3/XRebindKeysym.3 0644 root bin -f none /opt/csw/share/man/man3/XRecolorCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XReconfigureWMWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XRectInRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XRectangle.3 0644 root bin -f none /opt/csw/share/man/man3/XRefreshKeyboardMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XRegisterIMInstantiateCallback.3 0644 root bin -f none /opt/csw/share/man/man3/XRemoveConnectionWatch.3 0644 root bin -f none /opt/csw/share/man/man3/XRemoveFromSaveSet.3 0644 root bin -f none /opt/csw/share/man/man3/XRemoveHost.3 0644 root bin -f none /opt/csw/share/man/man3/XRemoveHosts.3 0644 root bin -f none /opt/csw/share/man/man3/XReparentEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XReparentWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XResetScreenSaver.3 0644 root bin -f none /opt/csw/share/man/man3/XResizeRequestEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XResizeWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XResourceManagerString.3 0644 root bin -f none /opt/csw/share/man/man3/XRestackWindows.3 0644 root bin -f none /opt/csw/share/man/man3/XRotateBuffers.3 0644 root bin -f none /opt/csw/share/man/man3/XRotateWindowProperties.3 0644 root bin -f none /opt/csw/share/man/man3/XSaveContext.3 0644 root bin -f none /opt/csw/share/man/man3/XScreenNumberOfScreen.3 0644 root bin -f none /opt/csw/share/man/man3/XScreenResourceString.3 0644 root bin -f none /opt/csw/share/man/man3/XSegment.3 0644 root bin -f none /opt/csw/share/man/man3/XSelectInput.3 0644 root bin -f none /opt/csw/share/man/man3/XSelectionClearEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XSelectionEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XSelectionRequestEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XSendEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XSetAccessControl.3 0644 root bin -f none /opt/csw/share/man/man3/XSetAfterFunction.3 0644 root bin -f none /opt/csw/share/man/man3/XSetArcMode.3 0644 root bin -f none /opt/csw/share/man/man3/XSetBackground.3 0644 root bin -f none /opt/csw/share/man/man3/XSetClassHint.3 0644 root bin -f none /opt/csw/share/man/man3/XSetClipMask.3 0644 root bin -f none /opt/csw/share/man/man3/XSetClipOrigin.3 0644 root bin -f none /opt/csw/share/man/man3/XSetClipRectangles.3 0644 root bin -f none /opt/csw/share/man/man3/XSetCloseDownMode.3 0644 root bin -f none /opt/csw/share/man/man3/XSetCommand.3 0644 root bin -f none /opt/csw/share/man/man3/XSetDashes.3 0644 root bin -f none /opt/csw/share/man/man3/XSetErrorHandler.3 0644 root bin -f none /opt/csw/share/man/man3/XSetEventQueueOwner.3 0644 root bin -f none /opt/csw/share/man/man3/XSetFillRule.3 0644 root bin -f none /opt/csw/share/man/man3/XSetFillStyle.3 0644 root bin -f none /opt/csw/share/man/man3/XSetFont.3 0644 root bin -f none /opt/csw/share/man/man3/XSetFontPath.3 0644 root bin -f none /opt/csw/share/man/man3/XSetForeground.3 0644 root bin -f none /opt/csw/share/man/man3/XSetFunction.3 0644 root bin -f none /opt/csw/share/man/man3/XSetGraphicsExposure.3 0644 root bin -f none /opt/csw/share/man/man3/XSetICFocus.3 0644 root bin -f none /opt/csw/share/man/man3/XSetICValues.3 0644 root bin -f none /opt/csw/share/man/man3/XSetIMValues.3 0644 root bin -f none /opt/csw/share/man/man3/XSetIOErrorHandler.3 0644 root bin -f none /opt/csw/share/man/man3/XSetIconName.3 0644 root bin -f none /opt/csw/share/man/man3/XSetIconSizes.3 0644 root bin -f none /opt/csw/share/man/man3/XSetInputFocus.3 0644 root bin -f none /opt/csw/share/man/man3/XSetLineAttributes.3 0644 root bin -f none /opt/csw/share/man/man3/XSetLocaleModifiers.3 0644 root bin -f none /opt/csw/share/man/man3/XSetModifierMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XSetOCValues.3 0644 root bin -f none /opt/csw/share/man/man3/XSetOMValues.3 0644 root bin -f none /opt/csw/share/man/man3/XSetPlaneMask.3 0644 root bin -f none /opt/csw/share/man/man3/XSetPointerMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XSetRGBColormaps.3 0644 root bin -f none /opt/csw/share/man/man3/XSetRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XSetScreenSaver.3 0644 root bin -f none /opt/csw/share/man/man3/XSetSelectionOwner.3 0644 root bin -f none /opt/csw/share/man/man3/XSetState.3 0644 root bin -f none /opt/csw/share/man/man3/XSetStipple.3 0644 root bin -f none /opt/csw/share/man/man3/XSetSubwindowMode.3 0644 root bin -f none /opt/csw/share/man/man3/XSetTSOrigin.3 0644 root bin -f none /opt/csw/share/man/man3/XSetTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XSetTile.3 0644 root bin -f none /opt/csw/share/man/man3/XSetTransientForHint.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMClientMachine.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMColormapWindows.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMHints.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMIconName.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMName.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMNormalHints.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMProperties.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMProtocols.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWMSizeHints.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowAttributes.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowBackground.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowBackgroundPixmap.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowBorder.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowBorderPixmap.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowBorderWidth.3 0644 root bin -f none /opt/csw/share/man/man3/XSetWindowColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XShrinkRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XSizeHints.3 0644 root bin -f none /opt/csw/share/man/man3/XStandardColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XStoreBuffer.3 0644 root bin -f none /opt/csw/share/man/man3/XStoreBytes.3 0644 root bin -f none /opt/csw/share/man/man3/XStoreColor.3 0644 root bin -f none /opt/csw/share/man/man3/XStoreColors.3 0644 root bin -f none /opt/csw/share/man/man3/XStoreName.3 0644 root bin -f none /opt/csw/share/man/man3/XStoreNamedColor.3 0644 root bin -f none /opt/csw/share/man/man3/XStringListToTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XStringToKeysym.3 0644 root bin -f none /opt/csw/share/man/man3/XSubImage.3 0644 root bin -f none /opt/csw/share/man/man3/XSubtractRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XSupportsLocale.3 0644 root bin -f none /opt/csw/share/man/man3/XSync.3 0644 root bin -f none /opt/csw/share/man/man3/XSynchronize.3 0644 root bin -f none /opt/csw/share/man/man3/XTextExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XTextExtents16.3 0644 root bin -f none /opt/csw/share/man/man3/XTextItem.3 0644 root bin -f none /opt/csw/share/man/man3/XTextItem16.3 0644 root bin -f none /opt/csw/share/man/man3/XTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XTextPropertyToStringList.3 0644 root bin -f none /opt/csw/share/man/man3/XTextWidth.3 0644 root bin -f none /opt/csw/share/man/man3/XTextWidth16.3 0644 root bin -f none /opt/csw/share/man/man3/XTimeCoord.3 0644 root bin -f none /opt/csw/share/man/man3/XTranslateCoordinates.3 0644 root bin -f none /opt/csw/share/man/man3/XUndefineCursor.3 0644 root bin -f none /opt/csw/share/man/man3/XUngrabButton.3 0644 root bin -f none /opt/csw/share/man/man3/XUngrabKey.3 0644 root bin -f none /opt/csw/share/man/man3/XUngrabKeyboard.3 0644 root bin -f none /opt/csw/share/man/man3/XUngrabPointer.3 0644 root bin -f none /opt/csw/share/man/man3/XUngrabServer.3 0644 root bin -f none /opt/csw/share/man/man3/XUninstallColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XUnionRectWithRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XUnionRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XUniqueContext.3 0644 root bin -f none /opt/csw/share/man/man3/XUnloadFont.3 0644 root bin -f none /opt/csw/share/man/man3/XUnlockDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/XUnmapEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XUnmapSubwindows.3 0644 root bin -f none /opt/csw/share/man/man3/XUnmapWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XUnregisterIMInstantiateCallback.3 0644 root bin -f none /opt/csw/share/man/man3/XUnsetICFocus.3 0644 root bin -f none /opt/csw/share/man/man3/XVaCreateNestedList.3 0644 root bin -f none /opt/csw/share/man/man3/XVisibilityEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XVisualIDFromVisual.3 0644 root bin -f none /opt/csw/share/man/man3/XVisualInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XWMGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XWMHints.3 0644 root bin -f none /opt/csw/share/man/man3/XWarpPointer.3 0644 root bin -f none /opt/csw/share/man/man3/XWindowAttributes.3 0644 root bin -f none /opt/csw/share/man/man3/XWindowChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XWindowEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XWithdrawWindow.3 0644 root bin -f none /opt/csw/share/man/man3/XWriteBitmapFile.3 0644 root bin -f none /opt/csw/share/man/man3/XXorRegion.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsAllocColor.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsAllocNamedColor.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCCCOfColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELab.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELabQueryMaxC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELabQueryMaxL.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELabQueryMaxLC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELabQueryMinL.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELuv.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELuvQueryMaxC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELuvQueryMaxL.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELuvQueryMaxLC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIELuvQueryMinL.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIEXYZ.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIEuvY.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCIExyY.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsColor.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsConvertColors.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsCreateCCC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsDefaultCCC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsFreeCCC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsLookupColor.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsPad.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryBlack.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryBlue.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryColor.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryColors.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryGreen.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryRed.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsQueryWhite.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsRGB.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsRGBi.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsSetCCCOfColormap.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsSetWhiteAdjustProc.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsSetWhitePoint.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsStoreColor.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsStoreColors.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsTekHVC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsTekHVCQueryMaxC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsTekHVCQueryMaxV.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsTekHVCQueryMaxVC.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsTekHVCQueryMaxVSamples.3 0644 root bin -f none /opt/csw/share/man/man3/XcmsTekHVCQueryMinV.3 0644 root bin -f none /opt/csw/share/man/man3/XkbActionCtrls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddDeviceLedInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomColor.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomDoodad.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomKey.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomKeyAlias.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomOutline.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomOverlay.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomOverlayKey.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomOverlayRow.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomRow.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomSection.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddGeomShape.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAddSymInterpret.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocClientMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocCompatMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocDeviceInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocDeviceLedInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomColors.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomDoodads.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomKeyAliases.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomKeys.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomOutlines.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomOverlayKey.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomOverlayRows.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomOverlays.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomPoints.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomProps.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomRows.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomSectionDoodads.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomSections.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeomShapes.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocIndicatorMaps.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocKeyboard.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocNames.3 0644 root bin -f none /opt/csw/share/man/man3/XkbAllocServerMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbApplyCompatMapToKey.3 0644 root bin -f none /opt/csw/share/man/man3/XkbBell.3 0644 root bin -f none /opt/csw/share/man/man3/XkbBellEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeDeviceInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeEnabledControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeIndicators.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeNames.3 0644 root bin -f none /opt/csw/share/man/man3/XkbChangeTypesOfKey.3 0644 root bin -f none /opt/csw/share/man/man3/XkbComputeRowBounds.3 0644 root bin -f none /opt/csw/share/man/man3/XkbComputeSectionBounds.3 0644 root bin -f none /opt/csw/share/man/man3/XkbComputeShapeBounds.3 0644 root bin -f none /opt/csw/share/man/man3/XkbComputeShapeTop.3 0644 root bin -f none /opt/csw/share/man/man3/XkbCopyKeyType.3 0644 root bin -f none /opt/csw/share/man/man3/XkbCopyKeyTypes.3 0644 root bin -f none /opt/csw/share/man/man3/XkbDeviceBell.3 0644 root bin -f none /opt/csw/share/man/man3/XkbDeviceBellEvent.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFindOverlayForKey.3 0644 root bin -f none /opt/csw/share/man/man3/XkbForceBell.3 0644 root bin -f none /opt/csw/share/man/man3/XkbForceDeviceBell.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeClientMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeCompatMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeComponentList.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeDeviceInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomColors.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomDoodads.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomKeyAliases.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomKeys.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomOutlines.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomOverlayKeys.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomOverlayRows.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomOverlays.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomPoints.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomProperties.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomRows.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomSections.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeomShapes.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeIndicatorMaps.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeKeyboard.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeNames.3 0644 root bin -f none /opt/csw/share/man/man3/XkbFreeServerMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetAccessXTimeout.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetAutoRepeatRate.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetAutoResetControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetBounceKeysDelay.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetCompatMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetControlsChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetDetectableAutorepeat.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetDeviceButtonActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetDeviceInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetDeviceInfoChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetDeviceLedInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetIndicatorChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetIndicatorMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetIndicatorState.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyBehaviors.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyExplicitComponents.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyModifierMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeySyms.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyTypes.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyVirtualModMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyboard.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetKeyboardByName.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetNameChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetNamedGeometry.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetNamedIndicator.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetNames.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetSlowKeysDelay.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetState.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetStickyKeysOptions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetUpdatedMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetVirtualMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbGetXlibControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbIgnoreExtension.3 0644 root bin -f none /opt/csw/share/man/man3/XkbInitCanonicalKeyTypes.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyAction.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyActionEntry.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyActionsPtr.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyGroupInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyGroupWidth.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyGroupsWidth.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyHasActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyNumActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyNumGroups.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyNumSyms.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeySymEntry.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeySymsOffset.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeySymsPtr.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyType.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyTypeIndex.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeyTypesForCoreSymbols.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeycodeToKeysym.3 0644 root bin -f none /opt/csw/share/man/man3/XkbKeysymToModifiers.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLatchGroup.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLatchModifiers.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLibraryVersion.3 0644 root bin -f none /opt/csw/share/man/man3/XkbListComponents.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLockGroup.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLockModifiers.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLookupKeyBinding.3 0644 root bin -f none /opt/csw/share/man/man3/XkbLookupKeySym.3 0644 root bin -f none /opt/csw/share/man/man3/XkbModActionVMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbNoteControlsChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbNoteDeviceChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbNoteIndicatorChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbNoteNameChanges.3 0644 root bin -f none /opt/csw/share/man/man3/XkbOpenDisplay.3 0644 root bin -f none /opt/csw/share/man/man3/XkbOutOfRangeGroupInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbOutOfRangeGroupNumber.3 0644 root bin -f none /opt/csw/share/man/man3/XkbPtrActionX.3 0644 root bin -f none /opt/csw/share/man/man3/XkbPtrActionY.3 0644 root bin -f none /opt/csw/share/man/man3/XkbQueryExtension.3 0644 root bin -f none /opt/csw/share/man/man3/XkbRefreshKeyboardMapping.3 0644 root bin -f none /opt/csw/share/man/man3/XkbResizeDeviceButtonActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbResizeKeyActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbResizeKeySyms.3 0644 root bin -f none /opt/csw/share/man/man3/XkbResizeKeyType.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSAActionSetCtrls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSAGroup.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSAPtrDfltValue.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSARedirectSetVMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSARedirectSetVModsMask.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSARedirectVMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSARedirectVModsMask.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSAScreen.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSASetGroup.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSASetPtrDfltValue.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSASetScreen.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSelectEventDetails.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSelectEvents.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetAccessXTimeout.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetAutoRepeatRate.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetAutoResetControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetBounceKeysDelay.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetCompatMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetDebuggingFlags.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetDetectableAutorepeat.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetDeviceButtonActions.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetDeviceInfo.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetIgnoreLockMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetIndicatorMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetMap.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetModActionVMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetNamedIndicator.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetNames.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetPtrActionX.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetPtrActionY.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetServerInternalMods.3 0644 root bin -f none /opt/csw/share/man/man3/XkbSetXlibControls.3 0644 root bin -f none /opt/csw/share/man/man3/XkbTranslateKeyCode.3 0644 root bin -f none /opt/csw/share/man/man3/XkbTranslateKeySym.3 0644 root bin -f none /opt/csw/share/man/man3/XkbUpdateMapFromCore.3 0644 root bin -f none /opt/csw/share/man/man3/XkbVirtualModsToReal.3 0644 root bin -f none /opt/csw/share/man/man3/XmbDrawImageString.3 0644 root bin -f none /opt/csw/share/man/man3/XmbDrawString.3 0644 root bin -f none /opt/csw/share/man/man3/XmbDrawText.3 0644 root bin -f none /opt/csw/share/man/man3/XmbLookupString.3 0644 root bin -f none /opt/csw/share/man/man3/XmbResetIC.3 0644 root bin -f none /opt/csw/share/man/man3/XmbSetWMProperties.3 0644 root bin -f none /opt/csw/share/man/man3/XmbTextEscapement.3 0644 root bin -f none /opt/csw/share/man/man3/XmbTextExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XmbTextListToTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XmbTextPerCharExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XmbTextPropertyToTextList.3 0644 root bin -f none /opt/csw/share/man/man3/XrmCombineDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmCombineFileDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmDestroyDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmEnumerateDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmGetDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmGetFileDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmGetResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmGetStringDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmInitialize.3 0644 root bin -f none /opt/csw/share/man/man3/XrmLocaleOfDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmMergeDatabases.3 0644 root bin -f none /opt/csw/share/man/man3/XrmOptionDescRec.3 0644 root bin -f none /opt/csw/share/man/man3/XrmOptionKind.3 0644 root bin -f none /opt/csw/share/man/man3/XrmParseCommand.3 0644 root bin -f none /opt/csw/share/man/man3/XrmPermStringToQuark.3 0644 root bin -f none /opt/csw/share/man/man3/XrmPutFileDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmPutLineResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmPutResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmPutStringResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmQGetResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmQGetSearchList.3 0644 root bin -f none /opt/csw/share/man/man3/XrmQGetSearchResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmQPutResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmQPutStringResource.3 0644 root bin -f none /opt/csw/share/man/man3/XrmQuarkToString.3 0644 root bin -f none /opt/csw/share/man/man3/XrmSetDatabase.3 0644 root bin -f none /opt/csw/share/man/man3/XrmStringToBindingQuarkList.3 0644 root bin -f none /opt/csw/share/man/man3/XrmStringToQuark.3 0644 root bin -f none /opt/csw/share/man/man3/XrmStringToQuarkList.3 0644 root bin -f none /opt/csw/share/man/man3/XrmUniqueQuark.3 0644 root bin -f none /opt/csw/share/man/man3/XrmValue.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8DrawImageString.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8DrawString.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8DrawText.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8LookupString.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8ResetIC.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8SetWMProperties.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8TextEscapement.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8TextExtents.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8TextListToTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8TextPerCharExtents.3 0644 root bin -f none /opt/csw/share/man/man3/Xutf8TextPropertyToTextList.3 0644 root bin -f none /opt/csw/share/man/man3/XwcDrawImageString.3 0644 root bin -f none /opt/csw/share/man/man3/XwcDrawString.3 0644 root bin -f none /opt/csw/share/man/man3/XwcDrawText.3 0644 root bin -f none /opt/csw/share/man/man3/XwcFreeStringList.3 0644 root bin -f none /opt/csw/share/man/man3/XwcLookupString.3 0644 root bin -f none /opt/csw/share/man/man3/XwcResetIC.3 0644 root bin -f none /opt/csw/share/man/man3/XwcTextEscapement.3 0644 root bin -f none /opt/csw/share/man/man3/XwcTextExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XwcTextListToTextProperty.3 0644 root bin -f none /opt/csw/share/man/man3/XwcTextPerCharExtents.3 0644 root bin -f none /opt/csw/share/man/man3/XwcTextPropertyToTextList.3 0644 root bin -i copyright=CSWlibX11.copyright -i depend=CSWlibX11.depend -i pkginfo=CSWlibX11.pkginfo Modified: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec 2009-01-11 14:51:28 UTC (rev 2789) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec 2009-01-11 21:01:28 UTC (rev 2790) @@ -1,4 +1,4 @@ %var bitname libX11_dev %var pkgname CSWlibX11dev %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.prototype =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.prototype 2009-01-11 14:51:28 UTC (rev 2789) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.prototype 2009-01-11 21:01:28 UTC (rev 2790) @@ -1,23 +0,0 @@ -d none /opt/csw/include/X11 0755 root bin -f none /opt/csw/include/X11/ImUtil.h 0644 root bin -f none /opt/csw/include/X11/XKBlib.h 0644 root bin -f none /opt/csw/include/X11/Xcms.h 0644 root bin -f none /opt/csw/include/X11/Xlib-xcb.h 0644 root bin -f none /opt/csw/include/X11/Xlib.h 0644 root bin -f none /opt/csw/include/X11/XlibConf.h 0644 root bin -f none /opt/csw/include/X11/Xlibint.h 0644 root bin -f none /opt/csw/include/X11/Xlocale.h 0644 root bin -f none /opt/csw/include/X11/Xregion.h 0644 root bin -f none /opt/csw/include/X11/Xresource.h 0644 root bin -f none /opt/csw/include/X11/Xutil.h 0644 root bin -f none /opt/csw/include/X11/cursorfont.h 0644 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/X11 0755 root bin -f none /opt/csw/lib/libX11-xcb.a 0644 root bin -f none /opt/csw/lib/libX11.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/x11-xcb.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/x11.pc 0644 root bin -i copyright=CSWlibX11dev.copyright -i depend=CSWlibX11dev.depend -i pkginfo=CSWlibX11dev.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sun Jan 11 22:03:55 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 11 Jan 2009 21:03:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[2791] csw/mgar/pkg/x11/libX11/trunk/files Message-ID: Revision: 2791 http://gar.svn.sourceforge.net/gar/?rev=2791&view=rev Author: wbonnet Date: 2009-01-11 21:03:55 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Change gspec name Added Paths: ----------- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec Removed Paths: ------------- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec Deleted: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec 2009-01-11 21:01:28 UTC (rev 2790) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec 2009-01-11 21:03:55 UTC (rev 2791) @@ -1,4 +0,0 @@ -%var bitname libX11_dev -%var pkgname CSWlibX11dev -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec (from rev 2790, csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11dev.gspec) =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec (rev 0) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec 2009-01-11 21:03:55 UTC (rev 2791) @@ -0,0 +1,4 @@ +%var bitname libX11_devel +%var pkgname CSWlibX11devel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sun Jan 11 22:27:34 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 11 Jan 2009 21:27:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[2792] csw/mgar/pkg/x11/libX11/trunk Message-ID: Revision: 2792 http://gar.svn.sourceforge.net/gar/?rev=2792&view=rev Author: wbonnet Date: 2009-01-11 21:27:33 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Fix dependancies Modified Paths: -------------- csw/mgar/pkg/x11/libX11/trunk/Makefile csw/mgar/pkg/x11/libX11/trunk/checksums Added Paths: ----------- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11devel.gspec Removed Paths: ------------- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-01-11 21:03:55 UTC (rev 2791) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-01-11 21:27:33 UTC (rev 2792) @@ -25,5 +25,8 @@ PKGFILES_CSWlibx11devel += $(prefix)/X11/lib/.*\.a PKGFILES_CSWlibx11devel += $(prefix)/X11/lib/pkgconfig/.* +REQUIRED_PKGS_CSWlibx11 = CSWlibxcb +REQUIRED_PKGS_CSWlibx11devel = CSWlibx11 + include gar/category.mk Modified: csw/mgar/pkg/x11/libX11/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/checksums 2009-01-11 21:03:55 UTC (rev 2791) +++ csw/mgar/pkg/x11/libX11/trunk/checksums 2009-01-11 21:27:33 UTC (rev 2792) @@ -1,7 +1,3 @@ 2feb39a0de6f05b25c308268691d960c download/libX11-1.1.5.tar.gz -10fe39a470a8032b5d6efcaa2b6fe16e download/CSWlibX11.gspec -5686e105b71c7ae6806c6878a2a5578d download/CSWlibX11.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWlibX11.depend -be8a3eb0865ba10e2a69c157f323bb48 download/CSWlibX11dev.gspec -170bf9b8d3777c496d3688d5c3886de1 download/CSWlibX11dev.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWlibX11dev.depend +227f750748ff9b31fbf803f6a3d2110a download/CSWlibx11devel.gspec +8b5aa1b7f74313397e420e0c3166aaa4 download/CSWlibx11.gspec Deleted: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec 2009-01-11 21:03:55 UTC (rev 2791) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec 2009-01-11 21:27:33 UTC (rev 2792) @@ -1,4 +0,0 @@ -%var bitname libx11 -%var pkgname CSWlibx11 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec 2009-01-11 21:03:55 UTC (rev 2791) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec 2009-01-11 21:27:33 UTC (rev 2792) @@ -1,4 +0,0 @@ -%var bitname libX11_devel -%var pkgname CSWlibX11devel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec (from rev 2790, csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11.gspec) =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec (rev 0) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec 2009-01-11 21:27:33 UTC (rev 2792) @@ -0,0 +1,4 @@ +%var bitname libx11 +%var pkgname CSWlibx11 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11devel.gspec (from rev 2791, csw/mgar/pkg/x11/libX11/trunk/files/CSWlibX11devel.gspec) =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11devel.gspec (rev 0) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11devel.gspec 2009-01-11 21:27:33 UTC (rev 2792) @@ -0,0 +1,4 @@ +%var bitname libx11_devel +%var pkgname CSWlibx11devel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sun Jan 11 22:29:21 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 11 Jan 2009 21:29:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[2793] csw/mgar/pkg Message-ID: Revision: 2793 http://gar.svn.sourceforge.net/gar/?rev=2793&view=rev Author: wbonnet Date: 2009-01-11 21:29:20 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Move xrender under x11 Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/x11/xrender/ Removed Paths: ------------- csw/mgar/pkg/xrender/ Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-01-11 21:27:33 UTC (rev 2792) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-01-11 21:29:20 UTC (rev 2793) @@ -29,8 +29,8 @@ PKGFILES_CSWlibxcbdoc += $(prefix)/X11/share/doc/.* -REQUIRED_PKGS_CSWlibxcbdevel = $(PREREQUISITE_BASE_PKGS) CSWlibxcb -REQUIRED_PKGS_CSWlibxcb = $(PREREQUISITE_BASE_PKGS) CSWlibxau CSWlibxdmcp +REQUIRED_PKGS_CSWlibxcbdevel = CSWlibxcb +REQUIRED_PKGS_CSWlibxcb = CSWlibxau CSWlibxdmcp include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sun Jan 11 22:33:14 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 11 Jan 2009 21:33:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[2794] csw/mgar/pkg/x11/xrender/trunk Message-ID: Revision: 2794 http://gar.svn.sourceforge.net/gar/?rev=2794&view=rev Author: wbonnet Date: 2009-01-11 21:33:14 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Move to gar v2 Modified Paths: -------------- csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.gspec csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.gspec Removed Paths: ------------- csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.depend csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.prototype csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.depend csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.prototype Property Changed: ---------------- csw/mgar/pkg/x11/xrender/trunk/ Property changes on: csw/mgar/pkg/x11/xrender/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Deleted: csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.depend =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.depend 2009-01-11 21:29:20 UTC (rev 2793) +++ csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.depend 2009-01-11 21:33:14 UTC (rev 2794) @@ -1,2 +0,0 @@ -P CSWlibx11 - Modified: csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.gspec =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.gspec 2009-01-11 21:29:20 UTC (rev 2793) +++ csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.gspec 2009-01-11 21:33:14 UTC (rev 2794) @@ -1,4 +1,4 @@ %var bitname libxrender %var pkgname CSWlibxrender %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.prototype =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.prototype 2009-01-11 21:29:20 UTC (rev 2793) +++ csw/mgar/pkg/x11/xrender/trunk/files/CSWlibxrender.prototype 2009-01-11 21:33:14 UTC (rev 2794) @@ -1,8 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libXrender.la 0755 root bin -f none /opt/csw/lib/libXrender.so.1.3.0 0755 root bin -s none /opt/csw/lib/libXrender.so.1=libXrender.so.1.3.0 -s none /opt/csw/lib/libXrender.so=libXrender.so.1.3.0 -i copyright=CSWlibxrender.copyright -i depend=CSWlibxrender.depend -i pkginfo=CSWlibxrender.pkginfo Deleted: csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.depend =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.depend 2009-01-11 21:29:20 UTC (rev 2793) +++ csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.depend 2009-01-11 21:33:14 UTC (rev 2794) @@ -1,2 +0,0 @@ -P CSWlibxrender -P CSWrenderproto Modified: csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.gspec =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.gspec 2009-01-11 21:29:20 UTC (rev 2793) +++ csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.gspec 2009-01-11 21:33:14 UTC (rev 2794) @@ -1,4 +1,4 @@ %var bitname renderdev %var pkgname CSWrenderdev %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.prototype =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.prototype 2009-01-11 21:29:20 UTC (rev 2793) +++ csw/mgar/pkg/x11/xrender/trunk/files/CSWrenderdev.prototype 2009-01-11 21:33:14 UTC (rev 2794) @@ -1,11 +0,0 @@ -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/X11 0755 root bin -d none /opt/csw/include/X11/extensions 0755 root bin -f none /opt/csw/include/X11/extensions/Xrender.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libXrender.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/xrender.pc 0644 root bin -i copyright=CSWrenderdev.copyright -i depend=CSWrenderdev.depend -i pkginfo=CSWrenderdev.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 11 23:28:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 11 Jan 2009 22:28:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2795] csw/mgar/pkg/cpan/Net-SSLeay/trunk Message-ID: Revision: 2795 http://gar.svn.sourceforge.net/gar/?rev=2795&view=rev Author: dmichelsen Date: 2009-01-11 22:28:40 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Net-SSLeay: Update to 1.35 Modified Paths: -------------- csw/mgar/pkg/cpan/Net-SSLeay/trunk/Makefile csw/mgar/pkg/cpan/Net-SSLeay/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/CSWpmnetssleay.prototype csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/ossl-0.9.8a.diff Modified: csw/mgar/pkg/cpan/Net-SSLeay/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-SSLeay/trunk/Makefile 2009-01-11 21:33:14 UTC (rev 2794) +++ csw/mgar/pkg/cpan/Net-SSLeay/trunk/Makefile 2009-01-11 22:28:40 UTC (rev 2795) @@ -1,5 +1,5 @@ GARNAME = Net-SSLeay -GARVERSION = 1.30 +GARVERSION = 1.35 CATEGORIES = cpan AUTHOR = FLORA @@ -12,19 +12,14 @@ clients for more complicated applications. endef -DISTNAME = $(subst -,_,$(GARNAME)).pm-$(GARVERSION) MODDIST = $(DISTNAME).tar.gz WORKSRC = $(WORKDIR)/$(DISTNAME) -DISTFILES += $(call admfiles,CSWpmnetssleay,depend prototype) +DISTFILES += $(call admfiles,CSWpmnetssleay,depend) -# Convince Makefile.PL to use our OpenSSL -PATCHFILES += ossl-0.9.8a.diff - PERL_CONFIGURE_ARGS = $(prefix) INSTALLDIRS=vendor -# Test disabled: Bug 3287 -TEST_SCRIPTS = +CONFIGURE_ENV = OPENSSL_PREFIX=$(prefix) AUTOMATED_TESTING=1 PERL_MM_USE_DEFAULT=1 include gar/category.mk Modified: csw/mgar/pkg/cpan/Net-SSLeay/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-SSLeay/trunk/checksums 2009-01-11 21:33:14 UTC (rev 2794) +++ csw/mgar/pkg/cpan/Net-SSLeay/trunk/checksums 2009-01-11 22:28:40 UTC (rev 2795) @@ -1,5 +1,5 @@ 945c4e9f5920aa3e827a08c9c5fd162a download/CSWpmnetssleay.gspec -57532d5044cd0c1a93a88a9bd1b7d88a download/CSWpmnetssleay.depend -80b8154df951825bad9050bbbd8d5093 download/CSWpmnetssleay.prototype -b0cd6c1681bbc0695d81be5cd852d1d0 download/Net_SSLeay.pm-1.30.tar.gz +37995caa7f4155066b00fb7503e853da download/CSWpmnetssleay.depend +289657df62375b2bde5a7afaa6715a47 download/CSWpmnetssleay.prototype +1e4ec37a4467eb66a62d3c090ac9029b download/Net-SSLeay-1.35.tar.gz 39e05ffe65862d58b507c8563ff2465e download/ossl-0.9.8a.diff Deleted: csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/CSWpmnetssleay.prototype =================================================================== --- csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/CSWpmnetssleay.prototype 2009-01-11 21:33:14 UTC (rev 2794) +++ csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/CSWpmnetssleay.prototype 2009-01-11 22:28:40 UTC (rev 2795) @@ -1,94 +0,0 @@ -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/perl 0755 root bin -d none /opt/csw/lib/perl/csw 0755 root bin -d none /opt/csw/lib/perl/csw/Net 0755 root bin -d none /opt/csw/lib/perl/csw/Net/SSLeay 0755 root bin -f none /opt/csw/lib/perl/csw/Net/SSLeay.pm 0444 root bin -f none /opt/csw/lib/perl/csw/Net/SSLeay/Handle.pm 0444 root bin -f none /opt/csw/lib/perl/csw/Net/ptrtstrun.pl 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Net 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Net/SSLeay 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/SSLeay.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/SSLeay.so 0555 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/autosplit.ix 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/debug_read.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_https.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_https2.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_https3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_https4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_httpx2.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_httpx3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/do_httpx4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/dump_peer_certificate.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_http.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_http3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_http4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_https.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_https3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_https4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_httpx.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_httpx3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/get_httpx4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_http.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_http3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_http4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_https.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_https3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_https4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_httpx.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_httpx3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/head_httpx4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/http_cat.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/https_cat.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/httpx_cat.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/make_form.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/make_headers.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/new_x_ctx.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/open_proxy_tcp_connection.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/open_tcp_connection.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_http.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_http3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_http4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_https.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_https3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_https4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_httpx.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_httpx3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/post_httpx4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_http.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_http3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_http4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_https.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_https3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_https4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_httpx.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_httpx3.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/put_httpx4.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/randomize.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/set_cert_and_key.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/set_proxy.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/set_server_cert_and_key.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/ssl_read_CRLF.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/ssl_read_all.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/ssl_read_until.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/ssl_write_CRLF.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/ssl_write_all.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/sslcat.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcp_read_CRLF.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcp_read_all.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcp_read_until.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcp_write_CRLF.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcp_write_all.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcpcat.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/tcpxcat.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/want_X509_lookup.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/want_nothing.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/want_read.al 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Net/SSLeay/want_write.al 0444 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Net::SSLeay.3perl 0444 root bin -f none /opt/csw/share/man/man3/Net::SSLeay::Handle.3perl 0444 root bin Deleted: csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/ossl-0.9.8a.diff =================================================================== --- csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/ossl-0.9.8a.diff 2009-01-11 21:33:14 UTC (rev 2794) +++ csw/mgar/pkg/cpan/Net-SSLeay/trunk/files/ossl-0.9.8a.diff 2009-01-11 22:28:40 UTC (rev 2795) @@ -1,26 +0,0 @@ -diff --speed-large-files --minimal -Nru Net_SSLeay.pm-1.30.orig/Makefile.PL Net_SSLeay.pm-1.30/Makefile.PL ---- Net_SSLeay.pm-1.30.orig/Makefile.PL 2006-01-30 03:33:46.663552000 -0500 -+++ Net_SSLeay.pm-1.30/Makefile.PL 2006-01-30 03:33:40.552977000 -0500 -@@ -51,7 +51,7 @@ - shift if $ARGV[0] eq '--'; # Rest of args are for MakeMaker - - $openssl_vers = '0.9.6j'; --$openssl_vers2 = '0.9.7b'; -+$openssl_vers2 = '0.9.8a'; - - print "Checking for OpenSSL-$openssl_vers or $openssl_vers2 or newer...\n"; - -@@ -92,11 +92,13 @@ - . "see README for other options (like older versions of this module).\n" - if $maj eq '0.9' && $min < 3; - -+=pod - warn "That's is newer than what this module was tested with ($openssl_vers\n" - . "or $openssl_vers2). You should\n" - . "consider checking if there is a newer release of this module\n" - . "available. Everything will probably work OK, though.\n" - if $maj > 0.9 || $min > 7; -+=cut - - warn "openssl-0.9.6i/0.9.7a and earlier versions have security flaws or bugs,\n" - . "see advisories at www.openssl.org, upgrading to openssl-$openssl_vers\n" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 11 23:29:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 11 Jan 2009 22:29:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2796] csw/mgar/pkg/cpan/Log-Log4perl/trunk Message-ID: Revision: 2796 http://gar.svn.sourceforge.net/gar/?rev=2796&view=rev Author: dmichelsen Date: 2009-01-11 22:29:13 +0000 (Sun, 11 Jan 2009) Log Message: ----------- Log-Log4Perl: Update to 1.20 Modified Paths: -------------- csw/mgar/pkg/cpan/Log-Log4perl/trunk/Makefile csw/mgar/pkg/cpan/Log-Log4perl/trunk/checksums Modified: csw/mgar/pkg/cpan/Log-Log4perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Log-Log4perl/trunk/Makefile 2009-01-11 22:28:40 UTC (rev 2795) +++ csw/mgar/pkg/cpan/Log-Log4perl/trunk/Makefile 2009-01-11 22:29:13 UTC (rev 2796) @@ -1,5 +1,5 @@ GARNAME = Log-Log4perl -GARVERSION = 1.09 +GARVERSION = 1.20 CATEGORIES = cpan AUTHOR = MSCHILLI Modified: csw/mgar/pkg/cpan/Log-Log4perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Log-Log4perl/trunk/checksums 2009-01-11 22:28:40 UTC (rev 2795) +++ csw/mgar/pkg/cpan/Log-Log4perl/trunk/checksums 2009-01-11 22:29:13 UTC (rev 2796) @@ -1,2 +1,2 @@ b01f45c4ce925f6c61dd28cbb76d66be download/CSWpmlog4perl.gspec -4d272cc5bf0307781d9d5d8b99d8e58e download/Log-Log4perl-1.09.tar.gz +f60a1f8633fb7544fdc4d1e842564a8b download/Log-Log4perl-1.20.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Mon Jan 12 17:51:06 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 12 Jan 2009 16:51:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2797] csw/mgar/pkg Message-ID: Revision: 2797 http://gar.svn.sourceforge.net/gar/?rev=2797&view=rev Author: harpchad Date: 2009-01-12 16:51:06 +0000 (Mon, 12 Jan 2009) Log Message: ----------- Initial commit: libxslt Added Paths: ----------- csw/mgar/pkg/libxslt/ csw/mgar/pkg/libxslt/branches/ csw/mgar/pkg/libxslt/tags/ csw/mgar/pkg/libxslt/trunk/ csw/mgar/pkg/libxslt/trunk/Makefile csw/mgar/pkg/libxslt/trunk/checksums csw/mgar/pkg/libxslt/trunk/files/ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype Property changes on: csw/mgar/pkg/libxslt/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 Added: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-12 16:51:06 UTC (rev 2797) @@ -0,0 +1,26 @@ +GARNAME = libxslt +GARVERSION = 1.1.24 +CATEGORIES = lib + +DESCRIPTION = XSLT engine for the XML Toolkit +define BLURB + Libxslt is the XSLT C library developed for the GNOME project. XSLT itself is a an XML language to define transformation for XML. Libxslt is based on libxml2 the XML C library developed for the GNOME project. It also implements most of the EXSLT set of processor-portable extensions functions and some of Saxon's evaluate and expressions extensions. +endef + +MASTER_SITES = ftp://xmlsoft.org/libxslt/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWlibxslt,) + +PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel +TEST_TARGET = check + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# If the url used to check for software update is different of MASTER_SITES, then +# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES +# UPSTREAM_MASTER_SITES = + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/libxslt/trunk/checksums =================================================================== --- csw/mgar/pkg/libxslt/trunk/checksums (rev 0) +++ csw/mgar/pkg/libxslt/trunk/checksums 2009-01-12 16:51:06 UTC (rev 2797) @@ -0,0 +1,3 @@ +6faa1f60fc8e905aefbe24f6ea730c4a download/CSWlibxslt.gspec +c736ebf9711567b6c338f6f216cce7b2 download/CSWlibxslt.prototype +e83ec5d27fc4c10c6f612879bea9a153 download/libxslt-1.1.24.tar.gz Added: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec 2009-01-12 16:51:06 UTC (rev 2797) @@ -0,0 +1,4 @@ +%var bitname libxslt +%var pkgname CSWlibxslt +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/COPYING Added: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype 2009-01-12 16:51:06 UTC (rev 2797) @@ -0,0 +1,161 @@ +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/xslt-config 0755 root bin +f none /opt/csw/bin/xsltproc 0755 root bin +d none /opt/csw/include 0755 root bin +d none /opt/csw/include/libexslt 0755 root bin +f none /opt/csw/include/libexslt/exslt.h 0644 root bin +f none /opt/csw/include/libexslt/exsltconfig.h 0644 root bin +f none /opt/csw/include/libexslt/exsltexports.h 0644 root bin +d none /opt/csw/include/libxslt 0755 root bin +f none /opt/csw/include/libxslt/attributes.h 0644 root bin +f none /opt/csw/include/libxslt/documents.h 0644 root bin +f none /opt/csw/include/libxslt/extensions.h 0644 root bin +f none /opt/csw/include/libxslt/extra.h 0644 root bin +f none /opt/csw/include/libxslt/functions.h 0644 root bin +f none /opt/csw/include/libxslt/imports.h 0644 root bin +f none /opt/csw/include/libxslt/keys.h 0644 root bin +f none /opt/csw/include/libxslt/namespaces.h 0644 root bin +f none /opt/csw/include/libxslt/numbersInternals.h 0644 root bin +f none /opt/csw/include/libxslt/pattern.h 0644 root bin +f none /opt/csw/include/libxslt/preproc.h 0644 root bin +f none /opt/csw/include/libxslt/security.h 0644 root bin +f none /opt/csw/include/libxslt/templates.h 0644 root bin +f none /opt/csw/include/libxslt/transform.h 0644 root bin +f none /opt/csw/include/libxslt/variables.h 0644 root bin +f none /opt/csw/include/libxslt/xslt.h 0644 root bin +f none /opt/csw/include/libxslt/xsltInternals.h 0644 root bin +f none /opt/csw/include/libxslt/xsltconfig.h 0644 root bin +f none /opt/csw/include/libxslt/xsltexports.h 0644 root bin +f none /opt/csw/include/libxslt/xsltutils.h 0644 root bin +d none /opt/csw/lib 0755 root bin +f none /opt/csw/lib/libexslt.a 0644 root bin +f none /opt/csw/lib/libexslt.so.0.8.13 0755 root bin +s none /opt/csw/lib/libexslt.so.0=libexslt.so.0.8.13 +s none /opt/csw/lib/libexslt.so=libexslt.so.0.8.13 +d none /opt/csw/lib/libxslt-plugins 0755 root bin +f none /opt/csw/lib/libxslt.a 0644 root bin +f none /opt/csw/lib/libxslt.so.1.1.24 0755 root bin +s none /opt/csw/lib/libxslt.so.1=libxslt.so.1.1.24 +s none /opt/csw/lib/libxslt.so=libxslt.so.1.1.24 +d none /opt/csw/lib/pkgconfig 0755 root bin +f none /opt/csw/lib/pkgconfig/libexslt.pc 0644 root bin +f none /opt/csw/lib/pkgconfig/libxslt.pc 0644 root bin +d none /opt/csw/lib/python2.5 0755 root bin +d none /opt/csw/lib/python2.5/site-packages 0755 root bin +f none /opt/csw/lib/python2.5/site-packages/libxslt.py 0644 root bin +f none /opt/csw/lib/python2.5/site-packages/libxsltmod.a 0644 root bin +f none /opt/csw/lib/python2.5/site-packages/libxsltmod.so 0755 root bin +f none /opt/csw/lib/xsltConf.sh 0644 root bin +d none /opt/csw/share/aclocal 0755 root bin +f none /opt/csw/share/aclocal/libxslt.m4 0644 root bin +d none /opt/csw/share/doc 0755 root bin +d none /opt/csw/share/doc/libxslt-1.1.24 0755 root bin +d none /opt/csw/share/doc/libxslt-1.1.24/html 0755 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/API.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk0.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk1.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk10.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk11.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk12.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk13.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk2.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk3.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk4.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk5.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk6.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk7.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk8.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk9.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIconstructors.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIfiles.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIfunctions.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/APIsymbols.html 0644 root bin +d none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT 0755 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIchunk0.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIconstructors.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIfiles.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIfunctions.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIsymbols.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/bugs.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/docs.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/downloads.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/exslt.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/help.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/index.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/intro.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/FAQ.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/Libxslt-Logo-180x168.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/Libxslt-Logo-90x34.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/bugs.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/contexts.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/contribs.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/docbook.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/docs.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/downloads.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/extensions.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/help.html 0644 root bin +d none /opt/csw/share/doc/libxslt-1.1.24/html/html 0755 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/book1.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/home.png 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/index.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/left.png 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-attributes.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-documents.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-extensions.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-extra.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-functions.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-imports.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-keys.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-lib.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-namespaces.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-numbersInternals.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-pattern.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-preproc.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-security.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-templates.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-transform.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-variables.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xslt.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xsltInternals.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xsltexports.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xsltutils.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/right.png 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/html/up.png 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/index.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/internals.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/intro.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/news.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/node.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/object.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/processing.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/python.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/redhat.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/smallfootonly.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/stylesheet.gif 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/templates.gif 0644 root bin +d none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial 0755 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial/libxslt_tutorial.c 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial/libxslttutorial.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial/libxslttutorial.xml 0644 root bin +d none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2 0755 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2/libxslt_pipes.c 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2/libxslt_pipes.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2/libxslt_pipes.xml 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/xslt.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/xsltproc.html 0644 root bin +f none /opt/csw/share/doc/libxslt-1.1.24/html/xsltproc2.html 0644 root bin +d none /opt/csw/share/doc/libxslt-python-1.1.24 0755 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/TODO 0644 root bin +d none /opt/csw/share/doc/libxslt-python-1.1.24/examples 0755 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/basic.py 0644 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/exslt.py 0644 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/extelem.py 0644 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/extfunc.py 0644 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/pyxsltproc.py 0644 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/test.xml 0644 root bin +f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/test.xsl 0644 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/xsltproc.1 0644 root bin +d none /opt/csw/share/man/man3 0755 root bin +f none /opt/csw/share/man/man3/libexslt.3 0644 root bin +f none /opt/csw/share/man/man3/libxslt.3 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jan 12 18:18:56 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 12 Jan 2009 17:18:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[2798] csw/mgar/pkg Message-ID: Revision: 2798 http://gar.svn.sourceforge.net/gar/?rev=2798&view=rev Author: bonivart Date: 2009-01-12 17:18:56 +0000 (Mon, 12 Jan 2009) Log Message: ----------- dcc: first commit Added Paths: ----------- csw/mgar/pkg/dcc/ csw/mgar/pkg/dcc/branches/ csw/mgar/pkg/dcc/tags/ csw/mgar/pkg/dcc/trunk/ csw/mgar/pkg/dcc/trunk/Makefile csw/mgar/pkg/dcc/trunk/checksums csw/mgar/pkg/dcc/trunk/files/ csw/mgar/pkg/dcc/trunk/files/CSWdcc.gspec Property changes on: csw/mgar/pkg/dcc/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/dcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/dcc/trunk/Makefile (rev 0) +++ csw/mgar/pkg/dcc/trunk/Makefile 2009-01-12 17:18:56 UTC (rev 2798) @@ -0,0 +1,50 @@ +GARNAME = dcc +GARVERSION = 1.3.102 +CATEGORIES = net + +DESCRIPTION = email greylisting and a cooperative, distributed system to identify spam + +MASTER_SITES = http://www.rhyolite.com/dcc/source/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.Z +DISTFILES += $(call admfiles,CSWdcc,) + +#CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS = +CONFIGURE_ARGS += --homedir=/var/opt/csw/dcc +CONFIGURE_ARGS += --bindir=/opt/csw/bin +CONFIGURE_ARGS += --libexecdir=/opt/csw/libexec/dcc +CONFIGURE_ARGS += --mandir=/opt/csw/share/man +CONFIGURE_ARGS += --with-installroot=$(DESTDIR) +CONFIGURE_ARGS += --with-DCC-MD5 +CONFIGURE_ARGS += --with-uid=bonivart +#CONFIGURE_ARGS += --with-cgibin=/var/opt/csw/dcc/cgi-bin +CONFIGURE_ARGS += --with-cgibin=/opt/csw/dcc/cgi-bin +CONFIGURE_ARGS += --with-rundir=/var/opt/csw/dcc/run +CONFIGURE_ARGS += --with-sendmail=/home/bonivart/tmp/sendmail-8.14.2/include/libmilter + +# dcc has no tests +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PROTOTYPE_FILTER = awk '$$$$3 ~ /.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' + +SPKG_SOURCEURL = http://www.rhyolite.com/dcc/ +REQUIRED_PKGS = CSWcswclassutils +SPKG_CLASSES = none cswcpsampleconf +CONFFILES = dcc_conf flod grey_flod grey_whitelist ids map map.txt whiteclnt whitecommon whitelist + +include gar/category.mk + +install-custom: + @echo " ==> Installing $(GARNAME) (custom)" + @rm -rf $(DESTDIR) + @( cd $(WORKSRC) ; \ + sed 's/DCC_GRP.*=bin/DCC_GRP =csw/' Makefile.inc > tmp.sed ; \ + mv tmp.sed Makefile.inc ; \ + cd cgi-bin ; \ + sed 's/\/opt\/csw\/dcc\/cgi-bin/\/var\/opt\/csw\/dcc\/cgi-bin/' Makefile > tmp.sed ; \ + mv tmp.sed Makefile ; \ + cd .. ; \ + gmake install ) + $(foreach FILE, $(CONFFILES), mv $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE) $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE).CSW ;) + @$(MAKECOOKIE) Added: csw/mgar/pkg/dcc/trunk/checksums =================================================================== --- csw/mgar/pkg/dcc/trunk/checksums (rev 0) +++ csw/mgar/pkg/dcc/trunk/checksums 2009-01-12 17:18:56 UTC (rev 2798) @@ -0,0 +1,2 @@ +6abf97babd8555d37ad91efc7ba4ae7b download/dcc-1.3.102.tar.Z +472a0e3cfd53e0080ddeb5db77d5b708 download/CSWdcc.gspec Added: csw/mgar/pkg/dcc/trunk/files/CSWdcc.gspec =================================================================== --- csw/mgar/pkg/dcc/trunk/files/CSWdcc.gspec (rev 0) +++ csw/mgar/pkg/dcc/trunk/files/CSWdcc.gspec 2009-01-12 17:18:56 UTC (rev 2798) @@ -0,0 +1,7 @@ +%var bitname dcc +%var pkgname CSWdcc +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +Please see /opt/csw/share/doc/dcc/LICENSE for license information. + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jan 12 18:20:32 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 12 Jan 2009 17:20:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2799] csw/mgar/pkg/bind/trunk/Makefile Message-ID: Revision: 2799 http://gar.svn.sourceforge.net/gar/?rev=2799&view=rev Author: bonivart Date: 2009-01-12 17:20:32 +0000 (Mon, 12 Jan 2009) Log Message: ----------- bind: added DNS to description Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-01-12 17:18:56 UTC (rev 2798) +++ csw/mgar/pkg/bind/trunk/Makefile 2009-01-12 17:20:32 UTC (rev 2799) @@ -6,7 +6,7 @@ WORKSRC = $(WORKDIR)/$(DISTNAME) CATEGORIES = net -DESCRIPTION = ISC BIND reference implementation +DESCRIPTION = ISC BIND DNS reference implementation define BLURB BIND is open-source software that implements the Domain Name System (DNS) protocols for the Internet. It is a reference implementation of those @@ -22,10 +22,10 @@ DISTFILES += $(call admfiles,CSWlibbind,) DISTFILES += $(call admfiles,CSWbindutils,) -SPKG_DESC_CSWbind = ISC BIND main package -SPKG_DESC_CSWbinddevel = ISC BIND development package -SPKG_DESC_CSWlibbind = ISC BIND library package -SPKG_DESC_CSWbindutils = ISC BIND utilities package +SPKG_DESC_CSWbind = ISC BIND DNS main package +SPKG_DESC_CSWbinddevel = ISC BIND DNS development package +SPKG_DESC_CSWlibbind = ISC BIND DNS library package +SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils REQUIRED_PKGS_CSWbinddevel = CSWbind This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Mon Jan 12 18:24:30 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 12 Jan 2009 17:24:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[2800] csw/mgar/pkg/libxslt/trunk/Makefile Message-ID: Revision: 2800 http://gar.svn.sourceforge.net/gar/?rev=2800&view=rev Author: harpchad Date: 2009-01-12 17:24:30 +0000 (Mon, 12 Jan 2009) Log Message: ----------- Add prototype Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-12 17:20:32 UTC (rev 2799) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-12 17:24:30 UTC (rev 2800) @@ -9,7 +9,7 @@ MASTER_SITES = ftp://xmlsoft.org/libxslt/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibxslt,) +DISTFILES += $(call admfiles,CSWlibxslt,prototype) PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel TEST_TARGET = check This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Mon Jan 12 18:54:04 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Mon, 12 Jan 2009 17:54:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2801] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 2801 http://gar.svn.sourceforge.net/gar/?rev=2801&view=rev Author: aigoshin Date: 2009-01-12 17:54:04 +0000 (Mon, 12 Jan 2009) Log Message: ----------- nginx: fixing sources about ISALIST Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-12 17:24:30 UTC (rev 2800) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-12 17:54:04 UTC (rev 2801) @@ -2,7 +2,7 @@ GARVERSION = 0.7.30 CATEGORIES = server -DESCRIPTION = HTTP server and mail proxy server +DESCRIPTION = nginx HTTP server and mail proxy server define BLURB Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. @@ -22,8 +22,8 @@ #CONFIGURE_ARGS += --with-cpu-opt=pentium3 CONFIGURE_ARGS += --with-cc-opt="-I$(includedir) -I$(includedir)/openssl" -#CONFIGURE_ARGS += --with-ld-opt="$(LDFLAGS)" -CONFIGURE_ARGS += --with-ld-opt="-R$(libdir) -R$(libdir) -L$(libdir)" +CONFIGURE_ARGS += --with-ld-opt="$(LDFLAGS)" +#CONFIGURE_ARGS += --with-ld-opt="-R$(libdir) -R$(libdir) -L$(libdir)" CONFIGURE_ARGS += --prefix=$(prefix)/var/nginx CONFIGURE_ARGS += --conf-path=$(sysconfdir)/nginx/nginx.conf CONFIGURE_ARGS += --sbin-path=$(sbindir)/nginx @@ -44,19 +44,24 @@ TEST_SCRIPTS = -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc|(svc\/(manifest|manifest\/site))))$$$$/ { $$$$6 = "sys" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc|(svc\/(manifest|manifest\/site))))$$$$/ { $$$$6 = "?" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' include gar/category.mk NGINXDOCS = CHANGES CHANGES.ru LICENSE README +post-configure-modulated: + $(foreach MODULATION,$(MODULATIONS), \ + gsed -i s#/...ISALIST#/'$$ISALIST'# $(WORKSRC)/objs/ngx_auto_config.h;) + $(MAKECOOKIE) + post-install-modulated: cp $(WORKDIR)/svc-cswnginx $(WORKDIR)/cswnginx + ginstall -d $(DESTDIR)$(sysconfdir)/nginx/conf.d ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib ginstall -d $(DESTDIR)$(docdir)/nginx - ginstall -d $(DESTDIR)$(prefix)/var/nginx + ginstall -d $(DESTDIR)$(prefix)/var/log/nginx ginstall -d $(DESTDIR)$(prefix)/var/nginx/sites - ginstall -d $(DESTDIR)$(prefix)/var/log/nginx ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/client ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/fastcgi ginstall -d $(DESTDIR)$(prefix)/var/spool/nginx/proxy Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-12 17:24:30 UTC (rev 2800) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-12 17:54:04 UTC (rev 2801) @@ -1,10 +1,10 @@ %var bitname nginx %var pkgname CSWnginx %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE +%include url file://%{PKGLIB}/smf_enabled.gspec %var SERVICE_CONF_FILES /opt/csw/etc/nginx/nginx.conf -%include url file://%{PKGLIB}/smf_enabled.gspec %var RC_INIT_SCRIPT cswnginx %var INIT_KILL_PRIO 16 %var INIT_START_PRIO 90 %var CAN_BE_AUTOENABLED no +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall 2009-01-12 17:24:30 UTC (rev 2800) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall 2009-01-12 17:54:04 UTC (rev 2801) @@ -1,23 +1,5 @@ #!/sbin/sh -CONFDIR=$BASEDIR/opt/csw/etc/nginx -CONFFILES="fastcgi_params mime.types nginx.conf" - -# copy new config files, if it's not existing -for file in $CONFFILES; do - confpath="$CONFDIR/$file" - if [ -f "$confpath" ]; then - echo "Not touching existing $confpath" - else - if [ -r "$confpath.CSW" ]; then - echo "Copying $confpath.CSW to $confpath" - cp -p "$confpath.CSW" "$confpath" - else - echo "Skipping $confpath.CSW..." - fi - fi -done - if [ "$NEEDUPGRADE" = "1" ] ; then if [ -x "$BASEDIR/opt/csw/lib/svc/method/svc-cswnginx" ]; then $BASEDIR/opt/csw/lib/svc/method/svc-cswnginx upgrade This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 08:17:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 07:17:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[2802] csw/mgar/pkg Message-ID: Revision: 2802 http://gar.svn.sourceforge.net/gar/?rev=2802&view=rev Author: dmichelsen Date: 2009-01-13 07:17:52 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libgpg_error: Initial commit Added Paths: ----------- csw/mgar/pkg/libgpg_error/ csw/mgar/pkg/libgpg_error/branches/ csw/mgar/pkg/libgpg_error/tags/ csw/mgar/pkg/libgpg_error/trunk/ csw/mgar/pkg/libgpg_error/trunk/Makefile csw/mgar/pkg/libgpg_error/trunk/checksums csw/mgar/pkg/libgpg_error/trunk/files/ csw/mgar/pkg/libgpg_error/trunk/files/CSWgpgerr.gspec Property changes on: csw/mgar/pkg/libgpg_error/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libgpg_error/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgpg_error/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libgpg_error/trunk/Makefile 2009-01-13 07:17:52 UTC (rev 2802) @@ -0,0 +1,26 @@ +GARNAME = libgpg-error +GARVERSION = 1.7 +CATEGORIES = lib + +DESCRIPTION = GNU gpg related library +define BLURB + Libgpg-error is a small library with error codes and descriptions + shared by most GnuPG related software. +endef + +MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/libgpg-error/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWgpgerr,) + +SPKG_SOURCEURL = http://www.gnupg.org/download/ + +REQUIRED_PKGS = CSWiconv CSWggettext + +BUILD64 = 1 +NO_ISAEXEC = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/libgpg_error/trunk/checksums =================================================================== --- csw/mgar/pkg/libgpg_error/trunk/checksums (rev 0) +++ csw/mgar/pkg/libgpg_error/trunk/checksums 2009-01-13 07:17:52 UTC (rev 2802) @@ -0,0 +1,2 @@ +62c0d09d1e76c5b6da8fff92314c4665 download/libgpg-error-1.7.tar.bz2 +9bdc4607eda7221e72f6f027423080f2 download/CSWgpgerr.gspec Added: csw/mgar/pkg/libgpg_error/trunk/files/CSWgpgerr.gspec =================================================================== --- csw/mgar/pkg/libgpg_error/trunk/files/CSWgpgerr.gspec (rev 0) +++ csw/mgar/pkg/libgpg_error/trunk/files/CSWgpgerr.gspec 2009-01-13 07:17:52 UTC (rev 2802) @@ -0,0 +1,4 @@ +%var bitname libgpg_error +%var pkgname CSWgpgerr +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Jan 13 09:18:31 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 13 Jan 2009 08:18:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2803] csw/mgar/pkg/cpan/libwww-perl/trunk Message-ID: Revision: 2803 http://gar.svn.sourceforge.net/gar/?rev=2803&view=rev Author: bonivart Date: 2009-01-13 08:18:31 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libwww-perl: update to 5.823 Modified Paths: -------------- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile csw/mgar/pkg/cpan/libwww-perl/trunk/checksums Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-01-13 07:17:52 UTC (rev 2802) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-01-13 08:18:31 UTC (rev 2803) @@ -1,9 +1,9 @@ GARNAME = libwww-perl -GARVERSION = 5.822 +GARVERSION = 5.823 CATEGORIES = cpan AUTHOR = GAAS -DESCRIPTION = a general-purpose Web API for Perl, based on W3C libwww. +DESCRIPTION = A general-purpose Web API for Perl, based on W3C libwww define BLURB The DBI is a database access module for the Perl programming language. It defines a set of methods, variables, and conventions that provide a Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-01-13 07:17:52 UTC (rev 2802) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-01-13 08:18:31 UTC (rev 2803) @@ -1,2 +1,2 @@ 7f2db1cb966b9260b395fdbc01b09fae download/CSWpmlibwww.gspec -5b5856e0d61abb75fb5f52ed1678161f download/libwww-perl-5.822.tar.gz +9e1d2039e5ed9ed5e0783c2c1c33db8f download/libwww-perl-5.823.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Jan 13 14:59:14 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 13 Jan 2009 13:59:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[2804] csw/mgar/pkg/dcc/trunk Message-ID: Revision: 2804 http://gar.svn.sourceforge.net/gar/?rev=2804&view=rev Author: bonivart Date: 2009-01-13 13:59:13 +0000 (Tue, 13 Jan 2009) Log Message: ----------- dcc: added doc files Modified Paths: -------------- csw/mgar/pkg/dcc/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/dcc/trunk/files/CSWdcc.INSTALL.CSW.txt csw/mgar/pkg/dcc/trunk/files/CSWdcc.dcc.xml csw/mgar/pkg/dcc/trunk/files/CSWdcc.svc-dcc Modified: csw/mgar/pkg/dcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/dcc/trunk/Makefile 2009-01-13 08:18:31 UTC (rev 2803) +++ csw/mgar/pkg/dcc/trunk/Makefile 2009-01-13 13:59:13 UTC (rev 2804) @@ -2,7 +2,7 @@ GARVERSION = 1.3.102 CATEGORIES = net -DESCRIPTION = email greylisting and a cooperative, distributed system to identify spam +DESCRIPTION = E-mail greylisting and a cooperative, distributed system to identify spam MASTER_SITES = http://www.rhyolite.com/dcc/source/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.Z @@ -32,6 +32,7 @@ REQUIRED_PKGS = CSWcswclassutils SPKG_CLASSES = none cswcpsampleconf CONFFILES = dcc_conf flod grey_flod grey_whitelist ids map map.txt whiteclnt whitecommon whitelist +DOCFILES = CHANGES FAQ.txt INSTALL.txt LICENSE RESTRICTIONS misc/README misc/dcc.m4 misc/dccdnsbl.m4 misc/site.config.m4 include gar/category.mk @@ -46,5 +47,10 @@ mv tmp.sed Makefile ; \ cd .. ; \ gmake install ) - $(foreach FILE, $(CONFFILES), mv $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE) $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE).CSW ;) + @$(foreach FILE, $(CONFFILES), mv $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE) $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE).CSW ;) + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME)/misc + @$(foreach FILE, $(DOCFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(docdir)/$(GARNAME)/$(FILE) ;) + @cp $(FILEDIR)/CSWdcc.INSTALL.CSW.txt $(DESTDIR)$(docdir)/$(GARNAME)/INSTALL.CSW.txt + @cp $(FILEDIR)/CSWdcc.dcc.xml $(DESTDIR)$(docdir)/$(GARNAME)/dcc.xml + @cp $(FILEDIR)/CSWdcc.svc-dcc $(DESTDIR)$(docdir)/$(GARNAME)/svc-dcc @$(MAKECOOKIE) Added: csw/mgar/pkg/dcc/trunk/files/CSWdcc.INSTALL.CSW.txt =================================================================== --- csw/mgar/pkg/dcc/trunk/files/CSWdcc.INSTALL.CSW.txt (rev 0) +++ csw/mgar/pkg/dcc/trunk/files/CSWdcc.INSTALL.CSW.txt 2009-01-13 13:59:13 UTC (rev 2804) @@ -0,0 +1,29 @@ +2006.01.27 - Package changes +If you are using Solaris 10 or later, you can setup dcc to use Service Manifest Facility. You may want to change the dependencies. + +To setup SMF: +1) Make the following directories, if needed: + `mkdir -p /opt/csw/lib/svc/method` + `mkdir -p /opt/csw/var/svc/manifest/network` +2) Copy the service method file. Change if needed: + `cp -p /opt/csw/share/doc/dcc/svc-dcc /opt/csw/lib/svc/method/` +3) Copy the manifest file. Change if needed: + `cp -p /opt/csw/share/doc/dcc/dcc.xml /opt/csw/var/svc/manifest/network/` +4) Register the service: + `/usr/sbin/svccfg import /opt/csw/var/svc/manifest/network/dcc.xml` +5) Enable the service: + `/usr/sbin/svcadm enable svc:network/cswdcc' + +To restart DCC after upgrades: + `svcadm restart cswdcc` + +To permanently remove SMF setup: +1) Disable service: + `/usr/sbin/svcadm disable -s svc:network/cswdcc` +2) Unregister with SMF: + `/usr/sbin/svccfg delete svc:network/cswdcc` +3) Delete unused files: + `rm /opt/csw/lib/svc/method/svc-dcc /opt/csw/var/svc/manifest/network/dcc.xml' + +** Previous text ** +The package installs all options for dcc. However, nothing is started automatically because there are several ways to use dcc. Read the FAQ and INSTALL documents and the man pages to decide how you wish to use dcc and complete the installation. If your site participates in the SMTP transactions, consider greylisting. This is a powerful feature of dcc. The m4 files for sendmail milter are in /opt/csw/share/doc/dcc/misc. For a startup script, I suggest a symlink in /etc/rc2.d, maybe S77DCC, to /opt/csw/dcc/libexec/rcDCC. Added: csw/mgar/pkg/dcc/trunk/files/CSWdcc.dcc.xml =================================================================== --- csw/mgar/pkg/dcc/trunk/files/CSWdcc.dcc.xml (rev 0) +++ csw/mgar/pkg/dcc/trunk/files/CSWdcc.dcc.xml 2009-01-13 13:59:13 UTC (rev 2804) @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Added: csw/mgar/pkg/dcc/trunk/files/CSWdcc.svc-dcc =================================================================== --- csw/mgar/pkg/dcc/trunk/files/CSWdcc.svc-dcc (rev 0) +++ csw/mgar/pkg/dcc/trunk/files/CSWdcc.svc-dcc 2009-01-13 13:59:13 UTC (rev 2804) @@ -0,0 +1,125 @@ +#!/bin/sh + +# chkconfig: 2345 40 80 +# description: rcDCC is a startup script for DCC \ +# http://www.rhyolite.com/anti-spam/dcc +# processname: dccd +# processname: dccm +# processname: dccifd + +# start or stop dccd, dccifd, and dccm for Solaris, System V, IRIX, +# Redhat Linux, or FreeBSD + +# dccm must be started before sendmail and stopped after sendmail to avoid +# complaints from sendmail +# dccd must be should before the first mail message arrives +# Thus on some Solaris systems, this script can be installed as +# rc0.d/K37DCC rc1.d/K37DCC rc2.d/S88DCC rcS.d/K37DCC +# On some Linux systems it can be installed as rc.d/init.d/DCC and linked +# to rc.d/rc0.d/K31DCC rc.d/rc1.d/K31DCC rc.d/rc2.d/S80DCC rc.d/rc3.d/S80DCC +# rc.d/rc4.d/S80DCC rc.d/rc5.d/S80DCC and rc.d/rc6.d/K31DCC +# On older FreeBSD systems a line like +# /opt/csw/dcc/libexec/rcDCC start +# can be added to /etc/rc just before sendmail is started and a line like +# /opt/csw/dcc/libexec/rcDCC stop +# can be added to /etc/rc.shutdown. +# On 4.* FreeBSD systems, make a symbolic link from this file. +# to /etc/rc.d/rcDCC.sh +# On FreeBSD 5.* and 6.* systems, link this file to +# /usr/local/etc/rc.d/rcDCC.sh + + + +# Copyright (c) 2008 by Rhyolite Software, LLC +# +# This agreement is not applicable to any entity which sells anti-spam +# solutions to others or provides an anti-spam solution as part of a +# security solution sold to other entities, or to a private network +# which employs the DCC or uses data provided by operation of the DCC +# but does not provide corresponding data to other users. +# +# Permission to use, copy, modify, and distribute this software without +# changes for any purpose with or without fee is hereby granted, provided +# that the above copyright notice and this permission notice appear in all +# copies and any distributed versions or copies are either unchanged +# or not called anything similar to "DCC" or "Distributed Checksum +# Clearinghouse". +# +# Parties not eligible to receive a license under this agreement can +# obtain a commercial license to use DCC by contacting Rhyolite Software +# at sales at rhyolite.com. +# +# A commercial license would be for Distributed Checksum and Reputation +# Clearinghouse software. That software includes additional features. This +# free license for Distributed ChecksumClearinghouse Software does not in any +# way grant permision to use Distributed Checksum and Reputation Clearinghouse +# software +# +# THE SOFTWARE IS PROVIDED "AS IS" AND RHYOLITE SOFTWARE, LLC DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES +# OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL RHYOLITE SOFTWARE, LLC +# BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES +# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +# WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +# ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +# SOFTWARE. +# Rhyolite Software DCC 1.3.82-1.33 $Revision$ +# Generated automatically from rcDCC.in by configure. + +. /lib/svc/share/smf_include.sh + +DCC_HOMEDIR=/opt/csw/dcc +DCC_LIBEXEC=/opt/csw/dcc/libexec # in case dcc_conf has disappeared +. $DCC_HOMEDIR/dcc_conf +if test -z "$DCC_RUNDIR" -a -n "$DCCM_RUNDIR"; then + # deal with old dcc_conf files + DCC_RUNDIR="$DCCM_RUNDIR" +fi + +DEBUG= +if test "X$1" = "X-x"; then + set -x + DEBUG=-x + shift +fi + +case "$1" in +start) + $DCC_LIBEXEC/start-dccd $DEBUG + $DCC_LIBEXEC/start-grey $DEBUG + $DCC_LIBEXEC/start-dccm $DEBUG + $DCC_LIBEXEC/start-dccifd $DEBUG + ;; + +stop) + # stop dccm and dccifd + for PID in `cat $DCC_RUNDIR/dcc*.pid $DCC_HOMEDIR/dcc*.pid \ + 2>/dev/null`; do +# signal the process group because on Linux systems signaling the main +# process does not work. See `man sigwait` on a Linux system. + /bin/kill -15 $PID + done + # Tell dccd for operating system shutdown, including deleting + # dcc_db.hash, which will be rebuilt by dbclean when dccd is restarted. + $DCC_LIBEXEC/stop-dccd -S $DEBUG + $DCC_LIBEXEC/stop-dccd -G -S $DEBUG + ;; + +restart|reload) + # for Linux + $0 $DEBUG start + exit $? + ;; + +probe) + # for Linux + echo $DEBUG restart + ;; + +*) + echo "Usage: $0 {start|stop|restart|reload|probe}" + exit 1 + ;; + +esac +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Tue Jan 13 16:09:38 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Tue, 13 Jan 2009 15:09:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[2805] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 2805 http://gar.svn.sourceforge.net/gar/?rev=2805&view=rev Author: aigoshin Date: 2009-01-13 15:09:38 +0000 (Tue, 13 Jan 2009) Log Message: ----------- nginx: milestone 1.6 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-13 13:59:13 UTC (rev 2804) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-13 15:09:38 UTC (rev 2805) @@ -23,7 +23,6 @@ #CONFIGURE_ARGS += --with-cpu-opt=pentium3 CONFIGURE_ARGS += --with-cc-opt="-I$(includedir) -I$(includedir)/openssl" CONFIGURE_ARGS += --with-ld-opt="$(LDFLAGS)" -#CONFIGURE_ARGS += --with-ld-opt="-R$(libdir) -R$(libdir) -L$(libdir)" CONFIGURE_ARGS += --prefix=$(prefix)/var/nginx CONFIGURE_ARGS += --conf-path=$(sysconfdir)/nginx/nginx.conf CONFIGURE_ARGS += --sbin-path=$(sbindir)/nginx @@ -44,7 +43,7 @@ TEST_SCRIPTS = -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc|(svc\/(manifest|manifest\/site))))$$$$/ { $$$$6 = "?" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/var\/((log|run)|(svc|(svc\/(manifest|manifest\/site))))$$$$/ { $$$$6 = "sys" } $$$$3 ~ /\/var\/spool\/nginx\/(client|fastcgi|proxy)$$$$/ { $$$$4 = "700" } { print }' include gar/category.mk @@ -57,6 +56,12 @@ post-install-modulated: cp $(WORKDIR)/svc-cswnginx $(WORKDIR)/cswnginx + ginstall -d $(DESTDIR)/etc/init.d + cp $(WORKDIR)/cswnginx $(DESTDIR)/etc/init.d + ginstall -d $(DESTDIR)$(prefix)/var/svc/manifest/site + cp $(WORKDIR)/cswnginx.xml $(DESTDIR)$(prefix)/var/svc/manifest/site + ginstall -d $(DESTDIR)$(libdir)/svc/method + cp $(WORKDIR)/svc-cswnginx $(DESTDIR)$(libdir)/svc/method ginstall -d $(DESTDIR)$(sysconfdir)/nginx/conf.d ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib ginstall -d $(DESTDIR)$(docdir)/nginx @@ -70,5 +75,5 @@ mv $(DESTDIR)$(sysconfdir)/nginx/nginx.conf $(DESTDIR)$(sysconfdir)/nginx/nginx.conf.CSW cd $(WORKSRC); \ cp -r contrib/* $(DESTDIR)$(sharedstatedir)/nginx/contrib; \ - cp $(NGINXDOCS) $(DESTDIR)$(docdir)/nginx; \ + cp $(NGINXDOCS) $(DESTDIR)$(docdir)/nginx $(MAKECOOKIE) Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-13 13:59:13 UTC (rev 2804) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.gspec 2009-01-13 15:09:38 UTC (rev 2805) @@ -2,7 +2,7 @@ %var pkgname CSWnginx %include url file://%{PKGLIB}/csw_dyndepend.gspec %include url file://%{PKGLIB}/smf_enabled.gspec -%var SERVICE_CONF_FILES /opt/csw/etc/nginx/nginx.conf +%var SERVICE_CONF_FILES /opt/csw/etc/nginx/nginx.conf %var RC_INIT_SCRIPT cswnginx %var INIT_KILL_PRIO 16 %var INIT_START_PRIO 90 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Tue Jan 13 16:12:02 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Tue, 13 Jan 2009 15:12:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[2806] csw/mgar/pkg/nginx/trunk/checksums Message-ID: Revision: 2806 http://gar.svn.sourceforge.net/gar/?rev=2806&view=rev Author: aigoshin Date: 2009-01-13 15:12:02 +0000 (Tue, 13 Jan 2009) Log Message: ----------- nginx: milestone 1.7 Added Paths: ----------- csw/mgar/pkg/nginx/trunk/checksums Added: csw/mgar/pkg/nginx/trunk/checksums =================================================================== --- csw/mgar/pkg/nginx/trunk/checksums (rev 0) +++ csw/mgar/pkg/nginx/trunk/checksums 2009-01-13 15:12:02 UTC (rev 2806) @@ -0,0 +1,5 @@ +31d26f66824fd2d3f33ac0b3b9db1532 download/nginx-0.7.30.tar.gz +9103d1634917ce758fe6bf49706b6229 download/CSWnginx.gspec +87439f67e79eeb22db439ecbb27761a7 download/CSWnginx.postinstall +5c832758a62ee319ea9dfd1829d736eb download/cswnginx.xml +64aa7f1749c33228be337119bc3f7b5f download/svc-cswnginx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Tue Jan 13 17:24:54 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:24:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[2807] csw/mgar/pkg/pidgin/trunk Message-ID: Revision: 2807 http://gar.svn.sourceforge.net/gar/?rev=2807&view=rev Author: harpchad Date: 2009-01-13 16:24:54 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Update to pidgin release 2.5.4 Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/Makefile csw/mgar/pkg/pidgin/trunk/checksums Modified: csw/mgar/pkg/pidgin/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-13 15:12:02 UTC (rev 2806) +++ csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-13 16:24:54 UTC (rev 2807) @@ -1,5 +1,5 @@ GARNAME = pidgin -GARVERSION = 2.5.3 +GARVERSION = 2.5.4 CATEGORIES = apps DESCRIPTION = Multi-protocol IM client Modified: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums 2009-01-13 15:12:02 UTC (rev 2806) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-01-13 16:24:54 UTC (rev 2807) @@ -1,4 +1,4 @@ -47c6ecd45b3a62c7a826f7ceb2663fb8 download/pidgin-2.5.3.tar.gz +eb28c552647ee583f3d817db690164c5 download/pidgin-2.5.4.tar.gz 6dd3c13c4b6f610409fd267692dbe716 download/x11.pc 75d0097a23fe4aa80f6d1a0a77312be5 download/CSWpidgin.depend e3bacfec1eab2b829d4255afa4f69bee download/CSWpidgin.gspec This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 17:28:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:28:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[2808] csw/mgar/pkg/libidn/trunk/Makefile Message-ID: Revision: 2808 http://gar.svn.sourceforge.net/gar/?rev=2808&view=rev Author: dmichelsen Date: 2009-01-13 16:28:45 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libidn: Add upstream watch Modified Paths: -------------- csw/mgar/pkg/libidn/trunk/Makefile Modified: csw/mgar/pkg/libidn/trunk/Makefile =================================================================== --- csw/mgar/pkg/libidn/trunk/Makefile 2009-01-13 16:24:54 UTC (rev 2807) +++ csw/mgar/pkg/libidn/trunk/Makefile 2009-01-13 16:28:45 UTC (rev 2808) @@ -15,6 +15,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWlibidn,) +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + BUILD64 = 1 NO_ISAEXEC = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 17:29:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:29:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[2809] csw/mgar/pkg/libnet/trunk/Makefile Message-ID: Revision: 2809 http://gar.svn.sourceforge.net/gar/?rev=2809&view=rev Author: dmichelsen Date: 2009-01-13 16:29:25 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libnet: Add upstream watch Modified Paths: -------------- csw/mgar/pkg/libnet/trunk/Makefile Modified: csw/mgar/pkg/libnet/trunk/Makefile =================================================================== --- csw/mgar/pkg/libnet/trunk/Makefile 2009-01-13 16:28:45 UTC (rev 2808) +++ csw/mgar/pkg/libnet/trunk/Makefile 2009-01-13 16:29:25 UTC (rev 2809) @@ -11,6 +11,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWlibnet,) +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + SPKG_SOURCEURL = http://www.packetfactory.net/libnet/ BUILD64 = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Tue Jan 13 17:30:34 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:30:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[2810] csw/mgar/pkg/gvim/trunk/checksums Message-ID: Revision: 2810 http://gar.svn.sourceforge.net/gar/?rev=2810&view=rev Author: harpchad Date: 2009-01-13 16:30:33 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Update to patch level 083 Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/checksums Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-13 16:29:25 UTC (rev 2809) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-13 16:30:33 UTC (rev 2810) @@ -77,6 +77,10 @@ 1967f5e7fa4cec07bd67cc47925ec3c8 download/7.2.077 7b285d2ba24fdd2390b4aaba08fcf5f6 download/7.2.078 a3385578174d3867f17ab287276db49b download/7.2.079 +ea45aa4d1a74989d361b2a29c1e9ff9b download/7.2.080 +3bdf4ec7db7976876a827f2dfa269e89 download/7.2.081 +590c9aa51fcb808ece4b6b4bfaaaaf30 download/7.2.082 +2a10abc536f7a69ff3ef353b55b6cb65 download/7.2.083 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Tue Jan 13 17:30:54 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:30:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[2811] csw/mgar/pkg/vim/trunk Message-ID: Revision: 2811 http://gar.svn.sourceforge.net/gar/?rev=2811&view=rev Author: harpchad Date: 2009-01-13 16:30:54 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Update to patch level 083 Modified Paths: -------------- csw/mgar/pkg/vim/trunk/checksums csw/mgar/pkg/vim/trunk/files/patches.mk Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2009-01-13 16:30:33 UTC (rev 2810) +++ csw/mgar/pkg/vim/trunk/checksums 2009-01-13 16:30:54 UTC (rev 2811) @@ -77,6 +77,10 @@ 1967f5e7fa4cec07bd67cc47925ec3c8 download/7.2.077 7b285d2ba24fdd2390b4aaba08fcf5f6 download/7.2.078 a3385578174d3867f17ab287276db49b download/7.2.079 +ea45aa4d1a74989d361b2a29c1e9ff9b download/7.2.080 +3bdf4ec7db7976876a827f2dfa269e89 download/7.2.081 +590c9aa51fcb808ece4b6b4bfaaaaf30 download/7.2.082 +2a10abc536f7a69ff3ef353b55b6cb65 download/7.2.083 198b5e809eddd24650dac5ab237e26d0 download/CSWvim.depend 59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec 7f886f132e8404332757262c82aac7af download/CSWvim.prototype Modified: csw/mgar/pkg/vim/trunk/files/patches.mk =================================================================== --- csw/mgar/pkg/vim/trunk/files/patches.mk 2009-01-13 16:30:33 UTC (rev 2810) +++ csw/mgar/pkg/vim/trunk/files/patches.mk 2009-01-13 16:30:54 UTC (rev 2811) @@ -1,5 +1,5 @@ # Vim 72 patchset -PATCHREV = 079 +PATCHREV = 082 PATCHDIRLEVEL = 0 GARVERSION = $(DISTVERSION).$(PATCHREV) PATCHFILES += $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 17:30:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:30:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[2812] csw/mgar/pkg/libiconv/trunk/Makefile Message-ID: Revision: 2812 http://gar.svn.sourceforge.net/gar/?rev=2812&view=rev Author: dmichelsen Date: 2009-01-13 16:30:56 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libiconv: Add upstream watch Modified Paths: -------------- csw/mgar/pkg/libiconv/trunk/Makefile Modified: csw/mgar/pkg/libiconv/trunk/Makefile =================================================================== --- csw/mgar/pkg/libiconv/trunk/Makefile 2009-01-13 16:30:54 UTC (rev 2811) +++ csw/mgar/pkg/libiconv/trunk/Makefile 2009-01-13 16:30:56 UTC (rev 2812) @@ -14,6 +14,8 @@ DISTFILES += $(GETTEXTNAME)-$(GETTEXTVERSION).tar.gz DISTFILES += $(call admfiles,CSWlibiconv,) +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + # Work around Sun Studio Preprocessor bug #6655406 # http://sunsolve.sun.com/search/document.do?assetkey=1-1-6655406-1 PATCHFILES = patch-workaround-cc-bug-6655406.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 17:32:01 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 16:32:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[2813] csw/mgar/pkg/libgpg_error/trunk/Makefile Message-ID: Revision: 2813 http://gar.svn.sourceforge.net/gar/?rev=2813&view=rev Author: dmichelsen Date: 2009-01-13 16:32:00 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libgpg_error: Add upstream watch Modified Paths: -------------- csw/mgar/pkg/libgpg_error/trunk/Makefile Modified: csw/mgar/pkg/libgpg_error/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgpg_error/trunk/Makefile 2009-01-13 16:30:56 UTC (rev 2812) +++ csw/mgar/pkg/libgpg_error/trunk/Makefile 2009-01-13 16:32:00 UTC (rev 2813) @@ -12,6 +12,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 DISTFILES += $(call admfiles,CSWgpgerr,) +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + SPKG_SOURCEURL = http://www.gnupg.org/download/ REQUIRED_PKGS = CSWiconv CSWggettext This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 18:18:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 17:18:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[2814] csw/mgar/pkg Message-ID: Revision: 2814 http://gar.svn.sourceforge.net/gar/?rev=2814&view=rev Author: dmichelsen Date: 2009-01-13 17:18:11 +0000 (Tue, 13 Jan 2009) Log Message: ----------- libgcrypt: Initial commit Added Paths: ----------- csw/mgar/pkg/libgcrypt/ csw/mgar/pkg/libgcrypt/branches/ csw/mgar/pkg/libgcrypt/tags/ csw/mgar/pkg/libgcrypt/trunk/ csw/mgar/pkg/libgcrypt/trunk/Makefile csw/mgar/pkg/libgcrypt/trunk/checksums csw/mgar/pkg/libgcrypt/trunk/files/ csw/mgar/pkg/libgcrypt/trunk/files/CSWgcrypt.gspec csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff Property changes on: csw/mgar/pkg/libgcrypt/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libgcrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libgcrypt/trunk/Makefile 2009-01-13 17:18:11 UTC (rev 2814) @@ -0,0 +1,28 @@ +GARNAME = libgcrypt +GARVERSION = 1.4.3 +CATEGORIES = lib + +DESCRIPTION = GNU libgcrypt +define BLURB + Libgcrypt is GNU's basic cryptographic library. +endef + +MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/libgcrypt/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWgcrypt,) + +PATCHFILES = patch-random.diff + +SPKG_SOURCEURL = http://www.gnupg.org/download/ + +REQUIRED_PKGS = CSWgpgerr + +BUILD64 = 1 +NO_ISAEXEC = 1 + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --disable-asm + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/libgcrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/checksums (rev 0) +++ csw/mgar/pkg/libgcrypt/trunk/checksums 2009-01-13 17:18:11 UTC (rev 2814) @@ -0,0 +1,3 @@ +46e50e811ed51f1e0e8dd677dded967d download/libgcrypt-1.4.3.tar.bz2 +94730391b2ab2e9b63227d133dc2547b download/CSWgcrypt.gspec +fec326b0bfff6b1c6ff978c33c7bcd8f download/patch-random.diff Added: csw/mgar/pkg/libgcrypt/trunk/files/CSWgcrypt.gspec =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/files/CSWgcrypt.gspec (rev 0) +++ csw/mgar/pkg/libgcrypt/trunk/files/CSWgcrypt.gspec 2009-01-13 17:18:11 UTC (rev 2814) @@ -0,0 +1,4 @@ +%var bitname libgcrypt +%var pkgname CSWgcrypt +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff (rev 0) +++ csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff 2009-01-13 17:18:11 UTC (rev 2814) @@ -0,0 +1,10 @@ +diff -Naur libgcrypt-1.4.3.orig/random/random.c libgcrypt-1.4.3.patched/random/random.c +--- libgcrypt-1.4.3.orig/random/random.c 2008-09-16 20:35:22.000000000 +0200 ++++ libgcrypt-1.4.3.patched/random/random.c 2009-01-13 09:24:12.598730103 +0100 +@@ -319,5 +319,5 @@ + _gcry_random_deinit_external_test (void *context) + { + if (fips_mode ()) +- return _gcry_rngfips_deinit_external_test (context); ++ _gcry_rngfips_deinit_external_test (context); + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Tue Jan 13 18:58:43 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Tue, 13 Jan 2009 17:58:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2815] csw/mgar/pkg/libxslt/trunk/ Message-ID: Revision: 2815 http://gar.svn.sourceforge.net/gar/?rev=2815&view=rev Author: harpchad Date: 2009-01-13 17:58:43 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Moving to gar v2 Property Changed: ---------------- csw/mgar/pkg/libxslt/trunk/ Property changes on: csw/mgar/pkg/libxslt/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 19:12:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 18:12:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[2816] csw/mgar/pkg Message-ID: Revision: 2816 http://gar.svn.sourceforge.net/gar/?rev=2816&view=rev Author: dmichelsen Date: 2009-01-13 18:12:38 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Target 'newpkg-%': Make mGAR v2 default Modified Paths: -------------- csw/mgar/pkg/Makefile csw/mgar/pkg/cpan/Makefile csw/mgar/pkg/xfce/Makefile Modified: csw/mgar/pkg/Makefile =================================================================== --- csw/mgar/pkg/Makefile 2009-01-13 17:58:43 UTC (rev 2815) +++ csw/mgar/pkg/Makefile 2009-01-13 18:12:38 UTC (rev 2816) @@ -37,7 +37,7 @@ # Lines returned by 'svn propget -R' look like this: # -# gar/trunk - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 +# gar/trunk - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 # gar-v1 https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 # gar-v2 https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 # @@ -84,8 +84,8 @@ echo "%copyright url file://%{WORKSRC}/LICENSE"; \ ) > $*/trunk/files/CSWpackage.gspec @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk - @echo "gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1" | svn propset svn:externals -F /dev/fd/0 $*/trunk - @svn co https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 $*/trunk/gar + @echo "gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk + @svn co https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar @echo @echo "Your package is set up for editing at $*/trunk" @echo "Please don't forget to add the gspec-file!" Modified: csw/mgar/pkg/cpan/Makefile =================================================================== --- csw/mgar/pkg/cpan/Makefile 2009-01-13 17:58:43 UTC (rev 2815) +++ csw/mgar/pkg/cpan/Makefile 2009-01-13 18:12:38 UTC (rev 2816) @@ -55,8 +55,8 @@ echo "%copyright url file://%{WORKSRC}/LICENSE"; \ ) > $*/trunk/files/CSWpackage.gspec @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk - @echo "gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1" | svn propset svn:externals -F /dev/fd/0 $*/trunk - @svn co https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 $*/trunk/gar + @echo "gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk + @svn co https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar @echo @echo "Your package is set up for editing at $*/trunk" @echo "Please don't forget to add the gspec-file!" Modified: csw/mgar/pkg/xfce/Makefile =================================================================== --- csw/mgar/pkg/xfce/Makefile 2009-01-13 17:58:43 UTC (rev 2815) +++ csw/mgar/pkg/xfce/Makefile 2009-01-13 18:12:38 UTC (rev 2816) @@ -55,8 +55,8 @@ echo "%copyright url file://%{WORKSRC}/LICENSE"; \ ) > $*/trunk/files/CSWpackage.gspec @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk - @echo "gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1" | svn propset svn:externals -F /dev/fd/0 $*/trunk - @svn co https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 $*/trunk/gar + @echo "gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk + @svn co https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar @echo @echo "Your package is set up for editing at $*/trunk" @echo "Please don't forget to add the gspec-file!" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 13 19:40:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 13 Jan 2009 18:40:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[2817] csw/mgar/pkg/ncurses/trunk/Makefile Message-ID: Revision: 2817 http://gar.svn.sourceforge.net/gar/?rev=2817&view=rev Author: dmichelsen Date: 2009-01-13 18:40:59 +0000 (Tue, 13 Jan 2009) Log Message: ----------- ncurses: Fix for old xterm in Solaris Modified Paths: -------------- csw/mgar/pkg/ncurses/trunk/Makefile Modified: csw/mgar/pkg/ncurses/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-13 18:12:38 UTC (rev 2816) +++ csw/mgar/pkg/ncurses/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) @@ -31,20 +31,13 @@ CONFIGURE_ARGS += --disable-overwrite CONFIGURE_ARGS += --without-ada -include gar/category.mk - -LDFLAGS := $(filter-out -L%,$(LDFLAGS)) - -# Remove capabilities HPA and VPA as Solaris xterm doesn't understand it. +# Don't use capabilities HPA and VPA as Solaris xterm doesn't understand it. # See for details # # # +CONFIGURE_ARGS += --without-xterm-new -post-install-modulated: - (W=$(abspath $(WORKDIR)); cd $(INSTALLISADIR); \ - LD_LIBRARY_PATH=./$(libdir) TERMINFO=./$(datadir)/terminfo \ - ./$(bindir)/infocmp -1 xterm >$$W/xterm.src; \ - cat $$W/xterm.src | fgrep -v hpa= | fgrep -v vpa= > $$W/xterm.src.no-hpa-vpa; \ - LD_LIBRARY_PATH=./$(libdir) TERMINFO=./$(datadir)/terminfo \ - ./$(bindir)/tic $$W/xterm.src.no-hpa-vpa) +include gar/category.mk + +LDFLAGS := $(filter-out -L%,$(LDFLAGS)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Tue Jan 13 23:25:35 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 22:25:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[2818] csw/mgar/pkg Message-ID: Revision: 2818 http://gar.svn.sourceforge.net/gar/?rev=2818&view=rev Author: wbonnet Date: 2009-01-13 22:25:34 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Fix some regexp for upstream watch Modified Paths: -------------- csw/mgar/pkg/a52dec/trunk/Makefile csw/mgar/pkg/docbook/trunk/Makefile csw/mgar/pkg/flac/trunk/Makefile csw/mgar/pkg/fltk/trunk/Makefile csw/mgar/pkg/gtkpod/trunk/Makefile csw/mgar/pkg/hylafax/trunk/Makefile csw/mgar/pkg/hypermail/trunk/Makefile csw/mgar/pkg/joe/trunk/Makefile csw/mgar/pkg/kile/trunk/Makefile csw/mgar/pkg/libgpod/trunk/Makefile csw/mgar/pkg/libxine/trunk/Makefile csw/mgar/pkg/mod_auth_mysql/trunk/Makefile csw/mgar/pkg/mysql-python/trunk/Makefile csw/mgar/pkg/ngrep/trunk/Makefile csw/mgar/pkg/ntop/trunk/Makefile csw/mgar/pkg/phpldapadmin/trunk/Makefile csw/mgar/pkg/pysqlite/trunk/Makefile csw/mgar/pkg/setoolkit/trunk/Makefile csw/mgar/pkg/silvercity/trunk/Makefile csw/mgar/pkg/swig/trunk/Makefile csw/mgar/pkg/synergy/trunk/Makefile csw/mgar/pkg/sysbench/trunk/Makefile csw/mgar/pkg/tnef/trunk/Makefile csw/mgar/pkg/wesnoth/trunk/Makefile csw/mgar/pkg/x11/xrender/trunk/Makefile csw/mgar/pkg/x11/xrender/trunk/checksums csw/mgar/pkg/xmlstarlet/trunk/Makefile csw/mgar/pkg/zsh/trunk/Makefile Modified: csw/mgar/pkg/a52dec/trunk/Makefile =================================================================== --- csw/mgar/pkg/a52dec/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/a52dec/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -13,10 +13,11 @@ DISTFILES += $(call admfiles,CSWliba52, depend) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = files/$(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=33591 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) --enable-shared --disable-static - include gar/category.mk Modified: csw/mgar/pkg/docbook/trunk/Makefile =================================================================== --- csw/mgar/pkg/docbook/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/docbook/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -15,9 +15,10 @@ DISTFILES = $(GARNAME)-xsl-$(GARVERSION).tar.bz2 # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-xsl-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=21935 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) - CONFIGURE_SCRIPTS = BUILD_SCRIPTS = TEST_SCRIPTS = Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -19,9 +19,10 @@ DISTFILES += $(call admfiles,CSWflac,depend) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=13478 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = flac-(\d+(?:\.\d+)*)-src - LIBDEPS += lib/libogg CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/fltk/trunk/Makefile =================================================================== --- csw/mgar/pkg/fltk/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/fltk/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,6 +14,8 @@ DISTFILES += $(call admfiles,CSWfltk,) # We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=6429 +UPSTREAM_USE_SF = 1 UFILES_REGEX = (\d+(?:\.\d+)*) PATCHFILES = makeincludes.diff Modified: csw/mgar/pkg/gtkpod/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtkpod/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/gtkpod/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -18,7 +18,9 @@ PATCHFILES = file_convert.diff # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=67873 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) GARCOMPILER = GNU Modified: csw/mgar/pkg/hylafax/trunk/Makefile =================================================================== --- csw/mgar/pkg/hylafax/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/hylafax/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,7 +14,9 @@ #DISTFILES += cswhylafax.init cswhylafax.xml svc-cswhylafax # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=148904 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) PATCHFILES = patch-hylafax.diff Modified: csw/mgar/pkg/hypermail/trunk/Makefile =================================================================== --- csw/mgar/pkg/hypermail/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/hypermail/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -18,7 +18,9 @@ DISTFILES += $(call admfiles,CSWhypermail,depend prototype) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=18117 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) # configure cancels out env LDFLAGS by default PATCHFILES += ldflag.diff Modified: csw/mgar/pkg/joe/trunk/Makefile =================================================================== --- csw/mgar/pkg/joe/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/joe/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -2,7 +2,7 @@ GARVERSION = 3.3 CATEGORIES = utils SPKG_PACKAGER = Markus Mayer -SPKG_EMAIL = mmayer at blastwave.org +SPKG_EMAIL = mmayer at opencsw.org DESCRIPTION = Joe's Own Editor @@ -23,7 +23,9 @@ DISTFILES += $(call admfiles,CSWjoe,) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=23475 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/kile/trunk/Makefile =================================================================== --- csw/mgar/pkg/kile/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/kile/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -15,7 +15,9 @@ DISTFILES += $(call admfiles,CSWkile,depend prototype) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=79945 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) # Compile with GCC GARCOMPILER = GNU Modified: csw/mgar/pkg/libgpod/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgpod/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/libgpod/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -16,7 +16,9 @@ DISTFILES += $(call admfiles,CSWlibgpod,depend) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=67873 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME).(\d+(?:\.\d+)*) GARCOMPILER = GNU #GCC4 won't work. There are too many libtool deps using GCC3 Modified: csw/mgar/pkg/libxine/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxine/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/libxine/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,7 +14,9 @@ DISTFILES += $(call admfiles,CSWlibxine,depend) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=9655 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) PATCHFILES = int_fast-defs-sol8.diff PATCHFILES += bswap-for-sol8-i386.diff Modified: csw/mgar/pkg/mod_auth_mysql/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_auth_mysql/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/mod_auth_mysql/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,7 +14,9 @@ DISTFILES += $(call admfiles,CSWap2modauthmysql,$(ADMFILES)) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=60218 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) # Restore deprecated (removed) macros PATCHFILES += apr.diff Modified: csw/mgar/pkg/mysql-python/trunk/Makefile =================================================================== --- csw/mgar/pkg/mysql-python/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/mysql-python/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,6 +14,10 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +#UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=22307 +#UPSTREAM_USE_SF = 1 +#UFILES_REGEX = (\d+(?:\.\d+)*) + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py TEST_SCRIPTS = Modified: csw/mgar/pkg/ngrep/trunk/Makefile =================================================================== --- csw/mgar/pkg/ngrep/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/ngrep/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -20,7 +20,9 @@ PATCHFILES = gar-base.diff # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10752 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/ntop/trunk/Makefile =================================================================== --- csw/mgar/pkg/ntop/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/ntop/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -17,7 +17,9 @@ DISTFILES += $(call admfiles,CSWntop,) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=17233 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) LIBDEPS += utils/rrdtool Modified: csw/mgar/pkg/phpldapadmin/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpldapadmin/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/phpldapadmin/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -17,7 +17,10 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWphpldapadmin,depend postinstall preremove) -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=61828 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_SCRIPTS = BUILD_SCRIPTS = Modified: csw/mgar/pkg/pysqlite/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysqlite/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/pysqlite/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -13,7 +13,9 @@ DISTFILES += CSWpysqlite.gspec # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=54058 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py Modified: csw/mgar/pkg/setoolkit/trunk/Makefile =================================================================== --- csw/mgar/pkg/setoolkit/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/setoolkit/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -19,7 +19,9 @@ DISTFILES += $(call admfiles,CSWsetoolkit,depend) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=189279 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = SE.Toolkit.(\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/silvercity/trunk/Makefile =================================================================== --- csw/mgar/pkg/silvercity/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/silvercity/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -13,7 +13,9 @@ DISTFILES += $(call admfiles,CSWsilvercity,depend prototype copyright) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=45693 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py Modified: csw/mgar/pkg/swig/trunk/Makefile =================================================================== --- csw/mgar/pkg/swig/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/swig/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -21,7 +21,9 @@ DISTFILES += $(call admfiles,CSWswig,depend prototype) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=1645 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) # Prevent automake from attempting to regenerate everything PATCHFILES += am.diff Modified: csw/mgar/pkg/synergy/trunk/Makefile =================================================================== --- csw/mgar/pkg/synergy/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/synergy/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -18,7 +18,9 @@ DISTFILES += $(call admfiles,CSWsynergy) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = synergy-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=59275 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) # Adjust code so that it compiles with Sun Studio Compiler # https://sourceforge.net/tracker/index.php?func=detail&aid=1574331&group_id=59275&atid=490469 Modified: csw/mgar/pkg/sysbench/trunk/Makefile =================================================================== --- csw/mgar/pkg/sysbench/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/sysbench/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -22,7 +22,9 @@ DISTFILES += $(call admfiles,CSWsysbench,depend prototype) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=102348 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/tnef/trunk/Makefile =================================================================== --- csw/mgar/pkg/tnef/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/tnef/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,7 +14,9 @@ DISTFILES += $(call admfiles,CSWtnef,) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=57057 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = v(\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/wesnoth/trunk/Makefile =================================================================== --- csw/mgar/pkg/wesnoth/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/wesnoth/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -12,7 +12,9 @@ DISTFILES += $(call admfiles,CSWwesnoth, depend ) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=89495 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) GARCOMPILER ?= SUN Modified: csw/mgar/pkg/x11/xrender/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,30 +14,24 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = libXrender-(\d+(?:\.\d+)*).tar.gz -DISTFILES += CSWlibxrender.gspec CSWlibxrender.prototype CSWlibxrender.depend -DISTFILES += CSWrenderdev.gspec CSWrenderdev.prototype CSWrenderdev.depend -# DISTFILES += $(call admfiles,CSWxrender, depend) +SPKG_DESC_CSWlibxrender = $(DESCRIPTION) +SPKG_DESC_CSWrenderdev = $(DESCRIPTION) development package -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib +DISTFILES += $(call admfiles,CSWlibxrender, ) +DISTFILES += $(call admfiles,CSWrenderdev, ) -export CFLAGS CXXFLAGS LDFLAGS +PKGFILES_CSWrenderdev = $(PKGFILES_DEVEL) +PKGFILES_CSWrenderdev += $(prefix)/X11/include/.* +PKGFILES_CSWrenderdev += $(prefix)/X11/lib/.*\.a +PKGFILES_CSWrenderdev += $(prefix)/X11/lib/pkgconfig/.* -TEST_SCRIPTS = none +REQUIRED_PKGS_CSWrenderdev = CSWlibxrender +#REQUIRED_PKGS_CSWlibxrender = -GREP = ggrep +post-extract: + ( mv $(WORKDIR)/libXrender-$(GARVERSION) $(WORKDIR)/$(DISTNAME) ) + @$(MAKECOOKIE) include gar/category.mk -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man -test-none: - @$(MAKECOOKIE) - -post-extract: - ( mv $(WORKDIR)/libXrender-$(GARVERSION) $(WORKDIR)/$(GARNAME)-$(GARVERSION) ) - @$(MAKECOOKIE) - -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) Modified: csw/mgar/pkg/x11/xrender/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/checksums 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/x11/xrender/trunk/checksums 2009-01-13 22:25:34 UTC (rev 2818) @@ -1,7 +1,3 @@ 1d9cb49e6c9149d5a5eca118c9c2bcf6 download/libXrender-0.9.4.tar.gz -0bfea31ff1bef69b07d73d7241a682da download/CSWlibxrender.gspec -ce5b11131c5efd7b3b53bd6dc20c208e download/CSWlibxrender.prototype -ce7a1865d69a451732058403b33df641 download/CSWlibxrender.depend -c88357e2cbb342ea66bd82ed73ff16af download/CSWrenderdev.gspec -bc81a8feca99dfbbf9f23797bd04f84f download/CSWrenderdev.prototype -43f788f6e3d4b0f77b0bbb830d3d5ab3 download/CSWrenderdev.depend +3322ccec3c0c00155a5c2600dfbe8798 download/CSWlibxrender.gspec +459f8856062d315597cb957fc16e8850 download/CSWrenderdev.gspec Modified: csw/mgar/pkg/xmlstarlet/trunk/Makefile =================================================================== --- csw/mgar/pkg/xmlstarlet/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/xmlstarlet/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -19,7 +19,9 @@ REQUIRED_PKGS = CSWgcrypt CSWggettext CSWgpgerr CSWiconv CSWlibxml2 CSWlibxslt CSWzlib # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=66612 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) PATCHFILES = $(GARNAME)-$(GARVERSION)-cc.patch Modified: csw/mgar/pkg/zsh/trunk/Makefile =================================================================== --- csw/mgar/pkg/zsh/trunk/Makefile 2009-01-13 18:40:59 UTC (rev 2817) +++ csw/mgar/pkg/zsh/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) @@ -14,8 +14,8 @@ DISTFILES += $(call admfiles,CSWzsh,depend postinstall postremove) # We define upstream file regex so we can be notifed of new upstream software release -UPSTREAM_MASTER_SITES = http://sourceforge.net/project/showfiles.php?group_id=4068 -#UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=4068 +UPSTREAM_USE_SF = 1 UFILES_REGEX = (\d+(?:\.\d+)*) CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Jan 14 00:04:44 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 23:04:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2819] csw/mgar/pkg/x11/xrender/trunk/Makefile Message-ID: Revision: 2819 http://gar.svn.sourceforge.net/gar/?rev=2819&view=rev Author: wbonnet Date: 2009-01-13 23:04:44 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Fix xrender package Modified Paths: -------------- csw/mgar/pkg/x11/xrender/trunk/Makefile Modified: csw/mgar/pkg/x11/xrender/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-01-13 22:25:34 UTC (rev 2818) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-01-13 23:04:44 UTC (rev 2819) @@ -1,6 +1,6 @@ GARNAME = libxrender GARVERSION = 0.9.4 -CATEGORIES = lib +CATEGORIES = x11 DESCRIPTION = X Render extension library define BLURB @@ -25,11 +25,12 @@ PKGFILES_CSWrenderdev += $(prefix)/X11/lib/.*\.a PKGFILES_CSWrenderdev += $(prefix)/X11/lib/pkgconfig/.* -REQUIRED_PKGS_CSWrenderdev = CSWlibxrender -#REQUIRED_PKGS_CSWlibxrender = +REQUIRED_PKGS_CSWrenderdev = CSWlibxrender +REQUIRED_PKGS_CSWlibxrender = CSWlibx11 post-extract: - ( mv $(WORKDIR)/libXrender-$(GARVERSION) $(WORKDIR)/$(DISTNAME) ) + ( cd $(WORKROOTDIR)/build-$(firstword $(MODULATIONS)) ; \ + mv libXrender-$(GARVERSION) $(DISTNAME) ) @$(MAKECOOKIE) include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Jan 14 00:17:17 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 23:17:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[2820] csw/mgar/pkg/pixman/trunk Message-ID: Revision: 2820 http://gar.svn.sourceforge.net/gar/?rev=2820&view=rev Author: wbonnet Date: 2009-01-13 23:17:17 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Update package description Modified Paths: -------------- csw/mgar/pkg/pixman/trunk/Makefile csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec Removed Paths: ------------- csw/mgar/pkg/pixman/trunk/files/CSWpixman.depend csw/mgar/pkg/pixman/trunk/files/CSWpixman.prototype csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.depend csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.prototype Modified: csw/mgar/pkg/pixman/trunk/Makefile =================================================================== --- csw/mgar/pkg/pixman/trunk/Makefile 2009-01-13 23:04:44 UTC (rev 2819) +++ csw/mgar/pkg/pixman/trunk/Makefile 2009-01-13 23:17:17 UTC (rev 2820) @@ -9,26 +9,30 @@ MASTER_SITES = http://www.cairographics.org/releases/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PKGDIST = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += CSWpixman.gspec CSWpixman.prototype CSWpixman.depend -DISTFILES += CSWpixmandev.gspec CSWpixmandev.prototype CSWpixmandev.depend -# DISTFILES += $(call admfiles,CSWpixman, depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +SPKG_DESC_CSWpixman = $(DESCRIPTION) +SPKG_DESC_CSWpixmandevel = $(DESCRIPTION) development package + +DISTFILES += $(call admfiles,CSWpixman, ) +DISTFILES += $(call admfiles,CSWpixmandevel, ) + +PKGFILES_CSWpixmandevel = $(PKGFILES_DEVEL) +PKGFILES_CSWpixmandevel += $(prefix)/include/.* +PKGFILES_CSWpixmandevel += $(prefix)/lib/.*\.a +PKGFILES_CSWpixmandevel += $(prefix)/lib/pkgconfig/.* + +REQUIRED_PKGS_CSWpixmandevel = CSWpixman +#REQUIRED_PKGS_CSWpixman = CSWlibx11 + CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib -export CFLAGS CXXFLAGS LDFLAGS +CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man --enable-gtk -GREP = ggrep - include gar/category.mk -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man --enable-gtk -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) - - Modified: csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec 2009-01-13 23:04:44 UTC (rev 2819) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec 2009-01-13 23:17:17 UTC (rev 2820) @@ -1,4 +1,4 @@ %var bitname pixman %var pkgname CSWpixman %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/pixman/trunk/files/CSWpixman.prototype =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixman.prototype 2009-01-13 23:04:44 UTC (rev 2819) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixman.prototype 2009-01-13 23:17:17 UTC (rev 2820) @@ -1,7 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libpixman-1.la 0755 root bin -f none /opt/csw/lib/libpixman-1.so.0.12.0 0755 root bin -s none /opt/csw/lib/libpixman-1.so.0=libpixman-1.so.0.12.0 -s none /opt/csw/lib/libpixman-1.so=libpixman-1.so.0.12.0 -i depend=CSWpixman.depend -i pkginfo=CSWpixman.pkginfo Deleted: csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.depend =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.depend 2009-01-13 23:04:44 UTC (rev 2819) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.depend 2009-01-13 23:17:17 UTC (rev 2820) @@ -1 +0,0 @@ -P CSWpixman Modified: csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec 2009-01-13 23:04:44 UTC (rev 2819) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec 2009-01-13 23:17:17 UTC (rev 2820) @@ -1,4 +1,4 @@ -%var bitname pixmandev -%var pkgname CSWpixmandev +%var bitname pixman_devel +%var pkgname CSWpixmandevel %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.prototype =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.prototype 2009-01-13 23:04:44 UTC (rev 2819) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.prototype 2009-01-13 23:17:17 UTC (rev 2820) @@ -1,10 +0,0 @@ -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/pixman-1 0755 root bin -f none /opt/csw/include/pixman-1/pixman-version.h 0644 root bin -f none /opt/csw/include/pixman-1/pixman.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libpixman-1.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/pixman-1.pc 0644 root bin -i depend=CSWpixmandev.depend -i pkginfo=CSWpixmandev.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Jan 14 00:30:29 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 23:30:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2821] csw/mgar/pkg/libcairo/trunk/files Message-ID: Revision: 2821 http://gar.svn.sourceforge.net/gar/?rev=2821&view=rev Author: wbonnet Date: 2009-01-13 23:30:28 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Move to gar v2. Delete extra file Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.gspec csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.gspec Removed Paths: ------------- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.depend csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.prototype csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.depend csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.prototype csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.depend csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.prototype Deleted: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.depend =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.depend 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.depend 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,7 +0,0 @@ -P CSWlibx11 -P CSWlibxrender -P CSWfconfig -P CSWftype2 -P CSWpixman -P CSWpng -P CSWzlib Modified: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.gspec =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.gspec 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.gspec 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,4 +1,4 @@ %var bitname libcairo %var pkgname CSWlibcairo %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.prototype =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.prototype 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairo.prototype 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,8 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libcairo.la 0755 root bin -f none /opt/csw/lib/libcairo.so.2.10800.2 0755 root bin -s none /opt/csw/lib/libcairo.so.2=libcairo.so.2.10800.2 -s none /opt/csw/lib/libcairo.so=libcairo.so.2.10800.2 -i copyright=CSWlibcairo.copyright -i depend=CSWlibcairo.depend -i pkginfo=CSWlibcairo.pkginfo Deleted: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.depend =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.depend 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.depend 2009-01-13 23:30:28 UTC (rev 2821) @@ -1 +0,0 @@ -P CSWlibcairo Modified: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,4 +1,4 @@ %var bitname libcairodev %var pkgname CSWlibcairodev %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.prototype =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.prototype 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.prototype 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,26 +0,0 @@ -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/cairo 0755 root bin -f none /opt/csw/include/cairo/cairo-deprecated.h 0644 root bin -f none /opt/csw/include/cairo/cairo-features.h 0644 root bin -f none /opt/csw/include/cairo/cairo-ft.h 0644 root bin -f none /opt/csw/include/cairo/cairo-pdf.h 0644 root bin -f none /opt/csw/include/cairo/cairo-ps.h 0644 root bin -f none /opt/csw/include/cairo/cairo-svg.h 0644 root bin -f none /opt/csw/include/cairo/cairo-version.h 0644 root bin -f none /opt/csw/include/cairo/cairo-xlib.h 0644 root bin -f none /opt/csw/include/cairo/cairo-xlib-xrender.h 0644 root bin -f none /opt/csw/include/cairo/cairo.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libcairo.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/cairo-ft.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo-pdf.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo-png.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo-ps.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo-svg.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo-xlib.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo-xlib-xrender.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/cairo.pc 0644 root bin -i copyright=CSWlibcairodev.copyright -i depend=CSWlibcairodev.depend -i pkginfo=CSWlibcairodev.pkginfo Modified: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.gspec =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.gspec 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.gspec 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,4 +1,4 @@ %var bitname libcairodoc %var pkgname CSWlibcairodoc %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.prototype =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.prototype 2009-01-13 23:17:17 UTC (rev 2820) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodoc.prototype 2009-01-13 23:30:28 UTC (rev 2821) @@ -1,60 +0,0 @@ -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/gtk-doc 0755 root bin -d none /opt/csw/share/gtk-doc/html 0755 root bin -d none /opt/csw/share/gtk-doc/html/cairo 0755 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-errors.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-fonts.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-memory.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-overloading.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-path.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-patterns.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-return-values.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-streams.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/bindings-surfaces.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-context.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-drawing.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-error-status.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-font-face.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-font-options.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-fonts.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-ft-font.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-image-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-matrix.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-paths.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-pattern.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-pdf-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-png-functions.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-ps-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-quartz-font.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-quartz-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-scaled-font.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-support.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-surfaces.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-svg-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-text.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-transformations.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-types.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-user-font.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-version-info.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-win32-font.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-win32-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo-xlib-surface.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo.devhelp 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/cairo.devhelp2 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/home.png 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index-1.2.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index-1.4.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index-1.6.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index-1.8.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index-all.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/index.sgml 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/language-bindings.html 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/left.png 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/right.png 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/style.css 0644 root bin -f none /opt/csw/share/gtk-doc/html/cairo/up.png 0644 root bin -i copyright=CSWlibcairodoc.copyright -i depend=CSWlibcairodoc.depend -i pkginfo=CSWlibcairodoc.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Jan 14 00:35:21 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 23:35:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[2822] csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev. gspec Message-ID: Revision: 2822 http://gar.svn.sourceforge.net/gar/?rev=2822&view=rev Author: wbonnet Date: 2009-01-13 23:35:21 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Commit before rename Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec Modified: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec 2009-01-13 23:30:28 UTC (rev 2821) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec 2009-01-13 23:35:21 UTC (rev 2822) @@ -1,4 +1,4 @@ -%var bitname libcairodev -%var pkgname CSWlibcairodev +%var bitname libcairo_devel +%var pkgname CSWlibcairodevel %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Jan 14 00:55:21 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 23:55:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[2823] csw/mgar/pkg/libcairo/trunk Message-ID: Revision: 2823 http://gar.svn.sourceforge.net/gar/?rev=2823&view=rev Author: wbonnet Date: 2009-01-13 23:55:21 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile csw/mgar/pkg/libcairo/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodevel.gspec Removed Paths: ------------- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec Property Changed: ---------------- csw/mgar/pkg/libcairo/trunk/ Property changes on: csw/mgar/pkg/libcairo/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-01-13 23:35:21 UTC (rev 2822) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-01-13 23:55:21 UTC (rev 2823) @@ -10,30 +10,45 @@ MASTER_SITES = http://www.cairographics.org/releases/ DISTFILES = cairo-$(GARVERSION).tar.gz PKGDIST = cairo-$(GARVERSION).tar.gz -DISTFILES += CSWlibcairo.gspec CSWlibcairo.prototype CSWlibcairo.depend -DISTFILES += CSWlibcairodev.gspec CSWlibcairodev.prototype CSWlibcairodev.depend -DISTFILES += CSWlibcairodoc.gspec CSWlibcairodoc.prototype CSWlibcairodoc.depend -# DISTFILES += $(call admfiles,CSWlibcairo, depend) -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib - -export CFLAGS CXXFLAGS LDFLAGS - # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -GREP = ggrep +SPKG_DESC_CSWlibcairo = $(DESCRIPTION) +SPKG_DESC_CSWlibcairodevel = $(DESCRIPTION) development package -include gar/category.mk +DISTFILES += $(call admfiles,CSWlibcairo, ) +DISTFILES += $(call admfiles,CSWlibcairodevel, ) +DISTFILES += $(call admfiles,CSWlibcairodoc, ) +PKGFILES_CSWlibcairodevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibcairodevel += $(prefix)/include/.* +PKGFILES_CSWlibcairodevel += $(prefix)/lib/.*\.a +PKGFILES_CSWlibcairodevel += $(prefix)/lib/pkgconfig/.* + +PKGFILES_CSWlibcairodoc += $(prefix)/share/gtk-doc.* + +REQUIRED_PKGS_CSWlibcairodevel = CSWlibcairo +REQUIRED_PKGS_CSWlibcairodoc = +REQUIRED_PKGS_CSWlibcairo += CSWlibx11 +REQUIRED_PKGS_CSWlibcairo += CSWfconfig +REQUIRED_PKGS_CSWlibcairo += CSWftype2 +REQUIRED_PKGS_CSWlibcairo += CSWlibxrender +REQUIRED_PKGS_CSWlibcairo += CSWpixman +REQUIRED_PKGS_CSWlibcairo += CSWpng +REQUIRED_PKGS_CSWlibcairo += CSWzlib + +CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION +CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath +LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib + CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man --disable-tests --enable-xlib=yes --enable-xlib-xrender=yes --enable-ft=yes --with-x post-extract: - ( mv $(WORKDIR)/cairo-$(GARVERSION) $(WORKDIR)/$(GARNAME)-$(GARVERSION) ) + ( cd $(WORKROOTDIR)/build-$(firstword $(MODULATIONS)) ; \ + mv cairo-$(GARVERSION) $(GARNAME)-$(GARVERSION) ) @$(MAKECOOKIE) -post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) +include gar/category.mk + Modified: csw/mgar/pkg/libcairo/trunk/checksums =================================================================== --- csw/mgar/pkg/libcairo/trunk/checksums 2009-01-13 23:35:21 UTC (rev 2822) +++ csw/mgar/pkg/libcairo/trunk/checksums 2009-01-13 23:55:21 UTC (rev 2823) @@ -1,10 +1,4 @@ 44d406e199c338cb60f7db32ffb32bdb download/cairo-1.8.2.tar.gz -7a9643495de17237dc340f420084f8ea download/CSWlibcairo.gspec -07e633e903977c46222d112a7e3cba2b download/CSWlibcairo.prototype -f4082db6a7c6682f24fa820150df07a9 download/CSWlibcairo.depend -657e98aba3961d90ad097c407fde3539 download/CSWlibcairodev.gspec -238c444d07f5a6d84b73dd79558da18b download/CSWlibcairodev.prototype -b1d4ecf06f684f9127fe0e79b30ab82b download/CSWlibcairodev.depend -6eaa028e18e5878a681f1356c9020acd download/CSWlibcairodoc.gspec -a6ddb8eaddea18e088f1462a0bc39bf8 download/CSWlibcairodoc.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWlibcairodoc.depend +14919d48d4e00ee4e18fededcb1454ba download/CSWlibcairo.gspec +858cebcbabf59da9aaa959d915c6d1a9 download/CSWlibcairodevel.gspec +081ffcd10145f9041df467a11342cc98 download/CSWlibcairodoc.gspec Deleted: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec 2009-01-13 23:35:21 UTC (rev 2822) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec 2009-01-13 23:55:21 UTC (rev 2823) @@ -1,4 +0,0 @@ -%var bitname libcairo_devel -%var pkgname CSWlibcairodevel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodevel.gspec (from rev 2822, csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodev.gspec) =================================================================== --- csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodevel.gspec (rev 0) +++ csw/mgar/pkg/libcairo/trunk/files/CSWlibcairodevel.gspec 2009-01-13 23:55:21 UTC (rev 2823) @@ -0,0 +1,4 @@ +%var bitname libcairo_devel +%var pkgname CSWlibcairodevel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Jan 14 00:56:55 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 13 Jan 2009 23:56:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[2824] csw/mgar/pkg/pixman/trunk Message-ID: Revision: 2824 http://gar.svn.sourceforge.net/gar/?rev=2824&view=rev Author: wbonnet Date: 2009-01-13 23:56:55 +0000 (Tue, 13 Jan 2009) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/pixman/trunk/checksums Added Paths: ----------- csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec Removed Paths: ------------- csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec Property Changed: ---------------- csw/mgar/pkg/pixman/trunk/ Property changes on: csw/mgar/pkg/pixman/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/pixman/trunk/checksums =================================================================== --- csw/mgar/pkg/pixman/trunk/checksums 2009-01-13 23:55:21 UTC (rev 2823) +++ csw/mgar/pkg/pixman/trunk/checksums 2009-01-13 23:56:55 UTC (rev 2824) @@ -1,7 +1,3 @@ 09357cc74975b01714e00c5899ea1881 download/pixman-0.12.0.tar.gz -e923b5e9b6908d3d7031bbc79222397d download/CSWpixman.gspec -76c6380331452e1f1bc05a4d6d836d33 download/CSWpixman.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWpixman.depend -6495c1d471aa267024eea2093420d6ef download/CSWpixmandev.gspec -60795012df47831a5983e11561b5a929 download/CSWpixmandev.prototype -155abd6a115f1ed43fe5105ca3e877c7 download/CSWpixmandev.depend +5b2d839113c3dbe7bea7da0f54a4d3dc download/CSWpixman.gspec +e2bea793bd3dc27a28c1a83e36f8e94c download/CSWpixmandevel.gspec Deleted: csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec 2009-01-13 23:55:21 UTC (rev 2823) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec 2009-01-13 23:56:55 UTC (rev 2824) @@ -1,4 +0,0 @@ -%var bitname pixman_devel -%var pkgname CSWpixmandevel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Copied: csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec (from rev 2820, csw/mgar/pkg/pixman/trunk/files/CSWpixmandev.gspec) =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec (rev 0) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec 2009-01-13 23:56:55 UTC (rev 2824) @@ -0,0 +1,4 @@ +%var bitname pixman_devel +%var pkgname CSWpixmandevel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 14 10:03:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 14 Jan 2009 09:03:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[2825] csw/mgar/pkg/pcre/trunk Message-ID: Revision: 2825 http://gar.svn.sourceforge.net/gar/?rev=2825&view=rev Author: dmichelsen Date: 2009-01-14 09:03:20 +0000 (Wed, 14 Jan 2009) Log Message: ----------- pcre: General fixing for release Modified Paths: -------------- csw/mgar/pkg/pcre/trunk/Makefile csw/mgar/pkg/pcre/trunk/checksums csw/mgar/pkg/pcre/trunk/files/CSWpcre.gspec csw/mgar/pkg/pcre/trunk/files/CSWpcrert.gspec Modified: csw/mgar/pkg/pcre/trunk/Makefile =================================================================== --- csw/mgar/pkg/pcre/trunk/Makefile 2009-01-13 23:56:55 UTC (rev 2824) +++ csw/mgar/pkg/pcre/trunk/Makefile 2009-01-14 09:03:20 UTC (rev 2825) @@ -19,7 +19,7 @@ PREREQUISITE_PKGS = CSWgnulinks REQUIRED_PKGS_CSWpcre = CSWpcrert -REQUIRED_PKGS_CSWpcrert = CSWzlib CSWbzip2 CSWreadline +REQUIRED_PKGS_CSWpcrert = CSWzlib CSWbzip2 CSWreadline CSWncurses SPKG_DESC_CSWpcrert = Perl-compatible regular expression tools (runtime) SPKG_DESC_CSWpcre = Perl-compatible regular expression tools @@ -35,8 +35,14 @@ CONFIGURE_ARGS += --enable-pcregrep-libbz2 CONFIGURE_ARGS += --enable-pcretest-libreadline +EXTRA_LINKER_FLAGS = -lncurses + TEST_TARGET = check +NO_ISAEXEC = 1 + +PKGFILES_CSWpcrert = $(PKGFILES_RT) + include gar/category.mk # The testcases need 'diff -u' which Solaris 8 diff does not have, Modified: csw/mgar/pkg/pcre/trunk/checksums =================================================================== --- csw/mgar/pkg/pcre/trunk/checksums 2009-01-13 23:56:55 UTC (rev 2824) +++ csw/mgar/pkg/pcre/trunk/checksums 2009-01-14 09:03:20 UTC (rev 2825) @@ -1,3 +1,3 @@ 32fd7c7863b871d408d730e6ffa4aa71 download/pcre-7.8.tar.gz -dc5c2103dbbe39a0ffa06ff14b8760b7 download/CSWpcre.gspec -fa208f4292d0102dc5e87d81bed54af9 download/CSWpcrert.gspec +ab54bd8abaae58cd88a86678977723e0 download/CSWpcre.gspec +9c278a0bbdb2766d198d585e5c73956a download/CSWpcrert.gspec Modified: csw/mgar/pkg/pcre/trunk/files/CSWpcre.gspec =================================================================== --- csw/mgar/pkg/pcre/trunk/files/CSWpcre.gspec 2009-01-13 23:56:55 UTC (rev 2824) +++ csw/mgar/pkg/pcre/trunk/files/CSWpcre.gspec 2009-01-14 09:03:20 UTC (rev 2825) @@ -1,4 +1,4 @@ %var bitname pcre %var pkgname CSWpcre %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/pcre/trunk/files/CSWpcrert.gspec =================================================================== --- csw/mgar/pkg/pcre/trunk/files/CSWpcrert.gspec 2009-01-13 23:56:55 UTC (rev 2824) +++ csw/mgar/pkg/pcre/trunk/files/CSWpcrert.gspec 2009-01-14 09:03:20 UTC (rev 2825) @@ -2,4 +2,4 @@ %var pkgname CSWpcrert %var desc Perl-compatible regular expression runtime libraries %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jan 14 11:13:14 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 14 Jan 2009 10:13:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[2826] csw/mgar/pkg/mbuffer/trunk Message-ID: Revision: 2826 http://gar.svn.sourceforge.net/gar/?rev=2826&view=rev Author: skayser Date: 2009-01-14 10:13:14 +0000 (Wed, 14 Jan 2009) Log Message: ----------- mbuffer: added custom-test and bumped version Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile csw/mgar/pkg/mbuffer/trunk/checksums Added Paths: ----------- csw/mgar/pkg/mbuffer/trunk/files/CSWmbuffer.gspec Removed Paths: ------------- csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-14 09:03:20 UTC (rev 2825) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-14 10:13:14 UTC (rev 2826) @@ -1,5 +1,5 @@ GARNAME = mbuffer -GARVERSION = 20081207 +GARVERSION = 20090106 CATEGORIES = utils DESCRIPTION = A tool for buffering data streams @@ -14,10 +14,13 @@ MASTER_SITES = http://www.maier-komor.de/software/mbuffer/ DISTFILES = $(GARNAME)-$(GARVERSION).tgz -DISTFILES += $(call admfiles,CSWpackage,) +DISTFILES += $(call admfiles,CSWmbuffer,) REQUIRED_PKGS = CSWosslrt +# Required for the test target +PREREQUISITE_PKGS = CSWmktemp CSWgcc4core + # We define upstream file regex so we can be notifed of new upstream software # release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz @@ -27,33 +30,53 @@ # value of MASTER_SITES # UPSTREAM_MASTER_SITES = +# ------------------------------------------------------------------------ +# 64-bit build is broken right now (make check throws assertion errors). +# Fix is pending from upstream. + # To build amd64 you have to do the following # 1) build8x: gmake build-isa-i386 # 2) build10x: gmake merge # 3) build8x: gmake package -BUILD64 = 1 -ISAEXEC_BINS = $(bindir)/mbuffer +# BUILD64 = 1 +# ISAEXEC_BINS = $(bindir)/mbuffer CONFIGURE_ARGS = $(DIRPATHS) -# While i am still fighting with the packaging stuff, skip the tests -# TEST_TARGET = check -TEST_TARGET = +TEST_SCRIPTS = custom include gar/category.mk +# The test scripts do file IO and this is so sloooooow when being run +# in a NFS mounted $HOME. The local disk on build8x is no better, so +# just do the testing from /tmp instead. +# +# TODO: +# * Clean up $TMPDIR even when the nested make fails. +# * Somehow assert that the isa-amd64 test is run on build10x +# +test-custom: TMPDIR := $(shell mktemp -d -p /tmp) +test-custom: + echo "Running target test-custom, TMPDIR = $(TMPDIR)" + @cp $(WORKSRC)/mbuffer $(WORKSRC)/Makefile $(TMPDIR)/ + @$(MAKE) -C $(TMPDIR) check + @rm -rf $(TMPDIR) + @$(MAKECOOKIE) + # Solaris 10 on build10x has libm.so which points to libm.so.2. libm.so.2 # is however not available on Solaris 8. So we have to explicitly use # libm.so.1 during linking and get rid of the -lm reference. Otherwise -# the package check on build8x when running "gmake package" fails. -post-configure-isa-amd64: M1=$(WORKSRC)/Makefile -post-configure-isa-amd64: M2=$(WORKSRC)/Makefile.tmp +# the package check on build8x (when running "gmake package") fails. +post-configure-isa-amd64: M1 = $(WORKSRC)/Makefile +post-configure-isa-amd64: M2 = $(WORKSRC)/Makefile.tmp post-configure-isa-amd64: @echo "Patching Makefile to use /lib/64/libm.so.1 instead of -lm" @sed 's#-lm#/lib/64/libm.so.1#' $(M1) > $(M2) && mv $(M2) $(M1) + @$(MAKECOOKIE) post-install-modulated: DOCS = ChangeLog README AUTHORS post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) post-install-modulated: @ginstall -d $(DOCDEST) @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/mbuffer/trunk/checksums =================================================================== --- csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-14 09:03:20 UTC (rev 2825) +++ csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-14 10:13:14 UTC (rev 2826) @@ -1,2 +1,2 @@ -640dab1531246f4e93ba5f0ccccff65b download/mbuffer-20081207.tgz -ee84b171939ddb3f60a49b5989626000 download/CSWpackage.gspec +26f3d5b9bac8caa8af44f9e9e6d3b43d download/mbuffer-20090106.tgz +ee84b171939ddb3f60a49b5989626000 download/CSWmbuffer.gspec Copied: csw/mgar/pkg/mbuffer/trunk/files/CSWmbuffer.gspec (from rev 2780, csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec) =================================================================== --- csw/mgar/pkg/mbuffer/trunk/files/CSWmbuffer.gspec (rev 0) +++ csw/mgar/pkg/mbuffer/trunk/files/CSWmbuffer.gspec 2009-01-14 10:13:14 UTC (rev 2826) @@ -0,0 +1,4 @@ +%var bitname mbuffer +%var pkgname CSWmbuffer +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE Deleted: csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec 2009-01-14 09:03:20 UTC (rev 2825) +++ csw/mgar/pkg/mbuffer/trunk/files/CSWpackage.gspec 2009-01-14 10:13:14 UTC (rev 2826) @@ -1,4 +0,0 @@ -%var bitname mbuffer -%var pkgname CSWmbuffer -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jan 14 14:47:59 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 14 Jan 2009 13:47:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[2827] csw/mgar/pkg/cpan/Net-DNS/trunk Message-ID: Revision: 2827 http://gar.svn.sourceforge.net/gar/?rev=2827&view=rev Author: bonivart Date: 2009-01-14 13:47:58 +0000 (Wed, 14 Jan 2009) Log Message: ----------- net-dns: update to 0.64 Modified Paths: -------------- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile csw/mgar/pkg/cpan/Net-DNS/trunk/checksums csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.gspec Removed Paths: ------------- csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.depend Property Changed: ---------------- csw/mgar/pkg/cpan/Net-DNS/trunk/ Property changes on: csw/mgar/pkg/cpan/Net-DNS/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-14 10:13:14 UTC (rev 2826) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-14 13:47:58 UTC (rev 2827) @@ -1,19 +1,25 @@ GARNAME = Net-DNS -GARVERSION = 0.48 +GARVERSION = 0.64 CATEGORIES = cpan -AUTHOR = CREIN +AUTHOR = OLAF -DESCRIPTION = interface to the DNS resolver +DESCRIPTION = Interface to the DNS resolver define BLURB Net::DNS is a collection of Perl modules that act as a Domain Name System (DNS) resolver. It allows the programmer to perform DNS queries that are beyond the capabilities of gethostbyname and gethostbyaddr. endef -DISTFILES += CSWpmnetdns.gspec CSWpmnetdns.depend +DISTFILES += $(call admfiles,CSWpmnetdns,) -DEPENDS += cpan/Digest-HMAC +REQUIRED_PKGS = CSWpmdigesthmac CSWpmnetip -CONFIGURE_ARGS = --no-online-tests +# Update watch +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +CONFIGURE_ARGS = --no-online-tests +CONFIGURE_ARGS += --no-IPv6-tests + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + include gar/category.mk Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/checksums 2009-01-14 10:13:14 UTC (rev 2826) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/checksums 2009-01-14 13:47:58 UTC (rev 2827) @@ -1,3 +1,2 @@ -7c1e12645b256dc6d20306883fe1d292 download/CSWpmnetdns.gspec -2100c5f51dea71a633cb393f31e6f235 download/CSWpmnetdns.depend -bd5bab1de250b947a3f00148d426f2e2 download/Net-DNS-0.48.tar.gz +ec522b0bede886bfe23f1610d74954fe download/CSWpmnetdns.gspec +08aa3357707bf5d904d40f25ff4a34b6 download/Net-DNS-0.64.tar.gz Deleted: csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.depend =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.depend 2009-01-14 10:13:14 UTC (rev 2826) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.depend 2009-01-14 13:47:58 UTC (rev 2827) @@ -1 +0,0 @@ -P CSWpmdigesthmac pm_digesthmac - keyed-hashing for message authentication Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.gspec =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.gspec 2009-01-14 10:13:14 UTC (rev 2826) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/files/CSWpmnetdns.gspec 2009-01-14 13:47:58 UTC (rev 2827) @@ -2,9 +2,14 @@ %var pkgname CSWpmnetdns %include url file://%{PKGLIB}/csw_cpan.gspec %copyright -Copyright (c) 1997-2002 Michael Fuhr. +Copyright (c) 1997-2002 Michael Fuhr. + Portions Copyright (c) 2002-2004 Chris Reinhardt. +Portions Copyright (c) 2005 Olaf Kolkman (RIPE NCC) + +Portions Copyright (c) 2005 Olaf Kolkman (NLnet Labs) + All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jan 14 15:41:17 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 14 Jan 2009 14:41:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[2828] csw/mgar/pkg/cpan Message-ID: Revision: 2828 http://gar.svn.sourceforge.net/gar/?rev=2828&view=rev Author: bonivart Date: 2009-01-14 14:41:17 +0000 (Wed, 14 Jan 2009) Log Message: ----------- Net-IP: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Net-IP/ csw/mgar/pkg/cpan/Net-IP/branches/ csw/mgar/pkg/cpan/Net-IP/tags/ csw/mgar/pkg/cpan/Net-IP/trunk/ csw/mgar/pkg/cpan/Net-IP/trunk/Makefile csw/mgar/pkg/cpan/Net-IP/trunk/checksums csw/mgar/pkg/cpan/Net-IP/trunk/files/ csw/mgar/pkg/cpan/Net-IP/trunk/files/CSWpmnetip.gspec Property changes on: csw/mgar/pkg/cpan/Net-IP/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/Net-IP/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-IP/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Net-IP/trunk/Makefile 2009-01-14 14:41:17 UTC (rev 2828) @@ -0,0 +1,16 @@ +GARNAME = Net-IP +GARVERSION = 1.25 +CATEGORIES = cpan +AUTHOR = MANU + +DESCRIPTION = Perl extension for manipulating IPv4/IPv6 addresses +define BLURB + This is the Net::IP module, designed to allow easy manipulation of IPv4 and + IPv6 addresses. +endef + +DISTFILES += $(call admfiles,CSWpmnetip,) + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + +include gar/category.mk Added: csw/mgar/pkg/cpan/Net-IP/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-IP/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Net-IP/trunk/checksums 2009-01-14 14:41:17 UTC (rev 2828) @@ -0,0 +1,2 @@ +bdd199eae1946802858cc08707e71f24 download/CSWpmnetip.gspec +a49c0b02a9b793ff60191cdafc0c202e download/Net-IP-1.25.tar.gz Added: csw/mgar/pkg/cpan/Net-IP/trunk/files/CSWpmnetip.gspec =================================================================== --- csw/mgar/pkg/cpan/Net-IP/trunk/files/CSWpmnetip.gspec (rev 0) +++ csw/mgar/pkg/cpan/Net-IP/trunk/files/CSWpmnetip.gspec 2009-01-14 14:41:17 UTC (rev 2828) @@ -0,0 +1,44 @@ +%var bitname pm_netip +%var pkgname CSWpmnetip +%include url file://%{PKGLIB}/csw_cpan.gspec +%copyright + +Copyright (c) 1999-2000 by RIPE-NCC. All rights reserved. + +This program is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +You should have received a copy of the Perl license along with +Perl; see the file README in Perl distribution. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + +You should have received a copy of the Artistic License +along with Perl; see the file Artistic. + + NO WARRANTY + +BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jan 14 16:59:00 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 14 Jan 2009 15:59:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[2829] csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile Message-ID: Revision: 2829 http://gar.svn.sourceforge.net/gar/?rev=2829&view=rev Author: bonivart Date: 2009-01-14 15:59:00 +0000 (Wed, 14 Jan 2009) Log Message: ----------- net-dns: fixes Modified Paths: -------------- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-14 14:41:17 UTC (rev 2828) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-14 15:59:00 UTC (rev 2829) @@ -14,12 +14,14 @@ REQUIRED_PKGS = CSWpmdigesthmac CSWpmnetip -# Update watch -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +DEPENDS += cpan/Net-IP CONFIGURE_ARGS = --no-online-tests CONFIGURE_ARGS += --no-IPv6-tests EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod +# Weird problem on sparc +TEST_SCRIPTS = + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 14 17:25:19 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 14 Jan 2009 16:25:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2830] csw/mgar/gar/v2 Message-ID: Revision: 2830 http://gar.svn.sourceforge.net/gar/?rev=2830&view=rev Author: dmichelsen Date: 2009-01-14 16:25:19 +0000 (Wed, 14 Jan 2009) Log Message: ----------- mGAR v2: Temporary fix for smf_enabled, general solution as for WORKSRC_FIRSTMOD pending Modified Paths: -------------- csw/mgar/gar/v2/gar.pkg.mk csw/mgar/gar/v2/pkglib/smf_enabled.gspec Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-01-14 15:59:00 UTC (rev 2829) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-01-14 16:25:19 UTC (rev 2830) @@ -233,6 +233,7 @@ --workdir $(SPKG_WORKDIR) \ --pkgbase $(SPKG_PKGBASE) \ --pkgroot $(SPKG_PKGROOT) \ + -v WORKDIR_FIRSTMOD=../build-$(firstword $(MODULATIONS)) \ --compress \ $(MKPACKAGE_ARGS) ) || exit 2 @$(MAKECOOKIE) Modified: csw/mgar/gar/v2/pkglib/smf_enabled.gspec =================================================================== --- csw/mgar/gar/v2/pkglib/smf_enabled.gspec 2009-01-14 15:59:00 UTC (rev 2829) +++ csw/mgar/gar/v2/pkglib/smf_enabled.gspec 2009-01-14 16:25:19 UTC (rev 2830) @@ -13,7 +13,7 @@ i r.smf=%{PKGLIB}/smf/r.smf d init /etc ? ? ? d init /etc/init.d ? ? ? -f init /etc/init.d/%{RC_INIT_SCRIPT}=%{RC_INIT_SCRIPT} 0755 root bin +f init /etc/init.d/%{RC_INIT_SCRIPT}=$WORKDIR_FIRSTMOD/%{RC_INIT_SCRIPT} 0755 root bin d init /etc/rc0.d ? ? ? s init /etc/rc0.d/%{INIT_RC0}%{INIT_KILL_PRIO}%{RC_INIT_SCRIPT}=../init.d/%{RC_INIT_SCRIPT} d init /etc/rc1.d ? ? ? @@ -27,11 +27,11 @@ d smf /opt/csw/var/svc 0755 root bin d smf /opt/csw/var/svc/manifest 0755 root bin d smf /opt/csw/var/svc/manifest/site 0755 root bin -v smf /opt/csw/var/svc/manifest/site/%{SMF_MANIFEST}=%{SMF_MANIFEST} 0644 root bin +v smf /opt/csw/var/svc/manifest/site/%{SMF_MANIFEST}=$WORKDIR_FIRSTMOD/%{SMF_MANIFEST} 0644 root bin d smf /opt/csw/lib 0755 root bin d smf /opt/csw/lib/svc 0755 root bin d smf /opt/csw/lib/svc/method 0755 root bin -f smf /opt/csw/lib/svc/method/%{SMF_SCRIPT}=%{SMF_SCRIPT} 0755 root bin +f smf /opt/csw/lib/svc/method/%{SMF_SCRIPT}=$WORKDIR_FIRSTMOD/%{SMF_SCRIPT} 0755 root bin %pkginfo:merge MANIFEST_FILES="/opt/csw/var/svc/manifest/site/%{SMF_MANIFEST}" INIT_FILES="/etc/init.d/%{RC_INIT_SCRIPT}" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 14 17:27:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 14 Jan 2009 16:27:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2831] csw/mgar/pkg/nginx/trunk/Makefile Message-ID: Revision: 2831 http://gar.svn.sourceforge.net/gar/?rev=2831&view=rev Author: dmichelsen Date: 2009-01-14 16:27:30 +0000 (Wed, 14 Jan 2009) Log Message: ----------- nginx: Remove lines for extra copying of SMF files, temporary fix of mGAR v2 SMF support makes them redundant Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-01-14 16:25:19 UTC (rev 2830) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-01-14 16:27:30 UTC (rev 2831) @@ -56,12 +56,6 @@ post-install-modulated: cp $(WORKDIR)/svc-cswnginx $(WORKDIR)/cswnginx - ginstall -d $(DESTDIR)/etc/init.d - cp $(WORKDIR)/cswnginx $(DESTDIR)/etc/init.d - ginstall -d $(DESTDIR)$(prefix)/var/svc/manifest/site - cp $(WORKDIR)/cswnginx.xml $(DESTDIR)$(prefix)/var/svc/manifest/site - ginstall -d $(DESTDIR)$(libdir)/svc/method - cp $(WORKDIR)/svc-cswnginx $(DESTDIR)$(libdir)/svc/method ginstall -d $(DESTDIR)$(sysconfdir)/nginx/conf.d ginstall -d $(DESTDIR)$(sharedstatedir)/nginx/contrib ginstall -d $(DESTDIR)$(docdir)/nginx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Jan 14 17:52:25 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 14 Jan 2009 16:52:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[2832] csw/mgar/pkg/dcc/trunk/Makefile Message-ID: Revision: 2832 http://gar.svn.sourceforge.net/gar/?rev=2832&view=rev Author: bonivart Date: 2009-01-14 16:52:24 +0000 (Wed, 14 Jan 2009) Log Message: ----------- dcc: add upstream regex Modified Paths: -------------- csw/mgar/pkg/dcc/trunk/Makefile Modified: csw/mgar/pkg/dcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/dcc/trunk/Makefile 2009-01-14 16:27:30 UTC (rev 2831) +++ csw/mgar/pkg/dcc/trunk/Makefile 2009-01-14 16:52:24 UTC (rev 2832) @@ -8,6 +8,9 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.Z DISTFILES += $(call admfiles,CSWdcc,) +# Upstream watch +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.Z + #CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS = CONFIGURE_ARGS += --homedir=/var/opt/csw/dcc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 14 21:38:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 14 Jan 2009 20:38:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[2833] csw/mgar/gar/v2/bin/stripbin Message-ID: Revision: 2833 http://gar.svn.sourceforge.net/gar/?rev=2833&view=rev Author: dmichelsen Date: 2009-01-14 20:38:19 +0000 (Wed, 14 Jan 2009) Log Message: ----------- mGAR v2: Allow stripping of non-writable binaries. This fixes bug [ 2236412 ] Modified Paths: -------------- csw/mgar/gar/v2/bin/stripbin Modified: csw/mgar/gar/v2/bin/stripbin =================================================================== --- csw/mgar/gar/v2/bin/stripbin 2009-01-14 16:52:24 UTC (rev 2832) +++ csw/mgar/gar/v2/bin/stripbin 2009-01-14 20:38:19 UTC (rev 2833) @@ -23,7 +23,13 @@ if ($filechar =~ /ELF/ && $filechar =~ /not stripped/) { print "Stripping $file ... "; + + # Make sure we can write to the file + my $perm = (stat $file)[2] & 07777; + print "making file temporarily writable ... " unless( $perm & 0200 ); + chmod($perm | 0200, $file); system "strip", $file and die "Failed."; + chmod($perm, $file); print "Done.\n"; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Wed Jan 14 23:39:27 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Wed, 14 Jan 2009 22:39:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[2834] csw/mgar/pkg Message-ID: Revision: 2834 http://gar.svn.sourceforge.net/gar/?rev=2834&view=rev Author: skayser Date: 2009-01-14 22:39:27 +0000 (Wed, 14 Jan 2009) Log Message: ----------- imapsync: Initial commit Added Paths: ----------- csw/mgar/pkg/imapsync/ csw/mgar/pkg/imapsync/branches/ csw/mgar/pkg/imapsync/tags/ csw/mgar/pkg/imapsync/trunk/ csw/mgar/pkg/imapsync/trunk/Makefile csw/mgar/pkg/imapsync/trunk/checksums csw/mgar/pkg/imapsync/trunk/files/ csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.gspec Property changes on: csw/mgar/pkg/imapsync/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/imapsync/trunk/Makefile =================================================================== --- csw/mgar/pkg/imapsync/trunk/Makefile (rev 0) +++ csw/mgar/pkg/imapsync/trunk/Makefile 2009-01-14 22:39:27 UTC (rev 2834) @@ -0,0 +1,39 @@ +GARNAME = imapsync +GARVERSION = 1.267 +CATEGORIES = utils + +DESCRIPTION = IMAP synchronization, copy and migration tool +define BLURB + imapsync is a tool for facilitating incremental recursive IMAP + transfers from one mailbox to another. It is useful for mailbox + migration, and reduces the amount of data transferred by only copying + messages that are not present on both servers. Read, unread, and + deleted flags are preserved, and the process can be stopped and + resumed. The original messages can optionally be deleted after a + successful transfer. +endef + +SPKG_SOURCEURL = http://freshmeat.net/projects/imapsync/ + +MASTER_SITES = http://www.linux-france.org/prj/imapsync/dist/ +DISTFILES = $(GARNAME)-$(GARVERSION).tgz +DISTFILES += $(call admfiles,CSWimapsync,depend) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = imapsync + +CONFIGURE_ARGS = $(DIRPATHS) + +install-imapsync: + @ginstall -d $(DESTDIR)$(bindir) + @ginstall -d $(DESTDIR)$(mandir)/man1 + @ginstall $(WORKSRC)/$(GARNAME) $(DESTDIR)$(bindir)/$(GARNAME) + @pod2man $(WORKSRC)/$(GARNAME) > $(DESTDIR)$(mandir)/man1/$(GARNAME).1 + @$(MAKECOOKIE) + +include gar/category.mk Added: csw/mgar/pkg/imapsync/trunk/checksums =================================================================== --- csw/mgar/pkg/imapsync/trunk/checksums (rev 0) +++ csw/mgar/pkg/imapsync/trunk/checksums 2009-01-14 22:39:27 UTC (rev 2834) @@ -0,0 +1,3 @@ +3ca055a54b89e2ec01f687cfb6abfd1c download/imapsync-1.267.tgz +92d41550a595eaa994a715e8fcacd9c2 download/CSWimapsync.gspec +189749591bacf9dbe6c20f288404de18 download/CSWimapsync.depend Added: csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend =================================================================== --- csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend (rev 0) +++ csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend 2009-01-14 22:39:27 UTC (rev 2834) @@ -0,0 +1,2 @@ +P CSWperl +P CSWpmmailimapclient Added: csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.gspec =================================================================== --- csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.gspec (rev 0) +++ csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.gspec 2009-01-14 22:39:27 UTC (rev 2834) @@ -0,0 +1,5 @@ +%var bitname imapsync +%var pkgname CSWimapsync +%var arch all +%include url file://%{PKGLIB}/csw_standard.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/GPL This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From trygvis at users.sourceforge.net Thu Jan 15 02:12:04 2009 From: trygvis at users.sourceforge.net (trygvis at users.sourceforge.net) Date: Thu, 15 Jan 2009 01:12:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2835] csw/mgar/pkg/mercurial/trunk Message-ID: Revision: 2835 http://gar.svn.sourceforge.net/gar/?rev=2835&view=rev Author: trygvis Date: 2009-01-15 01:12:03 +0000 (Thu, 15 Jan 2009) Log Message: ----------- o Upgrading to mercurial-1.0.2. Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile csw/mgar/pkg/mercurial/trunk/checksums csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec Added Paths: ----------- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec Removed Paths: ------------- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2009-01-14 22:39:27 UTC (rev 2834) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2009-01-15 01:12:03 UTC (rev 2835) @@ -1,33 +1,42 @@ GARNAME = mercurial -GARVERSION = 1.0 +GARVERSION = 1.1.2 CATEGORIES = devel DESCRIPTION = Fast, lightweight Source Control Management system #define BLURB #endef -MASTER_SITES = http://www.selenic.com/mercurial/release +MASTER_SITES = http://www.selenic.com/mercurial/release/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWmercurial,prototype changelog.CSW) +DISTFILES += $(call admfiles,CSWmercurial,changelog.CSW) +DISTFILES += $(call admfiles,CSWmercurial-common,) +SPKG_DESC_CSWmercurial = Mercurial +SPKG_DESC_CSWmercurial_common = Mercurial, common files + +REQUIRED_PKGS_CSWmercurial = CSWpython + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +PKGFILES_CSWmercurial-common = $(PKGFILES_DOC) +PKGFILES_CSWmercurial-common += /opt/csw/share/man/.* +PKGFILES_CSWmercurial-common += /opt/csw/lib/python/site-packages/mercurial/templates/.* + +#PKGFILES_CSWmercurial = /opt/csw/bin +# $(prefix)/.* + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py -TEST_TARGET = -# Can't get the tests to pass properly -#TEST_TARGET = tests -# TESTFLAGS is used by ./run-tests.py -TESTFLAGS = -p 6666 -export TESTFLAGS +# Some tests fail, but manual inspection of the failures show no significant failures. +TEST_TARGET = #tests + INSTALL_SCRIPTS = $(WORKSRC)/setup.py - INSTALL_ARGS += --root=$(DESTDIR) --prefix=/opt/csw include gar/category.mk -pre-install: +pre-install-modulated: mkdir -p $(DESTDIR)/opt/csw/share/man/man1 mkdir -p $(DESTDIR)/opt/csw/share/man/man5 mkdir -p $(DESTDIR)/opt/csw/share/doc/mercurial @@ -41,7 +50,7 @@ $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/*spec* \ $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/win32 -post-install: +post-install-modulated: cp $(WORKDIR)/CSWmercurial.changelog.CSW $(DESTDIR)/opt/csw/share/doc/mercurial/changelog.CSW ( cd $(DESTDIR) && find . -type f | xargs grep '#!.*python$$' ) | cut -f 1 -d: | while read file; do\ sed '1c\ @@ -49,4 +58,4 @@ mv $(WORKDIR)/tmp $(DESTDIR)/$$file; \ done -PATH := /opt/csw/bin:$(PATH) +#PATH := /opt/csw/bin:$(PATH) Modified: csw/mgar/pkg/mercurial/trunk/checksums =================================================================== --- csw/mgar/pkg/mercurial/trunk/checksums 2009-01-14 22:39:27 UTC (rev 2834) +++ csw/mgar/pkg/mercurial/trunk/checksums 2009-01-15 01:12:03 UTC (rev 2835) @@ -1,4 +1,4 @@ -9f8dd7fa6f8886f77be9b923f008504c download/mercurial-1.0.tar.gz -f2e148286af727c4ef418b11e9061fde download/CSWmercurial.gspec -feec49140812779d35d3413cc3a2d811 download/CSWmercurial.prototype +4fd3b9a2e5dcd025840c3849b136bec8 download/mercurial-1.1.2.tar.gz +d280026d7687f061371e87ff306c97c2 download/CSWmercurial.gspec db884ecb306bcbf49b671f880d29c431 download/CSWmercurial.changelog.CSW +f123d5474de9aeaea428989744b12401 download/CSWmercurial-common.gspec Added: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec =================================================================== --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec (rev 0) +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec 2009-01-15 01:12:03 UTC (rev 2835) @@ -0,0 +1,7 @@ +%var bitname mercurial_common +%var pkgname CSWmercurial-common +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +Please see /opt/csw/share/doc/mercurial-common/LICENSE for license information + Deleted: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend =================================================================== --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend 2009-01-14 22:39:27 UTC (rev 2834) +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend 2009-01-15 01:12:03 UTC (rev 2835) @@ -1,2 +0,0 @@ -P CSWcommon common - common files and dirs for CSW packages -P CSWpython python - A high-level scripting language. Modified: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec =================================================================== --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec 2009-01-14 22:39:27 UTC (rev 2834) +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec 2009-01-15 01:12:03 UTC (rev 2835) @@ -1,4 +1,7 @@ %var bitname mercurial %var pkgname CSWmercurial %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright + +Please see /opt/csw/share/doc/mercurial/LICENSE for license information + Deleted: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype =================================================================== --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype 2009-01-14 22:39:27 UTC (rev 2834) +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype 2009-01-15 01:12:03 UTC (rev 2835) @@ -1,343 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/hg 0755 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/python 0755 root bin -d none /opt/csw/lib/python/site-packages 0755 root bin -d none /opt/csw/lib/python/site-packages/hgext 0755 root bin -f none /opt/csw/lib/python/site-packages/hgext/__init__.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/__init__.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/acl.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/acl.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/alias.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/alias.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/bugzilla.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/bugzilla.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/children.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/children.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/churn.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/churn.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/color.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/color.pyc 0644 root bin -d none /opt/csw/lib/python/site-packages/hgext/convert 0755 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/__init__.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/__init__.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/common.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/common.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/convcmd.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/convcmd.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/cvs.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/cvs.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/darcs.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/darcs.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/filemap.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/filemap.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/git.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/git.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/gnuarch.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/gnuarch.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/hg.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/hg.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/monotone.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/monotone.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/subversion.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/subversion.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/transport.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/convert/transport.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/extdiff.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/extdiff.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/fetch.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/fetch.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/gpg.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/gpg.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/graphlog.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/graphlog.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/hgk.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/hgk.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/highlight.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/highlight.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/imerge.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/imerge.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/interhg.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/interhg.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/keyword.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/keyword.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/mq.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/mq.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/notify.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/notify.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/pager.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/pager.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/parentrevspec.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/parentrevspec.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/patchbomb.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/patchbomb.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/purge.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/purge.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/record.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/record.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/transplant.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/transplant.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/win32mbcs.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/win32mbcs.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/win32text.py 0644 root bin -f none /opt/csw/lib/python/site-packages/hgext/win32text.pyc 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial-1.0-py2.5.egg-info 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/__init__.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/__init__.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/__version__.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/__version__.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/ancestor.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/ancestor.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/archival.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/archival.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/base85.so 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/bdiff.so 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/bundlerepo.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/bundlerepo.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/byterange.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/byterange.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/changegroup.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/changegroup.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/changelog.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/changelog.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/cmdutil.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/cmdutil.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/commands.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/commands.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/context.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/context.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/copies.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/copies.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/demandimport.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/demandimport.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/diffhelpers.so 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/dirstate.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/dirstate.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/dispatch.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/dispatch.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/extensions.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/extensions.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/fancyopts.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/fancyopts.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/filelog.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/filelog.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/filemerge.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/filemerge.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hbisect.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hbisect.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/help.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/help.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hg.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hg.pyc 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial/hgweb 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/__init__.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/__init__.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/common.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/common.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgweb_mod.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgweb_mod.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgwebdir_mod.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgwebdir_mod.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/protocol.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/protocol.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/request.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/request.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/server.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/server.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/webcommands.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/webcommands.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/wsgicgi.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/wsgicgi.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hook.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/hook.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/httprangereader.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/httprangereader.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/httprepo.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/httprepo.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/i18n.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/i18n.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/ignore.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/ignore.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/keepalive.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/keepalive.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/localrepo.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/localrepo.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/lock.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/lock.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/lsprof.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/lsprof.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/mail.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/mail.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/manifest.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/manifest.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/mdiff.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/mdiff.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/merge.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/merge.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/mpatch.so 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/node.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/node.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/osutil.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/osutil.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/osutil.so 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/patch.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/patch.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/repair.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/repair.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/repo.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/repo.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/revlog.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/revlog.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/simplemerge.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/simplemerge.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/sshrepo.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/sshrepo.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/sshserver.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/sshserver.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/statichttprepo.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/statichttprepo.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/streamclone.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/streamclone.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/strutil.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/strutil.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templatefilters.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templatefilters.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templater.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templater.pyc 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial/templates 0755 root bin -d none /opt/csw/lib/python/site-packages/mercurial/templates/atom 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/changelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/changelogentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/filelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/header.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/map 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/tagentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/tags.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/changelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/changelogentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/changeset.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/error.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/fileannotate.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/filediff.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/filelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/filelogentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/filerevision.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/footer.tmpl 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/changelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/changelogentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/changeset.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/error.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/fileannotate.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/filediff.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/filelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/filerevision.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/footer.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/header.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/index.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/manifest.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/map 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/notfound.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/search.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/shortlog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/summary.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/tags.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/header.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/index.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/manifest.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/map 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/map-cmdline.changelog 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/map-cmdline.compact 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/map-cmdline.default 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/notfound.tmpl 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial/templates/raw 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/changeset.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/error.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/fileannotate.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/filediff.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/index.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/manifest.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/map 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/notfound.tmpl 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial/templates/rss 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/changelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/changelogentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/filelog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/filelogentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/header.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/map 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/tagentry.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/tags.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/search.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/shortlog.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/shortlogentry.tmpl 0644 root bin -d none /opt/csw/lib/python/site-packages/mercurial/templates/static 0755 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/hgicon.png 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/hglogo.png 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/highlight.css 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/style-gitweb.css 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/style.css 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/tags.tmpl 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/templates/template-vars.txt 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/transaction.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/transaction.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/ui.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/ui.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/util.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/util.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/util_win32.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/util_win32.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/verify.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/verify.pyc 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/version.py 0644 root bin -f none /opt/csw/lib/python/site-packages/mercurial/version.pyc 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/doc 0755 root bin -d none /opt/csw/share/doc/mercurial 0755 root bin -d none /opt/csw/share/doc/mercurial/contrib 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/bash_completion 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/convert-repo 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/darcs2hg.py 0755 root bin -d none /opt/csw/share/doc/mercurial/contrib/git-viz 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-cat-file 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-diff-tree 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-rev-list 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-rev-tree 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/git-viz/hg-viz 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/hg-relink 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/hg-ssh 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/hgdiff 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/hgk 0755 root bin -d none /opt/csw/share/doc/mercurial/contrib/hgsh 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/hgsh/Makefile 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/hgsh/hgsh.c 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/hgwebdir.fcgi 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/logo-droplets.svg 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/mercurial.el 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/mergetools.hgrc 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/mq.el 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/rewrite-log 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/sample.hgrc 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/simplemerge 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/tcsh_completion 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/tcsh_completion_build.sh 0644 root bin -d none /opt/csw/share/doc/mercurial/contrib/vim 0755 root bin -f none /opt/csw/share/doc/mercurial/contrib/vim/HGAnnotate.vim 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/vim/hg-menu.vim 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/vim/hgcommand.vim 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/vim/patchreview.txt 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/vim/patchreview.vim 0644 root bin -f none /opt/csw/share/doc/mercurial/contrib/zsh_completion 0644 root bin -f none /opt/csw/share/doc/mercurial/hgweb.cgi 0644 root bin -f none /opt/csw/share/doc/mercurial/hgwebdir.cgi 0644 root bin -f none /opt/csw/share/doc/mercurial/changelog.CSW 0644 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/hg.1 0644 root bin -d none /opt/csw/share/man/man5 0755 root bin -f none /opt/csw/share/man/man5/hgignore.5 0644 root bin -f none /opt/csw/share/man/man5/hgrc.5 0644 root bin -i copyright=CSWmercurial.copyright -i depend=CSWmercurial.depend -i pkginfo=CSWmercurial.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Thu Jan 15 10:55:36 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 15 Jan 2009 09:55:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[2836] csw/mgar/pkg/imapsync/trunk/checksums Message-ID: Revision: 2836 http://gar.svn.sourceforge.net/gar/?rev=2836&view=rev Author: skayser Date: 2009-01-15 09:55:35 +0000 (Thu, 15 Jan 2009) Log Message: ----------- imapsync: Updated checksums Modified Paths: -------------- csw/mgar/pkg/imapsync/trunk/checksums Modified: csw/mgar/pkg/imapsync/trunk/checksums =================================================================== --- csw/mgar/pkg/imapsync/trunk/checksums 2009-01-15 01:12:03 UTC (rev 2835) +++ csw/mgar/pkg/imapsync/trunk/checksums 2009-01-15 09:55:35 UTC (rev 2836) @@ -1,3 +1,3 @@ 3ca055a54b89e2ec01f687cfb6abfd1c download/imapsync-1.267.tgz 92d41550a595eaa994a715e8fcacd9c2 download/CSWimapsync.gspec -189749591bacf9dbe6c20f288404de18 download/CSWimapsync.depend +36d99b2f5c03aa09f7ae82c8dfceee38 download/CSWimapsync.depend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 15 16:41:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Jan 2009 15:41:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[2837] csw/mgar/pkg Message-ID: Revision: 2837 http://gar.svn.sourceforge.net/gar/?rev=2837&view=rev Author: dmichelsen Date: 2009-01-15 15:41:20 +0000 (Thu, 15 Jan 2009) Log Message: ----------- gnutls: First commit Added Paths: ----------- csw/mgar/pkg/gnutls/ csw/mgar/pkg/gnutls/branches/ csw/mgar/pkg/gnutls/tags/ csw/mgar/pkg/gnutls/trunk/ csw/mgar/pkg/gnutls/trunk/Makefile csw/mgar/pkg/gnutls/trunk/checksums csw/mgar/pkg/gnutls/trunk/files/ csw/mgar/pkg/gnutls/trunk/files/CSWgnutls.gspec Property changes on: csw/mgar/pkg/gnutls/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/gnutls/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnutls/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gnutls/trunk/Makefile 2009-01-15 15:41:20 UTC (rev 2837) @@ -0,0 +1,31 @@ +GARNAME = gnutls +GARVERSION = 2.6.3 +CATEGORIES = lib + +DESCRIPTION = GNU Transport Layer Security lib and tools +define BLURB + GnuTLS is a project that aims to develop a library which provides a + secure layer, over a reliable transport layer. Currently the GnuTLS + library implements the proposed standards by the IETF's TLS working group. +endef + +MASTER_SITES = http://ftp.gnu.org/pub/gnu/gnutls/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWgnutls,) + +SPKG_SOURCEURL = http://www.gnu.org/software/gnutls/ + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 + +REQUIRED_PKGS = + +BUILD64 = 1 +NO_ISAEXEC = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk + Added: csw/mgar/pkg/gnutls/trunk/checksums =================================================================== --- csw/mgar/pkg/gnutls/trunk/checksums (rev 0) +++ csw/mgar/pkg/gnutls/trunk/checksums 2009-01-15 15:41:20 UTC (rev 2837) @@ -0,0 +1,2 @@ +c6d2d1996b87b238ad6f73f92225d9a2 download/gnutls-2.6.3.tar.bz2 +d362175027f696f65f81eca9ee7a5bb1 download/CSWgnutls.gspec Added: csw/mgar/pkg/gnutls/trunk/files/CSWgnutls.gspec =================================================================== --- csw/mgar/pkg/gnutls/trunk/files/CSWgnutls.gspec (rev 0) +++ csw/mgar/pkg/gnutls/trunk/files/CSWgnutls.gspec 2009-01-15 15:41:20 UTC (rev 2837) @@ -0,0 +1,4 @@ +%var bitname gnutls +%var pkgname CSWgnutls +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 15 17:04:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Jan 2009 16:04:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[2838] csw/mgar/pkg Message-ID: Revision: 2838 http://gar.svn.sourceforge.net/gar/?rev=2838&view=rev Author: dmichelsen Date: 2009-01-15 16:04:59 +0000 (Thu, 15 Jan 2009) Log Message: ----------- libtasn1: Initial commit Added Paths: ----------- csw/mgar/pkg/libtasn1/ csw/mgar/pkg/libtasn1/branches/ csw/mgar/pkg/libtasn1/tags/ csw/mgar/pkg/libtasn1/trunk/ csw/mgar/pkg/libtasn1/trunk/Makefile csw/mgar/pkg/libtasn1/trunk/files/ csw/mgar/pkg/libtasn1/trunk/files/CSWlibtasn1.gspec csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff Property changes on: csw/mgar/pkg/libtasn1/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libtasn1/trunk/Makefile =================================================================== --- csw/mgar/pkg/libtasn1/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libtasn1/trunk/Makefile 2009-01-15 16:04:59 UTC (rev 2838) @@ -0,0 +1,31 @@ +GARNAME = libtasn1 +GARVERSION = 1.7 +CATEGORIES = lib + +DESCRIPTION = GNU ASN1 library +define BLURB +endef + +MASTER_SITES = http://ftp.gnu.org/pub/gnu/gnutls/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWlibtasn1,) + +PATCHFILES = patch-stdint.diff + +SPKG_SOURCEURL = http://www.gnu.org/software/gnutls/ + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +REQUIRED_PKGS = + +BUILD64 = 1 +NO_ISAEXEC = 1 + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --disable-static + +TEST_TARGET = check + +include gar/category.mk + Added: csw/mgar/pkg/libtasn1/trunk/files/CSWlibtasn1.gspec =================================================================== --- csw/mgar/pkg/libtasn1/trunk/files/CSWlibtasn1.gspec (rev 0) +++ csw/mgar/pkg/libtasn1/trunk/files/CSWlibtasn1.gspec 2009-01-15 16:04:59 UTC (rev 2838) @@ -0,0 +1,4 @@ +%var bitname libtasn1 +%var pkgname CSWlibtasn1 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff =================================================================== --- csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff (rev 0) +++ csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff 2009-01-15 16:04:59 UTC (rev 2838) @@ -0,0 +1,13 @@ +diff -Naur libtasn1-1.7.orig/lib/int.h libtasn1-1.7.patched/lib/int.h +--- libtasn1-1.7.orig/lib/int.h 2008-11-17 11:06:37.000000000 +0100 ++++ libtasn1-1.7.patched/lib/int.h 2009-01-15 16:58:59.147771102 +0100 +@@ -31,7 +31,9 @@ + #include + #include + #include ++#ifdef HAVE_STDINT_H + #include ++#endif + + #ifdef HAVE_SYS_TYPES_H + # include This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 15 17:05:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 15 Jan 2009 16:05:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[2839] csw/mgar/pkg/libtasn1/trunk/checksums Message-ID: Revision: 2839 http://gar.svn.sourceforge.net/gar/?rev=2839&view=rev Author: dmichelsen Date: 2009-01-15 16:05:27 +0000 (Thu, 15 Jan 2009) Log Message: ----------- libtasn1: Added checksum Added Paths: ----------- csw/mgar/pkg/libtasn1/trunk/checksums Added: csw/mgar/pkg/libtasn1/trunk/checksums =================================================================== --- csw/mgar/pkg/libtasn1/trunk/checksums (rev 0) +++ csw/mgar/pkg/libtasn1/trunk/checksums 2009-01-15 16:05:27 UTC (rev 2839) @@ -0,0 +1,3 @@ +ebfd69b3514d8e8830057f0e9df6a5f9 download/libtasn1-1.7.tar.gz +efdfe199ba7cec7c8c1d86c43a1bc43c download/CSWlibtasn1.gspec +2450dbb3145d4b640e95ddd9515b322e download/patch-stdint.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Thu Jan 15 17:09:10 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 15 Jan 2009 16:09:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[2840] csw/mgar/pkg/pidgin/trunk/ Message-ID: Revision: 2840 http://gar.svn.sourceforge.net/gar/?rev=2840&view=rev Author: harpchad Date: 2009-01-15 16:09:10 +0000 (Thu, 15 Jan 2009) Log Message: ----------- pidgin: changed to gar v2 Property Changed: ---------------- csw/mgar/pkg/pidgin/trunk/ Property changes on: csw/mgar/pkg/pidgin/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Thu Jan 15 17:24:22 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 15 Jan 2009 16:24:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[2841] csw/mgar/pkg/geolitedb/trunk Message-ID: Revision: 2841 http://gar.svn.sourceforge.net/gar/?rev=2841&view=rev Author: bonivart Date: 2009-01-15 16:24:22 +0000 (Thu, 15 Jan 2009) Log Message: ----------- geolitedb: update to 090102 Modified Paths: -------------- csw/mgar/pkg/geolitedb/trunk/Makefile csw/mgar/pkg/geolitedb/trunk/checksums csw/mgar/pkg/geolitedb/trunk/files/CSWgeolitedb.gspec Property Changed: ---------------- csw/mgar/pkg/geolitedb/trunk/ Property changes on: csw/mgar/pkg/geolitedb/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/geolitedb/trunk/Makefile =================================================================== --- csw/mgar/pkg/geolitedb/trunk/Makefile 2009-01-15 16:09:10 UTC (rev 2840) +++ csw/mgar/pkg/geolitedb/trunk/Makefile 2009-01-15 16:24:22 UTC (rev 2841) @@ -1,10 +1,10 @@ GARNAME = geolitedb -GARVERSION = 080901 +GARVERSION = 090102 CATEGORIES = net DESCRIPTION = geolite country database -MASTER_SITES = http://www.maxmind.com/download/geoip/database/ +MASTER_SITES = http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/ DISTFILES = GeoIP.dat.gz DISTFILES += $(call admfiles,CSWgeolitedb) @@ -16,12 +16,12 @@ include gar/category.mk WORKSRC = $(WORKDIR) -SPKG_SOURCEURL = http://www.maxmind.com/download/geoip/database/ +SPKG_SOURCEURL = http://www.maxmind.com/app/geolitecountry/ install-custom: @echo " ==> Installing $(GARNAME)" @ginstall -d $(DESTDIR)/opt/csw/share/GeoIP @ginstall -d $(DESTDIR)/opt/csw/share/doc/geolitedb @cp -r $(WORKSRC)/GeoIP.dat $(DESTDIR)/opt/csw/share/GeoIP/ - @cp -r $(FILEDIR)/CSWgeolitedb.copyright $(DESTDIR)/opt/csw/share/doc/geolitedb/copyright + @cp -r $(FILEDIR)/CSWgeolitedb.copyright $(DESTDIR)/opt/csw/share/doc/geolitedb/LICENSE @$(MAKECOOKIE) Modified: csw/mgar/pkg/geolitedb/trunk/checksums =================================================================== --- csw/mgar/pkg/geolitedb/trunk/checksums 2009-01-15 16:09:10 UTC (rev 2840) +++ csw/mgar/pkg/geolitedb/trunk/checksums 2009-01-15 16:24:22 UTC (rev 2841) @@ -1,2 +1,2 @@ -b0b32846887d8fe0044d605c0155f08b download/GeoIP.dat.gz -825626fbd2d9609e6a2a1ad2aabee4c4 download/CSWgeolitedb.gspec +2a4efeae0f1326a2095aefe4d8428efd download/GeoIP.dat.gz +9b11bd2d3e31bab9229c369e6f9c8bb7 download/CSWgeolitedb.gspec Modified: csw/mgar/pkg/geolitedb/trunk/files/CSWgeolitedb.gspec =================================================================== --- csw/mgar/pkg/geolitedb/trunk/files/CSWgeolitedb.gspec 2009-01-15 16:09:10 UTC (rev 2840) +++ csw/mgar/pkg/geolitedb/trunk/files/CSWgeolitedb.gspec 2009-01-15 16:24:22 UTC (rev 2841) @@ -4,5 +4,5 @@ %include url file://%{PKGLIB}/csw_dyndepend.gspec %copyright -Please see /opt/csw/share/doc/geolitedb/copyright for license information. +Please see /opt/csw/share/doc/geolitedb/LICENSE for license information. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Thu Jan 15 18:33:16 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 15 Jan 2009 17:33:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[2842] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 2842 http://gar.svn.sourceforge.net/gar/?rev=2842&view=rev Author: bonivart Date: 2009-01-15 17:33:16 +0000 (Thu, 15 Jan 2009) Log Message: ----------- cswclassutils: i.cswcpsampleconf and i.cswpreserveconf now copies files in preserve mode Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcpsampleconf csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpreserveconf Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-01-15 16:24:22 UTC (rev 2841) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-01-15 17:33:16 UTC (rev 2842) @@ -1,5 +1,5 @@ GARNAME = cswclassutils -GARVERSION = 1.2 +GARVERSION = 1.3 CATEGORIES = utils DESCRIPTION = CSW class action utilities @@ -15,7 +15,7 @@ include gar/category.mk WORKSRC = $(WORKDIR) -SPKG_SOURCEURL = http://www.opencsw.org/ +SPKG_SOURCEURL = http://www.opencsw.org install-custom: @echo " ==> Installing $(GARNAME) (custom)" Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcpsampleconf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcpsampleconf 2009-01-15 16:24:22 UTC (rev 2841) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcpsampleconf 2009-01-15 17:33:16 UTC (rev 2842) @@ -31,8 +31,9 @@ echo $confdest already exists. Not overwriting else echo Copying sample config to $confdest - cp $dest $confdest + cp -p $dest $confdest fi done echo "" + Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpreserveconf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpreserveconf 2009-01-15 16:24:22 UTC (rev 2841) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswpreserveconf 2009-01-15 17:33:16 UTC (rev 2842) @@ -34,13 +34,14 @@ if [ -f $preservedconf ] ; then echo Restoring $preservedconf - cp $preservedconf $confdest + cp -p $preservedconf $confdest elif [ -f $confdest ] ; then echo $confdest already exists. Not overwriting else echo Copying sample config to $confdest - cp $dest $confdest + cp -p $dest $confdest fi done echo "" + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Thu Jan 15 19:56:51 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 15 Jan 2009 18:56:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[2843] csw/mgar/pkg/libxslt/trunk Message-ID: Revision: 2843 http://gar.svn.sourceforge.net/gar/?rev=2843&view=rev Author: harpchad Date: 2009-01-15 18:56:51 +0000 (Thu, 15 Jan 2009) Log Message: ----------- Split xslt into runtime, devel and python packages Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile csw/mgar/pkg/libxslt/trunk/checksums csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec Added Paths: ----------- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.gspec csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.gspec Removed Paths: ------------- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-15 17:33:16 UTC (rev 2842) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-15 18:56:51 UTC (rev 2843) @@ -3,13 +3,16 @@ CATEGORIES = lib DESCRIPTION = XSLT engine for the XML Toolkit + define BLURB - Libxslt is the XSLT C library developed for the GNOME project. XSLT itself is a an XML language to define transformation for XML. Libxslt is based on libxml2 the XML C library developed for the GNOME project. It also implements most of the EXSLT set of processor-portable extensions functions and some of Saxon's evaluate and expressions extensions. + Libxslt is the XSLT C library developed for the GNOME project. XSLT itself is a an XML language to define transformation for XML. Libxslt is based on libxml2 the XML C library developed for the GNOME project. It also implements most of the EXSLT set of processor-portable extensions functions and some of Saxon's evaluate and expressions extensions. endef MASTER_SITES = ftp://xmlsoft.org/libxslt/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibxslt,prototype) +DISTFILES += $(call admfiles,CSWlibxslt,depend) +DISTFILES += $(call admfiles,CSWlibxsltdevel,depend) +DISTFILES += $(call admfiles,CSWpylibxslt,depend) PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel TEST_TARGET = check @@ -21,6 +24,19 @@ # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES # UPSTREAM_MASTER_SITES = -CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_AGGS_32 = +CONFIGURE_ARGS_64 = --without-python +CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) +BUILD64 = 1 + +NO_ISAEXEC = 1 + +PKGFILES_CSWlibxsltdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibxsltdevel += $(docdir)/libxslt-$(GARVERSION)/.* +PKGFILES_CSWlibxsltdevel += $(libdir)/xsltConf.sh +PKGFILES_CSWlibxsltdevel += $(call isadirs,$(libdir),xsltConf.sh) +PKGFILES_CSWpylibxslt = $(libdir)/python.* +PKGFILES_CSWpylibxslt += $(docdir)/libxslt-python-$(GARVERSION)/.* + include gar/category.mk Modified: csw/mgar/pkg/libxslt/trunk/checksums =================================================================== --- csw/mgar/pkg/libxslt/trunk/checksums 2009-01-15 17:33:16 UTC (rev 2842) +++ csw/mgar/pkg/libxslt/trunk/checksums 2009-01-15 18:56:51 UTC (rev 2843) @@ -1,3 +1,7 @@ -6faa1f60fc8e905aefbe24f6ea730c4a download/CSWlibxslt.gspec -c736ebf9711567b6c338f6f216cce7b2 download/CSWlibxslt.prototype +321a752ab4d8d4c7af816bac60aa609c download/CSWlibxslt.depend +01dba7c998bd516e5c6845d5babe3d21 download/CSWlibxslt.gspec +9b502d9743485d93545c3f1f6049ffac download/CSWlibxsltdevel.depend +9d6a28c9ac7dea73ae95423e2f431fcd download/CSWlibxsltdevel.gspec +d9a00b510065957c95c3334339b163e0 download/CSWpylibxslt.depend +1fb5e9ee1b80283247e56231713082e0 download/CSWpylibxslt.gspec e83ec5d27fc4c10c6f612879bea9a153 download/libxslt-1.1.24.tar.gz Added: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend 2009-01-15 18:56:51 UTC (rev 2843) @@ -0,0 +1,5 @@ +P CSWgcrypt libgcrypt - GNU libgcrypt +P CSWgpgerr libgpg_error - GNU gpg related library +P CSWiconv libiconv - GNU iconv library +P CSWlibxml2 libxml2 - XML Parser Library +P CSWzlib zlib - Zlib Data Compression Library Modified: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec 2009-01-15 17:33:16 UTC (rev 2842) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.gspec 2009-01-15 18:56:51 UTC (rev 2843) @@ -1,4 +1,4 @@ %var bitname libxslt %var pkgname CSWlibxslt %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype 2009-01-15 17:33:16 UTC (rev 2842) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.prototype 2009-01-15 18:56:51 UTC (rev 2843) @@ -1,161 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/xslt-config 0755 root bin -f none /opt/csw/bin/xsltproc 0755 root bin -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/libexslt 0755 root bin -f none /opt/csw/include/libexslt/exslt.h 0644 root bin -f none /opt/csw/include/libexslt/exsltconfig.h 0644 root bin -f none /opt/csw/include/libexslt/exsltexports.h 0644 root bin -d none /opt/csw/include/libxslt 0755 root bin -f none /opt/csw/include/libxslt/attributes.h 0644 root bin -f none /opt/csw/include/libxslt/documents.h 0644 root bin -f none /opt/csw/include/libxslt/extensions.h 0644 root bin -f none /opt/csw/include/libxslt/extra.h 0644 root bin -f none /opt/csw/include/libxslt/functions.h 0644 root bin -f none /opt/csw/include/libxslt/imports.h 0644 root bin -f none /opt/csw/include/libxslt/keys.h 0644 root bin -f none /opt/csw/include/libxslt/namespaces.h 0644 root bin -f none /opt/csw/include/libxslt/numbersInternals.h 0644 root bin -f none /opt/csw/include/libxslt/pattern.h 0644 root bin -f none /opt/csw/include/libxslt/preproc.h 0644 root bin -f none /opt/csw/include/libxslt/security.h 0644 root bin -f none /opt/csw/include/libxslt/templates.h 0644 root bin -f none /opt/csw/include/libxslt/transform.h 0644 root bin -f none /opt/csw/include/libxslt/variables.h 0644 root bin -f none /opt/csw/include/libxslt/xslt.h 0644 root bin -f none /opt/csw/include/libxslt/xsltInternals.h 0644 root bin -f none /opt/csw/include/libxslt/xsltconfig.h 0644 root bin -f none /opt/csw/include/libxslt/xsltexports.h 0644 root bin -f none /opt/csw/include/libxslt/xsltutils.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libexslt.a 0644 root bin -f none /opt/csw/lib/libexslt.so.0.8.13 0755 root bin -s none /opt/csw/lib/libexslt.so.0=libexslt.so.0.8.13 -s none /opt/csw/lib/libexslt.so=libexslt.so.0.8.13 -d none /opt/csw/lib/libxslt-plugins 0755 root bin -f none /opt/csw/lib/libxslt.a 0644 root bin -f none /opt/csw/lib/libxslt.so.1.1.24 0755 root bin -s none /opt/csw/lib/libxslt.so.1=libxslt.so.1.1.24 -s none /opt/csw/lib/libxslt.so=libxslt.so.1.1.24 -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/libexslt.pc 0644 root bin -f none /opt/csw/lib/pkgconfig/libxslt.pc 0644 root bin -d none /opt/csw/lib/python2.5 0755 root bin -d none /opt/csw/lib/python2.5/site-packages 0755 root bin -f none /opt/csw/lib/python2.5/site-packages/libxslt.py 0644 root bin -f none /opt/csw/lib/python2.5/site-packages/libxsltmod.a 0644 root bin -f none /opt/csw/lib/python2.5/site-packages/libxsltmod.so 0755 root bin -f none /opt/csw/lib/xsltConf.sh 0644 root bin -d none /opt/csw/share/aclocal 0755 root bin -f none /opt/csw/share/aclocal/libxslt.m4 0644 root bin -d none /opt/csw/share/doc 0755 root bin -d none /opt/csw/share/doc/libxslt-1.1.24 0755 root bin -d none /opt/csw/share/doc/libxslt-1.1.24/html 0755 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/API.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk0.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk1.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk10.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk11.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk12.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk13.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk2.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk3.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk4.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk5.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk6.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk7.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk8.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIchunk9.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIconstructors.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIfiles.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIfunctions.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/APIsymbols.html 0644 root bin -d none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT 0755 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIchunk0.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIconstructors.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIfiles.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIfunctions.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/APIsymbols.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/bugs.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/docs.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/downloads.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/exslt.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/help.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/index.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/EXSLT/intro.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/FAQ.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/Libxslt-Logo-180x168.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/Libxslt-Logo-90x34.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/bugs.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/contexts.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/contribs.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/docbook.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/docs.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/downloads.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/extensions.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/help.html 0644 root bin -d none /opt/csw/share/doc/libxslt-1.1.24/html/html 0755 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/book1.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/home.png 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/index.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/left.png 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-attributes.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-documents.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-extensions.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-extra.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-functions.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-imports.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-keys.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-lib.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-namespaces.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-numbersInternals.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-pattern.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-preproc.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-security.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-templates.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-transform.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-variables.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xslt.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xsltInternals.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xsltexports.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/libxslt-xsltutils.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/right.png 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/html/up.png 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/index.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/internals.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/intro.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/news.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/node.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/object.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/processing.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/python.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/redhat.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/smallfootonly.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/stylesheet.gif 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/templates.gif 0644 root bin -d none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial 0755 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial/libxslt_tutorial.c 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial/libxslttutorial.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial/libxslttutorial.xml 0644 root bin -d none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2 0755 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2/libxslt_pipes.c 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2/libxslt_pipes.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/tutorial2/libxslt_pipes.xml 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/xslt.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/xsltproc.html 0644 root bin -f none /opt/csw/share/doc/libxslt-1.1.24/html/xsltproc2.html 0644 root bin -d none /opt/csw/share/doc/libxslt-python-1.1.24 0755 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/TODO 0644 root bin -d none /opt/csw/share/doc/libxslt-python-1.1.24/examples 0755 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/basic.py 0644 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/exslt.py 0644 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/extelem.py 0644 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/extfunc.py 0644 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/pyxsltproc.py 0644 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/test.xml 0644 root bin -f none /opt/csw/share/doc/libxslt-python-1.1.24/examples/test.xsl 0644 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/xsltproc.1 0644 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/libexslt.3 0644 root bin -f none /opt/csw/share/man/man3/libxslt.3 0644 root bin Added: csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend 2009-01-15 18:56:51 UTC (rev 2843) @@ -0,0 +1 @@ +P CSWlibxslt libxslt - XSLT engine for the XML Toolkit Added: csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.gspec =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.gspec (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.gspec 2009-01-15 18:56:51 UTC (rev 2843) @@ -0,0 +1,4 @@ +%var bitname libxslt_devel +%var pkgname CSWlibxsltdevel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend 2009-01-15 18:56:51 UTC (rev 2843) @@ -0,0 +1,2 @@ +P CSWlibxslt libxslt - XSLT engine for the XML Toolkit +P CSWpython python - A high-level scripting language. Added: csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.gspec =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.gspec (rev 0) +++ csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.gspec 2009-01-15 18:56:51 UTC (rev 2843) @@ -0,0 +1,4 @@ +%var bitname pylibxslt +%var pkgname CSWpylibxslt +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 16 11:59:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Jan 2009 10:59:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2844] csw/mgar/gar/v2/gar.svn.mk Message-ID: Revision: 2844 http://gar.svn.sourceforge.net/gar/?rev=2844&view=rev Author: dmichelsen Date: 2009-01-16 10:59:13 +0000 (Fri, 16 Jan 2009) Log Message: ----------- mGAR v2: Add target scm-tag-release Modified Paths: -------------- csw/mgar/gar/v2/gar.svn.mk Modified: csw/mgar/gar/v2/gar.svn.mk =================================================================== --- csw/mgar/gar/v2/gar.svn.mk 2009-01-15 18:56:51 UTC (rev 2843) +++ csw/mgar/gar/v2/gar.svn.mk 2009-01-16 10:59:13 UTC (rev 2844) @@ -26,4 +26,7 @@ scm-update-ignores: $(GARDIR)/bin/svnignore work cookies download -.PHONY: scm-help scm-update-all scm-update-package scm-update-gar +scm-tag-release: + $(SVN) cp ../trunk ../tags/$(GARNAME)-$(GARVERSION)$(SPKG_REVSTAMP) + +.PHONY: scm-help scm-update-all scm-update-package scm-update-gar scm-update-ignores scm-tag-release This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 16 12:24:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Jan 2009 11:24:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[2845] csw/mgar/pkg/readline/trunk/Makefile Message-ID: Revision: 2845 http://gar.svn.sourceforge.net/gar/?rev=2845&view=rev Author: dmichelsen Date: 2009-01-16 11:24:51 +0000 (Fri, 16 Jan 2009) Log Message: ----------- readline: Add explicit dependency on ncurses. This should fix bug [ 2984 ] Modified Paths: -------------- csw/mgar/pkg/readline/trunk/Makefile Modified: csw/mgar/pkg/readline/trunk/Makefile =================================================================== --- csw/mgar/pkg/readline/trunk/Makefile 2009-01-16 10:59:13 UTC (rev 2844) +++ csw/mgar/pkg/readline/trunk/Makefile 2009-01-16 11:24:51 UTC (rev 2845) @@ -55,4 +55,4 @@ @chmod 555 $(DESTDIR)$(libdir)/libhistory.* @chmod 555 $(DESTDIR)$(libdir)/libreadline.* -LDFLAGS := $(filter-out -xarch=%,$(filter-out -m%,$(LDFLAGS))) +LDFLAGS := $(filter-out -xarch=%,$(filter-out -m%,$(LDFLAGS))) -R$(libdir) -lncurses This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Jan 16 14:07:10 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 16 Jan 2009 13:07:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[2846] csw/mgar/pkg/libtasn1/trunk Message-ID: Revision: 2846 http://gar.svn.sourceforge.net/gar/?rev=2846&view=rev Author: dmichelsen Date: 2009-01-16 13:07:09 +0000 (Fri, 16 Jan 2009) Log Message: ----------- libtasn1: Move to preliminiary 1.8 Modified Paths: -------------- csw/mgar/pkg/libtasn1/trunk/Makefile csw/mgar/pkg/libtasn1/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff Modified: csw/mgar/pkg/libtasn1/trunk/Makefile =================================================================== --- csw/mgar/pkg/libtasn1/trunk/Makefile 2009-01-16 11:24:51 UTC (rev 2845) +++ csw/mgar/pkg/libtasn1/trunk/Makefile 2009-01-16 13:07:09 UTC (rev 2846) @@ -1,5 +1,5 @@ GARNAME = libtasn1 -GARVERSION = 1.7 +GARVERSION = 1.8 CATEGORIES = lib DESCRIPTION = GNU ASN1 library @@ -7,11 +7,10 @@ endef MASTER_SITES = http://ftp.gnu.org/pub/gnu/gnutls/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-1-20090116.tar.gz DISTFILES += $(call admfiles,CSWlibtasn1,) -PATCHFILES = patch-stdint.diff - SPKG_SOURCEURL = http://www.gnu.org/software/gnutls/ # We define upstream file regex so we can be notifed of new upstream software release Modified: csw/mgar/pkg/libtasn1/trunk/checksums =================================================================== --- csw/mgar/pkg/libtasn1/trunk/checksums 2009-01-16 11:24:51 UTC (rev 2845) +++ csw/mgar/pkg/libtasn1/trunk/checksums 2009-01-16 13:07:09 UTC (rev 2846) @@ -1,3 +1,2 @@ -ebfd69b3514d8e8830057f0e9df6a5f9 download/libtasn1-1.7.tar.gz +cd6fa14e1ae5e422edcd154c26d6c923 download/libtasn1-1-20090116.tar.gz efdfe199ba7cec7c8c1d86c43a1bc43c download/CSWlibtasn1.gspec -2450dbb3145d4b640e95ddd9515b322e download/patch-stdint.diff Deleted: csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff =================================================================== --- csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff 2009-01-16 11:24:51 UTC (rev 2845) +++ csw/mgar/pkg/libtasn1/trunk/files/patch-stdint.diff 2009-01-16 13:07:09 UTC (rev 2846) @@ -1,13 +0,0 @@ -diff -Naur libtasn1-1.7.orig/lib/int.h libtasn1-1.7.patched/lib/int.h ---- libtasn1-1.7.orig/lib/int.h 2008-11-17 11:06:37.000000000 +0100 -+++ libtasn1-1.7.patched/lib/int.h 2009-01-15 16:58:59.147771102 +0100 -@@ -31,7 +31,9 @@ - #include - #include - #include -+#ifdef HAVE_STDINT_H - #include -+#endif - - #ifdef HAVE_SYS_TYPES_H - # include This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Fri Jan 16 17:06:04 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 16 Jan 2009 16:06:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2847] csw/mgar/pkg/dcc/trunk/Makefile Message-ID: Revision: 2847 http://gar.svn.sourceforge.net/gar/?rev=2847&view=rev Author: bonivart Date: 2009-01-16 16:06:04 +0000 (Fri, 16 Jan 2009) Log Message: ----------- dcc: Makefile update Modified Paths: -------------- csw/mgar/pkg/dcc/trunk/Makefile Modified: csw/mgar/pkg/dcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/dcc/trunk/Makefile 2009-01-16 13:07:09 UTC (rev 2846) +++ csw/mgar/pkg/dcc/trunk/Makefile 2009-01-16 16:06:04 UTC (rev 2847) @@ -19,7 +19,8 @@ CONFIGURE_ARGS += --mandir=/opt/csw/share/man CONFIGURE_ARGS += --with-installroot=$(DESTDIR) CONFIGURE_ARGS += --with-DCC-MD5 -CONFIGURE_ARGS += --with-uid=bonivart +#CONFIGURE_ARGS += --with-uid=bonivart +CONFIGURE_ARGS += --with-uid=dcc #CONFIGURE_ARGS += --with-cgibin=/var/opt/csw/dcc/cgi-bin CONFIGURE_ARGS += --with-cgibin=/opt/csw/dcc/cgi-bin CONFIGURE_ARGS += --with-rundir=/var/opt/csw/dcc/run @@ -34,7 +35,7 @@ SPKG_SOURCEURL = http://www.rhyolite.com/dcc/ REQUIRED_PKGS = CSWcswclassutils SPKG_CLASSES = none cswcpsampleconf -CONFFILES = dcc_conf flod grey_flod grey_whitelist ids map map.txt whiteclnt whitecommon whitelist +CONFFILES = dcc_conf flod grey_flod grey_whitelist ids map.txt whiteclnt whitecommon whitelist DOCFILES = CHANGES FAQ.txt INSTALL.txt LICENSE RESTRICTIONS misc/README misc/dcc.m4 misc/dccdnsbl.m4 misc/site.config.m4 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Fri Jan 16 17:45:23 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 16 Jan 2009 16:45:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[2848] csw/mgar/pkg/dcc/trunk/Makefile Message-ID: Revision: 2848 http://gar.svn.sourceforge.net/gar/?rev=2848&view=rev Author: bonivart Date: 2009-01-16 16:45:22 +0000 (Fri, 16 Jan 2009) Log Message: ----------- dcc: uid fix Modified Paths: -------------- csw/mgar/pkg/dcc/trunk/Makefile Modified: csw/mgar/pkg/dcc/trunk/Makefile =================================================================== --- csw/mgar/pkg/dcc/trunk/Makefile 2009-01-16 16:06:04 UTC (rev 2847) +++ csw/mgar/pkg/dcc/trunk/Makefile 2009-01-16 16:45:22 UTC (rev 2848) @@ -19,8 +19,7 @@ CONFIGURE_ARGS += --mandir=/opt/csw/share/man CONFIGURE_ARGS += --with-installroot=$(DESTDIR) CONFIGURE_ARGS += --with-DCC-MD5 -#CONFIGURE_ARGS += --with-uid=bonivart -CONFIGURE_ARGS += --with-uid=dcc +CONFIGURE_ARGS += --with-uid=bonivart #CONFIGURE_ARGS += --with-cgibin=/var/opt/csw/dcc/cgi-bin CONFIGURE_ARGS += --with-cgibin=/opt/csw/dcc/cgi-bin CONFIGURE_ARGS += --with-rundir=/var/opt/csw/dcc/run @@ -51,6 +50,9 @@ mv tmp.sed Makefile ; \ cd .. ; \ gmake install ) + @( cd $(DESTDIR)/var/opt/csw/$(GARNAME) ; \ + sed 's/bonivart/dcc/' dcc_conf > tmp.sed ; \ + mv tmp.sed dcc_conf ) @$(foreach FILE, $(CONFFILES), mv $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE) $(DESTDIR)/var/opt/csw/$(GARNAME)/$(FILE).CSW ;) @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME)/misc @$(foreach FILE, $(DOCFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(docdir)/$(GARNAME)/$(FILE) ;) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sat Jan 17 19:08:00 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sat, 17 Jan 2009 18:08:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[2849] csw/mgar/pkg/cpan Message-ID: Revision: 2849 http://gar.svn.sourceforge.net/gar/?rev=2849&view=rev Author: bonivart Date: 2009-01-17 18:08:00 +0000 (Sat, 17 Jan 2009) Log Message: ----------- WWW-Curl: first commit Added Paths: ----------- csw/mgar/pkg/cpan/WWW-Curl/ csw/mgar/pkg/cpan/WWW-Curl/branches/ csw/mgar/pkg/cpan/WWW-Curl/tags/ csw/mgar/pkg/cpan/WWW-Curl/trunk/ csw/mgar/pkg/cpan/WWW-Curl/trunk/Makefile csw/mgar/pkg/cpan/WWW-Curl/trunk/checksums csw/mgar/pkg/cpan/WWW-Curl/trunk/files/ csw/mgar/pkg/cpan/WWW-Curl/trunk/files/CSWpmwwwcurl.gspec Property changes on: csw/mgar/pkg/cpan/WWW-Curl/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/WWW-Curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/WWW-Curl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/WWW-Curl/trunk/Makefile 2009-01-17 18:08:00 UTC (rev 2849) @@ -0,0 +1,22 @@ +GARNAME = WWW-Curl +GARVERSION = 4.05 +CATEGORIES = cpan +AUTHOR = SZBALINT + +DESCRIPTION = Perl extension interface for libcurl +define BLURB + The perl module WWW::Curl provides an interface to the cURL library "libcurl". +endef + +DISTFILES += $(call admfiles,CSWpmwwwcurl,) + +REQUIRED_PKGS = CSWcurlrt CSWlibidn CSWoldaprt CSWosslrt CSWzlib + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + +#CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS = + +TEST_SCRIPTS = + +include gar/category.mk Added: csw/mgar/pkg/cpan/WWW-Curl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/WWW-Curl/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/WWW-Curl/trunk/checksums 2009-01-17 18:08:00 UTC (rev 2849) @@ -0,0 +1,2 @@ +bd5fcf77cda277c8d7b8d81f39e02308 download/CSWpmwwwcurl.gspec +a49d09edc7491d9d8abec3ef79799853 download/WWW-Curl-4.05.tar.gz Added: csw/mgar/pkg/cpan/WWW-Curl/trunk/files/CSWpmwwwcurl.gspec =================================================================== --- csw/mgar/pkg/cpan/WWW-Curl/trunk/files/CSWpmwwwcurl.gspec (rev 0) +++ csw/mgar/pkg/cpan/WWW-Curl/trunk/files/CSWpmwwwcurl.gspec 2009-01-17 18:08:00 UTC (rev 2849) @@ -0,0 +1,9 @@ +%var bitname pm_wwwcurl +%var pkgname CSWpmwwwcurl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +You may opt to use, copy, modify, merge, publish, distribute and/or sell +copies of the Software, and permit persons to whom the Software is furnished +to do so, under the terms of the MPL or the MIT/X-derivate licenses. You may +pick one of these licenses. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 18 16:40:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 15:40:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[2850] csw/mgar/pkg Message-ID: Revision: 2850 http://gar.svn.sourceforge.net/gar/?rev=2850&view=rev Author: dmichelsen Date: 2009-01-18 15:40:56 +0000 (Sun, 18 Jan 2009) Log Message: ----------- libassuan: Initial commit Added Paths: ----------- csw/mgar/pkg/libassuan/ csw/mgar/pkg/libassuan/branches/ csw/mgar/pkg/libassuan/tags/ csw/mgar/pkg/libassuan/trunk/ csw/mgar/pkg/libassuan/trunk/Makefile csw/mgar/pkg/libassuan/trunk/checksums csw/mgar/pkg/libassuan/trunk/files/ csw/mgar/pkg/libassuan/trunk/files/CSWlibassuan.gspec Property changes on: csw/mgar/pkg/libassuan/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libassuan/trunk/Makefile =================================================================== --- csw/mgar/pkg/libassuan/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libassuan/trunk/Makefile 2009-01-18 15:40:56 UTC (rev 2850) @@ -0,0 +1,29 @@ +GARNAME = libassuan +GARVERSION = 1.0.5 +CATEGORIES = lib + +DESCRIPTION = IPC library used by some GnuPG related software +define BLURB +endef + +MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/libassuan/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWlibassuan,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 + +BUILD64 = 1 +NO_ISAEXEC = 1 + +EXTRA_LDFLAGS = -lrt -lsocket -lnsl + +CONFIGURE_ARGS = $(DIRPATHS) + +# We must include static libs here as libassuan contains *only* +# static libs +MERGE_EXCLUDE_STATICLIBS = + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/libassuan/trunk/checksums =================================================================== --- csw/mgar/pkg/libassuan/trunk/checksums (rev 0) +++ csw/mgar/pkg/libassuan/trunk/checksums 2009-01-18 15:40:56 UTC (rev 2850) @@ -0,0 +1,2 @@ +c2db0974fcce4401f48f3fa41c4edc5a download/libassuan-1.0.5.tar.bz2 +c424181532045b5760d087e58cc1c935 download/CSWlibassuan.gspec Added: csw/mgar/pkg/libassuan/trunk/files/CSWlibassuan.gspec =================================================================== --- csw/mgar/pkg/libassuan/trunk/files/CSWlibassuan.gspec (rev 0) +++ csw/mgar/pkg/libassuan/trunk/files/CSWlibassuan.gspec 2009-01-18 15:40:56 UTC (rev 2850) @@ -0,0 +1,4 @@ +%var bitname libassuan +%var pkgname CSWlibassuan +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 18 17:15:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 16:15:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[2851] csw/mgar/pkg/pth/trunk Message-ID: Revision: 2851 http://gar.svn.sourceforge.net/gar/?rev=2851&view=rev Author: dmichelsen Date: 2009-01-18 16:15:04 +0000 (Sun, 18 Jan 2009) Log Message: ----------- pth: Move to mGAR v2, add 64 bit support Modified Paths: -------------- csw/mgar/pkg/pth/trunk/Makefile csw/mgar/pkg/pth/trunk/checksums csw/mgar/pkg/pth/trunk/files/CSWpth.gspec Property Changed: ---------------- csw/mgar/pkg/pth/trunk/ Property changes on: csw/mgar/pkg/pth/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/pth/trunk/Makefile =================================================================== --- csw/mgar/pkg/pth/trunk/Makefile 2009-01-18 15:40:56 UTC (rev 2850) +++ csw/mgar/pkg/pth/trunk/Makefile 2009-01-18 16:15:04 UTC (rev 2851) @@ -16,8 +16,14 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +BUILD64 = 1 +NO_ISAEXEC = 1 + CONFIGURE_ARGS = $(DIRPATHS) +# Add static libs as under Solaris 7/8 x86 shared libpth doesn't work correctly. +MERGE_EXCLUDE_STATICLIBS = + include gar/category.mk # No shared libraries on Solaris 7/8 x86: Modified: csw/mgar/pkg/pth/trunk/checksums =================================================================== --- csw/mgar/pkg/pth/trunk/checksums 2009-01-18 15:40:56 UTC (rev 2850) +++ csw/mgar/pkg/pth/trunk/checksums 2009-01-18 16:15:04 UTC (rev 2851) @@ -1,2 +1,2 @@ 9cb4a25331a4c4db866a31cbe507c793 download/pth-2.0.7.tar.gz -c224e7c168a2510e477113a09e055103 download/CSWpth.gspec +0969fbb8ae032c8c1a08ff1c839a8c1c download/CSWpth.gspec Modified: csw/mgar/pkg/pth/trunk/files/CSWpth.gspec =================================================================== --- csw/mgar/pkg/pth/trunk/files/CSWpth.gspec 2009-01-18 15:40:56 UTC (rev 2850) +++ csw/mgar/pkg/pth/trunk/files/CSWpth.gspec 2009-01-18 16:15:04 UTC (rev 2851) @@ -1,4 +1,4 @@ %var bitname pth %var pkgname CSWpth %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sun Jan 18 18:17:43 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 18 Jan 2009 17:17:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2852] csw/mgar/pkg Message-ID: Revision: 2852 http://gar.svn.sourceforge.net/gar/?rev=2852&view=rev Author: bonivart Date: 2009-01-18 17:17:42 +0000 (Sun, 18 Jan 2009) Log Message: ----------- botnet: first commit Added Paths: ----------- csw/mgar/pkg/botnet/ csw/mgar/pkg/botnet/branches/ csw/mgar/pkg/botnet/tags/ csw/mgar/pkg/botnet/trunk/ csw/mgar/pkg/botnet/trunk/Makefile csw/mgar/pkg/botnet/trunk/checksums csw/mgar/pkg/botnet/trunk/files/ csw/mgar/pkg/botnet/trunk/files/CSWbotnet.gspec Property changes on: csw/mgar/pkg/botnet/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/botnet/trunk/Makefile =================================================================== --- csw/mgar/pkg/botnet/trunk/Makefile (rev 0) +++ csw/mgar/pkg/botnet/trunk/Makefile 2009-01-18 17:17:42 UTC (rev 2852) @@ -0,0 +1,51 @@ +GARNAME = botnet +GARVERSION = 0.8 +CATEGORIES = net + +DESCRIPTION = Botnet detector plugin for SpamAssassin +define BLURB + Botnet looks for possible botnet sources of email by checking + various DNS values that indicate things such as other ISP's clients or + workstations, or misconfigured DNS settings that are more likely to + happen with client or workstation addresses than servers. +endef + +MASTER_SITES = http://people.ucsc.edu/~jrudd/spamassassin/ +DISTFILES = Botnet-$(GARVERSION).tar +DISTFILES += $(call admfiles,CSWbotnet,) + +SPKG_DESC_CSWspamassassin = mail filter with a wide range of tests +REQUIRED_PKGS = CSWspamassassin CSWcswclassutils + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar + +SPKG_CLASSES = none cswcpsampleconf + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +#ENABLE_CHECK = 0 + +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/Botnet.cf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' + +include gar/category.mk + +WORKSRC = $(WORKDIR) +MAINFILES = Botnet.pm Botnet.cf.CSW +DOCFILES = Botnet.api.txt Botnet.credits.txt Botnet.txt Botnet.variants.txt INSTALL + +install-custom: + @echo " ==> Installing $(GARNAME) (custom)" + @mv $(WORKSRC)/Botnet.cf $(WORKSRC)/Botnet.cf.CSW + @rm -rf $(DESTDIR) + @ginstall -d $(DESTDIR)$(bindir) + @cp $(WORKSRC)/Botnet.pl $(DESTDIR)$(bindir) + @ginstall -d $(DESTDIR)$(sysconfdir)/mail/spamassassin + @$(foreach FILE, $(MAINFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(sysconfdir)/mail/spamassassin ;) + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + @$(foreach FILE, $(DOCFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(docdir)/$(GARNAME) ;) + @cp -r $(WORKSRC)/COPYING $(DESTDIR)$(docdir)/$(GARNAME)/LICENSE + @$(MAKECOOKIE) Added: csw/mgar/pkg/botnet/trunk/checksums =================================================================== --- csw/mgar/pkg/botnet/trunk/checksums (rev 0) +++ csw/mgar/pkg/botnet/trunk/checksums 2009-01-18 17:17:42 UTC (rev 2852) @@ -0,0 +1,2 @@ +1bf1b358e7b1802c2ac15ca6bb084621 download/Botnet-0.8.tar +2ff988f4d47eba1da4cd3d28a37664c3 download/CSWbotnet.gspec Added: csw/mgar/pkg/botnet/trunk/files/CSWbotnet.gspec =================================================================== --- csw/mgar/pkg/botnet/trunk/files/CSWbotnet.gspec (rev 0) +++ csw/mgar/pkg/botnet/trunk/files/CSWbotnet.gspec 2009-01-18 17:17:42 UTC (rev 2852) @@ -0,0 +1,8 @@ +%var bitname botnet +%var pkgname CSWbotnet +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +Please see /opt/csw/share/doc/botnet/LICENSE for license information + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 18 20:58:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 19:58:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2853] csw/mgar/gar/v2 Message-ID: Revision: 2853 http://gar.svn.sourceforge.net/gar/?rev=2853&view=rev Author: dmichelsen Date: 2009-01-18 19:58:32 +0000 (Sun, 18 Jan 2009) Log Message: ----------- mGAR v2: Skip perllocal.pod and .packlist by default for category 'cpan' Modified Paths: -------------- csw/mgar/gar/v2/categories/cpan/category.mk csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/categories/cpan/category.mk =================================================================== --- csw/mgar/gar/v2/categories/cpan/category.mk 2009-01-18 17:17:42 UTC (rev 2852) +++ csw/mgar/gar/v2/categories/cpan/category.mk 2009-01-18 19:58:32 UTC (rev 2853) @@ -33,6 +33,8 @@ SPKG_SOURCEURL := $(SPKG_SOURCEURL)/$(GARNAME) +_MERGE_EXCLUDE_CATEGORY = .*/perllocal\.pod .*/\.packlist + include gar/gar.mk # Canned commands for finding packlist files Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-01-18 17:17:42 UTC (rev 2852) +++ csw/mgar/gar/v2/gar.mk 2009-01-18 19:58:32 UTC (rev 2853) @@ -519,11 +519,14 @@ endif _MERGE_INCLUDE_FILES += $(EXTRA_MERGE_INCLUDE_FILES) $(EXTRA_MERGE_INCLUDE_FILES_$(MODULATION)) +# This can be defined in category.mk +MERGE_EXCLUDE_CATEGORY ?= $(_MERGE_EXCLUDE_CATEGORY) + MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la MERGE_EXCLUDE_BACKUPFILES ?= .*\~ MERGE_EXCLUDE_STATICLIBS ?= $(libdir)/.*\.a -MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) +MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) # Exclude these files ifeq ($(origin MERGE_EXCLUDE_FILES_$(MODULATION)), undefined) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 18 21:20:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 20:20:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[2854] csw/mgar/pkg/cpan Message-ID: Revision: 2854 http://gar.svn.sourceforge.net/gar/?rev=2854&view=rev Author: dmichelsen Date: 2009-01-18 20:20:41 +0000 (Sun, 18 Jan 2009) Log Message: ----------- Date-Manip: Update to 5.54 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile csw/mgar/pkg/cpan/Date-Manip/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Date-Manip/ Property Changed: ---------------- csw/mgar/pkg/cpan/Date-Manip/trunk/ Property changes on: csw/mgar/pkg/cpan/Date-Manip/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateManip/trunk/Makefile 2009-01-13 17:58:43 UTC (rev 2815) +++ csw/mgar/pkg/cpan/Date-Manip/trunk/Makefile 2009-01-18 20:20:41 UTC (rev 2854) @@ -1,5 +1,5 @@ GARNAME = Date-Manip -GARVERSION = 5.46 +GARVERSION = 5.54 CATEGORIES = cpan AUTHOR = SBECK Modified: csw/mgar/pkg/cpan/Date-Manip/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateManip/trunk/checksums 2009-01-13 17:58:43 UTC (rev 2815) +++ csw/mgar/pkg/cpan/Date-Manip/trunk/checksums 2009-01-18 20:20:41 UTC (rev 2854) @@ -1,2 +1,2 @@ 5331314d9f9f66b0c88c6643159a8657 download/CSWpmdatemanip.gspec -0390c9ee051794d93e48f29b3115c300 download/DateManip-5.46.tar.gz +16c343329bad644b17f4f8ec5fb243cf download/Date-Manip-5.54.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 18 21:44:58 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 20:44:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[2855] csw/mgar/pkg Message-ID: Revision: 2855 http://gar.svn.sourceforge.net/gar/?rev=2855&view=rev Author: dmichelsen Date: 2009-01-18 20:44:58 +0000 (Sun, 18 Jan 2009) Log Message: ----------- gpgme: Initial commit Added Paths: ----------- csw/mgar/pkg/gpgme/ csw/mgar/pkg/gpgme/branches/ csw/mgar/pkg/gpgme/tags/ csw/mgar/pkg/gpgme/trunk/ csw/mgar/pkg/gpgme/trunk/Makefile csw/mgar/pkg/gpgme/trunk/checksums csw/mgar/pkg/gpgme/trunk/files/ csw/mgar/pkg/gpgme/trunk/files/CSWgpgme.gspec Property changes on: csw/mgar/pkg/gpgme/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/gpgme/trunk/Makefile =================================================================== --- csw/mgar/pkg/gpgme/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gpgme/trunk/Makefile 2009-01-18 20:44:58 UTC (rev 2855) @@ -0,0 +1,29 @@ +GARNAME = gpgme +GARVERSION = 1.1.8 +CATEGORIES = apps + +DESCRIPTION = GPGME - GnuPG Made Easy +define BLURB + GPGME (GnuPG Made Easy) is a C language library that allows to add support + for cryptography to a program. It is designed to make access to public key + crypto engines like GnuPG or GpgSM easier for applications. GPGME provides + a high-level crypto API for encryption, decryption, signing, signature + verification and key management. +endef + +MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/gpgme/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWgpgme,) + +SPKG_SOURCEURL = http://www.gnupg.org/related_software/libraries.en.html#lib-GPGME + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 + +REQUIRED_PKGS = CSWgpgerr CSWpth + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/gpgme/trunk/checksums =================================================================== --- csw/mgar/pkg/gpgme/trunk/checksums (rev 0) +++ csw/mgar/pkg/gpgme/trunk/checksums 2009-01-18 20:44:58 UTC (rev 2855) @@ -0,0 +1,2 @@ +39bd929d5f3dc6d3d91cf465ec91b4af download/gpgme-1.1.8.tar.bz2 +26a005ef4b0f216b9cf6ff0b4237d523 download/CSWgpgme.gspec Added: csw/mgar/pkg/gpgme/trunk/files/CSWgpgme.gspec =================================================================== --- csw/mgar/pkg/gpgme/trunk/files/CSWgpgme.gspec (rev 0) +++ csw/mgar/pkg/gpgme/trunk/files/CSWgpgme.gspec 2009-01-18 20:44:58 UTC (rev 2855) @@ -0,0 +1,4 @@ +%var bitname gpgme +%var pkgname CSWgpgme +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jan 18 21:59:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 20:59:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[2856] csw/mgar/pkg/gnupg/trunk Message-ID: Revision: 2856 http://gar.svn.sourceforge.net/gar/?rev=2856&view=rev Author: dmichelsen Date: 2009-01-18 20:59:05 +0000 (Sun, 18 Jan 2009) Log Message: ----------- gnupg: Update to 2.0.10, wait until libassuan has been released Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile csw/mgar/pkg/gnupg/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.depend csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.prototype Property Changed: ---------------- csw/mgar/pkg/gnupg/trunk/ Property changes on: csw/mgar/pkg/gnupg/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-01-18 20:44:58 UTC (rev 2855) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-01-18 20:59:05 UTC (rev 2856) @@ -1,5 +1,5 @@ GARNAME = gnupg -GARVERSION = 1.4.9 +GARVERSION = 2.0.10 CATEGORIES = apps DESCRIPTION = RFC 2440 compliant tool for secure communication and data storage @@ -7,17 +7,15 @@ GnuPG is a complete and free replacement for PGP. endef -MASTER_SITES = http://www.gnupg.org/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWgnupg, depend prototype) +MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/gnupg/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWgnupg,) +SPKG_SOURCEURL = http://www.gnupg.org/ + # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 -# If the url used to check for software update is different of MASTER_SITES, then -# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES -UPSTREAM_MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/gnupg/ - CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libcurl CONFIGURE_ARGS += --with-ldap Modified: csw/mgar/pkg/gnupg/trunk/checksums =================================================================== --- csw/mgar/pkg/gnupg/trunk/checksums 2009-01-18 20:44:58 UTC (rev 2855) +++ csw/mgar/pkg/gnupg/trunk/checksums 2009-01-18 20:59:05 UTC (rev 2856) @@ -1,4 +1,2 @@ -3537dedea45cc09e8d88d1ef4f774246 download/gnupg-1.4.9.tar.gz +1cb778dd555f87685a8fde2f7113725e download/gnupg-2.0.10.tar.bz2 7978eaabeceaa781a1600ede3a6d3f67 download/CSWgnupg.gspec -7c870727fcc4d65844d7ccca2d609cab download/CSWgnupg.depend -d403a353dd4eca4185b00f2cc80a17fd download/CSWgnupg.prototype Deleted: csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.depend =================================================================== --- csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.depend 2009-01-18 20:44:58 UTC (rev 2855) +++ csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.depend 2009-01-18 20:59:05 UTC (rev 2856) @@ -1,11 +0,0 @@ -P CSWcommon -P CSWbzip2 -P CSWcurlrt -P CSWggettext -P CSWiconv -P CSWlibidn -P CSWoldaprt -P CSWosslrt -P CSWreadline -P CSWzlib -P CSWtexinfo Deleted: csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.prototype =================================================================== --- csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.prototype 2009-01-18 20:44:58 UTC (rev 2855) +++ csw/mgar/pkg/gnupg/trunk/files/CSWgnupg.prototype 2009-01-18 20:59:05 UTC (rev 2856) @@ -1,115 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/gpg 0755 root bin -f none /opt/csw/bin/gpg-zip 0755 root bin -f none /opt/csw/bin/gpgsplit 0755 root bin -f none /opt/csw/bin/gpgv 0755 root bin -d none /opt/csw/libexec 0755 root bin -d none /opt/csw/libexec/gnupg 0755 root bin -f none /opt/csw/libexec/gnupg/gpgkeys_curl 0755 root bin -f none /opt/csw/libexec/gnupg/gpgkeys_finger 0755 root bin -f none /opt/csw/libexec/gnupg/gpgkeys_hkp 0755 root bin -f none /opt/csw/libexec/gnupg/gpgkeys_ldap 0755 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/gnupg 0755 root bin -f none /opt/csw/share/gnupg/FAQ 0644 root bin -f none /opt/csw/share/gnupg/faq.html 0644 root bin -f none /opt/csw/share/gnupg/options.skel 0644 root bin -f none /opt/csw/share/info/gnupg1.info 0644 root bin -d none /opt/csw/share/locale 0755 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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.mo 0644 root bin -d none /opt/csw/share/locale/en at boldquot 0755 root bin -d none /opt/csw/share/locale/en at boldquot/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/en at boldquot/LC_MESSAGES/gnupg.mo 0644 root bin -d none /opt/csw/share/locale/en at quot 0755 root bin -d none /opt/csw/share/locale/en at quot/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/en at quot/LC_MESSAGES/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.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/gnupg.mo 0644 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/gpg.1 0644 root bin -f none /opt/csw/share/man/man1/gpg.ru.1 0644 root bin -f none /opt/csw/share/man/man1/gpgv.1 0644 root bin -d none /opt/csw/share/man/man7 0755 root bin -f none /opt/csw/share/man/man7/gnupg.7 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From trygvis at opencsw.org Sun Jan 18 21:59:29 2009 From: trygvis at opencsw.org (=?ISO-8859-1?Q?Trygve_Laugst=F8l?=) Date: Sun, 18 Jan 2009 21:59:29 +0100 Subject: [csw-devel] SF.net SVN: gar:[2835] csw/mgar/pkg/mercurial/trunk In-Reply-To: References: Message-ID: <49739831.7050601@opencsw.org> Dago, I'm having some issues on getting the prototype generation to work on Solaris 8. All files end up in both .pkg files on solaris 8, but work as expected at home. Could you take a look please? -- Trygve trygvis at users.sourceforge.net wrote: > Revision: 2835 > http://gar.svn.sourceforge.net/gar/?rev=2835&view=rev > Author: trygvis > Date: 2009-01-15 01:12:03 +0000 (Thu, 15 Jan 2009) > > Log Message: > ----------- > o Upgrading to mercurial-1.0.2. > > Modified Paths: > -------------- > csw/mgar/pkg/mercurial/trunk/Makefile > csw/mgar/pkg/mercurial/trunk/checksums > csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec > > Added Paths: > ----------- > csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec > > Removed Paths: > ------------- > csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend > csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype > > Modified: csw/mgar/pkg/mercurial/trunk/Makefile > =================================================================== > --- csw/mgar/pkg/mercurial/trunk/Makefile 2009-01-14 22:39:27 UTC (rev 2834) > +++ csw/mgar/pkg/mercurial/trunk/Makefile 2009-01-15 01:12:03 UTC (rev 2835) > @@ -1,33 +1,42 @@ > GARNAME = mercurial > -GARVERSION = 1.0 > +GARVERSION = 1.1.2 > CATEGORIES = devel > > DESCRIPTION = Fast, lightweight Source Control Management system > #define BLURB > #endef > > -MASTER_SITES = http://www.selenic.com/mercurial/release > +MASTER_SITES = http://www.selenic.com/mercurial/release/ > DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz > -DISTFILES += $(call admfiles,CSWmercurial,prototype changelog.CSW) > +DISTFILES += $(call admfiles,CSWmercurial,changelog.CSW) > +DISTFILES += $(call admfiles,CSWmercurial-common,) > > +SPKG_DESC_CSWmercurial = Mercurial > +SPKG_DESC_CSWmercurial_common = Mercurial, common files > + > +REQUIRED_PKGS_CSWmercurial = CSWpython > + > # We define upstream file regex so we can be notifed of new upstream software release > UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz > > +PKGFILES_CSWmercurial-common = $(PKGFILES_DOC) > +PKGFILES_CSWmercurial-common += /opt/csw/share/man/.* > +PKGFILES_CSWmercurial-common += /opt/csw/lib/python/site-packages/mercurial/templates/.* > + > +#PKGFILES_CSWmercurial = /opt/csw/bin > +# $(prefix)/.* > + > CONFIGURE_SCRIPTS = > BUILD_SCRIPTS = $(WORKSRC)/setup.py > -TEST_TARGET = > -# Can't get the tests to pass properly > -#TEST_TARGET = tests > -# TESTFLAGS is used by ./run-tests.py > -TESTFLAGS = -p 6666 > -export TESTFLAGS > +# Some tests fail, but manual inspection of the failures show no significant failures. > +TEST_TARGET = #tests > + > INSTALL_SCRIPTS = $(WORKSRC)/setup.py > - > INSTALL_ARGS += --root=$(DESTDIR) --prefix=/opt/csw > > include gar/category.mk > > -pre-install: > +pre-install-modulated: > mkdir -p $(DESTDIR)/opt/csw/share/man/man1 > mkdir -p $(DESTDIR)/opt/csw/share/man/man5 > mkdir -p $(DESTDIR)/opt/csw/share/doc/mercurial > @@ -41,7 +50,7 @@ > $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/*spec* \ > $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/win32 > > -post-install: > +post-install-modulated: > cp $(WORKDIR)/CSWmercurial.changelog.CSW $(DESTDIR)/opt/csw/share/doc/mercurial/changelog.CSW > ( cd $(DESTDIR) && find . -type f | xargs grep '#!.*python$$' ) | cut -f 1 -d: | while read file; do\ > sed '1c\ > @@ -49,4 +58,4 @@ > mv $(WORKDIR)/tmp $(DESTDIR)/$$file; \ > done > > -PATH := /opt/csw/bin:$(PATH) > +#PATH := /opt/csw/bin:$(PATH) > > Modified: csw/mgar/pkg/mercurial/trunk/checksums > =================================================================== > --- csw/mgar/pkg/mercurial/trunk/checksums 2009-01-14 22:39:27 UTC (rev 2834) > +++ csw/mgar/pkg/mercurial/trunk/checksums 2009-01-15 01:12:03 UTC (rev 2835) > @@ -1,4 +1,4 @@ > -9f8dd7fa6f8886f77be9b923f008504c download/mercurial-1.0.tar.gz > -f2e148286af727c4ef418b11e9061fde download/CSWmercurial.gspec > -feec49140812779d35d3413cc3a2d811 download/CSWmercurial.prototype > +4fd3b9a2e5dcd025840c3849b136bec8 download/mercurial-1.1.2.tar.gz > +d280026d7687f061371e87ff306c97c2 download/CSWmercurial.gspec > db884ecb306bcbf49b671f880d29c431 download/CSWmercurial.changelog.CSW > +f123d5474de9aeaea428989744b12401 download/CSWmercurial-common.gspec > > Added: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec > =================================================================== > --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec (rev 0) > +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec 2009-01-15 01:12:03 UTC (rev 2835) > @@ -0,0 +1,7 @@ > +%var bitname mercurial_common > +%var pkgname CSWmercurial-common > +%include url file://%{PKGLIB}/csw_dyndepend.gspec > +%copyright > + > +Please see /opt/csw/share/doc/mercurial-common/LICENSE for license information > + > > Deleted: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend > =================================================================== > --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend 2009-01-14 22:39:27 UTC (rev 2834) > +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.depend 2009-01-15 01:12:03 UTC (rev 2835) > @@ -1,2 +0,0 @@ > -P CSWcommon common - common files and dirs for CSW packages > -P CSWpython python - A high-level scripting language. > > Modified: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec > =================================================================== > --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec 2009-01-14 22:39:27 UTC (rev 2834) > +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.gspec 2009-01-15 01:12:03 UTC (rev 2835) > @@ -1,4 +1,7 @@ > %var bitname mercurial > %var pkgname CSWmercurial > %include url file://%{PKGLIB}/csw_dyndepend.gspec > -%copyright url file://%{WORKSRC}/COPYING > +%copyright > + > +Please see /opt/csw/share/doc/mercurial/LICENSE for license information > + > > Deleted: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype > =================================================================== > --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype 2009-01-14 22:39:27 UTC (rev 2834) > +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial.prototype 2009-01-15 01:12:03 UTC (rev 2835) > @@ -1,343 +0,0 @@ > -d none /opt/csw/bin 0755 root bin > -f none /opt/csw/bin/hg 0755 root bin > -d none /opt/csw/lib 0755 root bin > -d none /opt/csw/lib/python 0755 root bin > -d none /opt/csw/lib/python/site-packages 0755 root bin > -d none /opt/csw/lib/python/site-packages/hgext 0755 root bin > -f none /opt/csw/lib/python/site-packages/hgext/__init__.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/__init__.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/acl.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/acl.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/alias.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/alias.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/bugzilla.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/bugzilla.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/children.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/children.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/churn.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/churn.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/color.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/color.pyc 0644 root bin > -d none /opt/csw/lib/python/site-packages/hgext/convert 0755 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/__init__.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/__init__.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/common.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/common.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/convcmd.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/convcmd.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/cvs.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/cvs.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/darcs.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/darcs.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/filemap.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/filemap.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/git.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/git.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/gnuarch.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/gnuarch.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/hg.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/hg.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/monotone.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/monotone.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/subversion.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/subversion.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/transport.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/convert/transport.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/extdiff.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/extdiff.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/fetch.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/fetch.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/gpg.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/gpg.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/graphlog.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/graphlog.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/hgk.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/hgk.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/highlight.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/highlight.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/imerge.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/imerge.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/interhg.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/interhg.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/keyword.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/keyword.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/mq.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/mq.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/notify.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/notify.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/pager.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/pager.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/parentrevspec.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/parentrevspec.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/patchbomb.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/patchbomb.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/purge.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/purge.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/record.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/record.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/transplant.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/transplant.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/win32mbcs.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/win32mbcs.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/win32text.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/hgext/win32text.pyc 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial-1.0-py2.5.egg-info 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/__init__.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/__init__.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/__version__.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/__version__.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/ancestor.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/ancestor.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/archival.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/archival.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/base85.so 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/bdiff.so 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/bundlerepo.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/bundlerepo.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/byterange.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/byterange.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/changegroup.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/changegroup.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/changelog.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/changelog.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/cmdutil.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/cmdutil.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/commands.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/commands.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/context.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/context.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/copies.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/copies.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/demandimport.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/demandimport.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/diffhelpers.so 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/dirstate.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/dirstate.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/dispatch.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/dispatch.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/extensions.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/extensions.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/fancyopts.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/fancyopts.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/filelog.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/filelog.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/filemerge.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/filemerge.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hbisect.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hbisect.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/help.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/help.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hg.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hg.pyc 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/hgweb 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/__init__.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/__init__.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/common.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/common.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgweb_mod.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgweb_mod.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgwebdir_mod.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/hgwebdir_mod.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/protocol.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/protocol.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/request.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/request.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/server.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/server.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/webcommands.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/webcommands.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/wsgicgi.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hgweb/wsgicgi.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hook.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/hook.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/httprangereader.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/httprangereader.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/httprepo.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/httprepo.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/i18n.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/i18n.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/ignore.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/ignore.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/keepalive.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/keepalive.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/localrepo.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/localrepo.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/lock.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/lock.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/lsprof.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/lsprof.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/mail.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/mail.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/manifest.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/manifest.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/mdiff.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/mdiff.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/merge.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/merge.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/mpatch.so 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/node.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/node.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/osutil.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/osutil.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/osutil.so 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/patch.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/patch.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/repair.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/repair.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/repo.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/repo.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/revlog.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/revlog.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/simplemerge.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/simplemerge.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/sshrepo.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/sshrepo.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/sshserver.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/sshserver.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/statichttprepo.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/statichttprepo.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/streamclone.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/streamclone.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/strutil.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/strutil.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templatefilters.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templatefilters.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templater.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templater.pyc 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/templates 0755 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/templates/atom 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/changelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/changelogentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/filelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/header.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/map 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/tagentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/atom/tags.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/changelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/changelogentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/changeset.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/error.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/fileannotate.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/filediff.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/filelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/filelogentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/filerevision.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/footer.tmpl 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/changelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/changelogentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/changeset.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/error.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/fileannotate.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/filediff.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/filelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/filerevision.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/footer.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/header.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/index.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/manifest.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/map 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/notfound.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/search.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/shortlog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/summary.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/gitweb/tags.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/header.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/index.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/manifest.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/map 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/map-cmdline.changelog 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/map-cmdline.compact 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/map-cmdline.default 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/notfound.tmpl 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/templates/raw 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/changeset.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/error.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/fileannotate.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/filediff.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/index.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/manifest.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/map 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/raw/notfound.tmpl 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/templates/rss 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/changelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/changelogentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/filelog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/filelogentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/header.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/map 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/tagentry.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/rss/tags.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/search.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/shortlog.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/shortlogentry.tmpl 0644 root bin > -d none /opt/csw/lib/python/site-packages/mercurial/templates/static 0755 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/hgicon.png 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/hglogo.png 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/highlight.css 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/style-gitweb.css 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/static/style.css 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/tags.tmpl 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/templates/template-vars.txt 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/transaction.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/transaction.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/ui.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/ui.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/util.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/util.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/util_win32.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/util_win32.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/verify.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/verify.pyc 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/version.py 0644 root bin > -f none /opt/csw/lib/python/site-packages/mercurial/version.pyc 0644 root bin > -d none /opt/csw/share 0755 root bin > -d none /opt/csw/share/doc 0755 root bin > -d none /opt/csw/share/doc/mercurial 0755 root bin > -d none /opt/csw/share/doc/mercurial/contrib 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/bash_completion 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/convert-repo 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/darcs2hg.py 0755 root bin > -d none /opt/csw/share/doc/mercurial/contrib/git-viz 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-cat-file 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-diff-tree 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-rev-list 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/git-viz/git-rev-tree 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/git-viz/hg-viz 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hg-relink 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hg-ssh 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hgdiff 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hgk 0755 root bin > -d none /opt/csw/share/doc/mercurial/contrib/hgsh 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hgsh/Makefile 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hgsh/hgsh.c 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/hgwebdir.fcgi 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/logo-droplets.svg 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/mercurial.el 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/mergetools.hgrc 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/mq.el 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/rewrite-log 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/sample.hgrc 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/simplemerge 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/tcsh_completion 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/tcsh_completion_build.sh 0644 root bin > -d none /opt/csw/share/doc/mercurial/contrib/vim 0755 root bin > -f none /opt/csw/share/doc/mercurial/contrib/vim/HGAnnotate.vim 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/vim/hg-menu.vim 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/vim/hgcommand.vim 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/vim/patchreview.txt 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/vim/patchreview.vim 0644 root bin > -f none /opt/csw/share/doc/mercurial/contrib/zsh_completion 0644 root bin > -f none /opt/csw/share/doc/mercurial/hgweb.cgi 0644 root bin > -f none /opt/csw/share/doc/mercurial/hgwebdir.cgi 0644 root bin > -f none /opt/csw/share/doc/mercurial/changelog.CSW 0644 root bin > -d none /opt/csw/share/man 0755 root bin > -d none /opt/csw/share/man/man1 0755 root bin > -f none /opt/csw/share/man/man1/hg.1 0644 root bin > -d none /opt/csw/share/man/man5 0755 root bin > -f none /opt/csw/share/man/man5/hgignore.5 0644 root bin > -f none /opt/csw/share/man/man5/hgrc.5 0644 root bin > -i copyright=CSWmercurial.copyright > -i depend=CSWmercurial.depend > -i pkginfo=CSWmercurial.pkginfo > > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > _______________________________________________ > devel mailing list > devel at lists.opencsw.org > https://lists.opencsw.org/mailman/listinfo/devel From dam at opencsw.org Sun Jan 18 22:06:34 2009 From: dam at opencsw.org (Dagobert Michelsen) Date: Sun, 18 Jan 2009 22:06:34 +0100 Subject: [csw-devel] SF.net SVN: gar:[2835] csw/mgar/pkg/mercurial/trunk In-Reply-To: <49739831.7050601@opencsw.org> References: <49739831.7050601@opencsw.org> Message-ID: Hi Trygve, Am 18.01.2009 um 21:59 schrieb Trygve Laugst?l: > I'm having some issues on getting the prototype generation to work on > Solaris 8. > > All files end up in both .pkg files on solaris 8, but work as expected > at home. Could you take a look please? In the repository is still an external reference to mGAR v1, where automatic prototypes don't exist. Have you updated your local copy at home manualla? Best regards -- Dago From trygvis at users.sourceforge.net Sun Jan 18 22:08:22 2009 From: trygvis at users.sourceforge.net (trygvis at users.sourceforge.net) Date: Sun, 18 Jan 2009 21:08:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[2857] csw/mgar/gar Message-ID: Revision: 2857 http://gar.svn.sourceforge.net/gar/?rev=2857&view=rev Author: trygvis Date: 2009-01-18 21:08:22 +0000 (Sun, 18 Jan 2009) Log Message: ----------- o Adding scm-help stuff to v1 as well. Modified Paths: -------------- csw/mgar/gar/v1/gar.conf.mk csw/mgar/gar/v2/scm-help Added Paths: ----------- csw/mgar/gar/v1/bin/svnignore csw/mgar/gar/v1/gar.svn.mk csw/mgar/gar/v1/scm-help Copied: csw/mgar/gar/v1/bin/svnignore (from rev 2683, csw/mgar/gar/v2/bin/svnignore) =================================================================== --- csw/mgar/gar/v1/bin/svnignore (rev 0) +++ csw/mgar/gar/v1/bin/svnignore 2009-01-18 21:08:22 UTC (rev 2857) @@ -0,0 +1,28 @@ +#!/bin/sh +# +# Copyright 2008-2009 OpenCSW +# +# Redistribution and/or use, with or without modification, is +# permitted. This software is without warranty of any kind. The +# author(s) shall not be liable in the event that use of the +# software causes damage. +# +# gar.svn.mk - Targets for working with svn + +# Read the comma separated ignores from stdin and merges it with any existing +# ignores set on the directory. + +ignores=`mktemp`-ignores +existing_ignores=`mktemp`-existing +new_ignores=`mktemp`-new + +while [ "$1" != "" ]; do + echo $1 >> $ignores + shift +done + +svn pg svn:ignore . > $existing_ignores +cat $ignores $existing_ignores | sort | uniq > $new_ignores +svn ps svn:ignore . -F $new_ignores + +rm -rf $ignores $existing_ignores $new_ignores Modified: csw/mgar/gar/v1/gar.conf.mk =================================================================== --- csw/mgar/gar/v1/gar.conf.mk 2009-01-18 20:59:05 UTC (rev 2856) +++ csw/mgar/gar/v1/gar.conf.mk 2009-01-18 21:08:22 UTC (rev 2857) @@ -303,5 +303,4 @@ FILE_SITES = $(foreach DIR,$(FILEDIR) $(GARCHIVEPATH),file://$(DIR)/) # Extra libraries -EXTRA_LIBS = gar.pkg.mk gar.common.mk - +EXTRA_LIBS = gar.pkg.mk gar.common.mk gar.svn.mk Copied: csw/mgar/gar/v1/gar.svn.mk (from rev 2683, csw/mgar/gar/v2/gar.svn.mk) =================================================================== --- csw/mgar/gar/v1/gar.svn.mk (rev 0) +++ csw/mgar/gar/v1/gar.svn.mk 2009-01-18 21:08:22 UTC (rev 2857) @@ -0,0 +1,29 @@ +# vim: ft=make ts=4 sw=4 noet +# +# $Id$ +# +# Copyright 2008-2009 OpenCSW +# +# Redistribution and/or use, with or without modification, is +# permitted. This software is without warranty of any kind. The +# author(s) shall not be liable in the event that use of the +# software causes damage. +# +# gar.svn.mk - Targets for working with svn +# + +scm-help: + @cat $(GARDIR)/scm-help + +scm-update-all: scm-update-package scm-update-gar + +scm-update-package: + $(SVN) --ignore-externals up + +scm-update-gar: + cd $(GARDIR) && $(SVN) --ignore-externals up + +scm-update-ignores: + $(GARDIR)/bin/svnignore work cookies download + +.PHONY: scm-help scm-update-all scm-update-package scm-update-gar Copied: csw/mgar/gar/v1/scm-help (from rev 2683, csw/mgar/gar/v2/scm-help) =================================================================== --- csw/mgar/gar/v1/scm-help (rev 0) +++ csw/mgar/gar/v1/scm-help 2009-01-18 21:08:22 UTC (rev 2857) @@ -0,0 +1,12 @@ +These are the available SCM targets + +scm-update-package: + Updates the package files + +scm-update-all: + Updates both the package files and the gar/ directory + +scm-update-gar: + Updates the contents of the gar/ directory + + This should only be used inside a package directory Modified: csw/mgar/gar/v2/scm-help =================================================================== --- csw/mgar/gar/v2/scm-help 2009-01-18 20:59:05 UTC (rev 2856) +++ csw/mgar/gar/v2/scm-help 2009-01-18 21:08:22 UTC (rev 2857) @@ -1,10 +1,12 @@ These are the available SCM targets +scm-update-package: + Updates the package files + scm-update-all: Updates both the package files and the gar/ directory -scm-update-package: - Updates the package files - scm-update-gar: Updates the contents of the gar/ directory + + This should only be used inside a package directory This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From trygvis at opencsw.org Sun Jan 18 22:10:12 2009 From: trygvis at opencsw.org (=?ISO-8859-1?Q?Trygve_Laugst=F8l?=) Date: Sun, 18 Jan 2009 22:10:12 +0100 Subject: [csw-devel] SF.net SVN: gar:[2835] csw/mgar/pkg/mercurial/trunk In-Reply-To: References: <49739831.7050601@opencsw.org> Message-ID: <49739AB4.4000704@opencsw.org> Dagobert Michelsen wrote: > Hi Trygve, > > Am 18.01.2009 um 21:59 schrieb Trygve Laugst?l: >> I'm having some issues on getting the prototype generation to work on >> Solaris 8. >> >> All files end up in both .pkg files on solaris 8, but work as expected >> at home. Could you take a look please? > > In the repository is still an external reference to mGAR v1, where > automatic prototypes don't exist. Have you updated your local copy > at home manualla? I've switched back to v1 because there was an issue with my package so I had to get some work done. I can try to switch it back, but running it yourself on a s8 build should show the issue. I'm on IRC now btw. -- Trygve From dmichelsen at users.sourceforge.net Sun Jan 18 22:36:33 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 18 Jan 2009 21:36:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[2858] csw/mgar/pkg Message-ID: Revision: 2858 http://gar.svn.sourceforge.net/gar/?rev=2858&view=rev Author: dmichelsen Date: 2009-01-18 21:36:32 +0000 (Sun, 18 Jan 2009) Log Message: ----------- libksba: Initial commit Added Paths: ----------- csw/mgar/pkg/libksba/ csw/mgar/pkg/libksba/branches/ csw/mgar/pkg/libksba/tags/ csw/mgar/pkg/libksba/trunk/ csw/mgar/pkg/libksba/trunk/Makefile csw/mgar/pkg/libksba/trunk/checksums csw/mgar/pkg/libksba/trunk/files/ csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec csw/mgar/pkg/libksba/trunk/files/patch-novoidreturn.diff Property changes on: csw/mgar/pkg/libksba/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/libksba/trunk/Makefile =================================================================== --- csw/mgar/pkg/libksba/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libksba/trunk/Makefile 2009-01-18 21:36:32 UTC (rev 2858) @@ -0,0 +1,33 @@ +GARNAME = libksba +GARVERSION = 1.0.5 +CATEGORIES = lib + +DESCRIPTION = Libksba is a CMS and X.509 access library +define BLURB + Libksba is a library to make the tasks of working with X.509 certificates, + CMS data and related objects more easy. It provides a highlevel interface + to the implemented protocols and presents the data in a consistent way. + There is no more need to worry about all the nasty details of the protocols. +endef + +MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/libksba/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWlibskba,) + +PATCHFILES = patch-novoidreturn.diff + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 + +SPKG_SOURCEURL = http://www.gnupg.org/related_software/libksba/ + +REQUIRED_PKGS = CSWgpgerr + +BUILD64 = 1 +NO_ISAEXEC = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/libksba/trunk/checksums =================================================================== --- csw/mgar/pkg/libksba/trunk/checksums (rev 0) +++ csw/mgar/pkg/libksba/trunk/checksums 2009-01-18 21:36:32 UTC (rev 2858) @@ -0,0 +1,3 @@ +6948a3d96679b5afd504a1f91170b18b download/libksba-1.0.5.tar.bz2 +411fa230c1d72c0fde40ee924403e3cd download/CSWlibskba.gspec +fcba0b19950c5509f2d7c4d26cfb76a5 download/patch-novoidreturn.diff Added: csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec =================================================================== --- csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec (rev 0) +++ csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec 2009-01-18 21:36:32 UTC (rev 2858) @@ -0,0 +1,4 @@ +%var bitname libskba +%var pkgname CSWlibskba +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/libksba/trunk/files/patch-novoidreturn.diff =================================================================== --- csw/mgar/pkg/libksba/trunk/files/patch-novoidreturn.diff (rev 0) +++ csw/mgar/pkg/libksba/trunk/files/patch-novoidreturn.diff 2009-01-18 21:36:32 UTC (rev 2858) @@ -0,0 +1,119 @@ +diff -Naur libksba-1.0.5.orig/src/visibility.c libksba-1.0.5.patched/src/visibility.c +--- libksba-1.0.5.orig/src/visibility.c 2008-09-04 11:15:26.000000000 +0200 ++++ libksba-1.0.5.patched/src/visibility.c 2009-01-18 22:11:04.807104546 +0100 +@@ -319,7 +319,7 @@ + void + ksba_cms_release (ksba_cms_t cms) + { +- return _ksba_cms_release (cms); ++ _ksba_cms_release (cms); + } + + +@@ -441,7 +441,7 @@ + void (*hash_fnc)(void *, const void *, size_t), + void *hash_fnc_arg) + { +- return _ksba_cms_set_hash_function (cms, hash_fnc, hash_fnc_arg); ++ _ksba_cms_set_hash_function (cms, hash_fnc, hash_fnc_arg); + } + + +@@ -555,7 +555,7 @@ + void + ksba_crl_release (ksba_crl_t crl) + { +- return _ksba_crl_release (crl); ++ _ksba_crl_release (crl); + } + + +@@ -572,7 +572,7 @@ + const void *, size_t), + void *hash_fnc_arg) + { +- return _ksba_crl_set_hash_function (crl, hash_fnc, hash_fnc_arg); ++ _ksba_crl_set_hash_function (crl, hash_fnc, hash_fnc_arg); + } + + +@@ -662,7 +662,7 @@ + void + ksba_ocsp_release (ksba_ocsp_t ocsp) + { +- return _ksba_ocsp_release (ocsp); ++ _ksba_ocsp_release (ocsp); + } + + +@@ -829,7 +829,7 @@ + void + ksba_certreq_release (ksba_certreq_t cr) + { +- return _ksba_certreq_release (cr); ++ _ksba_certreq_release (cr); + } + + +@@ -845,7 +845,7 @@ + void (*hash_fnc)(void *, const void *, size_t), + void *hash_fnc_arg) + { +- return _ksba_certreq_set_hash_function (cr, hash_fnc, hash_fnc_arg); ++ _ksba_certreq_set_hash_function (cr, hash_fnc, hash_fnc_arg); + } + + +@@ -903,7 +903,7 @@ + void + ksba_reader_release (ksba_reader_t r) + { +- return _ksba_reader_release (r); ++ _ksba_reader_release (r); + } + + +@@ -989,7 +989,7 @@ + void + ksba_writer_release (ksba_writer_t w) + { +- return _ksba_writer_release (w); ++ _ksba_writer_release (w); + } + + +@@ -1092,7 +1092,7 @@ + void + ksba_asn_tree_release (ksba_asn_tree_t tree) + { +- return _ksba_asn_tree_release (tree); ++ _ksba_asn_tree_release (tree); + } + + +@@ -1100,7 +1100,7 @@ + void + ksba_asn_tree_dump (ksba_asn_tree_t tree, const char *name, FILE *fp) + { +- return _ksba_asn_tree_dump (tree, name, fp); ++ _ksba_asn_tree_dump (tree, name, fp); + } + + +@@ -1176,14 +1176,14 @@ + void + ksba_name_ref (ksba_name_t name) + { +- return _ksba_name_ref (name); ++ _ksba_name_ref (name); + } + + + void + ksba_name_release (ksba_name_t name) + { +- return _ksba_name_release (name); ++ _ksba_name_release (name); + } + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jan 19 15:06:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Jan 2009 14:06:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[2859] csw/mgar/pkg Message-ID: Revision: 2859 http://gar.svn.sourceforge.net/gar/?rev=2859&view=rev Author: dmichelsen Date: 2009-01-19 14:06:56 +0000 (Mon, 19 Jan 2009) Log Message: ----------- cvsps: Initial commit, needs more work (autoconf / gnulib) Added Paths: ----------- csw/mgar/pkg/cvsps/ csw/mgar/pkg/cvsps/branches/ csw/mgar/pkg/cvsps/tags/ csw/mgar/pkg/cvsps/trunk/ csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums csw/mgar/pkg/cvsps/trunk/files/ csw/mgar/pkg/cvsps/trunk/files/CSWcvsps.gspec csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff Property changes on: csw/mgar/pkg/cvsps/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-19 14:06:56 UTC (rev 2859) @@ -0,0 +1,25 @@ +GARNAME = cvsps +GARVERSION = 2.1 +CATEGORIES = apps + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = http://www.cobite.com/cvsps/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWcvsps,) + +PATCHFILES = patch-extralibs.diff + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# We don't have configure +CONFIGURE_SCRIPTS = + +BUILD_ARGS = CC="$(CC)" CFLAGS="-I. -DVERSION=\"$(GARVERSION)\" $(CFLAGS)" prefix="$(prefix)" +BUILD_ARGS += _EXTRA_LIBS="-lnsl -lsocket" + +include gar/category.mk Added: csw/mgar/pkg/cvsps/trunk/checksums =================================================================== --- csw/mgar/pkg/cvsps/trunk/checksums (rev 0) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-19 14:06:56 UTC (rev 2859) @@ -0,0 +1,3 @@ +bde2110ed9f5d14de8f8cb04e9d596fe download/cvsps-2.1.tar.gz +cb54db01900320e1bf80da166c60c2f8 download/CSWcvsps.gspec +d337546e3cf1195cc7b98ed2b5dd06d1 download/patch-extralibs.diff Added: csw/mgar/pkg/cvsps/trunk/files/CSWcvsps.gspec =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/CSWcvsps.gspec (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/CSWcvsps.gspec 2009-01-19 14:06:56 UTC (rev 2859) @@ -0,0 +1,4 @@ +%var bitname cvsps +%var pkgname CSWcvsps +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff 2009-01-19 14:06:56 UTC (rev 2859) @@ -0,0 +1,35 @@ +diff -Naur cvsps-2.1.orig/Makefile cvsps-2.1.patched/Makefile +--- cvsps-2.1.orig/Makefile 2005-05-26 05:39:40.000000000 +0200 ++++ cvsps-2.1.patched/Makefile 2009-01-19 14:40:16.228045093 +0100 +@@ -21,7 +21,7 @@ + all: cvsps + + cvsps: $(OBJS) +- $(CC) -o cvsps $(OBJS) -lz ++ $(CC) -o cvsps $(OBJS) -lz $(_EXTRA_LIBS) + + install: + [ -d $(prefix)/bin ] || mkdir -p $(prefix)/bin +diff -Naur cvsps-2.1.orig/util.c cvsps-2.1.patched/util.c +--- cvsps-2.1.orig/util.c 2005-05-26 05:39:40.000000000 +0200 ++++ cvsps-2.1.patched/util.c 2009-01-19 14:46:43.782069081 +0100 +@@ -154,16 +154,18 @@ + char * old_tz = getenv("TZ"); + time_t ret; + +- setenv("TZ", "UTC", 1); ++ /* setenv("TZ", "UTC", 1); */ + + tzset(); + + ret = mktime(tm); + ++ /* + if (old_tz) + setenv("TZ", old_tz, 1); + else + unsetenv("TZ"); ++ */ + + tzset(); + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jan 19 15:19:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Jan 2009 14:19:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[2860] csw/mgar/pkg/libksba/trunk Message-ID: Revision: 2860 http://gar.svn.sourceforge.net/gar/?rev=2860&view=rev Author: dmichelsen Date: 2009-01-19 14:19:56 +0000 (Mon, 19 Jan 2009) Log Message: ----------- libksba: Fix typo Modified Paths: -------------- csw/mgar/pkg/libksba/trunk/Makefile csw/mgar/pkg/libksba/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libksba/trunk/files/CSWlibksba.gspec Removed Paths: ------------- csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec Modified: csw/mgar/pkg/libksba/trunk/Makefile =================================================================== --- csw/mgar/pkg/libksba/trunk/Makefile 2009-01-19 14:06:56 UTC (rev 2859) +++ csw/mgar/pkg/libksba/trunk/Makefile 2009-01-19 14:19:56 UTC (rev 2860) @@ -12,7 +12,7 @@ MASTER_SITES = ftp://ftp.gnupg.org/gcrypt/libksba/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWlibskba,) +DISTFILES += $(call admfiles,CSWlibksba,) PATCHFILES = patch-novoidreturn.diff Modified: csw/mgar/pkg/libksba/trunk/checksums =================================================================== --- csw/mgar/pkg/libksba/trunk/checksums 2009-01-19 14:06:56 UTC (rev 2859) +++ csw/mgar/pkg/libksba/trunk/checksums 2009-01-19 14:19:56 UTC (rev 2860) @@ -1,3 +1,3 @@ 6948a3d96679b5afd504a1f91170b18b download/libksba-1.0.5.tar.bz2 -411fa230c1d72c0fde40ee924403e3cd download/CSWlibskba.gspec +e3e10e5572fd97074eac965a449bca22 download/CSWlibksba.gspec fcba0b19950c5509f2d7c4d26cfb76a5 download/patch-novoidreturn.diff Copied: csw/mgar/pkg/libksba/trunk/files/CSWlibksba.gspec (from rev 2858, csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec) =================================================================== --- csw/mgar/pkg/libksba/trunk/files/CSWlibksba.gspec (rev 0) +++ csw/mgar/pkg/libksba/trunk/files/CSWlibksba.gspec 2009-01-19 14:19:56 UTC (rev 2860) @@ -0,0 +1,4 @@ +%var bitname libksba +%var pkgname CSWlibksba +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec =================================================================== --- csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec 2009-01-19 14:06:56 UTC (rev 2859) +++ csw/mgar/pkg/libksba/trunk/files/CSWlibskba.gspec 2009-01-19 14:19:56 UTC (rev 2860) @@ -1,4 +0,0 @@ -%var bitname libskba -%var pkgname CSWlibskba -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jan 19 18:23:35 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 19 Jan 2009 17:23:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[2861] csw/mgar/pkg/pkgutil/trunk Message-ID: Revision: 2861 http://gar.svn.sourceforge.net/gar/?rev=2861&view=rev Author: bonivart Date: 2009-01-19 17:23:34 +0000 (Mon, 19 Jan 2009) Log Message: ----------- pkgutil: update to 1.4 Modified Paths: -------------- csw/mgar/pkg/pkgutil/trunk/Makefile csw/mgar/pkg/pkgutil/trunk/checksums Modified: csw/mgar/pkg/pkgutil/trunk/Makefile =================================================================== --- csw/mgar/pkg/pkgutil/trunk/Makefile 2009-01-19 14:19:56 UTC (rev 2860) +++ csw/mgar/pkg/pkgutil/trunk/Makefile 2009-01-19 17:23:34 UTC (rev 2861) @@ -1,5 +1,5 @@ GARNAME = pkgutil -GARVERSION = 1.3.1 +GARVERSION = 1.4 CATEGORIES = utils DESCRIPTION = Installs Solaris packages easily @@ -33,22 +33,22 @@ @rm -rf $(DESTDIR) @ginstall -d $(DESTDIR)$(bindir) @ginstall -d $(DESTDIR)$(sysconfdir) - @ginstall -d $(DESTDIR)/opt/csw/libexec/pkgutil - @ginstall -d $(DESTDIR)$(docdir)/pkgutil + @ginstall -d $(DESTDIR)/opt/csw/libexec/$(GARNAME) + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) @ginstall -d $(DESTDIR)$(mandir)/man1 # @ginstall -d $(DESTDIR)/usr/sadm/install/scripts - @ginstall -d $(DESTDIR)/var/opt/csw/pkgutil/packages + @ginstall -d $(DESTDIR)/var/opt/csw/$(GARNAME)/packages # @cp -r $(WORKSRC)/$(GARNAME).conf $(DESTDIR)/etc/opt/csw/$(GARNAME).conf.CSW @cp -r $(WORKSRC)/$(GARNAME).conf $(DESTDIR)$(sysconfdir)/$(GARNAME).conf.CSW @cp -r $(WORKSRC)/$(GARNAME) $(DESTDIR)$(bindir) @cp -r $(WORKSRC)/bldcat $(DESTDIR)$(bindir) @cp -r $(WORKSRC)/chkcat $(DESTDIR)$(bindir) - @cp -r $(WORKSRC)/readme $(DESTDIR)$(docdir)/pkgutil/ -# @cp -r $(FILEDIR)/CSWpkgutil.copyright $(DESTDIR)$(docdir)/pkgutil/LICENSE - @cp -r $(WORKSRC)/copyright $(DESTDIR)$(docdir)/pkgutil/LICENSE + @cp -r $(WORKSRC)/readme $(DESTDIR)$(docdir)/$(GARNAME)/ +# @cp -r $(FILEDIR)/CSWpkgutil.copyright $(DESTDIR)$(docdir)/$(GARNAME)/LICENSE + @cp -r $(WORKSRC)/LICENSE $(DESTDIR)$(docdir)/$(GARNAME)/ # @cp -r $(FILEDIR)/CSWpkgutil.i.cswpkgutil $(DESTDIR)/usr/sadm/install/scripts/i.cswpkgutil # @cp -r $(FILEDIR)/CSWpkgutil.r.cswpkgutil $(DESTDIR)/usr/sadm/install/scripts/r.cswpkgutil - @cp -r $(WORKSRC)/admin $(DESTDIR)/var/opt/csw/pkgutil/admin.CSW - @cp -r $(WORKSRC)/wget-`uname -p` $(DESTDIR)/opt/csw/libexec/pkgutil/wget + @cp -r $(WORKSRC)/admin $(DESTDIR)/var/opt/csw/$(GARNAME)/admin.CSW + @cp -r $(WORKSRC)/wget-`uname -p` $(DESTDIR)/opt/csw/libexec/$(GARNAME)/wget @pod2man --section=1 $(WORKSRC)/$(GARNAME) > $(DESTDIR)$(mandir)/man1/pkgutil.1 @$(MAKECOOKIE) Modified: csw/mgar/pkg/pkgutil/trunk/checksums =================================================================== --- csw/mgar/pkg/pkgutil/trunk/checksums 2009-01-19 14:19:56 UTC (rev 2860) +++ csw/mgar/pkg/pkgutil/trunk/checksums 2009-01-19 17:23:34 UTC (rev 2861) @@ -1,4 +1,4 @@ -1b930b0ac7aee3f9523a07ad27bdb211 download/pkgutil-1.3.1.zip +e747b0e510c2d4a662228f7e150a9a76 download/pkgutil-1.4.zip 805cd30ad9f21cb1167d166fa99b5891 download/CSWpkgutil.gspec 2f561d7f40289fac9bd02d2504b73693 download/CSWpkgutil.prototype b9a3a99ece73247e0dbcbb8ea448fcba download/CSWpkgutil.postinstall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Mon Jan 19 19:21:09 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 19 Jan 2009 18:21:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2862] csw/mgar/pkg/ruby/trunk/ Message-ID: Revision: 2862 http://gar.svn.sourceforge.net/gar/?rev=2862&view=rev Author: bdwalton Date: 2009-01-19 18:21:09 +0000 (Mon, 19 Jan 2009) Log Message: ----------- cut ruby to gar2 Property Changed: ---------------- csw/mgar/pkg/ruby/trunk/ Property changes on: csw/mgar/pkg/ruby/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Jan 19 21:38:02 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 19 Jan 2009 20:38:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[2863] csw/mgar/pkg Message-ID: Revision: 2863 http://gar.svn.sourceforge.net/gar/?rev=2863&view=rev Author: dmichelsen Date: 2009-01-19 20:38:02 +0000 (Mon, 19 Jan 2009) Log Message: ----------- leafnode: Initial commit Added Paths: ----------- csw/mgar/pkg/leafnode/ csw/mgar/pkg/leafnode/branches/ csw/mgar/pkg/leafnode/tags/ csw/mgar/pkg/leafnode/trunk/ csw/mgar/pkg/leafnode/trunk/Makefile csw/mgar/pkg/leafnode/trunk/checksums csw/mgar/pkg/leafnode/trunk/files/ csw/mgar/pkg/leafnode/trunk/files/CSWleafnode.gspec Property changes on: csw/mgar/pkg/leafnode/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/leafnode/trunk/Makefile =================================================================== --- csw/mgar/pkg/leafnode/trunk/Makefile (rev 0) +++ csw/mgar/pkg/leafnode/trunk/Makefile 2009-01-19 20:38:02 UTC (rev 2863) @@ -0,0 +1,23 @@ +GARNAME = leafnode +GARVERSION = 1.11.6 +CATEGORIES = apps + +DESCRIPTION = An NNTP server for small leaf sites +define BLURB +endef + +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWleafnode,) + +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=57767 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = (\d+(?:\.\d+)*) + +REQUIRED_PKGS = CSWpcre + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk Added: csw/mgar/pkg/leafnode/trunk/checksums =================================================================== --- csw/mgar/pkg/leafnode/trunk/checksums (rev 0) +++ csw/mgar/pkg/leafnode/trunk/checksums 2009-01-19 20:38:02 UTC (rev 2863) @@ -0,0 +1,2 @@ +5a083968dbacc3d6f6d1013241c23e39 download/leafnode-1.11.6.tar.bz2 +3e82b440d115cda11b2c13026f312566 download/CSWleafnode.gspec Added: csw/mgar/pkg/leafnode/trunk/files/CSWleafnode.gspec =================================================================== --- csw/mgar/pkg/leafnode/trunk/files/CSWleafnode.gspec (rev 0) +++ csw/mgar/pkg/leafnode/trunk/files/CSWleafnode.gspec 2009-01-19 20:38:02 UTC (rev 2863) @@ -0,0 +1,4 @@ +%var bitname leafnode +%var pkgname CSWleafnode +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jan 19 23:53:26 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 19 Jan 2009 22:53:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[2864] csw/mgar/pkg/imapsync/trunk Message-ID: Revision: 2864 http://gar.svn.sourceforge.net/gar/?rev=2864&view=rev Author: skayser Date: 2009-01-19 22:53:26 +0000 (Mon, 19 Jan 2009) Log Message: ----------- imapsync: Updated dependencies Modified Paths: -------------- csw/mgar/pkg/imapsync/trunk/Makefile csw/mgar/pkg/imapsync/trunk/checksums Modified: csw/mgar/pkg/imapsync/trunk/Makefile =================================================================== --- csw/mgar/pkg/imapsync/trunk/Makefile 2009-01-19 20:38:02 UTC (rev 2863) +++ csw/mgar/pkg/imapsync/trunk/Makefile 2009-01-19 22:53:26 UTC (rev 2864) @@ -17,8 +17,11 @@ MASTER_SITES = http://www.linux-france.org/prj/imapsync/dist/ DISTFILES = $(GARNAME)-$(GARVERSION).tgz -DISTFILES += $(call admfiles,CSWimapsync,depend) +DISTFILES += $(call admfiles,CSWimapsync,) +REQUIRED_PKGS = CSWperl CSWpmmailimapclient CSWpmdatemanip CSWpmiosocketssl +REQUIRED_PKGS += CSWpmtermreadkey CSWpmdigesthmac + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz @@ -32,7 +35,9 @@ install-imapsync: @ginstall -d $(DESTDIR)$(bindir) @ginstall -d $(DESTDIR)$(mandir)/man1 - @ginstall $(WORKSRC)/$(GARNAME) $(DESTDIR)$(bindir)/$(GARNAME) + @sed 's#/usr/bin/perl#/opt/csw/bin/perl#' $(WORKSRC)/$(GARNAME) \ + > $(DESTDIR)$(bindir)/$(GARNAME) + @chmod 755 $(DESTDIR)$(bindir)/$(GARNAME) @pod2man $(WORKSRC)/$(GARNAME) > $(DESTDIR)$(mandir)/man1/$(GARNAME).1 @$(MAKECOOKIE) Modified: csw/mgar/pkg/imapsync/trunk/checksums =================================================================== --- csw/mgar/pkg/imapsync/trunk/checksums 2009-01-19 20:38:02 UTC (rev 2863) +++ csw/mgar/pkg/imapsync/trunk/checksums 2009-01-19 22:53:26 UTC (rev 2864) @@ -1,3 +1,2 @@ 3ca055a54b89e2ec01f687cfb6abfd1c download/imapsync-1.267.tgz 92d41550a595eaa994a715e8fcacd9c2 download/CSWimapsync.gspec -36d99b2f5c03aa09f7ae82c8dfceee38 download/CSWimapsync.depend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Mon Jan 19 23:54:31 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 19 Jan 2009 22:54:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2865] csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend Message-ID: Revision: 2865 http://gar.svn.sourceforge.net/gar/?rev=2865&view=rev Author: skayser Date: 2009-01-19 22:54:31 +0000 (Mon, 19 Jan 2009) Log Message: ----------- imapsync: Updated dependencies Removed Paths: ------------- csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend Deleted: csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend =================================================================== --- csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend 2009-01-19 22:53:26 UTC (rev 2864) +++ csw/mgar/pkg/imapsync/trunk/files/CSWimapsync.depend 2009-01-19 22:54:31 UTC (rev 2865) @@ -1,2 +0,0 @@ -P CSWperl -P CSWpmmailimapclient This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jan 20 08:34:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 20 Jan 2009 07:34:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[2866] csw/mgar/pkg/cvsps/trunk Message-ID: Revision: 2866 http://gar.svn.sourceforge.net/gar/?rev=2866&view=rev Author: dmichelsen Date: 2009-01-20 07:34:03 +0000 (Tue, 20 Jan 2009) Log Message: ----------- cvsps: Add depends and install Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-19 22:54:31 UTC (rev 2865) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-20 07:34:03 UTC (rev 2866) @@ -13,6 +13,8 @@ PATCHFILES = patch-extralibs.diff +REQUIRED_PKGS = CSWzlib + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz @@ -22,4 +24,14 @@ BUILD_ARGS = CC="$(CC)" CFLAGS="-I. -DVERSION=\"$(GARVERSION)\" $(CFLAGS)" prefix="$(prefix)" BUILD_ARGS += _EXTRA_LIBS="-lnsl -lsocket" +TEST_SCRIPTS = + +INSTALL_SCRIPTS = custom + include gar/category.mk + +install-custom: + ginstall -d $(DESTDIR)$(bindir) + ginstall -d $(DESTDIR)$(mandir)/man1 + ginstall -m 755 $(WORKSRC)/cvsps $(DESTDIR)$(bindir)/ + ginstall -m 644 $(WORKSRC)/cvsps.1 $(DESTDIR)$(mandir)/man1/ Modified: csw/mgar/pkg/cvsps/trunk/checksums =================================================================== --- csw/mgar/pkg/cvsps/trunk/checksums 2009-01-19 22:54:31 UTC (rev 2865) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-20 07:34:03 UTC (rev 2866) @@ -1,3 +1,3 @@ bde2110ed9f5d14de8f8cb04e9d596fe download/cvsps-2.1.tar.gz cb54db01900320e1bf80da166c60c2f8 download/CSWcvsps.gspec -d337546e3cf1195cc7b98ed2b5dd06d1 download/patch-extralibs.diff +fdfe30f050b93e6db82c665d830216e3 download/patch-extralibs.diff Modified: csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff 2009-01-19 22:54:31 UTC (rev 2865) +++ csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff 2009-01-20 07:34:03 UTC (rev 2866) @@ -1,7 +1,16 @@ diff -Naur cvsps-2.1.orig/Makefile cvsps-2.1.patched/Makefile --- cvsps-2.1.orig/Makefile 2005-05-26 05:39:40.000000000 +0200 -+++ cvsps-2.1.patched/Makefile 2009-01-19 14:40:16.228045093 +0100 -@@ -21,7 +21,7 @@ ++++ cvsps-2.1.patched/Makefile 2009-01-19 16:27:48.937444465 +0100 +@@ -16,12 +16,15 @@ + stats.o\ + cap.o\ + cvs_direct.o\ +- list_sort.o ++ list_sort.o\ ++ strsep.o\ ++ setenv.o\ ++ unsetenv.o + all: cvsps cvsps: $(OBJS) @@ -10,26 +19,493 @@ install: [ -d $(prefix)/bin ] || mkdir -p $(prefix)/bin -diff -Naur cvsps-2.1.orig/util.c cvsps-2.1.patched/util.c ---- cvsps-2.1.orig/util.c 2005-05-26 05:39:40.000000000 +0200 -+++ cvsps-2.1.patched/util.c 2009-01-19 14:46:43.782069081 +0100 -@@ -154,16 +154,18 @@ - char * old_tz = getenv("TZ"); - time_t ret; - -- setenv("TZ", "UTC", 1); -+ /* setenv("TZ", "UTC", 1); */ - - tzset(); - - ret = mktime(tm); - -+ /* - if (old_tz) - setenv("TZ", old_tz, 1); - else - unsetenv("TZ"); -+ */ - - tzset(); - +diff -Naur cvsps-2.1.orig/setenv.c cvsps-2.1.patched/setenv.c +--- cvsps-2.1.orig/setenv.c 1970-01-01 01:00:00.000000000 +0100 ++++ cvsps-2.1.patched/setenv.c 2009-01-19 16:27:26.465469216 +0100 +@@ -0,0 +1,330 @@ ++/* Copyright (C) 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ This program is free software: you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 3 of the License, or ++ (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program. If not, see . */ ++ ++#if !_LIBC ++# include ++#endif ++#include ++ ++/* Specification. */ ++#include ++ ++#include ++#ifndef __set_errno ++# define __set_errno(ev) ((errno) = (ev)) ++#endif ++ ++#include ++#if _LIBC || HAVE_UNISTD_H ++# include ++#endif ++ ++#if _LIBC || !HAVE_SETENV ++ ++#if !_LIBC ++# include "malloca.h" ++#endif ++ ++#if !_LIBC ++# define __environ environ ++#endif ++ ++#if _LIBC ++/* This lock protects against simultaneous modifications of `environ'. */ ++# include ++__libc_lock_define_initialized (static, envlock) ++# define LOCK __libc_lock_lock (envlock) ++# define UNLOCK __libc_lock_unlock (envlock) ++#else ++# define LOCK ++# define UNLOCK ++#endif ++ ++/* In the GNU C library we must keep the namespace clean. */ ++#ifdef _LIBC ++# define setenv __setenv ++# define clearenv __clearenv ++# define tfind __tfind ++# define tsearch __tsearch ++#endif ++ ++/* In the GNU C library implementation we try to be more clever and ++ allow arbitrarily many changes of the environment given that the used ++ values are from a small set. Outside glibc this will eat up all ++ memory after a while. */ ++#if defined _LIBC || (defined HAVE_SEARCH_H && defined HAVE_TSEARCH \ ++ && defined __GNUC__) ++# define USE_TSEARCH 1 ++# include ++typedef int (*compar_fn_t) (const void *, const void *); ++ ++/* This is a pointer to the root of the search tree with the known ++ values. */ ++static void *known_values; ++ ++# define KNOWN_VALUE(Str) \ ++ ({ \ ++ void *value = tfind (Str, &known_values, (compar_fn_t) strcmp); \ ++ value != NULL ? *(char **) value : NULL; \ ++ }) ++# define STORE_VALUE(Str) \ ++ tsearch (Str, &known_values, (compar_fn_t) strcmp) ++ ++#else ++# undef USE_TSEARCH ++ ++# define KNOWN_VALUE(Str) NULL ++# define STORE_VALUE(Str) do { } while (0) ++ ++#endif ++ ++ ++/* If this variable is not a null pointer we allocated the current ++ environment. */ ++static char **last_environ; ++ ++ ++/* This function is used by `setenv' and `putenv'. The difference between ++ the two functions is that for the former must create a new string which ++ is then placed in the environment, while the argument of `putenv' ++ must be used directly. This is all complicated by the fact that we try ++ to reuse values once generated for a `setenv' call since we can never ++ free the strings. */ ++int ++__add_to_environ (const char *name, const char *value, const char *combined, ++ int replace) ++{ ++ register char **ep; ++ register size_t size; ++ const size_t namelen = strlen (name); ++ const size_t vallen = value != NULL ? strlen (value) + 1 : 0; ++ ++ LOCK; ++ ++ /* We have to get the pointer now that we have the lock and not earlier ++ since another thread might have created a new environment. */ ++ ep = __environ; ++ ++ size = 0; ++ if (ep != NULL) ++ { ++ for (; *ep != NULL; ++ep) ++ if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=') ++ break; ++ else ++ ++size; ++ } ++ ++ if (ep == NULL || *ep == NULL) ++ { ++ char **new_environ; ++#ifdef USE_TSEARCH ++ char *new_value; ++#endif ++ ++ /* We allocated this space; we can extend it. */ ++ new_environ = ++ (char **) (last_environ == NULL ++ ? malloc ((size + 2) * sizeof (char *)) ++ : realloc (last_environ, (size + 2) * sizeof (char *))); ++ if (new_environ == NULL) ++ { ++ UNLOCK; ++ return -1; ++ } ++ ++ /* If the whole entry is given add it. */ ++ if (combined != NULL) ++ /* We must not add the string to the search tree since it belongs ++ to the user. */ ++ new_environ[size] = (char *) combined; ++ else ++ { ++ /* See whether the value is already known. */ ++#ifdef USE_TSEARCH ++# ifdef _LIBC ++ new_value = (char *) alloca (namelen + 1 + vallen); ++ __mempcpy (__mempcpy (__mempcpy (new_value, name, namelen), "=", 1), ++ value, vallen); ++# else ++ new_value = (char *) malloca (namelen + 1 + vallen); ++ if (new_value == NULL) ++ { ++ __set_errno (ENOMEM); ++ UNLOCK; ++ return -1; ++ } ++ memcpy (new_value, name, namelen); ++ new_value[namelen] = '='; ++ memcpy (&new_value[namelen + 1], value, vallen); ++# endif ++ ++ new_environ[size] = KNOWN_VALUE (new_value); ++ if (new_environ[size] == NULL) ++#endif ++ { ++ new_environ[size] = (char *) malloc (namelen + 1 + vallen); ++ if (new_environ[size] == NULL) ++ { ++#if defined USE_TSEARCH && !defined _LIBC ++ freea (new_value); ++#endif ++ __set_errno (ENOMEM); ++ UNLOCK; ++ return -1; ++ } ++ ++#ifdef USE_TSEARCH ++ memcpy (new_environ[size], new_value, namelen + 1 + vallen); ++#else ++ memcpy (new_environ[size], name, namelen); ++ new_environ[size][namelen] = '='; ++ memcpy (&new_environ[size][namelen + 1], value, vallen); ++#endif ++ /* And save the value now. We cannot do this when we remove ++ the string since then we cannot decide whether it is a ++ user string or not. */ ++ STORE_VALUE (new_environ[size]); ++ } ++#if defined USE_TSEARCH && !defined _LIBC ++ freea (new_value); ++#endif ++ } ++ ++ if (__environ != last_environ) ++ memcpy ((char *) new_environ, (char *) __environ, ++ size * sizeof (char *)); ++ ++ new_environ[size + 1] = NULL; ++ ++ last_environ = __environ = new_environ; ++ } ++ else if (replace) ++ { ++ char *np; ++ ++ /* Use the user string if given. */ ++ if (combined != NULL) ++ np = (char *) combined; ++ else ++ { ++#ifdef USE_TSEARCH ++ char *new_value; ++# ifdef _LIBC ++ new_value = alloca (namelen + 1 + vallen); ++ __mempcpy (__mempcpy (__mempcpy (new_value, name, namelen), "=", 1), ++ value, vallen); ++# else ++ new_value = malloca (namelen + 1 + vallen); ++ if (new_value == NULL) ++ { ++ __set_errno (ENOMEM); ++ UNLOCK; ++ return -1; ++ } ++ memcpy (new_value, name, namelen); ++ new_value[namelen] = '='; ++ memcpy (&new_value[namelen + 1], value, vallen); ++# endif ++ ++ np = KNOWN_VALUE (new_value); ++ if (np == NULL) ++#endif ++ { ++ np = malloc (namelen + 1 + vallen); ++ if (np == NULL) ++ { ++#if defined USE_TSEARCH && !defined _LIBC ++ freea (new_value); ++#endif ++ __set_errno (ENOMEM); ++ UNLOCK; ++ return -1; ++ } ++ ++#ifdef USE_TSEARCH ++ memcpy (np, new_value, namelen + 1 + vallen); ++#else ++ memcpy (np, name, namelen); ++ np[namelen] = '='; ++ memcpy (&np[namelen + 1], value, vallen); ++#endif ++ /* And remember the value. */ ++ STORE_VALUE (np); ++ } ++#if defined USE_TSEARCH && !defined _LIBC ++ freea (new_value); ++#endif ++ } ++ ++ *ep = np; ++ } ++ ++ UNLOCK; ++ ++ return 0; ++} ++ ++int ++setenv (const char *name, const char *value, int replace) ++{ ++ return __add_to_environ (name, value, NULL, replace); ++} ++ ++/* The `clearenv' was planned to be added to POSIX.1 but probably ++ never made it. Nevertheless the POSIX.9 standard (POSIX bindings ++ for Fortran 77) requires this function. */ ++int ++clearenv (void) ++{ ++ LOCK; ++ ++ if (__environ == last_environ && __environ != NULL) ++ { ++ /* We allocated this environment so we can free it. */ ++ free (__environ); ++ last_environ = NULL; ++ } ++ ++ /* Clear the environment pointer removes the whole environment. */ ++ __environ = NULL; ++ ++ UNLOCK; ++ ++ return 0; ++} ++ ++#ifdef _LIBC ++static void ++free_mem (void) ++{ ++ /* Remove all traces. */ ++ clearenv (); ++ ++ /* Now remove the search tree. */ ++ __tdestroy (known_values, free); ++ known_values = NULL; ++} ++text_set_element (__libc_subfreeres, free_mem); ++ ++ ++# undef setenv ++# undef clearenv ++weak_alias (__setenv, setenv) ++weak_alias (__clearenv, clearenv) ++#endif ++ ++#endif /* _LIBC || !HAVE_SETENV */ +diff -Naur cvsps-2.1.orig/strsep.c cvsps-2.1.patched/strsep.c +--- cvsps-2.1.orig/strsep.c 1970-01-01 01:00:00.000000000 +0100 ++++ cvsps-2.1.patched/strsep.c 2009-01-19 16:12:07.783986518 +0100 +@@ -0,0 +1,58 @@ ++/* Copyright (C) 2004, 2007 Free Software Foundation, Inc. ++ ++ Written by Yoann Vandoorselaere . ++ ++ This program is free software; you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 2, or (at your option) ++ any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program; if not, write to the Free Software Foundation, ++ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ ++ ++#ifdef HAVE_CONFIG_H ++# include ++#endif ++ ++/* Specification. */ ++#include ++ ++char * ++strsep (char **stringp, const char *delim) ++{ ++ char *start = *stringp; ++ char *ptr; ++ ++ if (start == NULL) ++ return NULL; ++ ++ /* Optimize the case of no delimiters. */ ++ if (delim[0] == '\0') ++ { ++ *stringp = NULL; ++ return start; ++ } ++ ++ /* Optimize the case of one delimiter. */ ++ if (delim[1] == '\0') ++ ptr = strchr (start, delim[0]); ++ else ++ /* The general case. */ ++ ptr = strpbrk (start, delim); ++ if (ptr == NULL) ++ { ++ *stringp = NULL; ++ return start; ++ } ++ ++ *ptr = '\0'; ++ *stringp = ptr + 1; ++ ++ return start; ++} +diff -Naur cvsps-2.1.orig/unsetenv.c cvsps-2.1.patched/unsetenv.c +--- cvsps-2.1.orig/unsetenv.c 1970-01-01 01:00:00.000000000 +0100 ++++ cvsps-2.1.patched/unsetenv.c 2009-01-19 16:27:33.208656225 +0100 +@@ -0,0 +1,90 @@ ++/* Copyright (C) 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ This program is free software: you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 3 of the License, or ++ (at your option) any later version. ++ ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ ++ You should have received a copy of the GNU General Public License ++ along with this program. If not, see . */ ++ ++#include ++ ++/* Specification. */ ++#include ++ ++#include ++#if !_LIBC ++# define __set_errno(ev) ((errno) = (ev)) ++#endif ++ ++#include ++#include ++ ++#if !_LIBC ++# define __environ environ ++#endif ++ ++#if _LIBC ++/* This lock protects against simultaneous modifications of `environ'. */ ++# include ++__libc_lock_define_initialized (static, envlock) ++# define LOCK __libc_lock_lock (envlock) ++# define UNLOCK __libc_lock_unlock (envlock) ++#else ++# define LOCK ++# define UNLOCK ++#endif ++ ++/* In the GNU C library we must keep the namespace clean. */ ++#ifdef _LIBC ++# define unsetenv __unsetenv ++#endif ++ ++ ++int ++unsetenv (const char *name) ++{ ++ size_t len; ++ char **ep; ++ ++ if (name == NULL || *name == '\0' || strchr (name, '=') != NULL) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ ++ len = strlen (name); ++ ++ LOCK; ++ ++ ep = __environ; ++ while (*ep != NULL) ++ if (!strncmp (*ep, name, len) && (*ep)[len] == '=') ++ { ++ /* Found it. Remove this pointer by moving later ones back. */ ++ char **dp = ep; ++ ++ do ++ dp[0] = dp[1]; ++ while (*dp++); ++ /* Continue the loop in case NAME appears again. */ ++ } ++ else ++ ++ep; ++ ++ UNLOCK; ++ ++ return 0; ++} ++ ++#ifdef _LIBC ++# undef unsetenv ++weak_alias (__unsetenv, unsetenv) ++#endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Jan 20 10:25:27 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 20 Jan 2009 09:25:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[2867] csw/mgar/pkg/cpan/Module-Load/trunk Message-ID: Revision: 2867 http://gar.svn.sourceforge.net/gar/?rev=2867&view=rev Author: bonivart Date: 2009-01-20 09:25:27 +0000 (Tue, 20 Jan 2009) Log Message: ----------- Module-Load: update to 0.14 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Load/trunk/Makefile csw/mgar/pkg/cpan/Module-Load/trunk/checksums Modified: csw/mgar/pkg/cpan/Module-Load/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Load/trunk/Makefile 2009-01-20 07:34:03 UTC (rev 2866) +++ csw/mgar/pkg/cpan/Module-Load/trunk/Makefile 2009-01-20 09:25:27 UTC (rev 2867) @@ -1,5 +1,5 @@ GARNAME = Module-Load -GARVERSION = 0.12 +GARVERSION = 0.14 CATEGORIES = cpan AUTHOR = KANE Modified: csw/mgar/pkg/cpan/Module-Load/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Load/trunk/checksums 2009-01-20 07:34:03 UTC (rev 2866) +++ csw/mgar/pkg/cpan/Module-Load/trunk/checksums 2009-01-20 09:25:27 UTC (rev 2867) @@ -1,2 +1,2 @@ 6e4e4023477a104e96c1145551065db5 download/CSWpmmodload.gspec -be2f196d1f364887eb94d08bb1e24c1d download/Module-Load-0.12.tar.gz +f797f2f2f4018c3fafabfcfb72137cf1 download/Module-Load-0.14.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Jan 20 10:33:08 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 20 Jan 2009 09:33:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2868] csw/mgar/pkg/cpan/Module-Load-Conditional/trunk Message-ID: Revision: 2868 http://gar.svn.sourceforge.net/gar/?rev=2868&view=rev Author: bonivart Date: 2009-01-20 09:33:07 +0000 (Tue, 20 Jan 2009) Log Message: ----------- Module-Load-Conditional: update to 0.30 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/Makefile csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/checksums Modified: csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/Makefile 2009-01-20 09:25:27 UTC (rev 2867) +++ csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/Makefile 2009-01-20 09:33:07 UTC (rev 2868) @@ -1,5 +1,5 @@ GARNAME = Module-Load-Conditional -GARVERSION = 0.28 +GARVERSION = 0.30 CATEGORIES = cpan AUTHOR = KANE Modified: csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/checksums 2009-01-20 09:25:27 UTC (rev 2867) +++ csw/mgar/pkg/cpan/Module-Load-Conditional/trunk/checksums 2009-01-20 09:33:07 UTC (rev 2868) @@ -1,2 +1,2 @@ e912706042be78943b1af9a349378bbd download/CSWpmmodloadcond.gspec -e4924b9903482aa88a1240cea9760aa8 download/Module-Load-Conditional-0.28.tar.gz +280cbd331a1b2705d24a0b25c7cda4c6 download/Module-Load-Conditional-0.30.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Jan 20 15:43:24 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 20 Jan 2009 14:43:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2869] csw/mgar/pkg/botnet/trunk/Makefile Message-ID: Revision: 2869 http://gar.svn.sourceforge.net/gar/?rev=2869&view=rev Author: bonivart Date: 2009-01-20 14:43:23 +0000 (Tue, 20 Jan 2009) Log Message: ----------- botnet: dir fix Modified Paths: -------------- csw/mgar/pkg/botnet/trunk/Makefile Modified: csw/mgar/pkg/botnet/trunk/Makefile =================================================================== --- csw/mgar/pkg/botnet/trunk/Makefile 2009-01-20 09:33:07 UTC (rev 2868) +++ csw/mgar/pkg/botnet/trunk/Makefile 2009-01-20 14:43:23 UTC (rev 2869) @@ -43,8 +43,8 @@ @rm -rf $(DESTDIR) @ginstall -d $(DESTDIR)$(bindir) @cp $(WORKSRC)/Botnet.pl $(DESTDIR)$(bindir) - @ginstall -d $(DESTDIR)$(sysconfdir)/mail/spamassassin - @$(foreach FILE, $(MAINFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(sysconfdir)/mail/spamassassin ;) + @ginstall -d $(DESTDIR)$(sysconfdir)/spamassassin + @$(foreach FILE, $(MAINFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(sysconfdir)/spamassassin ;) @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) @$(foreach FILE, $(DOCFILES), cp $(WORKSRC)/$(FILE) $(DESTDIR)$(docdir)/$(GARNAME) ;) @cp -r $(WORKSRC)/COPYING $(DESTDIR)$(docdir)/$(GARNAME)/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Wed Jan 21 03:15:19 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 21 Jan 2009 02:15:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2870] csw/mgar/pkg/curl/trunk Message-ID: Revision: 2870 http://gar.svn.sourceforge.net/gar/?rev=2870&view=rev Author: harpchad Date: 2009-01-21 02:15:19 +0000 (Wed, 21 Jan 2009) Log Message: ----------- - Update to gar v2 - Update to curl 7.19.3 Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/curl/trunk/ Property changes on: csw/mgar/pkg/curl/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-01-20 14:43:23 UTC (rev 2869) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-01-21 02:15:19 UTC (rev 2870) @@ -1,5 +1,5 @@ GARNAME = curl -GARVERSION = 7.19.2 +GARVERSION = 7.19.3 CATEGORIES = net DESCRIPTION = Command line tool and library for client-side URL transfers. @@ -25,6 +25,8 @@ CONFIGURE_ARGS = $(DIRPATHS) --with-ssl +BUILD64 = 1 + # Not gonna do it TEST_SCRIPTS = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Wed Jan 21 04:12:07 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 21 Jan 2009 03:12:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2871] csw/mgar/pkg/curl/trunk Message-ID: Revision: 2871 http://gar.svn.sourceforge.net/gar/?rev=2871&view=rev Author: harpchad Date: 2009-01-21 03:12:06 +0000 (Wed, 21 Jan 2009) Log Message: ----------- Changes related to gar v2 upgrade Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums csw/mgar/pkg/curl/trunk/files/CSWcurl.gspec csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend csw/mgar/pkg/curl/trunk/files/CSWcurlrt.gspec Added Paths: ----------- csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend csw/mgar/pkg/curl/trunk/files/CSWcurldevel.gspec Removed Paths: ------------- csw/mgar/pkg/curl/trunk/files/CSWcurl.prototype csw/mgar/pkg/curl/trunk/files/CSWcurlrt.prototype Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-01-21 03:12:06 UTC (rev 2871) @@ -15,19 +15,19 @@ MASTER_SITES = http://curl.haxx.se/download/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWcurl,prototype depend) -DISTFILES += $(call admfiles,CSWcurlrt,prototype depend) +DISTFILES += $(call admfiles,CSWcurl,depend) +DISTFILES += $(call admfiles,CSWcurlrt,depend) +DISTFILES += $(call admfiles,CSWcurldevel,depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 LIBDEPS += lib/openssl - CONFIGURE_ARGS = $(DIRPATHS) --with-ssl - BUILD64 = 1 - -# Not gonna do it TEST_SCRIPTS = +PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) +PKGFILES_CSWcurlrt = $(PKGFILES_RT) + include gar/category.mk Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/checksums 2009-01-21 03:12:06 UTC (rev 2871) @@ -1,7 +1,7 @@ -3a461b145a4a31fe7d5a44684e7fbdbc download/curl-7.19.2.tar.bz2 8413cf2aff529cb995c14a57bd41a10a download/CSWcurl.depend -a5a35282d48619f9a94d768b3bb5a525 download/CSWcurl.gspec -2c5cb969b0409caa925504686cefe0df download/CSWcurl.prototype -5b7397f8f7cab315bec471d05c7f5036 download/CSWcurlrt.gspec -49c05ba155f955632e624f08b076de51 download/CSWcurlrt.prototype -7298b0ca5c36e82d12cb46cd9fc621dc download/CSWcurlrt.depend +97e7af7f474c7fe28184d753acb539ec download/CSWcurl.gspec +177d51b0c241e5754af52b9e9601316e download/CSWcurldevel.depend +cb9741fd1adaa81f640632a685424e6a download/CSWcurldevel.gspec +fc7041a44c180521017d7a834a1932e0 download/CSWcurlrt.depend +4596459435b4dc77f99a15e2e3ee76d6 download/CSWcurlrt.gspec +10eb8c13350c735eff20d7b4530be8cd download/curl-7.19.3.tar.bz2 Modified: csw/mgar/pkg/curl/trunk/files/CSWcurl.gspec =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurl.gspec 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/files/CSWcurl.gspec 2009-01-21 03:12:06 UTC (rev 2871) @@ -1,4 +1,4 @@ %var bitname curl %var pkgname CSWcurl %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurl.prototype =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurl.prototype 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/files/CSWcurl.prototype 2009-01-21 03:12:06 UTC (rev 2871) @@ -1,5 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/curl 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/curl.1 0644 root bin Added: csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend (rev 0) +++ csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend 2009-01-21 03:12:06 UTC (rev 2871) @@ -0,0 +1 @@ +P CSWcurlrt curlrt - Library for common Internet protocols Runtime Added: csw/mgar/pkg/curl/trunk/files/CSWcurldevel.gspec =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurldevel.gspec (rev 0) +++ csw/mgar/pkg/curl/trunk/files/CSWcurldevel.gspec 2009-01-21 03:12:06 UTC (rev 2871) @@ -0,0 +1,4 @@ +%var bitname curldevel +%var pkgname CSWcurldevel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Modified: csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend 2009-01-21 03:12:06 UTC (rev 2871) @@ -2,3 +2,5 @@ P CSWoldaprt openldap_rt - OpenLDAP runtime libraries (oldaprt) P CSWosslrt openssl_rt - Openssl runtime libraries P CSWzlib zlib - Zlib Data Compression Library +P CSWlibnet libnet - the libnet packet construction library +P CSWsasl sasl - Simple Authentication and Security Layer Modified: csw/mgar/pkg/curl/trunk/files/CSWcurlrt.gspec =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurlrt.gspec 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/files/CSWcurlrt.gspec 2009-01-21 03:12:06 UTC (rev 2871) @@ -1,4 +1,4 @@ %var bitname curlrt %var pkgname CSWcurlrt %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurlrt.prototype =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurlrt.prototype 2009-01-21 02:15:19 UTC (rev 2870) +++ csw/mgar/pkg/curl/trunk/files/CSWcurlrt.prototype 2009-01-21 03:12:06 UTC (rev 2871) @@ -1,77 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/curl-config 0755 root bin -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/curl 0755 root bin -f none /opt/csw/include/curl/curl.h 0644 root bin -f none /opt/csw/include/curl/curlbuild.h 0644 root bin -f none /opt/csw/include/curl/curlrules.h 0644 root bin -f none /opt/csw/include/curl/curlver.h 0644 root bin -f none /opt/csw/include/curl/easy.h 0644 root bin -f none /opt/csw/include/curl/mprintf.h 0644 root bin -f none /opt/csw/include/curl/multi.h 0644 root bin -f none /opt/csw/include/curl/stdcheaders.h 0644 root bin -f none /opt/csw/include/curl/typecheck-gcc.h 0644 root bin -f none /opt/csw/include/curl/types.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libcurl.a 0644 root bin -f none /opt/csw/lib/libcurl.so.4.1.1 0755 root bin -s none /opt/csw/lib/libcurl.so.4=libcurl.so.4.1.1 -s none /opt/csw/lib/libcurl.so=libcurl.so.4.1.1 -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/libcurl.pc 0644 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/curl-config.1 0644 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/curl_easy_cleanup.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_duphandle.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_escape.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_getinfo.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_init.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_pause.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_perform.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_recv.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_reset.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_send.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_setopt.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_strerror.3 0644 root bin -f none /opt/csw/share/man/man3/curl_easy_unescape.3 0644 root bin -f none /opt/csw/share/man/man3/curl_escape.3 0644 root bin -f none /opt/csw/share/man/man3/curl_formadd.3 0644 root bin -f none /opt/csw/share/man/man3/curl_formfree.3 0644 root bin -f none /opt/csw/share/man/man3/curl_formget.3 0644 root bin -f none /opt/csw/share/man/man3/curl_free.3 0644 root bin -f none /opt/csw/share/man/man3/curl_getdate.3 0644 root bin -f none /opt/csw/share/man/man3/curl_getenv.3 0644 root bin -f none /opt/csw/share/man/man3/curl_global_cleanup.3 0644 root bin -f none /opt/csw/share/man/man3/curl_global_init.3 0644 root bin -f none /opt/csw/share/man/man3/curl_global_init_mem.3 0644 root bin -f none /opt/csw/share/man/man3/curl_mprintf.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_add_handle.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_assign.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_cleanup.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_fdset.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_info_read.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_init.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_perform.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_remove_handle.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_setopt.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_socket.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_strerror.3 0644 root bin -f none /opt/csw/share/man/man3/curl_multi_timeout.3 0644 root bin -f none /opt/csw/share/man/man3/curl_share_cleanup.3 0644 root bin -f none /opt/csw/share/man/man3/curl_share_init.3 0644 root bin -f none /opt/csw/share/man/man3/curl_share_setopt.3 0644 root bin -f none /opt/csw/share/man/man3/curl_share_strerror.3 0644 root bin -f none /opt/csw/share/man/man3/curl_slist_append.3 0644 root bin -f none /opt/csw/share/man/man3/curl_slist_free_all.3 0644 root bin -f none /opt/csw/share/man/man3/curl_strequal.3 0644 root bin -f none /opt/csw/share/man/man3/curl_unescape.3 0644 root bin -f none /opt/csw/share/man/man3/curl_version.3 0644 root bin -f none /opt/csw/share/man/man3/curl_version_info.3 0644 root bin -f none /opt/csw/share/man/man3/libcurl-easy.3 0644 root bin -f none /opt/csw/share/man/man3/libcurl-errors.3 0644 root bin -f none /opt/csw/share/man/man3/libcurl-multi.3 0644 root bin -f none /opt/csw/share/man/man3/libcurl-share.3 0644 root bin -f none /opt/csw/share/man/man3/libcurl-tutorial.3 0644 root bin -f none /opt/csw/share/man/man3/libcurl.3 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Wed Jan 21 05:44:27 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 21 Jan 2009 04:44:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[2872] csw/mgar/pkg/curl/trunk/Makefile Message-ID: Revision: 2872 http://gar.svn.sourceforge.net/gar/?rev=2872&view=rev Author: harpchad Date: 2009-01-21 04:44:27 +0000 (Wed, 21 Jan 2009) Log Message: ----------- Disable amd64 due to missing dependencies Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-01-21 03:12:06 UTC (rev 2871) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-01-21 04:44:27 UTC (rev 2872) @@ -24,7 +24,11 @@ LIBDEPS += lib/openssl CONFIGURE_ARGS = $(DIRPATHS) --with-ssl -BUILD64 = 1 + +#Can't build amd64 until openldap has an amd64 build (Mantis 3028) +#BUILD64 = 1 +EXTRA_BUILD_ISAS_sparc = sparcv9 + TEST_SCRIPTS = PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jan 21 22:51:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 21 Jan 2009 21:51:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[2873] csw/mgar/pkg/pth/trunk/Makefile Message-ID: Revision: 2873 http://gar.svn.sourceforge.net/gar/?rev=2873&view=rev Author: dmichelsen Date: 2009-01-21 21:51:52 +0000 (Wed, 21 Jan 2009) Log Message: ----------- pth: Add SOURCEURL Modified Paths: -------------- csw/mgar/pkg/pth/trunk/Makefile Modified: csw/mgar/pkg/pth/trunk/Makefile =================================================================== --- csw/mgar/pkg/pth/trunk/Makefile 2009-01-21 04:44:27 UTC (rev 2872) +++ csw/mgar/pkg/pth/trunk/Makefile 2009-01-21 21:51:52 UTC (rev 2873) @@ -13,6 +13,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWpth,) +SPKG_SOURCEURL = http://www.gnu.org/software/pth/ + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -35,12 +37,3 @@ # the dynamic linker on Solaris/x86. The same Solaris versions on SPARC # don't have this problem. # [Ralf S. Engelschall] - -post-install: - cd $(WORKSRC) && ginstall pth-config.1 $(DESTDIR)$(mandir)/man1 - cd $(WORKSRC) && ginstall pth.3 $(DESTDIR)$(mandir)/man3 - ginstall -d $(DESTDIR)$(docdir)/$(GARNAME)-$(GARVERSION) - cd $(WORKSRC) && ginstall ANNOUNCE AUTHORS COPYING ChangeLog HACKING HISTORY INSTALL \ - NEWS PORTING README SUPPORT TESTS THANKS USERS \ - $(DESTDIR)$(docdir)/$(GARNAME)-$(GARVERSION) - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Jan 22 03:34:27 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 22 Jan 2009 02:34:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[2874] csw/mgar/pkg/cvsps/trunk Message-ID: Revision: 2874 http://gar.svn.sourceforge.net/gar/?rev=2874&view=rev Author: bdwalton Date: 2009-01-22 02:34:27 +0000 (Thu, 22 Jan 2009) Log Message: ----------- - Converted project to use autoconf/automake. - Still need implementations or workarounds for: setenv, unsetenv, strsep Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch csw/mgar/pkg/cvsps/trunk/files/0002-adding-script-to-do-the-auto-steps.patch csw/mgar/pkg/cvsps/trunk/files/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch csw/mgar/pkg/cvsps/trunk/files/0005-add-autoconf-checks-for-lsocket-lnsl.patch csw/mgar/pkg/cvsps/trunk/files/0006-corrected-naming-mistake-in-Makefile.am.patch Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-21 21:51:52 UTC (rev 2873) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-22 02:34:27 UTC (rev 2874) @@ -2,34 +2,40 @@ GARVERSION = 2.1 CATEGORIES = apps -DESCRIPTION = Brief description +DESCRIPTION = Patchsets for CVS define BLURB - Long description +CVSps is a program for generating 'patchset' information from a CVS repository. A patchset in this case is defined as a set of changes made to a collection of files, and all committed at the same time (using a single 'cvs commit' command). This information is valuable to seeing the big picture of the evolution of a cvs project. While cvs tracks revision information, it is often difficult to see what changes were committed 'atomically' to the repository. endef MASTER_SITES = http://www.cobite.com/cvsps/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWcvsps,) -PATCHFILES = patch-extralibs.diff +PATCHFILES = 0001-adding-initial-autotools-files.patch +PATCHFILES += 0002-adding-script-to-do-the-auto-steps.patch +PATCHFILES += 0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch +PATCHFILES += 0005-add-autoconf-checks-for-lsocket-lnsl.patch +PATCHFILES += 0006-corrected-naming-mistake-in-Makefile.am.patch -REQUIRED_PKGS = CSWzlib +PREREQUISITE_PKGS = CSWzlib CSWautomake CSWautoconf +REQUIRED_PKGS = CSWzlib CSWcvs + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz -# We don't have configure -CONFIGURE_SCRIPTS = - -BUILD_ARGS = CC="$(CC)" CFLAGS="-I. -DVERSION=\"$(GARVERSION)\" $(CFLAGS)" prefix="$(prefix)" -BUILD_ARGS += _EXTRA_LIBS="-lnsl -lsocket" - TEST_SCRIPTS = INSTALL_SCRIPTS = custom include gar/category.mk +pre-configure-isa-i386: + @echo About to initialize the autotools bits. + @(cd $(WORKSRC_FIRSTMOD); chmod +x autoinit.sh; ./autoinit.sh) + @$(MAKECOOKIE) + + install-custom: ginstall -d $(DESTDIR)$(bindir) ginstall -d $(DESTDIR)$(mandir)/man1 Modified: csw/mgar/pkg/cvsps/trunk/checksums =================================================================== --- csw/mgar/pkg/cvsps/trunk/checksums 2009-01-21 21:51:52 UTC (rev 2873) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-22 02:34:27 UTC (rev 2874) @@ -1,3 +1,7 @@ bde2110ed9f5d14de8f8cb04e9d596fe download/cvsps-2.1.tar.gz cb54db01900320e1bf80da166c60c2f8 download/CSWcvsps.gspec -fdfe30f050b93e6db82c665d830216e3 download/patch-extralibs.diff +cc014dedc4c04f49f820c083ba903439 download/0001-adding-initial-autotools-files.patch +bd3516f9223b80e6140247520ed767f8 download/0002-adding-script-to-do-the-auto-steps.patch +f2039869b307620fe8f1c88cf129d04d download/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch +7d7f7d520ea371bb0e0ed5424831b795 download/0005-add-autoconf-checks-for-lsocket-lnsl.patch +acbb7ea325559370e1804c88407c5304 download/0006-corrected-naming-mistake-in-Makefile.am.patch Added: csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch 2009-01-22 02:34:27 UTC (rev 2874) @@ -0,0 +1,62 @@ +From 00471f248d519bab09d6aedd13bc4cb00df577d8 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 01:48:47 +0100 +Subject: [PATCH] adding initial autotools files + +--- + Makefile.am | 2 ++ + configure.ac | 33 +++++++++++++++++++++++++++++++++ + 2 files changed, 35 insertions(+), 0 deletions(-) + create mode 100644 Makefile.am + create mode 100644 configure.ac + +diff --git a/Makefile.am b/Makefile.am +new file mode 100644 +index 0000000..efde4db +--- /dev/null ++++ b/Makefile.am +@@ -0,0 +1,2 @@ ++bin_PROGRAMS = cvssp ++cvssp_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c +diff --git a/configure.ac b/configure.ac +new file mode 100644 +index 0000000..2d7e79d +--- /dev/null ++++ b/configure.ac +@@ -0,0 +1,33 @@ ++AC_PREREQ([2.63]) ++AC_INIT([cvsps], [2.1]) ++AC_CONFIG_SRCDIR([util.h]) ++AC_CONFIG_HEADERS([config.h]) ++ ++# We're using automake too ++AM_INIT_AUTOMAKE(cvsps,2.1) ++ ++# Checks for programs. ++AC_PROG_CC ++AC_PROG_INSTALL ++ ++# Checks for libraries. ++# FIXME: Replace `main' with a function in `-lz': ++AC_CHECK_LIB([z], [gzputs]) ++ ++# Checks for header files. ++AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netdb.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h unistd.h]) ++ ++# Checks for typedefs, structures, and compiler characteristics. ++AC_TYPE_PID_T ++AC_TYPE_SIZE_T ++AC_TYPE_SSIZE_T ++ ++# Checks for library functions. ++AC_FUNC_FORK ++AC_FUNC_MALLOC ++AC_FUNC_MKTIME ++AC_CHECK_FUNCS([gethostbyname gettimeofday memmove memset mkdir regcomp setenv socket strchr strdup strerror strrchr strstr tzset]) ++ ++AC_CONFIG_FILES([Makefile]) ++AC_OUTPUT ++ +-- +1.6.0.5 + Added: csw/mgar/pkg/cvsps/trunk/files/0002-adding-script-to-do-the-auto-steps.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0002-adding-script-to-do-the-auto-steps.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0002-adding-script-to-do-the-auto-steps.patch 2009-01-22 02:34:27 UTC (rev 2874) @@ -0,0 +1,25 @@ +From b92b9590bec3e41238297d9f15d20b9e79c3e65b Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 01:54:49 +0100 +Subject: [PATCH] adding script to do the auto* steps + +--- + autoinit.sh | 6 ++++++ + 1 files changed, 6 insertions(+), 0 deletions(-) + create mode 100755 autoinit.sh + +diff --git a/autoinit.sh b/autoinit.sh +new file mode 100755 +index 0000000..d5d5881 +--- /dev/null ++++ b/autoinit.sh +@@ -0,0 +1,6 @@ ++#!/bin/sh ++ ++aclocal ++autoconf ++autoheader ++automake --add-missing --foreign +-- +1.6.0.5 + Added: csw/mgar/pkg/cvsps/trunk/files/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch 2009-01-22 02:34:27 UTC (rev 2874) @@ -0,0 +1,25 @@ +From 037ecab1f1c4fb5cb066273c235e850e57305f01 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 02:02:14 +0100 +Subject: [PATCH] make cvsps.c aware of config.h from autoconf + +--- + cvsps.c | 2 ++ + 1 files changed, 2 insertions(+), 0 deletions(-) + +diff --git a/cvsps.c b/cvsps.c +index 1e64e3c..d19b7ab 100644 +--- a/cvsps.c ++++ b/cvsps.c +@@ -3,6 +3,8 @@ + * See COPYING file for license information + */ + ++#include "config.h" ++ + #include + #include + #include +-- +1.6.0.5 + Added: csw/mgar/pkg/cvsps/trunk/files/0005-add-autoconf-checks-for-lsocket-lnsl.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0005-add-autoconf-checks-for-lsocket-lnsl.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0005-add-autoconf-checks-for-lsocket-lnsl.patch 2009-01-22 02:34:27 UTC (rev 2874) @@ -0,0 +1,30 @@ +From 25e9a38e60200cc65f1b0a9eae1328c7dac678f6 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 02:19:42 +0100 +Subject: [PATCH] add autoconf checks for -lsocket, -lnsl + +--- + configure.ac | 5 ++++- + 1 files changed, 4 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 2d7e79d..7a71222 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -11,9 +11,12 @@ AC_PROG_CC + AC_PROG_INSTALL + + # Checks for libraries. +-# FIXME: Replace `main' with a function in `-lz': + AC_CHECK_LIB([z], [gzputs]) + ++# socket stuff ++AC_CHECK_LIB([socket], [bind]) ++AC_CHECK_LIB([nsl],[gethostbyname]) ++ + # Checks for header files. + AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netdb.h netinet/in.h stdlib.h string.h strings.h sys/socket.h sys/time.h unistd.h]) + +-- +1.6.0.5 + Added: csw/mgar/pkg/cvsps/trunk/files/0006-corrected-naming-mistake-in-Makefile.am.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0006-corrected-naming-mistake-in-Makefile.am.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0006-corrected-naming-mistake-in-Makefile.am.patch 2009-01-22 02:34:27 UTC (rev 2874) @@ -0,0 +1,23 @@ +From c96aa7e5ec93643a0daf8b5b8149e5fb703f73d0 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 02:41:42 +0100 +Subject: [PATCH] corrected naming mistake in Makefile.am + +--- + Makefile.am | 6 ++++-- + 1 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index efde4db..9871652 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,2 +1,4 @@ +-bin_PROGRAMS = cvssp +-cvssp_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c ++bin_PROGRAMS = cvsps ++cvsps_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c \ ++ cbtcommon/debug.c cbtcommon/hash.c cbtcommon/sio.c \ ++ cbtcommon/tcpsocket.c cbtcommon/text_util.c +-- +1.6.0.5 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jan 22 17:23:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 16:23:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[2875] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 2875 http://gar.svn.sourceforge.net/gar/?rev=2875&view=rev Author: dmichelsen Date: 2009-01-22 16:23:12 +0000 (Thu, 22 Jan 2009) Log Message: ----------- mGAR v2: Refined optimized flags Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-01-22 02:34:27 UTC (rev 2874) +++ csw/mgar/gar/v2/gar.conf.mk 2009-01-22 16:23:12 UTC (rev 2875) @@ -259,15 +259,23 @@ MM_LIBDIR = $(MEMORYMODEL_LIBDIR_$(MEMORYMODEL)) MM_BINDIR = $(MEMORYMODEL_BINDIR_$(MEMORYMODEL)) -OPT_FLAGS_SOS11_sparc ?= -xO3 -OPT_FLAGS_SOS12_sparc ?= -xO3 - OPT_FLAGS_GCC3_sparc ?= -O2 -pipe - OPT_FLAGS_GCC4_sparc ?= -O2 -pipe - OPT_FLAGS_SOS11_i386 ?= -xO3 - OPT_FLAGS_SOS12_i386 ?= -xO3 - OPT_FLAGS_GCC3_i386 ?= -O2 -pipe - OPT_FLAGS_GCC4_i386 ?= -O2 -pipe +OPT_FLAGS_SOS ?= -xO3 +OPT_FLAGS_GCC ?= -O2 -pipe +OPT_FLAGS_SOS11 ?= $(OPT_FLAGS_SOS) +OPT_FLAGS_SOS12 ?= $(OPT_FLAGS_SOS) + OPT_FLAGS_GCC3 ?= $(OPT_FLAGS_GCC) + OPT_FLAGS_GCC4 ?= $(OPT_FLAGS_GCC) + +OPT_FLAGS_SOS11_sparc ?= $(OPT_FLAGS_SOS11) +OPT_FLAGS_SOS12_sparc ?= $(OPT_FLAGS_SOS12) + OPT_FLAGS_GCC3_sparc ?= $(OPT_FLAGS_GCC3) + OPT_FLAGS_GCC4_sparc ?= $(OPT_FLAGS_GCC4) + OPT_FLAGS_SOS11_i386 ?= $(OPT_FLAGS_SOS11) + OPT_FLAGS_SOS12_i386 ?= $(OPT_FLAGS_SOS12) + OPT_FLAGS_GCC3_i386 ?= $(OPT_FLAGS_GCC3) + OPT_FLAGS_GCC4_i386 ?= $(OPT_FLAGS_GCC4) + # Most of these are empty because '-march' implies '-mtune' OPT_ISAFLAGS_GCC3_amd64 ?= OPT_ISAFLAGS_GCC4_amd64 ?= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Thu Jan 22 18:23:41 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 22 Jan 2009 17:23:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[2876] csw/mgar/pkg/clamav/trunk Message-ID: Revision: 2876 http://gar.svn.sourceforge.net/gar/?rev=2876&view=rev Author: bonivart Date: 2009-01-22 17:23:38 +0000 (Thu, 22 Jan 2009) Log Message: ----------- clamav: arch fix Modified Paths: --------------