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: -------------- csw/mgar/pkg/clamav/trunk/Makefile csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2009-01-22 16:23:12 UTC (rev 2875) +++ csw/mgar/pkg/clamav/trunk/Makefile 2009-01-22 17:23:38 UTC (rev 2876) @@ -33,7 +33,7 @@ SPKG_CLASSES_CSWclamav = none cswcpsampleconf cswinitsmf -CFLAGS=-xO2 +OPT_FLAGS_SOS = -xO2 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-clamav @@ -52,7 +52,7 @@ SPKG_SOURCEURL = http://www.clamav.net/ -ENABLE_CHECK=0 +#ENABLE_CHECK=0 include gar/category.mk Modified: csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW =================================================================== --- csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW 2009-01-22 16:23:12 UTC (rev 2875) +++ csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW 2009-01-22 17:23:38 UTC (rev 2876) @@ -40,7 +40,7 @@ clamd.conf has a new option - MailMaxRecursion Package installation is using csw.conf, if available, to determine whether or not to start the daemons. -See http://www.blastwave.org/standards/csw.conf.html for details. +See http://www.opencsw.org/standards/csw.conf for details. The 'specificdaemonname' for this package is clamd and clamav-milter. # 16Oct2006 @@ -148,7 +148,7 @@ There are several ways to use this pkg, i.e., with clamd, with clamav-milter. Some options need to be changed to setup an environment. Please click the 'View news and info' buttom at - http://www.blastwave.org/packages.php/clamav to review the setup + http://www.opencsw.org/packages.php/clamav to review the setup that I use to run clamd and clamav-milter with freshclam running from crontab. 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 18:51:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 17:51:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[2877] csw/mgar/pkg/neon/trunk Message-ID: Revision: 2877 http://gar.svn.sourceforge.net/gar/?rev=2877&view=rev Author: dmichelsen Date: 2009-01-22 17:51:34 +0000 (Thu, 22 Jan 2009) Log Message: ----------- neon: Updating to 0.28.4 and mGAR v2, waiting for expat and krb5 to be fully 64 bit Modified Paths: -------------- csw/mgar/pkg/neon/trunk/Makefile csw/mgar/pkg/neon/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype csw/mgar/pkg/neon/trunk/files/CSWneon.depend csw/mgar/pkg/neon/trunk/files/CSWneon.prototype Property Changed: ---------------- csw/mgar/pkg/neon/trunk/ Property changes on: csw/mgar/pkg/neon/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/neon/trunk/Makefile =================================================================== --- csw/mgar/pkg/neon/trunk/Makefile 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/Makefile 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,7 +1,10 @@ GARNAME = neon -GARVERSION = 0.26.3 +GARVERSION = 0.28.3 CATEGORIES = lib +EXTRA_MODULATORS = GARVERSION +MODULATIONS_GARVERSION = 0.26.4 0.28.3 + DESCRIPTION = Neon HTTP and WebDAV client library define BLURB neon is an HTTP and WebDAV client library for Unix systems, with a C language @@ -10,18 +13,18 @@ be easily implemented. endef -# Compatibility libraries -LIBNAME = libneon.so -COMPATVERS = 24.0.7 25.0.5 -COMPATLIBS = $(foreach A,i386 sparc, \ - $(foreach V,$(COMPATVERS),$(LIBNAME).$(V).$(A).bz2)) - MASTER_SITES = http://www.webdav.org/$(GARNAME)/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWneon,$(ADMSTANDARD)) -DISTFILES += $(call admfiles,CSWneon-devel,$(ADMSTANDARD)) -#DISTFILES += $(COMPATLIBS) +SOURCEFILES = $(foreach VERSION,$(MODULATIONS_GARVERSION), $(GARNAME)-$(VERSION).tar.gz) +DISTFILES = $(SOURCEFILES) +DISTFILES += $(call admfiles,CSWneon,) +DISTFILES += $(call admfiles,CSWneon-devel,) +REQUIRED_PKGS_CSWneon = CSWexpat CSWkrb5lib CSWosslrt CSWzlib +REQUIRED_PKGS_CSWneon-devel = CSWneon + +SPKG_DESC_CSWneon = Neon HTTP and WebDAV client library +SPKG_DESC_CSWneon-devel = Neon HTTP and WebDAV development support + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -30,14 +33,27 @@ CONFIGURE_ARGS += --with-ssl=openssl CONFIGURE_ARGS += --with-expat -include gar/category.mk +BUILD64 = 1 +NO_ISAEXEC = 1 -#post-install: install-compat-libs +MERGE_SCRIPTS_isa-i386-garversion-0.26.4 = copy-only +MERGE_DIRS_isa-i386-garversion-0.26.4 = $(libdir) +MERGE_SCRIPTS_isa-amd64-garversion-0.26.4 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-0.26.4 = $(libdir) -install-compat-libs: - @echo $(DISTFILES) - @for version in $(COMPATVERS) ; do \ - ginstall -m 755 $(WORKDIR)/$(LIBNAME).$$version.$(GARCH) \ - $(DESTDIR)$(libdir)/$(LIBNAME).$$version ; \ - done - @$(MAKECOOKIE) +MERGE_SCRIPTS_isa-i386-garversion-0.28.3 = copy-all +MERGE_SCRIPTS_isa-amd64-garversion-0.28.3 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-0.28.3 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-0.26.4 = copy-only +MERGE_DIRS_isa-sparcv8-garversion-0.26.4 = $(libdir) +MERGE_SCRIPTS_isa-sparcv9-garversion-0.26.4 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-0.26.4 = $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-0.28.3 = copy-all +MERGE_SCRIPTS_isa-sparcv9-garversion-0.28.3 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-0.28.3 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + +PKGFILES_CSWneon-devel = $(PKGFILES_DEVEL) + +include gar/category.mk Modified: csw/mgar/pkg/neon/trunk/checksums =================================================================== --- csw/mgar/pkg/neon/trunk/checksums 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/checksums 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,7 +1,4 @@ -6e52cd9c03e372026d6eccbfb80f09ef download/neon-0.26.3.tar.gz +2d11fff51ffa856fc6b5d4bd801d6cc4 download/neon-0.26.4.tar.gz +47599a328862ce64ac3c52726d6daa12 download/neon-0.28.3.tar.gz 643aa565e0d9f38f0153ab72b6dc5621 download/CSWneon.gspec -cbce1c593467c9783a19b1a996cf5913 download/CSWneon.prototype -8d6f9c43747b4e4dee4ed216cd18a17b download/CSWneon.depend 5e17c5dc62032a174e4e39fa33720aff download/CSWneon-devel.gspec -8bdf9849a69b130170d9065e6b067b0c download/CSWneon-devel.prototype -366228c1cedb93368c4f4a9ffb98412d download/CSWneon-devel.depend Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend 2009-01-22 17:51:34 UTC (rev 2877) @@ -1 +0,0 @@ -P CSWneon neon - Neon HTTP and WebDAV client library Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,171 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/neon-config 0755 root bin -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/neon 0755 root bin -f none /opt/csw/include/neon/ne_207.h 0644 root bin -f none /opt/csw/include/neon/ne_acl.h 0644 root bin -f none /opt/csw/include/neon/ne_alloc.h 0644 root bin -f none /opt/csw/include/neon/ne_auth.h 0644 root bin -f none /opt/csw/include/neon/ne_basic.h 0644 root bin -f none /opt/csw/include/neon/ne_compress.h 0644 root bin -f none /opt/csw/include/neon/ne_dates.h 0644 root bin -f none /opt/csw/include/neon/ne_defs.h 0644 root bin -f none /opt/csw/include/neon/ne_i18n.h 0644 root bin -f none /opt/csw/include/neon/ne_locks.h 0644 root bin -f none /opt/csw/include/neon/ne_md5.h 0644 root bin -f none /opt/csw/include/neon/ne_props.h 0644 root bin -f none /opt/csw/include/neon/ne_redirect.h 0644 root bin -f none /opt/csw/include/neon/ne_request.h 0644 root bin -f none /opt/csw/include/neon/ne_session.h 0644 root bin -f none /opt/csw/include/neon/ne_socket.h 0644 root bin -f none /opt/csw/include/neon/ne_ssl.h 0644 root bin -f none /opt/csw/include/neon/ne_string.h 0644 root bin -f none /opt/csw/include/neon/ne_uri.h 0644 root bin -f none /opt/csw/include/neon/ne_utils.h 0644 root bin -f none /opt/csw/include/neon/ne_xml.h 0644 root bin -f none /opt/csw/include/neon/ne_xmlreq.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libneon.a 0644 root bin -f none /opt/csw/lib/libneon.la 0755 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/neon.pc 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/neon-0.26.3 0755 root bin -d none /opt/csw/share/doc/neon-0.26.3/html 0755 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/api.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/biblio.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/compliance.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/features.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/index.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/intro.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/ref.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refalloc.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refauth.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbuf.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufapp.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufcr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufdest.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufutil.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refcert.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refclicert.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refconfig.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/referr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/reffeat.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refgetst.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refi18n.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refiaddr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refneon.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refopts.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreq.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreqbody.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreqhdr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreqopts.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refresolve.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refresphdr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsess.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refshave.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsockinit.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslca.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslcert2.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslcertio.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refssldname.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslvfy.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refstatus.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/reftok.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refvers.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refxml.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/using.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/xml.html 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/neon-config.1 0644 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/ne_add_request_header.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_error.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_first.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_next.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_resolve.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_result.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_altered.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_append.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_clear.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_concat.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_finish.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_grow.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_ncreate.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_zappend.3 0644 root bin -f none /opt/csw/share/man/man3/ne_calloc.3 0644 root bin -f none /opt/csw/share/man/man3/ne_close_connection.3 0644 root bin -f none /opt/csw/share/man/man3/ne_forget_auth.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_error.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_response_header.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_scheme.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_server_hostport.3 0644 root bin -f none /opt/csw/share/man/man3/ne_has_support.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_status.3 0644 root bin -f none /opt/csw/share/man/man3/ne_i18n_init.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_cmp.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_free.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_make.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_print.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_typeof.3 0644 root bin -f none /opt/csw/share/man/man3/ne_malloc.3 0644 root bin -f none /opt/csw/share/man/man3/ne_oom_callback.3 0644 root bin -f none /opt/csw/share/man/man3/ne_print_request_header.3 0644 root bin -f none /opt/csw/share/man/man3/ne_qtoken.3 0644 root bin -f none /opt/csw/share/man/man3/ne_realloc.3 0644 root bin -f none /opt/csw/share/man/man3/ne_request_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_request_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_request_dispatch.3 0644 root bin -f none /opt/csw/share/man/man3/ne_response_header_iterate.3 0644 root bin -f none /opt/csw/share/man/man3/ne_session_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_session_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_session_proxy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_error.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_persist.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_proxy_auth.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_read_timeout.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_body_buffer.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_body_fd.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_body_fd64.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_expect100.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_server_auth.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_useragent.3 0644 root bin -f none /opt/csw/share/man/man3/ne_shave.3 0644 root bin -f none /opt/csw/share/man/man3/ne_sock_exit.3 0644 root bin -f none /opt/csw/share/man/man3/ne_sock_init.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_cmp.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_export.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_free.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_identity.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_import.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_issuer.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_read.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_signedby.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_subject.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_write.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_decrypt.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_encrypted.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_free.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_name.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_owner.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_read.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_dname_cmp.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_readable_dname.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_set_verify.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_trust_cert.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_trust_default_ca.3 0644 root bin -f none /opt/csw/share/man/man3/ne_status.3 0644 root bin -f none /opt/csw/share/man/man3/ne_strdup.3 0644 root bin -f none /opt/csw/share/man/man3/ne_strndup.3 0644 root bin -f none /opt/csw/share/man/man3/ne_token.3 0644 root bin -f none /opt/csw/share/man/man3/ne_version_match.3 0644 root bin -f none /opt/csw/share/man/man3/ne_version_string.3 0644 root bin -f none /opt/csw/share/man/man3/ne_xml_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_xml_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/neon.3 0644 root bin Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon.depend =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon.depend 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon.depend 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,4 +0,0 @@ -P CSWexpat expat - XML Parser Toolkit -P CSWkrb5lib krb5_lib - MIT Kerberos 5 core libraries -P CSWosslrt openssl_rt - Openssl runtime libraries -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon.prototype =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon.prototype 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon.prototype 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,30 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libneon.so.26.0.3 0755 root bin -s none /opt/csw/lib/libneon.so.26=libneon.so.26.0.3 root bin -s none /opt/csw/lib/libneon.so=libneon.so.26.0.3 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/locale 0755 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/neon.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/neon.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/neon.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/neon.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/neon.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/neon.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/neon.mo 0644 root bin -d none /opt/csw/share/locale/zh 0755 root bin -d none /opt/csw/share/locale/zh/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/zh/LC_MESSAGES/neon.mo 0644 root bin 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 19:18:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 18:18:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2878] csw/mgar/pkg/expat/trunk Message-ID: Revision: 2878 http://gar.svn.sourceforge.net/gar/?rev=2878&view=rev Author: dmichelsen Date: 2009-01-22 18:18:38 +0000 (Thu, 22 Jan 2009) Log Message: ----------- expat: Update to 2.0.1 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/expat/trunk/Makefile csw/mgar/pkg/expat/trunk/checksums csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec Removed Paths: ------------- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype csw/mgar/pkg/expat/trunk/files/CSWexpat.depend csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype csw/mgar/pkg/expat/trunk/files/libexpat.so.0.4.0 csw/mgar/pkg/expat/trunk/files/libexpat.so.0.5.0 Property Changed: ---------------- csw/mgar/pkg/expat/trunk/ Property changes on: csw/mgar/pkg/expat/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/expat/trunk/Makefile =================================================================== --- csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,5 +1,5 @@ GARNAME = expat -GARVERSION = 2.0.0 +GARVERSION = 2.0.1 CATEGORIES = lib DESCRIPTION = XML Parser Toolkit @@ -11,29 +11,23 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWexpat,depend prototype) -DISTFILES += $(call admfiles,CSWexpat-devel,depend prototype) +DISTFILES += $(call admfiles,CSWexpat,) # We define upstream file regex so we can be notifed of new upstream software release UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10127 UPSTREAM_USE_SF = 1 UFILES_REGEX = (\d+(?:\.\d+)*) -# Compatibility libraries -EXTLIBS += libexpat.so.0.4.0 -EXTLIBS += libexpat.so.0.5.0 -DISTFILES += $(EXTLIBS) +BUILD64 = 1 +NO_ISAEXEC = 1 +CONFIGURE_ARGS = $(DIRPATHS) + # The expat 'check' target tries to compile tests that use GCC # constructs -- won't compile under Forte without hackery. TEST_TARGET = check TEST_SCRIPTS = -CONFIGURE_ARGS = $(DIRPATHS) +PKGFILES_CSWexpat-devel = $(PKGFILES_DEVEL) include gar/category.mk - -post-install: - @for extlib in $(EXTLIBS) ; do \ - install -m 0755 $(WORKDIR)/$$extlib $(DESTDIR)$(libdir) ; \ - done Modified: csw/mgar/pkg/expat/trunk/checksums =================================================================== --- csw/mgar/pkg/expat/trunk/checksums 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/checksums 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,9 +1,3 @@ -d945df7f1c0868c5c73cf66ba9596f3f download/expat-2.0.0.tar.gz -7145f62799b8019b4636811f22eed0dc download/CSWexpat.gspec -8093298b67861e241b0d2499c9f2ff89 download/CSWexpat.depend -442c9a9124f9700d5156bf24baf8491b download/CSWexpat.prototype -2fb9c175c9f5d1e21f0531c1cada0994 download/CSWexpat-devel.gspec -3dfca43e9c14ab646c8aadfc59093ba3 download/CSWexpat-devel.depend -7638ec36b2ae51da9b300bee9a18d349 download/CSWexpat-devel.prototype -0d36c0738fa471a0fcae0cd565016295 download/libexpat.so.0.4.0 -b52745e58a5dab5df7a459d25d54d65d download/libexpat.so.0.5.0 +ee8b492592568805593f81f8cdf2a04c download/expat-2.0.1.tar.gz +7547f56dfe29c7f8a29983ba60da41a1 download/CSWexpat.gspec +4542a961d5540f2c0b0328f7a5675005 download/CSWexpat-devel.gspec Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend 2009-01-22 18:18:38 UTC (rev 2878) @@ -1 +0,0 @@ -P CSWexpat expat - XML Parser Toolkit Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,5 +0,0 @@ -%var bitname expat_devel -%var pkgname CSWexpat-devel -%var desc XML Parsing Toolkit - Development Support -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,6 +0,0 @@ -d none /opt/csw/include 0755 root bin -f none /opt/csw/include/expat.h 0644 root bin -f none /opt/csw/include/expat_external.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libexpat.a 0644 root bin -f none /opt/csw/lib/libexpat.la 0755 root bin Modified: csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,4 +1,4 @@ %var bitname expat %var pkgname CSWexpat %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,13 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/xmlwf 0755 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libexpat.so.0.4.0 0755 root bin -f none /opt/csw/lib/libexpat.so.0.5.0 0755 root bin -s none /opt/csw/lib/libexpat.so.0=libexpat.so.0.5.0 -f none /opt/csw/lib/libexpat.so.1.5.0 0755 root bin -s none /opt/csw/lib/libexpat.so.1=libexpat.so.1.5.0 -s none /opt/csw/lib/libexpat.so=libexpat.so.1.5.0 -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/xmlwf.1 0644 root bin Deleted: csw/mgar/pkg/expat/trunk/files/libexpat.so.0.4.0 =================================================================== (Binary files differ) Deleted: csw/mgar/pkg/expat/trunk/files/libexpat.so.0.5.0 =================================================================== (Binary files differ) 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 20:51:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 19:51:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[2879] csw/mgar/pkg/libgcrypt/trunk Message-ID: Revision: 2879 http://gar.svn.sourceforge.net/gar/?rev=2879&view=rev Author: dmichelsen Date: 2009-01-22 19:51:51 +0000 (Thu, 22 Jan 2009) Log Message: ----------- libgcrypt: Update to 1.4.4 which includes bugfixes reported upstream Modified Paths: -------------- csw/mgar/pkg/libgcrypt/trunk/Makefile csw/mgar/pkg/libgcrypt/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff Modified: csw/mgar/pkg/libgcrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/Makefile 2009-01-22 18:18:38 UTC (rev 2878) +++ csw/mgar/pkg/libgcrypt/trunk/Makefile 2009-01-22 19:51:51 UTC (rev 2879) @@ -1,18 +1,16 @@ GARNAME = libgcrypt -GARVERSION = 1.4.3 +GARVERSION = 1.4.4 CATEGORIES = lib DESCRIPTION = GNU libgcrypt define BLURB - Libgcrypt is GNU's basic cryptographic library. + 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 Modified: csw/mgar/pkg/libgcrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/checksums 2009-01-22 18:18:38 UTC (rev 2878) +++ csw/mgar/pkg/libgcrypt/trunk/checksums 2009-01-22 19:51:51 UTC (rev 2879) @@ -1,3 +1,2 @@ -46e50e811ed51f1e0e8dd677dded967d download/libgcrypt-1.4.3.tar.bz2 +34105aa927e23c217741966496b97e67 download/libgcrypt-1.4.4.tar.bz2 94730391b2ab2e9b63227d133dc2547b download/CSWgcrypt.gspec -fec326b0bfff6b1c6ff978c33c7bcd8f download/patch-random.diff Deleted: csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff 2009-01-22 18:18:38 UTC (rev 2878) +++ csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff 2009-01-22 19:51:51 UTC (rev 2879) @@ -1,10 +0,0 @@ -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 dmichelsen at users.sourceforge.net Thu Jan 22 21:11:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 20:11:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2880] csw/mgar/pkg Message-ID: Revision: 2880 http://gar.svn.sourceforge.net/gar/?rev=2880&view=rev Author: dmichelsen Date: 2009-01-22 20:11:32 +0000 (Thu, 22 Jan 2009) Log Message: ----------- exiftool: Initial commit Added Paths: ----------- csw/mgar/pkg/exiftool/ csw/mgar/pkg/exiftool/branches/ csw/mgar/pkg/exiftool/tags/ csw/mgar/pkg/exiftool/trunk/ csw/mgar/pkg/exiftool/trunk/Makefile csw/mgar/pkg/exiftool/trunk/checksums csw/mgar/pkg/exiftool/trunk/files/ csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec Property changes on: csw/mgar/pkg/exiftool/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/exiftool/trunk/Makefile =================================================================== --- csw/mgar/pkg/exiftool/trunk/Makefile (rev 0) +++ csw/mgar/pkg/exiftool/trunk/Makefile 2009-01-22 20:11:32 UTC (rev 2880) @@ -0,0 +1,27 @@ +GARNAME = exiftool +GARVERSION = 7.62 +CATEGORIES = cpan + +DESCRIPTION = Read, Write and Edit Image File Meta Information +define BLURB + ExifTool is a platform-independent Perl library plus a command-line application for + reading, writing and editing meta information in image, audio and video files. +endef + +DISTNAME = Image-ExifTool-$(GARVERSION) + +MASTER_SITES = http://owl.phy.queensu.ca/~phil/exiftool/ +MODDIST = +DISTFILES = $(DISTNAME).tar.gz +DISTFILES += $(call admfiles,CSWexiftool,) + +# 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/exiftool/trunk/checksums =================================================================== --- csw/mgar/pkg/exiftool/trunk/checksums (rev 0) +++ csw/mgar/pkg/exiftool/trunk/checksums 2009-01-22 20:11:32 UTC (rev 2880) @@ -0,0 +1,2 @@ +f95241fdcf8e9b71ef1114f1855b072f download/Image-ExifTool-7.62.tar.gz +13f9aae615a5de5e3c145b374950a75c download/CSWexiftool.gspec Added: csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec =================================================================== --- csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec (rev 0) +++ csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec 2009-01-22 20:11:32 UTC (rev 2880) @@ -0,0 +1,9 @@ +%var bitname exiftool +%var pkgname CSWexiftool +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright +Copyright 2003-2009, Phil Harvey + +This is free software; you can 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 dmichelsen at users.sourceforge.net Thu Jan 22 22:24:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:24:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[2881] csw/mgar/pkg Message-ID: Revision: 2881 http://gar.svn.sourceforge.net/gar/?rev=2881&view=rev Author: dmichelsen Date: 2009-01-22 21:24:25 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl: Initial commit Added Paths: ----------- csw/mgar/pkg/tcl/ csw/mgar/pkg/tcl/branches/ csw/mgar/pkg/tcl/tags/ csw/mgar/pkg/tcl/trunk/ csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums csw/mgar/pkg/tcl/trunk/files/ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Property changes on: csw/mgar/pkg/tcl/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/tcl/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:24:25 UTC (rev 2881) @@ -0,0 +1,35 @@ +GARNAME = tcl +GARVERSION = 8.5.6 +CATEGORIES = lang + +DESCRIPTION = Tcl programming language +define BLURB +endef + +SF_PROJ = tcl +MASTER_SITES = $(SF_MIRRORS) + +DISTNAME = $(GARNAME)$(GARVERSION) +DISTFILES = $(DISTNAME)-src.tar.gz +DISTFILES += $(call admfiles,CSWtcl,) + +SPKG_SOURCEURL = http://www.tcl.tk/ + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10894 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*)-src.tar.gz + +BUILD64 = 1 +NO_ISAEXEC = 1 + +WORKSRC = $(WORKDIR)/$(DISTNAME)/unix + +INCLUDE_FLAGS = + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + +CFLAGS := $(filter-out -I%,$(CFLAGS)) +DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Added: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums (rev 0) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:24:25 UTC (rev 2881) @@ -0,0 +1,2 @@ +d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz +28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Added: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec (rev 0) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-01-22 21:24:25 UTC (rev 2881) @@ -0,0 +1,4 @@ +%var bitname tcl +%var pkgname CSWtcl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22:28:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:28:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2882] csw/mgar/pkg Message-ID: Revision: 2882 http://gar.svn.sourceforge.net/gar/?rev=2882&view=rev Author: dmichelsen Date: 2009-01-22 21:28:09 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl85: Rename from tcl, the original tcl is going to contain 8.4.x Added Paths: ----------- csw/mgar/pkg/tcl85/ Removed Paths: ------------- csw/mgar/pkg/tcl/ 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 22:30:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:30:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[2883] csw/mgar/pkg/tcl85/trunk Message-ID: Revision: 2883 http://gar.svn.sourceforge.net/gar/?rev=2883&view=rev Author: dmichelsen Date: 2009-01-22 21:30:41 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl85: Rename package files Modified Paths: -------------- csw/mgar/pkg/tcl85/trunk/Makefile csw/mgar/pkg/tcl85/trunk/checksums Added Paths: ----------- csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec Removed Paths: ------------- csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec Modified: csw/mgar/pkg/tcl85/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:30:41 UTC (rev 2883) @@ -11,7 +11,7 @@ DISTNAME = $(GARNAME)$(GARVERSION) DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) +DISTFILES += $(call admfiles,CSWtcl85,) SPKG_SOURCEURL = http://www.tcl.tk/ Modified: csw/mgar/pkg/tcl85/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl85/trunk/checksums 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl85/trunk/checksums 2009-01-22 21:30:41 UTC (rev 2883) @@ -1,2 +1,2 @@ d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec +4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec Deleted: csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec 2009-01-22 21:30:41 UTC (rev 2883) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Copied: csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec (from rev 2882, csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec) =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec (rev 0) +++ csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec 2009-01-22 21:30:41 UTC (rev 2883) @@ -0,0 +1,4 @@ +%var bitname tcl85 +%var pkgname CSWtcl85 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22:32:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:32:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2884] csw/mgar/pkg Message-ID: Revision: 2884 http://gar.svn.sourceforge.net/gar/?rev=2884&view=rev Author: dmichelsen Date: 2009-01-22 21:32:37 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl: Clone from tcl 8.5.x Added Paths: ----------- csw/mgar/pkg/tcl/ csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec Removed Paths: ------------- csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Deleted: csw/mgar/pkg/tcl/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) @@ -1,35 +0,0 @@ -GARNAME = tcl -GARVERSION = 8.5.6 -CATEGORIES = lang - -DESCRIPTION = Tcl programming language -define BLURB -endef - -SF_PROJ = tcl -MASTER_SITES = $(SF_MIRRORS) - -DISTNAME = $(GARNAME)$(GARVERSION) -DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) - -SPKG_SOURCEURL = http://www.tcl.tk/ - -# We define upstream file regex so we can be notifed of new upstream software release -UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10894 -UPSTREAM_USE_SF = 1 -UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*)-src.tar.gz - -BUILD64 = 1 -NO_ISAEXEC = 1 - -WORKSRC = $(WORKDIR)/$(DISTNAME)/unix - -INCLUDE_FLAGS = - -CONFIGURE_ARGS = $(DIRPATHS) - -include gar/category.mk - -CFLAGS := $(filter-out -I%,$(CFLAGS)) -DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Copied: csw/mgar/pkg/tcl/trunk/Makefile (from rev 2883, csw/mgar/pkg/tcl85/trunk/Makefile) =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) @@ -0,0 +1,35 @@ +GARNAME = tcl +GARVERSION = 8.4.19 +CATEGORIES = lang + +DESCRIPTION = Tcl programming language +define BLURB +endef + +SF_PROJ = tcl +MASTER_SITES = $(SF_MIRRORS) + +DISTNAME = $(GARNAME)$(GARVERSION) +DISTFILES = $(DISTNAME)-src.tar.gz +DISTFILES += $(call admfiles,CSWtcl,) + +SPKG_SOURCEURL = http://www.tcl.tk/ + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10894 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*)-src.tar.gz + +BUILD64 = 1 +NO_ISAEXEC = 1 + +WORKSRC = $(WORKDIR)/$(DISTNAME)/unix + +INCLUDE_FLAGS = + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + +CFLAGS := $(filter-out -I%,$(CFLAGS)) +DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Deleted: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl85/trunk/checksums 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) @@ -1,2 +0,0 @@ -d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Copied: csw/mgar/pkg/tcl/trunk/checksums (from rev 2883, csw/mgar/pkg/tcl85/trunk/checksums) =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums (rev 0) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) @@ -0,0 +1,2 @@ +d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz +4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec Deleted: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-01-22 21:32:37 UTC (rev 2884) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Copied: csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec (from rev 2883, csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec) =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec (rev 0) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 21:32:37 UTC (rev 2884) @@ -0,0 +1,4 @@ +%var bitname tcl85 +%var pkgname CSWtcl85 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22 22:48:45 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:48:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[2885] csw/mgar/pkg/libxslt/trunk Message-ID: Revision: 2885 http://gar.svn.sourceforge.net/gar/?rev=2885&view=rev Author: harpchad Date: 2009-01-22 21:48:44 +0000 (Thu, 22 Jan 2009) Log Message: ----------- - Move depends to Makefile - Add package descriptions Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile csw/mgar/pkg/libxslt/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:48:44 UTC (rev 2885) @@ -10,11 +10,17 @@ MASTER_SITES = ftp://xmlsoft.org/libxslt/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibxslt,depend) -DISTFILES += $(call admfiles,CSWlibxsltdevel,depend) -DISTFILES += $(call admfiles,CSWpylibxslt,depend) +DISTFILES += $(call admfiles,CSWlibxslt,) +DISTFILES += $(call admfiles,CSWlibxsltdevel,) +DISTFILES += $(call admfiles,CSWpylibxslt, PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel + +SPKG_DESC_CSWlibxslt = XSLT engine runtime package +SPKG_DESC_CSWlibxsltdevel = XSLT engine development package +SPKG_DESC_CSWpylibxslt = XSLT engine python package + +SPKG_SOURCEURL = http://xmlsoft.org/XSLT/ TEST_TARGET = check # We define upstream file regex so we can be notifed of new upstream software release @@ -29,9 +35,12 @@ CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) BUILD64 = 1 - NO_ISAEXEC = 1 +REQUIRED_PKGS_CSWlibxslt = CSWgcrypt CSWgpgerr CSWiconv CSWlibxml2 CSWzlib +REQUIRED_PKGS_CSWlibxsltdevel = CSWlibxslt +REQUIRED_PKGS_CSWpylibxslt = CSWpython CSWlibxslt + PKGFILES_CSWlibxsltdevel = $(PKGFILES_DEVEL) PKGFILES_CSWlibxsltdevel += $(docdir)/libxslt-$(GARVERSION)/.* PKGFILES_CSWlibxsltdevel += $(libdir)/xsltConf.sh Modified: csw/mgar/pkg/libxslt/trunk/checksums =================================================================== --- csw/mgar/pkg/libxslt/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/checksums 2009-01-22 21:48:44 UTC (rev 2885) @@ -1,7 +1,4 @@ -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 Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend 2009-01-22 21:48:44 UTC (rev 2885) @@ -1,5 +0,0 @@ -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 Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend 2009-01-22 21:48:44 UTC (rev 2885) @@ -1 +0,0 @@ -P CSWlibxslt libxslt - XSLT engine for the XML Toolkit Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend 2009-01-22 21:48:44 UTC (rev 2885) @@ -1,2 +0,0 @@ -P CSWlibxslt libxslt - XSLT engine for the XML Toolkit -P CSWpython python - A high-level scripting language. 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 22 22:52:01 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:52:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[2886] csw/mgar/pkg/libxslt/trunk/Makefile Message-ID: Revision: 2886 http://gar.svn.sourceforge.net/gar/?rev=2886&view=rev Author: harpchad Date: 2009-01-22 21:52:00 +0000 (Thu, 22 Jan 2009) Log Message: ----------- typo, missing paren Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:48:44 UTC (rev 2885) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:52:00 UTC (rev 2886) @@ -12,7 +12,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWlibxslt,) DISTFILES += $(call admfiles,CSWlibxsltdevel,) -DISTFILES += $(call admfiles,CSWpylibxslt, +DISTFILES += $(call admfiles,CSWpylibxslt,) PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel 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 22:59:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:59:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[2887] csw/mgar/pkg/expat/trunk Message-ID: Revision: 2887 http://gar.svn.sourceforge.net/gar/?rev=2887&view=rev Author: dmichelsen Date: 2009-01-22 21:59:25 +0000 (Thu, 22 Jan 2009) Log Message: ----------- expat: Make combined package with 1.95.8 and 2.0.1 for apps binding to libexpat.so.0 Modified Paths: -------------- csw/mgar/pkg/expat/trunk/Makefile csw/mgar/pkg/expat/trunk/checksums Modified: csw/mgar/pkg/expat/trunk/Makefile =================================================================== --- csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 21:52:00 UTC (rev 2886) +++ csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 21:59:25 UTC (rev 2887) @@ -2,6 +2,9 @@ GARVERSION = 2.0.1 CATEGORIES = lib +EXTRA_MODULATORS = GARVERSION +MODULATIONS_GARVERSION = 1.95.8 2.0.1 + DESCRIPTION = XML Parser Toolkit define BLURB This is James Clark's Expat XML parser library in C. It is a stream oriented @@ -10,7 +13,8 @@ endef MASTER_SITES = $(SF_MIRRORS) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +SOURCEFILES = $(foreach VERSION,$(MODULATIONS_GARVERSION), $(GARNAME)-$(VERSION).tar.gz) +DISTFILES = $(SOURCEFILES) DISTFILES += $(call admfiles,CSWexpat,) # We define upstream file regex so we can be notifed of new upstream software release @@ -28,6 +32,26 @@ TEST_TARGET = check TEST_SCRIPTS = -PKGFILES_CSWexpat-devel = $(PKGFILES_DEVEL) +ifeq ($(GARVERSION),1.95.8) +INSTALL_OVERRIDE_DIRS = prefix exec_prefix bindir libdir includedir man1dir +endif +MERGE_SCRIPTS_isa-i386-garversion-1.95.8 = copy-only +MERGE_DIRS_isa-i386-garversion-1.95.8 = $(libdir) +MERGE_SCRIPTS_isa-amd64-garversion-1.95.8 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-1.95.8 = $(libdir) + +MERGE_SCRIPTS_isa-i386-garversion-2.0.1 = copy-all +MERGE_SCRIPTS_isa-amd64-garversion-2.0.1 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-2.0.1 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-1.95.8 = copy-only +MERGE_DIRS_isa-sparcv8-garversion-1.95.8 = $(libdir) +MERGE_SCRIPTS_isa-sparcv9-garversion-1.95.8 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-1.95.8 = $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-2.0.1 = copy-all +MERGE_SCRIPTS_isa-sparcv9-garversion-2.0.1 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-2.0.1 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + include gar/category.mk Modified: csw/mgar/pkg/expat/trunk/checksums =================================================================== --- csw/mgar/pkg/expat/trunk/checksums 2009-01-22 21:52:00 UTC (rev 2886) +++ csw/mgar/pkg/expat/trunk/checksums 2009-01-22 21:59:25 UTC (rev 2887) @@ -1,3 +1,3 @@ +aff487543845a82fe262e6e2922b4c8e download/expat-1.95.8.tar.gz ee8b492592568805593f81f8cdf2a04c download/expat-2.0.1.tar.gz 7547f56dfe29c7f8a29983ba60da41a1 download/CSWexpat.gspec -4542a961d5540f2c0b0328f7a5675005 download/CSWexpat-devel.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 Thu Jan 22 23:01:46 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 22:01:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2888] csw/mgar/pkg/tcl85/trunk Message-ID: Revision: 2888 http://gar.svn.sourceforge.net/gar/?rev=2888&view=rev Author: dmichelsen Date: 2009-01-22 22:01:46 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl85: Add patches for Solaris x86, needs more work Modified Paths: -------------- csw/mgar/pkg/tcl85/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff csw/mgar/pkg/tcl85/trunk/files/sunmath.diff Modified: csw/mgar/pkg/tcl85/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:59:25 UTC (rev 2887) +++ csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 22:01:46 UTC (rev 2888) @@ -13,6 +13,12 @@ DISTFILES = $(DISTNAME)-src.tar.gz DISTFILES += $(call admfiles,CSWtcl85,) +# From https://sourceforge.net/tracker/?func=detail&atid=110894&aid=1839067&group_id=10894 +# for Solaris x86: +#PATCHFILES = sunmath-updated.diff +#PATCHFILES = sunmath.diff +# Both patches seem to be for HEAD instead of 8.5.6, to postpone for now + SPKG_SOURCEURL = http://www.tcl.tk/ # We define upstream file regex so we can be notifed of new upstream software release Added: csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff (rev 0) +++ csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff 2009-01-22 22:01:46 UTC (rev 2888) @@ -0,0 +1,117 @@ +Index: unix/tcl.m4 +=================================================================== +RCS file: /cvsroot/tcl/tcl/unix/tcl.m4,v +retrieving revision 1.193 +diff -w -u -r1.193 tcl.m4 +--- unix/tcl.m4 27 Mar 2008 13:39:58 -0000 1.193 ++++ unix/tcl.m4 1 Apr 2008 17:53:51 -0000 +@@ -1931,6 +1931,24 @@ + ], [AC_MSG_WARN([64bit mode not supported for $arch])])]) + ]) + ++ #-------------------------------------------------------------------- ++ # On Solaris 5.x i386 with the sunpro compiler we need to link ++ # with sunmath to get floating point rounding control ++ #-------------------------------------------------------------------- ++ AS_IF([test "$GCC" = yes],[use_sunmath=no],[ ++ arch=`isainfo` ++ AC_MSG_CHECKING([whether to use -lsunmath for fp rounding control]) ++ AS_IF([test "$arch" = "amd64 i386"], [ ++ AC_MSG_RESULT([yes]) ++ MATH_LIBS="-lsunmath $MATH_LIBS" ++ AC_CHECK_HEADER(sunmath.h) ++ use_sunmath=yes ++ ], [ ++ AC_MSG_RESULT([no]) ++ use_sunmath=no ++ ]) ++ ]) ++ + # Note: need the LIBS below, otherwise Tk won't find Tcl's + # symbols when dynamically loaded into tclsh. + +@@ -1938,6 +1956,8 @@ + SHLIB_SUFFIX=".so" + DL_OBJS="tclLoadDl.o" + DL_LIBS="-ldl" ++ ++ + AS_IF([test "$GCC" = yes], [ + SHLIB_LD='${CC} -shared' + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' +@@ -1952,11 +1972,12 @@ + #CC_SEARCH_FLAGS="${CC_SEARCH_FLAGS},-R,$v9gcclibdir" + ]) + ], [ ++ AS_IF([test "$use_sunmath" = yes], [textmode=textoff],[textmode=text]) + case $system in + SunOS-5.[[1-9]][[0-9]]*) +- SHLIB_LD='${CC} -G -z text ${LDFLAGS}';; ++ SHLIB_LD="${CC} -G -z $textmode \${LDFLAGS}";; + *) +- SHLIB_LD='/usr/ccs/bin/ld -G -z text';; ++ SHLIB_LD="/usr/ccs/bin/ld -G -z $textmode";; + esac + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}' +Index: generic/tclStrToD.c +=================================================================== +RCS file: /cvsroot/tcl/tcl/generic/tclStrToD.c,v +retrieving revision 1.33 +diff -w -u -r1.33 tclStrToD.c +--- generic/tclStrToD.c 13 Mar 2008 17:14:19 -0000 1.33 ++++ generic/tclStrToD.c 1 Apr 2008 17:53:49 -0000 +@@ -61,6 +61,13 @@ + # define ADJUST_FPU_CONTROL_WORD + #endif + ++/* Sun ProC needs sunmath for rounding control on x86 like gcc above. ++ * ++ * ++ */ ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++#include ++#endif + /* + * HP's PA_RISC architecture uses 7ff4000000000000 to represent a quiet NaN. + * Everyone else uses 7ff8000000000000. (Why, HP, why?) +@@ -1309,6 +1316,9 @@ + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Test for the easy cases. +@@ -1381,6 +1391,9 @@ + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + + return retval; + } +@@ -1427,6 +1440,9 @@ + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Quick checks for over/underflow. +@@ -1485,6 +1501,9 @@ + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + return retval; + } + Added: csw/mgar/pkg/tcl85/trunk/files/sunmath.diff =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/sunmath.diff (rev 0) +++ csw/mgar/pkg/tcl85/trunk/files/sunmath.diff 2009-01-22 22:01:46 UTC (rev 2888) @@ -0,0 +1,161 @@ +Index: unix/tcl.m4 +=================================================================== +RCS file: /cvsroot/tcl/tcl/unix/tcl.m4,v +retrieving revision 1.192 +diff -u -5 -r1.192 tcl.m4 +--- unix/tcl.m4 13 Mar 2008 17:44:22 -0000 1.192 ++++ unix/tcl.m4 18 Mar 2008 23:55:46 -0000 +@@ -1928,18 +1928,38 @@ + CFLAGS="$CFLAGS -xarch=amd64" + LDFLAGS="$LDFLAGS -xarch=amd64" + ]) + ], [AC_MSG_WARN([64bit mode not supported for $arch])])]) + ]) ++ ++ #-------------------------------------------------------------------- ++ # On Solaris 5.x i386 with the sunpro compiler we need to link ++ # with sunmath to get floating point rounding control ++ #-------------------------------------------------------------------- ++ AS_IF([test "$GCC" = yes],[use_sunmath=no],[ ++ arch=`isainfo` ++ AC_MSG_CHECKING([whether to use -lsunmath for fp rounding control]) ++ AS_IF([test "$arch" = "amd64 i386"], [ ++ AC_MSG_RESULT([yes]) ++ MATH_LIBS="-lsunmath $MATH_LIBS" ++ AC_CHECK_HEADER(sunmath.h) ++ use_sunmath=yes ++ ], [ ++ AC_MSG_RESULT([no]) ++ use_sunmath=no ++ ]) ++ ]) + + # Note: need the LIBS below, otherwise Tk won't find Tcl's + # symbols when dynamically loaded into tclsh. + + SHLIB_LD_LIBS='${LIBS}' + SHLIB_SUFFIX=".so" + DL_OBJS="tclLoadDl.o" + DL_LIBS="-ldl" ++ ++ + AS_IF([test "$GCC" = yes], [ + SHLIB_LD='${CC} -shared' + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS} + AS_IF([test "$do64bit_ok" = yes], [ +@@ -1950,16 +1970,17 @@ + # path, remove so name and append 'sparcv9' + #v9gcclibdir="`gcc -print-file-name=libgcc_s.so` | ..." + #CC_SEARCH_FLAGS="${CC_SEARCH_FLAGS},-R,$v9gcclibdir" + ]) + ], [ ++ AS_IF([test "$use_sunmath" = yes], [textmode=textoff],[textmode=text]) + case $system in + SunOS-5.[[1-9]][[0-9]]*) +- SHLIB_LD='${CC} -G -z text';; ++ SHLIB_LD="${CC} -G -z $textmode";; + *) +- SHLIB_LD='/usr/ccs/bin/ld -G -z text';; +- esac ++ SHLIB_LD="/usr/ccs/bin/ld -G -z $textmode";; ++ esac + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}' + ]) + ;; + UNIX_SV* | UnixWare-5*) +@@ -2594,11 +2615,11 @@ + # right (and it must appear before "-lm"). + #-------------------------------------------------------------------- + + AC_CHECK_FUNC(sin, MATH_LIBS="", MATH_LIBS="-lm") + AC_CHECK_LIB(ieee, main, [MATH_LIBS="-lieee $MATH_LIBS"]) +- ++ + #-------------------------------------------------------------------- + # Interactive UNIX requires -linet instead of -lsocket, plus it + # needs net/errno.h to define the socket-related error codes. + #-------------------------------------------------------------------- + +Index: generic/tclStrToD.c +=================================================================== +RCS file: /cvsroot/tcl/tcl/generic/tclStrToD.c,v +retrieving revision 1.33 +diff -u -5 -r1.33 tclStrToD.c +--- generic/tclStrToD.c 13 Mar 2008 17:14:19 -0000 1.33 ++++ generic/tclStrToD.c 18 Mar 2008 23:55:50 -0000 +@@ -59,10 +59,17 @@ + #define _FPU_SETCW(cw) __asm__ __volatile__ ("fldcw %0" : : "m" (*&cw)) + # define FPU_IEEE_ROUNDING 0x027f + # define ADJUST_FPU_CONTROL_WORD + #endif + ++/* Sun ProC needs sunmath for rounding control on x86 like gcc above. ++ * ++ * ++ */ ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++#include ++#endif + /* + * HP's PA_RISC architecture uses 7ff4000000000000 to represent a quiet NaN. + * Everyone else uses 7ff8000000000000. (Why, HP, why?) + */ + +@@ -1307,10 +1314,13 @@ + fpu_control_t roundTo53Bits = 0x027f; + fpu_control_t oldRoundingMode; + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Test for the easy cases. + */ + +@@ -1379,10 +1389,13 @@ + */ + + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + + return retval; + } + + /* +@@ -1425,10 +1438,13 @@ + fpu_control_t roundTo53Bits = 0x027f; + fpu_control_t oldRoundingMode; + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Quick checks for over/underflow. + */ + +@@ -1483,10 +1499,13 @@ + */ + + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + return retval; + } + + /* + *---------------------------------------------------------------------- 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 23:07:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 22:07:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2889] csw/mgar/pkg/tcl/trunk Message-ID: Revision: 2889 http://gar.svn.sourceforge.net/gar/?rev=2889&view=rev Author: dmichelsen Date: 2009-01-22 22:07:06 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl: Minor naming fixes Modified Paths: -------------- csw/mgar/pkg/tcl/trunk/checksums Added Paths: ----------- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Removed Paths: ------------- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec Modified: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 22:01:46 UTC (rev 2888) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 22:07:06 UTC (rev 2889) @@ -1,2 +1,2 @@ -d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec +ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz +28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Copied: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec (from rev 2884, csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec) =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec (rev 0) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-01-22 22:07:06 UTC (rev 2889) @@ -0,0 +1,4 @@ +%var bitname tcl +%var pkgname CSWtcl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Deleted: csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 22:01:46 UTC (rev 2888) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 22:07:06 UTC (rev 2889) @@ -1,4 +0,0 @@ -%var bitname tcl85 -%var pkgname CSWtcl85 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22 23:40:32 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 22 Jan 2009 22:40:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2890] csw/mgar/pkg/mbuffer/trunk Message-ID: Revision: 2890 http://gar.svn.sourceforge.net/gar/?rev=2890&view=rev Author: skayser Date: 2009-01-22 22:40:32 +0000 (Thu, 22 Jan 2009) Log Message: ----------- mbuffer: Updated to 20090113 Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile csw/mgar/pkg/mbuffer/trunk/checksums Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-22 22:07:06 UTC (rev 2889) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-22 22:40:32 UTC (rev 2890) @@ -1,5 +1,5 @@ GARNAME = mbuffer -GARVERSION = 20090106 +GARVERSION = 20090113 CATEGORIES = utils DESCRIPTION = A tool for buffering data streams @@ -30,14 +30,17 @@ # 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 +# There had been a reason once to build the 64-bit version (all the way down) +# http://opensolaris.org/jive/thread.jspa?messageID=293647&tstart=0 +# +# To build the mixed package for x86 you have to do the following # 1) build8x: gmake build-isa-i386 # 2) build10x: gmake merge # 3) build8x: gmake package +# +# As this is a bit of a hassle and mbuffer has frequent release cycles i +# prefer to leave it out until someone actually needs it. +# # BUILD64 = 1 # ISAEXEC_BINS = $(bindir)/mbuffer @@ -67,11 +70,9 @@ # 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 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) + @perl -pi -e 's#-lm#/lib/64/libm.so.1#' $(WORKSRC)/Makefile @$(MAKECOOKIE) post-install-modulated: DOCS = ChangeLog README AUTHORS Modified: csw/mgar/pkg/mbuffer/trunk/checksums =================================================================== --- csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-22 22:07:06 UTC (rev 2889) +++ csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-22 22:40:32 UTC (rev 2890) @@ -1,2 +1,2 @@ -26f3d5b9bac8caa8af44f9e9e6d3b43d download/mbuffer-20090106.tgz +baeea5a12a863cf05b6d22d5fc012814 download/mbuffer-20090113.tgz ee84b171939ddb3f60a49b5989626000 download/CSWmbuffer.gspec 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 23 14:28:46 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 23 Jan 2009 13:28:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2891] csw/mgar/pkg/clamav/trunk Message-ID: Revision: 2891 http://gar.svn.sourceforge.net/gar/?rev=2891&view=rev Author: bonivart Date: 2009-01-23 13:28:46 +0000 (Fri, 23 Jan 2009) Log Message: ----------- clamav: milter fix Modified Paths: -------------- csw/mgar/pkg/clamav/trunk/Makefile csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2009-01-22 22:40:32 UTC (rev 2890) +++ csw/mgar/pkg/clamav/trunk/Makefile 2009-01-23 13:28:46 UTC (rev 2891) @@ -1,8 +1,3 @@ -# clamav, Peter Bonivart - -# build with "ENABLE_CHECK=0 gmake package" -# check mantis bugs - GARNAME = clamav GARVERSION = 0.94.2 CATEGORIES = apps Modified: csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter =================================================================== --- csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter 2009-01-22 22:40:32 UTC (rev 2890) +++ csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter 2009-01-23 13:28:46 UTC (rev 2891) @@ -11,7 +11,7 @@ # this script. # 2007-06-02 Do not wait for clamd if etc/clamd does not exist. -. /lib/svc/share/smf_include.sh +[ -f /lib/svc/share/smf_include.sh ] && . /lib/svc/share/smf_include.sh CLAMAV_MILTER="/etc/opt/csw/clamav-milter" @@ -97,7 +97,7 @@ # Stop daemon. stop ;; - restart|reload) + restart|reload|refresh) stop start ;; 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 23 17:19:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 16:19:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[2892] csw/mgar/pkg Message-ID: Revision: 2892 http://gar.svn.sourceforge.net/gar/?rev=2892&view=rev Author: dmichelsen Date: 2009-01-23 16:19:41 +0000 (Fri, 23 Jan 2009) Log Message: ----------- tk: Copy from tcl Modified Paths: -------------- csw/mgar/pkg/tk/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tk/ csw/mgar/pkg/tk/trunk/checksums csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec Removed Paths: ------------- csw/mgar/pkg/tk/trunk/checksums csw/mgar/pkg/tk/trunk/files/CSWtcl85.gspec Modified: csw/mgar/pkg/tk/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/tk/trunk/Makefile 2009-01-23 16:19:41 UTC (rev 2892) @@ -1,4 +1,4 @@ -GARNAME = tcl +GARNAME = tk GARVERSION = 8.4.19 CATEGORIES = lang @@ -11,7 +11,7 @@ DISTNAME = $(GARNAME)$(GARVERSION) DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) +DISTFILES += $(call admfiles,CSWtk,) SPKG_SOURCEURL = http://www.tcl.tk/ Deleted: csw/mgar/pkg/tk/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/tk/trunk/checksums 2009-01-23 16:19:41 UTC (rev 2892) @@ -1,2 +0,0 @@ -d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec Copied: csw/mgar/pkg/tk/trunk/checksums (from rev 2889, csw/mgar/pkg/tcl/trunk/checksums) =================================================================== --- csw/mgar/pkg/tk/trunk/checksums (rev 0) +++ csw/mgar/pkg/tk/trunk/checksums 2009-01-23 16:19:41 UTC (rev 2892) @@ -0,0 +1,2 @@ +ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz +28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Copied: csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec (from rev 2889, csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec) =================================================================== --- csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec (rev 0) +++ csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec 2009-01-23 16:19:41 UTC (rev 2892) @@ -0,0 +1,4 @@ +%var bitname tcl +%var pkgname CSWtcl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Deleted: csw/mgar/pkg/tk/trunk/files/CSWtcl85.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/tk/trunk/files/CSWtcl85.gspec 2009-01-23 16:19:41 UTC (rev 2892) @@ -1,4 +0,0 @@ -%var bitname tcl85 -%var pkgname CSWtcl85 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 23 17:48:40 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 23 Jan 2009 16:48:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2893] csw/mgar/pkg/curl/trunk Message-ID: Revision: 2893 http://gar.svn.sourceforge.net/gar/?rev=2893&view=rev Author: harpchad Date: 2009-01-23 16:48:40 +0000 (Fri, 23 Jan 2009) Log Message: ----------- - Updates for gar v2 - Add 1.2 and 1.3 curl libraries for backwards compatiblity Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Added Paths: ----------- csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.i csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.s csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.i csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.s Removed Paths: ------------- csw/mgar/pkg/curl/trunk/files/CSWcurl.depend csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-01-23 16:48:40 UTC (rev 2893) @@ -15,9 +15,13 @@ MASTER_SITES = http://curl.haxx.se/download/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWcurl,depend) -DISTFILES += $(call admfiles,CSWcurlrt,depend) -DISTFILES += $(call admfiles,CSWcurldevel,depend) +DISTFILES += libcurl.so.3.0.0.s +DISTFILES += libcurl.so.2.0.2.s +DISTFILES += libcurl.so.3.0.0.i +DISTFILES += libcurl.so.2.0.2.i +DISTFILES += $(call admfiles,CSWcurl,) +DISTFILES += $(call admfiles,CSWcurlrt,) +DISTFILES += $(call admfiles,CSWcurldevel,) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 @@ -29,9 +33,27 @@ #BUILD64 = 1 EXTRA_BUILD_ISAS_sparc = sparcv9 -TEST_SCRIPTS = +REQUIRED_PKGS_CSWcurl = CSWiconv CSWlibidn CSWlibnet CSWoldaprt CSWosslrt +REQUIRED_PKGS_CSWcurl += CSWsasl CSWzlib CSWcurlrt +REQUIRED_PKGS_CSWcurlrt = CSWlibidn CSWlibnet CSWoldaprt CSWosslrt CSWzlib CSWsasl +REQUIRED_PKGS_CSWcurldevel = CSWcurlrt +ENABLE_CHECK = 0 +TEST_TARGET = + PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) PKGFILES_CSWcurlrt = $(PKGFILES_RT) include gar/category.mk + +post-install-isa-sparcv8: + @cp $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 + @cp $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) + +post-install-isa-i386: + @cp $(FILEDIR)/libcurl.so.3.0.0.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 + @cp $(FILEDIR)/libcurl.so.2.0.2.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/checksums 2009-01-23 16:48:40 UTC (rev 2893) @@ -1,7 +1,8 @@ -8413cf2aff529cb995c14a57bd41a10a download/CSWcurl.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 +a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i +b46b41659b805013740eeb76e759af4b download/libcurl.so.2.0.2.s +30e826ef67b6ce799b32154250014dd9 download/libcurl.so.3.0.0.i +b63de55fb90feba487b1fd21e751d248 download/libcurl.so.3.0.0.s Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurl.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurl.depend 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/files/CSWcurl.depend 2009-01-23 16:48:40 UTC (rev 2893) @@ -1,8 +0,0 @@ -P CSWiconv libiconv - GNU iconv library -P CSWlibidn libidn - Implementation of the Stringprep, Punycode and IDNA -P CSWlibnet libnet - the libnet packet construction library -P CSWoldaprt openldap_rt - OpenLDAP runtime libraries (oldaprt) -P CSWosslrt openssl_rt - Openssl runtime libraries -P CSWsasl sasl - Simple Authentication and Security Layer -P CSWzlib zlib - Zlib Data Compression Library -P CSWcurlrt curlrt - Library for common Internet protocols Runtime Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend 2009-01-23 16:48:40 UTC (rev 2893) @@ -1 +0,0 @@ -P CSWcurlrt curlrt - Library for common Internet protocols Runtime Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend 2009-01-23 16:48:40 UTC (rev 2893) @@ -1,6 +0,0 @@ -P CSWlibidn libidn - Implementation of the Stringprep, Punycode and IDNA -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 Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream 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 23 20:32:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 19:32:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2894] csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk Message-ID: Revision: 2894 http://gar.svn.sourceforge.net/gar/?rev=2894&view=rev Author: dmichelsen Date: 2009-01-23 19:32:22 +0000 (Fri, 23 Jan 2009) Log Message: ----------- cpan/Crypt-OpenSSL-Bignum: Update to 0.04 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/Makefile csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/ Property changes on: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/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/Crypt-OpenSSL-Bignum/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/Makefile 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/Makefile 2009-01-23 19:32:22 UTC (rev 2894) @@ -1,5 +1,5 @@ GARNAME = Crypt-OpenSSL-Bignum -GARVERSION = 0.03 +GARVERSION = 0.04 CATEGORIES = cpan AUTHOR = IROBERTS @@ -13,8 +13,8 @@ Crypt::OpenSSL::RSA. endef -DISTFILES += $(call admfiles,CSWpmcryptosslbignum,depend prototype) +DISTFILES += $(call admfiles,CSWpmcryptosslbignum,) -DEPENDS += lib/openssl +REQUIRED_PKGS = CSWosslrt include gar/category.mk Modified: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums 2009-01-23 19:32:22 UTC (rev 2894) @@ -1,4 +1,2 @@ d7a46a96eda9193461d340c9277cde58 download/CSWpmcryptosslbignum.gspec -a8f5a5031ecdfd60e574d576d507e06e download/CSWpmcryptosslbignum.depend -96c8b67d10e3004352adcacb0d0a7135 download/CSWpmcryptosslbignum.prototype -b526c1554b2f3bf7d94bf0c8c474fd2d download/Crypt-OpenSSL-Bignum-0.03.tar.gz +9369ef722b0705c0604998559988eb18 download/Crypt-OpenSSL-Bignum-0.04.tar.gz Deleted: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend 2009-01-23 19:32:22 UTC (rev 2894) @@ -1 +0,0 @@ -P CSWosslrt openssl_rt - Openssl runtime libraries Deleted: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype 2009-01-23 19:32:22 UTC (rev 2894) @@ -1,25 +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/Crypt 0755 root bin -d none /opt/csw/lib/perl/csw/Crypt/OpenSSL 0755 root bin -d none /opt/csw/lib/perl/csw/Crypt/OpenSSL/Bignum 0755 root bin -f none /opt/csw/lib/perl/csw/Crypt/OpenSSL/Bignum.pm 0444 root bin -f none /opt/csw/lib/perl/csw/Crypt/OpenSSL/Bignum/CTX.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Crypt 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum/Bignum.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum/Bignum.so 0555 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/Crypt::OpenSSL::Bignum.3perl 0444 root bin -f none /opt/csw/share/man/man3/Crypt::OpenSSL::Bignum::CTX.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -i copyright=CSWpmcryptosslbignum.copyright -i depend=CSWpmcryptosslbignum.depend -i pkginfo=CSWpmcryptosslbignum.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 Fri Jan 23 21:49:43 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 20:49:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2895] csw/mgar/pkg/tcl/trunk Message-ID: Revision: 2895 http://gar.svn.sourceforge.net/gar/?rev=2895&view=rev Author: dmichelsen Date: 2009-01-23 20:49:38 +0000 (Fri, 23 Jan 2009) Log Message: ----------- tcl: Add legacy build instructions Added Paths: ----------- csw/mgar/pkg/tcl/trunk/legacy/ csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES csw/mgar/pkg/tcl/trunk/legacy/README csw/mgar/pkg/tcl/trunk/legacy/copyright csw/mgar/pkg/tcl/trunk/legacy/depend csw/mgar/pkg/tcl/trunk/legacy/pkginfo csw/mgar/pkg/tcl/trunk/legacy/prototype csw/mgar/pkg/tcl/trunk/legacy/src/ csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure csw/mgar/pkg/tcl/trunk/legacy/src/Makefile csw/mgar/pkg/tcl/trunk/legacy/tcl/ Added: csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,168 @@ +############################################################################### +# +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the TCL package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWtcl +# +# CUR VER: Tcl Version 8.5.2 +# +# REVISION: 04-27-08 +# +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +08-27-04 8.4.7 Initial 8.4.7 package creation +09-11-04 8.4.7,REV=2004.09.11 Fixed email address in pkginfo file +12-09-04 8.4.9 Initial 8.4.9 package creation +06-11-05 8.4.10 Initial 8.9.10 package creation +07-06-07 8.4.15 Initial 8.9.15 package creation +02-06-08 8.5.1 Initial 8.5.1 package creation +04-27-08 8.5.2 Initial 8.5.2 package creation +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +EDITING CHANGES: +------------------------------------------------------------------------------- + + None + +------------------------------------------------------------------------------- +SPARC: +------------------------------------------------------------------------------- + +make: + + * The following warning messages are produced: + + ./../generic/regcomp.c [NOTE: typical lex warnings - OK] + "../generic/regc_lex.c", line 426: warning: statement not reached + "../generic/regc_lex.c", line 519: warning: statement not reached + "../generic/regc_lex.c", line 525: warning: statement not reached + "../generic/regc_lex.c", line 610: warning: statement not reached + "../generic/regc_lex.c", line 642: warning: statement not reached + "../generic/regc_lex.c", line 907: warning: statement not reached + "../generic/regc_lex.c", line 1078: warning: statement not reached + ./tclUnixCompat.c + "./tclUnixCompat.c", line 187: warning: statement not reached + "./tclUnixCompat.c", line 243: warning: statement not reached + "./tclUnixCompat.c", line 299: warning: statement not reached + "./tclUnixCompat.c", line 355: warning: statement not reached + "./tclUnixCompat.c", line 423: warning: statement not reached + "./tclUnixCompat.c", line 486: warning: statement not reached + + * Otherwise, compiles cleanly. + + +make test: + + * All tests pass + + Tests ended at Mon Apr 28 02:17:18 EDT 2008 + all.tcl: Total 24242 Passed 23265 Skipped 977 Failed 0 + Sourced 137 Test Files. + Number of tests skipped for each constraint: + 9 !ieeeFloatingPoint + 2 95or98 + 3 asyncPipeChan + 4 dontCopyLinks + 61 emptyTest + 2 hasIsoLocale + 29 knownBug + 2 knownBug !singleTestInterp + 2 largefileSupport + 77 littleEndian + 100 localeRegexp + 12 longIs64bit + 14 macosxFileAttr + 15 memory + 42 nonPortable + 5 notNetworkFilesystem + 8 nt + 4 readonlyAttr + 1 testWinCPUID + 7 testaccessproc + 1 testexprparser && !ieeeFloatingPoint + 8 testopenfilechannelproc + 7 teststatproc + 1 testwinclock + 21 testwordend + 3 unknownFailure + 2 unthreaded + 524 win + +------------------------------------------------------------------------------- +INTEL: +------------------------------------------------------------------------------- + +make: + + * Same results as sparc + +make test: + + * expr.test + ==== expr-28.362 input floating-point conversion FAILED + ==== Contents of test case: + + # Ad2b dieee UN -720919 E-14 x \ + -1ef696965cbf04_10000000000000000000000001& E-28 + convertToDouble -720919E-14 + + ---- Result was: + 0xbe3ef696965cbf04 + ---- Result should have been (exact matching): + 0xbe3ef696965cbf05 + ==== expr-28.362 FAILED + + ==== expr-28.393 input floating-point conversion FAILED + ==== Contents of test case: + + # Ad2b d UN +65346417 E29 x \ + 13aa1ad778f23b_0111111111111111111111111111110& E122 + convertToDouble +65346417E29 + + [MANY other FP tests also fail by 1] + + Tests ended at Wed Feb 06 21:05:53 EST 2008 + all.tcl: Total 24180 Passed 23081 Skipped 973 Failed 126 + Sourced 137 Test Files. + Files with failing tests: expr.test + Number of tests skipped for each constraint: + 9 !ieeeFloatingPoint + 2 95or98 + 3 asyncPipeChan + 76 bigEndian + 4 dontCopyLinks + 59 emptyTest + 2 hasIsoLocale + 29 knownBug + 2 knownBug !singleTestInterp + 2 largefileSupport + 100 localeRegexp + 12 longIs64bit + 14 macosxFileAttr + 15 memory + 41 nonPortable + 5 notNetworkFilesystem + 8 nt + 4 readonlyAttr + 1 testWinCPUID + 7 testaccessproc + 1 testexprparser && !ieeeFloatingPoint + 8 testopenfilechannelproc + 7 teststatproc + 1 testwinclock + 21 testwordend + 3 unknownFailure + 2 unthreaded + 524 win Added: csw/mgar/pkg/tcl/trunk/legacy/README =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/README 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,216 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the TCL package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWtcl +# +# REVISION: 04-27-08 +# +# NOTES: * +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: wr + or + INTEL: wt + +------------------------------------------------------------------------------- +02: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +03: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/tcl + vi pkginfo + [edit the VERSION line including the ,REV=YYYY.MM.DD string] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +04: Download the source code (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + cd src + vi Makefile (Edit & set TVER to current version) + + make get Download source code from sourceforge: + + or get it from personal machine with: + bwput -d /export/home/jeff/pkgs/tcl/src \ + tcl*-src.tar.gz + + make rename rename the source file + make unpack unpack the source + +------------------------------------------------------------------------------- +05: Update the copyright file (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + cd tcl*[0-9] + cp license.terms ${HOME}/pkgs/tcl/copyright + +------------------------------------------------------------------------------- +06: See if there are any source file modifications required for build +------------------------------------------------------------------------------- + + cd unix + less -+e ../../../BUILD.NOTES + + [update as required] + +------------------------------------------------------------------------------- +07: Compile the software +------------------------------------------------------------------------------- + + make distclean + ../../CJSA.configure # run configure + script zzzz # capture output + make + make test + exit # terminate script + +------------------------------------------------------------------------------- +08: Review zzzz script file and update any required info in BUILD.NOTES file +------------------------------------------------------------------------------- + + vi zzzz ../../../BUILD.NOTES + rm zzzz + +------------------------------------------------------------------------------- +09: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +10: Make symbolic link for tclsh [**** USING PROPER VERSION NO. ****] +------------------------------------------------------------------------------- + + rm -f cswstage/opt/csw/bin/tclsh + ls -l cswstage/opt/csw/bin + + ln -s tclsh8.5 cswstage/opt/csw/bin/tclsh # USE CORRECT VER. NO! + + ls -l cswstage/opt/csw/bin + ls -lL cswstage/opt/csw/bin + +------------------------------------------------------------------------------- +11: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + :g/0444/s//0644/g + [change file permissions from 0555 to 0755] + :g/0555/s//0755/g + [add following 's' line after 'f' line: ***CHECK VERSION NO.***] + f none /opt/csw/bin/tclsh8.5 0755 root bin [existing line] + s none /opt/csw/bin/tclsh=tclsh8.5 + +------------------------------------------------------------------------------- +12: Edit the shipping tclConfig.sh file to set proper paths +------------------------------------------------------------------------------- + + vi opt/csw/lib/tclConfig.sh + :g#/export/home/jeff/pkgs/tcl/src/tcl[0-9.]*/unix#s##/opt/csw/lib#g + :g#/export/home/jeff/pkgs/tcl/src/tcl[0-9.]*#s##/opt/csw/src/tcl#g + :g#-I. -I../generic -I../../generic #s###g + :wq + +------------------------------------------------------------------------------- +13: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/tcl/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/tcl + +------------------------------------------------------------------------------- +14: Create the package tcl-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/tcl + createpkg -r ${HOME}/pkgs/tcl/src/tcl*[0-9]/unix/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +15: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + *** Current dependencies are listed in the depend file *** + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 10 and recreate the package + +------------------------------------------------------------------------------- +16: Build other software for this hardware platform +------------------------------------------------------------------------------- + + Build CSWtk package + Build CSWitcl package (if necessary) + Build CSWitk package (if necessary) + Build CSWtclx package (if applicable) + +------------------------------------------------------------------------------- +17: Go back to step #01 and build everything for the other hardware platform +------------------------------------------------------------------------------- + + * Continue when all packages for Sparc & X86 platforms are ready + +------------------------------------------------------------------------------- +18: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + +------------------------------------------------------------------------------- +19: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/tcl + cp tcl-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +20: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp TCL.${VER}-src.tar.gz /export/medusa/src/tcl${VER}-src.tar.gz + +------------------------------------------------------------------------------- +21: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/tcl/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/copyright 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,40 @@ +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState +Corporation and other parties. The following terms apply to all files +associated with the software unless explicitly disclaimed in +individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. Added: csw/mgar/pkg/tcl/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/depend 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/tcl/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/pkginfo 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,9 @@ +PKG=CSWtcl +NAME=tcl - Tool Command Language +VERSION=8.5.2,REV=2008.04.27 +ARCH=sparc +CATEGORY=system +CSW_CATEGORY="prog, user" +VENDOR=http://www.tcl.tk/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/tcl/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/prototype 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,951 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/tcl-man 0755 root bin +d none /opt/csw/share/tcl-man/man1 0755 root bin +f none /opt/csw/share/tcl-man/man1/tclsh.1 0644 root bin +d none /opt/csw/share/tcl-man/man3 0755 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_Access.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Stat.3=Tcl_Access.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetReturnOptions.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetReturnOptions.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AddErrorInfo.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendObjToErrorInfo.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AddObjErrorInfo.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetObjErrorCode.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetErrorCode.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetErrorCodeVA.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PosixError.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LogCommandInfo.3=Tcl_GetReturnOptions.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Alloc.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Free.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Realloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AttemptAlloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AttemptRealloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/ckalloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/ckfree.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/ckrealloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/attemptckalloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/attemptckrealloc.3=Tcl_Alloc.3 +f none /opt/csw/share/tcl-man/man3/Tcl_AllowExceptions.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_AppInit.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_GetAssocData.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetAssocData.3=Tcl_GetAssocData.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteAssocData.3=Tcl_GetAssocData.3 +f none /opt/csw/share/tcl-man/man3/Tcl_AsyncCreate.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncMark.3=Tcl_AsyncCreate.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncInvoke.3=Tcl_AsyncCreate.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncDelete.3=Tcl_AsyncCreate.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncReady.3=Tcl_AsyncCreate.3 +f none /opt/csw/share/tcl-man/man3/Tcl_BackgroundError.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_Backslash.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_NewBooleanObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetBooleanObj.3=Tcl_NewBooleanObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetBooleanFromObj.3=Tcl_NewBooleanObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewByteArrayObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetByteArrayObj.3=Tcl_NewByteArrayObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetByteArrayFromObj.3=Tcl_NewByteArrayObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetByteArrayLength.3=Tcl_NewByteArrayObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CallWhenDeleted.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DontCallWhenDeleted.3=Tcl_CallWhenDeleted.3 +f none /opt/csw/share/tcl-man/man3/Tcl_StackChannel.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UnstackChannel.3=Tcl_StackChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetStackedChannel.3=Tcl_StackChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetTopChannel.3=Tcl_StackChannel.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CommandComplete.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_Concat.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_CreateChannel.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelInstanceData.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelType.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelName.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelHandle.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelMode.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelBufferSize.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetChannelBufferSize.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NotifyChannel.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_BadChannelOption.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelName.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelVersion.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelBlockModeProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelCloseProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelClose2Proc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelInputProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelOutputProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelSeekProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CutChannel.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelWideSeekProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelTruncateProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelSetOptionProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelGetOptionProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelWatchProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelGetHandleProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelFlushProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelHandlerProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelThreadActionProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsChannelShared.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsChannelRegistered.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SpliceChannel.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsChannelExisting.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ClearChannelHandlers.3=Tcl_CreateChannel.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateCommand.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelThread.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelBuffered.3=Tcl_CreateChannel.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateChannelHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteChannelHandler.3=Tcl_CreateChannelHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateCloseHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteCloseHandler.3=Tcl_CreateCloseHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateFileHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteFileHandler.3=Tcl_CreateFileHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateInterp.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteInterp.3=Tcl_CreateInterp.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InterpDeleted.3=Tcl_CreateInterp.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateMathFunc.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetMathFuncInfo.3=Tcl_CreateMathFunc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListMathFuncs.3=Tcl_CreateMathFunc.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateObjCommand.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteCommand.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteCommandFromToken.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandInfo.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandInfoFromToken.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetCommandInfo.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetCommandInfoFromToken.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandName.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandFullName.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandFromObj.3=Tcl_CreateObjCommand.3 +f none /opt/csw/share/tcl-man/man3/Tcl_IsSafe.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_MakeSafe.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateSlave.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetSlave.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetMaster.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetInterpPath.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateAlias.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateAliasObj.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetAlias.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetAliasObj.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExposeCommand.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_HideCommand.3=Tcl_IsSafe.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateTimerHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteTimerHandler.3=Tcl_CreateTimerHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateTrace.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_CreateObjTrace.3=Tcl_CreateTrace.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteTrace.3=Tcl_CreateTrace.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DStringInit.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DStringAppend.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringAppendElement.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringStartSublist.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringEndSublist.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringLength.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringValue.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringTrunc.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringSetLength.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringFree.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringResult.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringGetResult.3=Tcl_DStringInit.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DetachPids.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ReapDetachedProcs.3=Tcl_DetachPids.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WaitPid.3=Tcl_DetachPids.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewDictObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjPut.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjGet.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjRemove.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjSize.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjFirst.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjNext.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjDone.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjPutKeyList.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjRemoveKeyList.3=Tcl_NewDictObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DoOneEvent.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_DoWhenIdle.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_CancelIdleCall.3=Tcl_DoWhenIdle.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewDoubleObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetDoubleObj.3=Tcl_NewDoubleObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetDoubleFromObj.3=Tcl_NewDoubleObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DumpActiveMemory.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_InitMemory.3=Tcl_DumpActiveMemory.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ValidateAllMemory.3=Tcl_DumpActiveMemory.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetEncoding.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FreeEncoding.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingFromObj.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExternalToUtfDString.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExternalToUtf.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToExternalDString.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToExternal.3=Tcl_GetEncoding.3 +f none /opt/csw/share/tcl-man/man3/Tcl_PutEnv.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_WinTCharToUtf.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WinUtfToTChar.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingName.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetSystemEncoding.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingNameFromEnvironment.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingNames.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateEncoding.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingSearchPath.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEncodingSearchPath.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetDefaultEncodingDir.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetDefaultEncodingDir.3=Tcl_GetEncoding.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateEnsemble.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FindEnsemble.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleFlags.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleMappingDict.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleNamespace.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleUnknownHandler.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleSubcommandList.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsEnsemble.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleFlags.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleMappingDict.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleSubcommandList.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleUnknownHandler.3=Tcl_CreateEnsemble.3 +f none /opt/csw/share/tcl-man/man3/Tcl_EvalObjEx.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_EvalFile.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalObjv.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Eval.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalEx.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GlobalEval.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GlobalEvalObj.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_VarEval.3=Tcl_EvalObjEx.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Exit.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_VarEvalVA.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Finalize.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExitThread.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FinalizeThread.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateThreadExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteThreadExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetExitProc.3=Tcl_Exit.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ExprLong.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ExprDouble.3=Tcl_ExprLong.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprBoolean.3=Tcl_ExprLong.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprString.3=Tcl_ExprLong.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ExprLongObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ExprDoubleObj.3=Tcl_ExprLongObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprBooleanObj.3=Tcl_ExprLongObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprObj.3=Tcl_ExprLongObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_FSRegister.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FSUnregister.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSData.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSMountsChanged.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetFileSystemForPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetPathType.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSCopyFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSCopyDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSCreateDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSDeleteFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSRemoveDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSRenameFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSListVolumes.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSEvalFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSEvalFileEx.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSLoadFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSMatchInDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSLink.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSLstat.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSUtime.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileAttrsGet.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileAttrsSet.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileAttrStrings.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSStat.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSAccess.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSOpenFileChannel.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetCwd.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSChdir.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSPathSeparator.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSJoinPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSSplitPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSEqualPaths.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetNormalizedPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSJoinToPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSConvertToPathType.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetInternalRep.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetTranslatedPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetTranslatedStringPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSNewNativePath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetNativePath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileSystemInfo.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AllocStatBuf.3=Tcl_FSRegister.3 +f none /opt/csw/share/tcl-man/man3/Tcl_FindExecutable.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetNameOfExecutable.3=Tcl_FindExecutable.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetCwd.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Chdir.3=Tcl_GetCwd.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetHostName.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_GetIndexFromObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetIndexFromObjStruct.3=Tcl_GetIndexFromObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetInt.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetDouble.3=Tcl_GetInt.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetTime.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetBoolean.3=Tcl_GetInt.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetOpenFile.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_GetStdChannel.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetStdChannel.3=Tcl_GetStdChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetTimeProc.3=Tcl_GetTime.3 +l none /opt/csw/share/tcl-man/man3/Tcl_QueryTimeProc.3=Tcl_GetTime.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetVersion.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_InitHashTable.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_InitCustomHashTable.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InitObjHashTable.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteHashTable.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FindHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetHashValue.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetHashValue.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetHashKey.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FirstHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NextHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_HashStats.3=Tcl_InitHashTable.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Init.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_InitStubs.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_NewIntObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_NewLongObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NewWideIntObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetIntObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetLongObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetWideIntObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetIntFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetLongFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetWideIntFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NewBignumObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetBignumObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetBignumFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_TakeBignumFromObj.3=Tcl_NewIntObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Interp.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_LimitAddHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_LimitCheck.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitExceeded.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitGetCommands.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitGetGranularity.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitGetTime.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitReady.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitRemoveHandler.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitSetCommands.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitSetGranularity.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitSetTime.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeEnabled.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeExceeded.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeReset.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeSet.3=Tcl_LimitAddHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Close.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_LinkVar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UnlinkVar.3=Tcl_LinkVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UpdateLinkedVar.3=Tcl_LinkVar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ListObjAppendList.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjAppendElement.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NewListObj.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetListObj.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjGetElements.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjLength.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjIndex.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjReplace.3=Tcl_ListObjAppendList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_AppendExportList.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_CreateNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Export.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FindCommand.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FindNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ForgetImport.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCurrentNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetGloblaNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetNamespaceUnknownHandler.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Import.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetNamespaceUnknownHandler.3=Tcl_AppendExportList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateEventSource.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteEventSource.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetMaxBlockTime.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_QueueEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ThreadQueueEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ThreadAlert.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCurrentThread.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteEvents.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InitNotifier.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WaitForEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FinalizeNotifier.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AlertNotifier.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetTimer.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ServiceAll.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ServiceEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetServiceMode.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetServiceMode.3=Tcl_CreateEventSource.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DuplicateObj.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IncrRefCount.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DecrRefCount.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsShared.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InvalidateStringRep.3=Tcl_NewObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_RegisterObjType.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetObjType.3=Tcl_RegisterObjType.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendAllObjTypes.3=Tcl_RegisterObjType.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConvertToType.3=Tcl_RegisterObjType.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Read.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OpenFileChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OpenCommandChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MakeFileChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelNames.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelNamesEx.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegisterChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UnregisterChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DetachChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsStandardChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ReadChars.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetsObj.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Gets.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WriteObj.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WriteChars.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Write.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Flush.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Seek.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Tell.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_TruncateChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelOption.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetChannelOption.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Eof.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InputBlocked.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InputBuffered.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OutputBuffered.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Ungets.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ReadRaw.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WriteRaw.3=Tcl_Close.3 +f none /opt/csw/share/tcl-man/man3/Tcl_OpenTcpClient.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_MakeTcpClientChannel.3=Tcl_OpenTcpClient.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OpenTcpServer.3=Tcl_OpenTcpClient.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Panic.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_PanicVA.3=Tcl_Panic.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetPanicProc.3=Tcl_Panic.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ParseCommand.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ParseExpr.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseBraces.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseQuotedString.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseVarName.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseVar.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FreeParse.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalTokens.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalTokensStandard.3=Tcl_ParseCommand.3 +f none /opt/csw/share/tcl-man/man3/Tcl_PkgRequire.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_PkgRequireEx.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgRequireProc.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgPresent.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgPresentEx.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgProvide.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgProvideEx.3=Tcl_PkgRequire.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Preserve.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Release.3=Tcl_Preserve.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EventuallyFree.3=Tcl_Preserve.3 +f none /opt/csw/share/tcl-man/man3/Tcl_PrintDouble.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RecordAndEvalObj.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RecordAndEval.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RegisterConfig.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RegExpMatch.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpCompile.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpExec.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpRange.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetRegExpFromObj.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpMatchObj.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpExecObj.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpGetInfo.3=Tcl_RegExpMatch.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SaveInterpState.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_RestoreInterpState.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DiscardInterpState.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SaveResult.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RestoreResult.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DiscardResult.3=Tcl_SaveInterpState.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetChannelError.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetChannelErrorInterp.3=Tcl_SetChannelError.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelError.3=Tcl_SetChannelError.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelErrorInterp.3=Tcl_SetChannelError.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetErrno.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetErrno.3=Tcl_SetErrno.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ErrnoId.3=Tcl_SetErrno.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ErrnoMsg.3=Tcl_SetErrno.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetRecursionLimit.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_SetObjResult.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetObjResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetStringResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendResultVA.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendElement.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ResetResult.3=Tcl_SetObjResult.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Sleep.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FreeResult.3=Tcl_SetObjResult.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetVar2Ex.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetVar.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ObjSetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetVar2Ex.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetVar.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ObjGetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UnsetVar.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UnsetVar2.3=Tcl_SetVar2Ex.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SignalId.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SignalMsg.3=Tcl_SignalId.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SourceRCFile.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_SplitList.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Merge.3=Tcl_SplitList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ScanElement.3=Tcl_SplitList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConvertElement.3=Tcl_SplitList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ScanCountedElement.3=Tcl_SplitList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Main.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ConvertCountedElement.3=Tcl_SplitList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SplitPath.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_JoinPath.3=Tcl_SplitPath.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetPathType.3=Tcl_SplitPath.3 +f none /opt/csw/share/tcl-man/man3/Tcl_StaticPackage.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_StandardChannels.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_StringMatch.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_StringCaseMatch.3=Tcl_StringMatch.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewStringObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_NewUnicodeObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetStringObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetUnicodeObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetStringFromObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetString.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetUnicodeFromObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetUnicode.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetUniChar.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetRange.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCharLength.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendUnicodeToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendObjToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendStringsToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendStringsToObjVA.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendLimitedToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Format.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendFormatToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ObjPrintf.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendPrintfToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetObjLength.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AttemptSetObjLength.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConcatObj.3=Tcl_NewStringObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SubstObj.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/TCL_MEM_DEBUG.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetMainLoop.3=Tcl_Main.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ConditionNotify.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ConditionWait.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConditionFinalize.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetThreadData.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MutexLock.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MutexUnlock.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MutexFinalize.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateThread.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_JoinThread.3=Tcl_ConditionNotify.3 +f none /opt/csw/share/tcl-man/man3/Tcl_UniCharToUpper.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToLower.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToTitle.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToUpper.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToLower.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToTitle.3=Tcl_UniCharToUpper.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CommandTraceInfo.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_TraceCommand.3=Tcl_CommandTraceInfo.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UntraceCommand.3=Tcl_CommandTraceInfo.3 +f none /opt/csw/share/tcl-man/man3/Tcl_TraceVar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_TraceVar2.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UntraceVar.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UntraceVar2.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_VarTraceInfo.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_VarTraceInfo2.3=Tcl_TraceVar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_TranslateFileName.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsAlnum.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsAlpha.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsControl.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsDigit.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsGraph.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsLower.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsPrint.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsPunct.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsSpace.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsUpper.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsWordChar.3=Tcl_UniCharIsAlnum.3 +f none /opt/csw/share/tcl-man/man3/Tcl_UpVar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UpVar2.3=Tcl_UpVar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_UniChar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharCaseMatch.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharNcasecmp.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToUtf.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToUniChar.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToUtfDString.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToUniCharDString.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharLen.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharNcmp.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfCharComplete.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NumUtfChars.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfFindFirst.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfFindLast.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfNext.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfPrev.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharAtIndex.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfAtIndex.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfBackslash.3=Tcl_UniChar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_WrongNumArgs.3 0644 root bin +d none /opt/csw/share/tcl-man/mann 0755 root bin +f none /opt/csw/share/tcl-man/mann/Tcl.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/after.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/append.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/apply.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/array.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/bgerror.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/binary.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/break.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/case.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/catch.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/cd.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/chan.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/clock.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/close.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/concat.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/continue.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/dde.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/dict.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/encoding.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/eof.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/error.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/eval.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/exec.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/exit.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/expr.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fblocked.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fconfigure.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fcopy.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/file.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fileevent.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/filename.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/flush.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/for.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/foreach.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/format.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/gets.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/glob.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/global.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/history.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/http.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/if.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/incr.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/info.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/interp.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/join.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lappend.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lassign.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/auto_execok.n 0644 root bin +l none /opt/csw/share/tcl-man/mann/auto_import.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_load.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_mkindex.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_mkindex_old.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_qualify.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_reset.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_findLibrary.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/parray.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_endOfWord.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_startOfNextWord.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_startOfPreviousWord.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_wordBreakAfter.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_wordBreakBefore.n=auto_execok.n +f none /opt/csw/share/tcl-man/mann/lindex.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/linsert.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/list.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/llength.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/load.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lrange.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lrepeat.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lreplace.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lreverse.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lsearch.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lset.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lsort.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/mathfunc.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/mathop.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/memory.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/msgcat.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/namespace.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/open.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/package.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pkg::create.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pid.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pkg_mkIndex.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/platform.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/platform::shell.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/proc.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/puts.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pwd.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/re_syntax.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/read.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/refchan.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/regexp.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/registry.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/regsub.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/rename.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/return.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/SafeBase.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/scan.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/seek.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/set.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/socket.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/source.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/split.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/subst.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/string.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/switch.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tcltest.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tclvars.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tell.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/time.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tm.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/trace.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/unknown.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/unload.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/unset.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/update.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/uplevel.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/upvar.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/variable.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/vwait.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/while.n 0644 root bin +d none /opt/csw/lib 0755 root bin +d none /opt/csw/lib/tcl8.5 0755 root bin +d none /opt/csw/lib/tcl8.5/msgs 0755 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ec.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/eo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ca.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kw_gb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ga.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/it.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_bw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gl_es.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/de_at.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sh.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ro.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kl_gl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hi.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_pr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/te.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_lb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ar.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/id.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/af.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/he.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_zw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/th.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_uy.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/lt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_nz.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_jo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_tw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_sy.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/bg.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fa.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_ph.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/pt_br.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ru.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/et.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_cl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_hn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kok_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_sg.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_sg.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nl_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/af_za.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/cs.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/bn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_sv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ms_my.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hi_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_cn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ko_kr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_cr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_mx.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_gt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_ie.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ga_ie.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_pa.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hu.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_au.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_py.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/lv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/bn_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mr_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ja.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_hk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/de_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/pt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_hk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ta_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/eu_es.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/vi.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fo_fo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fa_ir.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fi.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/de.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_bo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/te_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_pe.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ni.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fa_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/id_id.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/el.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_za.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ve.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/pl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/tr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ms.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ru_ua.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ta.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/it_ch.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr_ca.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ko.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr_ch.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_co.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kok.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/is.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gv_gb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_ca.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/uk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sq.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/eu.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_do.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/da.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_gb.msg 0644 root bin +d none /opt/csw/lib/tcl8.5/opt0.4 0755 root bin +f none /opt/csw/lib/tcl8.5/opt0.4/optparse.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/opt0.4/pkgIndex.tcl 0644 root bin +d none /opt/csw/lib/tcl8.5/http1.0 0755 root bin +f none /opt/csw/lib/tcl8.5/http1.0/http.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/http1.0/pkgIndex.tcl 0644 root bin +d none /opt/csw/lib/tcl8.5/encoding 0755 root bin +f none /opt/csw/lib/tcl8.5/encoding/ascii.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/big5.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1250.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1251.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1252.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1253.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1254.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1255.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1256.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1257.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1258.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp437.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp737.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp775.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp850.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp852.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp855.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp857.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp860.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp861.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp862.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp863.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp864.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp865.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp866.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp869.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp874.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp932.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp936.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp949.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp950.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/dingbats.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/ebcdic.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/euc-cn.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/euc-jp.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/euc-kr.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb12345.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb1988.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb2312-raw.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb2312.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso2022-jp.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso2022-kr.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso2022.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-1.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-10.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-13.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-14.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-15.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-16.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-2.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-3.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-4.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-5.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-6.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-7.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-8.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-9.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/jis0201.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/jis0208.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/jis0212.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/koi8-r.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/koi8-u.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/ksc5601.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macCentEuro.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macCroatian.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macCyrillic.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macDingbats.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macGreek.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macIceland.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macJapan.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macRoman.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macRomania.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macThai.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macTurkish.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macUkraine.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/shiftjis.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/symbol.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/tis-620.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/auto.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/clock.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/history.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/init.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/package.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/parray.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/safe.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/tm.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/word.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/tclIndex 0644 root bin +f none /opt/csw/lib/tcl8.5/tclAppInit.c 0644 root bin +f none /opt/csw/lib/tcl8.5/ldAix 0644 root bin +f none /opt/csw/lib/libtcl8.5.so 0755 root bin +f none /opt/csw/lib/tclConfig.sh 0644 root bin +f none /opt/csw/lib/libtclstub8.5.a 0644 root bin +d none /opt/csw/lib/tcl8 0755 root bin +d none /opt/csw/lib/tcl8/8.3 0755 root bin +d none /opt/csw/lib/tcl8/8.4 0755 root bin +d none /opt/csw/lib/tcl8/8.4/platform 0755 root bin +f none /opt/csw/lib/tcl8/8.4/platform/shell-1.1.3.tm 0644 root bin +f none /opt/csw/lib/tcl8/8.4/http-2.7.tm 0644 root bin +f none /opt/csw/lib/tcl8/8.4/platform-1.0.3.tm 0644 root bin +d none /opt/csw/lib/tcl8/8.5 0755 root bin +f none /opt/csw/lib/tcl8/8.5/msgcat-1.4.2.tm 0644 root bin +f none /opt/csw/lib/tcl8/8.5/tcltest-2.3.0.tm 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/tclsh8.5 0755 root bin +s none /opt/csw/bin/tclsh=tclsh8.5 +d none /opt/csw/include 0755 root bin +f none /opt/csw/include/tcl.h 0644 root bin +f none /opt/csw/include/tclDecls.h 0644 root bin +f none /opt/csw/include/tclPlatDecls.h 0644 root bin +f none /opt/csw/include/tclTomMath.h 0644 root bin +f none /opt/csw/include/tclTomMathDecls.h 0644 root bin Added: csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,14 @@ +# Configure command for the TCL package +# Run from the tcl*[0-9]/unix subdirectory +# +# NOTE: * Had to add the CFLAGS argument for 8.5.x so that the test routines +# could find the current tcl.h file in the generic directory rather +# than the previously installed 8.4.x /opt/csw/include/tcl.h which +# was causing all sorts of compile problems due to undefined objects! +# +# * The CFLAGS line below is necessary for the tests to be compiled and +# run. Must edit out of tclConfig.sh later. + +./configure --prefix=/opt/csw --mandir=/opt/csw/share/tcl-man \ + --enable-threads \ + CFLAGS="-I. -I../generic -I../../generic" Property changes on: csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/tcl/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/src/Makefile 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,46 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the TCL src directory. This is used to +# retrieve current source code for the specified package(s). +# +# REVISION: 04-27-08 +# +# NOTES: * Set TVER to the current version of the software. +# +############################################################################### + +TVER=8.5.2 + + +help: + @echo "---------------------------------------------------------------" + @echo "TCL Version: $(TVER)" + @echo "---------------------------------------------------------------" + @echo "make get download the current TCL source code" + @echo "" + @echo "make rename rename downloaded source code file" + @echo "" + @echo "make unpack unpack the TCL source code" + @echo "" + @echo "make clean remove source working directory + @echo "---------------------------------------------------------------" + + +# target get does not work until we can locate an unambiguous download site +# for the TCL source + +get tcl TCL: + wget \ + http://downloads.sourceforge.net/tcl/tcl$(TVER)-src.tar.gz + +rename: + mv tcl$(TVER)-src.tar.gz TCL.$(TVER)-src.tar.gz + clear ; ls + +unpack unpak: TCL.$(TVER)-src.tar.gz + unpak TCL.$(TVER)-src.tar.gz + +clean: + rm -rf tcl${TVER} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 23 21:50:07 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 23 Jan 2009 20:50:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2896] csw/mgar/pkg/cvsps/trunk Message-ID: Revision: 2896 http://gar.svn.sourceforge.net/gar/?rev=2896&view=rev Author: bdwalton Date: 2009-01-23 20:50:07 +0000 (Fri, 23 Jan 2009) Log Message: ----------- - Clean up autoconf patches. - Import gnulib functions for missing things. Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch csw/mgar/pkg/cvsps/trunk/files/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch csw/mgar/pkg/cvsps/trunk/files/0003-add-script-to-do-the-autotools-setup-steps.patch csw/mgar/pkg/cvsps/trunk/files/0004-add-config.h-awareness-to-all-source-files.patch csw/mgar/pkg/cvsps/trunk/files/0005-gnulib-import-of-missing-functions.patch csw/mgar/pkg/cvsps/trunk/files/0006-enabled-imported-gnulib-functions.patch Removed 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 csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 20:50:07 UTC (rev 2896) @@ -11,11 +11,12 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWcvsps,) -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 +PATCHFILES = 0001-add-basic-autotools-files.patch +PATCHFILES += 0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch +PATCHFILES += 0003-add-script-to-do-the-autotools-setup-steps.patch +PATCHFILES += 0004-add-config.h-awareness-to-all-source-files.patch +PATCHFILES += 0005-gnulib-import-of-missing-functions.patch +PATCHFILES += 0006-enabled-imported-gnulib-functions.patch PREREQUISITE_PKGS = CSWzlib CSWautomake CSWautoconf @@ -26,18 +27,18 @@ TEST_SCRIPTS = -INSTALL_SCRIPTS = custom +#INSTALL_SCRIPTS = custom include gar/category.mk -pre-configure-isa-i386: +pre-configure-modulated: @echo About to initialize the autotools bits. - @(cd $(WORKSRC_FIRSTMOD); chmod +x autoinit.sh; ./autoinit.sh) + @(cd $(WORKSRC); chmod +x autoinit.sh; ./autoinit.sh) @$(MAKECOOKIE) -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/ +# 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-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,7 +1,8 @@ bde2110ed9f5d14de8f8cb04e9d596fe download/cvsps-2.1.tar.gz cb54db01900320e1bf80da166c60c2f8 download/CSWcvsps.gspec -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 +f1980fbc932203a048a6e5c3cfa1af5b download/0001-add-basic-autotools-files.patch +85b73079daeef9d87b637939e3749489 download/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch +f5d84b7c7a05a44f64f740006df5c349 download/0003-add-script-to-do-the-autotools-setup-steps.patch +78d2f5dc4b1aa496e4f4ea8d2db4bf17 download/0004-add-config.h-awareness-to-all-source-files.patch +58cbd19160b6a98f3c5ff2a8786f0848 download/0005-gnulib-import-of-missing-functions.patch +02c14b029fd57a61fa97cc8209f18d7d download/0006-enabled-imported-gnulib-functions.patch Added: csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,65 @@ +From e6497925a720052265d5854b70a987a48bd07e58 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 17:03:35 +0100 +Subject: [PATCH] add basic autotools files + +--- + Makefile.am | 4 ++++ + configure.ac | 34 ++++++++++++++++++++++++++++++++++ + 2 files changed, 38 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..86de070 +--- /dev/null ++++ b/Makefile.am +@@ -0,0 +1,4 @@ ++bin_PROGRAMS = cvsps ++cvsps_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c ++cvsps_SOURCES += cbtcommon/debug.c cbtcommon/sio.c cbtcommon/text_util.c ++cvsps_SOURCES += cbtcommon/hash.c cbtcommon/tcpsocket.c +diff --git a/configure.ac b/configure.ac +new file mode 100644 +index 0000000..a882782 +--- /dev/null ++++ b/configure.ac +@@ -0,0 +1,34 @@ ++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. ++AC_CHECK_LIB([z], [gzputs]) ++AC_SEARCH_LIBS([gethostbyname], [nsl]) ++AC_SEARCH_LIBS([bind], [socket]) ++ ++# 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 strsep tzset]) ++ ++AC_CONFIG_FILES([Makefile]) ++AC_OUTPUT ++ +-- +1.6.0.5 + Deleted: csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,62 +0,0 @@ -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-add-modified-autoconf-check_zlib-from-loic-dachary.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,96 @@ +From e1f5b581f98abf6ffca50a1a757108e8ebba8f9f Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 18:49:38 +0100 +Subject: [PATCH] add modified autoconf check_zlib from loic dachary + +--- + configure.ac | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- + 1 files changed, 65 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index a882782..414c98b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -3,6 +3,70 @@ AC_INIT([cvsps], [2.1]) + AC_CONFIG_SRCDIR([util.h]) + AC_CONFIG_HEADERS([config.h]) + ++ ++# This is a slightly modified version of CHECK_ZLIB as provided under the GPL ++# by Loic Dachary at http://autoconf-archive.cryp.to/check_zlib.html ++# The GPL may be found at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt ++# I am not included the file with this project since the project is not mine. ++# 2009-01-23 ++# -Ben Walton ++ ++#this should be a safe default for most systems that ship a zlib by default. ++ZLIB_HOME=/usr/ ++ ++AC_DEFUN([CHECK_ZLIB], ++# ++# Handle user hints ++# ++[AC_MSG_CHECKING(for zlib) ++AC_ARG_WITH(zlib, ++[ --with-zlib=DIR root directory path of zlib installation [defaults to /usr]], ++[if test "$withval" != no ; then ++ AC_MSG_RESULT($withval) ++ if test -d "$withval" ++ then ++ ZLIB_HOME="$withval" ++ else ++ AC_MSG_ERROR([$withval is not a valid zlib dir.]) ++ fi ++else ++ AC_MSG_ERROR([You can't disable use of zlib]) ++fi]) ++ ++# Locate zlib, if wanted ++if test -n "${ZLIB_HOME}" ++then ++ ZLIB_OLD_LDFLAGS=$LDFLAGS ++ ZLIB_OLD_CPPFLAGS=$LDFLAGS ++ LDFLAGS="$LDFLAGS -L${ZLIB_HOME}/lib" ++ CPPFLAGS="$CPPFLAGS -I${ZLIB_HOME}/include" ++ AC_LANG_SAVE ++ AC_LANG_C ++ AC_CHECK_LIB(z, inflateEnd, [zlib_cv_libz=yes], [zlib_cv_libz=no]) ++ AC_CHECK_HEADER(zlib.h, [zlib_cv_zlib_h=yes], [zlib_cv_zlib_h=no]) ++ AC_LANG_RESTORE ++ if test "$zlib_cv_libz" = "yes" -a "$zlib_cv_zlib_h" = "yes" ++ then ++ # ++ # If both library and header were found, use them ++ # ++ AC_CHECK_LIB(z, inflateEnd) ++ AC_MSG_CHECKING(zlib in ${ZLIB_HOME}) ++ AC_MSG_RESULT(ok) ++ else ++ # ++ # If either header or library was not found, revert and bomb ++ # ++ AC_MSG_CHECKING(zlib in ${ZLIB_HOME}) ++ LDFLAGS="$ZLIB_OLD_LDFLAGS" ++ CPPFLAGS="$ZLIB_OLD_CPPFLAGS" ++ AC_MSG_RESULT(failed) ++ AC_MSG_ERROR(specify a valid zlib installation with --with-zlib=DIR) ++ fi ++fi ++ ++]) ++ + # We're using automake too + AM_INIT_AUTOMAKE(cvsps,2.1) + +@@ -11,7 +75,7 @@ AC_PROG_CC + AC_PROG_INSTALL + + # Checks for libraries. +-AC_CHECK_LIB([z], [gzputs]) ++CHECK_ZLIB() + AC_SEARCH_LIBS([gethostbyname], [nsl]) + AC_SEARCH_LIBS([bind], [socket]) + +-- +1.6.0.5 + Deleted: 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 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0002-adding-script-to-do-the-auto-steps.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,25 +0,0 @@ -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/0003-add-script-to-do-the-autotools-setup-steps.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0003-add-script-to-do-the-autotools-setup-steps.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0003-add-script-to-do-the-autotools-setup-steps.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,25 @@ +From 8c789701ec47444baac8612e1fbf258989b3f1ce Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 01:54:49 +0100 +Subject: [PATCH] add script to do the autotools setup 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-add-config.h-awareness-to-all-source-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0004-add-config.h-awareness-to-all-source-files.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0004-add-config.h-awareness-to-all-source-files.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,204 @@ +From 27703c47440259a4196164fe2016af6a9d2da7ca Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 19:10:58 +0100 +Subject: [PATCH] add config.h awareness to all source files + +--- + cache.c | 4 ++++ + cap.c | 4 ++++ + cbtcommon/debug.c | 4 ++++ + cbtcommon/hash.c | 4 ++++ + cbtcommon/sio.c | 4 ++++ + cbtcommon/tcpsocket.c | 4 ++++ + cbtcommon/text_util.c | 5 +++++ + cvs_direct.c | 4 ++++ + cvsps.c | 4 ++++ + list_sort.c | 4 ++++ + stats.c | 4 ++++ + util.c | 4 ++++ + 12 files changed, 49 insertions(+), 0 deletions(-) + +diff --git a/cache.c b/cache.c +index 4c51cf7..2519684 100644 +--- a/cache.c ++++ b/cache.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cap.c b/cap.c +index a6186f6..0197489 100644 +--- a/cap.c ++++ b/cap.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cbtcommon/debug.c b/cbtcommon/debug.c +index 3f5ac52..b0f818d 100644 +--- a/cbtcommon/debug.c ++++ b/cbtcommon/debug.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cbtcommon/hash.c b/cbtcommon/hash.c +index ddc081b..81a34dc 100644 +--- a/cbtcommon/hash.c ++++ b/cbtcommon/hash.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cbtcommon/sio.c b/cbtcommon/sio.c +index a9faf81..3f70851 100644 +--- a/cbtcommon/sio.c ++++ b/cbtcommon/sio.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + + #ifdef WIN32 +diff --git a/cbtcommon/tcpsocket.c b/cbtcommon/tcpsocket.c +index 27cc13a..ec64bd1 100644 +--- a/cbtcommon/tcpsocket.c ++++ b/cbtcommon/tcpsocket.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #ifdef SOLARIS + #include + #else +diff --git a/cbtcommon/text_util.c b/cbtcommon/text_util.c +index 052a94b..485f0be 100644 +--- a/cbtcommon/text_util.c ++++ b/cbtcommon/text_util.c +@@ -9,6 +9,11 @@ + * @created Fri Nov 6 14:33:29 1998 + * @version $Revision: 1.9 $$Date: 2001/10/25 18:36:11 $ + */ ++ ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cvs_direct.c b/cvs_direct.c +index 920487d..4eb268c 100644 +--- a/cvs_direct.c ++++ b/cvs_direct.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cvsps.c b/cvsps.c +index 1e64e3c..4f49f22 100644 +--- a/cvsps.c ++++ b/cvsps.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/list_sort.c b/list_sort.c +index 6c6f54c..95ee733 100644 +--- a/list_sort.c ++++ b/list_sort.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include "list_sort.h" +diff --git a/stats.c b/stats.c +index 0276a50..3c3085d 100644 +--- a/stats.c ++++ b/stats.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/util.c b/util.c +index e4b9d14..216c53e 100644 +--- a/util.c ++++ b/util.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +-- +1.6.0.5 + Deleted: 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 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,25 +0,0 @@ -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 - Deleted: 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 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0005-add-autoconf-checks-for-lsocket-lnsl.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,30 +0,0 @@ -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/0005-gnulib-import-of-missing-functions.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0005-gnulib-import-of-missing-functions.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0005-gnulib-import-of-missing-functions.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,5783 @@ +From bac41c37a9db9aae12ff571ae511c925a03c261a Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 21:35:07 +0100 +Subject: [PATCH] gnulib import of missing functions + +--- + gnulib/Makefile.am | 368 +++++++++++++++++++++++++++ + gnulib/alloca.in.h | 56 ++++ + gnulib/m4/alloca.m4 | 46 ++++ + gnulib/m4/eealloc.m4 | 32 +++ + gnulib/m4/environ.m4 | 36 +++ + gnulib/m4/extensions.m4 | 94 +++++++ + gnulib/m4/gnulib-cache.m4 | 37 +++ + gnulib/m4/gnulib-common.m4 | 110 ++++++++ + gnulib/m4/gnulib-comp.m4 | 224 ++++++++++++++++ + gnulib/m4/gnulib-tool.m4 | 57 ++++ + gnulib/m4/include_next.m4 | 170 +++++++++++++ + gnulib/m4/longlong.m4 | 106 ++++++++ + gnulib/m4/malloca.m4 | 14 + + gnulib/m4/multiarch.m4 | 66 +++++ + gnulib/m4/setenv.m4 | 71 +++++ + gnulib/m4/stdint.m4 | 404 +++++++++++++++++++++++++++++ + gnulib/m4/stdlib_h.m4 | 62 +++++ + gnulib/m4/string_h.m4 | 92 +++++++ + gnulib/m4/strsep.m4 | 24 ++ + gnulib/m4/unistd_h.m4 | 83 ++++++ + gnulib/m4/wchar.m4 | 99 +++++++ + gnulib/m4/wint_t.m4 | 28 ++ + gnulib/malloca.c | 137 ++++++++++ + gnulib/malloca.h | 134 ++++++++++ + gnulib/malloca.valgrind | 7 + + gnulib/setenv.c | 330 ++++++++++++++++++++++++ + gnulib/stdint.in.h | 567 +++++++++++++++++++++++++++++++++++++++++ + gnulib/stdlib.in.h | 377 +++++++++++++++++++++++++++ + gnulib/string.in.h | 605 ++++++++++++++++++++++++++++++++++++++++++++ + gnulib/strsep.c | 58 +++++ + gnulib/unistd.in.h | 582 ++++++++++++++++++++++++++++++++++++++++++ + gnulib/unsetenv.c | 90 +++++++ + gnulib/wchar.in.h | 306 ++++++++++++++++++++++ + link-warning.h | 28 ++ + 34 files changed, 5500 insertions(+), 0 deletions(-) + create mode 100644 gnulib/Makefile.am + create mode 100644 gnulib/alloca.in.h + create mode 100644 gnulib/m4/alloca.m4 + create mode 100644 gnulib/m4/eealloc.m4 + create mode 100644 gnulib/m4/environ.m4 + create mode 100644 gnulib/m4/extensions.m4 + create mode 100644 gnulib/m4/gnulib-cache.m4 + create mode 100644 gnulib/m4/gnulib-common.m4 + create mode 100644 gnulib/m4/gnulib-comp.m4 + create mode 100644 gnulib/m4/gnulib-tool.m4 + create mode 100644 gnulib/m4/include_next.m4 + create mode 100644 gnulib/m4/longlong.m4 + create mode 100644 gnulib/m4/malloca.m4 + create mode 100644 gnulib/m4/multiarch.m4 + create mode 100644 gnulib/m4/setenv.m4 + create mode 100644 gnulib/m4/stdint.m4 + create mode 100644 gnulib/m4/stdlib_h.m4 + create mode 100644 gnulib/m4/string_h.m4 + create mode 100644 gnulib/m4/strsep.m4 + create mode 100644 gnulib/m4/unistd_h.m4 + create mode 100644 gnulib/m4/wchar.m4 + create mode 100644 gnulib/m4/wint_t.m4 + create mode 100644 gnulib/malloca.c + create mode 100644 gnulib/malloca.h + create mode 100644 gnulib/malloca.valgrind + create mode 100644 gnulib/setenv.c + create mode 100644 gnulib/stdint.in.h + create mode 100644 gnulib/stdlib.in.h + create mode 100644 gnulib/string.in.h + create mode 100644 gnulib/strsep.c + create mode 100644 gnulib/unistd.in.h + create mode 100644 gnulib/unsetenv.c + create mode 100644 gnulib/wchar.in.h + create mode 100644 link-warning.h + +diff --git a/gnulib/Makefile.am b/gnulib/Makefile.am +new file mode 100644 +index 0000000..b1ddb97 +--- /dev/null ++++ b/gnulib/Makefile.am +@@ -0,0 +1,368 @@ ++## DO NOT EDIT! GENERATED AUTOMATICALLY! ++## Process this file with automake to produce Makefile.in. ++# Copyright (C) 2002-2009 Free Software Foundation, Inc. ++# ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. ++# ++# Generated by gnulib-tool. ++# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=. --no-libtool --macro-prefix=gl setenv stdint strsep unsetenv ++ ++AUTOMAKE_OPTIONS = 1.5 gnits ++ ++SUBDIRS = ++noinst_HEADERS = ++noinst_LIBRARIES = ++noinst_LTLIBRARIES = ++EXTRA_DIST = ++BUILT_SOURCES = ++SUFFIXES = ++MOSTLYCLEANFILES = core *.stackdump ++MOSTLYCLEANDIRS = ++CLEANFILES = ++DISTCLEANFILES = ++MAINTAINERCLEANFILES = ++EXTRA_DIST += m4/gnulib-cache.m4 ++ ++AM_CPPFLAGS = ++ ++noinst_LIBRARIES += libgnu.a ++ ++libgnu_a_SOURCES = ++libgnu_a_LIBADD = $(gl_LIBOBJS) ++libgnu_a_DEPENDENCIES = $(gl_LIBOBJS) ++EXTRA_libgnu_a_SOURCES = ++ ++## begin gnulib module alloca-opt ++ ++BUILT_SOURCES += $(ALLOCA_H) ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++alloca.h: alloca.in.h ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ cat $(srcdir)/alloca.in.h; \ ++ } > $@-t ++ mv -f $@-t $@ ++MOSTLYCLEANFILES += alloca.h alloca.h-t ++ ++## end gnulib module alloca-opt ++ ++## begin gnulib module link-warning ++ ++LINK_WARNING_H=$(top_srcdir)/./link-warning.h ++ ++## end gnulib module link-warning ++ ++## begin gnulib module malloca ++ ++libgnu_a_SOURCES += malloca.c ++ ++## end gnulib module malloca ++ ++## begin gnulib module stdint ++ ++BUILT_SOURCES += $(STDINT_H) ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++stdint.h: stdint.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ ++ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \ ++ -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \ ++ -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ ++ -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \ ++ -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \ ++ -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ ++ -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \ ++ -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \ ++ -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \ ++ -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \ ++ -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \ ++ -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \ ++ -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \ ++ -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \ ++ -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \ ++ -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ ++ -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ ++ < $(srcdir)/stdint.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += stdint.h stdint.h-t ++ ++## end gnulib module stdint ++ ++## begin gnulib module stdlib ++ ++BUILT_SOURCES += stdlib.h ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++stdlib.h: stdlib.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ ++ sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \ ++ -e 's|@''GNULIB_MALLOC_POSIX''@|$(GNULIB_MALLOC_POSIX)|g' \ ++ -e 's|@''GNULIB_REALLOC_POSIX''@|$(GNULIB_REALLOC_POSIX)|g' \ ++ -e 's|@''GNULIB_CALLOC_POSIX''@|$(GNULIB_CALLOC_POSIX)|g' \ ++ -e 's|@''GNULIB_ATOLL''@|$(GNULIB_ATOLL)|g' \ ++ -e 's|@''GNULIB_GETLOADAVG''@|$(GNULIB_GETLOADAVG)|g' \ ++ -e 's|@''GNULIB_GETSUBOPT''@|$(GNULIB_GETSUBOPT)|g' \ ++ -e 's|@''GNULIB_MKDTEMP''@|$(GNULIB_MKDTEMP)|g' \ ++ -e 's|@''GNULIB_MKSTEMP''@|$(GNULIB_MKSTEMP)|g' \ ++ -e 's|@''GNULIB_PUTENV''@|$(GNULIB_PUTENV)|g' \ ++ -e 's|@''GNULIB_RANDOM_R''@|$(GNULIB_RANDOM_R)|g' \ ++ -e 's|@''GNULIB_RPMATCH''@|$(GNULIB_RPMATCH)|g' \ ++ -e 's|@''GNULIB_SETENV''@|$(GNULIB_SETENV)|g' \ ++ -e 's|@''GNULIB_STRTOD''@|$(GNULIB_STRTOD)|g' \ ++ -e 's|@''GNULIB_STRTOLL''@|$(GNULIB_STRTOLL)|g' \ ++ -e 's|@''GNULIB_STRTOULL''@|$(GNULIB_STRTOULL)|g' \ ++ -e 's|@''GNULIB_UNSETENV''@|$(GNULIB_UNSETENV)|g' \ ++ -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \ ++ -e 's|@''HAVE_CALLOC_POSIX''@|$(HAVE_CALLOC_POSIX)|g' \ ++ -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \ ++ -e 's|@''HAVE_MALLOC_POSIX''@|$(HAVE_MALLOC_POSIX)|g' \ ++ -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \ ++ -e 's|@''HAVE_REALLOC_POSIX''@|$(HAVE_REALLOC_POSIX)|g' \ ++ -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \ ++ -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \ ++ -e 's|@''HAVE_SETENV''@|$(HAVE_SETENV)|g' \ ++ -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \ ++ -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \ ++ -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \ ++ -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \ ++ -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \ ++ -e 's|@''HAVE_UNSETENV''@|$(HAVE_UNSETENV)|g' \ ++ -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \ ++ -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \ ++ -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \ ++ -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \ ++ -e 's|@''VOID_UNSETENV''@|$(VOID_UNSETENV)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/stdlib.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += stdlib.h stdlib.h-t ++ ++## end gnulib module stdlib ++ ++## begin gnulib module string ++ ++BUILT_SOURCES += string.h ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++string.h: string.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ ++ sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \ ++ -e 's|@''GNULIB_MBSLEN''@|$(GNULIB_MBSLEN)|g' \ ++ -e 's|@''GNULIB_MBSNLEN''@|$(GNULIB_MBSNLEN)|g' \ ++ -e 's|@''GNULIB_MBSCHR''@|$(GNULIB_MBSCHR)|g' \ ++ -e 's|@''GNULIB_MBSRCHR''@|$(GNULIB_MBSRCHR)|g' \ ++ -e 's|@''GNULIB_MBSSTR''@|$(GNULIB_MBSSTR)|g' \ ++ -e 's|@''GNULIB_MBSCASECMP''@|$(GNULIB_MBSCASECMP)|g' \ ++ -e 's|@''GNULIB_MBSNCASECMP''@|$(GNULIB_MBSNCASECMP)|g' \ ++ -e 's|@''GNULIB_MBSPCASECMP''@|$(GNULIB_MBSPCASECMP)|g' \ ++ -e 's|@''GNULIB_MBSCASESTR''@|$(GNULIB_MBSCASESTR)|g' \ ++ -e 's|@''GNULIB_MBSCSPN''@|$(GNULIB_MBSCSPN)|g' \ ++ -e 's|@''GNULIB_MBSPBRK''@|$(GNULIB_MBSPBRK)|g' \ ++ -e 's|@''GNULIB_MBSSPN''@|$(GNULIB_MBSSPN)|g' \ ++ -e 's|@''GNULIB_MBSSEP''@|$(GNULIB_MBSSEP)|g' \ ++ -e 's|@''GNULIB_MBSTOK_R''@|$(GNULIB_MBSTOK_R)|g' \ ++ -e 's|@''GNULIB_MEMMEM''@|$(GNULIB_MEMMEM)|g' \ ++ -e 's|@''GNULIB_MEMPCPY''@|$(GNULIB_MEMPCPY)|g' \ ++ -e 's|@''GNULIB_MEMRCHR''@|$(GNULIB_MEMRCHR)|g' \ ++ -e 's|@''GNULIB_RAWMEMCHR''@|$(GNULIB_RAWMEMCHR)|g' \ ++ -e 's|@''GNULIB_STPCPY''@|$(GNULIB_STPCPY)|g' \ ++ -e 's|@''GNULIB_STPNCPY''@|$(GNULIB_STPNCPY)|g' \ ++ -e 's|@''GNULIB_STRCHRNUL''@|$(GNULIB_STRCHRNUL)|g' \ ++ -e 's|@''GNULIB_STRDUP''@|$(GNULIB_STRDUP)|g' \ ++ -e 's|@''GNULIB_STRNDUP''@|$(GNULIB_STRNDUP)|g' \ ++ -e 's|@''GNULIB_STRNLEN''@|$(GNULIB_STRNLEN)|g' \ ++ -e 's|@''GNULIB_STRPBRK''@|$(GNULIB_STRPBRK)|g' \ ++ -e 's|@''GNULIB_STRSEP''@|$(GNULIB_STRSEP)|g' \ ++ -e 's|@''GNULIB_STRSTR''@|$(GNULIB_STRSTR)|g' \ ++ -e 's|@''GNULIB_STRCASESTR''@|$(GNULIB_STRCASESTR)|g' \ ++ -e 's|@''GNULIB_STRTOK_R''@|$(GNULIB_STRTOK_R)|g' \ ++ -e 's|@''GNULIB_STRERROR''@|$(GNULIB_STRERROR)|g' \ ++ -e 's|@''GNULIB_STRSIGNAL''@|$(GNULIB_STRSIGNAL)|g' \ ++ -e 's|@''GNULIB_STRVERSCMP''@|$(GNULIB_STRVERSCMP)|g' \ ++ -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \ ++ -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \ ++ -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \ ++ -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \ ++ -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \ ++ -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \ ++ -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \ ++ -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \ ++ -e 's|@''HAVE_STRNDUP''@|$(HAVE_STRNDUP)|g' \ ++ -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \ ++ -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \ ++ -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \ ++ -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \ ++ -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \ ++ -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \ ++ -e 's|@''HAVE_DECL_STRERROR''@|$(HAVE_DECL_STRERROR)|g' \ ++ -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \ ++ -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \ ++ -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ ++ -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \ ++ -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ ++ -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \ ++ -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \ ++ -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/string.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += string.h string.h-t ++ ++## end gnulib module string ++ ++## begin gnulib module unistd ++ ++BUILT_SOURCES += unistd.h ++ ++# We need the following in order to create an empty placeholder for ++# when the system doesn't have one. ++unistd.h: unistd.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ sed -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ ++ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \ ++ -e 's|@''GNULIB_CHOWN''@|$(GNULIB_CHOWN)|g' \ ++ -e 's|@''GNULIB_CLOSE''@|$(GNULIB_CLOSE)|g' \ ++ -e 's|@''GNULIB_DUP2''@|$(GNULIB_DUP2)|g' \ ++ -e 's|@''GNULIB_ENVIRON''@|$(GNULIB_ENVIRON)|g' \ ++ -e 's|@''GNULIB_EUIDACCESS''@|$(GNULIB_EUIDACCESS)|g' \ ++ -e 's|@''GNULIB_FCHDIR''@|$(GNULIB_FCHDIR)|g' \ ++ -e 's|@''GNULIB_FSYNC''@|$(GNULIB_FSYNC)|g' \ ++ -e 's|@''GNULIB_FTRUNCATE''@|$(GNULIB_FTRUNCATE)|g' \ ++ -e 's|@''GNULIB_GETCWD''@|$(GNULIB_GETCWD)|g' \ ++ -e 's|@''GNULIB_GETDOMAINNAME''@|$(GNULIB_GETDOMAINNAME)|g' \ ++ -e 's|@''GNULIB_GETDTABLESIZE''@|$(GNULIB_GETDTABLESIZE)|g' \ ++ -e 's|@''GNULIB_GETHOSTNAME''@|$(GNULIB_GETHOSTNAME)|g' \ ++ -e 's|@''GNULIB_GETLOGIN_R''@|$(GNULIB_GETLOGIN_R)|g' \ ++ -e 's|@''GNULIB_GETPAGESIZE''@|$(GNULIB_GETPAGESIZE)|g' \ ++ -e 's|@''GNULIB_GETUSERSHELL''@|$(GNULIB_GETUSERSHELL)|g' \ ++ -e 's|@''GNULIB_LCHOWN''@|$(GNULIB_LCHOWN)|g' \ ++ -e 's|@''GNULIB_LINK''@|$(GNULIB_LINK)|g' \ ++ -e 's|@''GNULIB_LSEEK''@|$(GNULIB_LSEEK)|g' \ ++ -e 's|@''GNULIB_READLINK''@|$(GNULIB_READLINK)|g' \ ++ -e 's|@''GNULIB_SLEEP''@|$(GNULIB_SLEEP)|g' \ ++ -e 's|@''GNULIB_UNISTD_H_SIGPIPE''@|$(GNULIB_UNISTD_H_SIGPIPE)|g' \ ++ -e 's|@''GNULIB_WRITE''@|$(GNULIB_WRITE)|g' \ ++ -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \ ++ -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \ ++ -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \ ++ -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \ ++ -e 's|@''HAVE_GETDOMAINNAME''@|$(HAVE_GETDOMAINNAME)|g' \ ++ -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \ ++ -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \ ++ -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \ ++ -e 's|@''HAVE_GETUSERSHELL''@|$(HAVE_GETUSERSHELL)|g' \ ++ -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \ ++ -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \ ++ -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \ ++ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ ++ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ ++ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ ++ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ ++ -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ ++ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ ++ -e 's|@''REPLACE_FCHDIR''@|$(REPLACE_FCHDIR)|g' \ ++ -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \ ++ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ ++ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ ++ -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \ ++ -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \ ++ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/unistd.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += unistd.h unistd.h-t ++ ++## end gnulib module unistd ++ ++## begin gnulib module wchar ++ ++BUILT_SOURCES += $(WCHAR_H) ++ ++# We need the following in order to create when the system ++# version does not work standalone. ++wchar.h: wchar.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_WCHAR_H''@|$(NEXT_WCHAR_H)|g' \ ++ -e 's|@''HAVE_WCHAR_H''@|$(HAVE_WCHAR_H)|g' \ ++ -e 's|@''GNULIB_BTOWC''@|$(GNULIB_BTOWC)|g' \ ++ -e 's|@''GNULIB_WCTOB''@|$(GNULIB_WCTOB)|g' \ ++ -e 's|@''GNULIB_MBSINIT''@|$(GNULIB_MBSINIT)|g' \ ++ -e 's|@''GNULIB_MBRTOWC''@|$(GNULIB_MBRTOWC)|g' \ ++ -e 's|@''GNULIB_MBRLEN''@|$(GNULIB_MBRLEN)|g' \ ++ -e 's|@''GNULIB_MBSRTOWCS''@|$(GNULIB_MBSRTOWCS)|g' \ ++ -e 's|@''GNULIB_MBSNRTOWCS''@|$(GNULIB_MBSNRTOWCS)|g' \ ++ -e 's|@''GNULIB_WCRTOMB''@|$(GNULIB_WCRTOMB)|g' \ ++ -e 's|@''GNULIB_WCSRTOMBS''@|$(GNULIB_WCSRTOMBS)|g' \ ++ -e 's|@''GNULIB_WCSNRTOMBS''@|$(GNULIB_WCSNRTOMBS)|g' \ ++ -e 's|@''GNULIB_WCWIDTH''@|$(GNULIB_WCWIDTH)|g' \ ++ -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \ ++ -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \ ++ -e 's|@''HAVE_MBSINIT''@|$(HAVE_MBSINIT)|g' \ ++ -e 's|@''HAVE_MBRTOWC''@|$(HAVE_MBRTOWC)|g' \ ++ -e 's|@''HAVE_MBRLEN''@|$(HAVE_MBRLEN)|g' \ ++ -e 's|@''HAVE_MBSRTOWCS''@|$(HAVE_MBSRTOWCS)|g' \ ++ -e 's|@''HAVE_MBSNRTOWCS''@|$(HAVE_MBSNRTOWCS)|g' \ ++ -e 's|@''HAVE_WCRTOMB''@|$(HAVE_WCRTOMB)|g' \ ++ -e 's|@''HAVE_WCSRTOMBS''@|$(HAVE_WCSRTOMBS)|g' \ ++ -e 's|@''HAVE_WCSNRTOMBS''@|$(HAVE_WCSNRTOMBS)|g' \ ++ -e 's|@''HAVE_DECL_WCTOB''@|$(HAVE_DECL_WCTOB)|g' \ ++ -e 's|@''HAVE_DECL_WCWIDTH''@|$(HAVE_DECL_WCWIDTH)|g' \ ++ -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \ ++ -e 's|@''REPLACE_BTOWC''@|$(REPLACE_BTOWC)|g' \ ++ -e 's|@''REPLACE_WCTOB''@|$(REPLACE_WCTOB)|g' \ ++ -e 's|@''REPLACE_MBSINIT''@|$(REPLACE_MBSINIT)|g' \ ++ -e 's|@''REPLACE_MBRTOWC''@|$(REPLACE_MBRTOWC)|g' \ ++ -e 's|@''REPLACE_MBRLEN''@|$(REPLACE_MBRLEN)|g' \ ++ -e 's|@''REPLACE_MBSRTOWCS''@|$(REPLACE_MBSRTOWCS)|g' \ ++ -e 's|@''REPLACE_MBSNRTOWCS''@|$(REPLACE_MBSNRTOWCS)|g' \ ++ -e 's|@''REPLACE_WCRTOMB''@|$(REPLACE_WCRTOMB)|g' \ ++ -e 's|@''REPLACE_WCSRTOMBS''@|$(REPLACE_WCSRTOMBS)|g' \ ++ -e 's|@''REPLACE_WCWIDTH''@|$(REPLACE_WCWIDTH)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/wchar.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += wchar.h wchar.h-t ++ ++## end gnulib module wchar ++ ++ ++mostlyclean-local: mostlyclean-generic ++ @for dir in '' $(MOSTLYCLEANDIRS); do \ ++ if test -n "$$dir" && test -d $$dir; then \ ++ echo "rmdir $$dir"; rmdir $$dir; \ ++ fi; \ ++ done; \ ++ : +diff --git a/gnulib/alloca.in.h b/gnulib/alloca.in.h +new file mode 100644 +index 0000000..6269607 +--- /dev/null ++++ b/gnulib/alloca.in.h +@@ -0,0 +1,56 @@ ++/* Memory allocation on the stack. ++ ++ Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software ++ Foundation, Inc. ++ ++ 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, 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. */ ++ ++/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H ++ means there is a real alloca function. */ ++#ifndef _GL_ALLOCA_H ++#define _GL_ALLOCA_H ++ ++/* alloca (N) returns a pointer to N bytes of memory ++ allocated on the stack, which will last until the function returns. ++ Use of alloca should be avoided: ++ - inside arguments of function calls - undefined behaviour, ++ - in inline functions - the allocation may actually last until the ++ calling function returns, ++ - for huge N (say, N >= 65536) - you never know how large (or small) ++ the stack is, and when the stack cannot fulfill the memory allocation ++ request, the program just crashes. ++ */ ++ ++#ifndef alloca ++# ifdef __GNUC__ ++# define alloca __builtin_alloca ++# elif defined _AIX ++# define alloca __alloca ++# elif defined _MSC_VER ++# include ++# define alloca _alloca ++# elif defined __DECC && defined __VMS ++# define alloca __ALLOCA ++# else ++# include ++# ifdef __cplusplus ++extern "C" ++# endif ++void *alloca (size_t); ++# endif ++#endif ++ ++#endif /* _GL_ALLOCA_H */ +diff --git a/gnulib/m4/alloca.m4 b/gnulib/m4/alloca.m4 +new file mode 100644 +index 0000000..4b978e1 +--- /dev/null ++++ b/gnulib/m4/alloca.m4 +@@ -0,0 +1,46 @@ ++# alloca.m4 serial 9 ++dnl Copyright (C) 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_FUNC_ALLOCA], ++[ ++ dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57. ++ AC_REQUIRE([AC_PROG_CPP]) ++ AC_REQUIRE([AC_PROG_EGREP]) ++ ++ AC_REQUIRE([AC_FUNC_ALLOCA]) ++ if test $ac_cv_func_alloca_works = no; then ++ gl_PREREQ_ALLOCA ++ fi ++ ++ # Define an additional variable used in the Makefile substitution. ++ if test $ac_cv_working_alloca_h = yes; then ++ AC_CACHE_CHECK([for alloca as a compiler built-in], [gl_cv_rpl_alloca], [ ++ AC_EGREP_CPP([Need own alloca], [ ++#if defined __GNUC__ || defined _AIX || defined _MSC_VER ++ Need own alloca ++#endif ++ ], [gl_cv_rpl_alloca=yes], [gl_cv_rpl_alloca=no]) ++ ]) ++ if test $gl_cv_rpl_alloca = yes; then ++ dnl OK, alloca can be implemented through a compiler built-in. ++ AC_DEFINE([HAVE_ALLOCA], [1], ++ [Define to 1 if you have 'alloca' after including , ++ a header that may be supplied by this distribution.]) ++ ALLOCA_H=alloca.h ++ else ++ dnl alloca exists as a library function, i.e. it is slow and probably ++ dnl a memory leak. Don't define HAVE_ALLOCA in this case. ++ ALLOCA_H= ++ fi ++ else ++ ALLOCA_H=alloca.h ++ fi ++ AC_SUBST([ALLOCA_H]) ++]) ++ ++# Prerequisites of lib/alloca.c. ++# STACK_DIRECTION is already handled by AC_FUNC_ALLOCA. ++AC_DEFUN([gl_PREREQ_ALLOCA], [:]) +diff --git a/gnulib/m4/eealloc.m4 b/gnulib/m4/eealloc.m4 +new file mode 100644 +index 0000000..3c9c0b5 +--- /dev/null ++++ b/gnulib/m4/eealloc.m4 +@@ -0,0 +1,32 @@ ++# eealloc.m4 serial 2 ++dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_EEALLOC], ++[ ++ AC_REQUIRE([gl_EEMALLOC]) ++ AC_REQUIRE([gl_EEREALLOC]) ++ AC_REQUIRE([AC_C_INLINE]) ++]) ++ ++AC_DEFUN([gl_EEMALLOC], ++[ ++ _AC_FUNC_MALLOC_IF( ++ [gl_cv_func_malloc_0_nonnull=1], ++ [gl_cv_func_malloc_0_nonnull=0]) ++ AC_DEFINE_UNQUOTED([MALLOC_0_IS_NONNULL], [$gl_cv_func_malloc_0_nonnull], ++ [If malloc(0) is != NULL, define this to 1. Otherwise define this ++ to 0.]) ++]) ++ ++AC_DEFUN([gl_EEREALLOC], ++[ ++ _AC_FUNC_REALLOC_IF( ++ [gl_cv_func_realloc_0_nonnull=1], ++ [gl_cv_func_realloc_0_nonnull=0]) ++ AC_DEFINE_UNQUOTED([REALLOC_0_IS_NONNULL], [$gl_cv_func_realloc_0_nonnull], ++ [If realloc(NULL,0) is != NULL, define this to 1. Otherwise define this ++ to 0.]) ++]) +diff --git a/gnulib/m4/environ.m4 b/gnulib/m4/environ.m4 +new file mode 100644 +index 0000000..b17bb60 +--- /dev/null ++++ b/gnulib/m4/environ.m4 +@@ -0,0 +1,36 @@ ++# environ.m4 serial 2 ++dnl Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_ENVIRON], ++[ ++ AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) ++ dnl Persuade glibc to declare environ. ++ AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) ++ gt_CHECK_VAR_DECL([#include ], environ) ++ if test $gt_cv_var_environ_declaration != yes; then ++ HAVE_DECL_ENVIRON=0 ++ fi ++]) ++ ++# Check if a variable is properly declared. ++# gt_CHECK_VAR_DECL(includes,variable) ++AC_DEFUN([gt_CHECK_VAR_DECL], ++[ ++ define([gt_cv_var], [gt_cv_var_]$2[_declaration]) ++ AC_MSG_CHECKING([if $2 is properly declared]) ++ AC_CACHE_VAL([gt_cv_var], [ ++ AC_TRY_COMPILE([$1 ++ extern struct { int foo; } $2;], ++ [$2.foo = 1;], ++ gt_cv_var=no, ++ gt_cv_var=yes)]) ++ AC_MSG_RESULT([$gt_cv_var]) ++ if test $gt_cv_var = yes; then ++ AC_DEFINE([HAVE_]translit($2, [a-z], [A-Z])[_DECL], 1, ++ [Define if you have the declaration of $2.]) ++ fi ++ undefine([gt_cv_var]) ++]) +diff --git a/gnulib/m4/extensions.m4 b/gnulib/m4/extensions.m4 +new file mode 100644 +index 0000000..611fcfd +--- /dev/null ++++ b/gnulib/m4/extensions.m4 +@@ -0,0 +1,94 @@ ++# serial 6 -*- Autoconf -*- ++# Enable extensions on systems that normally disable them. ++ ++# Copyright (C) 2003, 2006-2008 Free Software Foundation, Inc. ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# This definition of AC_USE_SYSTEM_EXTENSIONS is stolen from CVS ++# Autoconf. Perhaps we can remove this once we can assume Autoconf ++# 2.62 or later everywhere, but since CVS Autoconf mutates rapidly ++# enough in this area it's likely we'll need to redefine ++# AC_USE_SYSTEM_EXTENSIONS for quite some time. ++ ++# AC_USE_SYSTEM_EXTENSIONS ++# ------------------------ ++# Enable extensions on systems that normally disable them, ++# typically due to standards-conformance issues. ++# Remember that #undef in AH_VERBATIM gets replaced with #define by ++# AC_DEFINE. The goal here is to define all known feature-enabling ++# macros, then, if reports of conflicts are made, disable macros that ++# cause problems on some platforms (such as __EXTENSIONS__). ++AC_DEFUN([AC_USE_SYSTEM_EXTENSIONS], ++[AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl ++AC_BEFORE([$0], [AC_RUN_IFELSE])dnl ++ ++ AC_REQUIRE([AC_CANONICAL_HOST]) ++ ++ AC_CHECK_HEADER([minix/config.h], [MINIX=yes], [MINIX=]) ++ if test "$MINIX" = yes; then ++ AC_DEFINE([_POSIX_SOURCE], [1], ++ [Define to 1 if you need to in order for `stat' and other ++ things to work.]) ++ AC_DEFINE([_POSIX_1_SOURCE], [2], ++ [Define to 2 if the system does not provide POSIX.1 features ++ except with this defined.]) ++ AC_DEFINE([_MINIX], [1], ++ [Define to 1 if on MINIX.]) ++ fi ++ ++ dnl HP-UX 11.11 defines mbstate_t only if _XOPEN_SOURCE is defined to 500, ++ dnl regardless of whether the flags -Ae or _D_HPUX_SOURCE=1 are already ++ dnl provided. ++ case "$host_os" in ++ hpux*) ++ AC_DEFINE([_XOPEN_SOURCE], [500], ++ [Define to 500 only on HP-UX.]) ++ ;; ++ esac ++ ++ AH_VERBATIM([__EXTENSIONS__], ++[/* Enable extensions on AIX 3, Interix. */ ++#ifndef _ALL_SOURCE ++# undef _ALL_SOURCE ++#endif ++/* Enable GNU extensions on systems that have them. */ ++#ifndef _GNU_SOURCE ++# undef _GNU_SOURCE ++#endif ++/* Enable threading extensions on Solaris. */ ++#ifndef _POSIX_PTHREAD_SEMANTICS ++# undef _POSIX_PTHREAD_SEMANTICS ++#endif ++/* Enable extensions on HP NonStop. */ ++#ifndef _TANDEM_SOURCE ++# undef _TANDEM_SOURCE ++#endif ++/* Enable general extensions on Solaris. */ ++#ifndef __EXTENSIONS__ ++# undef __EXTENSIONS__ ++#endif ++]) ++ AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__], ++ [ac_cv_safe_to_define___extensions__], ++ [AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([[ ++# define __EXTENSIONS__ 1 ++ ]AC_INCLUDES_DEFAULT])], ++ [ac_cv_safe_to_define___extensions__=yes], ++ [ac_cv_safe_to_define___extensions__=no])]) ++ test $ac_cv_safe_to_define___extensions__ = yes && ++ AC_DEFINE([__EXTENSIONS__]) ++ AC_DEFINE([_ALL_SOURCE]) ++ AC_DEFINE([_GNU_SOURCE]) ++ AC_DEFINE([_POSIX_PTHREAD_SEMANTICS]) ++ AC_DEFINE([_TANDEM_SOURCE]) ++])# AC_USE_SYSTEM_EXTENSIONS ++ ++# gl_USE_SYSTEM_EXTENSIONS ++# ------------------------ ++# Enable extensions on systems that normally disable them, ++# typically due to standards-conformance issues. ++AC_DEFUN([gl_USE_SYSTEM_EXTENSIONS], ++ [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])]) +diff --git a/gnulib/m4/gnulib-cache.m4 b/gnulib/m4/gnulib-cache.m4 +new file mode 100644 +index 0000000..49427a5 +--- /dev/null ++++ b/gnulib/m4/gnulib-cache.m4 +@@ -0,0 +1,37 @@ ++# Copyright (C) 2002-2009 Free Software Foundation, Inc. ++# ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. ++# ++# Generated by gnulib-tool. ++# ++# This file represents the specification of how gnulib-tool is used. ++# It acts as a cache: It is written and read by gnulib-tool. ++# In projects using CVS, this file is meant to be stored in CVS, ++# like the configure.ac and various Makefile.am files. ++ ++ ++# Specification in the form of a command-line invocation: ++# gnulib-tool --import --dir=. --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=. --no-libtool --macro-prefix=gl setenv stdint strsep unsetenv ++ ++# Specification in the form of a few gnulib-tool.m4 macro invocations: ++gl_LOCAL_DIR([]) ++gl_MODULES([ ++ setenv ++ stdint ++ strsep ++ unsetenv ++]) ++gl_AVOID([]) ++gl_SOURCE_BASE([gnulib]) ++gl_M4_BASE([gnulib/m4]) ++gl_PO_BASE([]) ++gl_DOC_BASE([doc]) ++gl_TESTS_BASE([tests]) ++gl_LIB([libgnu]) ++gl_MAKEFILE_NAME([]) ++gl_MACRO_PREFIX([gl]) ++gl_PO_DOMAIN([]) +diff --git a/gnulib/m4/gnulib-common.m4 b/gnulib/m4/gnulib-common.m4 +new file mode 100644 +index 0000000..cfd1b99 +--- /dev/null ++++ b/gnulib/m4/gnulib-common.m4 +@@ -0,0 +1,110 @@ ++# gnulib-common.m4 serial 8 ++dnl Copyright (C) 2007-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++# gl_COMMON ++# is expanded unconditionally through gnulib-tool magic. ++AC_DEFUN([gl_COMMON], [ ++ dnl Use AC_REQUIRE here, so that the code is expanded once only. ++ AC_REQUIRE([gl_COMMON_BODY]) ++]) ++AC_DEFUN([gl_COMMON_BODY], [ ++ AH_VERBATIM([isoc99_inline], ++[/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports ++ the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of ++ earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. ++ __APPLE__ && __MACH__ test for MacOS X. ++ __APPLE_CC__ tests for the Apple compiler and its version. ++ __STDC_VERSION__ tests for the C99 mode. */ ++#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ ++# define __GNUC_STDC_INLINE__ 1 ++#endif]) ++ AH_VERBATIM([unused_parameter], ++[/* Define as a marker that can be attached to function parameter declarations ++ for parameters that are not used. This helps to reduce warnings, such as ++ from GCC -Wunused-parameter. */ ++#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) ++# define _UNUSED_PARAMETER_ __attribute__ ((__unused__)) ++#else ++# define _UNUSED_PARAMETER_ ++#endif ++]) ++]) ++ ++# gl_MODULE_INDICATOR([modulename]) ++# defines a C macro indicating the presence of the given module. ++AC_DEFUN([gl_MODULE_INDICATOR], ++[ ++ AC_DEFINE([GNULIB_]translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1], ++ [Define to 1 when using the gnulib module ]$1[.]) ++]) ++ ++# m4_foreach_w ++# is a backport of autoconf-2.59c's m4_foreach_w. ++# Remove this macro when we can assume autoconf >= 2.60. ++m4_ifndef([m4_foreach_w], ++ [m4_define([m4_foreach_w], ++ [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])]) ++ ++# AC_PROG_MKDIR_P ++# is a backport of autoconf-2.60's AC_PROG_MKDIR_P. ++# Remove this macro when we can assume autoconf >= 2.60. ++m4_ifdef([AC_PROG_MKDIR_P], [], [ ++ AC_DEFUN([AC_PROG_MKDIR_P], ++ [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake ++ MKDIR_P='$(mkdir_p)' ++ AC_SUBST([MKDIR_P])])]) ++ ++# AC_C_RESTRICT ++# This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61, ++# so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++ ++# works. ++# This definition can be removed once autoconf >= 2.62 can be assumed. ++AC_DEFUN([AC_C_RESTRICT], ++[AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict], ++ [ac_cv_c_restrict=no ++ # The order here caters to the fact that C++ does not require restrict. ++ for ac_kw in __restrict __restrict__ _Restrict restrict; do ++ AC_COMPILE_IFELSE([AC_LANG_PROGRAM( ++ [[typedef int * int_ptr; ++ int foo (int_ptr $ac_kw ip) { ++ return ip[0]; ++ }]], ++ [[int s[1]; ++ int * $ac_kw t = s; ++ t[0] = 0; ++ return foo(t)]])], ++ [ac_cv_c_restrict=$ac_kw]) ++ test "$ac_cv_c_restrict" != no && break ++ done ++ ]) ++ AH_VERBATIM([restrict], ++[/* Define to the equivalent of the C99 'restrict' keyword, or to ++ nothing if this is not supported. Do not define if restrict is ++ supported directly. */ ++#undef restrict ++/* Work around a bug in Sun C++: it does not support _Restrict, even ++ though the corresponding Sun C compiler does, which causes ++ "#define restrict _Restrict" in the previous line. Perhaps some future ++ version of Sun C++ will work with _Restrict; if so, it'll probably ++ define __RESTRICT, just as Sun C does. */ ++#if defined __SUNPRO_CC && !defined __RESTRICT ++# define _Restrict ++#endif]) ++ case $ac_cv_c_restrict in ++ restrict) ;; ++ no) AC_DEFINE([restrict], []) ;; ++ *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;; ++ esac ++]) ++ ++# gl_BIGENDIAN ++# is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd. ++# Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some ++# macros invoke AC_C_BIGENDIAN with arguments. ++AC_DEFUN([gl_BIGENDIAN], ++[ ++ AC_C_BIGENDIAN ++]) +diff --git a/gnulib/m4/gnulib-comp.m4 b/gnulib/m4/gnulib-comp.m4 +new file mode 100644 +index 0000000..1134631 +--- /dev/null ++++ b/gnulib/m4/gnulib-comp.m4 +@@ -0,0 +1,224 @@ ++# DO NOT EDIT! GENERATED AUTOMATICALLY! ++# Copyright (C) 2002-2009 Free Software Foundation, Inc. ++# ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. ++# ++# Generated by gnulib-tool. ++# ++# This file represents the compiled summary of the specification in ++# gnulib-cache.m4. It lists the computed macro invocations that need ++# to be invoked from configure.ac. ++# In projects using CVS, this file can be treated like other built files. ++ ++ ++# This macro should be invoked from ./configure.ac, in the section ++# "Checks for programs", right after AC_PROG_CC, and certainly before ++# any checks for libraries, header files, types and library functions. ++AC_DEFUN([gl_EARLY], ++[ ++ m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace ++ m4_pattern_allow([^gl_ES$])dnl a valid locale name ++ m4_pattern_allow([^gl_LIBOBJS$])dnl a variable ++ m4_pattern_allow([^gl_LTLIBOBJS$])dnl a variable ++ AC_REQUIRE([AC_PROG_RANLIB]) ++ AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) ++]) ++ ++# This macro should be invoked from ./configure.ac, in the section ++# "Check for header files, types and library functions". ++AC_DEFUN([gl_INIT], ++[ ++ AM_CONDITIONAL([GL_COND_LIBTOOL], [false]) ++ gl_cond_libtool=false ++ gl_libdeps= ++ gl_ltlibdeps= ++ m4_pushdef([AC_LIBOBJ], m4_defn([gl_LIBOBJ])) ++ m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gl_REPLACE_FUNCS])) ++ m4_pushdef([AC_LIBSOURCES], m4_defn([gl_LIBSOURCES])) ++ m4_pushdef([gl_LIBSOURCES_LIST], []) ++ m4_pushdef([gl_LIBSOURCES_DIR], []) ++ gl_COMMON ++ gl_source_base='gnulib' ++ gl_FUNC_ALLOCA ++ gl_ENVIRON ++ gl_UNISTD_MODULE_INDICATOR([environ]) ++ gl_MALLOCA ++ AC_REQUIRE([gl_MULTIARCH]) ++ gl_FUNC_SETENV ++ gl_STDLIB_MODULE_INDICATOR([setenv]) ++ gl_STDINT_H ++ gl_STDLIB_H ++ gl_HEADER_STRING_H ++ gl_FUNC_STRSEP ++ gl_STRING_MODULE_INDICATOR([strsep]) ++ gl_UNISTD_H ++ gl_FUNC_UNSETENV ++ gl_STDLIB_MODULE_INDICATOR([unsetenv]) ++ gl_WCHAR_H ++ m4_ifval(gl_LIBSOURCES_LIST, [ ++ m4_syscmd([test ! -d ]m4_defn([gl_LIBSOURCES_DIR])[ || ++ for gl_file in ]gl_LIBSOURCES_LIST[ ; do ++ if test ! -r ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file ; then ++ echo "missing file ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file" >&2 ++ exit 1 ++ fi ++ done])dnl ++ m4_if(m4_sysval, [0], [], ++ [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ++ ]) ++ m4_popdef([gl_LIBSOURCES_DIR]) ++ m4_popdef([gl_LIBSOURCES_LIST]) ++ m4_popdef([AC_LIBSOURCES]) ++ m4_popdef([AC_REPLACE_FUNCS]) ++ m4_popdef([AC_LIBOBJ]) ++ AC_CONFIG_COMMANDS_PRE([ ++ gl_libobjs= ++ gl_ltlibobjs= ++ if test -n "$gl_LIBOBJS"; then ++ # Remove the extension. ++ sed_drop_objext='s/\.o$//;s/\.obj$//' ++ for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed "$sed_drop_objext" | sort | uniq`; do ++ gl_libobjs="$gl_libobjs $i.$ac_objext" ++ gl_ltlibobjs="$gl_ltlibobjs $i.lo" ++ done ++ fi ++ AC_SUBST([gl_LIBOBJS], [$gl_libobjs]) ++ AC_SUBST([gl_LTLIBOBJS], [$gl_ltlibobjs]) ++ ]) ++ gltests_libdeps= ++ gltests_ltlibdeps= ++ m4_pushdef([AC_LIBOBJ], m4_defn([gltests_LIBOBJ])) ++ m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gltests_REPLACE_FUNCS])) ++ m4_pushdef([AC_LIBSOURCES], m4_defn([gltests_LIBSOURCES])) ++ m4_pushdef([gltests_LIBSOURCES_LIST], []) ++ m4_pushdef([gltests_LIBSOURCES_DIR], []) ++ gl_COMMON ++ gl_source_base='tests' ++ m4_ifval(gltests_LIBSOURCES_LIST, [ ++ m4_syscmd([test ! -d ]m4_defn([gltests_LIBSOURCES_DIR])[ || ++ for gl_file in ]gltests_LIBSOURCES_LIST[ ; do ++ if test ! -r ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file ; then ++ echo "missing file ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file" >&2 ++ exit 1 ++ fi ++ done])dnl ++ m4_if(m4_sysval, [0], [], ++ [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ++ ]) ++ m4_popdef([gltests_LIBSOURCES_DIR]) ++ m4_popdef([gltests_LIBSOURCES_LIST]) ++ m4_popdef([AC_LIBSOURCES]) ++ m4_popdef([AC_REPLACE_FUNCS]) ++ m4_popdef([AC_LIBOBJ]) ++ AC_CONFIG_COMMANDS_PRE([ ++ gltests_libobjs= ++ gltests_ltlibobjs= ++ if test -n "$gltests_LIBOBJS"; then ++ # Remove the extension. ++ sed_drop_objext='s/\.o$//;s/\.obj$//' ++ for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed "$sed_drop_objext" | sort | uniq`; do ++ gltests_libobjs="$gltests_libobjs $i.$ac_objext" ++ gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" ++ done ++ fi ++ AC_SUBST([gltests_LIBOBJS], [$gltests_libobjs]) ++ AC_SUBST([gltests_LTLIBOBJS], [$gltests_ltlibobjs]) ++ ]) ++ LIBGNU_LIBDEPS="$gl_libdeps" ++ AC_SUBST([LIBGNU_LIBDEPS]) ++ LIBGNU_LTLIBDEPS="$gl_ltlibdeps" ++ AC_SUBST([LIBGNU_LTLIBDEPS]) ++]) ++ ++# Like AC_LIBOBJ, except that the module name goes ++# into gl_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gl_LIBOBJ], [ ++ AS_LITERAL_IF([$1], [gl_LIBSOURCES([$1.c])])dnl ++ gl_LIBOBJS="$gl_LIBOBJS $1.$ac_objext" ++]) ++ ++# Like AC_REPLACE_FUNCS, except that the module name goes ++# into gl_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gl_REPLACE_FUNCS], [ ++ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl ++ AC_CHECK_FUNCS([$1], , [gl_LIBOBJ($ac_func)]) ++]) ++ ++# Like AC_LIBSOURCES, except the directory where the source file is ++# expected is derived from the gnulib-tool parameterization, ++# and alloca is special cased (for the alloca-opt module). ++# We could also entirely rely on EXTRA_lib..._SOURCES. ++AC_DEFUN([gl_LIBSOURCES], [ ++ m4_foreach([_gl_NAME], [$1], [ ++ m4_if(_gl_NAME, [alloca.c], [], [ ++ m4_define([gl_LIBSOURCES_DIR], [gnulib]) ++ m4_append([gl_LIBSOURCES_LIST], _gl_NAME, [ ]) ++ ]) ++ ]) ++]) ++ ++# Like AC_LIBOBJ, except that the module name goes ++# into gltests_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gltests_LIBOBJ], [ ++ AS_LITERAL_IF([$1], [gltests_LIBSOURCES([$1.c])])dnl ++ gltests_LIBOBJS="$gltests_LIBOBJS $1.$ac_objext" ++]) ++ ++# Like AC_REPLACE_FUNCS, except that the module name goes ++# into gltests_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gltests_REPLACE_FUNCS], [ ++ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl ++ AC_CHECK_FUNCS([$1], , [gltests_LIBOBJ($ac_func)]) ++]) ++ ++# Like AC_LIBSOURCES, except the directory where the source file is ++# expected is derived from the gnulib-tool parameterization, ++# and alloca is special cased (for the alloca-opt module). ++# We could also entirely rely on EXTRA_lib..._SOURCES. ++AC_DEFUN([gltests_LIBSOURCES], [ ++ m4_foreach([_gl_NAME], [$1], [ ++ m4_if(_gl_NAME, [alloca.c], [], [ ++ m4_define([gltests_LIBSOURCES_DIR], [tests]) ++ m4_append([gltests_LIBSOURCES_LIST], _gl_NAME, [ ]) ++ ]) ++ ]) ++]) ++ ++# This macro records the list of files which have been installed by ++# gnulib-tool and may be removed by future gnulib-tool invocations. ++AC_DEFUN([gl_FILE_LIST], [ ++ build-aux/link-warning.h ++ lib/alloca.in.h ++ lib/malloca.c ++ lib/malloca.h ++ lib/malloca.valgrind ++ lib/setenv.c ++ lib/stdint.in.h ++ lib/stdlib.in.h ++ lib/string.in.h ++ lib/strsep.c ++ lib/unistd.in.h ++ lib/unsetenv.c ++ lib/wchar.in.h ++ m4/alloca.m4 ++ m4/eealloc.m4 ++ m4/environ.m4 ++ m4/extensions.m4 ++ m4/gnulib-common.m4 ++ m4/include_next.m4 ++ m4/longlong.m4 ++ m4/malloca.m4 ++ m4/multiarch.m4 ++ m4/setenv.m4 ++ m4/stdint.m4 ++ m4/stdlib_h.m4 ++ m4/string_h.m4 ++ m4/strsep.m4 ++ m4/unistd_h.m4 ++ m4/wchar.m4 ++ m4/wint_t.m4 ++]) +diff --git a/gnulib/m4/gnulib-tool.m4 b/gnulib/m4/gnulib-tool.m4 +new file mode 100644 +index 0000000..4438d48 +--- /dev/null ++++ b/gnulib/m4/gnulib-tool.m4 +@@ -0,0 +1,57 @@ ++# gnulib-tool.m4 serial 2 ++dnl Copyright (C) 2004-2005 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl The following macros need not be invoked explicitly. ++dnl Invoking them does nothing except to declare default arguments ++dnl for "gnulib-tool --import". ++ ++dnl Usage: gl_LOCAL_DIR([DIR]) ++AC_DEFUN([gl_LOCAL_DIR], []) ++ ++dnl Usage: gl_MODULES([module1 module2 ...]) ++AC_DEFUN([gl_MODULES], []) ++ ++dnl Usage: gl_AVOID([module1 module2 ...]) ++AC_DEFUN([gl_AVOID], []) ++ ++dnl Usage: gl_SOURCE_BASE([DIR]) ++AC_DEFUN([gl_SOURCE_BASE], []) ++ ++dnl Usage: gl_M4_BASE([DIR]) ++AC_DEFUN([gl_M4_BASE], []) ++ ++dnl Usage: gl_PO_BASE([DIR]) ++AC_DEFUN([gl_PO_BASE], []) ++ ++dnl Usage: gl_DOC_BASE([DIR]) ++AC_DEFUN([gl_DOC_BASE], []) ++ ++dnl Usage: gl_TESTS_BASE([DIR]) ++AC_DEFUN([gl_TESTS_BASE], []) ++ ++dnl Usage: gl_WITH_TESTS ++AC_DEFUN([gl_WITH_TESTS], []) ++ ++dnl Usage: gl_LIB([LIBNAME]) ++AC_DEFUN([gl_LIB], []) ++ ++dnl Usage: gl_LGPL or gl_LGPL([VERSION]) ++AC_DEFUN([gl_LGPL], []) ++ ++dnl Usage: gl_MAKEFILE_NAME([FILENAME]) ++AC_DEFUN([gl_MAKEFILE_NAME], []) ++ ++dnl Usage: gl_LIBTOOL ++AC_DEFUN([gl_LIBTOOL], []) ++ ++dnl Usage: gl_MACRO_PREFIX([PREFIX]) ++AC_DEFUN([gl_MACRO_PREFIX], []) ++ ++dnl Usage: gl_PO_DOMAIN([DOMAIN]) ++AC_DEFUN([gl_PO_DOMAIN], []) ++ ++dnl Usage: gl_VC_FILES([BOOLEAN]) ++AC_DEFUN([gl_VC_FILES], []) +diff --git a/gnulib/m4/include_next.m4 b/gnulib/m4/include_next.m4 +new file mode 100644 +index 0000000..062753c +--- /dev/null ++++ b/gnulib/m4/include_next.m4 +@@ -0,0 +1,170 @@ ++# include_next.m4 serial 10 ++dnl Copyright (C) 2006-2008 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl From Paul Eggert and Derek Price. ++ ++dnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER. ++dnl ++dnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to ++dnl 'include' otherwise. ++dnl ++dnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler ++dnl supports it in the special case that it is the first include directive in ++dnl the given file, or to 'include' otherwise. ++dnl ++dnl PRAGMA_SYSTEM_HEADER can be used in files that contain #include_next, ++dnl so as to avoid GCC warnings when the gcc option -pedantic is used. ++dnl '#pragma GCC system_header' has the same effect as if the file was found ++dnl through the include search path specified with '-isystem' options (as ++dnl opposed to the search path specified with '-I' options). Namely, gcc ++dnl does not warn about some things, and on some systems (Solaris and Interix) ++dnl __STDC__ evaluates to 0 instead of to 1. The latter is an undesired side ++dnl effect; we are therefore careful to use 'defined __STDC__' or '1' instead ++dnl of plain '__STDC__'. ++ ++AC_DEFUN([gl_INCLUDE_NEXT], ++[ ++ AC_LANG_PREPROC_REQUIRE() ++ AC_CACHE_CHECK([whether the preprocessor supports include_next], ++ [gl_cv_have_include_next], ++ [rm -rf conftestd1a conftestd1b conftestd2 ++ mkdir conftestd1a conftestd1b conftestd2 ++ dnl The include of is because IBM C 9.0 on AIX 6.1 supports ++ dnl include_next when used as first preprocessor directive in a file, ++ dnl but not when preceded by another include directive. Additionally, ++ dnl with this same compiler, include_next is a no-op when used in a ++ dnl header file that was included by specifying its absolute file name. ++ dnl Despite these two bugs, include_next is used in the compiler's ++ dnl . By virtue of the second bug, we need to use include_next ++ dnl as well in this case. ++ cat < conftestd1a/conftest.h ++#define DEFINED_IN_CONFTESTD1 ++#include_next ++#ifdef DEFINED_IN_CONFTESTD2 ++int foo; ++#else ++#error "include_next doesn't work" ++#endif ++EOF ++ cat < conftestd1b/conftest.h ++#define DEFINED_IN_CONFTESTD1 ++#include ++#include_next ++#ifdef DEFINED_IN_CONFTESTD2 ++int foo; ++#else ++#error "include_next doesn't work" ++#endif ++EOF ++ cat < conftestd2/conftest.h ++#ifndef DEFINED_IN_CONFTESTD1 ++#error "include_next test doesn't work" ++#endif ++#define DEFINED_IN_CONFTESTD2 ++EOF ++ gl_save_CPPFLAGS="$CPPFLAGS" ++ CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2" ++ AC_COMPILE_IFELSE([#include ], ++ [gl_cv_have_include_next=yes], ++ [CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2" ++ AC_COMPILE_IFELSE([#include ], ++ [gl_cv_have_include_next=buggy], ++ [gl_cv_have_include_next=no]) ++ ]) ++ CPPFLAGS="$gl_save_CPPFLAGS" ++ rm -rf conftestd1a conftestd1b conftestd2 ++ ]) ++ PRAGMA_SYSTEM_HEADER= ++ if test $gl_cv_have_include_next = yes; then ++ INCLUDE_NEXT=include_next ++ INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next ++ if test -n "$GCC"; then ++ PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' ++ fi ++ else ++ if test $gl_cv_have_include_next = buggy; then ++ INCLUDE_NEXT=include ++ INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next ++ else ++ INCLUDE_NEXT=include ++ INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include ++ fi ++ fi ++ AC_SUBST([INCLUDE_NEXT]) ++ AC_SUBST([INCLUDE_NEXT_AS_FIRST_DIRECTIVE]) ++ AC_SUBST([PRAGMA_SYSTEM_HEADER]) ++]) ++ ++# gl_CHECK_NEXT_HEADERS(HEADER1 HEADER2 ...) ++# ------------------------------------------ ++# For each arg foo.h, if #include_next works, define NEXT_FOO_H to be ++# ''; otherwise define it to be ++# '"///usr/include/foo.h"', or whatever other absolute file name is suitable. ++# That way, a header file with the following line: ++# #@INCLUDE_NEXT@ @NEXT_FOO_H@ ++# behaves (after sed substitution) as if it contained ++# #include_next ++# even if the compiler does not support include_next. ++# The three "///" are to pacify Sun C 5.8, which otherwise would say ++# "warning: #include of /usr/include/... may be non-portable". ++# Use `""', not `<>', so that the /// cannot be confused with a C99 comment. ++# Note: This macro assumes that the header file is not empty after ++# preprocessing, i.e. it does not only define preprocessor macros but also ++# provides some type/enum definitions or function/variable declarations. ++AC_DEFUN([gl_CHECK_NEXT_HEADERS], ++[ ++ AC_REQUIRE([gl_INCLUDE_NEXT]) ++ AC_REQUIRE([AC_CANONICAL_HOST]) ++ AC_CHECK_HEADERS_ONCE([$1]) ++ ++ m4_foreach_w([gl_HEADER_NAME], [$1], ++ [AS_VAR_PUSHDEF([gl_next_header], ++ [gl_cv_next_]m4_quote(m4_defn([gl_HEADER_NAME]))) ++ if test $gl_cv_have_include_next = yes; then ++ AS_VAR_SET([gl_next_header], ['<'gl_HEADER_NAME'>']) ++ else ++ AC_CACHE_CHECK( ++ [absolute name of <]m4_quote(m4_defn([gl_HEADER_NAME]))[>], ++ m4_quote(m4_defn([gl_next_header])), ++ [AS_VAR_PUSHDEF([gl_header_exists], ++ [ac_cv_header_]m4_quote(m4_defn([gl_HEADER_NAME]))) ++ if test AS_VAR_GET(gl_header_exists) = yes; then ++ AC_LANG_CONFTEST( ++ [AC_LANG_SOURCE( ++ [[#include <]]m4_dquote(m4_defn([gl_HEADER_NAME]))[[>]] ++ )]) ++ dnl AIX "xlc -E" and "cc -E" omit #line directives for header files ++ dnl that contain only a #include of other header files and no ++ dnl non-comment tokens of their own. This leads to a failure to ++ dnl detect the absolute name of , , ++ dnl and others. The workaround is to force preservation of comments ++ dnl through option -C. This ensures all necessary #line directives ++ dnl are present. GCC supports option -C as well. ++ case "$host_os" in ++ aix*) gl_absname_cpp="$ac_cpp -C" ;; ++ *) gl_absname_cpp="$ac_cpp" ;; ++ esac ++ dnl eval is necessary to expand gl_absname_cpp. ++ dnl Ultrix and Pyramid sh refuse to redirect output of eval, ++ dnl so use subshell. ++ AS_VAR_SET([gl_next_header], ++ ['"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | ++ sed -n '\#/]m4_quote(m4_defn([gl_HEADER_NAME]))[#{ ++ s#.*"\(.*/]m4_quote(m4_defn([gl_HEADER_NAME]))[\)".*#\1# ++ s#^/[^/]#//&# ++ p ++ q ++ }'`'"']) ++ else ++ AS_VAR_SET([gl_next_header], ['<'gl_HEADER_NAME'>']) ++ fi ++ AS_VAR_POPDEF([gl_header_exists])]) ++ fi ++ AC_SUBST( ++ AS_TR_CPP([NEXT_]m4_quote(m4_defn([gl_HEADER_NAME]))), ++ [AS_VAR_GET([gl_next_header])]) ++ AS_VAR_POPDEF([gl_next_header])]) ++]) +diff --git a/gnulib/m4/longlong.m4 b/gnulib/m4/longlong.m4 +new file mode 100644 +index 0000000..eedc8d5 +--- /dev/null ++++ b/gnulib/m4/longlong.m4 +@@ -0,0 +1,106 @@ ++# longlong.m4 serial 14 ++dnl Copyright (C) 1999-2007, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl From Paul Eggert. ++ ++# Define HAVE_LONG_LONG_INT if 'long long int' works. ++# This fixes a bug in Autoconf 2.61, but can be removed once we ++# assume 2.62 everywhere. ++ ++# Note: If the type 'long long int' exists but is only 32 bits large ++# (as on some very old compilers), HAVE_LONG_LONG_INT will not be ++# defined. In this case you can treat 'long long int' like 'long int'. ++ ++AC_DEFUN([AC_TYPE_LONG_LONG_INT], ++[ ++ AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int], ++ [AC_LINK_IFELSE( ++ [_AC_TYPE_LONG_LONG_SNIPPET], ++ [dnl This catches a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004. ++ dnl If cross compiling, assume the bug isn't important, since ++ dnl nobody cross compiles for this platform as far as we know. ++ AC_RUN_IFELSE( ++ [AC_LANG_PROGRAM( ++ [[@%:@include ++ @%:@ifndef LLONG_MAX ++ @%:@ define HALF \ ++ (1LL << (sizeof (long long int) * CHAR_BIT - 2)) ++ @%:@ define LLONG_MAX (HALF - 1 + HALF) ++ @%:@endif]], ++ [[long long int n = 1; ++ int i; ++ for (i = 0; ; i++) ++ { ++ long long int m = n << i; ++ if (m >> i != n) ++ return 1; ++ if (LLONG_MAX / 2 < m) ++ break; ++ } ++ return 0;]])], ++ [ac_cv_type_long_long_int=yes], ++ [ac_cv_type_long_long_int=no], ++ [ac_cv_type_long_long_int=yes])], ++ [ac_cv_type_long_long_int=no])]) ++ if test $ac_cv_type_long_long_int = yes; then ++ AC_DEFINE([HAVE_LONG_LONG_INT], [1], ++ [Define to 1 if the system has the type `long long int'.]) ++ fi ++]) ++ ++# Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works. ++# This fixes a bug in Autoconf 2.61, but can be removed once we ++# assume 2.62 everywhere. ++ ++# Note: If the type 'unsigned long long int' exists but is only 32 bits ++# large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT ++# will not be defined. In this case you can treat 'unsigned long long int' ++# like 'unsigned long int'. ++ ++AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT], ++[ ++ AC_CACHE_CHECK([for unsigned long long int], ++ [ac_cv_type_unsigned_long_long_int], ++ [AC_LINK_IFELSE( ++ [_AC_TYPE_LONG_LONG_SNIPPET], ++ [ac_cv_type_unsigned_long_long_int=yes], ++ [ac_cv_type_unsigned_long_long_int=no])]) ++ if test $ac_cv_type_unsigned_long_long_int = yes; then ++ AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1], ++ [Define to 1 if the system has the type `unsigned long long int'.]) ++ fi ++]) ++ ++# Expands to a C program that can be used to test for simultaneous support ++# of 'long long' and 'unsigned long long'. We don't want to say that ++# 'long long' is available if 'unsigned long long' is not, or vice versa, ++# because too many programs rely on the symmetry between signed and unsigned ++# integer types (excluding 'bool'). ++AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET], ++[ ++ AC_LANG_PROGRAM( ++ [[/* For now, do not test the preprocessor; as of 2007 there are too many ++ implementations with broken preprocessors. Perhaps this can ++ be revisited in 2012. In the meantime, code should not expect ++ #if to work with literals wider than 32 bits. */ ++ /* Test literals. */ ++ long long int ll = 9223372036854775807ll; ++ long long int nll = -9223372036854775807LL; ++ unsigned long long int ull = 18446744073709551615ULL; ++ /* Test constant expressions. */ ++ typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll) ++ ? 1 : -1)]; ++ typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1 ++ ? 1 : -1)]; ++ int i = 63;]], ++ [[/* Test availability of runtime routines for shift and division. */ ++ long long int llmax = 9223372036854775807ll; ++ unsigned long long int ullmax = 18446744073709551615ull; ++ return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i) ++ | (llmax / ll) | (llmax % ll) ++ | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i) ++ | (ullmax / ull) | (ullmax % ull));]]) ++]) +diff --git a/gnulib/m4/malloca.m4 b/gnulib/m4/malloca.m4 +new file mode 100644 +index 0000000..2841ae8 +--- /dev/null ++++ b/gnulib/m4/malloca.m4 +@@ -0,0 +1,14 @@ ++# malloca.m4 serial 1 ++dnl Copyright (C) 2003-2004, 2006-2007 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_MALLOCA], ++[ ++ dnl Use the autoconf tests for alloca(), but not the AC_SUBSTed variables ++ dnl @ALLOCA@ and @LTALLOCA at . ++ dnl gl_FUNC_ALLOCA dnl Already brought in by the module dependencies. ++ AC_REQUIRE([gl_EEMALLOC]) ++ AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) ++]) +diff --git a/gnulib/m4/multiarch.m4 b/gnulib/m4/multiarch.m4 +new file mode 100644 +index 0000000..3948e6e +--- /dev/null ++++ b/gnulib/m4/multiarch.m4 +@@ -0,0 +1,66 @@ ++# multiarch.m4 serial 4 ++dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++# Determine whether the compiler is or may be producing universal binaries. ++# ++# On MacOS X 10.5 and later systems, the user can create libraries and ++# executables that work on multiple system types--known as "fat" or ++# "universal" binaries--by specifying multiple '-arch' options to the ++# compiler but only a single '-arch' option to the preprocessor. Like ++# this: ++# ++# ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ ++# CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ ++# CPP="gcc -E" CXXCPP="g++ -E" ++# ++# Detect this situation and set the macro AA_APPLE_UNIVERSAL_BUILD at the ++# beginning of config.h and set APPLE_UNIVERSAL_BUILD accordingly. ++ ++dnl This macro must pass through AC_REQUIRE (never directly invoke it). ++AC_DEFUN_ONCE([gl_MULTIARCH], ++[ ++ dnl Code similar to autoconf-2.63 AC_C_BIGENDIAN. ++ gl_cv_c_multiarch=no ++ AC_COMPILE_IFELSE( ++ [AC_LANG_SOURCE( ++ [[#ifndef __APPLE_CC__ ++ not a universal capable compiler ++ #endif ++ typedef int dummy; ++ ]])], ++ [ ++ dnl Check for potential -arch flags. It is not universal unless ++ dnl there are at least two -arch flags with different values. ++ arch= ++ prev= ++ for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do ++ if test -n "$prev"; then ++ case $word in ++ i?86 | x86_64 | ppc | ppc64) ++ if test -z "$arch" || test "$arch" = "$word"; then ++ arch="$word" ++ else ++ gl_cv_c_multiarch=yes ++ fi ++ ;; ++ esac ++ prev= ++ else ++ if test "x$word" = "x-arch"; then ++ prev=arch ++ fi ++ fi ++ done ++ ]) ++ if test $gl_cv_c_multiarch = yes; then ++ AC_DEFINE([AA_APPLE_UNIVERSAL_BUILD], [1], ++ [Define if the compiler is building for multiple architectures of Apple platforms at once.]) ++ APPLE_UNIVERSAL_BUILD=1 ++ else ++ APPLE_UNIVERSAL_BUILD=0 ++ fi ++ AC_SUBST([APPLE_UNIVERSAL_BUILD]) ++]) +diff --git a/gnulib/m4/setenv.m4 b/gnulib/m4/setenv.m4 +new file mode 100644 +index 0000000..e28407e +--- /dev/null ++++ b/gnulib/m4/setenv.m4 +@@ -0,0 +1,71 @@ ++# setenv.m4 serial 11 ++dnl Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_FUNC_SETENV], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ AC_CHECK_FUNCS_ONCE([setenv]) ++ if test $ac_cv_func_setenv = no; then ++ HAVE_SETENV=0 ++ AC_LIBOBJ([setenv]) ++ gl_PREREQ_SETENV ++ fi ++]) ++ ++# Like gl_FUNC_SETENV, except prepare for separate compilation (no AC_LIBOBJ). ++AC_DEFUN([gl_FUNC_SETENV_SEPARATE], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ AC_CHECK_FUNCS_ONCE([setenv]) ++ if test $ac_cv_func_setenv = no; then ++ HAVE_SETENV=0 ++ fi ++ gl_PREREQ_SETENV ++]) ++ ++AC_DEFUN([gl_FUNC_UNSETENV], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ AC_CHECK_FUNCS([unsetenv]) ++ if test $ac_cv_func_unsetenv = no; then ++ HAVE_UNSETENV=0 ++ AC_LIBOBJ([unsetenv]) ++ gl_PREREQ_UNSETENV ++ else ++ AC_CACHE_CHECK([for unsetenv() return type], [gt_cv_func_unsetenv_ret], ++ [AC_TRY_COMPILE([#include ++extern ++#ifdef __cplusplus ++"C" ++#endif ++#if defined(__STDC__) || defined(__cplusplus) ++int unsetenv (const char *name); ++#else ++int unsetenv(); ++#endif ++], , gt_cv_func_unsetenv_ret='int', gt_cv_func_unsetenv_ret='void')]) ++ if test $gt_cv_func_unsetenv_ret = 'void'; then ++ VOID_UNSETENV=1 ++ fi ++ fi ++]) ++ ++# Prerequisites of lib/setenv.c. ++AC_DEFUN([gl_PREREQ_SETENV], ++[ ++ AC_REQUIRE([AC_FUNC_ALLOCA]) ++ AC_REQUIRE([gl_ENVIRON]) ++ AC_CHECK_HEADERS_ONCE([unistd.h]) ++ AC_CHECK_HEADERS([search.h]) ++ AC_CHECK_FUNCS([tsearch]) ++]) ++ ++# Prerequisites of lib/unsetenv.c. ++AC_DEFUN([gl_PREREQ_UNSETENV], ++[ ++ AC_REQUIRE([gl_ENVIRON]) ++ AC_CHECK_HEADERS_ONCE([unistd.h]) ++]) +diff --git a/gnulib/m4/stdint.m4 b/gnulib/m4/stdint.m4 +new file mode 100644 +index 0000000..b4194c8 +--- /dev/null ++++ b/gnulib/m4/stdint.m4 +@@ -0,0 +1,404 @@ ++# stdint.m4 serial 33 ++dnl Copyright (C) 2001-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl From Paul Eggert and Bruno Haible. ++dnl Test whether is supported or must be substituted. ++ ++AC_DEFUN([gl_STDINT_H], ++[ ++ AC_PREREQ([2.59])dnl ++ ++ dnl Check for long long int and unsigned long long int. ++ AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) ++ if test $ac_cv_type_long_long_int = yes; then ++ HAVE_LONG_LONG_INT=1 ++ else ++ HAVE_LONG_LONG_INT=0 ++ fi ++ AC_SUBST([HAVE_LONG_LONG_INT]) ++ AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT]) ++ if test $ac_cv_type_unsigned_long_long_int = yes; then ++ HAVE_UNSIGNED_LONG_LONG_INT=1 ++ else ++ HAVE_UNSIGNED_LONG_LONG_INT=0 ++ fi ++ AC_SUBST([HAVE_UNSIGNED_LONG_LONG_INT]) ++ ++ dnl Check for . ++ dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_inttypes_h. ++ if test $ac_cv_header_inttypes_h = yes; then ++ HAVE_INTTYPES_H=1 ++ else ++ HAVE_INTTYPES_H=0 ++ fi ++ AC_SUBST([HAVE_INTTYPES_H]) ++ ++ dnl Check for . ++ dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_sys_types_h. ++ if test $ac_cv_header_sys_types_h = yes; then ++ HAVE_SYS_TYPES_H=1 ++ else ++ HAVE_SYS_TYPES_H=0 ++ fi ++ AC_SUBST([HAVE_SYS_TYPES_H]) ++ ++ gl_CHECK_NEXT_HEADERS([stdint.h]) ++ if test $ac_cv_header_stdint_h = yes; then ++ HAVE_STDINT_H=1 ++ else ++ HAVE_STDINT_H=0 ++ fi ++ AC_SUBST([HAVE_STDINT_H]) ++ ++ dnl Now see whether we need a substitute . ++ if test $ac_cv_header_stdint_h = yes; then ++ AC_CACHE_CHECK([whether stdint.h conforms to C99], ++ [gl_cv_header_working_stdint_h], ++ [gl_cv_header_working_stdint_h=no ++ AC_COMPILE_IFELSE([ ++ AC_LANG_PROGRAM([[ ++#define __STDC_LIMIT_MACROS 1 /* to make it work also in C++ mode */ ++#define __STDC_CONSTANT_MACROS 1 /* to make it work also in C++ mode */ ++#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ ++#include ++/* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in . */ ++#if !(defined WCHAR_MIN && defined WCHAR_MAX) ++#error "WCHAR_MIN, WCHAR_MAX not defined in " ++#endif ++] ++gl_STDINT_INCLUDES ++[ ++#ifdef INT8_MAX ++int8_t a1 = INT8_MAX; ++int8_t a1min = INT8_MIN; ++#endif ++#ifdef INT16_MAX ++int16_t a2 = INT16_MAX; ++int16_t a2min = INT16_MIN; ++#endif ++#ifdef INT32_MAX ++int32_t a3 = INT32_MAX; ++int32_t a3min = INT32_MIN; ++#endif ++#ifdef INT64_MAX ++int64_t a4 = INT64_MAX; ++int64_t a4min = INT64_MIN; ++#endif ++#ifdef UINT8_MAX ++uint8_t b1 = UINT8_MAX; ++#else ++typedef int b1[(unsigned char) -1 != 255 ? 1 : -1]; ++#endif ++#ifdef UINT16_MAX ++uint16_t b2 = UINT16_MAX; ++#endif ++#ifdef UINT32_MAX ++uint32_t b3 = UINT32_MAX; ++#endif ++#ifdef UINT64_MAX ++uint64_t b4 = UINT64_MAX; ++#endif ++int_least8_t c1 = INT8_C (0x7f); ++int_least8_t c1max = INT_LEAST8_MAX; ++int_least8_t c1min = INT_LEAST8_MIN; ++int_least16_t c2 = INT16_C (0x7fff); ++int_least16_t c2max = INT_LEAST16_MAX; ++int_least16_t c2min = INT_LEAST16_MIN; ++int_least32_t c3 = INT32_C (0x7fffffff); ++int_least32_t c3max = INT_LEAST32_MAX; ++int_least32_t c3min = INT_LEAST32_MIN; ++int_least64_t c4 = INT64_C (0x7fffffffffffffff); ++int_least64_t c4max = INT_LEAST64_MAX; ++int_least64_t c4min = INT_LEAST64_MIN; ++uint_least8_t d1 = UINT8_C (0xff); ++uint_least8_t d1max = UINT_LEAST8_MAX; ++uint_least16_t d2 = UINT16_C (0xffff); ++uint_least16_t d2max = UINT_LEAST16_MAX; ++uint_least32_t d3 = UINT32_C (0xffffffff); ++uint_least32_t d3max = UINT_LEAST32_MAX; ++uint_least64_t d4 = UINT64_C (0xffffffffffffffff); ++uint_least64_t d4max = UINT_LEAST64_MAX; ++int_fast8_t e1 = INT_FAST8_MAX; ++int_fast8_t e1min = INT_FAST8_MIN; ++int_fast16_t e2 = INT_FAST16_MAX; ++int_fast16_t e2min = INT_FAST16_MIN; ++int_fast32_t e3 = INT_FAST32_MAX; ++int_fast32_t e3min = INT_FAST32_MIN; ++int_fast64_t e4 = INT_FAST64_MAX; ++int_fast64_t e4min = INT_FAST64_MIN; ++uint_fast8_t f1 = UINT_FAST8_MAX; ++uint_fast16_t f2 = UINT_FAST16_MAX; ++uint_fast32_t f3 = UINT_FAST32_MAX; ++uint_fast64_t f4 = UINT_FAST64_MAX; ++#ifdef INTPTR_MAX ++intptr_t g = INTPTR_MAX; ++intptr_t gmin = INTPTR_MIN; ++#endif ++#ifdef UINTPTR_MAX ++uintptr_t h = UINTPTR_MAX; ++#endif ++intmax_t i = INTMAX_MAX; ++uintmax_t j = UINTMAX_MAX; ++ ++#include /* for CHAR_BIT */ ++#define TYPE_MINIMUM(t) \ ++ ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1))) ++#define TYPE_MAXIMUM(t) \ ++ ((t) ((t) 0 < (t) -1 ? (t) -1 : ~ (~ (t) 0 << (sizeof (t) * CHAR_BIT - 1)))) ++struct s { ++ int check_PTRDIFF: ++ PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t) ++ && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t) ++ ? 1 : -1; ++ /* Detect bug in FreeBSD 6.0 / ia64. */ ++ int check_SIG_ATOMIC: ++ SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t) ++ && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t) ++ ? 1 : -1; ++ int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1; ++ int check_WCHAR: ++ WCHAR_MIN == TYPE_MINIMUM (wchar_t) ++ && WCHAR_MAX == TYPE_MAXIMUM (wchar_t) ++ ? 1 : -1; ++ /* Detect bug in mingw. */ ++ int check_WINT: ++ WINT_MIN == TYPE_MINIMUM (wint_t) ++ && WINT_MAX == TYPE_MAXIMUM (wint_t) ++ ? 1 : -1; ++ ++ /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */ ++ int check_UINT8_C: ++ (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1; ++ int check_UINT16_C: ++ (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1; ++ ++ /* Detect bugs in OpenBSD 3.9 stdint.h. */ ++#ifdef UINT8_MAX ++ int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1; ++#endif ++#ifdef UINT16_MAX ++ int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1; ++#endif ++#ifdef UINT32_MAX ++ int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1; ++#endif ++#ifdef UINT64_MAX ++ int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1; ++#endif ++ int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1; ++ int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1; ++ int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1; ++ int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1; ++ int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1; ++ int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1; ++ int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1; ++ int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1; ++ int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1; ++ int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1; ++ int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1; ++}; ++ ]])], ++ [gl_cv_header_working_stdint_h=yes])]) ++ fi ++ if test "$gl_cv_header_working_stdint_h" = yes; then ++ STDINT_H= ++ else ++ dnl Check for , and for ++ dnl (used in Linux libc4 >= 4.6.7 and libc5). ++ AC_CHECK_HEADERS([sys/inttypes.h sys/bitypes.h]) ++ if test $ac_cv_header_sys_inttypes_h = yes; then ++ HAVE_SYS_INTTYPES_H=1 ++ else ++ HAVE_SYS_INTTYPES_H=0 ++ fi ++ AC_SUBST([HAVE_SYS_INTTYPES_H]) ++ if test $ac_cv_header_sys_bitypes_h = yes; then ++ HAVE_SYS_BITYPES_H=1 ++ else ++ HAVE_SYS_BITYPES_H=0 ++ fi ++ AC_SUBST([HAVE_SYS_BITYPES_H]) ++ ++ dnl Check for (missing in Linux uClibc when built without wide ++ dnl character support). ++ AC_CHECK_HEADERS_ONCE([wchar.h]) ++ ++ gl_STDINT_TYPE_PROPERTIES ++ STDINT_H=stdint.h ++ fi ++ AC_SUBST([STDINT_H]) ++]) ++ ++dnl gl_STDINT_BITSIZEOF(TYPES, INCLUDES) ++dnl Determine the size of each of the given types in bits. ++AC_DEFUN([gl_STDINT_BITSIZEOF], ++[ ++ dnl Use a shell loop, to avoid bloating configure, and ++ dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into ++ dnl config.h.in, ++ dnl - extra AC_SUBST calls, so that the right substitutions are made. ++ m4_foreach_w([gltype], [$1], ++ [AH_TEMPLATE([BITSIZEOF_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]), ++ [Define to the number of bits in type ']gltype['.])]) ++ for gltype in $1 ; do ++ AC_CACHE_CHECK([for bit size of $gltype], [gl_cv_bitsizeof_${gltype}], ++ [AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT], ++ [$2 ++#include ], [result=unknown]) ++ eval gl_cv_bitsizeof_${gltype}=\$result ++ ]) ++ eval result=\$gl_cv_bitsizeof_${gltype} ++ if test $result = unknown; then ++ dnl Use a nonempty default, because some compilers, such as IRIX 5 cc, ++ dnl do a syntax check even on unused #if conditions and give an error ++ dnl on valid C code like this: ++ dnl #if 0 ++ dnl # if > 32 ++ dnl # endif ++ dnl #endif ++ result=0 ++ fi ++ GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` ++ AC_DEFINE_UNQUOTED([BITSIZEOF_${GLTYPE}], [$result]) ++ eval BITSIZEOF_${GLTYPE}=\$result ++ done ++ m4_foreach_w([gltype], [$1], ++ [AC_SUBST([BITSIZEOF_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))]) ++]) ++ ++dnl gl_CHECK_TYPES_SIGNED(TYPES, INCLUDES) ++dnl Determine the signedness of each of the given types. ++dnl Define HAVE_SIGNED_TYPE if type is signed. ++AC_DEFUN([gl_CHECK_TYPES_SIGNED], ++[ ++ dnl Use a shell loop, to avoid bloating configure, and ++ dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into ++ dnl config.h.in, ++ dnl - extra AC_SUBST calls, so that the right substitutions are made. ++ m4_foreach_w([gltype], [$1], ++ [AH_TEMPLATE([HAVE_SIGNED_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]), ++ [Define to 1 if ']gltype[' is a signed integer type.])]) ++ for gltype in $1 ; do ++ AC_CACHE_CHECK([whether $gltype is signed], [gl_cv_type_${gltype}_signed], ++ [AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([$2[ ++ int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];]])], ++ result=yes, result=no) ++ eval gl_cv_type_${gltype}_signed=\$result ++ ]) ++ eval result=\$gl_cv_type_${gltype}_signed ++ GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` ++ if test "$result" = yes; then ++ AC_DEFINE_UNQUOTED([HAVE_SIGNED_${GLTYPE}], [1]) ++ eval HAVE_SIGNED_${GLTYPE}=1 ++ else ++ eval HAVE_SIGNED_${GLTYPE}=0 ++ fi ++ done ++ m4_foreach_w([gltype], [$1], ++ [AC_SUBST([HAVE_SIGNED_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))]) ++]) ++ ++dnl gl_INTEGER_TYPE_SUFFIX(TYPES, INCLUDES) ++dnl Determine the suffix to use for integer constants of the given types. ++dnl Define t_SUFFIX for each such type. ++AC_DEFUN([gl_INTEGER_TYPE_SUFFIX], ++[ ++ dnl Use a shell loop, to avoid bloating configure, and ++ dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into ++ dnl config.h.in, ++ dnl - extra AC_SUBST calls, so that the right substitutions are made. ++ m4_foreach_w([gltype], [$1], ++ [AH_TEMPLATE(translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX], ++ [Define to l, ll, u, ul, ull, etc., as suitable for ++ constants of type ']gltype['.])]) ++ for gltype in $1 ; do ++ AC_CACHE_CHECK([for $gltype integer literal suffix], ++ [gl_cv_type_${gltype}_suffix], ++ [eval gl_cv_type_${gltype}_suffix=no ++ eval result=\$gl_cv_type_${gltype}_signed ++ if test "$result" = yes; then ++ glsufu= ++ else ++ glsufu=u ++ fi ++ for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do ++ case $glsuf in ++ '') gltype1='int';; ++ l) gltype1='long int';; ++ ll) gltype1='long long int';; ++ i64) gltype1='__int64';; ++ u) gltype1='unsigned int';; ++ ul) gltype1='unsigned long int';; ++ ull) gltype1='unsigned long long int';; ++ ui64)gltype1='unsigned __int64';; ++ esac ++ AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([$2[ ++ extern $gltype foo; ++ extern $gltype1 foo;]])], ++ [eval gl_cv_type_${gltype}_suffix=\$glsuf]) ++ eval result=\$gl_cv_type_${gltype}_suffix ++ test "$result" != no && break ++ done]) ++ GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` ++ eval result=\$gl_cv_type_${gltype}_suffix ++ test "$result" = no && result= ++ eval ${GLTYPE}_SUFFIX=\$result ++ AC_DEFINE_UNQUOTED([${GLTYPE}_SUFFIX], [$result]) ++ done ++ m4_foreach_w([gltype], [$1], ++ [AC_SUBST(translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX])]) ++]) ++ ++dnl gl_STDINT_INCLUDES ++AC_DEFUN([gl_STDINT_INCLUDES], ++[[ ++ /* BSD/OS 4.0.1 has a bug: , and must be ++ included before . */ ++ #include ++ #include ++ #if HAVE_WCHAR_H ++ # include ++ # include ++ # include ++ #endif ++]]) ++ ++dnl gl_STDINT_TYPE_PROPERTIES ++dnl Compute HAVE_SIGNED_t, BITSIZEOF_t and t_SUFFIX, for all the types t ++dnl of interest to stdint.in.h. ++AC_DEFUN([gl_STDINT_TYPE_PROPERTIES], ++[ ++ AC_REQUIRE([gl_MULTIARCH]) ++ if test $APPLE_UNIVERSAL_BUILD = 0; then ++ gl_STDINT_BITSIZEOF([ptrdiff_t size_t], ++ [gl_STDINT_INCLUDES]) ++ fi ++ gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t], ++ [gl_STDINT_INCLUDES]) ++ gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t], ++ [gl_STDINT_INCLUDES]) ++ gl_cv_type_ptrdiff_t_signed=yes ++ gl_cv_type_size_t_signed=no ++ if test $APPLE_UNIVERSAL_BUILD = 0; then ++ gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t], ++ [gl_STDINT_INCLUDES]) ++ fi ++ gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t], ++ [gl_STDINT_INCLUDES]) ++]) ++ ++dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in. ++dnl Remove this when we can assume autoconf >= 2.61. ++m4_ifdef([AC_COMPUTE_INT], [], [ ++ AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])]) ++]) ++ ++# Hey Emacs! ++# Local Variables: ++# indent-tabs-mode: nil ++# End: +diff --git a/gnulib/m4/stdlib_h.m4 b/gnulib/m4/stdlib_h.m4 +new file mode 100644 +index 0000000..582db13 +--- /dev/null ++++ b/gnulib/m4/stdlib_h.m4 +@@ -0,0 +1,62 @@ ++# stdlib_h.m4 serial 13 ++dnl Copyright (C) 2007, 2008 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_STDLIB_H], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ gl_CHECK_NEXT_HEADERS([stdlib.h]) ++ AC_CHECK_TYPES([struct random_data], ++ [], [HAVE_STRUCT_RANDOM_DATA=0], ++ [[#include ]]) ++]) ++ ++AC_DEFUN([gl_STDLIB_MODULE_INDICATOR], ++[ ++ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ GNULIB_[]m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=1 ++]) ++ ++AC_DEFUN([gl_STDLIB_H_DEFAULTS], ++[ ++ GNULIB_MALLOC_POSIX=0; AC_SUBST([GNULIB_MALLOC_POSIX]) ++ GNULIB_REALLOC_POSIX=0; AC_SUBST([GNULIB_REALLOC_POSIX]) ++ GNULIB_CALLOC_POSIX=0; AC_SUBST([GNULIB_CALLOC_POSIX]) ++ GNULIB_ATOLL=0; AC_SUBST([GNULIB_ATOLL]) ++ GNULIB_GETLOADAVG=0; AC_SUBST([GNULIB_GETLOADAVG]) ++ GNULIB_GETSUBOPT=0; AC_SUBST([GNULIB_GETSUBOPT]) ++ GNULIB_MKDTEMP=0; AC_SUBST([GNULIB_MKDTEMP]) ++ GNULIB_MKSTEMP=0; AC_SUBST([GNULIB_MKSTEMP]) ++ GNULIB_PUTENV=0; AC_SUBST([GNULIB_PUTENV]) ++ GNULIB_RANDOM_R=0; AC_SUBST([GNULIB_RANDOM_R]) ++ GNULIB_RPMATCH=0; AC_SUBST([GNULIB_RPMATCH]) ++ GNULIB_SETENV=0; AC_SUBST([GNULIB_SETENV]) ++ GNULIB_STRTOD=0; AC_SUBST([GNULIB_STRTOD]) ++ GNULIB_STRTOLL=0; AC_SUBST([GNULIB_STRTOLL]) ++ GNULIB_STRTOULL=0; AC_SUBST([GNULIB_STRTOULL]) ++ GNULIB_UNSETENV=0; AC_SUBST([GNULIB_UNSETENV]) ++ dnl Assume proper GNU behavior unless another module says otherwise. ++ HAVE_ATOLL=1; AC_SUBST([HAVE_ATOLL]) ++ HAVE_CALLOC_POSIX=1; AC_SUBST([HAVE_CALLOC_POSIX]) ++ HAVE_GETSUBOPT=1; AC_SUBST([HAVE_GETSUBOPT]) ++ HAVE_MALLOC_POSIX=1; AC_SUBST([HAVE_MALLOC_POSIX]) ++ HAVE_MKDTEMP=1; AC_SUBST([HAVE_MKDTEMP]) ++ HAVE_REALLOC_POSIX=1; AC_SUBST([HAVE_REALLOC_POSIX]) ++ HAVE_RANDOM_R=1; AC_SUBST([HAVE_RANDOM_R]) ++ HAVE_RPMATCH=1; AC_SUBST([HAVE_RPMATCH]) ++ HAVE_SETENV=1; AC_SUBST([HAVE_SETENV]) ++ HAVE_STRTOD=1; AC_SUBST([HAVE_STRTOD]) ++ HAVE_STRTOLL=1; AC_SUBST([HAVE_STRTOLL]) ++ HAVE_STRTOULL=1; AC_SUBST([HAVE_STRTOULL]) ++ HAVE_STRUCT_RANDOM_DATA=1; AC_SUBST([HAVE_STRUCT_RANDOM_DATA]) ++ HAVE_SYS_LOADAVG_H=0; AC_SUBST([HAVE_SYS_LOADAVG_H]) ++ HAVE_UNSETENV=1; AC_SUBST([HAVE_UNSETENV]) ++ HAVE_DECL_GETLOADAVG=1; AC_SUBST([HAVE_DECL_GETLOADAVG]) ++ REPLACE_MKSTEMP=0; AC_SUBST([REPLACE_MKSTEMP]) ++ REPLACE_PUTENV=0; AC_SUBST([REPLACE_PUTENV]) ++ REPLACE_STRTOD=0; AC_SUBST([REPLACE_STRTOD]) ++ VOID_UNSETENV=0; AC_SUBST([VOID_UNSETENV]) ++]) +diff --git a/gnulib/m4/string_h.m4 b/gnulib/m4/string_h.m4 +new file mode 100644 +index 0000000..2d5553c +--- /dev/null ++++ b/gnulib/m4/string_h.m4 +@@ -0,0 +1,92 @@ @@ 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 23 21:55:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 20:55:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2897] csw/mgar/pkg/tk/trunk Message-ID: Revision: 2897 http://gar.svn.sourceforge.net/gar/?rev=2897&view=rev Author: dmichelsen Date: 2009-01-23 20:55:31 +0000 (Fri, 23 Jan 2009) Log Message: ----------- tk: Add legacy build instructions Modified Paths: -------------- csw/mgar/pkg/tk/trunk/Makefile csw/mgar/pkg/tk/trunk/checksums Added Paths: ----------- csw/mgar/pkg/tk/trunk/files/CSWtk.gspec csw/mgar/pkg/tk/trunk/legacy/ csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES csw/mgar/pkg/tk/trunk/legacy/README csw/mgar/pkg/tk/trunk/legacy/copyright csw/mgar/pkg/tk/trunk/legacy/depend csw/mgar/pkg/tk/trunk/legacy/pkginfo csw/mgar/pkg/tk/trunk/legacy/prototype csw/mgar/pkg/tk/trunk/legacy/src/ csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure csw/mgar/pkg/tk/trunk/legacy/src/Makefile Removed Paths: ------------- csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec Modified: csw/mgar/pkg/tk/trunk/Makefile =================================================================== --- csw/mgar/pkg/tk/trunk/Makefile 2009-01-23 20:50:07 UTC (rev 2896) +++ csw/mgar/pkg/tk/trunk/Makefile 2009-01-23 20:55:31 UTC (rev 2897) @@ -25,11 +25,11 @@ WORKSRC = $(WORKDIR)/$(DISTNAME)/unix -INCLUDE_FLAGS = +# INCLUDE_FLAGS = CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk -CFLAGS := $(filter-out -I%,$(CFLAGS)) -DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) +#CFLAGS := $(filter-out -I%,$(CFLAGS)) +#DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Modified: csw/mgar/pkg/tk/trunk/checksums =================================================================== --- csw/mgar/pkg/tk/trunk/checksums 2009-01-23 20:50:07 UTC (rev 2896) +++ csw/mgar/pkg/tk/trunk/checksums 2009-01-23 20:55:31 UTC (rev 2897) @@ -1,2 +1,2 @@ -ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec +9b998d0456d1b956eb9da610837a9c47 download/tk8.4.19-src.tar.gz +12a36182202248eb293d4391d8390781 download/CSWtk.gspec Deleted: csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec 2009-01-23 20:50:07 UTC (rev 2896) +++ csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec 2009-01-23 20:55:31 UTC (rev 2897) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Copied: csw/mgar/pkg/tk/trunk/files/CSWtk.gspec (from rev 2892, csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec) =================================================================== --- csw/mgar/pkg/tk/trunk/files/CSWtk.gspec (rev 0) +++ csw/mgar/pkg/tk/trunk/files/CSWtk.gspec 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,4 @@ +%var bitname tk +%var pkgname CSWtk +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Added: csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,95 @@ +############################################################################### +# +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the TK package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWtk +# +# CUR VER: Tk Version 8.5.1 +# +# REVISION: 04-27-08 +# +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +08-27-04 8.4.7 Initial 8.4.7 package creation +09-11-04 8.4.7,REV=2004.09.11 Fixed email address in pkginfo file +12-09-04 8.4.9 Initial 8.4.9 package creation +06-11-05 8.4.10 Initial 8.4.10 package creation +07-06-07 8.4.15 Initial 8.4.15 package creation +02-06-08 8.5.1 Initial 8.5.1 package creation +04-27-08 8.5.2 Initial 8.5.2 package creation +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +EDITING CHANGES: +------------------------------------------------------------------------------- + + None + + +------------------------------------------------------------------------------- +SPARC: +------------------------------------------------------------------------------- + +make: + + * There are a stream of the following warnings: + + "warning: ignoring #pragma ident" + + * /export/home/jeff/pkgs/tk/src/tk8.5.1/unix/../generic/tkWindow.c:3307: \ + warning: subscript has type `char' + + +make test: + + * Tests were run on my SunFire V250 system running Solaris 10 & Gnome 2.6 + + [...] + font.test Failed (Expected on UNIX systems) + [...] + listbox.test Failed + [...] + panedwindow.test Failed + [...] + scrollbar.test Failed + [...] + textDisp.test Failed + [...] + textImage.test Failed + [...] + unixEmbed.test Failed + [...] + unixSelect.test Failed + [...] + unixWm.test Failed (due to gnome toolbar at top of screen?) + [...] + window.test + +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +INTEL: +------------------------------------------------------------------------------- + +make: + + * Same as sparc system + +make test: + + * Tests were not run on the intel platform + +------------------------------------------------------------------------------- + Added: csw/mgar/pkg/tk/trunk/legacy/README =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/README 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,244 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the TK package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWtk +# +# REVISION: 04-27-08 +# +# NOTES: Build the tcl package first. +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: wr + or + INTEL: wt + +------------------------------------------------------------------------------- +02: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +03: Make sure tcl source is unpacked and configured (if not already done) +------------------------------------------------------------------------------- + + Tcl should have been previously compiled on this platform. If not: + cd pkgs/tcl/src + make unpack + cd tcl*[0-9]/unix + + make distclean + ../../CJSA.configure + make + +------------------------------------------------------------------------------- +04: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/tk + vi pkginfo + [edit the version info: must include REV=YYYY.MM.DD] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +05: Create symlink to tcl source (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd src + make links # create TCL links + ls tcl*[0-9]/unix; ls -lL tcl.h # check the links + +------------------------------------------------------------------------------- +06: Download the source code (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + vi Makefile (Set TVER to current version) + + make get Download source code from sourceforge: + + or get it from personal machine with: + bwput -d /export/home/jeff/pkgs/tk/src \ + tk*-src.tar.gz + + make rename rename the source file + make unpack unpack the source + +------------------------------------------------------------------------------- +07: Update the copyright file (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + cd tk*[0-9] + cp license.terms ${HOME}/pkgs/tk/copyright + +------------------------------------------------------------------------------- +08: See if there are any source file modifications required for build +------------------------------------------------------------------------------- + + cd unix + less -+e ../../../BUILD.NOTES + + [update as required] + +------------------------------------------------------------------------------- +09: Compile the software +------------------------------------------------------------------------------- + + make distclean + ../../CJSA.configure # run configure + script zzzz # capture output + make + make test [To run, must login for X11 session using: ssh -X + This test run takes FOREVER over the ssh connection! + To run tests, I suggest compiling and testing on a + local system.] + exit # terminate script + +------------------------------------------------------------------------------- +10: Review zzzz script file and update any required info in BUILD.NOTES file +------------------------------------------------------------------------------- + + vi zzzz ../../BUILD.NOTES + rm zzzz + +------------------------------------------------------------------------------- +11: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +12: Make symbolic link for wish [**** USING PROPER VERSION NO. ****] +------------------------------------------------------------------------------- + + rm -f cswstage/opt/csw/bin/wish + ls -l cswstage/opt/csw/bin + + ln -s wish8.5 cswstage/opt/csw/bin/wish # USE CORRECT VER. NO! + + ls -l cswstage/opt/csw/bin + ls -lL cswstage/opt/csw/bin + +------------------------------------------------------------------------------- +13: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + :g/0444/s//0644/g + [change file permissions from 0555 to 0755] + :g/0555/s//0755/g + [add following 's' line after 'f' line: ***CHECK VERSION NO.***] + f none /opt/csw/bin/wish8.5 0755 root bin [existing line] + s none /opt/csw/bin/wish=wish8.5 + +------------------------------------------------------------------------------- +14: Edit the shipping tkConfig.sh file to set proper paths +------------------------------------------------------------------------------- + + vi opt/csw/lib/tkConfig.sh + :g#/export/home/jeff/pkgs/tk/src/tk[0-9.]*/unix#s##/opt/csw/lib#g + :g#/export/home/jeff/pkgs/tk/src/tk[0-9.]*#s##/opt/csw/src/tk#g + :wq + +------------------------------------------------------------------------------- +15: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/tk/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/tk + +------------------------------------------------------------------------------- +16: Create the package tk-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/tk + createpkg -r ${HOME}/pkgs/tk/src/tk*[0-9]/unix/cswstage + + NOTE: This may fail with: + + ERROR: cannot find package for libtcl8.5.so + ERROR: failed check. + + When updating to a new major revision number (e.g., 8.4->8.5) + since the current tcl package is not installed. Just go + ahead and finish packaging step by gzipping it up: + + gzip tk-*pkg + +------------------------------------------------------------------------------- +17: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + *** Current dependencies are listed in the depend file *** + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat step 11 and recreate the package + +------------------------------------------------------------------------------- +18: Build other software for this hardware platform +------------------------------------------------------------------------------- + + Build CSWitcl package (if necessary) + Build CSWitk package (if necessary) + Build CSWtclx package (if applicable) + +------------------------------------------------------------------------------- +19: Go back to TCL and build everything for the other hardware platform +------------------------------------------------------------------------------ + + * Continue when all packages for Sparc & X86 platforms are ready + +------------------------------------------------------------------------------- +20: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + +------------------------------------------------------------------------------- +21: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/tk + cp tk-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +22: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp TK.${VER}-src.tar.gz /export/medusa/src/tk${VER}-src.tar.gz + +------------------------------------------------------------------------------- +23: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/tk/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/copyright 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,39 @@ +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., and other parties. The following +terms apply to all files associated with the software unless explicitly +disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. Added: csw/mgar/pkg/tk/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/depend 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,3 @@ +P CSWcommon +P CSWtcl +P SUNWxwrtl Added: csw/mgar/pkg/tk/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/pkginfo 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,9 @@ +PKG=CSWtk +NAME=tk - GUI toolkit for tcl +VERSION=8.5.2,REV=2008.04.27 +ARCH=sparc +CATEGORY=system +CSW_CATEGORY="prog, user" +VENDOR=http://www.tcl.tk/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/tk/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/prototype 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,556 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/tk-man 0755 root bin +d none /opt/csw/share/tk-man/man1 0755 root bin +f none /opt/csw/share/tk-man/man1/wish.1 0644 root bin +d none /opt/csw/share/tk-man/man3 0755 root bin +f none /opt/csw/share/tk-man/man3/Tk_Alloc3DBorderFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Get3DBorder.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Get3DBorderFromObj.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Draw3DRectangle.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Fill3DRectangle.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Draw3DPolygon.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Fill3DPolygon.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DVerticalBevel.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DHorizontalBevel.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_SetBackgroundFromBorder.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOf3DBorder.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DBorderColor.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DBorderGC.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Free3DBorderFromObj.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Free3DBorder.3=Tk_Alloc3DBorderFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_AddOption.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateBindingTable.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteBindingTable.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_CreateBinding.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_DeleteBinding.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetBinding.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetAllBindings.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_DeleteAllBindings.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_BindEvent.3=Tk_CreateBindingTable.3 +f none /opt/csw/share/tk-man/man3/Tk_CanvasPsY.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsBitmap.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsColor.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsFont.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsPath.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsStipple.3=Tk_CanvasPsY.3 +f none /opt/csw/share/tk-man/man3/Tk_CanvasTkwin.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CanvasGetCoord.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasDrawableCoords.3=Tk_CanvasTkwin.3 +f none /opt/csw/share/tk-man/man3/Tk_MoveWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CanvasSetStippleOrigin.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasWindowCoords.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasEventuallyRedraw.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasTagsOption.3=Tk_CanvasTkwin.3 +f none /opt/csw/share/tk-man/man3/Tk_CanvasTextInfo.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ClipboardClear.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ClipboardAppend.3=Tk_ClipboardClear.3 +f none /opt/csw/share/tk-man/man3/Tk_ClearSelection.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ConfigureWidget.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ConfigureInfo.3=Tk_ConfigureWidget.3 +l none /opt/csw/share/tk-man/man3/Tk_ConfigureValue.3=Tk_ConfigureWidget.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeOptions.3=Tk_ConfigureWidget.3 +l none /opt/csw/share/tk-man/man3/Tk_ConfigureWindow.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_ResizeWindow.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_MoveResizeWindow.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBorderWidth.3=Tk_MoveWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_X.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ChangeWindowAttributes.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBackground.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBackgroundPixmap.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBorder.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBorderPixmap.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowColormap.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_DefineCursor.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_UndefineCursor.3=Tk_MoveWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_CoordsToWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateClientMessageHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteClientMessageHandler.3=Tk_CreateClientMessageHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_InitConsoleChannels.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateErrorHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteErrorHandler.3=Tk_CreateErrorHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateGenericHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteGenericHandler.3=Tk_CreateGenericHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateImageType.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetImageMasterData.3=Tk_CreateImageType.3 +l none /opt/csw/share/tk-man/man3/Tk_InitImageArgs.3=Tk_CreateImageType.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateItemType.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetItemTypes.3=Tk_CreateItemType.3 +f none /opt/csw/share/tk-man/man3/Tk_CreatePhotoImageFormat.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateSelHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteSelHandler.3=Tk_CreateSelHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CreateWindowFromPath.3=Tk_CreateWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_DestroyWindow.3=Tk_CreateWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_MakeWindowExist.3=Tk_CreateWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_DeleteImage.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_DrawFocusHighlight.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateEventHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteEventHandler.3=Tk_CreateEventHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_FindPhoto.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_PhotoPutBlock.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoPutZoomedBlock.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoGetImage.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoBlank.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoExpand.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoGetSize.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoSetSize.3=Tk_FindPhoto.3 +f none /opt/csw/share/tk-man/man3/Tk_FontId.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetFontMetrics.3=Tk_FontId.3 +l none /opt/csw/share/tk-man/man3/Tk_PostscriptFontName.3=Tk_FontId.3 +f none /opt/csw/share/tk-man/man3/Tk_FreeXId.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GeometryRequest.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_SetMinimumRequestSize.3=Tk_GeometryRequest.3 +l none /opt/csw/share/tk-man/man3/Tk_SetInternalBorder.3=Tk_GeometryRequest.3 +l none /opt/csw/share/tk-man/man3/Tk_SetInternalBorderEx.3=Tk_GeometryRequest.3 +l none /opt/csw/share/tk-man/man3/Tk_Y.3=Tk_X.3 +f none /opt/csw/share/tk-man/man3/Tk_GetAnchorFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetAnchor.3=Tk_GetAnchorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfAnchor.3=Tk_GetAnchorFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_AllocBitmapFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetBitmapFromObj.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_DefineBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_SizeOfBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeBitmapFromObj.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeBitmap.3=Tk_AllocBitmapFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetCapStyle.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_NameOfCapStyle.3=Tk_GetCapStyle.3 +f none /opt/csw/share/tk-man/man3/Tk_GetColormap.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreeColormap.3=Tk_GetColormap.3 +f none /opt/csw/share/tk-man/man3/Tk_AllocColorFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetColor.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetColorFromObj.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetColorByValue.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfColor.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeColorFromObj.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeColor.3=Tk_AllocColorFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_AllocCursorFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetCursor.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetCursorFromObj.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetCursorFromData.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfCursor.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeCursorFromObj.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeCursor.3=Tk_AllocCursorFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetDash.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_AllocFontFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetFont.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetFontFromObj.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfFont.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeFontFromObj.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeFont.3=Tk_AllocFontFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetGC.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreeGC.3=Tk_GetGC.3 +f none /opt/csw/share/tk-man/man3/Tk_GetHINSTANCE.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetHWND.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_AttachHWND.3=Tk_GetHWND.3 +f none /opt/csw/share/tk-man/man3/Tk_GetImage.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_RedrawImage.3=Tk_GetImage.3 +l none /opt/csw/share/tk-man/man3/Tk_SizeOfImage.3=Tk_GetImage.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeImage.3=Tk_GetImage.3 +f none /opt/csw/share/tk-man/man3/Tk_GetJoinStyle.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_NameOfJoinStyle.3=Tk_GetJoinStyle.3 +f none /opt/csw/share/tk-man/man3/Tk_GetJustifyFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetJustify.3=Tk_GetJustifyFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfJustify.3=Tk_GetJustifyFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetOption.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetPixelsFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetPixels.3=Tk_GetPixelsFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetMMFromObj.3=Tk_GetPixelsFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetScreenMM.3=Tk_GetPixelsFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetPixmap.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreePixmap.3=Tk_GetPixmap.3 +f none /opt/csw/share/tk-man/man3/Tk_GetReliefFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetRelief.3=Tk_GetReliefFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfRelief.3=Tk_GetReliefFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetRootCoords.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetScrollInfo.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetScrollInfoObj.3=Tk_GetScrollInfo.3 +f none /opt/csw/share/tk-man/man3/Tk_GetSelection.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetUid.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Uid.3=Tk_GetUid.3 +f none /opt/csw/share/tk-man/man3/Tk_GetVRootGeometry.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetVisual.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_Grab.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Ungrab.3=Tk_Grab.3 +f none /opt/csw/share/tk-man/man3/Tk_HWNDToWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_HandleEvent.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_IdToWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ImageChanged.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_Name.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetUserInactiveTime.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ResetUserInactiveTime.3=Tk_GetUserInactiveTime.3 +f none /opt/csw/share/tk-man/man3/Tk_InternAtom.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetAtomName.3=Tk_InternAtom.3 +f none /opt/csw/share/tk-man/man3/Tk_MainLoop.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_MainWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetNumMainWindows.3=Tk_MainWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_MaintainGeometry.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_UnmaintainGeometry.3=Tk_MaintainGeometry.3 +f none /opt/csw/share/tk-man/man3/Tk_ManageGeometry.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_MapWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_UnmapWindow.3=Tk_MapWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_MeasureChars.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_TextWidth.3=Tk_MeasureChars.3 +l none /opt/csw/share/tk-man/man3/Tk_DrawChars.3=Tk_MeasureChars.3 +l none /opt/csw/share/tk-man/man3/Tk_UnderlineChars.3=Tk_MeasureChars.3 +f none /opt/csw/share/tk-man/man3/Tk_MoveToplevelWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_PathName.3=Tk_Name.3 +l none /opt/csw/share/tk-man/man3/Tk_NameToWindow.3=Tk_Name.3 +f none /opt/csw/share/tk-man/man3/Tk_NameOfImage.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_OwnSelection.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ParseArgv.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CollapseMotionEvents.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_QueueWindowEvent.3=Tk_CollapseMotionEvents.3 +f none /opt/csw/share/tk-man/man3/Tk_RestackWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_RestrictEvents.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetAppName.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetCaretPos.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetClass.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Class.3=Tk_SetClass.3 +f none /opt/csw/share/tk-man/man3/Tk_SetClassProcs.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetGrid.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_UnsetGrid.3=Tk_SetGrid.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateOptionTable.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteOptionTable.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_InitOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_SetOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeSavedOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_RestoreSavedOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetOptionValue.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetOptionInfo.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeConfigOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_Offset.3=Tk_CreateOptionTable.3 +f none /opt/csw/share/tk-man/man3/Tk_SetWindowVisual.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_StrictMotif.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ComputeTextLayout.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreeTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_DrawTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_UnderlineTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_PointToChar.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_CharBbox.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_DistanceToTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_IntersectTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_TextLayoutToPostscript.3=Tk_ComputeTextLayout.3 +f none /opt/csw/share/tk-man/man3/Tk_InitStubs.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_Init.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_SafeInit.3=Tk_Init.3 +f none /opt/csw/share/tk-man/man3/Tk_Main.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_WindowId.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Parent.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Display.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_DisplayName.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_ScreenNumber.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Screen.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Width.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Height.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Changes.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Attributes.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsContainer.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsEmbedded.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsMapped.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsTopLevel.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_ReqWidth.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_ReqHeight.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_MinReqWidth.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_MinReqHeight.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderLeft.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderRight.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderTop.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderBottom.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Visual.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Depth.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Colormap.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Interp.3=Tk_X.3 +f none /opt/csw/share/tk-man/man3/Ttk_MakeBox.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Ttk_PadBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_ExpandBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_PackBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_StickBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_PlaceBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_BoxContains.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_MakePadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_UniformPadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_AddPadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_RelievePadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetPaddingFromObj.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetBorderFromObj.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetStickyFromObj.3=Ttk_MakeBox.3 +f none /opt/csw/share/tk-man/man3/Ttk_CreateTheme.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Ttk_GetTheme.3=Ttk_CreateTheme.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetDefaultTheme.3=Ttk_CreateTheme.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetCurrentTheme.3=Ttk_CreateTheme.3 +d none /opt/csw/share/tk-man/mann 0755 root bin +f none /opt/csw/share/tk-man/mann/bell.n 0644 root bin +f none /opt/csw/share/tk-man/mann/bind.n 0644 root bin +f none /opt/csw/share/tk-man/mann/bindtags.n 0644 root bin +f none /opt/csw/share/tk-man/mann/bitmap.n 0644 root bin +f none /opt/csw/share/tk-man/mann/button.n 0644 root bin +f none /opt/csw/share/tk-man/mann/canvas.n 0644 root bin +f none /opt/csw/share/tk-man/mann/checkbutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_chooseColor.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_chooseDirectory.n 0644 root bin +f none /opt/csw/share/tk-man/mann/clipboard.n 0644 root bin +f none /opt/csw/share/tk-man/mann/colors.n 0644 root bin +f none /opt/csw/share/tk-man/mann/console.n 0644 root bin +f none /opt/csw/share/tk-man/mann/cursors.n 0644 root bin +f none /opt/csw/share/tk-man/mann/destroy.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_dialog.n 0644 root bin +f none /opt/csw/share/tk-man/mann/entry.n 0644 root bin +f none /opt/csw/share/tk-man/mann/event.n 0644 root bin +f none /opt/csw/share/tk-man/mann/focus.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_focusNext.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_focusPrev.n=tk_focusNext.n +l none /opt/csw/share/tk-man/mann/tk_focusFollowsMouse.n=tk_focusNext.n +f none /opt/csw/share/tk-man/mann/font.n 0644 root bin +f none /opt/csw/share/tk-man/mann/frame.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_getOpenFile.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_getSaveFile.n=tk_getOpenFile.n +f none /opt/csw/share/tk-man/mann/grab.n 0644 root bin +f none /opt/csw/share/tk-man/mann/grid.n 0644 root bin +f none /opt/csw/share/tk-man/mann/image.n 0644 root bin +f none /opt/csw/share/tk-man/mann/keysyms.n 0644 root bin +f none /opt/csw/share/tk-man/mann/label.n 0644 root bin +f none /opt/csw/share/tk-man/mann/labelframe.n 0644 root bin +f none /opt/csw/share/tk-man/mann/listbox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/loadTk.n 0644 root bin +f none /opt/csw/share/tk-man/mann/lower.n 0644 root bin +f none /opt/csw/share/tk-man/mann/menu.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_menuSetFocus.n=menu.n +f none /opt/csw/share/tk-man/mann/tk_menuBar.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_bindForTraversal.n=tk_menuBar.n +f none /opt/csw/share/tk-man/mann/menubutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/message.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_messageBox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/option.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_optionMenu.n 0644 root bin +f none /opt/csw/share/tk-man/mann/options.n 0644 root bin +f none /opt/csw/share/tk-man/mann/pack-old.n 0644 root bin +f none /opt/csw/share/tk-man/mann/pack.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_setPalette.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_bisque.n=tk_setPalette.n +f none /opt/csw/share/tk-man/mann/panedwindow.n 0644 root bin +f none /opt/csw/share/tk-man/mann/photo.n 0644 root bin +f none /opt/csw/share/tk-man/mann/place.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_popup.n 0644 root bin +f none /opt/csw/share/tk-man/mann/radiobutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/raise.n 0644 root bin +f none /opt/csw/share/tk-man/mann/scale.n 0644 root bin +f none /opt/csw/share/tk-man/mann/scrollbar.n 0644 root bin +f none /opt/csw/share/tk-man/mann/selection.n 0644 root bin +f none /opt/csw/share/tk-man/mann/send.n 0644 root bin +f none /opt/csw/share/tk-man/mann/spinbox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/text.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_textCopy.n=text.n +l none /opt/csw/share/tk-man/mann/tk_textCut.n=text.n +l none /opt/csw/share/tk-man/mann/tk_textPaste.n=text.n +f none /opt/csw/share/tk-man/mann/tk.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tkerror.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tkvars.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tkwait.n 0644 root bin +f none /opt/csw/share/tk-man/mann/toplevel.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_button.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_checkbutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_combobox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_entry.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_frame.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_image.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_intro.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_label.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_labelframe.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_menubutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_notebook.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_panedwindow.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_progressbar.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_radiobutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_scrollbar.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_separator.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_sizegrip.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_style.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_treeview.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_widget.n 0644 root bin +f none /opt/csw/share/tk-man/mann/winfo.n 0644 root bin +f none /opt/csw/share/tk-man/mann/wm.n 0644 root bin +d none /opt/csw/lib 0755 root bin +d none /opt/csw/lib/tk8.5 0755 root bin +f none /opt/csw/lib/tk8.5/pkgIndex.tcl 0644 root bin +d none /opt/csw/lib/tk8.5/images 0755 root bin +f none /opt/csw/lib/tk8.5/images/README 0644 root bin +f none /opt/csw/lib/tk8.5/images/logo.eps 0644 root bin +f none /opt/csw/lib/tk8.5/images/logo100.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/logo64.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/logoLarge.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/logoMed.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo.eps 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo100.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo150.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo175.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo200.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo75.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/tai-ku.gif 0644 root bin +d none /opt/csw/lib/tk8.5/msgs 0755 root bin +f none /opt/csw/lib/tk8.5/msgs/cs.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/da.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/de.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/el.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/en.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/en_gb.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/eo.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/es.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/fr.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/hu.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/it.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/nl.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/pl.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/pt.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/ru.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/sv.msg 0644 root bin +d none /opt/csw/lib/tk8.5/ttk 0755 root bin +f none /opt/csw/lib/tk8.5/ttk/altTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/aquaTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/button.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/clamTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/classicTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/combobox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/cursors.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/defaults.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/entry.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/fonts.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/menubutton.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/notebook.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/panedwindow.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/progress.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/scale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/scrollbar.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/sizegrip.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/treeview.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/ttk.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/utils.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/winTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/xpTheme.tcl 0644 root bin +d none /opt/csw/lib/tk8.5/demos 0755 root bin +d none /opt/csw/lib/tk8.5/demos/images 0755 root bin +f none /opt/csw/lib/tk8.5/demos/images/earth.gif 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/earthris.gif 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/face.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/flagdown.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/flagup.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/gray25.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/letters.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/noletter.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/pattern.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/tcllogo.gif 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/teapot.ppm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/README 0644 root bin +f none /opt/csw/lib/tk8.5/demos/anilabel.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/aniwave.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/arrow.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/bind.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/bitmap.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/browse 0755 root bin +f none /opt/csw/lib/tk8.5/demos/button.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/check.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/clrpick.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/colors.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/combo.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/cscroll.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ctext.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/dialog1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/dialog2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/en.msg 0644 root bin +f none /opt/csw/lib/tk8.5/demos/entry1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/entry2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/entry3.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/filebox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/floor.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/form.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/hello 0755 root bin +f none /opt/csw/lib/tk8.5/demos/goldberg.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/hscale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/icon.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/image1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/image2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/items.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ixset 0755 root bin +f none /opt/csw/lib/tk8.5/demos/label.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/labelframe.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/license.terms 0644 root bin +f none /opt/csw/lib/tk8.5/demos/mclist.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/menu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/menubu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/msgbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/nl.msg 0644 root bin +f none /opt/csw/lib/tk8.5/demos/paned1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/paned2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/pendulum.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/plot.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/puzzle.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/radio.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/rmt 0755 root bin +f none /opt/csw/lib/tk8.5/demos/rolodex 0755 root bin +f none /opt/csw/lib/tk8.5/demos/ruler.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/sayings.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/square 0755 root bin +f none /opt/csw/lib/tk8.5/demos/search.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/spin.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/states.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/style.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/tclIndex 0644 root bin +f none /opt/csw/lib/tk8.5/demos/tcolor 0755 root bin +f none /opt/csw/lib/tk8.5/demos/text.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/textpeer.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/timer 0755 root bin +f none /opt/csw/lib/tk8.5/demos/toolbar.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/tree.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkbut.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkmenu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttknote.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkpane.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkprogress.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/twind.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/unicodeout.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/vscale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/widget 0755 root bin +f none /opt/csw/lib/tk8.5/bgerror.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/button.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/choosedir.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/clrpick.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/comdlg.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/console.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/dialog.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/entry.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/focus.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/listbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/menu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/mkpsenc.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/msgbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/obsolete.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/optMenu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/palette.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/panedwindow.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/safetk.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/scale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/scrlbar.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/spinbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/tearoff.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/text.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/tk.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/tkfbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/unsupported.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/xmfbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/prolog.ps 0644 root bin +f none /opt/csw/lib/tk8.5/tclIndex 0644 root bin +f none /opt/csw/lib/tk8.5/tkAppInit.c 0644 root bin +f none /opt/csw/lib/libtk8.5.so 0755 root bin +f none /opt/csw/lib/tkConfig.sh 0644 root bin +f none /opt/csw/lib/libtkstub8.5.a 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/wish8.5 0755 root bin +s none /opt/csw/bin/wish=wish8.5 +d none /opt/csw/include 0755 root bin +f none /opt/csw/include/tk.h 0644 root bin +f none /opt/csw/include/tkDecls.h 0644 root bin +f none /opt/csw/include/tkPlatDecls.h 0644 root bin Added: csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,15 @@ +# Configure command for the TK package +# Run from the tk*[0-9]/unix subdirectory +# +# NOTE: * Had to add the CFLAGS argument for 8.5.x so that the test routines +# could find the current tk.h file in the generic directory rather +# than the previously installed 8.4.x /opt/csw/include/tcl.h which +# was causing all sorts of compile problems due to undefined objects! +# +# * The CFLAGS line is needed to compile and run the tests. These +# entries need to later be edited out of the file. + + +./configure --prefix=/opt/csw --mandir=/opt/csw/share/tk-man \ + --enable-threads \ + CFLAGS="-I. -I.. -I ../.. -I../generic" Property changes on: csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/tk/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/src/Makefile 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,53 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the TK src directory. This is used to +# retrieve current source code for the specified package(s). +# +# REVISION: 04-27-08 +# +# NOTES: * Set TVER to the current version of the software. +# +############################################################################### + +TVER=8.5.2 + + +help: + @echo "---------------------------------------------------------------" + @echo "TK Version: $(TVER)" + @echo "---------------------------------------------------------------" + @echo "make get download the current TK source code" + @echo "" + @echo "make rename rename downloaded source code file" + @echo "" + @echo "make unpack unpack the TK source code" + @echo "" + @echo "make links create symbolic links to current TCL source" + @echo "" + @echo "make clean remove source working directory + @echo "---------------------------------------------------------------" + + +# target get does not work until we can locate an unambiguous download site +# for the TK source + +get tk TK: + wget \ + http://prdownloads.sourceforge.net/tcl/tk$(TVER)-src.tar.gz + +rename: + mv tk$(TVER)-src.tar.gz TK.$(TVER)-src.tar.gz + clear ; ls + +unpack: TK.$(TVER)-src.tar.gz + unpak TK.$(TVER)-src.tar.gz + +links link tcl tcl-link: + rm -rf tcl*[0-9] tcl.h + ln -s ../../tcl/src/tcl*[0-9] . + ln -s ../../tcl/src/tcl*[0-9]/generic/tcl.h . + +clean: + rm -rf tk${TVER} tcl* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 23 22:25:02 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 23 Jan 2009 21:25:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[2898] csw/mgar/pkg/cvsps/trunk Message-ID: Revision: 2898 http://gar.svn.sourceforge.net/gar/?rev=2898&view=rev Author: bdwalton Date: 2009-01-23 21:24:59 +0000 (Fri, 23 Jan 2009) Log Message: ----------- - Fixed Makefile.am to include the man page - Fixed configure args - Cleaned old (now defunct) custom install stuff Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 20:55:31 UTC (rev 2897) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 21:24:59 UTC (rev 2898) @@ -17,6 +17,7 @@ PATCHFILES += 0004-add-config.h-awareness-to-all-source-files.patch PATCHFILES += 0005-gnulib-import-of-missing-functions.patch PATCHFILES += 0006-enabled-imported-gnulib-functions.patch +PATCHFILES += 0007-enable-installation-of-man-pages.patch PREREQUISITE_PKGS = CSWzlib CSWautomake CSWautoconf @@ -27,7 +28,7 @@ TEST_SCRIPTS = -#INSTALL_SCRIPTS = custom +CONFIGURE_ARGS = $(DIRPATHS) --with-zlib=/opt/csw include gar/category.mk @@ -36,9 +37,5 @@ @(cd $(WORKSRC); chmod +x autoinit.sh; ./autoinit.sh) @$(MAKECOOKIE) - -# 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/ +pre-install: + @echo DESTDIR is $(DESTDIR) Modified: csw/mgar/pkg/cvsps/trunk/checksums =================================================================== --- csw/mgar/pkg/cvsps/trunk/checksums 2009-01-23 20:55:31 UTC (rev 2897) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-23 21:24:59 UTC (rev 2898) @@ -6,3 +6,4 @@ 78d2f5dc4b1aa496e4f4ea8d2db4bf17 download/0004-add-config.h-awareness-to-all-source-files.patch 58cbd19160b6a98f3c5ff2a8786f0848 download/0005-gnulib-import-of-missing-functions.patch 02c14b029fd57a61fa97cc8209f18d7d download/0006-enabled-imported-gnulib-functions.patch +2a729989bcafa6f533bcd6b33c9ceb09 download/0007-enable-installation-of-man-pages.patch Added: csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch 2009-01-23 21:24:59 UTC (rev 2898) @@ -0,0 +1,21 @@ +From 588cc7cdd0795dd592674ad2c846b58e5ea884c4 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 22:04:10 +0100 +Subject: [PATCH] enable installation of man pages + +--- + Makefile.am | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index a07bbda..84b2eb9 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -9,3 +9,4 @@ cvsps_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c + cvsps_SOURCES += cbtcommon/debug.c cbtcommon/sio.c cbtcommon/text_util.c + cvsps_SOURCES += cbtcommon/hash.c cbtcommon/tcpsocket.c + ++man1_MANS = cvsps.1 +-- +1.6.0.5 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 23 22:37:01 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 23 Jan 2009 21:37:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[2899] csw/mgar/pkg/cvsps/trunk/Makefile Message-ID: Revision: 2899 http://gar.svn.sourceforge.net/gar/?rev=2899&view=rev Author: bdwalton Date: 2009-01-23 21:37:01 +0000 (Fri, 23 Jan 2009) Log Message: ----------- added files to share/doc/ Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 21:24:59 UTC (rev 2898) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 21:37:01 UTC (rev 2899) @@ -32,10 +32,15 @@ include gar/category.mk +DOCDIR = $(datadir)/doc/$(GARNAME)-$(GARVERSION) + pre-configure-modulated: @echo About to initialize the autotools bits. @(cd $(WORKSRC); chmod +x autoinit.sh; ./autoinit.sh) @$(MAKECOOKIE) -pre-install: - @echo DESTDIR is $(DESTDIR) +post-install-modulated: + @echo Installing README's, etc. + @(cd $(WORKSRC_FIRSTMOD); ginstall -m 0755 -d $(DESTDIR)/$(DOCDIR); \ + ginstall -m 0644 CHANGELOG README COPYING $(DESTDIR)/$(DOCDIR)) + @$(MAKECOOKIE) 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 23 22:58:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 21:58:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2900] csw/mgar/pkg/texinfo/trunk Message-ID: Revision: 2900 http://gar.svn.sourceforge.net/gar/?rev=2900&view=rev Author: dmichelsen Date: 2009-01-23 21:58:30 +0000 (Fri, 23 Jan 2009) Log Message: ----------- texinfo: Populate stub, update to 4.13a and convert to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/texinfo/trunk/Makefile csw/mgar/pkg/texinfo/trunk/checksums Added Paths: ----------- csw/mgar/pkg/texinfo/trunk/files/ csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec Property Changed: ---------------- csw/mgar/pkg/texinfo/trunk/ Property changes on: csw/mgar/pkg/texinfo/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/texinfo/trunk/Makefile =================================================================== --- csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-23 21:37:01 UTC (rev 2899) +++ csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-23 21:58:30 UTC (rev 2900) @@ -1,19 +1,27 @@ GARNAME = texinfo -GARVERSION = 4.6 +GARVERSION = 4.13a CATEGORIES = utils -DESCRIPTION = Create different types of documentation from a single source. +DESCRIPTION = The GNU Documentation System define BLURB - Texinfo is a documentation system that uses a single source to produce both - on-line information (info, HTML, XML, Docbook) and printed output (DVI, PDF). + Texinfo is a documentation system that uses a single source to produce both + on-line information (info, HTML, XML, Docbook) and printed output (DVI, PDF). endef +DISTNAME = $(GARNAME)-4.13 MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWtexinfo,) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWgsed CSWncurses CSWiconv CSWggettext + CONFIGURE_ARGS = $(DIRPATHS) +TEST_TARGET = check + +EXTRA_MERGE_EXCLUDE_FILES = $(libdir)/charset.alias + include gar/category.mk Modified: csw/mgar/pkg/texinfo/trunk/checksums =================================================================== --- csw/mgar/pkg/texinfo/trunk/checksums 2009-01-23 21:37:01 UTC (rev 2899) +++ csw/mgar/pkg/texinfo/trunk/checksums 2009-01-23 21:58:30 UTC (rev 2900) @@ -1 +1,2 @@ -5730c8c0c7484494cca7a7e2d7459c64 download/texinfo-4.6.tar.gz +71ba711519209b5fb583fed2b3d86fcb download/texinfo-4.13a.tar.gz +a2faefb6b4dbc8b851619b0e467d9685 download/CSWtexinfo.gspec Added: csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec =================================================================== --- csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec (rev 0) +++ csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec 2009-01-23 21:58:30 UTC (rev 2900) @@ -0,0 +1,4 @@ +%var bitname texinfo +%var pkgname CSWtexinfo +%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 23 23:35:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 22:35:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2901] csw/mgar/gar Message-ID: Revision: 2901 http://gar.svn.sourceforge.net/gar/?rev=2901&view=rev Author: dmichelsen Date: 2009-01-23 22:35:36 +0000 (Fri, 23 Jan 2009) Log Message: ----------- mGAR: Fix typo in path Modified Paths: -------------- csw/mgar/gar/v1/gar.conf.mk csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v1/gar.conf.mk =================================================================== --- csw/mgar/gar/v1/gar.conf.mk 2009-01-23 21:58:30 UTC (rev 2900) +++ csw/mgar/gar/v1/gar.conf.mk 2009-01-23 22:35:36 UTC (rev 2901) @@ -237,7 +237,7 @@ UPSTREAM_USE_SF ?= 0 # GNU -GNU_SITE = http://mirrors.kernel.org/ +GNU_SITE = http://mirrors.kernel.org GNU_GNUROOT = $(GNU_SITE)/gnu GNU_NGNUROOT = $(GNU_SITE)/non-gnu GNU_MIRROR = $(GNU_GNUROOT)/$(GARNAME)/ Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-01-23 21:58:30 UTC (rev 2900) +++ csw/mgar/gar/v2/gar.conf.mk 2009-01-23 22:35:36 UTC (rev 2901) @@ -500,7 +500,7 @@ GOOGLE_MIRROR ?= http://$(GOOGLE_PROJECT).googlecode.com/files/ # GNU -GNU_SITE = http://mirrors.kernel.org/ +GNU_SITE = http://mirrors.kernel.org GNU_GNUROOT = $(GNU_SITE)/gnu GNU_NGNUROOT = $(GNU_SITE)/non-gnu GNU_MIRROR = $(GNU_GNUROOT)/$(GARNAME)/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Jan 24 02:11:24 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 24 Jan 2009 01:11:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2902] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 2902 http://gar.svn.sourceforge.net/gar/?rev=2902&view=rev Author: bdwalton Date: 2009-01-24 01:11:24 +0000 (Sat, 24 Jan 2009) Log Message: ----------- git_cvs depends on cvsps Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-01-23 22:35:36 UTC (rev 2901) +++ csw/mgar/pkg/git/trunk/Makefile 2009-01-24 01:11:24 UTC (rev 2902) @@ -4,7 +4,7 @@ PREREQUISITE_PKGS = CSWasciidoc CSWossldevel CSWxmlto CSWbash CSWcurl PREREQUISITE_PKGS += CSWgsed CSWgnulinks CSWperl CSWtk CSWexpat -PREREQUISITE_PKGS += CSWzlib CSWpmerror CSWpmsvn CSWcvs CSWemacs +PREREQUISITE_PKGS += CSWzlib CSWpmerror CSWpmsvn CSWcvsps CSWemacs REQUIRED_PKGS_CSWgit = CSWzlib CSWperl CSWrsync CSWcurlrt CSWosslrt REQUIRED_PKGS_CSWgit += CSWossh CSWiconv CSWexpat CSWbash CSWpmerror @@ -15,7 +15,7 @@ REQUIRED_PKGS_CSWgitsvn = CSWgit CSWpmsvn -REQUIRED_PKGS_CSWgitcvs = CSWgit CSWcvs +REQUIRED_PKGS_CSWgitcvs = CSWgit CSWcvsps REQUIRED_PKGS_CSWgitemacs = CSWgit CSWemacs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jan 24 14:35:11 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 24 Jan 2009 13:35:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[2903] csw/mgar/pkg/lftp/trunk Message-ID: Revision: 2903 http://gar.svn.sourceforge.net/gar/?rev=2903&view=rev Author: chninkel Date: 2009-01-24 13:35:11 +0000 (Sat, 24 Jan 2009) Log Message: ----------- lftp: updated to 3.7.8 Modified Paths: -------------- csw/mgar/pkg/lftp/trunk/Makefile csw/mgar/pkg/lftp/trunk/checksums Modified: csw/mgar/pkg/lftp/trunk/Makefile =================================================================== --- csw/mgar/pkg/lftp/trunk/Makefile 2009-01-24 01:11:24 UTC (rev 2902) +++ csw/mgar/pkg/lftp/trunk/Makefile 2009-01-24 13:35:11 UTC (rev 2903) @@ -1,5 +1,5 @@ GARNAME = lftp -GARVERSION = 3.7.7 +GARVERSION = 3.7.8 CATEGORIES = net DESCRIPTION = sophisticated command-line ftp/http client Modified: csw/mgar/pkg/lftp/trunk/checksums =================================================================== --- csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 01:11:24 UTC (rev 2902) +++ csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 13:35:11 UTC (rev 2903) @@ -1,4 +1,4 @@ -7b7aebf99e862fa4b9dcf892b7b45d82 download/lftp-3.7.7.tar.gz +014a4ac6b9ea4016d5cd64afe0397b89 download/lftp-3.7.8.tar.gz 47fdb80e4575a9a70d69b146974620df download/CSWlftp.gspec 96ee1569832d5eaed0c3a7b37e13fc88 download/CSWlftp.prototype f2c7e3e3db9f5c48dddb983c95588528 download/CSWlftp.depend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jan 24 16:14:39 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 24 Jan 2009 15:14:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[2904] csw/mgar/pkg/lftp/trunk Message-ID: Revision: 2904 http://gar.svn.sourceforge.net/gar/?rev=2904&view=rev Author: chninkel Date: 2009-01-24 15:14:38 +0000 (Sat, 24 Jan 2009) Log Message: ----------- lftp: updated changelog Modified Paths: -------------- csw/mgar/pkg/lftp/trunk/checksums csw/mgar/pkg/lftp/trunk/files/changelog.CSW Modified: csw/mgar/pkg/lftp/trunk/checksums =================================================================== --- csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 13:35:11 UTC (rev 2903) +++ csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 15:14:38 UTC (rev 2904) @@ -2,6 +2,6 @@ 47fdb80e4575a9a70d69b146974620df download/CSWlftp.gspec 96ee1569832d5eaed0c3a7b37e13fc88 download/CSWlftp.prototype f2c7e3e3db9f5c48dddb983c95588528 download/CSWlftp.depend -1bcc79a591071b5110fa57c072b57818 download/changelog.CSW +f1eeec4e93ff6e52c685603708f3407c download/changelog.CSW 3a01fb949dfe799507720c311222cd96 download/i.conf 51abe2144219c1af4c79c2e8b7e81cb9 download/r.conf Modified: csw/mgar/pkg/lftp/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-01-24 13:35:11 UTC (rev 2903) +++ csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-01-24 15:14:38 UTC (rev 2904) @@ -1,3 +1,9 @@ +lftp (3.7.8,REV=2009.01.24) unstable + + * New upstream version. + + -- Yann Rouillard Sat, 24 Jan 2009 16:14:12 +0100 + lftp (3.7.7,REV=2008.12.12) unstable * New upstream version. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jan 24 22:25:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 24 Jan 2009 21:25:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2905] csw/mgar/pkg Message-ID: Revision: 2905 http://gar.svn.sourceforge.net/gar/?rev=2905&view=rev Author: dmichelsen Date: 2009-01-24 21:25:09 +0000 (Sat, 24 Jan 2009) Log Message: ----------- top: Initial commit Added Paths: ----------- csw/mgar/pkg/top/ csw/mgar/pkg/top/branches/ csw/mgar/pkg/top/tags/ csw/mgar/pkg/top/trunk/ csw/mgar/pkg/top/trunk/Makefile csw/mgar/pkg/top/trunk/checksums csw/mgar/pkg/top/trunk/files/ csw/mgar/pkg/top/trunk/files/CSWtop.gspec Property changes on: csw/mgar/pkg/top/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/top/trunk/Makefile =================================================================== --- csw/mgar/pkg/top/trunk/Makefile (rev 0) +++ csw/mgar/pkg/top/trunk/Makefile 2009-01-24 21:25:09 UTC (rev 2905) @@ -0,0 +1,31 @@ +GARNAME = top +GARVERSION = 3.7 +CATEGORIES = apps + +DESCRIPTION = Unix system state reporter +define BLURB +endef + +SF_PROJ = unixtop +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWtop,) + +SPKG_SOURCEURL = http://www.unixtop.org/ + +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=72892 +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +BUILD64 = 1 + +# autoconf tries to compile for the current kernel. Get rid of +# these extra flags as we set them ourselves with BUILD64 = 1 +BUILD_OVERRIDE_DIRS = ARCHFLAG + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --disable-dualarch + +# top doesn't have a testsuite +TEST_TARGET = + +include gar/category.mk Added: csw/mgar/pkg/top/trunk/checksums =================================================================== --- csw/mgar/pkg/top/trunk/checksums (rev 0) +++ csw/mgar/pkg/top/trunk/checksums 2009-01-24 21:25:09 UTC (rev 2905) @@ -0,0 +1,2 @@ +166226469776c073da7abd35197627dc download/top-3.7.tar.gz +9799a03c1e974c7a702c4c9f042487d6 download/CSWtop.gspec Added: csw/mgar/pkg/top/trunk/files/CSWtop.gspec =================================================================== --- csw/mgar/pkg/top/trunk/files/CSWtop.gspec (rev 0) +++ csw/mgar/pkg/top/trunk/files/CSWtop.gspec 2009-01-24 21:25:09 UTC (rev 2905) @@ -0,0 +1,4 @@ +%var bitname top +%var pkgname CSWtop +%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 bdwalton at users.sourceforge.net Sun Jan 25 01:33:29 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sun, 25 Jan 2009 00:33:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2906] csw/mgar/pkg/ruby/trunk/ Message-ID: Revision: 2906 http://gar.svn.sourceforge.net/gar/?rev=2906&view=rev Author: bdwalton Date: 2009-01-25 00:33:29 +0000 (Sun, 25 Jan 2009) Log Message: ----------- revert to gar1 for testing 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/v2 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 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 26 10:33:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Jan 2009 09:33:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2907] csw/mgar/pkg/cpan/Email-Simple/trunk Message-ID: Revision: 2907 http://gar.svn.sourceforge.net/gar/?rev=2907&view=rev Author: dmichelsen Date: 2009-01-26 09:33:30 +0000 (Mon, 26 Jan 2009) Log Message: ----------- Email-Simple: Update to 2.005 Modified Paths: -------------- csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile csw/mgar/pkg/cpan/Email-Simple/trunk/checksums Modified: csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile 2009-01-25 00:33:29 UTC (rev 2906) +++ csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile 2009-01-26 09:33:30 UTC (rev 2907) @@ -1,5 +1,5 @@ GARNAME = Email-Simple -GARVERSION = 2.004 +GARVERSION = 2.005 CATEGORIES = cpan AUTHOR = RJBS Modified: csw/mgar/pkg/cpan/Email-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Email-Simple/trunk/checksums 2009-01-25 00:33:29 UTC (rev 2906) +++ csw/mgar/pkg/cpan/Email-Simple/trunk/checksums 2009-01-26 09:33:30 UTC (rev 2907) @@ -1,2 +1,2 @@ c694874fd890d5ad6f963a6d207fd4dd download/CSWpmemailsimple.gspec -e23ebf15657b6e46b69e8975740cb4b4 download/Email-Simple-2.004.tar.gz +945a8a487ba7aea909b01b84ceb1c678 download/Email-Simple-2.005.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 26 19:24:09 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 18:24:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2908] csw/mgar/pkg/gvim/trunk Message-ID: Revision: 2908 http://gar.svn.sourceforge.net/gar/?rev=2908&view=rev Author: harpchad Date: 2009-01-26 18:24:09 +0000 (Mon, 26 Jan 2009) Log Message: ----------- - update to patch level 088 - now using gar v2 - now includes 64 bit binaries (w/isaexec) - removed links to vim build directory Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile csw/mgar/pkg/gvim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gvim/trunk/files/vimtutor.patch Removed Paths: ------------- csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype csw/mgar/pkg/gvim/trunk/files/vimtutor.diff Property Changed: ---------------- csw/mgar/pkg/gvim/trunk/ Property changes on: csw/mgar/pkg/gvim/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/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 18:24:09 UTC (rev 2908) @@ -1,5 +1,7 @@ GARNAME = vim DISTVERSION = 7.2 +PATCHREV = 088 +GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php DESCRIPTION = Vi IMproved with GTK+ support @@ -13,30 +15,76 @@ #DEPENDS = utils/mktemp lib/ncurses -include ../vim/files/config.mk -DISTFILES += $(call admfiles,CSWgvim,prototype depend) +MASTER_SITES += ftp://ftp.vim.org/pub/vim/patches/$(DISTVERSION)/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/extra/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/unix/ + +DISTFILES = $(call admfiles,CSWgvim,) +DISTFILES += $(GARNAME)-$(DISTVERSION).tar.bz2 +DISTFILES += $(GARNAME)-$(DISTVERSION)-lang.tar.gz +DISTFILES += $(GARNAME)-$(DISTVERSION)-extra.tar.gz DISTFILES += gvim.desktop +PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) +PATCHFILES += vimtutor.patch + +WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-global-runtime=$(sharedstatedir)/$(GARNAME) +CONFIGURE_ARGS += --with-features=huge +CONFIGURE_ARGS += --with-tlib=ncurses +CONFIGURE_ARGS += --enable-multibyte +CONFIGURE_ARGS += --enable-cscope CONFIGURE_ARGS += --with-vim-name="vim-x11" CONFIGURE_ARGS += --enable-gui=gnome2 -include ../vim/files/patches.mk +BUILD_ARGS += "VIMRCLOC=/opt/csw/etc/vim" +BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim72" +BUILD64 = 1 +PATCHDIRLEVEL = 0 + +REQUIRED_PKGS_CSWgvim = CSWvimrt CSWbonobo2 CSWfconfig CSWftype2 CSWgconf2 +REQUIRED_PKGS_CSWgvim += CSWggettext CSWglib2 CSWgnomekeyring CSWgnomevfs2 CSWgtk2 +REQUIRED_PKGS_CSWgvim += CSWiconv CSWlibart CSWlibatk CSWlibbonoboui CSWlibcairo +REQUIRED_PKGS_CSWgvim += CSWlibgnome CSWlibgnomecanvas CSWlibgnomeui CSWlibnet CSWlibpopt +REQUIRED_PKGS_CSWgvim += CSWlibxml2 CSWlibxrender CSWncurses CSWorbit2 CSWpango +REQUIRED_PKGS_CSWgvim += CSWperl CSWpng CSWzlib + INSTALL_SCRIPTS = minimal # Test requires controlling terminal TEST_SCRIPTS = +MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/gvim-x11tutor + include gar/category.mk -# Don't install the runtime -install-minimal: - @$(INSTALL_ENV) $(MAKE) -C $(WORKSRC)/src \ - installvimbin installlinks installtools installgtutorbin +post-install-isa-sparcv8 post-install-isa-i386: mkdir -p $(DESTDIR)/opt/csw/share/pixmaps cp $(WORKSRC)/runtime/vim48x48.png $(DESTDIR)/opt/csw/share/pixmaps/gvim.png mkdir -p $(DESTDIR)/opt/csw/share/applications cp $(DOWNLOADDIR)/gvim.desktop $(DESTDIR)/opt/csw/share/applications/gvim.desktop mv $(DESTDIR)/opt/csw/bin/gvim-x11tutor $(DESTDIR)/opt/csw/bin/gvimtutor + mv $(DESTDIR)/opt/csw/bin/gvim-x11 $(DESTDIR)/opt/csw/bin/gvim + mv $(DESTDIR)/opt/csw/bin/rgvim-x11 $(DESTDIR)/opt/csw/bin/rgvim + mv $(DESTDIR)/opt/csw/bin/evim-x11 $(DESTDIR)/opt/csw/bin/evim + mv $(DESTDIR)/opt/csw/bin/gvim-x11diff $(DESTDIR)/opt/csw/bin/gvimdiff @$(MAKECOOKIE) $(DONADA) + +post-install-isa-sparcv9 post-install-isa-amd64: + mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/gvim + mv $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim + mv $(DESTDIR)/opt/csw/bin/$(ISA)/evim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/evim + mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11diff $(DESTDIR)/opt/csw/bin/$(ISA)/gvimdiff + @$(MAKECOOKIE) + $(DONADA) + +# Don't install the runtime +install-minimal: + @$(INSTALL_ENV) $(MAKE) -C $(WORKSRC)/src \ + installvimbin installglinks installgtutorbin + @$(MAKECOOKIE) + $(DONADA) Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-26 18:24:09 UTC (rev 2908) @@ -81,11 +81,14 @@ 3bdf4ec7db7976876a827f2dfa269e89 download/7.2.081 590c9aa51fcb808ece4b6b4bfaaaaf30 download/7.2.082 2a10abc536f7a69ff3ef353b55b6cb65 download/7.2.083 +78defaaa03e61955f6624b796efb8655 download/7.2.084 +869116b3e92e944d40a3e03f9a99816f download/7.2.085 +5af26f073ebeba60af90525d68a61725 download/7.2.086 +639d7a80864afe68132725e377f52f19 download/7.2.087 +44b152484534fa23c4ff531316a0e518 download/7.2.088 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 -582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.diff -2f6bf1938bfdc77a305903e70e3d1de2 download/CSWgvim.depend +582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.patch 3d2b62d6810417d562ed17aaada29868 download/CSWgvim.gspec -2b8beca0088c83291df67af00616a197 download/CSWgvim.prototype 47396843634a6e3c05d4f5d6b4bf8a72 download/gvim.desktop Deleted: csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend =================================================================== --- csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend 2009-01-26 18:24:09 UTC (rev 2908) @@ -1,28 +0,0 @@ -P CSWvimrt vimrt - vim shared runtime and documentation -P CSWbonobo2 libbonobo2 - GNOME component and compound document system -P CSWfconfig fontconfig - A library for configuring and customizing font access. -P CSWftype2 freetype2 - The free and portable high quality font engine -P CSWgconf2 gconf2 - GNOME configuration database system -P CSWggettext ggettext - GNU gettext -P CSWglib2 glib2 - Low-level core library that forms the basis of GTK+ -P CSWgnomekeyring gnomekeyring - keep password and other secrets for users -P CSWgnomevfs2 gnomevfs2 - GNOME Virtual File System -P CSWgtk2 gtk2 - GTK+, The GIMP Toolkit -P CSWiconv libiconv - GNU iconv library -P CSWlibart libart - High performance 2D graphics library -P CSWlibatk libatk - Accessibility toolkit for GNOME -P CSWlibbonoboui libbonoboui - UI code for the GNOME 2 Object Activation Framework -P CSWlibcairo libcairo - The Cairo 2D Graphics Library -P CSWlibgnome libgnome - The main GNOME 2 library -P CSWlibgnomecanvas libgnomecanvas - Gnome2 Canvas Lib -P CSWlibgnomeui libgnomeui - The main GNOME 2 UI library -P CSWlibnet libnet - the libnet packet construction library -P CSWlibpopt libpopt - Command line option parsing library -P CSWlibxml2 libxml2 - XML Parser Library -P CSWlibxrender libxrender - fontconfig.org Xrender library -P CSWncurses ncurses - ncurses library and utilities -P CSWorbit2 orbit2 - ORBit 2.x CORBA tools and libs -P CSWpango libpango - Library for laying out and rendering text -P CSWperl perl - A high-level, general-purpose programming language. -P CSWpng png - library for Portable Network Graphics format (PNG) -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype =================================================================== --- csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype 2009-01-26 18:24:09 UTC (rev 2908) @@ -1,15 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/vim-x11 0755 root bin -s none /opt/csw/bin/evim=vim-x11 -s none /opt/csw/bin/eview=vim-x11 -s none /opt/csw/bin/gview=vim-x11 -s none /opt/csw/bin/gvim=vim-x11 -s none /opt/csw/bin/gvimdiff=vim-x11 -s none /opt/csw/bin/rgview=vim-x11 -s none /opt/csw/bin/rgvim=vim-x11 -f none /opt/csw/bin/gvimtutor 0755 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/pixmaps 0755 root bin -f none /opt/csw/share/pixmaps/gvim.png 0644 root bin -d none /opt/csw/share/applications 0755 root bin -f none /opt/csw/share/applications/gvim.desktop 0644 root bin Deleted: csw/mgar/pkg/gvim/trunk/files/vimtutor.diff =================================================================== --- csw/mgar/pkg/gvim/trunk/files/vimtutor.diff 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/files/vimtutor.diff 2009-01-26 18:24:09 UTC (rev 2908) @@ -1 +0,0 @@ -link ../../vim/files/vimtutor.diff \ No newline at end of file Added: csw/mgar/pkg/gvim/trunk/files/vimtutor.patch =================================================================== --- csw/mgar/pkg/gvim/trunk/files/vimtutor.patch (rev 0) +++ csw/mgar/pkg/gvim/trunk/files/vimtutor.patch 2009-01-26 18:24:09 UTC (rev 2908) @@ -0,0 +1,13 @@ +*** src/vimtutor.o Thu Dec 18 23:27:44 2008 +--- src/vimtutor Thu Dec 18 23:28:10 2008 +*************** +*** 1,5 **** +--- 1,8 ---- + #! /bin/sh + ++ PATH=`dirname $0`:$PATH ++ export PATH ++ + # Start Vim on a copy of the tutor file. + + # Usage: vimtutor [-g] [xx] 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 26 20:33:46 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 19:33:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2909] csw/mgar/pkg/vim/trunk Message-ID: Revision: 2909 http://gar.svn.sourceforge.net/gar/?rev=2909&view=rev Author: harpchad Date: 2009-01-26 19:33:45 +0000 (Mon, 26 Jan 2009) Log Message: ----------- - update to patch level 088 - now using gar v2 - now includes 64 bit binaries (w/isaexec) Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile csw/mgar/pkg/vim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/vim/trunk/files/vimtutor.patch Removed Paths: ------------- csw/mgar/pkg/vim/trunk/files/CSWvim.depend csw/mgar/pkg/vim/trunk/files/CSWvim.prototype csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype csw/mgar/pkg/vim/trunk/files/config.mk csw/mgar/pkg/vim/trunk/files/patches.mk csw/mgar/pkg/vim/trunk/files/rules.mk csw/mgar/pkg/vim/trunk/files/vimtutor.diff Property Changed: ---------------- csw/mgar/pkg/vim/trunk/ Property changes on: csw/mgar/pkg/vim/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/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,5 +1,7 @@ GARNAME = vim DISTVERSION = 7.2 +PATCHREV = 088 +GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php DESCRIPTION = Vi IMproved @@ -11,21 +13,51 @@ Unix, MS Windows, OS/2, Macintosh, VMS, and Amiga. endef -#DEPENDS = utils/mktemp lib/ncurses +MASTER_SITES += ftp://ftp.vim.org/pub/vim/patches/$(DISTVERSION)/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/extra/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/unix/ -include files/config.mk -DISTFILES += $(call admfiles,CSWvim,depend prototype) -DISTFILES += $(call admfiles,CSWvimrt,prototype) +DISTFILES += $(call admfiles,CSWvim,) +DISTFILES += $(call admfiles,CSWvimrt,) +DISTFILES += $(GARNAME)-$(DISTVERSION).tar.bz2 +DISTFILES += $(GARNAME)-$(DISTVERSION)-lang.tar.gz +DISTFILES += $(GARNAME)-$(DISTVERSION)-extra.tar.gz +PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) +PATCHFILES += vimtutor.patch + +WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) + +CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-xim CONFIGURE_ARGS += --without-x CONFIGURE_ARGS += --enable-gui=no CONFIGURE_ARGS += --disable-gpm +CONFIGURE_ARGS += --with-global-runtime=$(sharedstatedir)/$(GARNAME) +CONFIGURE_ARGS += --with-features=huge +CONFIGURE_ARGS += --with-tlib=ncurses +CONFIGURE_ARGS += --enable-multibyte +CONFIGURE_ARGS += --enable-cscope -include files/patches.mk +BUILD_ARGS = "VIMRCLOC=/opt/csw/etc/vim" +BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim72" +BUILD64 = 1 +PATCHDIRLEVEL = 0 + +REQUIRED_PKGS_CSWvim = CSWggettext CSWiconv CSWncurses CSWvimrt +INCOMPATIBLE_PKGS_CSWvim = CSWvim-minimal + +PKGFILES_CSWvimrt = $(PKGFILES_DOC) + # Test requires controlling terminal TEST_SCRIPTS = include gar/category.mk -include files/rules.mk + +post-configure: make-interps-lazy + +make-interps-lazy: + @perl -i.bak -plne \ + 's/(-l(?:perl|python|ruby|tcl)\S*)/-zlazyload $$1 -znolazyload/' \ + $(WORKSRC)/src/auto/config.mk Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/checksums 2009-01-26 19:33:45 UTC (rev 2909) @@ -81,12 +81,14 @@ 3bdf4ec7db7976876a827f2dfa269e89 download/7.2.081 590c9aa51fcb808ece4b6b4bfaaaaf30 download/7.2.082 2a10abc536f7a69ff3ef353b55b6cb65 download/7.2.083 -198b5e809eddd24650dac5ab237e26d0 download/CSWvim.depend +78defaaa03e61955f6624b796efb8655 download/7.2.084 +869116b3e92e944d40a3e03f9a99816f download/7.2.085 +5af26f073ebeba60af90525d68a61725 download/7.2.086 +639d7a80864afe68132725e377f52f19 download/7.2.087 +44b152484534fa23c4ff531316a0e518 download/7.2.088 59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec -7f886f132e8404332757262c82aac7af download/CSWvim.prototype c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec -9ca3e912af15f511018b08f568e9f9cf download/CSWvimrt.prototype 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 -582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.diff +582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.patch Deleted: csw/mgar/pkg/vim/trunk/files/CSWvim.depend =================================================================== --- csw/mgar/pkg/vim/trunk/files/CSWvim.depend 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/files/CSWvim.depend 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,5 +0,0 @@ -I CSWvim-minimal vim_minimal - Vi Improved - minimal configuration -P CSWggettext ggettext - GNU gettext -P CSWiconv libiconv - GNU iconv library -P CSWncurses ncurses - ncurses library and utilities -P CSWvimrt vimrt - vim shared runtime and documentation Deleted: csw/mgar/pkg/vim/trunk/files/CSWvim.prototype =================================================================== --- csw/mgar/pkg/vim/trunk/files/CSWvim.prototype 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/files/CSWvim.prototype 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,7 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/vim 0755 root bin -f none /opt/csw/bin/xxd 0755 root bin -s none /opt/csw/bin/rview=vim -s none /opt/csw/bin/rvim=vim -s none /opt/csw/bin/view=vim -s none /opt/csw/bin/vimdiff=vim Deleted: csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype =================================================================== --- csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,1691 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/vimtutor 0755 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/vim 0755 root bin -d none /opt/csw/share/vim/vim72 0755 root bin -d none /opt/csw/share/vim/vim72 0755 root bin -d none /opt/csw/share/vim/vim72/print 0755 root bin -f none /opt/csw/share/vim/vim72/print/cidfont.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/ks_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/koi8-u.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/ascii.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/jis_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/latin1.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/ebcdic-uk.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-3.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/hp-roman8.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-2.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/koi8-r.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cns_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-7.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-5.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/gb_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-4.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1250.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/prolog.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1251.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1253.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-15.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-14.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1252.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-10.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1257.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/dec-mcs.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-11.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-8.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-13.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/mac-roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1255.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1254.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-9.ps 0644 root bin -d none /opt/csw/share/vim/vim72/ftplugin 0755 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lftp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/verilog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/abaqus.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/css.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/grub.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitrebase.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/arch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/procmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/passwd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mrxvtrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/fetchmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/reva.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dictconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/group.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xf86conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sensors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/vhdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/aspvbs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/racc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mplayerconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/rnc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/csh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mailcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/logindefs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/flexwiki.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dircolors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/art.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/calendar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/zsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitsendemail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/bst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/debchangelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/changelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/vim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dictdconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/denyhosts.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/aap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sudoers.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cvsrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/git.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/slpreg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/btm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cobol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/a2ps.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sass.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/slpspi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/jsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/tex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pascal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xmodmap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/setserial.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/hostconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ocaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/kconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/updatedb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xslt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/scheme.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/nanorc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/services.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/protocols.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/terminfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/javascript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pinfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/help.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/loginaccess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/vb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/python.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pyrex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/alsaconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/matlab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gpg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/modconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/msmessages.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/hamster.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/occam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/framescript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lprolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xdefaults.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/automake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/m4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/indent.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xinetd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/slpconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/eterm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ishd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/diff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/quake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/objc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/kwt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/fortran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mupad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sshconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sysctl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/man.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/context.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/udevrules.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/udevperm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitcommit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sieve.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dosbatch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/haml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/svg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/limits.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sgml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mailaliases.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/postscr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lua.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pamconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/spec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/csc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/java.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/prolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xhtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ld.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/config.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/logtalk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/crm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/debcontrol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/screen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/fvwm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/plaintex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/haskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/udevconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/elinks.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/yaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/tcsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/bdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/htmldjango.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/muttrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lisp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/AppendMatchGroup.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dosini.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/libao.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/rpl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/netrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/make.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/hostsaccess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dtd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dtrace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/readline.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cdrdaoconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/manconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/initex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/nsis.vim 0644 root bin -d none /opt/csw/share/vim/vim72/indent 0755 root bin -f none /opt/csw/share/vim/vim72/indent/mma.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/java.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dtd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dtrace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/verilog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/occam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/haml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/rpl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/idlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cmake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/pyrex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dylan.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/changelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/objc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/erlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ishd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ocaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dictdconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/config.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/prolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tilde.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cobol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/javascript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/lua.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/awk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/mp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/make.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/readline.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tcsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/GenericIndent.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/lisp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ld.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/hamster.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xf86conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/fortran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sass.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xinetd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/docbk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/vb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/d.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/bib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dictconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/matlab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/vhdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/python.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/logtalk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/jsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/framescript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/postscr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/scheme.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/pascal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/indent/aap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xhtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/yacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/zsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/bst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/vim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/pov.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/htmldjango.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/automake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/eiffel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/mupad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/css.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/gitconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sqlanywhere.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xslt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/eterm.vim 0644 root bin -d none /opt/csw/share/vim/vim72/tutor 0755 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sv.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.cs.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.no 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ko.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ja.euc 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.pl 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.tr.iso9 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.es 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.el.cp737 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hu 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hr 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ja.sjis 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.info 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ru.cp1251 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.tr.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hu.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hr.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.zh.euc 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.it.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.fr 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.el.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.el.cp737.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.vi.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.es.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.zh.big5 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ko.euc 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.cs 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ru 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.cs.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.zh.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sv 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.no.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ja.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.el.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.el 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.pl.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.pl.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hu.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.de 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.fr.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.vim 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sk.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sk.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ru.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sk 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ca.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.de.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ca 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hr.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.eo.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.it 0644 root bin -f none /opt/csw/share/vim/vim72/optwin.vim 0644 root bin -d none /opt/csw/share/vim/vim72/macros 0755 root bin -f none /opt/csw/share/vim/vim72/macros/dvorak 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm.info 0644 root bin -d none /opt/csw/share/vim/vim72/macros/urm 0755 root bin -f none /opt/csw/share/vim/vim72/macros/urm/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/urm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/examples 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/urm 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/less.sh 0755 root bin -d none /opt/csw/share/vim/vim72/macros/maze 0755 root bin -f none /opt/csw/share/vim/vim72/macros/maze/Makefile 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze_mac 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/poster.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/poster 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze_5.78.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/mazeansi.c 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/main.aap 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/mazeclean.c 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze_5.78 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze.c 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/shellmenu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/matchit.vim 0644 root bin -d none /opt/csw/share/vim/vim72/macros/hanoi 0755 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/hanoi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/poster.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/poster 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/click.me.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/click.me 0644 root bin -f none /opt/csw/share/vim/vim72/macros/matchit.txt 0644 root bin -d none /opt/csw/share/vim/vim72/macros/life 0755 root bin -f none /opt/csw/share/vim/vim72/macros/life/click.me.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/life/life.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/life/click.me 0644 root bin -f none /opt/csw/share/vim/vim72/macros/justify.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/swapmous.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/less.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/editexisting.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/indent.vim 0644 root bin -d none /opt/csw/share/vim/vim72/compiler 0755 root bin -f none /opt/csw/share/vim/vim72/compiler/gnat.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/onsgmls.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_cv.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/javac.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/rubyunit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/tcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/tidy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/modelsim_vcom.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/bcc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/bdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/msvc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/se.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/rspec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_g77.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fpc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/xmlwf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mipspro_c89.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/dot.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/pbx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/pyunit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/jikes.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/gcc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mipspro_cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/intel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/splint.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/checkstyle.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_lf95.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/neato.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/tex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/icc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/irix5_cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/xmllint.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/hp_acc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mips_c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mcs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_elf90.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/decada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/irix5_c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_F.vim 0644 root bin -f none /opt/csw/share/vim/vim72/synmenu.vim 0644 root bin -d none /opt/csw/share/vim/vim72/tools 0755 root bin -f none /opt/csw/share/vim/vim72/tools/efm_perl.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/efm_filter.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/vimspell.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/pltags.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/ccfilter.1 0644 root bin -f none /opt/csw/share/vim/vim72/tools/ref 0755 root bin -f none /opt/csw/share/vim/vim72/tools/vimm 0755 root bin -f none /opt/csw/share/vim/vim72/tools/mve.awk 0755 root bin -f none /opt/csw/share/vim/vim72/tools/vim_vs_net.cmd 0644 root bin -f none /opt/csw/share/vim/vim72/tools/vim132 0755 root bin -f none /opt/csw/share/vim/vim72/tools/xcmdsrv_client.c 0644 root bin -f none /opt/csw/share/vim/vim72/tools/ccfilter.c 0644 root bin -f none /opt/csw/share/vim/vim72/tools/blink.c 0644 root bin -f none /opt/csw/share/vim/vim72/tools/shtags.1 0644 root bin -f none /opt/csw/share/vim/vim72/tools/vimspell.sh 0755 root bin -f none /opt/csw/share/vim/vim72/tools/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/ccfilter_README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/efm_filter.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/shtags.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/mve.txt 0644 root bin -f none /opt/csw/share/vim/vim72/vimrc_example.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftoff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/gvimrc_example.vim 0644 root bin -f none /opt/csw/share/vim/vim72/menu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/scripts.vim 0644 root bin -d none /opt/csw/share/vim/vim72/spell 0755 root bin -f none /opt/csw/share/vim/vim72/spell/en.latin1.sug 0644 root bin -f none /opt/csw/share/vim/vim72/spell/yi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.latin1.spl 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.utf-8.sug 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.ascii.spl 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.utf-8.spl 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.ascii.sug 0644 root bin -f none /opt/csw/share/vim/vim72/spell/he.vim 0644 root bin -f none /opt/csw/share/vim/vim72/spell/cleanadd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/evim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/mswin.vim 0644 root bin -d none /opt/csw/share/vim/vim72/syntax 0755 root bin -f none /opt/csw/share/vim/vim72/syntax/debsources.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pinfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/flexwiki.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/postscr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cuda.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cynlib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rpcgen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/texmf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ecd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smil.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bzr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abaqus.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gkrellmrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/freebasic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/btm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitcommit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlforms.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/git.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lite.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aflex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/yacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pamconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pod.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/conaryrecipe.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/icemenu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/scilab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/simula.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xf86conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/passwd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/moo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dylan.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rcslog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aspvbs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/litestep.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/focexec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dictconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/art.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/2html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aspperl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/colortest.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mmix.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/zsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wvdial.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/b.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tssop.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modsim3.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sindacmp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/logtalk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cterm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/acedb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tads.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lifelines.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/procmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eiffel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/groovy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/takout.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mush.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ocaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pov.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pccts.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jgraph.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fgl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sgmldecl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plsql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/texinfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/help.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/uil.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fdcc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dsl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlinformix.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/elf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nroff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/maple.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vera.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/syntax.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xquery.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dcd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/atlas.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rexx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/autoit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/named.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/foxpro.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rnc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/antlr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rtf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hitest.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/csh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slpreg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pyrex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spice.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fortran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mmp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tsscl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asn.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/chordpro.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/css.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/purifylog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/exports.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cmake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/prescribe.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/icon.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/udevrules.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slpspi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/winbatch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/qf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sas.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/openroad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/context.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xslt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/clean.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sshconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snnsres.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fvwm2m4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/occam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rnoweb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/calendar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/manual.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/group.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wdiff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ratpoison.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/m4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pascal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/docbkxml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/groff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cvs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ora.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/def.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xpm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/clipper.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nastran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/a2ps.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mailaliases.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nanorc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/z8a.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/terminfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/scheme.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wget.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/samba.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/d.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/services.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sass.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slice.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/webmacro.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/chaskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/po.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mason.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lpc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/msmessages.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gpg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/web.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sather.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lout.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/progress.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/updatedb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/valgrind.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/debchangelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ppwiz.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/python.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hostconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vsejcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lss.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitsendemail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cfg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gtkrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/manconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ncf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/haste.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/inform.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hastepreproc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xpm2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/opl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sinda.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/matlab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cvsrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vhdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmlos.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pfmain.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/virata.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sendpr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lotos.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/skill.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xxd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bindzone.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/racc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/automake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snnspat.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cobol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tilde.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lynx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/haskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/javascript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ayacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ldapconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nqc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/indent.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xinetd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tidy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/master.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lftp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vmasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vrml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/desc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/arch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cheetah.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cynpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/esmtprc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/grub.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mysql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dylanintr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ahdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tssgm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/objcpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/alsaconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ipfilter.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ctrlh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/reva.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/framescript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/a65.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gedcom.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sindaout.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqloracle.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/udevperm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/verilogams.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/model.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dylanlid.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sgmllnx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sicad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sed.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xbl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/natural.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cdrtoc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slrnrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dircolors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tsalt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/initng.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dracula.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmlcheetah.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/edif.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/takcmp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wsml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jargon.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/strace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ld.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/changelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/robots.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nsis.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sudoers.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sisu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/uc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ampl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/denyhosts.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/elmfilt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dictdconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/promela.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/awk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lua.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/radiance.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eviews.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smith.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/chill.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/catalog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/svn.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/specman.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/make.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sysctl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lilo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/esterel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sshdconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/csc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitrebase.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kwt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/limits.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lsl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/yaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tcsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/verilog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/amiga.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmlm4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nosyntax.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/monk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spyce.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ibasic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/man.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lisp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fetchmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/viminfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gdb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snnsnet.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/docbksgml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cupl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/trasys.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/exim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mrxvtrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/forth.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sensors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/libao.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/apachestyle.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/registry.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/latte.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/loginaccess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/msidl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/remind.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gdmo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smarty.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cmusrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fvwm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pilrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xmath.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modula2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/masm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dot.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/diva.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mailcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/r.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/logindefs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pike.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/config.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tags.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/netrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rebol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/docbk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kix.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlj.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dosbatch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/prolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mma.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lscript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/autohotkey.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/quake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/screen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ptcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xkb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cweb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/doxygen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dtd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mgl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mupad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/java.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/basic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ppd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/maxima.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/whitespace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spup.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/syncolor.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tli.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/squid.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cdrdaoconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/synload.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlanywhere.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hamster.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hercules.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ldif.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/udevconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pine.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/inittab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dns.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/erlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snobol4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sgml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/esqlc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xdefaults.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eterm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/haml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lprolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/elinks.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rpl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cuplsim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fstab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/csp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slpconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/omnimark.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/javacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plaintex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/muttrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/voscm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/desktop.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lhaskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mgp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rcs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/grads.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/psf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/objc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asterisk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/coco.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/setserial.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/idlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/diff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dosini.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gnuplot.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/apache.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vgrindefs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xmodmap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rhelp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slrnsc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmldjango.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/crontab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/messages.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modula3.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/idl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xhtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/readline.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/phtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/privoxy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/st.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/baan.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/resolv.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/crm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ia64.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/blank.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sieve.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/iss.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/msql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dtrace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ave.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/netrw.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/papp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ist.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/django.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ishd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mplayerconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asmh8300.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/protocols.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/stp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/debcontrol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asm68k.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gretl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/change.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jproperties.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/povini.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asteriskvm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/stata.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kscript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/expect.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/initex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/splint.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/form.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/trustees.vim 0644 root bin -d none /opt/csw/share/vim/vim72/colors 0755 root bin -f none /opt/csw/share/vim/vim72/colors/slate.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/blue.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/darkblue.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/zellner.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/evening.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/peachpuff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/koehler.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/ron.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/shine.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/elflord.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/murphy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/pablo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/default.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/morning.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/torte.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/colors/desert.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/delek.vim 0644 root bin -d none /opt/csw/share/vim/vim72/keymap 0755 root bin -f none /opt/csw/share/vim/vim72/keymap/persian.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp_cp1255.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/esperanto_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian-latin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/arabic_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/sinhala-phonetic_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/esperanto.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/lithuanian-baltic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_iso-8859-7.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/czech_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/mongolian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_cp1251.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/ukrainian-jcuken.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/thaana-phonetic_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/canfr-win.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_cp737.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian-latin_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-jcuken.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/tamil_tscii.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-jcukenwin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/thaana.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/vietnamese-viqr_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/kana.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/bulgarian-bds.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_cp1253.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp_iso-8859-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/persian-iranian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/sinhala.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_iso-8859-5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew_iso-8859-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-dvorak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_cp852.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-yawerty.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/accents.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/magyar_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/ukrainian-dvorak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/czech.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/pinyin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/arabic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/bulgarian-phonetic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew_cp1255.vim 0644 root bin -d none /opt/csw/share/vim/vim72/autoload 0755 root bin -f none /opt/csw/share/vim/vim72/autoload/gnat.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/csscomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/javascriptcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/netrwSettings.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xmlcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/netrw.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/sqlcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/adacomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/phpcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/tar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/rubycomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/paste.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/zip.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/ccomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/netrwFileHandlers.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/vimball.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/pythoncomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/syntaxcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/htmlcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/gzip.vim 0644 root bin -d none /opt/csw/share/vim/vim72/autoload/xml 0755 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml10f.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml10s.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xsl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml10t.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html401f.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html401t.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html401s.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml11.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html32.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html40f.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html40s.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html40t.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/decada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/getscript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/spellfile.vim 0644 root bin -f none /opt/csw/share/vim/vim72/bugreport.vim 0644 root bin -d none /opt/csw/share/vim/vim72/plugin 0755 root bin -f none /opt/csw/share/vim/vim72/plugin/netrwPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/tarPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/rrhelper.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/gzip.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/zipPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/tohtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/vimballPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/getscriptPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/spellfile.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/matchparen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indoff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/filetype.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang 0755 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_br.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese(gb)_gb.936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko_kr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_finnish_finland.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_eo_eo.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.cp932.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/sk 0755 root bin -d none /opt/csw/share/vim/vim72/lang/sk/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/sk/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv_se.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_vi_vn.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_eo.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr_fr.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs_cz.iso_8859-2.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/it 0755 root bin -d none /opt/csw/share/vim/vim72/lang/it/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/it/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_br.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese(taiwan)_taiwan.950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese_gb.936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_pt.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.ujis.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ca 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ca/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ca/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_en_gb.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca_es.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_italian_italy.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_czech_czech_republic.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sl_si.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/pt_BR 0755 root bin -d none /opt/csw/share/vim/vim72/lang/pt_BR/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/pt_BR/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi_fi.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/eo 0755 root bin -d none /opt/csw/share/vim/vim72/lang/eo/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/eo/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de_de.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl_pl.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_uk_ua.koi8-u.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ko 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ko/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ko/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sl_si.latin2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.cp936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.ujis.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/sv 0755 root bin -d none /opt/csw/share/vim/vim72/lang/sv/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/sv/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es_es.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_slovak_slovak_republic.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/README.txt 0644 root bin -d none /opt/csw/share/vim/vim72/lang/fi 0755 root bin -d none /opt/csw/share/vim/vim72/lang/fi/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/fi/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.eucjp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk.cp1250.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/en_GB 0755 root bin -d none /opt/csw/share/vim/vim72/lang/en_GB/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/en_GB/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_pt.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko_kr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr_fr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af_af.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ru 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ru/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ru/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_polish_poland.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru_ru.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/uk 0755 root bin -d none /opt/csw/share/vim/vim72/lang/uk/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/uk/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru_ru.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ja 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ja/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ja/LC_MESSAGES/vim.mo 0644 root bin -d none /opt/csw/share/vim/vim72/lang/de 0755 root bin -d none /opt/csw/share/vim/vim72/lang/de/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/de/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl_pl.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu_hu.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/vi 0755 root bin -d none /opt/csw/share/vim/vim72/lang/vi/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/vi/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de_de.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.big5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_japanese_japan.932.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_spanish_spain.850.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_tw.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.euc-jp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca_es.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es_es.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.cp936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.ascii.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af_af.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/fr 0755 root bin -d none /opt/csw/share/vim/vim72/lang/fr/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/fr/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi_fi.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_czech_czech_republic.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_eo_xx.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_TW/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs_cz.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_en_gb.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it_it.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs_cz.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl_nl.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_tw.big5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl_pl.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_german_germany.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.euc-jp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.eucjp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_french_france.1252.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/cs 0755 root bin -d none /opt/csw/share/vim/vim72/lang/cs/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/cs/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sl_si.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_uk_ua.cp1251.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_CN/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_english_united_kingdom.ascii.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no_no.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/af 0755 root bin -d none /opt/csw/share/vim/vim72/lang/af/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/af/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl_nl.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.iso_8859-5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.cp950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko_kr.euckr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese_taiwan.950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_br.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_czech_czech_republic.ascii.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/es 0755 root bin -d none /opt/csw/share/vim/vim72/lang/es/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/es/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no_no.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/pl 0755 root bin -d none /opt/csw/share/vim/vim72/lang/pl/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/pl/LC_MESSAGES/vim.mo 0644 root bin -d none /opt/csw/share/vim/vim72/lang/no 0755 root bin -d none /opt/csw/share/vim/vim72/lang/no/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/no/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_english_united_kingdom.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs.cp1250.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW.UTF-8 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW.UTF-8/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_TW.UTF-8/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.gb2312.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.18030.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.gbk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_pt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu_hu.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ga 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ga/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ga/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it_it.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv_se.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru_ru.koi8-r.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN.UTF-8 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN.UTF-8/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_CN.UTF-8/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_tw.cp950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.cp932.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.gb2312.vim 0644 root bin -f none /opt/csw/share/vim/vim72/delmenu.vim 0644 root bin -d none /opt/csw/share/vim/vim72/doc 0755 root bin -f none /opt/csw/share/vim/vim72/doc/version5.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/todo.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/editing.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/quotes.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/autocmd.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/change.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/hebrew.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_03.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_os2.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/scroll.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_04.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/tagsrch.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/fold.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_31.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_msdos.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/rileft.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_beos.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_44.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_43.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/gui.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/message.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/vi_diff.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/tags 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_29.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_27.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/farsi.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_mac.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_pyth.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/ft_sql.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_spec.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_20.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/spell.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_12.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pattern.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/ft_ada.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_qnx.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/map.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_42.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/russian.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_45.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_30.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/various.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/starting.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_05.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_02.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/howto.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_amiga.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/intro.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_mint.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_getscript.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/version4.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/remote.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/help.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_mzsch.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_sniff.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_21.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_26.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/mlang.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_ruby.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/digraph.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_tar.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_ole.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_28.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_risc.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_gzip.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/quickref.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/sign.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_unix.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/vim2html.pl 0755 root bin -f none /opt/csw/share/vim/vim72/doc/tabpage.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_perl.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/gui_w16.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/netbeans.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/indent.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_10.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/print.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/index.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_25.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/tips.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/visual.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_tcl.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_22.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/workshop.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/recover.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/options.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/mbyte.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/cmdline.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_90.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_paren.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_41.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_netrw.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/diff.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/gui_w32.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_zip.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_01.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/windows.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_06.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/motion.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/filetype.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_08.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/version7.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_cscop.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/hangulin.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_vms.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_390.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/uganda.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_vimball.txt 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 Mon Jan 26 21:15:49 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 20:15:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[2910] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2910 http://gar.svn.sourceforge.net/gar/?rev=2910&view=rev Author: harpchad Date: 2009-01-26 20:15:49 +0000 (Mon, 26 Jan 2009) Log Message: ----------- Add rules to put files in correct packages Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 19:33:45 UTC (rev 2909) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 20:15:49 UTC (rev 2910) @@ -48,7 +48,8 @@ REQUIRED_PKGS_CSWvim = CSWggettext CSWiconv CSWncurses CSWvimrt INCOMPATIBLE_PKGS_CSWvim = CSWvim-minimal -PKGFILES_CSWvimrt = $(PKGFILES_DOC) +MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/vimtutor +PKGFILES_CSWvimrt = /opt/csw/share/.* # Test requires controlling terminal 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 Mon Jan 26 21:22:45 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 20:22:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[2911] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2911 http://gar.svn.sourceforge.net/gar/?rev=2911&view=rev Author: harpchad Date: 2009-01-26 20:22:45 +0000 (Mon, 26 Jan 2009) Log Message: ----------- fix vimtutor Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 20:15:49 UTC (rev 2910) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 20:22:45 UTC (rev 2911) @@ -57,8 +57,6 @@ # Test requires controlling terminal TEST_SCRIPTS = -MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/gvim-x11tutor - include gar/category.mk post-install-isa-sparcv8 post-install-isa-i386: @@ -75,6 +73,7 @@ $(DONADA) post-install-isa-sparcv9 post-install-isa-amd64: + mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11tutor $(DESTDIR)/opt/csw/bin/$(ISA)/gvimtutor mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/gvim mv $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim mv $(DESTDIR)/opt/csw/bin/$(ISA)/evim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/evim 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 26 21:23:21 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 20:23:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[2912] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2912 http://gar.svn.sourceforge.net/gar/?rev=2912&view=rev Author: harpchad Date: 2009-01-26 20:23:21 +0000 (Mon, 26 Jan 2009) Log Message: ----------- fix vimtutor Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 20:22:45 UTC (rev 2911) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 20:23:21 UTC (rev 2912) @@ -48,7 +48,6 @@ REQUIRED_PKGS_CSWvim = CSWggettext CSWiconv CSWncurses CSWvimrt INCOMPATIBLE_PKGS_CSWvim = CSWvim-minimal -MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/vimtutor PKGFILES_CSWvimrt = /opt/csw/share/.* # Test requires controlling terminal 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 27 10:16:43 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Jan 2009 09:16:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2913] csw/mgar/pkg/cpan/Net-DNS/trunk Message-ID: Revision: 2913 http://gar.svn.sourceforge.net/gar/?rev=2913&view=rev Author: bonivart Date: 2009-01-27 09:16:43 +0000 (Tue, 27 Jan 2009) Log Message: ----------- net-dns: update to 0.65 Modified Paths: -------------- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile csw/mgar/pkg/cpan/Net-DNS/trunk/checksums Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-26 20:23:21 UTC (rev 2912) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-27 09:16:43 UTC (rev 2913) @@ -1,5 +1,5 @@ GARNAME = Net-DNS -GARVERSION = 0.64 +GARVERSION = 0.65 CATEGORIES = cpan AUTHOR = OLAF Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/checksums 2009-01-26 20:23:21 UTC (rev 2912) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/checksums 2009-01-27 09:16:43 UTC (rev 2913) @@ -1,2 +1,2 @@ ec522b0bede886bfe23f1610d74954fe download/CSWpmnetdns.gspec -08aa3357707bf5d904d40f25ff4a34b6 download/Net-DNS-0.64.tar.gz +54e5a12a20de39b954a93723927ac789 download/Net-DNS-0.65.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 27 18:22:24 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Jan 2009 17:22:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2914] csw/mgar/pkg/dhcp/trunk Message-ID: Revision: 2914 http://gar.svn.sourceforge.net/gar/?rev=2914&view=rev Author: bonivart Date: 2009-01-27 17:22:24 +0000 (Tue, 27 Jan 2009) Log Message: ----------- dhcp: fixed doc and init script Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile csw/mgar/pkg/dhcp/trunk/checksums csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 17:22:24 UTC (rev 2914) @@ -34,7 +34,7 @@ PKGFILES_CSWdhcpdevel = $(PKGFILES_DEVEL) -ENABLE_CHECK = 0 +#ENABLE_CHECK = 0 INSTALL_SCRIPTS = custom Modified: csw/mgar/pkg/dhcp/trunk/checksums =================================================================== --- csw/mgar/pkg/dhcp/trunk/checksums 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/checksums 2009-01-27 17:22:24 UTC (rev 2914) @@ -1,4 +1,3 @@ 1fffed2e8c3d67b111316d6a9b33db7a download/dhcp-4.1.0.tar.gz 688cb75529efcf37de7526cd4111eea9 download/CSWdhcp.gspec -4c15df7a456274832321edd6c2c85ba4 download/CSWdhcp.preremove 5d8f4f34a43f235e28db4da8ecb1837d download/CSWdhcpdevel.gspec Modified: csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW =================================================================== --- csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW 2009-01-27 17:22:24 UTC (rev 2914) @@ -9,9 +9,10 @@ Installation ------------ 1. Modify the dhcpd.conf file in /etc/opt/csw. -2. Start DHCP with "/etc/init.d/cswdhcp start". +2. Start DHCP with "/etc/init.d/cswdhcpd start" or + with "svcadm enable cswdhcpd" if you use SMF. -More info here: http://www.isc.org/products/DHCP/. +More info here: http://www.isc.org/sw/dhcp/. -bonivart/071024 +bonivart/090127 Modified: csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd =================================================================== --- csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd 2009-01-27 17:22:24 UTC (rev 2914) @@ -1,18 +1,20 @@ #!/sbin/sh # rc-script for CSW DHCP -# Peter Bonivart, 2008-12-21 +# Peter Bonivart, 2009-01-27 PID=/var/opt/csw/dhcp/dhcpd.pid -#OPTIONS="-cf /opt/csw/etc/dhcpd.conf" # use old location of conf file +#CONF=/opt/csw/etc/dhcpd.conf # use old location of conf file +CONF=/etc/opt/csw/dhcpd.conf +OPTIONS="-pf /var/opt/csw/dhcp/dhcpd.pid" ZONE= # used for initialization, do not change case "$1" in 'start') - if [ -f /opt/csw/sbin/dhcpd -a -f /etc/opt/csw/dhcpd.conf ]; then + if [ -f /opt/csw/sbin/dhcpd -a -f $CONF ]; then echo 'Starting dhcp.' - /opt/csw/sbin/dhcpd $OPTIONS & + /opt/csw/sbin/dhcpd -cf $CONF $OPTIONS fi ;; 'stop') 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 27 19:19:26 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Jan 2009 18:19:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[2915] csw/mgar/pkg/dhcp/trunk/Makefile Message-ID: Revision: 2915 http://gar.svn.sourceforge.net/gar/?rev=2915&view=rev Author: bonivart Date: 2009-01-27 18:19:26 +0000 (Tue, 27 Jan 2009) Log Message: ----------- dhcp: fix file perm Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 17:22:24 UTC (rev 2914) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 18:19:26 UTC (rev 2915) @@ -51,6 +51,7 @@ gmake DESTDIR=$(DESTDIR) install ) @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @cp $(FILEDIR)/CSWdhcp.cswdhcpd $(DESTDIR)/etc/opt/csw/init.d/cswdhcpd + @chmod 755 $(DESTDIR)/etc/opt/csw/init.d/cswdhcpd @( cd $(DESTDIR)/etc/opt/csw ; \ mv dhcpd.conf dhcpd.conf.CSW ; \ mv dhclient.conf dhclient.conf.CSW ) 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 28 02:01:23 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 01:01:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[2916] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2916 http://gar.svn.sourceforge.net/gar/?rev=2916&view=rev Author: harpchad Date: 2009-01-28 01:01:22 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Adjust isaexec binaries Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-27 18:19:26 UTC (rev 2915) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 01:01:22 UTC (rev 2916) @@ -57,6 +57,33 @@ # Test requires controlling terminal TEST_SCRIPTS = +ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/gview +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rgvim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rgview +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvimdiff +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvimtutor +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/evim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/eview + +MERGE_EXCLUDE_FILES_isa-sparcv9 = /opt/csw/bin/sparcv9/gview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rgvim-x11 +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rgview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/eview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/evim-x11 +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/gvim-x11diff +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/gvim-x11 +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/gvim-x11tutor + +MERGE_EXCLUDE_FILES_isa-amd64 = /opt/csw/bin/amd64/gview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rgvim-x11 +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rgview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/eview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/evim-x11 +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/gvim-x11diff +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/gvim-x11 +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/gvim-x11tutor + include gar/category.mk post-install-isa-sparcv8 post-install-isa-i386: @@ -72,15 +99,6 @@ @$(MAKECOOKIE) $(DONADA) -post-install-isa-sparcv9 post-install-isa-amd64: - mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11tutor $(DESTDIR)/opt/csw/bin/$(ISA)/gvimtutor - mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/gvim - mv $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim - mv $(DESTDIR)/opt/csw/bin/$(ISA)/evim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/evim - mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11diff $(DESTDIR)/opt/csw/bin/$(ISA)/gvimdiff - @$(MAKECOOKIE) - $(DONADA) - # Don't install the runtime install-minimal: @$(INSTALL_ENV) $(MAKE) -C $(WORKSRC)/src \ 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 28 02:02:18 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 01:02:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[2917] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2917 http://gar.svn.sourceforge.net/gar/?rev=2917&view=rev Author: harpchad Date: 2009-01-28 01:02:18 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Adjust isaexec binaries Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 01:01:22 UTC (rev 2916) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 01:02:18 UTC (rev 2917) @@ -50,6 +50,27 @@ PKGFILES_CSWvimrt = /opt/csw/share/.* +ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/view +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rvim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rview +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/vimdiff +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/ex +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/vimtutor + +MERGE_EXCLUDE_FILES_isa-sparcv9 = /opt/csw/bin/sparcv9/view +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rvim +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/vimdiff +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/ex +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/vimtutor + +MERGE_EXCLUDE_FILES_isa-amd64 = /opt/csw/bin/amd64/view +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rvim +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimdiff +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/ex +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimtutor + # Test requires controlling terminal TEST_SCRIPTS = 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 28 11:30:53 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 28 Jan 2009 10:30:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[2918] csw/mgar/gar/v2 Message-ID: Revision: 2918 http://gar.svn.sourceforge.net/gar/?rev=2918&view=rev Author: dmichelsen Date: 2009-01-28 10:30:53 +0000 (Wed, 28 Jan 2009) Log Message: ----------- mGAR v2: Add ISAEXEC_EXCLUDE_FILES and remove unused code Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-01-28 01:02:18 UTC (rev 2917) +++ csw/mgar/gar/v2/gar.conf.mk 2009-01-28 10:30:53 UTC (rev 2918) @@ -611,7 +611,6 @@ @echo @echo " ISAEXEC dirs: $(ISAEXEC_DIRS)" @echo " ISAEXEC files: $(ISAEXEC_FILES)" - @echo " ISA relocated: $(ISA_RELOCATE_FILES)" @echo @echo " Merge include: $(_MERGE_INCLUDE_FILES)" @echo " Merge exclude: $(_MERGE_EXCLUDE_FILES)" Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-01-28 01:02:18 UTC (rev 2917) +++ csw/mgar/gar/v2/gar.mk 2009-01-28 10:30:53 UTC (rev 2918) @@ -489,11 +489,12 @@ endif # These directories get relocated into their ISA subdirectories -#ISA_RELOCATE_DIRS ?= $(ISA_RELOCATE_DIRS_$(ISA)) MERGE_DIRS ?= $(MERGE_DIRS_$(MODULATION)) # These files get relocated and will be replaced by the isaexec-wrapper -_ISAEXEC_FILES = $(wildcard $(foreach D,$(ISAEXEC_DIRS),$(PKGROOT)$(D)/* )) +_ISAEXEC_FILES = $(filter-out $(foreach F,$(ISAEXEC_EXCLUDE_FILES),$(PKGROOT)$(F)), \ + $(wildcard $(foreach D,$(ISAEXEC_DIRS),$(PKGROOT)$(D)/* )) \ + ) ISAEXEC_FILES ?= $(if $(_ISAEXEC_FILES),$(patsubst $(PKGROOT)%,%, \ $(shell for F in $(_ISAEXEC_FILES); do \ if test -f "$$F"; then echo $$F; fi; \ @@ -503,11 +504,6 @@ _EXTRA_GAR_PKGS += CSWisaexec endif -# These files get relocated. -# MERGE_DIRS is expanded to individual files here. All further -# processing is done using these files. -ISA_RELOCATE_FILES ?= $(patsubst $(PKGROOT)%,%,$(wildcard $(foreach D,$(MERGE_DIRS),$(PKGROOT)$(D)/*))) $(ISAEXEC_FILES) $(EXTRA_ISA_RELOCATE_FILES) - # These merge-rules are actually processed for the current modulation MERGE_TARGETS ?= $(addprefix merge-,$(MERGE_SCRIPTS_$(MODULATION))) $(EXTRA_MERGE_TARGETS) 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 28 15:15:44 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 28 Jan 2009 14:15:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2919] csw/mgar/pkg Message-ID: Revision: 2919 http://gar.svn.sourceforge.net/gar/?rev=2919&view=rev Author: bonivart Date: 2009-01-28 14:15:43 +0000 (Wed, 28 Jan 2009) Log Message: ----------- transmission: initial commit Added Paths: ----------- csw/mgar/pkg/transmission/ csw/mgar/pkg/transmission/branches/ csw/mgar/pkg/transmission/tags/ csw/mgar/pkg/transmission/trunk/ csw/mgar/pkg/transmission/trunk/Makefile csw/mgar/pkg/transmission/trunk/checksums csw/mgar/pkg/transmission/trunk/files/ csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec Property changes on: csw/mgar/pkg/transmission/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/transmission/trunk/Makefile =================================================================== --- csw/mgar/pkg/transmission/trunk/Makefile (rev 0) +++ csw/mgar/pkg/transmission/trunk/Makefile 2009-01-28 14:15:43 UTC (rev 2919) @@ -0,0 +1,21 @@ +GARNAME = transmission +GARVERSION = 1.42 +CATEGORIES = net + +DESCRIPTION = Fast, easy, and free multi-platform BitTorrent client +define BLURB +endef + +MASTER_SITES = http://mirrors.m0k.org/transmission/files/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWtransmission,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 + +GARCOMPILER = GNU + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk +PATH := /opt/csw/gnu:$(PATH) Added: csw/mgar/pkg/transmission/trunk/checksums =================================================================== --- csw/mgar/pkg/transmission/trunk/checksums (rev 0) +++ csw/mgar/pkg/transmission/trunk/checksums 2009-01-28 14:15:43 UTC (rev 2919) @@ -0,0 +1,2 @@ +c083bdcb01426466e80ee339bccd9351 download/transmission-1.42.tar.bz2 +0b6395df62da35201f8663ceea204f51 download/CSWtransmission.gspec Added: csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec =================================================================== --- csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec (rev 0) +++ csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec 2009-01-28 14:15:43 UTC (rev 2919) @@ -0,0 +1,4 @@ +%var bitname transmission +%var pkgname CSWtransmission +%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 harpchad at users.sourceforge.net Wed Jan 28 17:05:19 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:05:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2920] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2920 http://gar.svn.sourceforge.net/gar/?rev=2920&view=rev Author: harpchad Date: 2009-01-28 16:05:19 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 14:15:43 UTC (rev 2919) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 16:05:19 UTC (rev 2920) @@ -54,8 +54,8 @@ INSTALL_SCRIPTS = minimal -# Test requires controlling terminal -TEST_SCRIPTS = +# Note: Tests require controlling terminal +TEST_SCRIPTS = test ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/gview ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvim 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 28 17:07:31 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:07:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2921] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2921 http://gar.svn.sourceforge.net/gar/?rev=2921&view=rev Author: harpchad Date: 2009-01-28 16:07:30 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:05:19 UTC (rev 2920) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:07:30 UTC (rev 2921) @@ -71,8 +71,8 @@ MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/ex MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimtutor -# Test requires controlling terminal -TEST_SCRIPTS = +# Note: Tests require controlling terminal +TEST_SCRIPTS = test include gar/category.mk 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 28 17:30:09 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:30:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2922] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2922 http://gar.svn.sourceforge.net/gar/?rev=2922&view=rev Author: harpchad Date: 2009-01-28 16:30:08 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:07:30 UTC (rev 2921) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:30:08 UTC (rev 2922) @@ -72,7 +72,7 @@ MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimtutor # Note: Tests require controlling terminal -TEST_SCRIPTS = test +TEST_TARGET = test include gar/category.mk 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 28 17:31:00 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:31:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[2923] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2923 http://gar.svn.sourceforge.net/gar/?rev=2923&view=rev Author: harpchad Date: 2009-01-28 16:30:59 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 16:30:08 UTC (rev 2922) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 16:30:59 UTC (rev 2923) @@ -55,7 +55,7 @@ INSTALL_SCRIPTS = minimal # Note: Tests require controlling terminal -TEST_SCRIPTS = test +TEST_TARGET = test ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/gview ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvim 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 28 22:02:08 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 28 Jan 2009 21:02:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2924] csw/mgar/pkg Message-ID: Revision: 2924 http://gar.svn.sourceforge.net/gar/?rev=2924&view=rev Author: wbonnet Date: 2009-01-28 21:02:08 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Move beanutils to gar Added Paths: ----------- csw/mgar/pkg/beanutils/ csw/mgar/pkg/beanutils/branches/ csw/mgar/pkg/beanutils/tags/ csw/mgar/pkg/beanutils/trunk/ csw/mgar/pkg/beanutils/trunk/Makefile csw/mgar/pkg/beanutils/trunk/checksums csw/mgar/pkg/beanutils/trunk/files/ Property changes on: csw/mgar/pkg/beanutils/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/beanutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/beanutils/trunk/Makefile (rev 0) +++ csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-28 21:02:08 UTC (rev 2924) @@ -0,0 +1,56 @@ +SHORTNAME = beanutils +GARVERSION = 1.8.0 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons BeanUtils +define BLURB +Apache Jakarta Commons BeanUtils provides wrappers around the Java reflection and introspection +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION)-bin.tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajcbeanutils,) +DISTFILES += $(call admfiles,CSWajcbeanutilsdoc,) + +# Defines package description +SPKG_DESC_CSWajcbeanutils = $(DESCRIPTION) +SPKG_DESC_CSWajcbeanutilsdoc = $(DESCRIPTION) documentation package + +# Defines dependencies +REQUIRED_PKGS_CSWajcbeanutils = CSWajcdigester +REQUIRED_PKGS_CSWajcbeanutils += CSWajclogging + +# Defines package content +PKGFILES_CSWajcbeanutilsdoc = $(prefix)/share/doc/.* + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/$(DISTNAME)/commons-beanutils-1.8.0.jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.8.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME) + @( cd $(DESTDIR)$(datadir)/licences/$(GARNAME) ; \ + ln -s LICENSE.txt Apache_License_2.0.txt ) + @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs $(DESTDIR)$(datadir)/doc/$(GARNAME)/docs + @$(MAKECOOKIE) Added: csw/mgar/pkg/beanutils/trunk/checksums =================================================================== --- csw/mgar/pkg/beanutils/trunk/checksums (rev 0) +++ csw/mgar/pkg/beanutils/trunk/checksums 2009-01-28 21:02:08 UTC (rev 2924) @@ -0,0 +1,3 @@ +bffa9e8a9d2a09d4c3641b042e8954fc download/commons-beanutils-1.8.0-bin.tar.gz +deddb3b8699130e5ac02783f197797b8 download/CSWajcbeanutils.gspec +bba923244adbc3155615619a0a000583 download/CSWajcbeanutilsdoc.gspec 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 28 22:56:10 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 28 Jan 2009 21:56:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[2925] csw/mgar/gar/v2/categories Message-ID: Revision: 2925 http://gar.svn.sourceforge.net/gar/?rev=2925&view=rev Author: wbonnet Date: 2009-01-28 21:56:10 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Add java category Added Paths: ----------- csw/mgar/gar/v2/categories/java/ csw/mgar/gar/v2/categories/java/category.mk Added: csw/mgar/gar/v2/categories/java/category.mk =================================================================== --- csw/mgar/gar/v2/categories/java/category.mk (rev 0) +++ csw/mgar/gar/v2/categories/java/category.mk 2009-01-28 21:56:10 UTC (rev 2925) @@ -0,0 +1,8 @@ +# http://jakarta.apache.org/commons + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX ?= commons-$(GARNAME)-(\d+(?:\.\d+)*)-bin.tar.gz +USTREAM_MASTER_SITE ?= $(SPKG_SOURCEURL) + +# Includes the rest of gar +include gar/gar.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 28 23:00:30 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:00:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[2926] csw/mgar/pkg/beanutils/trunk/files Message-ID: Revision: 2926 http://gar.svn.sourceforge.net/gar/?rev=2926&view=rev Author: wbonnet Date: 2009-01-28 22:00:30 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Add gspec files Added Paths: ----------- csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec Added: csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec =================================================================== --- csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec (rev 0) +++ csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec 2009-01-28 22:00:30 UTC (rev 2926) @@ -0,0 +1,5 @@ +%var bitname commons_beanutils +%var pkgname CSWajcbeanutils +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt Added: csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec =================================================================== --- csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec (rev 0) +++ csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec 2009-01-28 22:00:30 UTC (rev 2926) @@ -0,0 +1,5 @@ +%var bitname commons_beanutl_doc +%var pkgname CSWajcbeanutilsdoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt 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 28 23:05:44 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:05:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2927] csw/mgar/pkg/vim/trunk Message-ID: Revision: 2927 http://gar.svn.sourceforge.net/gar/?rev=2927&view=rev Author: harpchad Date: 2009-01-28 22:05:43 +0000 (Wed, 28 Jan 2009) Log Message: ----------- - update to patch level 93 - add 64bit alignment fix (should be official patch soon) Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile csw/mgar/pkg/vim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 22:00:30 UTC (rev 2926) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 22:05:43 UTC (rev 2927) @@ -1,6 +1,6 @@ GARNAME = vim DISTVERSION = 7.2 -PATCHREV = 088 +PATCHREV = 093 GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php @@ -17,7 +17,7 @@ MASTER_SITES += ftp://ftp.vim.org/pub/vim/extra/ MASTER_SITES += ftp://ftp.vim.org/pub/vim/unix/ -DISTFILES += $(call admfiles,CSWvim,) +DISTFILES = $(call admfiles,CSWvim,) DISTFILES += $(call admfiles,CSWvimrt,) DISTFILES += $(GARNAME)-$(DISTVERSION).tar.bz2 DISTFILES += $(GARNAME)-$(DISTVERSION)-lang.tar.gz @@ -25,6 +25,7 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) PATCHFILES += vimtutor.patch +PATCHFILES += fix-alignment64-spell.c.diff WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2009-01-28 22:00:30 UTC (rev 2926) +++ csw/mgar/pkg/vim/trunk/checksums 2009-01-28 22:05:43 UTC (rev 2927) @@ -86,6 +86,12 @@ 5af26f073ebeba60af90525d68a61725 download/7.2.086 639d7a80864afe68132725e377f52f19 download/7.2.087 44b152484534fa23c4ff531316a0e518 download/7.2.088 +990e6a23c4061df0dcc0ab84528a2e1a download/7.2.089 +8985dcfe7df6b439e88554e22cf34919 download/7.2.090 +137faec139470453ca446c015c226e47 download/7.2.091 +e15782bf5892ad787d149491bfe013e7 download/7.2.092 +2198caf9e5f422eacde337e9c27677ab download/7.2.093 +6619235ca793edf41831be1b1f9f63db download/fix-alignment64-spell.c.diff 59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz Added: csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff =================================================================== --- csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff (rev 0) +++ csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff 2009-01-28 22:05:43 UTC (rev 2927) @@ -0,0 +1,74 @@ +Index: spell.c +=================================================================== +RCS file: /cvsroot/vim/vim7/src/spell.c,v +retrieving revision 1.121 +diff -c -r1.121 spell.c +*** src/spell.c 9 Dec 2008 21:34:19 -0000 1.121 +--- src/spell.c 28 Jan 2009 20:32:04 -0000 +*************** +*** 2335,2348 **** + if (curline) + break; /* only check cursor line */ + + /* Advance to next line. */ + if (dir == BACKWARD) + { +- /* If we are back at the starting line and searched it again there +- * is no match, give up. */ +- if (lnum == wp->w_cursor.lnum && wrapped) +- break; +- + if (lnum > 1) + --lnum; + else if (!p_ws) +--- 2335,2348 ---- + if (curline) + break; /* only check cursor line */ + ++ /* If we are back at the starting line and searched it again there ++ * is no match, give up. */ ++ if (lnum == wp->w_cursor.lnum && wrapped) ++ break; ++ + /* Advance to next line. */ + if (dir == BACKWARD) + { + if (lnum > 1) + --lnum; + else if (!p_ws) +*************** +*** 4961,4968 **** + typedef struct sblock_S sblock_T; + struct sblock_S + { +- sblock_T *sb_next; /* next block in list */ + int sb_used; /* nr of bytes already in use */ + char_u sb_data[1]; /* data, actually longer */ + }; + +--- 4961,4968 ---- + typedef struct sblock_S sblock_T; + struct sblock_S + { + int sb_used; /* nr of bytes already in use */ ++ sblock_T *sb_next; /* next block in list */ + char_u sb_data[1]; /* data, actually longer */ + }; + +*************** +*** 15011,15017 **** + + case 0: + /* +! * Lenghts are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ +--- 15011,15017 ---- + + case 0: + /* +! * Lengths are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ 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 28 23:11:23 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:11:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[2928] csw/mgar/pkg/gvim/trunk Message-ID: Revision: 2928 http://gar.svn.sourceforge.net/gar/?rev=2928&view=rev Author: harpchad Date: 2009-01-28 22:11:23 +0000 (Wed, 28 Jan 2009) Log Message: ----------- - update to patch level 93 - add 64bit alignment patch Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile csw/mgar/pkg/gvim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 22:05:43 UTC (rev 2927) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 22:11:23 UTC (rev 2928) @@ -1,6 +1,6 @@ GARNAME = vim DISTVERSION = 7.2 -PATCHREV = 088 +PATCHREV = 093 GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php @@ -27,6 +27,7 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) PATCHFILES += vimtutor.patch +PATCHFILES += fix-alignment64-spell.c.diff WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:05:43 UTC (rev 2927) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:11:23 UTC (rev 2928) @@ -86,9 +86,15 @@ 5af26f073ebeba60af90525d68a61725 download/7.2.086 639d7a80864afe68132725e377f52f19 download/7.2.087 44b152484534fa23c4ff531316a0e518 download/7.2.088 +990e6a23c4061df0dcc0ab84528a2e1a download/7.2.089 +8985dcfe7df6b439e88554e22cf34919 download/7.2.090 +137faec139470453ca446c015c226e47 download/7.2.091 +e15782bf5892ad787d149491bfe013e7 download/7.2.092 +2198caf9e5f422eacde337e9c27677ab download/7.2.093 +6619235ca793edf41831be1b1f9f63db download/fix-alignment64-spell.c.diff +59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec +c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.patch -3d2b62d6810417d562ed17aaada29868 download/CSWgvim.gspec -47396843634a6e3c05d4f5d6b4bf8a72 download/gvim.desktop Added: csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff =================================================================== --- csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff (rev 0) +++ csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff 2009-01-28 22:11:23 UTC (rev 2928) @@ -0,0 +1,74 @@ +Index: spell.c +=================================================================== +RCS file: /cvsroot/vim/vim7/src/spell.c,v +retrieving revision 1.121 +diff -c -r1.121 spell.c +*** src/spell.c 9 Dec 2008 21:34:19 -0000 1.121 +--- src/spell.c 28 Jan 2009 20:32:04 -0000 +*************** +*** 2335,2348 **** + if (curline) + break; /* only check cursor line */ + + /* Advance to next line. */ + if (dir == BACKWARD) + { +- /* If we are back at the starting line and searched it again there +- * is no match, give up. */ +- if (lnum == wp->w_cursor.lnum && wrapped) +- break; +- + if (lnum > 1) + --lnum; + else if (!p_ws) +--- 2335,2348 ---- + if (curline) + break; /* only check cursor line */ + ++ /* If we are back at the starting line and searched it again there ++ * is no match, give up. */ ++ if (lnum == wp->w_cursor.lnum && wrapped) ++ break; ++ + /* Advance to next line. */ + if (dir == BACKWARD) + { + if (lnum > 1) + --lnum; + else if (!p_ws) +*************** +*** 4961,4968 **** + typedef struct sblock_S sblock_T; + struct sblock_S + { +- sblock_T *sb_next; /* next block in list */ + int sb_used; /* nr of bytes already in use */ + char_u sb_data[1]; /* data, actually longer */ + }; + +--- 4961,4968 ---- + typedef struct sblock_S sblock_T; + struct sblock_S + { + int sb_used; /* nr of bytes already in use */ ++ sblock_T *sb_next; /* next block in list */ + char_u sb_data[1]; /* data, actually longer */ + }; + +*************** +*** 15011,15017 **** + + case 0: + /* +! * Lenghts are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ +--- 15011,15017 ---- + + case 0: + /* +! * Lengths are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ 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 28 23:30:06 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:30:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2929] csw/mgar/pkg/gvim/trunk/checksums Message-ID: Revision: 2929 http://gar.svn.sourceforge.net/gar/?rev=2929&view=rev Author: harpchad Date: 2009-01-28 22:30:06 +0000 (Wed, 28 Jan 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/checksums Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:11:23 UTC (rev 2928) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:30:06 UTC (rev 2929) @@ -92,8 +92,8 @@ e15782bf5892ad787d149491bfe013e7 download/7.2.092 2198caf9e5f422eacde337e9c27677ab download/7.2.093 6619235ca793edf41831be1b1f9f63db download/fix-alignment64-spell.c.diff -59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec -c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec +3d2b62d6810417d562ed17aaada29868 download/CSWgvim.gspec +47396843634a6e3c05d4f5d6b4bf8a72 download/gvim.desktop 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 wbonnet at users.sourceforge.net Thu Jan 29 01:20:37 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 29 Jan 2009 00:20:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2930] csw/mgar/pkg Message-ID: Revision: 2930 http://gar.svn.sourceforge.net/gar/?rev=2930&view=rev Author: wbonnet Date: 2009-01-29 00:20:37 +0000 (Thu, 29 Jan 2009) Log Message: ----------- Creation of JXplorer package Added Paths: ----------- csw/mgar/pkg/jxplorer/ csw/mgar/pkg/jxplorer/Makefile csw/mgar/pkg/jxplorer/branches/ csw/mgar/pkg/jxplorer/tags/ csw/mgar/pkg/jxplorer/trunk/ csw/mgar/pkg/jxplorer/trunk/Makefile csw/mgar/pkg/jxplorer/trunk/checksums csw/mgar/pkg/jxplorer/trunk/files/ csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff Added: csw/mgar/pkg/jxplorer/Makefile =================================================================== --- csw/mgar/pkg/jxplorer/Makefile (rev 0) +++ csw/mgar/pkg/jxplorer/Makefile 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/jxplorer/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/jxplorer/trunk/Makefile =================================================================== --- csw/mgar/pkg/jxplorer/trunk/Makefile (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/Makefile 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,51 @@ +GARNAME = jxplorer +GARVERSION = 3.2 +CATEGORIES = java + +DESCRIPTION = JXplorer - A Java Ldap Browser +define BLURB +JXplorer is an open source ldap browser originally developed by Computer Associates' eTrust Directory development lab. It is a standards compliant general purpose ldap browser that can be used to read and search any ldap directory, or any X500 directory with an ldap interface. It is available under a standard OSI-style open source licence. +endef + +MASTER_SITES += $(SF_MIRRORS) + +# DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = JXv$(GARVERSION)deploy.tar.bz2 +DISTFILES += $(call admfiles, CSWjxplorer) +DISTFILES += jxconfig.txt.template +DISTFILES += gssapi.conf.template + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=55394 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PATCHFILES = jxplorer.sh.diff + +include gar/category.mk + +post-extract: + ( mv $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME) $(WORKSRC_FIRSTMOD) ) + @$(MAKECOOKIE) + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/$(GARNAME) + @ginstall -d $(DESTDIR)$(prefix)/etc/$(GARNAME) + @gcp -fpr $(WORKSRC)/* $(DESTDIR)$(datadir)/$(GARNAME) + @cp $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/gssapi.conf.template $(DESTDIR)$(prefix)/etc/$(GARNAME) + @cp $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/jxconfig.txt.template $(DESTDIR)$(prefix)/etc/$(GARNAME) + @rm $(DESTDIR)$(datadir)/$(GARNAME)/build.xml + @rm $(DESTDIR)$(datadir)/$(GARNAME)/jxmac.sh + @rm $(DESTDIR)$(datadir)/$(GARNAME)/jxplorer.bat + @rm $(DESTDIR)$(datadir)/$(GARNAME)/jxplorer.ico + @chmod +x $(DESTDIR)$(datadir)/$(GARNAME)/jxplorer.sh + @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) + @gcp -fp $(WORKSRC)/licence.txt $(DESTDIR)$(datadir)/licences/$(GARNAME) + @( cd $(DESTDIR)$(datadir)/licences/$(GARNAME) ; \ + ln -s ../../jxplorer/licence.txt CA_Open_Source_Licence_Version_1.0.txt ) + @$(MAKECOOKIE) Added: csw/mgar/pkg/jxplorer/trunk/checksums =================================================================== --- csw/mgar/pkg/jxplorer/trunk/checksums (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/checksums 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,5 @@ +5cd9766391995736164b17a30354d72e download/JXv3.2deploy.tar.bz2 +b585c7ce45e6d5d96f4b157ff11a4097 download/CSWjxplorer.gspec +0622fcb316ce5507d3338d7a81a50f5c download/jxconfig.txt.template +c60592606719e3504ffa12121d6cf250 download/gssapi.conf.template +a8e65c343f68c69a21223213b64f48b3 download/jxplorer.sh.diff Added: csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,5 @@ +%var bitname jxplorer +%var pkgname CSWjxplorer +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/licence.txt Added: csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,4 @@ +com.ca.commons.jndi.JNDIOps { + com.sun.security.auth.module.Krb5LoginModule required client=TRUE + useTicketCache=TRUE; +}; \ No newline at end of file Added: csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,132 @@ +#Generated Property List /opt/csw/share/jxplorer/jxconfig.txt +# The property file location defaults to where JXplorer is installed +# - this can be over-ridden with the system property 'jxplorer.config' +# with a config directory location, or set to user home using the +# flag 'user.home' (e.g. -Djxplorer.config='user.home' on the command line). + +#Thu Jan 29 00:27:34 CET 2009 + +#.level (java loggin variable) - allowable values are 'OFF', 'SEVERE', 'WARNING', 'INFO', 'FINE', 'FINER', 'FINEST' and 'ALL' +.level=WARNING + +#baseAdminDN default value for a specific 3rd party plug in; rarely used +baseAdminDN=cn\=Management System + +#baseDN the default base DN for an empty connection - rarely used +baseDN=c\=au + +#com.ca.level \ (java loggin variable) partial logging is also available. Be warned that the Sun logging system is a very buggy partial reimplementation of log4j, and doesn't seem to do inheritance well. +com.ca.level=UNUSED + +#dir this sets the directories that JXplorer reads its resources from. +dir.help=/opt/csw/share/jxplorer/help/ +dir.htmldocs=/opt/csw/share/jxplorer/htmldocs/ +dir.icons=/opt/csw/share/jxplorer/icons/ +dir.images=/opt/csw/share/jxplorer/images/ +dir.local=/opt/csw/share/jxplorer/ +dir.plugins=/opt/csw/share/jxplorer/plugins/ +dir.templates=/opt/csw/share/jxplorer/templates/ + +#getSystemEnvironment Set this to true if you wish to add the system environment properties to the JX list (e.g. if you are setting JX properties via system variables) +getSystemEnvironment=false + +#gui.lookandfeel Can set to com.sun.java.swing.plaf.mac.MacLookAndFeel for OSX +gui.lookandfeel=com.sun.java.swing.plaf.motif.MotifLookAndFeel + +#handlers (java logging variable) This sets the log level for console reporting +handlers=java.util.logging.ConsoleHandler + +#height set by client GUI - don't change +height=600 + +#java.util.logging.ConsoleHandler.formatter (java logging variable) This sets the built in formatter to use for console reporting +java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter + +#java.util.logging.ConsoleHandler.level (java logging variable) This sets the log level for console reporting +java.util.logging.ConsoleHandler.level=ALL + +#java.util.logging.FileHandler.formatter (java loggin variable) This sets the built in formatter to use for file reporting +java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter + +#java.util.logging.FileHandler.level (java loggin variable) This sets the log level for log file reporting +java.util.logging.FileHandler.level=ALL + +#java.util.logging.FileHandler.pattern (java loggin variable) The name of the log file (see java.util.logging.FileHandler java doc) +java.util.logging.FileHandler.pattern=JX%u.log + +#jxplorer.cache.passwords whether JX should keep a (run time only) cache of passwords for reuse and reconnection +jxplorer.cache.passwords=true +keystoreType.cacerts=JKS +keystoreType.clientcerts=JKS +last.search.filter=default + +#ldap.sslsocketfactory This is the built in ssl factory - it can be changed if required. +ldap.sslsocketfactory=com.ca.commons.jndi.JndiSocketFactory + +#ldapversion set by client GUI - don't change +ldapversion=3 + +#null.entry.editor the editor displayed for null entries is pluggable and can be set to a custom java class +null.entry.editor=defaulteditor + +#option.confirmTableEditorUpdates whether the user is prompted before updates; usually set by GUI +option.confirmTableEditorUpdates=false + +#option.drag.and.drop set to 'false' to disable drag and drop in the left hand tree view +option.drag.and.drop=true + +#option.ignoreSchemaOnSubmission Skip client side schema checks; useful if JXplorer is getting confused or the schema is inconsistent +option.ignoreSchemaOnSubmission=false + +#option.ldap.browseAliasBehaviour jndi variable setting how aliases are handled while browsing\: 'always','never','finding','searching' +option.ldap.browseAliasBehaviour=finding + +#option.ldap.limit The maximum number of entries to return - '0' \= 'all the server allows' +option.ldap.limit=0 + +#option.ldap.referral this is a jdni variable determinning how referrals are handled\: 'ignore','follow' or 'throw' +option.ldap.referral=ignore + +#option.ldap.searchAliasBehaviour jndi variable setting how aliases are handled while searching\: 'always','never','finding','searching' +option.ldap.searchAliasBehaviour=searching + +#option.ldap.sendVerboseBinarySuffix some directories require ';binary' to be explicitly appended to binary attribute names\: 'true' or 'false' +option.ldap.sendVerboseBinarySuffix=false + +#option.ldap.timeout the maximum time to allow a query to run before cancelling - '0' \= 'as long as the server allows' +option.ldap.timeout=0 +option.ssl.cacerts=/opt/csw/share/jxplorer/security/cacerts +option.ssl.clientcerts=/opt/csw/share/jxplorer/security/clientcerts +option.ssl.import.cert.during.connection=true + +#option.url.handling override URL handling to launch JXplorer rather than default browser +option.url.handling=JXplorer + +#plugins.ignoreUniqueness whether to allow multiple plugins for the same object class\: 'true' or 'false +plugins.ignoreUniqueness=false + +#securityProvider the security provider can be changed, and three more can be added by creating 'securityProperty0', 'securityProperty1' and 'securityProperty2'. +securityProvider=com.sun.net.ssl.internal.ssl.Provider + +#sort.by.naming.attribute if true, this sorts entries in the tree editor by naming attribute first, then by attribute value +sort.by.naming.attribute=false + +#url.defaultadmin default value for a specific 3rd party plug in; rarely used +url.defaultadmin=localhost + +#url.defaultadminport default value for a specific 3rd party plug in; rarely used +url.defaultadminport=3389 + +#url.defaultdirectory default for empty connection screen GUI - rarely used +url.defaultdirectory=localhost + +#url.defaultdirectory.port default for empty connection screen GUI - rarely used +url.defaultdirectory.port=389 + +#width set by client GUI - don't change +width=800 + +#xml.ldif.rfc Experimental support for saving XML in LDIF files in editable form (e.g. not base64 encoded) +xml.ldif.rfc=false +xpos=400 +ypos=300 Added: csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,41 @@ +diff --speed-large-files --minimal -Nru jxplorer-3.2.orig/jxplorer.sh jxplorer-3.2/jxplorer.sh +--- jxplorer-3.2.orig/jxplorer.sh 2007-02-26 11:08:34.000000000 +0100 ++++ jxplorer-3.2/jxplorer.sh 2009-01-29 00:45:02.526025469 +0100 +@@ -1,6 +1,20 @@ + #!/bin/sh + # OpenDirectory jxstart.sh $Revision: 1.13 $ $Date: 2006/04/18 04:12:12 $ + ++if [ ! -d $HOME/.jxplorer ]; then ++ mkdir $HOME/.jxplorer ++fi ++ ++if [ ! -f $HOME/.jxplorer/gssapi.conf ]; then ++ cp /opt/csw/etc/jxplorer/gssapi.conf.template $HOME/.jxplorer/gssapi.conf ++fi ++ ++if [ ! -f $HOME/.jxplorer/jxconfig.txt ]; then ++ cp /opt/csw/etc/jxplorer/jxconfig.txt.template $HOME/.jxplorer/jxconfig.txt ++fi ++ ++ ++ + if [ -x $JAVA_HOME/bin/java ]; then + JAVA_LOC=$JAVA_HOME/bin/java + elif [ -x /opt/jre/bin/java ]; then +@@ -38,14 +52,14 @@ + echo + FAIL=0 + if [ "$1" = "console" ] ; then +- $JAVAV -cp .:jars/jxplorer.jar:jars/help.jar:jars/jhall.jar:jars/junit.jar:jars/ldapsec.jar:jars/log4j.jar:jars/dsml/activation.jar:jars/dsml/commons-logging.jar:jars/dsml/dom4j.jar:jars/dsml/jxext.jar:jars/dsml/mail.jar:jars/dsml/providerutil.jar:jars/dsml/saaj-api.jar:jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer ++ $JAVAV -cp /opt/csw/share/jxplorer/:/opt/csw/share/jxplorer/jars/jxplorer.jar:/opt/csw/share/jxplorer/jars/help.jar:/opt/csw/share/jxplorer/jars/jhall.jar:/opt/csw/share/jxplorer/jars/junit.jar:/opt/csw/share/jxplorer/jars/ldapsec.jar:/opt/csw/share/jxplorer/jars/log4j.jar:/opt/csw/share/jxplorer/jars/dsml/activation.jar:/opt/csw/share/jxplorer/jars/dsml/commons-logging.jar:/opt/csw/share/jxplorer/jars/dsml/dom4j.jar:/opt/csw/share/jxplorer/jars/dsml/jxext.jar:/opt/csw/share/jxplorer/jars/dsml/mail.jar:/opt/csw/share/jxplorer/jars/dsml/providerutil.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-api.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer + + if [ "$?" != "0" ]; then + FAIL=1 + fi + else + echo "Use \"jxstart.sh console\" if you want logging to the console" +- $JAVAV -cp .:jars/jxplorer.jar:jars/help.jar:jars/jhall.jar:jars/junit.jar:jars/ldapsec.jar:jars/log4j.jar:jars/dsml/activation.jar:jars/dsml/commons-logging.jar:jars/dsml/dom4j.jar:jars/dsml/jxext.jar:jars/dsml/mail.jar:jars/dsml/providerutil.jar:jars/dsml/saaj-api.jar:jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer >/dev/null 2>&1 ++ $JAVAV -cp /opt/csw/share/jxplorer/:/opt/csw/share/jxplorer/jars/jxplorer.jar:/opt/csw/share/jxplorer/jars/help.jar:/opt/csw/share/jxplorer/jars/jhall.jar:/opt/csw/share/jxplorer/jars/junit.jar:/opt/csw/share/jxplorer/jars/ldapsec.jar:/opt/csw/share/jxplorer/jars/log4j.jar:/opt/csw/share/jxplorer/jars/dsml/activation.jar:/opt/csw/share/jxplorer/jars/dsml/commons-logging.jar:/opt/csw/share/jxplorer/jars/dsml/dom4j.jar:/opt/csw/share/jxplorer/jars/dsml/jxext.jar:/opt/csw/share/jxplorer/jars/dsml/mail.jar:/opt/csw/share/jxplorer/jars/dsml/providerutil.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-api.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer >/dev/null 2>&1 + + if [ "$?" != "0" ]; then + FAIL=1 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 29 17:14:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 29 Jan 2009 16:14:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2931] csw/mgar/pkg/mbuffer/trunk/Makefile Message-ID: Revision: 2931 http://gar.svn.sourceforge.net/gar/?rev=2931&view=rev Author: skayser Date: 2009-01-29 16:14:06 +0000 (Thu, 29 Jan 2009) Log Message: ----------- mbuffer: re-activated BUILD64=1 with NO_ISAEXEC=1 Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-29 00:20:37 UTC (rev 2930) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-29 16:14:06 UTC (rev 2931) @@ -30,19 +30,16 @@ # value of MASTER_SITES # UPSTREAM_MASTER_SITES = -# There had been a reason once to build the 64-bit version (all the way down) -# http://opensolaris.org/jive/thread.jspa?messageID=293647&tstart=0 -# # To build the mixed package for x86 you have to do the following # 1) build8x: gmake build-isa-i386 # 2) build10x: gmake merge # 3) build8x: gmake package -# -# As this is a bit of a hassle and mbuffer has frequent release cycles i -# prefer to leave it out until someone actually needs it. -# -# BUILD64 = 1 +BUILD64 = 1 + +# 64-bit isn't thorougly tested by upstream, default to 32-bit, but still +# deliver 64-bit in case someone might want to play around with 2GB+ buffers # ISAEXEC_BINS = $(bindir)/mbuffer +NO_ISAEXEC = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 29 21:20:24 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 29 Jan 2009 20:20:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2932] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2932 http://gar.svn.sourceforge.net/gar/?rev=2932&view=rev Author: harpchad Date: 2009-01-29 20:20:24 +0000 (Thu, 29 Jan 2009) Log Message: ----------- Remove 64 bit support, need 64bit gtk first Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-29 16:14:06 UTC (rev 2931) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-29 20:20:24 UTC (rev 2932) @@ -27,7 +27,6 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) PATCHFILES += vimtutor.patch -PATCHFILES += fix-alignment64-spell.c.diff WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) @@ -42,7 +41,8 @@ BUILD_ARGS += "VIMRCLOC=/opt/csw/etc/vim" BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim72" -BUILD64 = 1 +#GTK2 needs 64-bit +#BUILD64 = 1 PATCHDIRLEVEL = 0 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 30 01:44:24 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 30 Jan 2009 00:44:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2933] csw/mgar/pkg Message-ID: Revision: 2933 http://gar.svn.sourceforge.net/gar/?rev=2933&view=rev Author: skayser Date: 2009-01-30 00:44:24 +0000 (Fri, 30 Jan 2009) Log Message: ----------- dovecot: Initial commit Added Paths: ----------- csw/mgar/pkg/dovecot/ csw/mgar/pkg/dovecot/branches/ csw/mgar/pkg/dovecot/tags/ csw/mgar/pkg/dovecot/trunk/ csw/mgar/pkg/dovecot/trunk/Makefile csw/mgar/pkg/dovecot/trunk/checksums csw/mgar/pkg/dovecot/trunk/files/ csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff Property changes on: csw/mgar/pkg/dovecot/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/dovecot/trunk/Makefile =================================================================== --- csw/mgar/pkg/dovecot/trunk/Makefile (rev 0) +++ csw/mgar/pkg/dovecot/trunk/Makefile 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,44 @@ +GARNAME = dovecot +GARVERSION = 1.1.8 +CATEGORIES = server + +DESCRIPTION = Secure IMAP server +define BLURB + Dovecot is an open source IMAP and POP3 server for Linux/UNIX-like systems, + written with security primarily in mind. Dovecot is an excellent choice for + both small and large installations. It's fast, simple to set up, requires no + special administration and it uses very little memory. +endef + +MASTER_SITES = http://dovecot.org/releases/1.1/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWdovecot,) + +REQUIRED_PKGS = CSWosslrt CSWmysql5rt + +PREREQUISITE_PKGS = CSWmysql5devel CSWmysql5rt +PREREQUISITE_PKGS += CSWoldaprt CSWoldapdevel + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# See http://www.mail-archive.com/dovecot at dovecot.org/msg15562.html +PATCHFILES = patch-unsetenv.diff + +# TODO +# * Consider LDAP issues: http://opencsw.org/bugtrack/view.php?id=2760 +# * --enable-header-install & split packages (dovecot, dovecotdevel) +# * Build and package Dovecot Sieve plugin http://wiki.dovecot.org/LDA/Sieve +# * ... + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-ldap +CONFIGURE_ARGS += --with-mysql +CONFIGURE_ARGS += --with-sqlite +CONFIGURE_ARGS += --with-ssl=openssl +CONFIGURE_ARGS += --with-ssldir=$(DESTDIR)/ssl + +EXTRA_LIB = /opt/csw/mysql5/lib/mysql +EXTRA_INC = /opt/csw/mysql5/include/mysql + +include gar/category.mk Added: csw/mgar/pkg/dovecot/trunk/checksums =================================================================== --- csw/mgar/pkg/dovecot/trunk/checksums (rev 0) +++ csw/mgar/pkg/dovecot/trunk/checksums 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,3 @@ +bc23a919c7ad2b3c5ba69e19f1b46eb2 download/dovecot-1.1.8.tar.gz +d707692194795943a4ff18581f61d04d download/CSWdovecot.gspec +827bae06acbae39e9c89707d7b198b4e download/patch-unsetenv.diff Added: csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec =================================================================== --- csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec (rev 0) +++ csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,4 @@ +%var bitname dovecot +%var pkgname CSWdovecot +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff =================================================================== --- csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff (rev 0) +++ csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,46 @@ +# HG changeset patch +# User Timo Sirainen +# Date 1231433510 18000 +# Node ID fec8412dc1c5487d10974c18104f9ec9cbd009f1 +# Parent 30207243a4f4c3e076bea43d1e92de8e7179c72a +env_remove(): Implement a fallback method if unsetenv() doesn't exist. +Fixes compiling at least with Solaris 8. + +--- a/configure.in Thu Jan 08 11:41:30 2009 -0500 ++++ b/configure.in Thu Jan 08 11:51:50 2009 -0500 +@@ -459,7 +459,7 @@ AC_CHECK_FUNCS(fcntl flock lockf inet_at + setrlimit setproctitle seteuid setreuid setegid setresgid \ + strtoull strtoll strtouq strtoq \ + setpriority quotactl getmntent kqueue kevent backtrace_symbols \ +- walkcontext dirfd clearenv malloc_usable_size) ++ walkcontext dirfd clearenv malloc_usable_size unsetenv) + + dnl strtoimax and strtoumax are macros in HP-UX, so inttypes.h must be included + AC_MSG_CHECKING([for strtoimax]) +--- a/src/lib/env-util.c Thu Jan 08 11:41:30 2009 -0500 ++++ b/src/lib/env-util.c Thu Jan 08 11:51:50 2009 -0500 +@@ -19,7 +19,24 @@ void env_put(const char *env) + + void env_remove(const char *name) + { ++#ifdef HAVE_UNSETENV + unsetenv(name); ++#else ++ extern char **environ; ++ unsigned int len; ++ char **envp; ++ ++ len = strlen(name); ++ for (envp = environ; *envp != NULL; envp++) { ++ if (strncmp(name, *envp, len) == 0 && ++ (*envp)[len] == '=') { ++ do { ++ envp[0] = envp[1]; ++ } while (*++envp != NULL); ++ break; ++ } ++ } ++#endif + } + + void env_clean(void) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 30 04:40:29 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 30 Jan 2009 03:40:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2934] csw/mgar/pkg/ruby/trunk Message-ID: Revision: 2934 http://gar.svn.sourceforge.net/gar/?rev=2934&view=rev Author: bdwalton Date: 2009-01-30 03:40:29 +0000 (Fri, 30 Jan 2009) Log Message: ----------- cleanup of gar description; workaround for rdoc bug Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile csw/mgar/pkg/ruby/trunk/checksums Added Paths: ----------- csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 00:44:24 UTC (rev 2933) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 03:40:29 UTC (rev 2934) @@ -4,8 +4,16 @@ GARVERSION = $(DISTVERSION) CATEGORIES = lang -WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL) +PREREQUISITE_PKGS = CSWbdb3 CSWgdbm CSWgfile CSWiconv CSWncurses CSWossldevel +PREREQUISITE_PKGS += CSWreadline CSWzlib +REQUIRED_PKGS_CSWruby = CSWbdb3n CSWgdbm CSWiconv +REQUIRED_PKGS_CSWruby += CSWncurses CSWosslrt CSWreadline CSWzlib + +REQUIRED_PKGS_CSWrubytk = CSWruby CSWtk + +REQUIRED_PKGS_CSWrubydoc = CSWruby + DESCRIPTION = An object-oriented language for quick and easy programming. define BLURB Ruby is a language for quick and easy programming. Similar in scope to Perl @@ -20,28 +28,25 @@ MASTER_SITES = ftp://ftp.ruby-lang.org/pub/ruby/ MASTER_SITES += ftp://www.ibiblio.org/pub/languages/ruby/ -DISTFILES = $(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL).tar.bz2 - -# We define upstream file regex so we can be notifed of new upstream software release +# We define upstream file regex so we can be notifed of new upstream +# software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*)-p(\d+).tar.bz2 -DISTFILES += CSWruby.gspec CSWruby.depend CSWruby.prototype -DISTFILES += CSWrubytk.gspec CSWrubytk.depend CSWrubytk.prototype +DISTFILES = $(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL).tar.bz2 +DISTFILES += $(call admfiles,CSWruby,) $(call admfiles,CSWrubytk,) +# See: http://rubyforge.org/tracker/index.php?func=detail&aid=17607&group_id=426&atid=1698 +PATCHFILES = rdoc_parse_order_fix.patch + ifneq ($(SKIP_RUBYDOC),1) -DISTFILES += CSWrubydoc.gspec CSWrubydoc.depend +DISTFILES += $(call admfiles,CSWrubydoc,) endif -# Force the dbm extension to build -#PATCHFILES += dbm.diff - -#LIBDEPS += lib/iconv lib/gdbm lib/ncurses lib/readline -#LIBDEPS += lib/zlib lib/openssl lib/bdb3 -#LIBDEPS += lang/tcl lang/tk - # Put samples and RI documentation in share/doc/ruby datadir = $(docdir)/ruby +GARCOMPILER = GNU + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-pthread CONFIGURE_ARGS += --enable-shared @@ -54,30 +59,18 @@ CONFIGURE_ARGS += --with-readline-dir=$(prefix) CONFIGURE_ARGS += --with-zlib-dir=$(prefix) -#override this as the configure script wants to use the obsolete (broken in -#some cases) -KPIC -#ifeq "$(GARCH)" "sparc" -#CONFIGURE_ARGS += CFLAGS="-xO3 -xtarget=ultra -xarch=v8 -I/export/home/bwalton/build.5.8-sparc/ruby/opt/csw/include -I/opt/csw/include" -#CFLAGS = -xO3 -xtarget=ultra -xarch=v8 -I/export/home/bwalton/build.5.8-sparc/ruby/opt/csw/include -I/opt/csw/include -#endif +WORKSRC = $(WORKDIR)/$(DISTNAME)-$(PATCHLEVEL) +WORKSRC_FIRSTMOD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(DISTNAME)-$(PATCHLEVEL) include gar/category.mk SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHLEVEL) -# Replace current build arch in prototype -pre-package: - @for proto in "" $(wildcard $(WORKDIR)/*.prototype) ; do \ - test -z "$$proto" && continue ; \ - gsed -i -e s,%GARCH%,$(GARCH),g $$proto ; \ - done +INSTALL_ARGS = install-all PI_TARGETS = samples rbconfig rbscripts -ifneq ($(SKIP_RUBYDOC),1) -PI_TARGETS += rubydoc -endif -post-install: $(PI_TARGETS) +post-install-modulated: $(PI_TARGETS) @$(MAKECOOKIE) # Fix up rbconfig @@ -89,28 +82,12 @@ # Copy samples samples: @mkdir -p $(DESTDIR)$(datadir) - @cp -R $(WORKSRC)/sample $(DESTDIR)$(datadir) + @cp -R $(WORKSRC_FIRSTMOD)/sample $(DESTDIR)$(datadir) @for ext in bigdecimal dl tk ; do \ - cp -R $(WORKSRC)/ext/$$ext/sample $(DESTDIR)$(datadir)/sample/$$ext ; \ + cp -R $(WORKSRC_FIRSTMOD)/ext/$$ext/sample $(DESTDIR)$(datadir)/sample/$$ext ; \ done @$(MAKECOOKIE) -# Doing a 'make install-doc' in $(WORKSRC) tries to install -# docs to the real prefix. This target installs to the packaging -# prefix instead. -rubydoc: - ( cd $(WORKSRC) ; \ - LD_LIBRARY_PATH=$(DESTDIR)$(libdir) \ - $(DESTDIR)$(bindir)/ruby \ - -I $(DESTDIR)$(libdir)/ruby/1.8 \ - -I $(DESTDIR)$(libdir)/ruby/1.8/$(GARCH)-solaris2.8 \ - bin/rdoc \ - --all \ - --ri-system \ - --op $(DESTDIR)$(datadir)/ri/1.8/system \ - $(DESTDIR)$(libdir)/ruby/1.8 ) - @$(MAKECOOKIE) - # Some scripts come with /usr/local/bin/ruby hard coded. rbscripts: @echo " ==> Fixing shebang path in distributed ruby scripts" Modified: csw/mgar/pkg/ruby/trunk/checksums =================================================================== --- csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 00:44:24 UTC (rev 2933) +++ csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 03:40:29 UTC (rev 2934) @@ -1,9 +1,5 @@ 0b215c46b89b28d7ab8d56d96e72d5b9 download/ruby-1.8.7-p72.tar.bz2 b2d3f1987e4dd3962f15131dc6ab28a3 download/CSWruby.gspec -25662a7cdcf85d39c6d570d59a3fb6e1 download/CSWruby.depend -86606872b8f3ee082d450749de65278f download/CSWruby.prototype 1b4a5fec67986e3f38df7e34c2155ed1 download/CSWrubytk.gspec -817e7a061bed70106d8cf71c9663089b download/CSWrubytk.depend -8f76677cdf9627f1f203e3cfee871422 download/CSWrubytk.prototype 02d0cf5721de6c1f6740b399cbe141f1 download/CSWrubydoc.gspec -75313e990d12f29577e16fc44aab7dfa download/CSWrubydoc.depend +36460ea6a145017c3ddd1173e903a511 download/rdoc_parse_order_fix.patch Added: csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch =================================================================== --- csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch (rev 0) +++ csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch 2009-01-30 03:40:29 UTC (rev 2934) @@ -0,0 +1,11 @@ +--- ruby-1.8.7-p72/lib/rdoc/rdoc.rb.orig 2009-01-30 03:16:02.823906957 +0100 ++++ ruby-1.8.7-p72/lib/rdoc/rdoc.rb 2009-01-30 03:16:09.628913124 +0100 +@@ -200,7 +200,7 @@ + # we may well contain subdirectories which must + # be tested for .document files + def list_files_in_directory(dir, options) +- normalized_file_list(options, Dir.glob(File.join(dir, "*")), false, options.exclude) ++ normalized_file_list(options, Dir.glob(File.join(dir, "*")).sort, false, options.exclude) + end + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Fri Jan 30 09:49:31 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Fri, 30 Jan 2009 08:49:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2935] csw/mgar/pkg Message-ID: Revision: 2935 http://gar.svn.sourceforge.net/gar/?rev=2935&view=rev Author: idogan23 Date: 2009-01-30 08:49:30 +0000 (Fri, 30 Jan 2009) Log Message: ----------- swftools: initial commit Added Paths: ----------- csw/mgar/pkg/swftools/ csw/mgar/pkg/swftools/branches/ csw/mgar/pkg/swftools/tags/ csw/mgar/pkg/swftools/trunk/ csw/mgar/pkg/swftools/trunk/Makefile csw/mgar/pkg/swftools/trunk/checksums csw/mgar/pkg/swftools/trunk/files/ csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec Property changes on: csw/mgar/pkg/swftools/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/swftools/trunk/Makefile =================================================================== --- csw/mgar/pkg/swftools/trunk/Makefile (rev 0) +++ csw/mgar/pkg/swftools/trunk/Makefile 2009-01-30 08:49:30 UTC (rev 2935) @@ -0,0 +1,25 @@ +GARNAME = swftools +GARVERSION = 0.8.1 +CATEGORIES = lib + +DESCRIPTION = SWF manipulation and generation utilities +define BLURB + SWF manipulation and generation utilities +endef + +MASTER_SITES = http://www.swftools.org/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWswftools,) + +# 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) + +GARCOMPILER = GCC3 + +include gar/category.mk Added: csw/mgar/pkg/swftools/trunk/checksums =================================================================== --- csw/mgar/pkg/swftools/trunk/checksums (rev 0) +++ csw/mgar/pkg/swftools/trunk/checksums 2009-01-30 08:49:30 UTC (rev 2935) @@ -0,0 +1,2 @@ +932f4e5fce551ed70c0390fdc0eb1af6 download/swftools-0.8.1.tar.gz +74eaeda4ed196a1ce3bc8761697e9e58 download/CSWswftools.gspec Added: csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec =================================================================== --- csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec (rev 0) +++ csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec 2009-01-30 08:49:30 UTC (rev 2935) @@ -0,0 +1,4 @@ +%var bitname swftools +%var pkgname CSWswftools +%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 dmichelsen at users.sourceforge.net Fri Jan 30 11:38:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:38:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[2936] csw/mgar/pkg Message-ID: Revision: 2936 http://gar.svn.sourceforge.net/gar/?rev=2936&view=rev Author: dmichelsen Date: 2009-01-30 10:38:12 +0000 (Fri, 30 Jan 2009) Log Message: ----------- kshdbx: Initial commit Added Paths: ----------- csw/mgar/pkg/kshdbx/ csw/mgar/pkg/kshdbx/branches/ csw/mgar/pkg/kshdbx/tags/ csw/mgar/pkg/kshdbx/trunk/ csw/mgar/pkg/kshdbx/trunk/Makefile csw/mgar/pkg/kshdbx/trunk/files/ csw/mgar/pkg/kshdbx/trunk/files/CSWpackage.gspec csw/mgar/pkg/kshdbx/trunk/legacy/ csw/mgar/pkg/kshdbx/trunk/legacy/README csw/mgar/pkg/kshdbx/trunk/legacy/copyright csw/mgar/pkg/kshdbx/trunk/legacy/depend csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo csw/mgar/pkg/kshdbx/trunk/legacy/prototype csw/mgar/pkg/kshdbx/trunk/legacy/src/ csw/mgar/pkg/kshdbx/trunk/legacy/src/KSHDB_ORIG.tar.gz csw/mgar/pkg/kshdbx/trunk/legacy/src/kshdbx-1.2.tar.gz Property changes on: csw/mgar/pkg/kshdbx/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/kshdbx/trunk/Makefile =================================================================== --- csw/mgar/pkg/kshdbx/trunk/Makefile (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/Makefile 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/kshdbx/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/kshdbx/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/files/CSWpackage.gspec 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/kshdbx/trunk/legacy/README =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/README 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,100 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the KSHDBX package. +# +# PACKAGE: CSWkshdbx +# +# REVISION: 09-09-05 +# +# NOTES: * This package is a set of architecture independent ksh(1) +# scripts and will work on both the sparc and intel platforms. +# +############################################################################### + +------------------------------------------------------------------------------- +01: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/kshdbx + vi pkginfo + [edit the version info to match the current revision/release] + +------------------------------------------------------------------------------- +02: Update the copyright file (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd src + cp copyright ../copyright + +------------------------------------------------------------------------------- +03: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +04: Update the prototype file +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +05: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/kshdbx/prototype prototype + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/kshdbx + +------------------------------------------------------------------------------- +06: Create the package kshdbx-*-SunOS5.8-all-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/kshdbx + createpkg -r ${HOME}/pkgs/kshdbx/src/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +07: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + make pack + +------------------------------------------------------------------------------- +08: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/kshdbx + cp kshdbx-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +09: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp kshdbx-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +10: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/kshdbx/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/copyright 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,51 @@ +############################################################################### +# +# FILE: copyright +# +# DESCRIPTION: Copyright information for the kshdbx(1) package. +# +# AUTHOR: C. Jeffery Small (jeff at cjsa.com) +# +# REVISIONS: Latest revision: 12-23-04 +# +############################################################################### + +The original kshdb scripts were written by Bill Rosenblatt and published in +January 1993 by O'Reilly & Associates in the book "Learning the Korn Shell" +(ISBN: 1-56592-054-6). These scripts were subsequently republished in the +May 1993 issue of UnixWorld Magazine. + +The source code for these original scripts may be located at: + + http://examples.oreilly.com/korn/ksh.tar.Z + + +The author, Bill Rosenblatt, has indicated his willingness to allow the +kshdb code to be modified and redistributed, but the actual copyright is +owned by the publisher O'Reilly & Associates. The complete text of the +"O'Reilly Policy on Re-Use of Code Examples from Books" can be seen at: + + http://www.oreilly.com/pub/a/oreilly/ask_tim/2001/codepolicy.html + +In part, this policy states: + + "You can use and redistribute example code from our books for any + non-commercial purpose (and most commercial purposes) as long as you + acknowledge their source and authorship. The source of the code should + be noted in any documentation as well as in the program code itself + (as a comment). The attribution should include author, title, publisher, + and ISBN." + + "As per the copyright notice in our books, O'Reilly reserves all + rights to the material in the book, including the code examples. This + literally means that you can use the example code all you like, but you + can't publish or redistribute it without our permission. In reality, we + are comfortable with any reasonable "fair use" of the code, and you can + assume permission is granted without contacting us." + + +The accompanying kshdbx scripts are modified versions of the original +kshdb scripts. All modifications were written by C. Jeffery Small +(jeff at cjsa.com) and the right to use and redistribute these modifications +for any purpose is hereby granted, so long as a copy of this copyright file +always accompanies the code. Added: csw/mgar/pkg/kshdbx/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/depend 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,9 @@ +PKG=CSWkshdbx +NAME=kshdbx - an interactive ksh(1) Korn shell debugger +VERSION=1.2 +ARCH=all +CATEGORY=application +CSW_CATEGORY="prog, shell, user" +VENDOR=http://examples.oreilly.com/korn/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/kshdbx/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/prototype 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,13 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/kshdbx.1 0644 root bin +d none /opt/csw/share/kshdbx 0755 root bin +f none /opt/csw/share/kshdbx/copyright 0644 root bin +f none /opt/csw/share/kshdbx/kshdbx.func 0644 root bin +f none /opt/csw/share/kshdbx/kshdbx.pre 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/kshdbx 0755 root bin Added: csw/mgar/pkg/kshdbx/trunk/legacy/src/KSHDB_ORIG.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/kshdbx/trunk/legacy/src/KSHDB_ORIG.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/kshdbx/trunk/legacy/src/kshdbx-1.2.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/kshdbx/trunk/legacy/src/kshdbx-1.2.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 30 11:44:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:44:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2937] csw/mgar/pkg Message-ID: Revision: 2937 http://gar.svn.sourceforge.net/gar/?rev=2937&view=rev Author: dmichelsen Date: 2009-01-30 10:44:13 +0000 (Fri, 30 Jan 2009) Log Message: ----------- xtide: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/xtide/ csw/mgar/pkg/xtide/branches/ csw/mgar/pkg/xtide/tags/ csw/mgar/pkg/xtide/trunk/ csw/mgar/pkg/xtide/trunk/Makefile csw/mgar/pkg/xtide/trunk/files/ csw/mgar/pkg/xtide/trunk/files/CSWpackage.gspec csw/mgar/pkg/xtide/trunk/legacy/ csw/mgar/pkg/xtide/trunk/legacy/xtide/ csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES csw/mgar/pkg/xtide/trunk/legacy/xtide/README csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright csw/mgar/pkg/xtide/trunk/legacy/xtide/depend csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype csw/mgar/pkg/xtide/trunk/legacy/xtide/src/ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile csw/mgar/pkg/xtide/trunk/legacy/xtideh/ csw/mgar/pkg/xtide/trunk/legacy/xtideh/README csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/ csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile csw/mgar/pkg/xtide/trunk/legacy/xtidew/ csw/mgar/pkg/xtide/trunk/legacy/xtidew/README csw/mgar/pkg/xtide/trunk/legacy/xtidew/copyright csw/mgar/pkg/xtide/trunk/legacy/xtidew/depend csw/mgar/pkg/xtide/trunk/legacy/xtidew/pkginfo csw/mgar/pkg/xtide/trunk/legacy/xtidew/prototype csw/mgar/pkg/xtide/trunk/legacy/xtidew/src/ csw/mgar/pkg/xtide/trunk/legacy/xtidew/src/Makefile Property changes on: csw/mgar/pkg/xtide/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/xtide/trunk/Makefile =================================================================== --- csw/mgar/pkg/xtide/trunk/Makefile (rev 0) +++ csw/mgar/pkg/xtide/trunk/Makefile 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/xtide/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/xtide/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/xtide/trunk/files/CSWpackage.gspec 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,89 @@ +############################################################################### +# +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the XTIDE package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWxtide +# +# CUR VER: xtide Version 2.9.5 +# +# REVISION: 02-04-08 +# +# NOTES: * +# +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +10-25-04 2.7.1 Initial 2.7.1 package creation +01-31-05 2.8.2 +12-22-07 2.9.5 +02-04-08 2.10-RC1 +------------------------------------------------------------------------------- + +############################################################################### +# NOTES FOR SUN COMPILER BUILD +############################################################################### + +------------------------------------------------------------------------------- +SPARC: (CC) +------------------------------------------------------------------------------- + +make libtcd: + * No errors or warnings. + + +make xtide: + * There are numerous warning message issued during the build. + These are generally string literal conversions to char*. + Too many to list here. + +------------------------------------------------------------------------------- + + + +------------------------------------------------------------------------------- +INTEL: (CC) +------------------------------------------------------------------------------- + +make: * Same warnings and errors as with SPARC + +------------------------------------------------------------------------------- + +############################################################################### +# NOTES FOR GCC/G++ COMPILER BUILD +############################################################################### + +------------------------------------------------------------------------------- +PARC: (gcc/g++) +------------------------------------------------------------------------------- + +make libtcd: + * No errors or warnings. + + + +make xtide: + Station.cc: In function `interval_rep_t llround(double)': + Station.cc:46: warning: converting to `interval_rep_t' from `double' + Station.cc:48: warning: converting to `interval_rep_t' from `double' + +------------------------------------------------------------------------------ + + + +------------------------------------------------------------------------------- +INTEL: (gcc/g++) +------------------------------------------------------------------------------- + +make: * Same warnings and errors as with SPARC + +------------------------------------------------------------------------------- Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/README =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/README (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/README 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,255 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the XTIDE package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWxtide +# +# REVISION: 02-05-08 +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: ra + or + INTEL: thor + +------------------------------------------------------------------------------- +02: Update the pkginfo file VERSION=[,REV=YYYY.MM.DD] +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtide + vi pkginfo + [edit the VERSION line including the ,REV=YYYY.MM.DD string] + [edit the ARCH line for either a 'sparc' or 'i386' build] + + NOTE: No '-' allowed in the VERSION string + +------------------------------------------------------------------------------- +03: Download and/or unpack source code [**** ONLY ONCE PER SESSION ****] +------------------------------------------------------------------------------- + + cd src + + For new versions of software: + vi Makefile [set XVER to current xtide version] + [set LVER to current libtcd version] + make get [download new source code] + make extract [unpack new source code] + + For software updates: + make unpack [unpack existing source code] + +------------------------------------------------------------------------------- +04: Build the libtcd static library +------------------------------------------------------------------------------- + + For Sun CC compiler: + SPARC: export CC="cc -fast -xarch=v8 -xnolibmopt -xstrconst -xildoff" + INTEL: export CC="cc -fast -xarch=386 -xstrconst -xildoff" + + For GNU gcc compiler: + unset CC + + For either compiler: + + cd libtcd*[0-9] + + make clean + rm -f Makefile + ../.libtcdConfig + make + +------------------------------------------------------------------------------- +05: Make xtide links to libtcd library and header files +------------------------------------------------------------------------------- + + cd .. + + make links + + ls -als xtide*[0-9]/libtcd xtide*[0-9]/tcd.h + ls -alsL xtide*[0-9]/libtcd xtide*[0-9]/tcd.h + +------------------------------------------------------------------------------- +06: Modify the install target in Makefile.in, using the contents in the + .xtideMake.mods file: [**** ONLY ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + cd xtide*[0-9] + vi ../.xtideMake.mods Makefile.in + +------------------------------------------------------------------------------- +07: Update copyright file [**** ONLY ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + vi README ${HOME}/pkgs/xtide/copyright + [copy entire "License and disclaimer" section to copyright file] + [eliminate the word "Icon" from "Icon License and disclaimer] + +------------------------------------------------------------------------------- +08: Set the proper build environment +------------------------------------------------------------------------------- + + For Sun CC compiler: + SPARC: export CXX="CC -fast -xarch=v8 -library=stlport4" + INTEL: export CXX="CC -fast -xarch=386 -library=stlport4" + + For GNU gcc compiler: + * NOTE: If compiling with GNU gcc/g++ compilers, you must make sure + you are compiling with gcc V3* and not 2.95.3. Check it + with: gcc --version + +------------------------------------------------------------------------------- +09: Compile the software using customized configure script +------------------------------------------------------------------------------- + + --------------------------------------------------------------------------- + For Sun CC compiler: + --------------------------------------------------------------------------- + make clean + rm -f Makefile # force Makefile recreation + ../.xtideConfig + + script zzzz # save output in file zzzz + make + exit # terminate script + + --------------------------------------------------------------------------- + For GNU gcc compiler: + --------------------------------------------------------------------------- + + make clean + rm -f Makefile # force Makefile recreation + ../.xtideConfig-gcc + + script zzzz # save output in file zzzz + make + exit # terminate script + +------------------------------------------------------------------------------- +10: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg DESTDIR=$PWD/cswstage install + +------------------------------------------------------------------------------- +11: Update the prototype file +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check: 'f'iles & 'd'irs have owner/group 'root bin'] + egrep '0444|0555' prototype + [check: permissions should all be 0644 & 0755] + grep '^i depend$' prototype + [check: the third line should be: i depend ] + +------------------------------------------------------------------------------- +12: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/xtide/prototype prototype + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/xtide + +------------------------------------------------------------------------------- +13: Create the package xtide-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtide + createpkg -r ${HOME}/pkgs/xtide/src/xtide*[0-9]/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + + NOTE: Packaging fails due to the xtideh and xtidew packages not being + installed on the build machines. + + ERROR: information for "CSWxtidew" was not found + ERROR: invalid package CSWxtidew specified + ERROR: failed check. + + This should be the last step in the checking process so + everything is actually OK. To finish the packaging step, + simply gzip up the file with: + + gzip xtide*pkg + +------------------------------------------------------------------------------- +14: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + *** Current dependencies are listed in the depend file *** + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 08 and recreate the package + +------------------------------------------------------------------------------- +15: Make package for other platform. +------------------------------------------------------------------------------- + + Go to step 01 and repeat for other architecture + +------------------------------------------------------------------------------- +16: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtide/src/libtcd*[0-9] + make clean + + cd ${HOME}/pkgs/xtide/src/xtide*[0-9] + make clean ; rm -rf cswstage zzzz + + cd ${HOME}/pkgs/xtide/src + make pack # if req'd, tar up and gzip source + make clean # remove the source code + +------------------------------------------------------------------------------- +18: Copy the newsparc and i386 packages to the testing or installation area +------------------------------------------------------------------------------- + + cd pkgs/xtide + + cp xtide-*.pkg.gz /export/medusa/testing + or + cp xtide-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +19: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp libtcd-*.gz xtide-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +20: Notify users for testing or package administrator for update +------------------------------------------------------------------------------- + + Post message to the Blastwave maint list regarding testing + or + Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------- +21: Build the xtideh and xtidew packages +------------------------------------------------------------------------------- + + If required, repackage the xtide harmonics & shoreline data files + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,722 @@ +License and disclaimer + + NOTE. The license and disclaimer appearing below applies to the XTide + program itself. For information about permissions on the harmonic + constants, see + [3]http://www.flaterco.com/xtide/harmonics_boilerplate.txt and + [4]http://harmonics.unh.edu/xtide/harmonics_boilerplate.txt. + + XTide Copyright \xA9 1998 David Flater + + This software is provided under the terms of the GNU General Public + License, either version 3 of the License, or (at your option) any later + version. + + Although the package as a whole is GPL, some individual source files + are public domain. Consult their header comments for details. + + NOT FOR NAVIGATION + + 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. The author + assumes no liability for damages arising from use of this program OR of + any 'harmonics data' that might be distributed with it. For details, + see the appended GNU General Public License. + + (Accurate tide predictions can only be made if the 'harmonics data' for + the relevant location are good. Unfortunately, the only way the + maintainer of those data has of knowing when they are bad is when + someone with access to authoritative tide predictions or observations + reports a problem. You should not use this program or any data files + that might be distributed with it if anyone or anything could come to + harm as a result of an incorrect tide prediction. NOAA and similar + agencies in other countries can provide you with certified tide + predictions if that is what you need.) + + XTide's predictions do not incorporate the effects of tropical storms, + El Ni\xF1o, seismic events, subsidence, uplift, or changes in global sea + level. + __________________________________________________________________ + + The tide prediction algorithm used in this program was developed with + United States Government funding, so no proprietary rights can be + attached to it. For more information, refer to the following + publications: + + Manual of Harmonic Analysis and Prediction of Tides. Special + Publication No. 98, Revised (1940) Edition (reprinted 1958 with + corrections; reprinted again 1994). United States Government + Printing Office, 1994. + + Computer Applications to Tides in the National Ocean Survey. + Supplement to Manual of Harmonic Analysis and Prediction of Tides + (Special Publication No. 98). National Ocean Service, National + Oceanic and Atmospheric Administration, U.S. Department of Commerce, + January 1982. + __________________________________________________________________ + + GNU GENERAL PUBLIC LICENSE + + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <[5]http://fsf.org/> + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for software + and other kinds of works. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains + free software for all its users. We, the Free Software Foundation, use + the GNU General Public License for most of our software; it applies + also to any other work released this way by its authors. You can apply + it to your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you + have certain responsibilities if you distribute copies of the software, + or if you modify it: responsibilities to respect the freedom of + others. + + For example, if you distribute copies of such a program, whether gratis + or for a fee, you must pass on to the recipients the same freedoms that + you received. You must make sure that they, too, receive or can get + the source code. And you must show them these terms so they know their + rights. + + Developers that use the GNU GPL protect your rights with two steps: + (1) assert copyright on the software, and (2) offer you this License + giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the + manufacturer can do so. This is fundamentally incompatible with the + aim of protecting users' freedom to change the software. The + systematic pattern of such abuse occurs in the area of products for + individuals to use, which is precisely where it is most unacceptable. + Therefore, we have designed this version of the GPL to prohibit the + practice for those products. If such problems arise substantially in + other domains, we stand ready to extend this provision to those domains + in future versions of the GPL, as needed to protect the freedom of + users. + + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and + modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of + an exact copy. The resulting work is called a "modified version" of + the earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based on + the Program. + + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user + through a computer network, with no transfer of a copy, is not + conveying. + + An interactive user interface displays "Appropriate Legal Notices" to + the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work for + making modifications to it. "Object code" means any non-source form of + a work. + + A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that is + widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system (if + any) on which the executable work runs, or a compiler used to produce + the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all the + source code needed to generate, install, and (for an executable work) + run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users can + regenerate automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same + work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not convey, + without conditions so long as your license otherwise remains in force. + You may convey covered works to others for the sole purpose of having + them make modifications exclusively for you, or provide you with + facilities for running those works, provided that you comply with the + terms of this License in conveying all material for which you do not + control copyright. Those thus making or running the covered works for + you must do so exclusively on your behalf, under your direction and + control, on terms that prohibit them from making any copies of your + copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under the + conditions stated below. Sublicensing is not allowed; section 10 makes + it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar + laws prohibiting or restricting circumvention of such measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such + circumvention is effected by exercising rights under this License with + respect to the covered work, and you disclaim any intention to limit + operation or modification of the work as a means of enforcing, against + the work's users, your or third parties' legal rights to forbid + circumvention of technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, and + you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the terms + of section 4, provided that you also meet all of these conditions: + * a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + * b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to "keep + intact all notices". + * c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + * d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your work + need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, in + or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not used + to limit the access or legal rights of the compilation's users beyond + what the individual works permit. Inclusion of a covered work in an + aggregate does not cause this License to apply to the other parts of + the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms of + sections 4 and 5, provided that you also convey the machine-readable + Corresponding Source under the terms of this License, in one of these + ways: + * a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium customarily + used for software interchange. + * b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as long + as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the Corresponding Source + from a network server at no charge. + * c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + * d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + * e) Convey the object code using peer-to-peer transmission, + provided you inform other peers where the object code and + Corresponding Source of the work are being offered to the general + public at no charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be included + in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for + incorporation into a dwelling. In determining whether a product is a + consumer product, doubtful cases shall be resolved in favor of + coverage. For a particular product received by a particular user, + "normally used" refers to a typical or common use of that class of + product, regardless of the status of the particular user or of the way + in which the particular user actually uses, or expects or is expected + to use, the product. A product is a consumer product regardless of + whether the product has substantial commercial, industrial or + non-consumer uses, unless such uses represent the only significant mode + of use of the product. + + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to + install and execute modified versions of a covered work in that User + Product from a modified version of its Corresponding Source. The + information must suffice to ensure that the continued functioning of + the modified object code is in no case prevented or interfered with + solely because modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied by + the Installation Information. But this requirement does not apply if + neither you nor any third party retains the ability to install modified + object code on the User Product (for example, the work has been + installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or + updates for a work that has been modified or installed by the + recipient, or for the User Product in which it has been modified or + installed. Access to a network may be denied when the modification + itself materially and adversely affects the operation of the network or + violates the rules and protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option remove + any additional permissions from that copy, or from any part of it. + (Additional permissions may be written to require their own removal in + certain cases when you modify the work.) You may place additional + permissions on material, added by you to a covered work, for which you + have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders + of that material) supplement the terms of this License with terms: + * a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + * b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + * c) Prohibiting misrepresentation of the origin of that material, + or requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + * d) Limiting the use for publicity purposes of names of licensors + or authors of the material; or + * e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + * f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions + of it) with contractual assumptions of liability to the recipient, + for any liability that these contractual assumptions directly + impose on those licensors and authors. + + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the additional + terms that apply to those files, or a notice indicating where to find + the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; the + above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your license + from a particular copyright holder is reinstated (a) provisionally, + unless and until the copyright holder explicitly and finally terminates + your license, and (b) permanently, if the copyright holder fails to + notify you of the violation by some reasonable means prior to 60 days + after the cessation. + + Moreover, your license from a particular copyright holder is reinstated + permanently if the copyright holder notifies you of the violation by + some reasonable means, this is the first time you have received notice + of violation of this License (for any work) from that copyright holder, + and you cure the violation prior to 30 days after your receipt of the + notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or run + a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission to + receive a copy likewise does not require acceptance. However, nothing + other than this License grants you permission to propagate or modify + any covered work. These actions infringe copyright if you do not + accept this License. Therefore, by modifying or propagating a covered + work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that transaction + who receives a copy of the work also receives whatever licenses to the + work the party's predecessor in interest had or could give under the + previous paragraph, plus a right to possession of the Corresponding + Source of the work from the predecessor in interest, if the predecessor + has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims owned + or controlled by the contributor, whether already acquired or hereafter + acquired, that would be infringed by some manner, permitted by this + License, of making, using, or selling its contributor version, but do + not include claims that would be infringed only as a consequence of + further modification of the contributor version. For purposes of this + definition, "control" includes the right to grant patent sublicenses in + a manner consistent with the requirements of this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone to + copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is "discriminatory" if it does not include within the + scope of its coverage, prohibits the exercise of, or is conditioned on + the non-exercise of one or more of the rights that are specifically + granted under this License. You may not convey a covered work if you + are a party to an arrangement with a third party that is in the + business of distributing software, under which you make payment to the + third party based on the extent of your activity of conveying the work, + and under which the third party grants, to any of the parties who would + receive the covered work from you, a discriminatory patent license (a) + in connection with copies of the covered work conveyed by you (or + copies made from those copies), or (b) primarily for and in connection + with specific products or compilations that contain the covered work, + unless you entered into that arrangement, or that patent license was + granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting any + implied license or other defenses to infringement that may otherwise be + available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a consequence + you may not convey it at all. For example, if you agree to terms that + obligate you to collect a royalty for further conveying from those to + whom you convey the Program, the only way you could satisfy both those + terms and this License would be to refrain entirely from conveying the + Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions + will be similar in spirit to the present version, but may differ in + detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies that a certain numbered version of the GNU General Public + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that numbered version or + of any later version published by the Free Software Foundation. If the + Program does not specify a version number of the GNU General Public + License, you may choose any version ever published by the Free Software + Foundation. + + If the Program specifies that a proxy can decide which future versions + of the GNU General Public License can be used, that proxy's public + statement of acceptance of a version permanently authorizes you to + choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR + CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively state + the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. + + Copyright (C) + + 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 . + + Also add information on how to contact you by electronic and paper + mail. + + If the program does terminal interaction, make it output a short notice + like this when it starts in an interactive mode: + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the + appropriate parts of the General Public License. Of course, your + program's commands might be different; for a GUI interface, you would + use an "about box". + + You should also get your employer (if you work as a programmer) or + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. For more information on this, and how to apply and follow + the GNU GPL, see <[6]http://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your + program into proprietary programs. If your program is a subroutine + library, you may consider it more useful to permit linking proprietary + applications with the library. If this is what you want to do, use the + GNU Lesser General Public License instead of this License. But first, + please read <[7]http://www.gnu.org/philosophy/why-not-lgpl.html>. Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/depend =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/depend (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/depend 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,7 @@ +P CSWcommon +P CSWpng +P CSWxpm +P CSWzlib +P CSWstlport +P CSWxtideh +P CSWxtidew Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,9 @@ +PKG=CSWxtide +NAME=xtide - harmonic tide clock and tide predictor +VERSION=2.10,REV=2008.02.07 +ARCH=sparc +CATEGORY=application +CSW_CATEGORY="eng, fun, user" +VENDOR=http://www.flaterco.com/xtide/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,21 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/tide.1 0644 root bin +f none /opt/csw/share/man/man1/xtide.1 0644 root bin +d none /opt/csw/share/man/man8 0755 root bin +f none /opt/csw/share/man/man8/xttpd.8 0644 root bin +d none /opt/csw/share/xtide 0755 root bin +f none /opt/csw/share/xtide/copyright 0644 root bin +f none /opt/csw/share/xtide/xtide.conf.sample 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/tide.bin 0755 root bin +f none /opt/csw/bin/xtide.bin 0755 root bin +f none /opt/csw/bin/tide 0755 root bin +f none /opt/csw/bin/xtide 0755 root bin +d none /opt/csw/sbin 0755 root bin +f none /opt/csw/sbin/xttpd.bin 0755 root bin +f none /opt/csw/sbin/xttpd 0755 root bin Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,21 @@ +#! /bin/sh +############################################################################### +# +# FILE: .libtcdConfig +# +# DESCRIPTION: Configuration file for the libtcd program. This should be +# executed from withing the current libtcd build sub-directory +# as: +# +# ../.libtcdConfig +# +# NOTES: +# +# PACKAGE: CSWlibtcd +# +# REVISION: 12-30-07 +# +############################################################################### + +./configure --prefix=/opt/csw --disable-shared \ + CPPFLAGS="-I/opt/csw/include -I." LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib" Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,28 @@ +#!/bin/sh +############################################################################### +# +# FILE: tide +# +# DESCRIPTION: This script is a front-end to the actual tide binary which +# has been renamed tide.bin. This file is used to set the +# HFILE_PATH and WVS_DIR environment variables to the proper +# values for the CSW installation. +# +# PACKAGE: CSWxtide [Requires CSWxtideh, CSWxtidew] +# +# REVISION: 12-21-07 +# +############################################################################### + +HFILE_PATH="${HFILE_PATH:-/opt/csw/share/xtide/harmonics-free.tcd:/opt/csw/share/xtide/harmonics-nonfree.tcd}" +WVS_DIR="${WVS_DIR:-/opt/csw/share/xtide/wvs}" + +export HFILE_PATH WVS_DIR + +if [ -x /opt/csw/bin/tide.bin ] ; then + PROG="/opt/csw/bin/tide.bin" +else + PROG="tide.bin" +fi + +exec ${PROG} $* Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,28 @@ +#!/bin/sh +############################################################################### +# +# FILE: xtide +# +# DESCRIPTION: This script is a front-end to the actual xtide binary which +# has been renamed xtide.bin. This file is used to set the +# HFILE_PATH and WVS_DIR environment variables to the proper +# values for the CSW installation. +# +# PACKAGE: CSWxtide [Requires CSWxtideh, CSWxtidew] +# +# REVISION: 12-21-07 +# +############################################################################### + +HFILE_PATH="${HFILE_PATH:-/opt/csw/share/xtide/harmonics-free.tcd:/opt/csw/share/xtide/harmonics-nonfree.tcd}" +WVS_DIR="${WVS_DIR:-/opt/csw/share/xtide/wvs}" + +export HFILE_PATH WVS_DIR + +if [ -x /opt/csw/bin/xtide.bin ] ; then + PROG="/opt/csw/bin/xtide.bin" +else + PROG="xtide.bin" +fi + +exec ${PROG} $* Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,23 @@ +#! /bin/sh +############################################################################### +# +# FILE: .xtideConfig +# +# DESCRIPTION: Configuration file for the xtide program. This should be +# executed from withing the current xtide build sub-directory +# as: +# +# ../.xtideConfig +# +# NOTE: *** THIS IS ONLY FOR USE WITH SUN'S cc/CC COMPILERS! *** +# *** USE ../.xtideConfig-gcc when using GNU COMPILERS! *** +# +# PACKAGE: CSWxtide +# +# REVISION: 12-30-07 +# +############################################################################### + +./configure --prefix=/opt/csw \ + CPPFLAGS="-I/opt/csw/include -I." \ + LDFLAGS="-R/opt/csw/lib -L/opt/csw/lib -Llibtcd" Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,23 @@ +#! /bin/sh +############################################################################### +# +# FILE: .xtideConfig-gcc +# +# DESCRIPTION: Configuration file for the xtide program. This should be +# executed from withing the current xtide build sub-directory +# as: +# +# ../.xtideConfig-gcc +# +# NOTE: *** THIS IS ONLY FOR USE WITH THE GNU gcc/g++ COMPILERS! *** +# *** Use ../.xtideConfig when using SUN'S COMPILERS! *** +# +# PACKAGE: CSWxtide +# +# REVISION: 12-30-07 +# +############################################################################### + +./configure --prefix=/opt/csw \ + CPPFLAGS="-I/opt/csw/include -I." \ + LDFLAGS="-R/opt/csw/lib -L/opt/csw/lib -R/opt/csw/gcc3/lib -L/opt/csw/gcc3/lib -Llibtcd" Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,61 @@ +############################################################################### +# +# FILE: .xtideMake.mods +# +# DESCRIPTION: These are the pre-configure modifications for the xtide +# Makefile.in file. +# +# PACKAGE: CSWxtide +# +# REVISION: 02-05-08 +# +# NOTES: * This relies on the CJSA version of install. +# +# * Just pick up everything below and move it into the +# Makefile.in file, replacing the default install target +# located there. +# +############################################################################### + +#---------------------------------------------------------------------------- +# Start of install target for Blastwave +#---------------------------------------------------------------------------- +BINDIR = $(DESTDIR)/opt/csw/bin +SBINDIR = $(DESTDIR)/opt/csw/sbin +LIBDIR = $(DESTDIR)/opt/csw/share/xtide +MANDIR = $(DESTDIR)/opt/csw/man + +install: inst-prog inst-lib inst-man + +inst-prog: inst-dirs tide xtide xttpd ../.tide ../.xtide ../.xttpd + install -s -o root -g bin -m 755 tide $(BINDIR)/tide.bin + install -s -o root -g bin -m 755 xtide $(BINDIR)/xtide.bin + install -s -o root -g bin -m 755 xttpd $(SBINDIR)/xttpd.bin + install -c -o root -g bin -m 755 ../.tide $(BINDIR)/tide + install -c -o root -g bin -m 755 ../.xtide $(BINDIR)/xtide + install -c -o root -g bin -m 755 ../.xttpd $(SBINDIR)/xttpd + +inst-lib: inst-dirs ../../copyright + install -c -o root -g bin -m 644 ../../copyright $(LIBDIR) + echo "/opt/csw/share/xtide/harmonics.tcd" > $(LIBDIR)/xtide.conf.sample + echo "/opt/csw/share/xtide/wvs/" >> $(LIBDIR)/xtide.conf.sample + +inst-man: inst-dirs + @for i in *.1 ; do \ + echo "installing $$i" ; \ + install -o root -g bin -m 644 $$i $(MANDIR)/man1 ; \ + done + @for i in *.8 ; do \ + echo "installing $$i" ; \ + install -o root -g bin -m 644 $$i $(MANDIR)/man8 ; \ + done + +inst-dirs: + install -d -o root -g bin -m 755 $(BINDIR) + install -d -o root -g bin -m 755 $(SBINDIR) + install -d -o root -g bin -m 755 $(LIBDIR) + install -d -o root -g bin -m 755 $(MANDIR)/man1 + install -d -o root -g bin -m 755 $(MANDIR)/man8 +#---------------------------------------------------------------------------- +# End of install target for Blastwave +#---------------------------------------------------------------------------- Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,30 @@ +#!/bin/sh +############################################################################### +# +# FILE: xttpd +# +# DESCRIPTION: This script is a front-end to the actual xttpd binary which +# has been renamed xttpd.bin. This file is used to set the +# HFILE_PATH and WVS_DIR environment variable to the proper +# values for the CSW installation. +# +# PACKAGE: CSWxtide [Requires CSWxtideh, CSWxtidew] +# +# REVISION: 12-21-07 +# +############################################################################### + +HFILE_PATH="${HFILE_PATH:-/opt/csw/share/xtide/harmonics-free.tcd:/opt/csw/share/xtide/harmonics-nonfree.tcd}" +WVS_DIR="${WVS_DIR:-/opt/csw/share/xtide/wvs}" + +export HFILE_PATH WVS_DIR + +if [ -x /opt/csw/sbin/xttpd.bin ] ; then + PROG="/opt/csw/sbin/xttpd.bin" +elif [ -x /opt/csw/bin/xttpd.bin ] ; then + PROG="/opt/csw/bin/xttpd.bin" +else + PROG="xttpd.bin" +fi + +exec ${PROG} $* Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,101 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the XTIDE src directory +# +# PACKAGE: CSWxtide +# +# REVISION: 02-05-08 +# +# NOTES: * Set the XVER variable to the current xtide v ersion number +# * Set the LVER variable to the current libtcd version number +# +# * INSTALL_ROOT controls the location of the installation +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +XVER = 2.10 +LVER = 2.2.3 + +XSOURCE = xtide-$(XVER).tar.bz2 +LSOURCE = libtcd-$(LVER).tar.bz2 + +XSAVE = $(XSOURCE)X +LSAVE = $(LSOURCE)X + +XDIR = xtide-$(XVER) +LDIR = libtcd-$(LVER) + +XTAR = xtide-$(XVER).tar + +XARCH = $(XTAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "xtide ver: $(XVER) libtcd ver: $(LVER)" + @echo "---------------------------------------------------------------" + @echo "make get download xtide and libtcd source code" + @echo "" + @echo "make extract extract source code from downloaded archives" + @echo "" + @echo "make links create symbolic links to libtcd directory" + @echo "" + @echo "make pack tar up and gzip the source code directory" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +get: getx getl + +getx: + wget ftp://ftp.flaterco.com/xtide/$(XSOURCE) + +getl: + wget ftp://ftp.flaterco.com/xtide/$(LSOURCE) + + +extract: extractx extractl + +extractx: $(XSOURCE) + unpak $(XSOURCE) + mv $(XSOURCE) $(XSAVE) + +extractl: $(LSOURCE) + unpak $(LSOURCE) + mv $(LSOURCE) $(LSAVE) + + +pack pak tar: $(LDIR) $(XDIR) + @if [ -f $(XTAR) ] ; then \ + echo "Cannot pack: $(XTAR) exists." ; \ + elif [ -f $(XARCH) ] ; then \ + echo "Cannot pack: $(XARCH) exists." ; \ + else \ + tar cvf $(XTAR) $(LDIR) $(XDIR) ; \ + gzip $(XTAR) ; \ + fi + +unpack unpak: $(XARCH) + unpak $(XARCH) + +links link: + @rm -f xtide*[0-9]/libtcd xtide*[0-9]/tcd.h + (cd xtide*[0-9] ; \ + ln -s ../libtcd*[0-9]/.libs libtcd) + (cd xtide*[0-9] ; \ + ln -s ../libtcd*[0-9]/tcd.h tcd.h) + +clean: + @if [ ! -f $(XARCH) ] ; then \ + echo "You must first archive the source with: make pack" ; \ + else \ + rm -rf $(XDIR) $(XSOURCE) $(XSAVE) $(LDIR) $(LSOURCE) $(LSAVE) ; \ + fi Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/README =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/README (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/README 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,117 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the XTIDEH package. +# +# PACKAGE: CSWxtideh +# +# REVISION: 12-21-07 +# +# NOTES: * This package is architecture independent and will work in +# conjunction with both the sparc and intel XTIDE packages. +# +############################################################################### + +------------------------------------------------------------------------------- +01: Login to the sparc build machine (ra) +------------------------------------------------------------------------------- + + wr + +------------------------------------------------------------------------------- +02: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/xtideh + vi pkginfo + [edit the version info: Set it to the harmonics data file date] + +------------------------------------------------------------------------------- +03: Download the latest boilerplate and harmonics files +------------------------------------------------------------------------------- + + cd src + vi Makefile [set HARVER to current version (i.e., date)] + + make get + + Or, if the source was already downloaded: + + make unpack + +------------------------------------------------------------------------------- +04: Update copyright file [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + cp boilerplate.txt ${HOME}/pkgs/xtideh/copyright + +------------------------------------------------------------------------------- +05: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +06: Update the prototype file +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype (only if necessary) + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + +------------------------------------------------------------------------------- +07: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/xtideh/prototype prototype + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/xtideh + +------------------------------------------------------------------------------- +08: Create the package xtideh-*-SunOS5.8-all-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtideh + createpkg -b ${HOME}/pkgs/xtideh/src/cswstage/opt/csw + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +09: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + make pack + make realclean + +------------------------------------------------------------------------------- +10: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/xtideh + cp xtideh-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +11: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp xtideh-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +12: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,543 @@ +# $Id: harmonics_boilerplate.txt 2899 2007-12-28 23:10:40Z flaterco $ +# +# Definitions and constants for XTide +# +# NOTE: This file should not be used as-is to provide a constituent +# set to harmgen because it contains multiple constituents with the +# same frequency. A better constituent set is included in the harmgen +# distribution (see the README). +# +# +# ********* NOT FOR NAVIGATION ******** +# +# *** DO NOT RELY ON THIS DATA FILE FOR DECISIONS THAT CAN RESULT IN *** +# *** HARM TO ANYONE OR ANYTHING. *** +# +# Highly trustworthy tide predictions cannot be achieved on a zero +# budget. If you need guaranteed results, don't use these data! +# Contact the tide authority for your region (NOAA in the U.S.). +# +# This data file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without any warranty that its use will NOT +# INFRINGE ANY RIGHTS, and without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# WHOEVER CHOOSES TO REDISTRIBUTE THESE DATA ASSUMES ALL LIABILITY +# ASSOCIATED THEREWITH. NEITHER DAVID FLATER NOR ANYONE ELSE INVOLVED +# SHALL BE LIABLE PERSONALLY OR OTHERWISE FOR ANY LOSSES THAT THE +# REDISTRIBUTOR MIGHT SUFFER AS A CONSEQUENCE OF ANY CLAIMS, BOGUS OR +# OTHERWISE, THAT ARE MADE TO THESE DATA. +# +# +# --- Notes to contributors --- +# +# After getting legal threats from the U.K. Hydrographic Office, I am +# no longer willing to accept any data without an explicit statement +# from the copyright owner or eminent authority either granting +# permission for non-commercial use with XTide or explaining that such +# permission is not required. The absence of a copyright notice is +# not sufficient; however, a blanket permission for non-commercial use +# is sufficient. +# +# For more technical reasons, I am not prepared to accept data under +# conditions that require me to track uses of the data, to limit the +# uses of the data to a particular time period, or to verify that +# every user has read the legalese. XTide has many different +# interfaces by which users can obtain results, and such requirements +# are impossible to implement in a reasonable and consistent fashion +# across all interfaces. For a reasonable compromise, see what was +# done for the POL data: a reference to legalese is included in the +# location name field. +# +# +# --- Copyright statements --- +# +# United States: Data published by the U.S. government is by law +# non-proprietary. Stations in the U.S., territories of the U.S., +# commonwealths associated with the U.S., and countries with a Compact +# of Free Association with the U.S. have been included. A few other +# stations available from the NOS web site have been dropped. +# +# Notice available on the NOS web site at +# http://tidesandcurrents.noaa.gov/disclaimers.html as of +# 2007-05-30: +# +# The information on government servers are in the public domain, +# unless specifically annotated otherwise, and may be used freely by +# the public. Before using information obtained from this server, +# special attention should be given to the date and time of the data +# and products being displayed. This information shall not be +# modified in content and then presented as official government +# material. +# +# The user assumes the entire risk related to its use of these +# data. NOS is providing these data "as is," and NOS disclaims any +# and all warranties, whether express or implied, including (without +# limitation) any implied warranties of merchantability or fitness +# for a particular purpose. In no event will NOS be liable to you or +# to any third party for any direct, indirect, incidental, +# consequential, special or exemplary damages or lost profit +# resulting from any use or misuse of this data. +# +# NOS requests that attribution be given whenever NOS material is +# reproduced and re-disseminated. Pursuant to 17 U.S.C. 403, third +# parties producing copyrighted (compilation) works consisting +# predominantly of material created by Federal Government employees +# are encouraged to provide notice with such work(s) identifying the +# U.S. Government material incorporated and stating that such +# material is not subject to copyright protection. +# +# Canada: The harmonic constants used to perform tide predictions for +# locations in Canada are derived from sea level data made available +# by Marine Environmental Data Services, Fisheries and Oceans Canada, +# for public, non-commercial use. The predictions are not the same as +# those computed by the Canadian Hydrographic Service, which uses its +# own sets of harmonic constants. +# +# Copyright notice for the sea level data at +# http://www.meds-sdmm.dfo-mpo.gc.ca/meds/About_MEDS/copyright_e.htm: +# +# Non-commercial Reproduction +# +# Information on this site has been posted with the intent that it be +# readily available for personal and public non-commercial use and may +# be reproduced, in part or in whole and by any means, without charge +# or further permission from the Department of Fisheries and Oceans +# Canada. We ask only that: +# +# * Users exercise due diligence in ensuring the accuracy of the +# materials reproduced; +# +# * The Department of Fisheries and Oceans Canada be identified as +# the source department; and, +# +# * The reproduction is not represented as an official version of +# the materials reproduced, nor as having been made, in +# affiliation with or with the endorsement of the Department of +# Fisheries and Oceans Canada. +# +# Netherlands: The Netherlands data was contributed directly by Koos +# Doekes of the Rijkswaterstaat RIKZ/ZDI, who grants permission by his +# own authority: +# +# Herewith I grant permission for non-commercial use +# of all harmonic constants for the Netherlands by +# users of Xtide or Xtide-based products. +# +# This covers the use of the constants for Dutch +# ports in the Xtide-database by designers +# of web applications, and the use in commercial +# tidal prediction software in which the constants +# themselves are not stored - i.e. the user has +# to copy them from the Xtide-database himself. +# +# It does NOT cover the use in commercial software +# in which the constants are incorporated, which is +# considered commercial use of the constants here. +# Any request for permission of use of Dutch constants +# in software of this kind should be redirected to +# RIKZ. +# +# Germany: The Germany data was contributed directly by Wolfgang +# Lange of the Bundesamt fuer Seeschifffahrt und Hydrographie (BSH), +# who grants permission by his own authority: +# +# As long as you make your software using these tidal data +# freely available, I grant permission for non-commercial use +# of the harmonic constants for the 12 reference stations at +# the german North Sea coast on the same conditions and rules +# layed down in the letter from Koos Doekes, RIKZ/ZDI, +# concerning the Netherlands harmonic constituents. +# +# UK: Received 2003-11-15 DWF. See also http://www.flaterco.com/pol.html. +# +# Proudman Oceanographic Laboratory +# Natural Environment Research Council +# +# Bidston Observatory +# Bidston Hill +# Prenton +# Merseyside +# CH43 7RA +# United Kingdom +# David Flater +# 13320 Country Ridge Drive Tel +44 (0) 151 653 8633 +# Germantown, MD 20874 Fax +44 (0) 151 653 6269 +# United States of America www.pol.ac.uk +# +# +# 07 November 2003 +# +# Dear David, +# +# This letter is to confirm that we are happy for you to download the +# sea level data from the British Oceanographic Data Centre website and +# use this in the generation of harmonic constants using the HarmGen +# software. However there are a couple of things that we would politely +# ask that you do. +# +# 1. Limit the number of harmonic constants you use in the software to +# a maximum of 40 for any port. This should easily be enough to create +# very accurate tidal predictions as for nearly all locations, any +# harmonics left out (i.e. the 41st most significant constants onwards) +# will have amplitudes of the order of a centimetre. +# +# 2. State that the data is derived from sea level data obtained from +# the British Oceanographic Data Centre based at the Proudman +# Oceanographic Laboratory, Liverpool. +# +# 3. Make it clear that the predictions however are not the same as +# those computed by the Proudman Oceanographic Laboratory which uses its +# own sets of harmonic constants. +# +# 4. Continue to make your software using the data freely available. +# Please inform us if you intend to produce a software product that you +# will be making a charge for. +# +# I hope these conditions are acceptable to you and it will be good to +# see the UK back on the map. +# +# Yours sincerely, +# Colin Bell +# Head of Applications Group +# +# +# Changelog +# --------- +# +# 2007-12-28 +# +# Imported NOS data from snapshot 2007-12-17. +# +# Reapplied the meridian fixes for Albany and Coyote Point Marina. +# Coordinates of I-526 bridge were fixed upstream. +# +# A comparison of all reference stations versus the 2008 tide tables +# published on the web revealed discrepancies for Anchorage, AK and Port +# O'Connor, TX. The Anchorage discrepancies are small enough to be +# explained by a data update; however, the Port O'Connor discrepancies are +# major and are not helped by the meridian fix that worked for Albany and +# Coyote Point Marina. Local observations are required to determine whether +# the Port O'Connor predictions are any good at all. This is complicated by +# the fact that it is a diurnal station with small tidal range, making +# eyewitness confirmation that much more unreliable. Subordinate stations +# depending on these reference stations will also fail to match the +# published tables. +# +# +# 2007-11-22 +# +# To facilitate compliance with Linux distribution packaging policies +# and to draw more attention to the acceptable use restriction on +# non-U.S. data, the "free" and "nonfree" data are now being exported +# to separate TCD files. At this time, all "free" data are public +# domain and all "nonfree" data are merely restricted to +# non-commercial use only. +# +# Replaced the data set for Harwich, England with one calculated from +# a longer time series. Proudman still does not yet publish +# predictions for this location. +# +# +# 2007-03-18 +# +# Updated approximated MLLW datums with improved estimates. +# +# Put IGNORE HEIGHTS in the legalese fields of the 14 subordinate +# stations where NOS zeroed out the heights. +# +# +# 2007-02-22 +# +# Applied renamings as updated and improved by Walt Bilofsky (thanks +# Walt). +# +# +# 2007-02-11 +# +# Interim release, without renamings. +# +# Imported NOS data from snapshot 2007-02-07. +# +# (9414449) Coyote Point Marina, San Francisco Bay, CA: corrected meridian. +# (Data claimed UTC, was UTC-8) +# (8518995) Albany, Hudson River, NY: corrected meridian. +# (Data claimed UTC, was UTC-5) +# I-526 bridge, Ashley River, South Carolina: fixed longitude. +# Pascagoula, Mississippi Sound, Mississippi latitude was fixed upstream. +# +# In progress: renamings. +# +# Since there were two reference stations with incorrect meridians +# (one that was reported last time and one that was just discovered), +# it is reasonable to expect that there will be more. +# +# +# 2006-07-08 +# +# Coyote Point Marina, San Francisco Bay, California: corrected meridian. +# Delaware City, Delaware River, Delweare: fixed typo in name. +# Pascagoula, Mississippi Sound, Mississippi: fixed latitude. +# I-526 bridge, Ashley River, South Carolina: fixed longitude. +# +# +# 2006-03-05 +# +# Installed renamings from AH for the 102 stations that lacked states. +# +# +# 2006-02-05 +# +# Refreshed U.S. data from NOS web site (snapshot 2006-01-04). AH has +# dealt with new and modified station names to maintain the naming +# convention installed 2005-11-27. Still to be fixed is a list of +# stations that do not include their state in their name. Most or all +# of those have been that way since November. They didn't stick out +# much until an unrelated Harmbase query happened to group them +# together. +# +# An e-mail exchange with Todd Ehret of NOS CO-OPS this time led me to +# believe that the UTC constants for the Alaskan reference stations +# with weird time zones should be correct, so I have retained them. A +# survey of affected subordinate stations shows that most should be +# correct if their reference station is correct (they all use the same +# one). Most doubtful are the six subordinate stations on +# St. Lawrence Island. I do not even have reliable intelligence on +# what the de facto time zone of St. Lawrence Island is. It was not +# mentioned in the statute that defines U.S. time zones. +# +# +# 2005-11-27 +# +# Installed renamings from August Hahn to achieve something like the +# naming convention previously followed in legacy data. These +# renamings will be maintained through subsequent updates if the churn +# is not too bad. +# +# +# 2005-09-05 +# +# Generated and installed harmonic constants for 49 Canadian stations +# using up to 10 years of hourly data (the maximum permitted download) +# from Marine Environmental Data Services (MEDS), Fisheries and Oceans +# Canada. +# +# MEDS publishes water level data for 962 stations. Of those, only 92 +# are currently active. Of those 92, 43 are non-tidal, being located +# on or near the great lakes. +# +# +# 2005-06-05 +# +# Generated and installed fresh harmonic constants for U.K. stations +# using all available data for the 19 year epoch from 1986 to 2004. +# Quality assurance information is available at +# ftp://ftp.flaterco.com/xtide/harmonics-dwf-2005-06-05-QA.txt +# +# Station Harwich, England is new with only 8 months of data. +# Authoritative predictions for this station are not yet available for +# comparison. +# +# +# 2005-01-20 +# +# Deleted the following Alaskan reference stations, which were +# rendered incorrect by technical difficulties confirmed by Todd Ehret +# of NOS CO-OPS, and all dependent sub stations. They may return +# corrected in future revisions. +# +# - 9460150 Attu, Massacre Bay +# - 9465261 Clarks Point, Nushagak Bay +# - 9468132 St. Michael, Norton Sound +# - 9497649 Prudhoe Bay #2 +# - 9497778 Cross Island +# +# Also deleted the following station which is listed as superseded. +# +# - 9497652 Prudhoe Bay, Dock #1 +# +# +# 2004-12-10 +# +# Refreshed all NOS data from NOS web site. +# +# +# 2004-10-18 +# +# No data changes -- just resyncing and renaming all the different +# editions of the database. +# harmonics-dwf-2004-10-18-v2.tcd Built with libtcd 2.0 +# harmonics-dwf-2004-10-18-v1.tcd Built with libtcd 1.100 +# harmonics-dwf-2004-10-18.sql Postgres 7.4.2 +# harmonics-dwf-2004-10-18-dump txt/xml restored from -v2.tcd +# harmonics-dwf-2004-10-18-compat txt/xml years 1970-2037 only +# +# +# 2004-10-08 DWF +# +# Updated RIKZ/MII references to new name, RIKZ/ZDI. +# +# +# 2004-10-05 DWF +# +# Rebuilt using libtcd 1.99, which corrects a problem where +# constituents with zero phases were being dropped. The affected +# reference stations are Delfzijl, Netherlands; The Battery, New York +# Harbor, NY; and South Pass, LA. +# +# +# 2004-09-14 DWF +# +# Imported subordinate stations available from the NOS web site as of +# 2004-09-09. Compare against +# http://co-ops.nos.noaa.gov/tide_pred.html. Some stations will +# disagree moderately because the reference stations were updated and +# don't match the published tables. +# +# The smattering of sub stations in non-U.S. territory was suppressed. +# +# There are time zone problems in Alaska. The LST used by the NOS for +# stations in Alaska does not always match the local statutory time +# zone (which I have followed). For reference stations, the problem +# was detectable and correctable because the constants were available +# calibrated with UTC as well as LST. But for the sub stations, it is +# impossible to tell whether a disagreement with NOS predictions +# results from a disagreement about time zone, incorrect calibration, +# or both. +# +# A few names suffixed by (A) and (B) reflect sub stations on the NOS +# web site with the same names and close coordinates, where it is far +# from obvious why there are two of them. Other name clashes were +# resolved by disambiguation. +# +# (Nit) Corrected months_on_station for German ref stations from 13 to +# 12. (It's a time zone / rounding issue, on list to be fixed.) +# +# +# 2004-09-07c DWF +# +# Put the following three stations on Eastern time (they were calibrated +# to Central time on the NOS web site): +# Johns Island, Chassahowitzka Bay, FL +# Chassahowitzka River, FL +# Crystal River, Kings Bay, FL +# +# +# 2004-09-07b DWF +# +# Corrected heuristic for Alaskan time zones. A few stations in the +# Aleutians were affected. +# +# +# 2004-09-07 DWF +# +# Added notes for stations in Alaska where the LST used by NOS does not +# match the apparent statutory time zone. Presently these notes just +# get attached to the comments field in the TCD file, but the next major +# revision to the TCD format should enable XTide to display them more +# prominently. +# +# +# 2004-09-01 DWF +# +# Most reference stations available from the NOS web site as of +# 2004-08-26 have been imported. Compare against +# http://co-ops.nos.noaa.gov/tide_pred.html. +# +# MLLW benchmarks were not available for all stations. For stations +# where a MLLW datum was not available, the datum has been set to LAT. +# +# I know there are typos in the location names. +# +# Currents are not available at this time. According to Mr. Ehret, they +# will become available when the new CO-OPS currents database is +# complete. +# +# The following stations, which are located in jurisdictions that are +# neither territories of the U.S., nor commonwealths associated with the +# U.S., nor countries with a Compact of Free Association with the U.S., +# have been dropped. Their data are distributed without legalese from +# the NOS web site; however, that does not necessarily mean that anyone +# other than the NOS has permission from the respective governments to +# use or redistribute the data. This may seem paranoid, but the +# situation with the U.K. data that were pulled in 2001 was very +# similar. +# +# Apia, Samoa +# Bermuda Esso Pier, St. Georges Island, Bermuda +# Fare Ute Point, Papeete Harbor, French Polynesia +# La Uni\xF3n, El Salvador +# Madero, Tampico Harbor, Tamaulipas, Mexico +# Puerto Corinto, Nicaragua +# Puerto Cort\xE9s, Honduras +# Puerto Quetzal (San Jose), Guatemala +# Settlement Point, Grand Bahama I., Bahamas +# Suva Harbor, Suva, Fiji +# +# +# 2004-08-19 DWF +# +# This is an interim release as I am starting over from scratch using +# Harmbase2. All legacy data have been dumped. +# +# All U.S. data are temporarily down; the 2004-08-09 version of this +# file remains usable for those. Mr. Ehret has indicated that there +# would be fees involved in obtaining harmonic constants and offsets +# in the format previously received, so I am abandoning all that and +# gearing up to scrape data off of the web. According to Mr. Ehret, +# the set of locations on the web site is a superset of those used in +# published prediction tables. The discrepancies that occur are +# because the harmonic constants on the web are updated continuously +# while the harmonic constants used for the published tables are fixed +# in advance. Thus there seems little to be lost by replacing all of +# the legacy data with a snapshot of the web data. +# +# Data presently included: +# +# Netherlands reference stations computed from hourly levels 1999 +# through 2002, as received from Koos Doekes on 2004-02-03. Compare +# against http://www.getij.nl/engels/. +# +# German reference stations computed using Harmgen from year 2001 +# observations sent by Wolfgang Lange on 2004-08-19. The datums are +# adjusted to LAT. Compare against +# http://www.bsh.de/en/Marine%20data/Forecasts/Tides/index.jsp. (The +# web site is still using the MLWS datum, so the heights will disagree +# strongly until the web site is updated. However, even adjusting for +# that, the agreement is not as good as could be hoped. The BSH +# predictions are made using a non-harmonic method, so some +# discrepancies are inevitable.) +# +# German subordinate stations as sent by Wolfgang Lange on 2004-08-10. +# +# U.K. reference stations computed using Harmgen from at least four +# years of observations ending 2002-12-31, as downloaded from the BODC +# web site 2003-11. Compare against http://www.pol.ac.uk/ntslf/tides/. +# +# +# 2004-08-09 DWF +# +# harmonics-dwf is a new database that emphasizes responsiveness to +# updates and traceability to authoritative sources instead of maximum +# coverage of locations and historical predictions. All data known to +# be old and expired and all data for which no source of updates +# exists have been purged. This will orphan many users who have been +# getting good results from old data. For these, please continue to +# use RMK's database. +# +# harmonics-dwf now contains: +# - U.S. reference stations provided by Todd Ehret of NOAA circa +# 2004-02-04. +# - Netherlands reference stations provided by Koos Doekes of the +# Rijkswaterstaat RIKZ/ZDI (then RIKZ/MII) on 2004-02-03. +# - U.K. reference stations derived by Harmgen from BODC data, +# 2003-11. +# - The most recent data for other U.S. reference stations that +# were in RMK data rev. 2004-04-16 23:30 but not included in +# the distribution from Todd Ehret. +# +# All sub stations are gone temporarily while I update my software to +# import the sub station data sent by Todd Ehret in February. I will +# also be contacting Mr. Ehret to see if I can obtain a complete dump +# of all stations in current use so that I can build a legacy-free +# database. Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,9 @@ +PKG=CSWxtideh +NAME=xtideh - harmonics data files for xtide +VERSION=07.12.28,REV=2008.02.05 +ARCH=all +CATEGORY=application +CSW_CATEGORY="eng, fun, lib" +VENDOR=http://www.flaterco.com/xtide/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,8 @@ +i pkginfo +i copyright +i depend +d none share 0755 root bin +d none share/xtide 0755 root bin +f none share/xtide/boilerplate.txt 0644 root bin +f none share/xtide/harmonics-free.tcd 0644 root bin +f none share/xtide/harmonics-nonfree.tcd 0644 root bin Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,105 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the XTIDEH src directory. +# These are the harmonics data files used by the XTIDE package. +# +# PACKAGE: CSWxtideh +# +# REVISION: 02-05-08 +# +# NOTES: * Set the HARVER variable to the current harmonics file date. +# +# * Am using CJSA custom install(1M) utility in ${HOME}/bin. +# +# * INSTALL_ROOT controls the location of the installation. +# +# * Files at: http://www.flaterco.com/xtide/files.html +# +# * Version 1 harmonics used with xtide <= 2.7 +# Version 2 harmonics used with xtide >= 2.8 +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +BOILER = harmonics_boilerplate.txt + +HARVER = 20071228 + +HARMON1 = harmonics-dwf-$(HARVER)-free.tcd +HARMON2 = harmonics-dwf-$(HARVER)-nonfree.tcd + +HAR1 = harmonics-free.tcd +HAR2 = harmonics-nonfree.tcd + +HARTAR = xtideh-$(HARVER).tar + +HARCH = $(HARTAR).gz + +LIBDIR = $(INSTALL_ROOT)/opt/csw/share/xtide + +help: + @echo "---------------------------------------------------------------" + @echo "Harmonics Ver: $(HARVER)" + @echo "---------------------------------------------------------------" + @echo "make get download the harmonics.tcd & boilerplate files" + @echo "" + @echo "make install install the harmonics.tcd file" + @echo "" + @echo "make pack tar up and gzip the harmonics source code" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "make clean remove previous copies of files and cswstage" + @echo "" + @echo "make realclean clean + rm harmonics.tcd & boilerplate files" + @echo "---------------------------------------------------------------" + + +get: get_bp get_hf + +get_bp: + @rm -rf boilerplate.txt.PREV harmonics.*.PREV + @if [ -f boilerplate.txt ] ; then \ + mv boilerplate.txt boilerplate.txt.PREV ; \ + fi + wget http://www.flaterco.com/xtide/$(BOILER) + mv $(BOILER) boilerplate.txt + +get_hf: + @if [ -f harmonics.tcd ] ; then \ + mv harmonics.tcd harmonics.tcd.PREV ; \ + fi + wget ftp://ftp.flaterco.com/xtide/$(HARMON1).bz2 + bunzip2 $(HARMON1).bz2 + wget ftp://ftp.flaterco.com/xtide/$(HARMON2).bz2 + bunzip2 $(HARMON2).bz2 + + +install: boilerplate.txt $(HARMON1) $(HARMON2) + install -d -o root -g bin -m 755 $(LIBDIR) @@ 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 30 11:47:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:47:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[2938] csw/mgar/pkg Message-ID: Revision: 2938 http://gar.svn.sourceforge.net/gar/?rev=2938&view=rev Author: dmichelsen Date: 2009-01-30 10:47:51 +0000 (Fri, 30 Jan 2009) Log Message: ----------- xmahjongg: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/xmahjongg/ csw/mgar/pkg/xmahjongg/branches/ csw/mgar/pkg/xmahjongg/tags/ csw/mgar/pkg/xmahjongg/trunk/ csw/mgar/pkg/xmahjongg/trunk/Makefile csw/mgar/pkg/xmahjongg/trunk/files/ csw/mgar/pkg/xmahjongg/trunk/files/CSWpackage.gspec csw/mgar/pkg/xmahjongg/trunk/legacy/ csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES csw/mgar/pkg/xmahjongg/trunk/legacy/README csw/mgar/pkg/xmahjongg/trunk/legacy/copyright csw/mgar/pkg/xmahjongg/trunk/legacy/depend csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo csw/mgar/pkg/xmahjongg/trunk/legacy/prototype csw/mgar/pkg/xmahjongg/trunk/legacy/src/ csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile csw/mgar/pkg/xmahjongg/trunk/legacy/src/xmahjongg-3.7.tar.gz Property changes on: csw/mgar/pkg/xmahjongg/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/xmahjongg/trunk/Makefile =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/Makefile (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/Makefile 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/xmahjongg/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/files/CSWpackage.gspec 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,146 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the XMAHJONGG package. These are notes +# concerning the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWxmahjongg +# +# CUR VER: Xmahjongg Version 3.7 +# +# REVISION: 04-15-07 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +04-15-07 3.7 Initial package build +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + + * board.cc + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + 4 Warning(s) detected. + + * button.cc + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "button.hh", line 36: Warning: Button::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + 3 Warning(s) detected. + + * game.cc + "game.cc", line 399: Warning (Anachronism): Formal argument 4 of \ + type extern "C" int(*)(const void*,const void*) in call to \ + std::qsort(void*, unsigned, unsigned, extern "C" \ + int(*)(const void*,const void*)) is being passed \ + int(*)(const void*,const void*). + 1 Warning(s) detected. + + * gmjts.cc + "gmjts.hh", line 13: Warning: Identifier expected instead of "}". + 1 Warning(s) detected. + + * hint.cc + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + 4 Warning(s) detected. + + * kdets.cc + "kdets.hh", line 13: Warning: Identifier expected instead of "}". + 1 Warning(s) detected. + + * kmjts.cc + "kmjts.hh", line 13: Warning: Identifier expected instead of "}". + 1 Warning(s) detected. + + * main.cc + "xmj3ts.hh", line 21: Warning: Identifier expected instead of "}". + "gmjts.hh", line 13: Warning: Identifier expected instead of "}". + "kmjts.hh", line 13: Warning: Identifier expected instead of "}". + "kdets.hh", line 13: Warning: Identifier expected instead of "}". + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "button.hh", line 36: Warning: Button::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "solution.hh", line 35: Warning: SolutionDisplay::alarm hides \ + the virtual function AlarmHooks::alarm(Alarm*). + "main.cc", line 174: Warning (Anachronism): Formal argument 4 of \ + type extern "C" int(*)(const void*,const void*) in call to\ + std::qsort(void*, unsigned, unsigned, extern "C" \ + int(*)(const void*,const void*)) is being passed \ + int(*)(const void*,const void*). + "main.cc", line 253: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 254: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 255: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 256: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 257: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 712: Warning: String literal converted to char* \ + in assignment. + 17 Warning(s) detected. + + * panel.cc + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "button.hh", line 36: Warning: Button::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "solution.hh", line 35: Warning: SolutionDisplay::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + "traverse.hh", line 58: Warning: Traversal::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + 7 Warning(s) detected. + + * solution.cc + "solution.hh", line 35: Warning: SolutionDisplay::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + 4 Warning(s) detected. + + * traverse.cc + "traverse.hh", line 58: Warning: Traversal::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + 5 Warning(s) detected. + + * xmj3ts.cc + "xmj3ts.hh", line 21: Warning: Identifier expected instead of "}". + "xmj3ts.cc", line 81: Warning (Anachronism): Formal argument 4 of \ + type extern "C" int(*)(const void*,const void*) in call to \ + std::qsort(void*, unsigned, unsigned, extern "C" \ + int(*)(const void*,const void*)) is being passed \ + int(*)(const void*,const void*). + 2 Warning(s) detected. Added: csw/mgar/pkg/xmahjongg/trunk/legacy/README =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/README 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,183 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the XMAHJONGG package. Refer to +# the BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWxmahjongg +# +# REVISION: 04-15-07 +# +# NOTES: * Source code: http://www.lcdf.org/xmahjongg/ +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +02: Update the pkginfo file +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xmahjongg + vi pkginfo + [edit the VERSION info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +03: Unpack and/or download the software and game files +------------------------------------------------------------------------------- + + cd src + make unpack + +------------------------------------------------------------------------------- +04: Update the copyright file (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd xmahjongg*[0-9] + vi README ${HOME}/pkgs/xmahjongg/copyright + [copy the COPYRIGHT and AUTHORS sections to the copyright file] + +------------------------------------------------------------------------------- +05: Fix the source files (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd src + + vi game.cc gmjts.cc kmjts.cc main.cc tileset.cc xmj3ts.cc + + * Add following line to end of #include section in each file + #include + + cd .. + +------------------------------------------------------------------------------- +06: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -fast -xarch=v8 -xstrconst -xildoff' + export CCC='CC -fast -xarch=v8' + export CXX='CC -fast -xarch=v8' + + INTEL: export CC='cc -fast -xarch=386 -xstrconst -xildoff' + export CCC='CC -fast -xarch=386' + export CCX='CC -fast -xarch=386' + +------------------------------------------------------------------------------- +07: Configure and build the software +------------------------------------------------------------------------------- + + make clean + ./configure --prefix=/opt/csw + make + +------------------------------------------------------------------------------- +08: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg DESTDIR=$PWD/cswstage install + +------------------------------------------------------------------------------- +09: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +10: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/xmahjongg/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/xmahjongg + +------------------------------------------------------------------------------- +11: Create the package xmahjongg-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xmahjongg + createpkg -r ${HOME}/pkgs/xmahjongg/src/xmahjongg*[0-9]/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +12: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 09 and recreate the package + +------------------------------------------------------------------------------- +13: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Start over and rebuild the Solaris-x86 version + +------------------------------------------------------------------------------- +14: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xmahjongg/src/xmahjongg*[0-9] + rm -rf cswstage + make clean + +------------------------------------------------------------------------------- +15: Archive source code +------------------------------------------------------------------------------- + + cd .. + make pack + make clean + +------------------------------------------------------------------------------- +16: Copy the new package to the testing or installation area +------------------------------------------------------------------------------- + + cd pkgs/xmahjongg + cp xmahjongg-*.pkg.gz /export/medusa/testing + or + cp xmahjongg-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +17: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp xmahjongg-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +18: Notify package community or administrator +------------------------------------------------------------------------------- + + * Post testing note to local.blastewave.maint list + or + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/xmahjongg/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/copyright 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,53 @@ +---------------------------------------------------------------------------- +COPYRIGHT/LICENSE +---------------------------------------------------------------------------- + +All source code is Copyright (C) 1993-2000 Eddie Kohler. + +This package is distributed under the GNU General Public License, +Version 2, or, at your discretion, any later version. The GNU +General Public License is available via the Web at + + + +The GPL is designed to allow you to alter and redistribute the package, +as long as you do not remove that freedom from others. + +---------------------------------------------------------------------------- +AUTHORS +---------------------------------------------------------------------------- + +Eddie Kohler + Source code, default background image, buttons and numbers, coloring + of the `default' and `thick' tilesets + +Mark A. Holm + Black-and-white versions of the `default' and `tall' tilesets, (c) + 1988. He gave permission to copy and distribute the black-and-white + versions for non-profit purposes. The colored tiles are sufficiently + different to make them a `derived work' which can be separately + copyrighted; they are distributed under the GPL. + +Dorothy Robinson + `dorothys' tileset (c) 2000, and `dorwhite' tileset, which is the + original color xmahjongg tiles (c) 1988. + +Berrie Bloem (?) + http://www.mahjongg.com/ + `small' tileset + +Jonathan Buzzard and Max Watson + `gnome' and `gnome2' tilesets + +Mark Sanctuary + http://jps.net/sanctuary + `real' tileset + +Naoki Haga + http://www.kyodai.com/ + `arena', `ceremonial', `deepwell', `farandole', and `theater' layouts + +Vincent Krebs + `hourglass' and `papillon' layouts + +---------------------------------------------------------------------------- Added: csw/mgar/pkg/xmahjongg/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/depend 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,9 @@ +PKG=CSWxmahjongg +NAME=xmahjongg - Chinese Tile Game +VERSION=3.7 +ARCH=sparc +CATEGORY=application +CSW_CATEGORY="fun, user" +VENDOR=http://www.lcdf.org/xmahjongg/ - packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/xmahjongg/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/prototype 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,47 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man6 0755 root bin +f none /opt/csw/share/man/man6/xmahjongg.6 0644 root bin +d none /opt/csw/share/xmahjongg 0755 root bin +d none /opt/csw/share/xmahjongg/layouts 0755 root bin +f none /opt/csw/share/xmahjongg/layouts/default 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/bridge 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/wedges 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/ceremonial 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/farandole 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/arena 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/theater 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/deepwell 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/hourglass 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/arrow 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/papillon 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/schoon 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/rat 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/ox 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/tiger 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/hare 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/dragon 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/snake 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/horse 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/ram 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/monkey 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/rooster 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/dog 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/boar 0644 root bin +d none /opt/csw/share/xmahjongg/tiles 0755 root bin +f none /opt/csw/share/xmahjongg/tiles/thin.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/small.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/thick.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/gnome.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/gnome2.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/dorothys.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/dorwhite.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/real.gif 0644 root bin +d none /opt/csw/share/xmahjongg/backgrounds 0755 root bin +f none /opt/csw/share/xmahjongg/backgrounds/default.gif 0644 root bin +f none /opt/csw/share/xmahjongg/backgrounds/green.gif 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/xmahjongg 0755 root bin Added: csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,53 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the XMAHJONGG src directory. +# +# PACKAGE: CSWxmahjongg +# +# REVISION: 04-14-07 +# +# NOTES: * Set the SVER variable to the current xmahjongg version number +# +# REQMTS: * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +SVER = 3.7 + +SDIR = xmahjongg-$(SVER) + +STAR = xmahjongg-$(SVER).tar + +SARCH = $(STAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "Spider Ver: $(SVER)" + @echo "---------------------------------------------------------------" + @echo "make pack tar up and gzip the source code directory" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +pack tar: $(SDIR) + @if [ -f $(STAR) ] ; then mv $(STAR) $(STAR).OLD ; fi + @if [ -f $(SARCH) ] ; then mv $(SARCH) $(SARCH).OLD ; fi + tar cvf $(STAR) $(SDIR) + gzip $(STAR) + rm -rf $(STAR).OLD $(SARCH).OLD + +unpack unpak: $(SARCH) + unpak $(SARCH) + +clean: + @if [ ! -f $(SARCH) ] ; then \ + echo "You must first archive the source with: make pack" ; \ + else \ + rm -rf $(SDIR) ; \ + fi Added: csw/mgar/pkg/xmahjongg/trunk/legacy/src/xmahjongg-3.7.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/xmahjongg/trunk/legacy/src/xmahjongg-3.7.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 30 11:49:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:49:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[2939] csw/mgar/pkg Message-ID: Revision: 2939 http://gar.svn.sourceforge.net/gar/?rev=2939&view=rev Author: dmichelsen Date: 2009-01-30 10:49:35 +0000 (Fri, 30 Jan 2009) Log Message: ----------- unclutter: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/unclutter/ csw/mgar/pkg/unclutter/branches/ csw/mgar/pkg/unclutter/tags/ csw/mgar/pkg/unclutter/trunk/ csw/mgar/pkg/unclutter/trunk/Makefile csw/mgar/pkg/unclutter/trunk/files/ csw/mgar/pkg/unclutter/trunk/files/CSWpackage.gspec csw/mgar/pkg/unclutter/trunk/legacy/ csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES csw/mgar/pkg/unclutter/trunk/legacy/README csw/mgar/pkg/unclutter/trunk/legacy/copyright csw/mgar/pkg/unclutter/trunk/legacy/depend csw/mgar/pkg/unclutter/trunk/legacy/pkginfo csw/mgar/pkg/unclutter/trunk/legacy/prototype csw/mgar/pkg/unclutter/trunk/legacy/src/ csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile csw/mgar/pkg/unclutter/trunk/legacy/src/unclutter-1.09.tar.gz Property changes on: csw/mgar/pkg/unclutter/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/unclutter/trunk/Makefile =================================================================== --- csw/mgar/pkg/unclutter/trunk/Makefile (rev 0) +++ csw/mgar/pkg/unclutter/trunk/Makefile 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/unclutter/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/unclutter/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/unclutter/trunk/files/CSWpackage.gspec 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,51 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the UNCLUTTER package. These are notes +# concerning the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWunclutter +# +# CUR VER: Unclutter Version 1.09 +# +# REVISION: 01-05-07 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +01-05-07 1.09 Initial package build +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + * The following warning messages are generated + + "vroot.h", line 43: warning: no explicit type given for parameter: \ + screen + "unclutter.c", line 43: warning: old-style declaration or incorrect \ + type for: pexit + "unclutter.c", line 45: warning: implicit function declaration: exit + "unclutter.c", line 47: warning: old-style declaration or incorrect \ + type for: usage + "unclutter.c", line 91: warning: old-style declaration or incorrect \ + type for: nameinlist + "unclutter.c", line 113: warning: old-style declaration or incorrect \ + type for: matchinlist + "unclutter.c", line 135: warning: old-style declaration or incorrect \ + type for: createnullcursor + "unclutter.c", line 158: warning: old-style declaration or incorrect + type for: main + "unclutter.c", line 158: warning: no explicit type given for \ + parameter: argc + "unclutter.c", line 174: warning: implicit function declaration: atoi + "unclutter.c", line 209: warning: implicit function declaration: malloc + "unclutter.c", line 269: warning: implicit function declaration: abs Added: csw/mgar/pkg/unclutter/trunk/legacy/README =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/README 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,161 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the UNCLUTTER package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWunclutter +# +# REVISION: 01-05-07 +# +# NOTES: * This source code for version 1.08 was released into the +# public domain in 1992 and is not being maintained. Thus, +# this is the sole repository for the source code, including +# the revisions I made, bumping it to version 1.09. +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +02: Update the pkginfo file VERSION=[,REV=YYYY.MM.DD] +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/unclutter + vi pkginfo + [edit the version info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +03: Unpack the source code [**** ONLY NEEDS TO BE DONE ONCE PER SESSION ****] +------------------------------------------------------------------------------- + + cd src + vi Makefile [edit the UVERS variable] + make unpack [unpack unless it was just extracted] + +------------------------------------------------------------------------------- +04: Update copyright file [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + vi unclutter*[0-9]/README ${HOME}/pkgs/unclutter/copyright + [Include the notice concerning release to the public domain] + +------------------------------------------------------------------------------- +05: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +06: Compile the software +------------------------------------------------------------------------------- + + cd unclutter*[0-9] + + xmkmf # generate a current Makefile + + make clean + make + +------------------------------------------------------------------------------- +07: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install-csw + +------------------------------------------------------------------------------- +08: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +09: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/unclutter/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/unclutter + +------------------------------------------------------------------------------- +10: Create the package unclutter-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/unclutter + createpkg -b ${HOME}/pkgs/unclutter/src/unclutter*[0-9]/cswstage/opt/csw + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +11: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 07 and recreate the package + +------------------------------------------------------------------------------- +12: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Go to step 01 and repeat for other architecture + +------------------------------------------------------------------------------- +13: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/unclutter/src/unclutter*[0-9] + make clean ; rm -rf cswstage + cd ${HOME}/pkgs/unclutter/src + make pack # if req'd, tar up and gzip source + make clean + +------------------------------------------------------------------------------- +14: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/unclutter + cp unclutter-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +15: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp unclutter*tar.gz /export/medusa/src + +------------------------------------------------------------------------------- +16: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/unclutter/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/copyright 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,11 @@ +From the README file accompanying version 1.08: +------------------------------------------------------------------------- +The program is released into the public domain. +Only the considerate will leave credit for the author. + +ORIGINAL AUTHOR: Mark M Martin. mmm at cetia.fr sep 1992. +------------------------------------------------------------------------- + +Additions by C. Jeffery Small (jeff at cjsa.com) for version 1.09 +are also released into the public domain. 01-05-07 +------------------------------------------------------------------------- Added: csw/mgar/pkg/unclutter/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/depend 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/unclutter/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/pkginfo 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,9 @@ +PKG=CSWunclutter +NAME=unclutter - Remove idle cursor image from screen +VERSION=1.09 +ARCH=i386 +CATEGORY=application +CSW_CATEGORY="user, x" +VENDOR=https://sourceforge.net/projects/unclutter/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/unclutter/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/prototype 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,9 @@ +i pkginfo +i copyright +i depend +d none share 0755 root bin +d none share/man 0755 root bin +d none share/man/man1 0755 root bin +f none share/man/man1/unclutter.1 0644 root bin +d none bin 0755 root bin +f none bin/unclutter 0755 root bin Added: csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,49 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the UNClUTTER src directory. +# +# PACKAGE: CSWunclutter +# +# REVISION: 02-05-07 +# +# NOTES: * Set the UVER variable to the current par version number. +# +# * INSTALL_ROOT controls the location of the installation. +# +# * Source is located at: sourceforge.net +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +UVERS = 1.09 + +UDIR = unclutter-$(UVERS) + +UTAR = unclutter-$(UVERS).tar + +UARCH = $(UTAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "Unclutter Ver: $(UVERS)" + @echo "---------------------------------------------------------------" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +unpack unpak: $(UARCH) + unpak $(UARCH) + +clean: + @if [ ! -f $(UARCH) ] ; then \ + echo "You must first archive the source" ; \ + else \ + rm -rf $(UDIR) ; \ + fi Added: csw/mgar/pkg/unclutter/trunk/legacy/src/unclutter-1.09.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/unclutter/trunk/legacy/src/unclutter-1.09.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 30 14:45:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 13:45:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2940] csw/mgar/pkg Message-ID: Revision: 2940 http://gar.svn.sourceforge.net/gar/?rev=2940&view=rev Author: dmichelsen Date: 2009-01-30 13:45:07 +0000 (Fri, 30 Jan 2009) Log Message: ----------- spider: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/spider/ csw/mgar/pkg/spider/branches/ csw/mgar/pkg/spider/tags/ csw/mgar/pkg/spider/trunk/ csw/mgar/pkg/spider/trunk/Makefile csw/mgar/pkg/spider/trunk/files/ csw/mgar/pkg/spider/trunk/files/CSWpackage.gspec csw/mgar/pkg/spider/trunk/legacy/ csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES csw/mgar/pkg/spider/trunk/legacy/README csw/mgar/pkg/spider/trunk/legacy/copyright csw/mgar/pkg/spider/trunk/legacy/depend csw/mgar/pkg/spider/trunk/legacy/pkginfo csw/mgar/pkg/spider/trunk/legacy/prototype csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/PATCH.zoo csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/SPIDERv1r1p1a.zoo csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.intro csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.misc csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.rules csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.summary csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/events.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/face.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/gfx.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/globals.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/main.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/movelog.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/patchlevel.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/rank.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.info csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.man csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/suit.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/util.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/version.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/windows.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xaw_stubs.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xaw_ui.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xaw_ui.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xv_stubs.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xv_ui.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xv_ui.h csw/mgar/pkg/spider/trunk/legacy/src/ csw/mgar/pkg/spider/trunk/legacy/src/Makefile csw/mgar/pkg/spider/trunk/legacy/src/spider-1.1.1.tar.gz Property changes on: csw/mgar/pkg/spider/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/spider/trunk/Makefile =================================================================== --- csw/mgar/pkg/spider/trunk/Makefile (rev 0) +++ csw/mgar/pkg/spider/trunk/Makefile 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/spider/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/spider/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/spider/trunk/files/CSWpackage.gspec 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,32 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the SPIDER package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWspider +# +# CUR VER: Spider Version 1.1.1,REV=2006.11.18 +# +# REVISION: 11-18-06 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +10-23-04 1.1.1 Initial package build +11-18-06 1.1.1,REV=2006.11.18 New release with 150 perfect games +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + + * Numerous non-fatal warning messages are issues [too many to list] Added: csw/mgar/pkg/spider/trunk/legacy/README =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/README 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,162 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the SPIDER package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWspider +# +# REVISION: 11-18-06 +# +# NOTES: * Primary source code is located at: +# - ftp://ftp.uu.net/usenet/comp.sources.x/volume7/spider +# * Patch #2 is located at: +# - ftp://ftp.uu.net/usenet/comp.sources.x/volume10/spider +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +02: Update the pkginfo file +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/spider + vi pkginfo + [edit the version info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +03: Unpack and/or download the software and game files +------------------------------------------------------------------------------- + cd src + make unpack + +------------------------------------------------------------------------------- +04: Update the copyright file (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd spider*[0-9] + cp copyright.h ${HOME}/pkgs/spider/copyright + +------------------------------------------------------------------------------- +05: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +06: Compile the software +------------------------------------------------------------------------------- + + xmkmf + make clean + make + +------------------------------------------------------------------------------- +07: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install-csw + +------------------------------------------------------------------------------- +08: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +09: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/spider/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/spider + +------------------------------------------------------------------------------- +10: Create the package spider-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/spider + createpkg -r ${HOME}/pkgs/spider/src/spider*[0-9]/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +11: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 09 and recreate the package + +------------------------------------------------------------------------------- +12: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Start over and rebuild the Solaris-x86 version + +------------------------------------------------------------------------------- +13: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/spider/src/spider*[0-9] + rm -rf cswstage + make clean + +------------------------------------------------------------------------------- +14: Archive source code +------------------------------------------------------------------------------- + + cd .. + make pack + make clean + +------------------------------------------------------------------------------- +15: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/spider + cp spider-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +16: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp spider-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +17: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/spider/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/copyright 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,108 @@ +/* + * Copyright 1990 Heather Rose and Sun Microsystems, Inc. + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that copyright + * notice and this permission notice appear in supporting documentation, and + * that the names of Donald Woods and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems make + * no representations about the suitability of this software for any purpose. + * It is provided "as is" without express or implied warranty. + * + * THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT + * SHALL HEATHER ROSE OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. + * + * Author: + * Heather Rose + * hrose at sun.com + * + * Sun Microsystems, Inc. + * 2550 Garcia Avenue + * Mountain View, CA 94043 + */ + +/* + * Copyright 1990 David Lemke and Network Computing Devices + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation, and that the name of Network Computing Devices not be + * used in advertising or publicity pertaining to distribution of the + * software without specific, written prior permission. Network Computing + * Devices makes no representations about the suitability of this software + * for any purpose. It is provided "as is" without express or implied + * warranty. + * + * NETWORK COMPUTING DEVICES DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, + * IN NO EVENT SHALL NETWORK COMPUTING DEVICES BE LIABLE FOR ANY SPECIAL, + * 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. + * + * Author: + * Dave Lemke + * lemke at ncd.com + * + * Network Computing Devices, Inc + * 350 North Bernardo Ave + * Mountain View, CA 94043 + * + * @(#)copyright.h 2.2 90/04/27 + * + */ + +/* +% Copyright (c) 1989, Donald R. Woods and Sun Microsystems, Inc. +% +% Permission to use, copy, modify, distribute, and sell this software and its +% documentation for any purpose is hereby granted without fee, provided that +% the above copyright notice appear in all copies and that both that copyright +% notice and this permission notice appear in supporting documentation, and +% that the names of Donald Woods and Sun Microsystems not be used in +% advertising or publicity pertaining to distribution of the software without +% specific, written prior permission. Donald Woods and Sun Microsystems make +% no representations about the suitability of this software for any purpose. +% It is provided "as is" without express or implied warranty. +% +% THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +% INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT +% SHALL DONALD WOODS OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. +% +% History: Spider is a solitaire card game that can be found in various books +% of same; the rules are presumed to be in the public domain. The author's +% first computer implementation was on the Stanford Artificial Intelligence Lab +% system (SAIL). It was later ported to the Xerox Development Environment. +% The card images are loosely based on scanned-in images but were largely +% redrawn by the author with help from Larry Rosenberg. +% +% This program is written entirely in NeWS and runs on OPEN WINDOWS 1.0. +% It could be made to run much faster if parts of it were written in C, using +% NeWS mainly for its display and input capabilities, but that is left as an +% exercise for the reader. Spider may also run with little or no modification +% on subsequent releases of OPEN WINDOWS, but no guarantee is made on this +% point (nor any other; see above!). To run Spider, feed this file to 'psh'. +% +% Author: Don Woods +% woods at sun.com +% +% Sun Microsystems, Inc. +% 2550 Garcia Avenue +% Mountain View, CA 94043 +*/ Added: csw/mgar/pkg/spider/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/depend 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/spider/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/pkginfo 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,9 @@ +PKG=CSWspider +NAME=spider - Solitaire Card Game +VERSION=1.1.1,REV=2006.11.18 +ARCH=i386 +CATEGORY=application +CSW_CATEGORY="fun, user" +VENDOR=ftp://ftp.uu.net/usenet/comp.sources.x/ - packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/spider/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/prototype 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,169 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man6 0755 root bin +f none /opt/csw/share/man/man6/spider.6 0644 root bin +d none /opt/csw/share/spider 0755 root bin +d none /opt/csw/share/spider/help 0755 root bin +f none /opt/csw/share/spider/help/doc.controls 0644 root bin +f none /opt/csw/share/spider/help/doc.examples 0644 root bin +f none /opt/csw/share/spider/help/doc.intro 0644 root bin +f none /opt/csw/share/spider/help/doc.misc 0644 root bin +f none /opt/csw/share/spider/help/doc.rules 0644 root bin +f none /opt/csw/share/spider/help/doc.summary 0644 root bin +d none /opt/csw/share/spider/games 0755 root bin +f none /opt/csw/share/spider/games/README 0644 root bin +f none /opt/csw/share/spider/games/1000.001 0644 root bin +f none /opt/csw/share/spider/games/1000.002 0644 root bin +f none /opt/csw/share/spider/games/1000.003 0644 root bin +f none /opt/csw/share/spider/games/1000.004 0644 root bin +f none /opt/csw/share/spider/games/1000.005 0644 root bin +f none /opt/csw/share/spider/games/1000.006 0644 root bin +f none /opt/csw/share/spider/games/1000.007 0644 root bin +f none /opt/csw/share/spider/games/1000.008 0644 root bin +f none /opt/csw/share/spider/games/1000.009 0644 root bin +f none /opt/csw/share/spider/games/1000.010 0644 root bin +f none /opt/csw/share/spider/games/1000.011 0644 root bin +f none /opt/csw/share/spider/games/1000.012 0644 root bin +f none /opt/csw/share/spider/games/1000.013 0644 root bin +f none /opt/csw/share/spider/games/1000.014 0644 root bin +f none /opt/csw/share/spider/games/1000.015 0644 root bin +f none /opt/csw/share/spider/games/1000.016 0644 root bin +f none /opt/csw/share/spider/games/1000.017 0644 root bin +f none /opt/csw/share/spider/games/1000.018 0644 root bin +f none /opt/csw/share/spider/games/1000.019 0644 root bin +f none /opt/csw/share/spider/games/1000.020 0644 root bin +f none /opt/csw/share/spider/games/1000.021 0644 root bin +f none /opt/csw/share/spider/games/1000.022 0644 root bin +f none /opt/csw/share/spider/games/1000.023 0644 root bin +f none /opt/csw/share/spider/games/1000.024 0644 root bin +f none /opt/csw/share/spider/games/1000.025 0644 root bin +f none /opt/csw/share/spider/games/1000.026 0644 root bin +f none /opt/csw/share/spider/games/1000.027 0644 root bin +f none /opt/csw/share/spider/games/1000.028 0644 root bin +f none /opt/csw/share/spider/games/1000.029 0644 root bin +f none /opt/csw/share/spider/games/1000.030 0644 root bin +f none /opt/csw/share/spider/games/1000.031 0644 root bin +f none /opt/csw/share/spider/games/1000.032 0644 root bin +f none /opt/csw/share/spider/games/1000.033 0644 root bin +f none /opt/csw/share/spider/games/1000.034 0644 root bin +f none /opt/csw/share/spider/games/1000.035 0644 root bin +f none /opt/csw/share/spider/games/1000.036 0644 root bin +f none /opt/csw/share/spider/games/1000.037 0644 root bin +f none /opt/csw/share/spider/games/1000.038 0644 root bin +f none /opt/csw/share/spider/games/1000.039 0644 root bin +f none /opt/csw/share/spider/games/1000.040 0644 root bin +f none /opt/csw/share/spider/games/1000.041 0644 root bin +f none /opt/csw/share/spider/games/1000.042 0644 root bin +f none /opt/csw/share/spider/games/1000.043 0644 root bin +f none /opt/csw/share/spider/games/1000.044 0644 root bin +f none /opt/csw/share/spider/games/1000.045 0644 root bin +f none /opt/csw/share/spider/games/1000.046 0644 root bin +f none /opt/csw/share/spider/games/1000.047 0644 root bin +f none /opt/csw/share/spider/games/1000.048 0644 root bin +f none /opt/csw/share/spider/games/1000.049 0644 root bin +f none /opt/csw/share/spider/games/1000.050 0644 root bin +f none /opt/csw/share/spider/games/1000.051 0644 root bin +f none /opt/csw/share/spider/games/1000.052 0644 root bin +f none /opt/csw/share/spider/games/1000.053 0644 root bin +f none /opt/csw/share/spider/games/1000.054 0644 root bin +f none /opt/csw/share/spider/games/1000.055 0644 root bin +f none /opt/csw/share/spider/games/1000.056 0644 root bin +f none /opt/csw/share/spider/games/1000.057 0644 root bin +f none /opt/csw/share/spider/games/1000.058 0644 root bin +f none /opt/csw/share/spider/games/1000.059 0644 root bin +f none /opt/csw/share/spider/games/1000.060 0644 root bin +f none /opt/csw/share/spider/games/1000.061 0644 root bin +f none /opt/csw/share/spider/games/1000.062 0644 root bin +f none /opt/csw/share/spider/games/1000.063 0644 root bin +f none /opt/csw/share/spider/games/1000.064 0644 root bin +f none /opt/csw/share/spider/games/1000.065 0644 root bin +f none /opt/csw/share/spider/games/1000.066 0644 root bin +f none /opt/csw/share/spider/games/1000.067 0644 root bin +f none /opt/csw/share/spider/games/1000.068 0644 root bin +f none /opt/csw/share/spider/games/1000.069 0644 root bin +f none /opt/csw/share/spider/games/1000.070 0644 root bin +f none /opt/csw/share/spider/games/1000.071 0644 root bin +f none /opt/csw/share/spider/games/1000.072 0644 root bin +f none /opt/csw/share/spider/games/1000.073 0644 root bin +f none /opt/csw/share/spider/games/1000.074 0644 root bin +f none /opt/csw/share/spider/games/1000.075 0644 root bin +f none /opt/csw/share/spider/games/1000.076 0644 root bin +f none /opt/csw/share/spider/games/1000.077 0644 root bin +f none /opt/csw/share/spider/games/1000.078 0644 root bin +f none /opt/csw/share/spider/games/1000.079 0644 root bin +f none /opt/csw/share/spider/games/1000.080 0644 root bin +f none /opt/csw/share/spider/games/1000.081 0644 root bin +f none /opt/csw/share/spider/games/1000.082 0644 root bin +f none /opt/csw/share/spider/games/1000.083 0644 root bin +f none /opt/csw/share/spider/games/1000.084 0644 root bin +f none /opt/csw/share/spider/games/1000.085 0644 root bin +f none /opt/csw/share/spider/games/1000.086 0644 root bin +f none /opt/csw/share/spider/games/1000.087 0644 root bin +f none /opt/csw/share/spider/games/1000.088 0644 root bin +f none /opt/csw/share/spider/games/1000.089 0644 root bin +f none /opt/csw/share/spider/games/1000.090 0644 root bin +f none /opt/csw/share/spider/games/1000.091 0644 root bin +f none /opt/csw/share/spider/games/1000.092 0644 root bin +f none /opt/csw/share/spider/games/1000.093 0644 root bin +f none /opt/csw/share/spider/games/1000.094 0644 root bin +f none /opt/csw/share/spider/games/1000.095 0644 root bin +f none /opt/csw/share/spider/games/1000.096 0644 root bin +f none /opt/csw/share/spider/games/1000.097 0644 root bin +f none /opt/csw/share/spider/games/1000.098 0644 root bin +f none /opt/csw/share/spider/games/1000.099 0644 root bin +f none /opt/csw/share/spider/games/1000.100 0644 root bin +f none /opt/csw/share/spider/games/1000.101 0644 root bin +f none /opt/csw/share/spider/games/1000.102 0644 root bin +f none /opt/csw/share/spider/games/1000.103 0644 root bin +f none /opt/csw/share/spider/games/1000.104 0644 root bin +f none /opt/csw/share/spider/games/1000.105 0644 root bin +f none /opt/csw/share/spider/games/1000.106 0644 root bin +f none /opt/csw/share/spider/games/1000.107 0644 root bin +f none /opt/csw/share/spider/games/1000.108 0644 root bin +f none /opt/csw/share/spider/games/1000.109 0644 root bin +f none /opt/csw/share/spider/games/1000.110 0644 root bin +f none /opt/csw/share/spider/games/1000.111 0644 root bin +f none /opt/csw/share/spider/games/1000.112 0644 root bin +f none /opt/csw/share/spider/games/1000.113 0644 root bin +f none /opt/csw/share/spider/games/1000.114 0644 root bin +f none /opt/csw/share/spider/games/1000.115 0644 root bin +f none /opt/csw/share/spider/games/1000.116 0644 root bin +f none /opt/csw/share/spider/games/1000.117 0644 root bin +f none /opt/csw/share/spider/games/1000.118 0644 root bin +f none /opt/csw/share/spider/games/1000.119 0644 root bin +f none /opt/csw/share/spider/games/1000.120 0644 root bin +f none /opt/csw/share/spider/games/1000.121 0644 root bin +f none /opt/csw/share/spider/games/1000.122 0644 root bin +f none /opt/csw/share/spider/games/1000.123 0644 root bin +f none /opt/csw/share/spider/games/1000.124 0644 root bin +f none /opt/csw/share/spider/games/1000.125 0644 root bin +f none /opt/csw/share/spider/games/1000.126 0644 root bin +f none /opt/csw/share/spider/games/1000.127 0644 root bin +f none /opt/csw/share/spider/games/1000.128 0644 root bin +f none /opt/csw/share/spider/games/1000.129 0644 root bin +f none /opt/csw/share/spider/games/1000.130 0644 root bin +f none /opt/csw/share/spider/games/1000.131 0644 root bin +f none /opt/csw/share/spider/games/1000.132 0644 root bin +f none /opt/csw/share/spider/games/1000.133 0644 root bin +f none /opt/csw/share/spider/games/1000.134 0644 root bin +f none /opt/csw/share/spider/games/1000.135 0644 root bin +f none /opt/csw/share/spider/games/1000.136 0644 root bin +f none /opt/csw/share/spider/games/1000.137 0644 root bin +f none /opt/csw/share/spider/games/1000.138 0644 root bin +f none /opt/csw/share/spider/games/1000.139 0644 root bin +f none /opt/csw/share/spider/games/1000.140 0644 root bin +f none /opt/csw/share/spider/games/1000.141 0644 root bin +f none /opt/csw/share/spider/games/1000.142 0644 root bin +f none /opt/csw/share/spider/games/1000.143 0644 root bin +f none /opt/csw/share/spider/games/1000.144 0644 root bin +f none /opt/csw/share/spider/games/1000.145 0644 root bin +f none /opt/csw/share/spider/games/1000.146 0644 root bin +f none /opt/csw/share/spider/games/1000.147 0644 root bin +f none /opt/csw/share/spider/games/1000.148 0644 root bin +f none /opt/csw/share/spider/games/1000.149 0644 root bin +f none /opt/csw/share/spider/games/1000.150 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/spider 0755 root bin Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,6 @@ +set -x +make install +make install.man +make install.doc +chown -R games.games /usr/local/Games/bin/spider +chown -R games.games /usr/local/Games/lib/spider Property changes on: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,320 @@ +/**/# Run imake -DUseInstalled -I/usr/lib/X11/config to make a Makefile. +/**/# This is an R4 style Imakefile, so will need the R4 config files to +/**/# to make a Makefile. It also assume that X11 is installed in /usr/lib. + + SHAR = shar -a + COMPRESS = compress + BTOA = btoa + SPLIT = split + CAT = cat +/***** Note: probably want to define this to be something else *****/ + HELPDIR = /usr/local/Games/lib/spider + +/***** Note: Used to over-ride some declarations in the default Imakefile + configurations. If you want to use some of these things, then + set OverrideDefs to YES below and change the corresponding + definitions to what you would like them to be below. Delete + or comment out those you do not wish to use *****/ +#ifndef OverrideDefs +#define OverrideDefs YES +#endif + +#if OverrideDefs + +# ifdef ManSuffix +# undef ManSuffix +# define ManSuffix 6 +# else +# define ManSuffix 6 +# endif + MANSUFFIX = ManSuffix + MANDIR = /usr/local/Games/man/man$(MANSUFFIX) + BINDIR = /usr/local/Games/bin + MKDIRHIER = /usr/openwin/bin/mkdirhier + +#endif /* OverrideDefs */ + +/***** Note: if your OS or libc does not have usleep defined, set this + to YES. (SunOS is one that does have usleep in libc) *****/ +#ifndef NeedsLocalUsleep +#define NeedsLocalUsleep NO +#endif + +/***** Note: if your OS or libc does not have strdup defined, set this + to YES. (SunOS is one that does have strdup in libc) *****/ +#ifndef NeedsLocalStrdup +#define NeedsLocalStrdup NO +#endif + +/***** Note: only need XViewHasOlgx when using XView 2.0 or greater *****/ +#ifndef XViewNeedsOlgx +#define XViewNeedsOlgx YES +#endif + +/***** Note: cannot have CompileXlibOnly, CompileXView, and CompileXAW + all be true. Need to pick one *****/ +#ifndef CompileXlibOnly +#define CompileXlibOnly NO +#endif + +#ifndef CompileXView +#define CompileXView NO +#endif + +#ifndef CompileXAW +#define CompileXAW YES +#endif + +#if CompileXlibOnly +# if CompileXView +# undef CompileXView +# endif +# if CompileXAW +# undef CompileXAW +# endif +#elif CompileXView +# if CompileXAW +# undef CompileXAW +# endif +#endif + +/***** Note: cannot have both Round Cards and Small Cards be true *****/ +#ifndef RoundCards +#define RoundCards YES +#endif + +#ifndef SmallCards +#define SmallCards NO +#endif + +#if SmallCards +# if RoundCards +# undef RoundCards +# endif +#endif + +#if CompileXView +/**/# If these are not defined in the site.def file, define them now. +/**/# set up compile time dependencies for XView clients. + # XVTOP = $(XVIEWHOME) + XVTOP = $(OPENWINHOME) + XVLIBSRC = $(XVTOP)/lib +# if UseInstalled + DEPXVIEWLIB = + DEPOLGXLIB = +# else + DEPXVIEWLIB = $(XVLIBSRC)/libxview.a +# if XViewNeedsOlgx + DEPOLGXLIB = $(XVLIBSRC)/libolgx.a +# else + DEPOLGXLIB = +# endif +# endif + XVIEWLIB = -L$(XVLIBSRC) -lxview +# if XViewNeedsOlgx + OLGXLIB = -L$(XVLIBSRC) -lolgx +# else + OLGXLIB = +# endif +#endif /* CompileXView */ + + KL_DIST = main.c +#if CompileXlibOnly +# if RoundCards + DEPLIBS = $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XMULIB) $(XLIB) +# else + DEPLIBS = $(DEPXLIB) + LOCAL_LIBRARIES = $(XLIB) +# endif + TKOBJS = main.o + + TKSRCS = main.c + + TKHEADERS = + + TKBITMAPS = + + TKDOCS = + + TKDEFINES = -DKITLESS + + TKINCLUDES = + + TARGET = spider +#endif /* CompileXlibOnly */ + + XVIEW_DIST = xv_ui.c xv_stubs.c xv_ui.h spider.info +#if CompileXView +# if RoundCards + DEPLIBS = $(DEPXVIEWLIB) $(DEPOLGXLIB) $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XVIEWLIB) $(OLGXLIB) $(XMULIB) $(XLIB) +# else + DEPLIBS = $(DEPXVIEWLIB) $(DEPOLGXLIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XVIEWLIB) $(OLGXLIB) $(XLIB) +# endif + TKOBJS = xv_ui.o xv_stubs.o + + TKSRCS = xv_ui.c xv_stubs.c + + TKHEADERS = xv_ui.h + + TKBITMAPS = + + TKDOCS = spider.info + + TKDEFINES = -DXVIEW + + TKINCLUDES = -I$(XVTOP)/include + + TARGET = spider +#endif /* CompileXView */ + + XAW_DIST = xaw_ui.c xaw_stubs.c xaw_ui.h +#if CompileXAW + DEPLIBS = $(DEPXAWLIB) $(DEPXTOOLLIB) $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XAWLIB) $(XTOOLLIB) $(XMULIB) $(XLIB) + + TKOBJS = xaw_ui.o xaw_stubs.o + + TKSRCS = xaw_ui.c xaw_stubs.c + + TKHEADERS = xaw_ui.h + + TKBITMAPS = + + TKDOCS = + + TKDEFINES = -DXAW + + TKINCLUDES = + + TARGET = spider +#endif /* CompileXAW */ + +BASE_OBJS = gfx.o spider.o events.o windows.o movelog.o util.o version.o +OBJS = $(BASE_OBJS) $(TKOBJS) + +BASE_SRCS = gfx.c spider.c events.c windows.c movelog.c util.c version.c +SRCS = $(BASE_SRCS) $(TKSRCS) + +BASE_HEADERS = globals.h defs.h assert.h +HEADERS = $(BASE_HEADERS) $(TKHEADERS) + +BASE_BITMAPS = rank.bm suit.bm face.bm spider.bm cards.bm.aa cards.bm.ab +BITMAPS = $(BASE_BITMAPS) $(TKBITMAPS) + +BASE_DOCS = doc.intro doc.rules doc.controls doc.examples doc.misc doc.summary +DOCS = $(BASE_DOCS) $(TKDOCS) + +MISC = Imakefile Makefile.sunpro README spider.man + +ALL_SRCS = $(MISC) $(BASE_SRCS) $(BASE_HEADERS) $(BASE_BITMAPS) $(BASE_DOCS) \ + $(XVIEW_DIST) $(XAW_DIST) $(KL_DIST) + +#if NeedsLocalUsleep +# if NeedsLocalStrdup +UTILDEFS = -DLOCAL_USLEEP -DLOCAL_STRDUP +# else +UTILDEFS = -DLOCAL_USLEEP +# endif +#else +# if NeedsLocalStrdup +UTILDEFS = -DLOCAL_STRDUP +# else +UTILDEFS = +# endif +#endif + +#if SmallCards +DEFINES = $(TKDEFINES) -DSMALL_CARDS -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) +#else +# if RoundCards +DEFINES = $(TKDEFINES) -DROUND_CARDS -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) +# else +DEFINES = $(TKDEFINES) -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) +# endif +#endif + +INCLUDES = -I. $(TKINCLUDES) + +CPPFLAGS = + +all:: $(TARGET) + +#if SmallCards +all:: + - at if [ ! -f cards.bm ]; then cat cards.bm.aa cards.bm.ab > cards.bm; fi +#endif +#if OverrideDefs +MakeDirectories(install,$(BINDIR)) +MakeDirectories(install.man, $(MANDIR)) +#endif + +ComplexProgramTarget($(TARGET)) + +#ifdef SparcArchitecture +/**/# SunOS4.0.3 sparc optimizer slimes this file +util.o: util.c + $(CC) $(CPPFLAGS) $(DEFINES) $(INCLUDES) -c util.c +#endif + +version.o: version.c + $(CC) -DDATE="\"`date`\"" -c version.c + +MakeDirectories(install.doc,$(HELPDIR)) +InstallMultipleDest(install.doc,$(DOCS),$(HELPDIR)) + +World:: + @echo "" + @echo "Begin build of the $(TARGET) application for the" +#if CompileXView + @echo "XView toolkit version." +#else +# if CompileXlibOnly + @echo "Xlib only, no toolkit version." +# else +# if CompileXAW + @echo "Athena Widget toolkit version." +# endif +# endif +#endif +#if SmallCards + @echo "Using cards with small bitmaps for a low resolution display." +#else +# if RoundCards + @echo "Using cards with normal bitmaps and optional rounded edges." +# else + @echo "Using cards with normal bitmaps." +# endif +#endif + @echo "" + @date + @echo "" + $(MAKE) $(MFLAGS) clean + $(MAKE) $(MFLAGS) depend + $(MAKE) $(MFLAGS) + @echo "" + @date + @echo "" + @echo "Begin installation... " + $(MAKE) $(MFLAGS) -k install + $(MAKE) $(MFLAGS) -k install.doc + $(MAKE) $(MFLAGS) -k install.man + @echo "" + @date + @echo "" + @echo "Installation complete...now type 'make clean'" + +clean:: + $(RM) spider.shar spider.a spider.a.a?a cards.bm + +shar:: + $(SHAR) $(ALL_SRCS) > spider.shar + +dist:: shar + $(RM) spider.shar.Z + $(COMPRESS) spider.shar + $(CAT) spider.shar.Z | $(BTOA) > spider.a + $(SPLIT) spider.a spider.a. + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,38 @@ + File Name Archive # Description +----------------------------------------------------------- + Imakefile 1 + MANIFEST 1 This shipping list + Makefile.sunpro 1 + README 1 + assert.h 1 + cards.bm.aa 9 + cards.bm.ab 7 + copyright.h 2 + defs.h 2 + doc.controls 2 + doc.examples 8 + doc.intro 1 + doc.misc 1 + doc.rules 1 + doc.summary 1 + events.c 2 + face.bm 6 + gfx.c 5 + globals.h 1 + main.c 1 + movelog.c 3 + rank.bm 1 + spider.bm 1 + spider.c 4 + spider.info 2 + spider.man 1 + suit.bm 1 + util.c 1 + version.c 1 + windows.c 1 + xaw_stubs.c 2 + xaw_ui.c 3 + xaw_ui.h 1 + xv_stubs.c 4 + xv_ui.c 3 + xv_ui.h 1 Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,751 @@ +# Makefile generated by imake - do not edit! +# $XConsortium: imake.c,v 1.89 94/08/12 00:45:51 gildea Exp $ + +# ----------------------------------------------------------------------- +# Makefile generated from "Imake.tmpl" and +# $XConsortium: Imake.tmpl,v 1.219 94/05/13 15:58:31 matt Exp $ +# $SunSoft: @(#)Imake.tmpl 1.1 01/13/97 16:16:22 $ +# + +# ************************************************************************** +# NOTE: +# +# If the user does not define DESTDIR and/or BINDIR in the local Imakefile, +# 'make install' will install the resultant binaries in /usr/openwin/bin. +# This usually fails because of lack of write permission in that directory +# for non-root users. +# +# The reason is that the default definition of ProjectRoot is /usr/openwin. +# This value determines all other definitions, e.g. the binary, library and +# manual page directories, etc. The destination directory, DESTDIR, is not +# defined and BINDIR is defined as $(ProjectRoot)/bin in Project.tmpl. +# +# Care must be taken when changing ProjectRoot. It affects the inclusion +# path of 'imake' in finding the *.cf, *.def, *.tmpl and *.rules files, +# which are in /usr/openwin/lib/X11/config/, and the default inclusion path +# of X11 header files and libraries. Therefore, if ProjectRoot is changed +# not only these configuration files need to be copied to a proper location, +# defined by IRULESRC, so 'make Makefile' can work properly, the header file +# inclusion path, /usr/openwin/include, and the library search path, +# /usr/openwin/lib, also need to be defined properly either in the local +# Imakefile or one of the configuration files to avoid compilation errors +# for programs that use X11 header files or libraries. +# +# Please refer to Project.tmpl, Imake.tmpl, site.def, etc. in +# /usr/openwin/lib/X11/config/ for details. +# ************************************************************************** + +.SUFFIXES: .i + +# $XConsortium: Imake.cf,v 1.12 94/03/29 15:42:08 gildea Exp $ +# $SunSoft: @(#)Imake.cf 1.1 01/13/97 16:16:21 $ + +# ----------------------------------------------------------------------- +# site-specific configuration parameters that need to come before +# the platform-specific parameters - edit site.def to change + +# site: $XConsortium: site.sample,v 1.11 94/06/03 19:50:12 matt Exp $ +# site: $SunSoft: @(#)site.def 1.1 01/13/97 16:16:27$ + +# ----------------------------------------------------------------------- +# platform-specific configuration parameters - edit sun.cf to change + +# platform: $XConsortium: sun.cf,v 1.133 94/07/08 12:23:12 gildea Exp $ +# platform: $SunSoft: @(#)sun.cf 1.11 05/04/01 13:49:33 $ + +# operating system: SunOS 5.9 + +# SUNSOFT SUNSOFT_LOADABLE + +# $XConsortium: svr4.cf,v 1.6 94/04/08 18:56:33 rws Exp $ +# $SunSoft: @(#)svr4.cf 1.1 01/13/97 16:16:29 $ + +# $XConsortium: sv4Lib.rules,v 1.14 94/04/09 12:00:10 rws Exp $ +# $SunSoft: @(#)sv4Lib.rules 1.1 01/13/97 16:16:28 $ + +# SUNSOFT SUNSOFT_LOADABLE + + TROFFTOPS = /usr/lib/lp/postscript/dpost | /usr/lib/lp/postscript/postreverse -r + +# ----------------------------------------------------------------------- +# site-specific configuration parameters that go after +# the platform-specific parameters - edit site.def to change + +# site: $XConsortium: site.sample,v 1.11 94/06/03 19:50:12 matt Exp $ +# site: $SunSoft: @(#)site.def 1.1 01/13/97 16:16:27$ + +INSTALLFLAGS = -o bin -g bin -m 0644 + +USRINCLUDEDIR = /usr/local/C/include +USRINCDIR = /usr/local/C/include + +APPDEFDIR = /usr/local/X11/lib/app-defaults +APPDEFDIR1 = /usr/openwin/lib/app-defaults +APPDEFDIR2 = /usr/dt/app-defaults/C + +# ----------------------------------------------------------------------- +# Imake rules for building libraries, programs, scripts, and data files +# rules: $XConsortium: Imake.rules,v 1.193 94/04/10 17:39:55 rws Exp $ +# rules: $SunSoft: @(#)Imake.rules 1.1 01/13/97 16:16:21 $ + +# SUNSOFT SUNSOFT_LOADABLE + + PATHSEP = / + SHELL = /bin/sh + + TOP = . + CURRENT_DIR = . + + IMAKE = imake + DEPEND = makedepend + MKDIRHIER = mkdirhier + CONFIGSRC = $(TOP)/config + IMAKESRC = $(CONFIGSRC)/imake + DEPENDSRC = $(CONFIGSRC)/makedepend + IXXSRC = $(UNSUPPORTEDSRC)/programs/ixx + IXX = ixx + IXXFLAGS = -s BaseObject -m TypeObj -r RequestObj -p Xf + IXXINCLUDES = -i '' + + INCROOT = /usr/openwin/include + USRLIBDIR = /usr/local/C/lib + SHLIBDIR = /usr/local/C/lib + LINTLIBDIR = $(USRLIBDIR) + MANPATH = /usr/local/X11/man + MANSOURCEPATH = /usr/local/X11/man/man + MANDIR = $(MANSOURCEPATH)1 + LIBMANDIR = $(MANSOURCEPATH)3 + FILEMANDIR = $(MANSOURCEPATH)$(FILEMANSUFFIX) + + AR = /usr/ccs/bin/ar cq + BOOTSTRAPCFLAGS = -DSVR4 + CC = gcc -fpcc-struct-return + AS = /usr/ccs/bin/as + + COMPRESS = compress + CPP = /usr/ccs/lib/cpp $(STD_CPP_DEFINES) + PREPROCESSCMD = gcc -fpcc-struct-return -E $(STD_CPP_DEFINES) + INSTALL = /usr/local/bin/install + INSTALLFLAGS = -c + LD = /usr/ccs/bin/ld + LEX = /usr/ccs/bin/lex + LEXLIB = -ll + YACC = /usr/ccs/bin/yacc + CCYACC = /usr/ccs/bin/yacc + LINT = lint + LINTLIBFLAG = -y -o + LINTOPTS = -b -h -Xc + LN = ln -s + MAKE = /usr/ccs/bin/make + MV = mv + CP = cp + + RM = rm -f + MANSUFFIX = 1 + LIBMANSUFFIX = 3 + FILEMANSUFFIX = 4 + TROFF = troff -t -Tpost + MSMACROS = -ms + TBL = tbl + EQN = eqn + + DVIPS = dvips + LATEX = latex + + STD_INCLUDES = -I/usr/local/C/include -I/usr/sfw/include -I/opt/csw/include -I/opt/sfw/include + STD_CPP_DEFINES = -Dsun -Dsparc -DSVR4 -DSYSV + STD_DEFINES = -Dsun -Dsparc -DSVR4 -DSYSV + EXTRA_LOAD_FLAGS = -L/usr/local/C/lib -R/usr/local/C/lib -L/usr/sfw/lib -R/usr/sfw/lib -L/opt/csw/lib -R/opt/csw/lib -L/opt/sfw/lib -R/opt/sfw/lib + EXTRA_LDOPTIONS = + EXTRA_LIBRARIES = -lsocket -lnsl + TAGS = ctags + + SHAREDCODEDEF = + SHLIBDEF = + + SHLIBLDFLAGS = -G -z text -M mapfile + + PICFLAGS = -fpic + + CXXPICFLAGS = -K PIC + + PROTO_DEFINES = + + INSTPGMFLAGS = -s -o bin -g bin -m 0755 + + INSTBINFLAGS = -s -o bin -g bin -m 0755 + INSTUIDFLAGS = -o bin -g bin -m 04755 + INSTLIBFLAGS = -o bin -g bin -m 0644 + INSTINCFLAGS = -o bin -g bin -m 0644 + INSTMANFLAGS = -o bin -g bin -m 0644 + INSTDATFLAGS = -o bin -g bin -m 0644 + INSTKMEMFLAGS = -o bin -g kmem -m 02755 + + PROJECTROOT = /usr/openwin + + TOP_INCLUDES = -I$(INCROOT) + + CDEBUGFLAGS = -O + CCOPTIONS = + + ALLINCLUDES = $(INCLUDES) $(EXTRA_INCLUDES) $(TOP_INCLUDES) $(STD_INCLUDES) + ALLDEFINES = $(ALLINCLUDES) $(STD_DEFINES) $(EXTRA_DEFINES) $(PROTO_DEFINES) $(THREADS_DEFINES) $(DEFINES) + CFLAGS = $(CDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(ALLDEFINES) + LINTFLAGS = $(LINTOPTS) -DLINT $(ALLDEFINES) $(DEPEND_DEFINES) + LDPRELIB = -L$(USRLIBDIR) + LDPOSTLIB = + LDOPTIONS = $(CDEBUGFLAGS) $(CCOPTIONS) $(EXTRA_LDOPTIONS) $(THREADS_LDFLAGS) $(LOCAL_LDFLAGS) $(LDPRELIB) + CXXLDOPTIONS = $(CXXDEBUGFLAGS) $(CXXOPTIONS) $(EXTRA_LDOPTIONS) $(THREADS_CXXLDFLAGS) $(LOCAL_LDFLAGS) $(LDPRELIB) + + LDLIBS = $(LDPOSTLIB) $(THREADS_LIBS) $(SYS_LIBRARIES) $(EXTRA_LIBRARIES) + + CCENVSETUP = LD_RUN_PATH=$(USRLIBDIR) + CCLINK = $(CCENVSETUP) $(CC) + + CXXENVSETUP = LD_RUN_PATH=$(USRLIBDIR) + CXXLINK = $(CXXENVSETUP) $(CXX) + + LDSTRIPFLAGS = -x + LDCOMBINEFLAGS = -r + DEPENDFLAGS = + + MACROFILE = sun.cf + RM_CMD = $(RM) + + IMAKE_DEFINES = + + IRULESRC = $(CONFIGDIR) + IMAKE_CMD = $(IMAKE) -DUseInstalled -I$(IRULESRC) $(IMAKE_DEFINES) + + ICONFIGFILES = $(IRULESRC)/Imake.tmpl $(IRULESRC)/Project.tmpl \ + $(IRULESRC)/site.def $(IRULESRC)/$(MACROFILE) \ + $(EXTRA_ICONFIGFILES) + +# ----------------------------------------------------------------------- +# X Window System Build Parameters and Rules +# $XConsortium: Project.tmpl,v 1.242 94/04/13 14:58:40 rws Exp $ +# $SunSoft: @(#)Project.tmpl 1.6 05/30/02 19:12:02 $ + +# SUNSOFT SUNSOFT_LOADABLE + +# ----------------------------------------------------------------------- +# X Window System make variables; these need to be coordinated with rules + + BINDIR = /usr/local/X11/bin + BUILDINCROOT = $(TOP) + BUILDINCDIR = $(BUILDINCROOT)/X11 + BUILDINCTOP = .. + BUILDLIBDIR = $(TOP)/usrlib + BUILDLIBTOP = .. + INCDIR = $(INCROOT)/X11 + ADMDIR = /usr/adm + LIBDIR = /usr/local/X11/lib + + FONTDIR = $(LIBDIR)/fonts + XINITDIR = $(LIBDIR)/xinit + XDMDIR = $(LIBDIR)/xdm + TWMDIR = $(LIBDIR)/twm + NLSDIR = $(LIBDIR)/nls + XLOCALEDIR = $(PROJECTROOT)/lib/locale + PEXAPIDIR = $(LIBDIR)/PEX + XAPPLOADDIR = $(LIBDIR)/app-defaults + FONTCFLAGS = -t + + INSTAPPFLAGS = $(INSTDATFLAGS) + + RGB = rgb + FONTC = bdftopcf + MKFONTDIR = mkfontdir + + DOCUTILSRC = $(TOP)/doc/util + XDOCMACROS = $(DOCUTILSRC)/macros.t + XIDXMACROS = $(DOCUTILSRC)/indexmacros.t + PROGRAMSRC = $(TOP)/programs + LIBSRC = $(TOP)/lib + FONTSRC = $(TOP)/fonts + INCLUDESRC = $(TOP)/X11 + SERVERSRC = $(TOP)/programs/Xserver + CONTRIBSRC = $(TOP)/../contrib + UNSUPPORTEDSRC = $(TOP)/unsupported + DOCSRC = $(TOP)/doc + RGBSRC = $(TOP)/programs/rgb + BDFTOPCFSRC = $(PROGRAMSRC)/bdftopcf + MKFONTDIRSRC = $(PROGRAMSRC)/mkfontdir + FONTSERVERSRC = $(PROGRAMSRC)/xfs + FONTINCSRC = $(TOP)/include/fonts + EXTINCSRC = $(TOP)/include/extensions + TRANSCOMMSRC = $(LIBSRC)/xtrans + TRANS_INCLUDES = -I$(TRANSCOMMSRC) + +# $XConsortium: sunLib.tmpl,v 1.37 95/05/23 14:31:40 matt Exp $ +# SunSoft: @(#)sunLib.tmpl 1.4 05/30/02 17:00:20 + +# $XConsortium: sv4Lib.tmpl,v 1.19 93/12/03 10:48:36 kaleb Exp $ +# $SunSoft: @(#)sv4Lib.tmpl 1.1 01/13/97 16:16:29 $ + +XMULIBONLY = -lXmu -lm +XMULIB = -lXmu -lm + + SERVERLIB = /usr/openwin/server/lib + + SERVERMODULES = /usr/openwin/server/modules + + SERVERETC = /usr/openwin/server/etc + +SHLIBLDFLAGS = -G -z text -M mapfile +PICFLAGS = -fpic +MAPFILE = mapfile + + XLIBSRC = $(LIBSRC)/X11 + +SOXLIBREV = 4 +DEPXONLYLIB = +XONLYLIB = -lX11 + +LINTXONLY = $(LINTLIBDIR)/llib-lX11.ln + + XLIBONLY = $(XONLYLIB) + + XEXTLIBSRC = $(LIBSRC)/Xext + +SOXEXTREV = 0 +DEPEXTENSIONLIB = +EXTENSIONLIB = -lXext + +LINTEXTENSION = $(LINTLIBDIR)/llib-lXext.ln + +LINTEXTENSIONLIB = $(LINTEXTENSION) + DEPXLIB = $(DEPEXTENSIONLIB) $(DEPXONLYLIB) + XLIB = $(EXTENSIONLIB) $(XONLYLIB) + LINTXLIB = $(LINTXONLYLIB) + + XAUTHSRC = $(LIBSRC)/Xau + +DEPXAUTHLIB = $(USRLIBDIR)/libXau.a +XAUTHLIB = -lXau + +LINTXAUTH = $(LINTLIBDIR)/llib-lXau.ln + + XDMCPLIBSRC = $(LIBSRC)/Xdmcp + +DEPXDMCPLIB = $(USRLIBDIR)/libXdmcp.a +XDMCPLIB = -lXdmcp + +LINTXDMCP = $(LINTLIBDIR)/llib-lXdmcp.ln + + XMUSRC = $(LIBSRC)/Xmu + +SOXMUREV = 4 +DEPXMULIB = +XMULIB = -lXmu + +LINTXMU = $(LINTLIBDIR)/llib-lXmu.ln + +XMULIB = -lXmu -lm + + XCONFIGSRC = $(LIBSRC)/Xconfig + +SOXCONFIGREV = 0 +DEPXCONFIGLIB = +XCONFIGLIB = -lXconfig + +LINTXCONFIG = $(LINTLIBDIR)/llib-lXconfig.ln + + DGASRC = $(LIBSRC)/dga + +SODGAREV = 1 +DEPDGASRCLIB = +DGASRCLIB = -ldga + +LINTDGASRC = $(LINTLIBDIR)/llib-ldga.ln + + MISRC = $(SERVERSRC)/mi + +SOMIREV = 1 +DEPMILIB = +MILIB = -lmi + +LINTMI = $(LINTLIBDIR)/llib-lmi.ln + + MFBSRC = $(SERVERSRC)/mfb + +SOMFBREV = 1 +DEPMFBLIB = +MFBLIB = -lmfb + +LINTMFB = $(LINTLIBDIR)/llib-lmfb.ln + + CFBSRC = $(SERVERSRC)/cfb + +SOCFBREV = 1 +DEPCFBLIB = +CFBLIB = -lcfb + +LINTCFB = $(LINTLIBDIR)/llib-lcfb.ln + + OLDXLIBSRC = $(LIBSRC)/oldX + +SOOLDXREV = 6 +DEPOLDXLIB = +OLDXLIB = -loldX + +LINTOLDX = $(LINTLIBDIR)/llib-loldX.ln + + TOOLKITSRC = $(LIBSRC)/Xt + +SOXTREV = 4 +DEPXTOOLONLYLIB = +XTOOLONLYLIB = -lXt + +LINTXTOOLONLY = $(LINTLIBDIR)/llib-lXt.ln + + DEPXTOOLLIB = $(DEPXTOOLONLYLIB) $(DEPSMLIB) $(DEPICELIB) + XTOOLLIB = $(XTOOLONLYLIB) $(SMLIB) $(ICELIB) + LINTXTOOLLIB = $(LINTXTOOLONLYLIB) + + AWIDGETSRC = $(LIBSRC)/Xaw + +SOXAWREV = 5 +DEPXAWLIB = +XAWLIB = -lXaw + +LINTXAW = $(LINTLIBDIR)/llib-lXaw.ln + + XTFSRC = $(TOP)/workInProgress/Xtf + +SOXTFREV = 0.7 +DEPXTFLIB = +XTFLIB = -lXtf + +LINTXTF = $(LINTLIBDIR)/llib-lXtf.ln + + FRESCOSRC = $(TOP)/workInProgress/Fresco + +SOFRESCOREV = 0.7 +DEPFRESCOLIB = +FRESCOLIB = -lFresco + +LINTFRESCO = $(LINTLIBDIR)/llib-lFresco.ln + + XILIBSRC = $(LIBSRC)/Xi + +SOXINPUTREV = 5 +DEPXILIB = +XILIB = -lXi + +LINTXI = $(LINTLIBDIR)/llib-lXi.ln + + XTESTLIBSRC = $(LIBSRC)/Xtst + +SOXTESTREV = 1 +DEPXTESTLIB = +XTESTLIB = -lXtst + +LINTXTEST = $(LINTLIBDIR)/llib-lXtst.ln + + PEXLIBSRC = $(LIBSRC)/PEX5 + +SOPEXREV = 6 +DEPPEXLIB = +PEXLIB = -lPEX5 + +LINTPEX = $(LINTLIBDIR)/llib-lPEX5.ln + +SODPSREV = 5 +SOSERVERDPSREV = 5 + + DPSLIBSRC = $(LIBSRC)/DPS + +SODPSREV = 5 +DEPDPSLIB = +DPSLIB = -lDPS + +LINTDPS = $(LINTLIBDIR)/llib-lDPS.ln + + XIELIBSRC = $(LIBSRC)/XIE + +SOXIEREV = 6 +DEPXIELIB = +XIELIB = -lXIE + +LINTXIE = $(LINTLIBDIR)/llib-lXIE.ln + + PHIGSLIBSRC = $(LIBSRC)/PHIGS + +DEPPHIGSLIB = $(USRLIBDIR)/libphigs.a +PHIGSLIB = -lphigs + +LINTPHIGS = $(LINTLIBDIR)/llib-lphigs.ln + +DEPXBSDLIB = $(USRLIBDIR)/libXbsd.a +XBSDLIB = -lXbsd + +LINTXBSD = $(LINTLIBDIR)/llib-lXbsd.ln + + ICESRC = $(LIBSRC)/ICE + +SOICEREV = 6 +DEPICELIB = +ICELIB = -lICE + +LINTICE = $(LINTLIBDIR)/llib-lICE.ln + + SMSRC = $(LIBSRC)/SM + +SOSMREV = 6 +DEPSMLIB = +SMLIB = -lSM + +LINTSM = $(LINTLIBDIR)/llib-lSM.ln + + FSLIBSRC = $(LIBSRC)/FS + +SOFSREV = 5 +DEPFSLIB = +FSLIB = -lFS + +LINTFS = $(LINTLIBDIR)/llib-lFS.ln + + FONTLIBSRC = $(LIBSRC)/font + +DEPFONTLIB = $(USRLIBDIR)/libfont.a +FONTLIB = -lfont + +LINTFONT = $(LINTLIBDIR)/llib-lfont.ln + + XRENDERLIBSRC = $(LIBSRC)/Xrender + +SOXRENDERREV = 1 +DEPXRENDERLIB = +XRENDERLIB = -lXrender + +LINTXRENDER = $(LINTLIBDIR)/llib-lXrender.ln + +XRENDERLIB = -L/usr/openwin/sfw/lib -R/usr/openwin/lib:/usr/openwin/sfw/lib -lXrender + + DEPLIBS = $(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB) + + DEPLIBS1 = $(DEPLIBS) + DEPLIBS2 = $(DEPLIBS) + DEPLIBS3 = $(DEPLIBS) + + CONFIGDIR = $(LIBDIR)/config + +# ----------------------------------------------------------------------- +# start of Imakefile + +# Run imake -DUseInstalled -I/usr/lib/X11/config to make a Makefile. +# This is an R4 style Imakefile, so will need the R4 config files to +# to make a Makefile. It also assume that X11 is installed in /usr/lib. + + SHAR = shar -a + COMPRESS = compress + BTOA = btoa + SPLIT = split + CAT = cat + + HELPDIR = /usr/local/Games/lib/spider + + MANSUFFIX = 6 + MANDIR = /usr/local/Games/man/man$(MANSUFFIX) + BINDIR = /usr/local/Games/bin + MKDIRHIER = /usr/openwin/bin/mkdirhier + + KL_DIST = main.c + + XVIEW_DIST = xv_ui.c xv_stubs.c xv_ui.h spider.info + + XAW_DIST = xaw_ui.c xaw_stubs.c xaw_ui.h + + DEPLIBS = $(DEPXAWLIB) $(DEPXTOOLLIB) $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XAWLIB) $(XTOOLLIB) $(XMULIB) $(XLIB) + + TKOBJS = xaw_ui.o xaw_stubs.o + + TKSRCS = xaw_ui.c xaw_stubs.c + + TKHEADERS = xaw_ui.h + + TKBITMAPS = + + TKDOCS = + + TKDEFINES = -DXAW + + TKINCLUDES = + + TARGET = spider + +BASE_OBJS = gfx.o spider.o events.o windows.o movelog.o util.o version.o +OBJS = $(BASE_OBJS) $(TKOBJS) + +BASE_SRCS = gfx.c spider.c events.c windows.c movelog.c util.c version.c +SRCS = $(BASE_SRCS) $(TKSRCS) + +BASE_HEADERS = globals.h defs.h assert.h +HEADERS = $(BASE_HEADERS) $(TKHEADERS) + +BASE_BITMAPS = rank.bm suit.bm face.bm spider.bm cards.bm.aa cards.bm.ab +BITMAPS = $(BASE_BITMAPS) $(TKBITMAPS) + +BASE_DOCS = doc.intro doc.rules doc.controls doc.examples doc.misc doc.summary +DOCS = $(BASE_DOCS) $(TKDOCS) + +MISC = Imakefile Makefile.sunpro README spider.man + +ALL_SRCS = $(MISC) $(BASE_SRCS) $(BASE_HEADERS) $(BASE_BITMAPS) $(BASE_DOCS) \ + $(XVIEW_DIST) $(XAW_DIST) $(KL_DIST) + +UTILDEFS = + +DEFINES = $(TKDEFINES) -DROUND_CARDS -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) + +INCLUDES = -I. $(TKINCLUDES) + +CPPFLAGS = + +all:: $(TARGET) + +install:: + @case '${MFLAGS}' in *[i]*) set +e;; esac; + @for i in $(BINDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi \ + done + +install.man:: + @case '${MFLAGS}' in *[i]*) set +e;; esac; + @for i in $(MANDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi \ + done + + PROGRAM = $(TARGET) + +all:: $(TARGET) + +$(TARGET): $(OBJS) $(DEPLIBS) + $(RM) $@ + $(CCLINK) -o $@ $(LDOPTIONS) $(OBJS) $(LOCAL_LIBRARIES) $(LDLIBS) $(EXTRA_LOAD_FLAGS) + +install:: $(TARGET) + @if [ -d $(DESTDIR)$(BINDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(BINDIR)); fi + $(INSTALL) $(INSTALLFLAGS) $(INSTPGMFLAGS) $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) + +install.man:: $(TARGET).man + @if [ -d $(DESTDIR)$(MANDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(MANDIR)); fi + instman -$(MANSUFFIX) -M $(MANDIR) -N $(TARGET) $(TARGET).man + +depend:: + $(DEPEND) $(DEPENDFLAGS) -- $(ALLDEFINES) $(DEPEND_DEFINES) -- $(SRCS) + +lint: + $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIBS) +lint1: + $(LINT) $(LINTFLAGS) $(FILE) $(LINTLIBS) + +clean:: + $(RM) $(TARGET) + +# SunOS4.0.3 sparc optimizer slimes this file +util.o: util.c + $(CC) $(CPPFLAGS) $(DEFINES) $(INCLUDES) -c util.c + +version.o: version.c + $(CC) -DDATE="\"`date`\"" -c version.c + +install.doc:: + @case '${MFLAGS}' in *[i]*) set +e;; esac; + @for i in $(HELPDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi \ + done + +install.doc:: $(DOCS) + @if [ -d $(DESTDIR)$(HELPDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(HELPDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(DOCS); do \ + (set -x; $(INSTALL) $(INSTALLFLAGS) $(INSTDATFLAGS) $$i $(DESTDIR)$(HELPDIR)); \ + done + +World:: + @echo "" + @echo "Begin build of the $(TARGET) application for the" + + @echo "Athena Widget toolkit version." + + @echo "Using cards with normal bitmaps and optional rounded edges." + + @echo "" + @date + @echo "" + $(MAKE) $(MFLAGS) clean + $(MAKE) $(MFLAGS) depend + $(MAKE) $(MFLAGS) + @echo "" + @date + @echo "" + @echo "Begin installation... " + $(MAKE) $(MFLAGS) -k install + $(MAKE) $(MFLAGS) -k install.doc + $(MAKE) $(MFLAGS) -k install.man + @echo "" + @date + @echo "" + @echo "Installation complete...now type 'make clean'" + +clean:: + $(RM) spider.shar spider.a spider.a.a?a cards.bm + +shar:: + $(SHAR) $(ALL_SRCS) > spider.shar + +dist:: shar + $(RM) spider.shar.Z + $(COMPRESS) spider.shar + $(CAT) spider.shar.Z | $(BTOA) > spider.a + $(SPLIT) spider.a spider.a. + +# ----------------------------------------------------------------------- +# common rules for all Makefiles - do not edit + +.c.i: + $(RM) $@ + $(CC) -E $(CFLAGS) $(_NOOP_) $*.c > $@ + +emptyrule:: + +clean:: + $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut "#"* + +Makefile:: + - at if [ -f Makefile ]; then set -x; \ + $(RM) Makefile.bak; $(MV) Makefile Makefile.bak; \ + else exit 0; fi + $(IMAKE_CMD) -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) + +tags:: + $(TAGS) -w *.[ch] + $(TAGS) -xw *.[ch] > TAGS + +man_keywords:: + catman -M $(DESTDIR)$(MANPATH) -w + +# ---------------------------------------------------------------------- +# empty rules for directories that do not have SUBDIRS - do not edit + +install:: + @echo "install in $(CURRENT_DIR) done" + +install.man:: + @echo "install.man in $(CURRENT_DIR) done" + +Makefiles:: + +includes:: + +depend:: + +# ----------------------------------------------------------------------- +# dependencies generated by makedepend + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,166 @@ +#/* +# * Spider +# * +# * (c) Copyright 1989, Donald R. Woods and Sun Microsystems, Inc. +# * (c) Copyright 1990, David Lemke and Network Computing Devices Inc. +# * +# * See copyright.h for the terms of the copyright. +# * +# * @(#)Makefile 2.1 90/04/27 +# * +# */ +# +# SunPro make Makefile for Spider +# +CFLAGS = -O +# define ROUND_CARDS to make them round. this slows things down a bit, +# but does make them prettier. +CPPFLAGS = -DROUND_CARDS +# if SMALL_CARDS is defined *don't* define ROUND_CARDS. +#CPPFLAGS = -DSMALL_CARDS + +# round cards require Xmu. +#LIBS = -lX11 +LIBS = -lXmu -lX11 + +# set HELPDIR to be the place where the help files will be installed +#HELPDIR = . +HELPDIR = /u6/lemke/games/lib/spider +# set BINDIR to be the place where the executables will be installed +BINDIR = . + +CPPFLAGS += -DHELPDIR="\"$(HELPDIR)\"" + +.KEEP_STATE: + +OBJS = main.o gfx.o spider.o events.o windows.o movelog.o util.o version.o + +SRCS = main.c gfx.c spider.c events.c windows.c movelog.c util.c version.c + +HEADERS = globals.h defs.h assert.h copyright.h + +XVIEW_OBJS = gfx.o spider.o events.o movelog.o util.o windows.o \ + xv_ui.o xv_stubs.o version.o + +XVIEW_SRCS = gfx.c spider.c events.c movelog.c util.c windows.c \ + xv_ui.c xv_stubs.c version.c + +XVIEW_HEADERS = ${HEADERS} xv_ui.h + +XVIEW_DIST = xv_ui.c xv_stubs.c xv_ui.h + +XAW_OBJS = gfx.o spider.o events.o movelog.o util.o windows.o \ + xaw_ui.o xaw_stubs.o version.o + +XAW_SRCS = gfx.c spider.c events.c movelog.c util.c windows.c \ + xaw_ui.c xaw_stubs.c version.c + +XAW_HEADERS = ${HEADERS} xaw_ui.h + +XAW_DIST = xaw_ui.c xaw_ui.h xaw_stubs.c + +BITMAPS = rank.bm suit.bm face.bm spider.bm cards.bm.aa cards.bm.ab + +DOCS = doc.intro doc.rules doc.controls doc.examples doc.misc spider.man \ + spider.info doc.summary + +KL_BIN = spider +XAW_BIN = spider +XVIEW_BIN = spider + +# for make all, these need to be moved +all:= KL_BIN = spider.kl +all:= XAW_BIN = spider.xaw +all:= XVIEW_BIN = spider.xview + +debug:= CFLAGS = -g +debug:= CPPFLAGS += -DDEBUG +debug:= LDFLAGS = -Bstatic +debug:= MALLOC = /usr/lib/debug/malloc.o + +kl_spider:= CPPFLAGS += -DKITLESS + +xv_spider:= OBJS = $(XVIEW_OBJS) +xv_spider:= SRCS = $(XVIEW_SRCS) +# +# NOTE: XVIEW 1.1 requires libolgx. 1.0.1, R4, and 1.0 don't. +# +xv_spider:= LIBS = -L$(OPENWINHOME)/usr/lib -lxview -lolgx -lX11 +xv_spider:= CPPFLAGS += -I$(OPENWINHOME)/include -DXVIEW + +xaw_spider:= OBJS = $(XAW_OBJS) +xaw_spider:= SRCS = $(XAW_SRCS) +xaw_spider:= LIBS = -lXaw -lXmu -lXt -lXext -lX11 +xaw_spider:= CPPFLAGS += -DXAW + + +all: xaw_spider +debug: xaw_spider + +xv_spider: obj + mv obj $(XVIEW_BIN) + +xaw_spider: obj + mv obj $(XAW_BIN) + +kl_spider: obj + mv obj $(KL_BIN) + + +obj: $$(OBJS) + cc -o $@ $(LDFLAGS) $(OBJS) $(MALLOC) $(LIBS) + +.c.o: + cc $(CPPFLAGS) $(CFLAGS) -c $< + +# SunOS4.0.3 sparc optimizer slimes this file +util.o: util.c + cc $(CPPFLAGS) -c $< +# cc -g $(CPPFLAGS) -c $< + +gfx.o: cards.bm + cc $(CPPFLAGS) $(CFLAGS) -c $< + +version.o: FRC + cc -c -DDATE="\"`date`\"" $< + +cards.bm: cards.bm.aa cards.bm.ab + cat cards.bm.aa cards.bm.ab > $@ + +install: all + mkdir $(HELPDIR) + cp $(DOCS) $(HELPDIR) + mkdir $(BINDIR) + mv $(BINDIR)/$(KL_BIN) $(BINDIR)/$(KL_BIN)- + mv $(BINDIR)/$(XAW_BIN) $(BINDIR)/$(XAW_BIN)- + mv $(BINDIR)/$(XVIEW_BIN) $(BINDIR)/$(XVIEW_BIN)- + cp $(KL_BIN) $(XAW_BIN) $(XVIEW_BIN) $(BINDIR) + + +lint: + lint -abchxz $(SRCS) + +clean: + rm -f core *.o cards.bm.a? spider *~ ,* Part* spider.shar* spider.a spider.a.a? + +tags: $$(SRCS) $$(HEADERS) $$(XAW_DIST) $$(XVIEW_DIST) + ctags $(SRCS) $(HEADERS) $(XAW_DIST) $(XVIEW_DIST) + +kit: + split -675 cards.bm cards.bm. + makekit -m README Makefile.sunpro Imakefile $(DOCS) $(SRCS) \ + $(HEADERS) $(XVIEW_DIST) $(XAW_DIST) $(BITMAPS) + +shar: + split -675 cards.bm cards.bm. + shar README Makefile.sunpro Imakefile $(DOCS) $(SRCS) $(HEADERS) \ + $(XVIEW_DIST) $(XAW_DIST) $(BITMAPS) > spider.shar + +dist: shar + rm -f spider.shar.Z + compress spider.shar + cat spider.shar.Z | btoa > spider.a + split spider.a spider.a. + +FRC:: + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/PATCH.zoo =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/PATCH.zoo ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,99 @@ +Patch level 1: + fixed bug, some problems with Imakefile. + fixed bug, can no longer see turned-over cards with middle mouse. + fixed bug, "f" will use the text field then selection for information. + added, patch_level variable to version.c file. + +Patch level 2: + added advice for choosing a move. + added "squish" feature for packing contiguous cards of same suit. + added looking in common places in XView for help files if not found. + bumped version number to 1.1 from 1.0.1. + +Spider is a challenging double decked solitaire game. Unlike most +soilitaire games, skill is just as important as luck. + +The X11 version of spider is based on the NeWS version by Don Woods, +and uses the same save file format and card images. + +The game has three interfaces: raw Xlib, Athena widget and XView. The +Athena interface was built with the R4 toolkit, and may not work with +earlier versions. The XView interface requires XView 1.0.1, which was +shipped on the R4 tape. + +Installation: + +1. Decide which interfaces you wish to build, and set up the Imakefile + appropriately. + +2. Set the HELPDIR directory for 'make install' to + work correctly, and the help files to be found. + +3a. If you plan to run on a small display (less than ~900 pixels wide), + define SMALL_CARDS. These aren't as pretty, but its a lot + better than having to move the window while playing. (if your + display is less than ~500 pixels, you're SOL unless you want + to make some smaller cards.) + +3b. If you have a wider display, define ROUND_CARDS if you want it to look + prettier, at the cost of a considerable amount of performance + (although its still quite playable on a reasonable server). + +4. Type 'xmkmf' to build the Makefile, and type 'make'. + +If you are compiling multiple versions, be sure to do a "make clean" +before doing a "make" of the next version. This will avoid mixing +modules which have been compiled with different flags. + +Spider has been tested on the following: + +Hosts: + Sun 3 & 4 running 4.0.x, 4.1.x + Solbourne 5 running 4.0x + Decstation 3100 Ultrix 3.1 + Decstation 3100 running OSF/1 + Textronix 4319 running UTek 4.1 + + partially: + DG AViiON 5100 running DG/UX 4.20 + (kitless only, and no usleep() since it doesn't have setitimer(2)) + +Displays: + NCD 16, 19, 17c + Sun 3 & 4 running MIT X11R4 + Sun 3 & 4 running X11/NeWS + Decstation 3100, running UWS 2.2 + Decstation 3100, running MIT X11R4 + Textronix 4319, running MIT X11R4 + +Please send any bugs or comments to: + +Dave Lemke +lemke at ncd.com +uunet!lupine!lemke + +I'd especially like to see new interfaces to it, particularly +non-Xt based toolkits like InterViews, OI or Andrew. + +Note on XView version: + +The supplied XView code will compile with either XView 1.0.1 (which is +included on the X11R4 distribution) or XView 2.0 (which will be released +later this summer). + +Before running the XView version of the tool, set the environment variable +HELPDIR to the location of the spider.info file so spot help will work. +For XView 2.0, HELPDIR becomes HELPPATH which works similarly to MANPATH. + +The XView version also has two extra command line args: -name and +-resource_file. These allow you to have instances of the Spider tool +which resources apply to and allow one to use a different resource +file than the default. The default resource file for the XView version +is $HOME/.Xdefaults. The spider.info file has more information on +resources when you prompt it for spot help. + +Please send any bugs or comments about the XView front end to: + +Heather Rose +hrose at sun.com +sun!hrose Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/SPIDERv1r1p1a.zoo =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/SPIDERv1r1p1a.zoo ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,17 @@ +/* + * Spider + * + * (c) Copyright 1989, Donald R. Woods and Sun Microsystems, Inc. + * (c) Copyright 1990, David Lemke and Network Computing Devices Inc. + * + * See copyright.h for the terms of the copyright. + * + * @(#)assert.h 2.1 90/04/25 + * + */ + +#ifdef DEBUG +#define assert(ex) {if (!(ex)){(void)fprintf(stderr,"Assertion \"ex\" failed: file \"%s\", line %d\n", __FILE__, __LINE__);abort();}} +#else +#define assert(ex) +#endif Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,108 @@ +/* + * Copyright 1990 Heather Rose and Sun Microsystems, Inc. + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that copyright + * notice and this permission notice appear in supporting documentation, and + * that the names of Donald Woods and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems make + * no representations about the suitability of this software for any purpose. + * It is provided "as is" without express or implied warranty. + * + * THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT + * SHALL HEATHER ROSE OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. + * + * Author: + * Heather Rose + * hrose at sun.com + * + * Sun Microsystems, Inc. + * 2550 Garcia Avenue + * Mountain View, CA 94043 + */ + +/* + * Copyright 1990 David Lemke and Network Computing Devices + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation, and that the name of Network Computing Devices not be + * used in advertising or publicity pertaining to distribution of the + * software without specific, written prior permission. Network Computing + * Devices makes no representations about the suitability of this software + * for any purpose. It is provided "as is" without express or implied + * warranty. + * + * NETWORK COMPUTING DEVICES DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, + * IN NO EVENT SHALL NETWORK COMPUTING DEVICES BE LIABLE FOR ANY SPECIAL, + * 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. + * + * Author: + * Dave Lemke + * lemke at ncd.com + * + * Network Computing Devices, Inc + * 350 North Bernardo Ave + * Mountain View, CA 94043 + * + * @(#)copyright.h 2.2 90/04/27 + * + */ + +/* +% Copyright (c) 1989, Donald R. Woods and Sun Microsystems, Inc. +% +% Permission to use, copy, modify, distribute, and sell this software and its +% documentation for any purpose is hereby granted without fee, provided that +% the above copyright notice appear in all copies and that both that copyright +% notice and this permission notice appear in supporting documentation, and +% that the names of Donald Woods and Sun Microsystems not be used in +% advertising or publicity pertaining to distribution of the software without +% specific, written prior permission. Donald Woods and Sun Microsystems make +% no representations about the suitability of this software for any purpose. +% It is provided "as is" without express or implied warranty. +% +% THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +% INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT +% SHALL DONALD WOODS OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. +% +% History: Spider is a solitaire card game that can be found in various books +% of same; the rules are presumed to be in the public domain. The author's +% first computer implementation was on the Stanford Artificial Intelligence Lab +% system (SAIL). It was later ported to the Xerox Development Environment. +% The card images are loosely based on scanned-in images but were largely +% redrawn by the author with help from Larry Rosenberg. +% +% This program is written entirely in NeWS and runs on OPEN WINDOWS 1.0. +% It could be made to run much faster if parts of it were written in C, using +% NeWS mainly for its display and input capabilities, but that is left as an +% exercise for the reader. Spider may also run with little or no modification +% on subsequent releases of OPEN WINDOWS, but no guarantee is made on this +% point (nor any other; see above!). To run Spider, feed this file to 'psh'. +% +% Author: Don Woods +% woods at sun.com +% +% Sun Microsystems, Inc. +% 2550 Garcia Avenue +% Mountain View, CA 94043 +*/ Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,241 @@ +/* + * Spider + * + * (c) Copyright 1989, Donald R. Woods and Sun Microsystems, Inc. + * (c) Copyright 1990, David Lemke and Network Computing Devices Inc. + * + * See copyright.h for the terms of the copyright. + * + * @(#)defs.h 2.2 90/04/30 + * + */ + +/* + * std includes and types + */ +#include +#include +#include +#include +#include "assert.h" +#include "copyright.h" + +#ifdef DEBUG +/* + * so i don't have to keep looking up my constants + */ +typedef enum {Spade, Heart, Diamond, Club} Suit; + +typedef enum {Ace, Deuce, Three, Four, Five, Six, Seven, + Eight, Nine, Ten, Jack, Queen, King} Rank; + +typedef enum {Faceup, Facedown, Joker} Type; + +#else DEBUG + +typedef char Suit; +typedef char Rank; +typedef char Type; + +#define Spade 0 +#define Heart 1 +#define Diamond 2 +#define Club 3 + +#define Ace 0 +#define Deuce 1 +#define Three 2 +#define Four 3 +#define Five 4 +#define Six 5 +#define Seven 6 +#define Eight 7 +#define Nine 8 +#define Ten 9 +#define Jack 10 +#define Queen 11 +#define King 12 + +#define Faceup 0 +#define Facedown 1 +#define Joker 2 + +#endif DEBUG + +#define NUM_DECKS 2 +#define NUM_PILES 8 +#define NUM_STACKS 10 +#define NUM_RANKS 13 +#define NUM_SUITS 4 +#define CARDS_PER_DECK (NUM_RANKS * NUM_SUITS) +#define NUM_CARDS (NUM_DECKS * CARDS_PER_DECK) + +/* diff locations for a cardlist */ +#define DECK 0 + +#define PILE_1 1 +#define PILE_2 2 +#define PILE_3 3 +#define PILE_4 4 +#define PILE_5 5 +#define PILE_6 6 +#define PILE_7 7 +#define PILE_8 8 + +/* convert a pile value to an array index */ +#define PILE_INDEX(i) ((i) - 1) + +#define STACK_1 11 +#define STACK_2 12 +#define STACK_3 13 +#define STACK_4 14 +#define STACK_5 15 +#define STACK_6 16 +#define STACK_7 17 +#define STACK_8 18 +#define STACK_9 19 +#define STACK_10 20 + +/* convert a stack value to an array index */ +#define STACK_INDEX(i) ((i) - 11) + +#define LOC_BEFORE 1 +#define LOC_AFTER 2 +#define LOC_END 3 +#define LOC_START 4 + +typedef struct _CardStruct { + struct _CardStruct *prev; + struct _CardStruct *next; + struct _CardList *list; + int x,y; /* location */ + Suit suit; + Rank rank; + Type type; + int draw_count; +} CardStruct, *CardPtr; + +#define CARDNULL ((CardPtr) 0) + +typedef struct _CardList { + CardPtr cards; + int place; + int card_delta; /* pixels between cards in stack */ + int x, y; +} CardListStruct, *CardList; + +#define CARDLISTNULL ((CardList) 0) + +#ifndef SMALL_CARDS +#define CARD_DELTA 30 +#else +#define CARD_DELTA 20 +#endif /* !SMALL_CARDS */ + + +#define IS_PILE(list) (((list) != CARDLISTNULL) && (list)->place < STACK_1) + +/* gfx defs */ + +/* card info*/ +#ifndef SMALL_CARDS +#define CARD_HEIGHT 123 +#define CARD_WIDTH 79 + +#define FACECARD_WIDTH 47 +#define FACECARD_HEIGHT 92 + +#define RANK_WIDTH 9 +#define RANK_HEIGHT 14 + +#define RANK_LOC_X 4 +#define RANK_LOC_Y 7 + +#define SMALL_LOC_X 4 +#define SMALL_LOC_Y (RANK_HEIGHT + RANK_LOC_Y + 3) + +#define MID_CARD_X (CARD_WIDTH/2) +#define MID_CARD_Y (CARD_HEIGHT/2) + +#define CARD_COL1_X (3 * CARD_WIDTH/10) +#define CARD_COL2_X (CARD_WIDTH/2) +#define CARD_COL3_X (7 * CARD_WIDTH/10) + +/* 5 diff rows for the two main columns */ +/* 1 and 5 are top and bottom, 3 is the middle */ +/* 2 & 4 are for the 10 & 9 */ +#define CARD_ROW1_Y (CARD_HEIGHT/5) +#define CARD_ROW2_Y (2 * CARD_HEIGHT/5) +#define CARD_ROW3_Y (CARD_HEIGHT/2) +#define CARD_ROW4_Y (CARD_HEIGHT - 2 * CARD_HEIGHT/5) +#define CARD_ROW5_Y (CARD_HEIGHT - CARD_HEIGHT/5) + +/* between 1 & 3, 3 & 5 */ +#define CARD_SEVEN_Y (7 * CARD_HEIGHT/20) +#define CARD_EIGHT_Y (CARD_HEIGHT - 7 * CARD_HEIGHT/20) + +/* between rows 1 & 2, 4 & 5 */ +#define CARD_TEN_Y1 (3 * CARD_HEIGHT/10) +#define CARD_TEN_Y2 (CARD_HEIGHT - 3 * CARD_HEIGHT/10) + +/* card positioning */ +#define CARD_INSET_X 10 +#define CARD_INSET_Y (CARD_HEIGHT/8) + +#define STACK_WIDTH (CARD_WIDTH + 10) +#define STACK_LOC_X(i) ((STACK_INDEX(i) * STACK_WIDTH) + CARD_INSET_X) +#define STACK_LOC_Y (CARD_HEIGHT + 3 * CARD_INSET_Y) + +#define PILE_WIDTH STACK_WIDTH +#define PILE_INSET_X (STACK_WIDTH + CARD_INSET_X + CARD_WIDTH) +#define PILE_LOC_X(i) ((PILE_INDEX(i) * PILE_WIDTH) + PILE_INSET_X) +#define PILE_LOC_Y (CARD_INSET_Y) + +#define DECK_X CARD_INSET_X +#define DECK_Y CARD_INSET_Y + +#define TABLE_X 10 +#define TABLE_Y 10 + +#define TABLE_WIDTH (STACK_WIDTH * NUM_STACKS + 2 * CARD_INSET_X) +#define TABLE_HEIGHT (STACK_LOC_Y + 2 * CARD_HEIGHT) +#define TABLE_BW 2 + +/* pip info */ +#define PIP_WIDTH 10 +#define PIP_HEIGHT 10 + +#else /* SMALL_CARDS */ + +#define CARD_HEIGHT 60 +#define CARD_WIDTH 40 + +/* card positioning */ +#define CARD_INSET_X 10 +#define CARD_INSET_Y (CARD_HEIGHT/8) + +#define STACK_WIDTH (CARD_WIDTH + 10) +#define STACK_LOC_X(i) ((STACK_INDEX(i) * STACK_WIDTH) + CARD_INSET_X) +#define STACK_LOC_Y (CARD_HEIGHT + 4 * CARD_INSET_Y) + +#define PILE_WIDTH STACK_WIDTH +#define PILE_INSET_X (STACK_WIDTH + CARD_INSET_X + CARD_WIDTH) +#define PILE_LOC_X(i) ((PILE_INDEX(i) * PILE_WIDTH) + PILE_INSET_X) +#define PILE_LOC_Y (CARD_INSET_Y) + +#define DECK_X CARD_INSET_X +#define DECK_Y CARD_INSET_Y + +#define TABLE_X 10 +#define TABLE_Y 10 + +#define TABLE_WIDTH (STACK_WIDTH * NUM_STACKS + 2 * CARD_INSET_X) +#define TABLE_HEIGHT (STACK_LOC_Y + 2 * CARD_HEIGHT) +#define TABLE_BW 2 + +#endif /* !SMALL_CARDS */ + +#ifdef KITLESS +#define MESSAGE_FONT "fixed" +#define MESSAGE_X 10 +#endif /* KITLESS */ Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,117 @@ + III. T H E S P I D E R P R O G R A M + +The stack of cards in the upper left of the Spider window represents +the undealt cards (initially the full deck; later the "Hand"). The +eight outlines to the right mark where the eight suits will go as you +remove them from the tableau. The rest of the window is initially +empty until you start a game. + +To start a game, press the [New Game] button or click either the left +mouse button over the undealt cards. Playing the game is handled +entirely within the main window; the control panel provides a few +ancillary functions, described later. First, the main window: + +If you press the left mouse button anywhere within or below a column of +cards, it says you want to move as many cards as possible from that +column. If you then move the mouse to another column and let up on the +button, the program moves as many cards as it can from the first column +to the second. (If there is no such legal move, the program says so.) +Note that, unless the destination column is empty (i.e., a "space"), +there is at most one choice for the number of cards to move. + +If you instead use the second mouse button to select within a column, +it says you want to move the card you're pointing at plus any cards +covering it. If these cards cannot be moved as a unit (i.e., they are +not a sequence within a suit), the program says so. Again, if you move +the mouse to another column and release the button, the program moves +as the selected cards to the destination. The only time you need to +use this method (instead of using left) is if you're moving cards into +a space AND you wish to move fewer than the maximum permitted. + +If you click the left button over a single column, the program tries to +move the specified cards to "the obvious place" by trying the following +choices, in order: (1) remove them if they form a completed suit, else +(2) move them onto a card of the same suit, else (3) move them onto a +card of a different suit, else (4) move them into a space. If it can't +do any of these, it complains. + +You can also remove a completed suit by selecting all 13 cards (using +the left button), moving the mouse into the region of outlines above +the tableau, and releasing the button. + +To deal a new round, click any button on the facedown stack in the +upper left. The window footer shows you how many more deals remain. +Remember that all spaces must be filled before you can deal a new +round. + +If you click with any mouse button in the outline region where the +removed suits go, the program will tell you which suits (if any) have +enough cards face-up to form a complete sequence of thirteen. + +The game also has a control panel for performing some less frequent +operations. Many of these also have keyboard accelerators: + +[New Game], N or n: Throws away the current game and start a new one. + +[Backup: One Move], U or u: Undo the last move. If you undo a move +that revealed a previously unknown card, the program will chastise you. + +[Backup: Start Over], A or a: Play the same hand again. This will +restart the game with the initial deck, discarding what you've already +done. + +[Backup: Replay], R or r: Show all the moves made so far. This can take +a while, so any key or button press will abort it. + +[Expand], E or e: Expand column. This prompts the user to select a +column, which is then displayed in textual form. This is useful when +the window cannot be made larger and the columns are very large. + +[Locate], F or f: tries to find a specified card or cards among the +face-up cards in the tableau. First specify the name of the card to +look for by putting the rank and suit in the Name item. (The ranks are +A, 2, 3, ..., 10, J, Q, or K; you can also use T for 10. Suits are C, +D, H, and S. Lower-case is permitted.) If you omit the suit, [Locate] +will look for all cards of the specific rank that are not already +covered by a card of the next lower rank. (Such cards are called +"unused", "free", or "available".) For example, if you want to move a +9 out of some pile, you need either a space or a free 10 onto which to +move it, so you could use [Locate] to find all free 10s. + +[Score], S or s: Shows the current score. + +[File] is a stack; the default is [Save in File], which writes a file +containing the current state of the game, including the original deck and all +the moves made so far. The name of the file is taken from the Name item. +The file also includes a human-readable text representation of the current +tableau, similar to those that appear in the examples below. + +[File: Resume from File] reads a file created by the [File: Save in File] +command. The name of the file is taken from the Name item. It can also read +various partial files; in particular, if all but the first line of the file +has been deleted, it will restore the most recent position and, if possible, +the original deck (in case you want to Start Over), but it will not be able +to Back Up over the moves. + +[File: Resume from Selection] restores a position represented by the current +text selection. This is useful for loading positions from section IV, below. + +The window also understands these additional keyboard commands: + +D or d: Deals a new round. + +L or l: Loads a saved game from the current PRIMARY selection. If the +selection is a file name, it will be loaded from that file. Otherwise +it will attempt to load the selection as position. This is useful for +loading positions from the examples in section IV. + +W or w: Saves the current position in the filename contained in the +PRIMARY selection. + +?: Gives a move suggestion. This isn't necessarily the best move, but +may be helpful for beginners. + +#: Displays some game statatistics. + +Q: Quit. + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,980 @@ + IV. E X A M P L E S A N D C O N U N D R U M S + +In all the examples below, the tableau will be given here in the text as best +as can be done within the limits of the character set. For those who want to +see the positions more graphically via the program, each example also starts +with a line of apparent garbage that, if selected, can be read using the +[File: Resume from Selection] command to display the position. (The line is +quite long and may wrap around onto more than one line when you display it; +you have to select it all to restore the position.) + +Some of these examples are extremely complex. Novice players may wish to +step through just the first example, to get an idea of how to play, and save +the other examples for later. The final example is a deck that is especially +easy to win with (unless you're trying to win with all eight suits still in +the tableau), so you might try that one to boost your confidence if you're +having a lot of trouble getting anywhere. + +=========================================================================== + +J6m\ZM^3>gU82j]`LGMFl8o0WeDimHa;d^1QcHGKQdQAZ6l;oK/QmbbBhNhiMiWe=FOHD >Kg74/^ YoT[/6 HCcF/P \MNXm/Q EK25/k 9^0M/c KF0 at W/N \JHY/: 9GLR/L \W8hH/2. + +Here, to start you off, is an example of the beginning of a game. We'll step +through it and look at the rationale behind the recommended moves. Here's +the initial tableau: + + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- 10d As -- 3h 9s -- Jh Qh -- + 6d 4s 3c 7c + +The two primary rules of thumb to bear in mind throughout the game, and +particularly at the start, are (1) try to get a space, and (2) keep your +options open. The first rule should be fairly clear; the second leads to a +few common strategic decisions. First, given the choice, make a "natural" +move instead of an "unnatural" one, where a natural move is one that brings +together two cards of the same suit. This keeps our options open by allowing +us to move the newly combined cards as a unit should we turn up an +appropriate card. Second, given the choice, move a card (or pile) that has +more than one place it can go. This keeps our options open by allowing us to +move it to the other place if for some reason we want to dig into the pile +sitting in the first location. Third, work from the top down. Thus we move +a 9 onto a 10 before moving an 8 onto the 9 (unless the latter move is +natural while the former is not), since once we move an unnatural 8 onto the +9 we won't be able to move the 9. Now, with these ideas in mind, let's look +at the play of the above tableau. + +Our highest-ranking move is Jack onto Queen, and it's also our only natural +move, so it wins for sure. We move the Jh from column 8 to column 9, and in +this particular game we chance to turn up a 6s in column 8. Now we have no +natural moves. We could try for the space by moving the 6s to column 10, but +that move isn't going to go away, so instead we go from the top down by +moving the 10d from 2 to 9. This time we turn up a 4c. No hesitation about +this one! We move the 3c from 7 to 2. (Note that we still have the 4s onto +which we can, eventually, move the 3h, so we're not giving up our option of +digging into pile 5. But even if we didn't have the other 4, making the +natural move would be the better play.) In column 7 the card turned up is a +2c, which we promptly move to column 2, turning up a 10h. The tableau is +now: + + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- 4c -- -- -- -- 10h 6s -- -- + -- 3c As -- 3h 9s Qh -- + 6d 2c 4s Jh 7c + 10d + +Having once again run out of natural moves, we revert to working from the top +down, and move the 9s from 6 to 9. This also follows the rule of moving a +pile that has more than one place to go; if we find ourselves interested in +digging through column 9 we can move the 9s to column 7 instead. But for +now, since column 7 looks like a more likely place to dig, we'll bury column +9 a bit more. In column 6 we turn up a Kc. Since we have no place to move +the 10d from column 9, we are unable to get pile 9 moved onto the newly +revealed King. Them's the breaks. + +Continuing from the top down, we decide it's time to move a 6 onto the 7c. +Which 6 should we move? Neither is natural, but the one in column 8 looks +like a better one to move since we're only 3 cards away from getting a space +in that column. So we move the 6s from 8 to 10 and turn up a 6c. We're +getting low on things to do now; we can move the 3h or the As. Going by the +top-down rule, we move the 3h from 5 to 4, turning up a 2h, which we move +onto the 3h (now in column 4). This time we turn up a 9d: + + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- 9d -- -- 6c -- -- + -- 4c -- -- Kc 10h -- -- + -- 3c As -- Qh -- + 6d 2c 4s Jh 7c + 3h 10d 6s + 2h 9s + +We could now move the 9d from 5 to 7, but instead we choose to move the As +from column 3, since there are two places to put it. Column 4 is already +unnatural, so we'll move it there. The card turned up is the other As. We +could move this Ace onto the other deuce, but this would lose us our option +of moving the first Ace there should we want to dig into column 4, so we'll +let the top-down rule take precedence and move the 9d. But let's not be +hasty! Instead of moving the 9d from 5 to 7, we'll move the 9s from 9 to 7 +and then move the 9d from 5 to 9; this puts the 9d with a 10d, which it can't +hurt to do. This time we turn up a Qh. Since we're so close to a space now, +we keep going by moving the Qh from 5 to 6, turning up a 10d: + + -- -- -- -- 10d -- -- -- -- -- + -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- 6c -- -- + -- 4c As -- Kc 10h -- -- + -- 3c -- Qh 9s Qh -- + 6d 2c 4s Jh 7c + 3h 10d 6s + 2h 9d + As + +Only one move left to try: we move the As from 3 to 2, turning up a 7h. Once +again, we shuffle things around a bit so keep as many piles natural as +possible; we move the 6s from 10 to 3 and the 6c from 8 to 10, turning up a +5d. We move the 5d from 8 to 1 (natural) and turn up a 3s: + + -- -- -- -- 10d -- -- 3s -- -- + -- -- -- -- -- -- -- -- + -- -- 7h -- -- -- -- -- + -- 4c 6s -- Kc 10h -- -- + -- 3c -- Qh 9s Qh -- + 6d 2c 4s Jh 7c + 5d As 3h 10d 6c + 2h 9d + As + +We have no more moves (aside from useless maneuvers such as moving the 9d +from 9 to 5), so it's now time to deal a new round. We never did get a +space, but we got two piles down to a single card each, so we are quite +likely to get a space soon after the new deal. This game is going somewhat +better than average and will very likely be won with proper play. If you +actually do get a space in the first round, you're doing particularly well. + +=========================================================================== + +1;]mcD96:2o6j1J7Fj>N/\j?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?P O DLV/7V[ N=^cfil 8_/R<3d9NC4I^SDY?F\bfKl16[ k;]>Hhn ak\k/Z\2O[<@FkLPWZ[;>CdINS 9A C L75/1;\aFJo. + +Now, for your first "Spider problem", here is a relatively simple position. +In the tableau shown below, what should you do? First off, what are your +options? On what should you base your choice? (After the tableau is the +"solution", so don't read further until you're ready!) + +10h (sp) -- Ad -- Qc -- 3s Qh -- + -- 7d -- Jh -- 2s -- + -- 6d Kh 10d -- -- + 8s 5d Qc 6c -- 7d + 7s Qs Jc 4c Qd 6d + 6s Js 10c 3d Jd 5d + 10d 9c 2d 10h 4d + 8c Js 3d + 7c 10s 2c + 6c 9s As + 5c 8h + 4c 7h + 3c 6h + 2c 5h + Ac 4s + Qd 3h + 10c 10s + 9c 8c + 8s 7h + 7s 6h + 6s 5h + 5s 4h + 4s 3h + 3s 2h + 2s Ah + +Solution: + +First, the options. There's no way to get through column 5 or 7 to turn up a +new card. (This should be pretty obvious; we'll save detailed analyses of +this sort of thing for cases where it's not as clear.) Nor does it do us any +good to dig into column 4 or 6. We don't have any complete suits showing, so +there's no way we can try to put one together. That leaves three fairly +simple options: (1) we could move the 8-6s from column 3 into the space, +turning up a new card, (2) we could dig through column 10 (moving the Ace +onto a deuce, the 2c into the space, 5-3d onto the 6s in column 3, 2c out of +the space and back onto the 5-3d, and finally the 7-6d into the space) and +turn up a new card there, or (3) we could fill in the space and deal a new +round. + +It's usually a good idea to turn up more cards when possible rather than bury +everything under a new deal, so we'll discount the third option. That leaves +us with the choice of which column to dig through, 3 or 10. The two are +equally close to becoming new spaces (three face-down cards each), so that's +not a consideration here. Let's consider what the face-down card might be +that will be revealed. If it's a Jack, 4, or King, we can get back the space +(which we'll have lost in the process of getting to the new card). If it's a +9 or 8, we MIGHT get the space back right away; it depends on whether we +moved the 8 (from column 3) or the 7 (from column 10) into the space. +Looking at the tableau, we see there are five 8's visible, but only three +9's. Thus it's more likely we'll turn up a 9, so we should go for column 3. +(Sorry for all this gory detail, but this is after all intended as an +introductory example.) + +So it looks like the best thing to do is move the 8-6s from column 3 into the +space. But wait! Suppose the card turned up isn't a Jack, 4, King, or 9, +and furthermore isn't an Ace or 5 (which we would be able to move elsewhere +immediately)? Is there anything we can do ahead of time to hedge our bets? +Yes! We can move the spade Ace from column 10 to column 5, then use the +space to swap the deuces in columns 6 and 10 (move one deuce into the space, +move the other deuce to the other column, and move the first deuce out of the +space). Now column 10 contains just the 7 through deuce of diamonds, and if +we chance to turn up an 8 in column 3 we can move the 7-2d onto it. Note +that we have to do this BEFORE we move the 8-6s into the space, since we need +the space to swap the deuces. In fact, in the game where this particular +tableau arose, the card turned up in column 3 was the diamond 8. The +preparations made in column 10 eventually produced not one but TWO spaces! +(Play it out using the program and see for yourself.) + +=========================================================================== + +?jT\Ne61gU/3`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?P LF^Q/lLQ7[]`8Qe^_ B\^CO9M at 4I] Q=Lh/C;aS2o D0/b6;[MEXM. + +Turn up another face-down card WITHOUT dealing more cards or "using up" the +space. (You may, of course, use the space, so long as you are sure you can +get it back no matter what the card turned up turns out to be.) Note that +there are enough clubs and hearts showing to form complete sets of those +suits. Here's the tableau (again, the solution follows the tableau): + + -- -- (sp) -- Qh -- -- -- -- -- + -- -- Ks Jh -- Jc -- -- -- + -- -- 2s 7h -- 8h -- -- Kh + -- -- As As 7h Kc -- Qc + Jc Kd 9h 9h Qc Kc Jh +10h 9d 8d 8s Jd 7s Js + 9c 8d 7c 5s 6s 3d + 8s 7d 6c 4h Qh 2c + 7d 3h 5c 3c Js Ad + 6h 2h 4h 2c 8c 8h + 5d Ah 3s Ac + 3d 2d 2s 10s + 2d 5c 9s + Ah 6d 8c + 9s 5h 7s +10c 6s + 5s + 4c + +Solution: + +First, we ascertain that we can't get a second space. The only place where +we might be able to do so is column 5, and to move the Q-Jh we need to find a +King that doesn't already have a Queen on it. (We'll call this a "free +King", for short.) There are three free Kings, but the one in column 9 is +useless since we need another free King to get to it, and those in columns 2 +and 4 are inaccessible since there are no free 3's. Hence, whatever we do, +we have to do it using only the one space. + +Next, can we remove a complete set of clubs or hearts? Well, hearts are out, +because the only Kh showing is in column 10, and the only 10h is in column 1, +and getting to each of them requires that we move a 3 onto a free 4. Since +there's only one free 4 (in column 8), we lose. How about clubs? They don't +work out, either, but the proof is trickier. The only 9c is in column 1 and +getting to it will require our sole free 4. Thus we can't use the Qc in +column 10, and must instead use the Qc from column 8. To reach it we need a +free 6; we have exactly one free 6, namely in column 9. We CAN get to this +6, without losing the space, by a fairly convoluted sequence of moves. You +may want to figure out how it can be done before reading on. . . . Ready? +Okay, proceed as follows: 7h from 5 to 10, 10c from 1 to 5, 8c from 9 to 1, +Js from 9 to 3 (into the space), 10c from 5 to 3, Jh from 5 to 9, 10c from 3 +to 9, Js from 3 to 5, 10c from 9 to 5, Q-Jh from 9 to 3, 7-6s from 9 to 4, +and finally Q-Jh from 3 to 9, getting the space back. + +Having determined that we can, if desired, obtain a free 6, let's get back to +the question of the clubs. The only 7c is in column 6, and getting to it +requires a free 6. But we need the free 6 to get to the Qc as well. So we +again lose. We are thus reduced to uncovering a card without removing any +suits and without getting any more spaces. Which column is it to be? It +obviously can't be a column containing a King, since (given that we can't +remove any completed suits) the only place a King can go is into the space. +And it can't be column 1 or 7, since that would require a free Queen, and +there isn't any. So it must be column 6. We can get through that column by +first digging through to the free 6 as described earlier, and then playing: +5h from 6 to 4, 6d from 6 to 10, 5c from 6 to 10, 3-2s from 6 to 3, 4h from 6 +to 4, 3-2s from 3 to 4, 7-5c from 6 to 1. The tableau now looks like this: + + -- -- (sp) -- Qh -- -- -- -- -- + -- -- Ks Js -- Jc -- -- -- + -- -- 2s 10c -- 8h -- -- Kh + -- -- As As 7h Kc -- Qc + Jc Kd 9h 9h Qc Kc Jh +10h 9d 8d 8s Jd Qh Js + 9c 8d 7s 5s Jh 3d + 8s 7d 6s 4h 2c + 7d 3h 5h 3c Ad + 6h 2h 4h 2c 8h + 5d Ah 3s Ac 7h + 3d 2d 2s 10s 6d + 2d 9s 5c + Ah 8c + 9s 7s + 8c 6s + 7c 5s + 6c 4c + 5c + +Once again, it's time to make contingency plans. If we just move the 9h-8s +onto the 10c and the As onto the 2s, we could be in trouble if we turn up a +King. The lone space won't be sufficient for us to be able to move the stuff +out of column 5 onto the King. So we undo some of what we did in the course +of getting the free 6: Jh from 9 to 3, 10c from 5 to 3, Js from 5 to 9, 10c +from 3 to 9, Jh from 3 to 5. While we're at it, it can't hurt to move the 4c +from 8 to 1, and in a moment we'll match the 8s with a 9s, too. We now +proceed: 8s from 6 to 3, 9h from 6 to 9, 8-5c from 1 to 9, 8s from 3 to 1, +and finally As from 6 to 4. (Once again, preparation pays off; in the game +where this took place, the card turned up was indeed a King.) + +=========================================================================== + +?jT\Ne61gU/3`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?P LF^Q/lLR4Y^cDjm3 XCkS/QENCCAV`O 3 ]:na6K<1F[LAV =Dil1W9>CgJN b P 4:[/eQW8\afKl16 @J/8\QA7o279 C. + +Again, complete sets of clubs and hearts are available. Without dealing any +more cards or turning up any face-down cards, remove a set of clubs AND a set +of hearts (not necessarily in that order). Can you remove them in the other +order? + + -- -- 8c Ks Kh 5c Kc -- (sp) -- + -- -- Qh Qh -- -- + -- -- Jc Jh -- Kh + -- -- 10c 10c Kc Qc + Jc Kd 9c 9h Qc Jh +10h 9d 8c 8d Jd Js + 9s 8d 7c 7d 10h 3d + 8s 7d 6c 6d 9h 2c + 7s 3h 5c 5d 8h Ad + 6s 2h 4c 4h 7h 8h + 5s Ah 3c 3d 6h 7h + 4s 2d 2c 2d 5h + 3c Ah Ac 4h + 2s 3h + As + +Solution: + +The clubs look like the better bet, since the Jack through Ace are already +assembled and there's a King-Queen in column 8. Let's see what can be done. +Since there are no free 9's or 6's, we have to remove the first completed +suit without the benefit of any additional spaces. Since we are also short +on free 4's, this means we can't use the Qc in column 10. That seems okay; +the one in column 8 looks easier to get to anyhow. All we have to do is move @@ 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 30 14:56:06 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 13:56:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2941] csw/mgar/pkg Message-ID: Revision: 2941 http://gar.svn.sourceforge.net/gar/?rev=2941&view=rev Author: dmichelsen Date: 2009-01-30 13:56:06 +0000 (Fri, 30 Jan 2009) Log Message: ----------- par: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/par/ csw/mgar/pkg/par/branches/ csw/mgar/pkg/par/tags/ csw/mgar/pkg/par/trunk/ csw/mgar/pkg/par/trunk/Makefile csw/mgar/pkg/par/trunk/files/ csw/mgar/pkg/par/trunk/files/CSWpackage.gspec csw/mgar/pkg/par/trunk/legacy/ csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES csw/mgar/pkg/par/trunk/legacy/README csw/mgar/pkg/par/trunk/legacy/copyright csw/mgar/pkg/par/trunk/legacy/depend csw/mgar/pkg/par/trunk/legacy/pkginfo csw/mgar/pkg/par/trunk/legacy/prototype csw/mgar/pkg/par/trunk/legacy/src/ csw/mgar/pkg/par/trunk/legacy/src/Makefile csw/mgar/pkg/par/trunk/legacy/src/par-1.52.tar.gz Property changes on: csw/mgar/pkg/par/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/par/trunk/Makefile =================================================================== --- csw/mgar/pkg/par/trunk/Makefile (rev 0) +++ csw/mgar/pkg/par/trunk/Makefile 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/par/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/par/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/par/trunk/files/CSWpackage.gspec 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,31 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the PAR package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWpar +# +# CUR VER: Par Version 1.52 +# +# REVISION: 10-25-04 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +10-25-04 1.52 Initial package build +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + + * Numerous non-fatal warning messages are issues [too many to list] Added: csw/mgar/pkg/par/trunk/legacy/README =================================================================== --- csw/mgar/pkg/par/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/README 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,177 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the PAR package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWpar +# +# REVISION: 09-09-05 +# +# NOTES: * +############################################################################### + +------------------------------------------------------------------------------- +01: Make sure you are on the blastwave machine +------------------------------------------------------------------------------- + + hostname + +------------------------------------------------------------------------------- +02: Download and extract the par source +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par/src + vi Makefile [set PVER[S] to current par version] + make get + make extract + +------------------------------------------------------------------------------- +03: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +04: Update the pkginfo file VERSION=[,REV=YYYY.MM.DD] +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par + vi pkginfo + [edit the version info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +05: Unpack the source code [**** ONLY NEEDS TO BE DONE ONCE PER SESSION ****] +------------------------------------------------------------------------------- + + cd src + make unpack [unpack unless it was just extracted] + +------------------------------------------------------------------------------- +06: Modify the install target in Makefile, using the contents in the + .parMake.mods file: [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + cd par*[0-9] + cp protoMakefile Makefile + vi ../.parMake.mods Makefile + +------------------------------------------------------------------------------- +07: Update copyright file [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + vi par.doc ${HOME}/pkgs/par/copyright + [Extract the File List and Rights and Responsibilities sections] + +------------------------------------------------------------------------------- +08: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +09: Compile the software +------------------------------------------------------------------------------- + + make clean + make + +------------------------------------------------------------------------------- +10: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install-csw + +------------------------------------------------------------------------------- +11: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +12: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/par/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/par + +------------------------------------------------------------------------------- +13: Create the package par-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par + createpkg -b ${HOME}/pkgs/par/src/par*[0-9]/cswstage/opt/csw + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +14: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 13 and recreate the package + +------------------------------------------------------------------------------- +15: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Go to step 03 and repeat for other architecture + +------------------------------------------------------------------------------- +16: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par/src/par*[0-9] + make clean ; rm -rf cswstage + cd ${HOME}/pkgs/par/src + make pack # if req'd, tar up and gzip source + make clean + +------------------------------------------------------------------------------- +17: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/par + cp par-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +18: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp par-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +19: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/par/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/par/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/copyright 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,50 @@ +File List + + The Par 1.52 package is always distributed with at least the + following files: + + buffer.c + buffer.h + charset.c + charset.h + errmsg.c + errmsg.h + par.1 + par.c + par.doc + protoMakefile + reformat.c + reformat.h + releasenotes + + Each file is a text file which identifies itself on the second line, + and identifies the version of Par to which it belongs on the third + line, so you can always tell which file is which, even if the files + have been renamed. + + The file "par.1" is a man page for the filter par (not to be + confused with the package Par, which contains the source code for + par). "par.1" is based on this doc file, and conveys much (not + all) of the same information, but "par.doc" is the definitive + documentation for both par and Par. + + +Rights and Responsibilities + + The files listed in the Files List section above are each Copyright + 2001 by Adam M. Costello (henceforth "I", "me"). + + I grant everyone ("you") permission to do whatever you like with + these files, provided that if you modify them you take reasonable + steps to avoid confusing or misleading people about who wrote the + modified files (both you and I) or what version they are. All + official versions of Par will have version numbers consisting of + only digits and periods. + + I encourage you to send me copies of your modifications in case I + wish to incorporate them into future versions of Par. See the Bugs + section for my address. + + Though I have tried to make sure that Par is free of bugs, I make no + guarantees about its soundness. Therefore, I am not responsible for + any damage resulting from the use of these files. Added: csw/mgar/pkg/par/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/par/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/depend 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/par/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/par/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/pkginfo 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,9 @@ +PKG=CSWpar +NAME=par - Paragraph Reformatter +VERSION=1.52 +ARCH=sparc +CATEGORY=application +CSW_CATEGORY="text, user" +VENDOR=http://www.nicemice.net/par/ - packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/par/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/par/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/prototype 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,11 @@ +i pkginfo +i copyright +i depend +d none share 0755 root bin +d none share/man 0755 root bin +d none share/man/man1 0755 root bin +f none share/man/man1/par.1 0644 root bin +d none share/par 0755 root bin +f none share/par/par.txt 0644 root bin +d none bin 0755 root bin +f none bin/par 0755 root bin Added: csw/mgar/pkg/par/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/par/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/src/Makefile 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,78 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the PAR src directory. +# +# PACKAGE: CSWpar +# +# REVISION: 10-28-04 +# +# NOTES: * Set the PVER variable to the current par version number. +# +# * INSTALL_ROOT controls the location of the installation. +# +# * Source is located at: http://www.nicemice.net/par/ +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +PVER = 152 +PVERS = 1.52 + +PSOURCE = Par$(PVER).tar.gz + +PDIR = par.$(PVERS) + +PTAR = par-$(PVERS).tar + +PARCH = $(PTAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "Par Ver: $(PVERS)" + @echo "---------------------------------------------------------------" + @echo "make get download par source code" + @echo "" + @echo "make extract extract source code from downloaded archive" + @echo "" + @echo "" + @echo "make pack tar up and gzip the source code directory" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +get: + wget http://www.nicemice.net/par/$(PSOURCE) + + +extract: $(PSOURCE) + unpak $(PSOURCE) + mv Par*[0-9] $(PDIR) + + +pack pak tar: $(PDIR) + @if [ -f $(PTAR) ] ; then \ + echo "Cannot pack: $(PTAR) exists." ; \ + elif [ -f $(PARCH) ] ; then \ + echo "Cannot pack: $(PARCH) exists." ; \ + else \ + tar cvf $(PTAR) $(PDIR) ; \ + gzip $(PTAR) ; \ + fi + +unpack unpak: $(PARCH) + unpak $(PARCH) + +clean: + @if [ ! -f $(PARCH) ] ; then \ + echo "You must first archive the source with: make pack" ; \ + else \ + rm -rf $(PSOURCE) $(PDIR) ; \ + fi Added: csw/mgar/pkg/par/trunk/legacy/src/par-1.52.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/par/trunk/legacy/src/par-1.52.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 30 15:20:10 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 30 Jan 2009 14:20:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[2942] csw/mgar/pkg Message-ID: Revision: 2942 http://gar.svn.sourceforge.net/gar/?rev=2942&view=rev Author: bdwalton Date: 2009-01-30 14:20:10 +0000 (Fri, 30 Jan 2009) Log Message: ----------- initial csup gar description Added Paths: ----------- csw/mgar/pkg/csup/ csw/mgar/pkg/csup/branches/ csw/mgar/pkg/csup/tags/ csw/mgar/pkg/csup/trunk/ csw/mgar/pkg/csup/trunk/Makefile csw/mgar/pkg/csup/trunk/files/ csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec Property changes on: csw/mgar/pkg/csup/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/csup/trunk/Makefile =================================================================== --- csw/mgar/pkg/csup/trunk/Makefile (rev 0) +++ csw/mgar/pkg/csup/trunk/Makefile 2009-01-30 14:20:10 UTC (rev 2942) @@ -0,0 +1,20 @@ +GARNAME = csup +GARVERSION = snap +PATCHLEVEL = 20060318 +CATEGORIES = apps + +DESCRIPTION = A replacement for CVSup +define BLURB +A solid replacement for CVSup for checkout-only functionality. +endef + +MASTER_SITES = http://www.mu.org/~mux/ +DISTFILES = $(GARNAME)-$(GARVERSION)-$(PATCHLEVEL).tgz +DISTFILES += $(call admfiles,CSWcsup,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec =================================================================== --- csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec (rev 0) +++ csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec 2009-01-30 14:20:10 UTC (rev 2942) @@ -0,0 +1,3 @@ +%var bitname csup +%var pkgname CSWcsup +%copyright url file://%{WORKSRC}/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 30 17:38:55 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 30 Jan 2009 16:38:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[2943] csw/mgar/pkg Message-ID: Revision: 2943 http://gar.svn.sourceforge.net/gar/?rev=2943&view=rev Author: bonivart Date: 2009-01-30 16:38:55 +0000 (Fri, 30 Jan 2009) Log Message: ----------- phpMyAdmin: update to 3.1.2 Added Paths: ----------- csw/mgar/pkg/phpMyAdmin/ csw/mgar/pkg/phpMyAdmin/branches/ csw/mgar/pkg/phpMyAdmin/tags/ csw/mgar/pkg/phpMyAdmin/trunk/ csw/mgar/pkg/phpMyAdmin/trunk/Makefile csw/mgar/pkg/phpMyAdmin/trunk/checksums csw/mgar/pkg/phpMyAdmin/trunk/files/ csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec Property changes on: csw/mgar/pkg/phpMyAdmin/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/phpMyAdmin/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/Makefile (rev 0) +++ csw/mgar/pkg/phpMyAdmin/trunk/Makefile 2009-01-30 16:38:55 UTC (rev 2943) @@ -0,0 +1,46 @@ +GARNAME = phpMyAdmin +GARVERSION = 3.1.2 +CATEGORIES = apps + +DESCRIPTION = Effective MySQL Management +define BLURB + phpMyAdmin is a free software tool written in PHP intended to handle the + administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of + operations with MySQL. The most frequently used operations are supported by the user + interface (managing databases, tables, fields, relations, indexes, users, permissions, + etc), while you still have the ability to directly execute any SQL statement. +endef + +MASTER_SITES = http://garr.dl.sourceforge.net/sourceforge/phpmyadmin/ +DISTFILES = $(GARNAME)-$(GARVERSION)-all-languages.tar.bz2 +DISTFILES += $(call admfiles,CSWphpmyadmin,) + +#SPKG_DESC_CSWap2modphp5 = PHP 5 - Apache 2.2.x Module +#SPKG_DESC_CSWmysql5 = MySQL 5 database management system - server files +#SPKG_DESC_CSWphp5gd = PHP 5 - GD Extension +#SPKG_DESC_CSWphp5mcrypt = PHP 5 - libmcrypt Extension +#SPKG_DESC_CSWphp5mysqli = PHP 5 - MySQLi Extension +#SPKG_DESC_CSWphp5session = PHP 5 - Session Extension + +REQUIRED_PKGS = CSWapache2 CSWap2modphp5 CSWmysql5 CSWphp5 CSWphp5gd CSWphp5mcrypt CSWphp5mysqli CSWphp5session + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*)-all-languages.tar.bz2 + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +SPKG_SOURCEURL = http://www.phpmyadmin.net + +include gar/category.mk + +install-custom: + @echo " ==> Installing $(GARNAME) (custom)" + @rm -rf $(DESTDIR)$(prefix)/apache2/share/htdocs/phpmyadmin + @ginstall -d $(DESTDIR)$(prefix)/apache2/share/htdocs + @cp -R $(WORKSRC)-all-languages $(DESTDIR)$(prefix)/apache2/share/htdocs/phpmyadmin + @ginstall -d $(DESTDIR)$(docdir)/phpmyadmin + @cp $(WORKSRC)-all-languages/LICENSE $(DESTDIR)$(docdir)/phpmyadmin + @$(MAKECOOKIE) Added: csw/mgar/pkg/phpMyAdmin/trunk/checksums =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/checksums (rev 0) +++ csw/mgar/pkg/phpMyAdmin/trunk/checksums 2009-01-30 16:38:55 UTC (rev 2943) @@ -0,0 +1,2 @@ +cb6a6db5d684f94e71f864071b5b0d7a download/phpMyAdmin-3.1.2-all-languages.tar.bz2 +25157d38d820705d47f2056d67cc0c2e download/CSWphpmyadmin.gspec Added: csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec (rev 0) +++ csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec 2009-01-30 16:38:55 UTC (rev 2943) @@ -0,0 +1,7 @@ +%var bitname phpmyadmin +%var pkgname CSWphpmyadmin +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +Please see /opt/csw/share/doc/phpmyadmin/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 Fri Jan 30 17:43:29 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 30 Jan 2009 16:43:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2944] csw/mgar/pkg/phpMyAdmin/trunk/Makefile Message-ID: Revision: 2944 http://gar.svn.sourceforge.net/gar/?rev=2944&view=rev Author: bonivart Date: 2009-01-30 16:43:29 +0000 (Fri, 30 Jan 2009) Log Message: ----------- phpMyAdmin: cleaned up Makefile Modified Paths: -------------- csw/mgar/pkg/phpMyAdmin/trunk/Makefile Modified: csw/mgar/pkg/phpMyAdmin/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/Makefile 2009-01-30 16:38:55 UTC (rev 2943) +++ csw/mgar/pkg/phpMyAdmin/trunk/Makefile 2009-01-30 16:43:29 UTC (rev 2944) @@ -15,13 +15,6 @@ DISTFILES = $(GARNAME)-$(GARVERSION)-all-languages.tar.bz2 DISTFILES += $(call admfiles,CSWphpmyadmin,) -#SPKG_DESC_CSWap2modphp5 = PHP 5 - Apache 2.2.x Module -#SPKG_DESC_CSWmysql5 = MySQL 5 database management system - server files -#SPKG_DESC_CSWphp5gd = PHP 5 - GD Extension -#SPKG_DESC_CSWphp5mcrypt = PHP 5 - libmcrypt Extension -#SPKG_DESC_CSWphp5mysqli = PHP 5 - MySQLi Extension -#SPKG_DESC_CSWphp5session = PHP 5 - Session Extension - REQUIRED_PKGS = CSWapache2 CSWap2modphp5 CSWmysql5 CSWphp5 CSWphp5gd CSWphp5mcrypt CSWphp5mysqli CSWphp5session # We define upstream file regex so we can be notifed of new upstream software release 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 30 18:55:28 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 17:55:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[2945] csw/mgar/pkg/pidgin/trunk Message-ID: Revision: 2945 http://gar.svn.sourceforge.net/gar/?rev=2945&view=rev Author: harpchad Date: 2009-01-30 17:55:28 +0000 (Fri, 30 Jan 2009) Log Message: ----------- Updates related to gar v2 Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/Makefile csw/mgar/pkg/pidgin/trunk/checksums csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec Removed Paths: ------------- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype Modified: csw/mgar/pkg/pidgin/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-30 17:55:28 UTC (rev 2945) @@ -10,9 +10,9 @@ MASTER_SITES = $(SF_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += x11.pc -DISTFILES += $(call admfiles,CSWpidgin,prototype depend) +DISTFILES += $(call admfiles,CSWpidgin,) -CONFIGURE_ARGS = $(DIRPATHS) +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' @@ -21,21 +21,29 @@ CONFIGURE_ARGS += '--disable-avahi' CONFIGURE_ARGS += '--disable-nm' -CONFIGURE_ENV += DOT="/opt/csw/graphviz2/bin/dot" - +DOT=/opt/csw/graphviz2/bin/dot +XGETTEXT=/opt/csw/bin/gxgettext +MSGFMT=/opt/csw/bin/gmsgfmt +MSGMERGE=/opt/csw/bin/gmsgmerge +SED=/opt/csw/bin/gsed +EXTRA_CONFIGURE_EXPORTS = DOT XGETTEXT MSGFMT MSGMERGE SED 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) +EXTRA_PKGCONFIG_PATH = $(CURDIR)/$(WORKDIR) -#No tests -TEST_SCRIPTS = +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 = +EXTRA_MERGE_EXCLUDE_FILES = .*/perllocal.pod +REQUIRED_PKGS_CSWpidgin = CSWaspell CSWdbusglib CSWgcrypt CSWggettext CSWglib2 +REQUIRED_PKGS_CSWpidgin += CSWgnutls CSWgstreamer CSWgtk2 CSWgtkspell CSWlibatk +REQUIRED_PKGS_CSWpidgin += CSWlibcairo CSWlibdbus CSWlibxml2 CSWmeanwhile CSWncurses +REQUIRED_PKGS_CSWpidgin += CSWpango CSWperl CSWpython CSWsilctoolkit CSWstartupnotif +REQUIRED_PKGS_CSWpidgin += CSWtcl CSWtk CSWiconv CSWsunmath CSWzlib + + include gar/category.mk Modified: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,5 +1,3 @@ eb28c552647ee583f3d817db690164c5 download/pidgin-2.5.4.tar.gz 6dd3c13c4b6f610409fd267692dbe716 download/x11.pc -75d0097a23fe4aa80f6d1a0a77312be5 download/CSWpidgin.depend -e3bacfec1eab2b829d4255afa4f69bee download/CSWpidgin.gspec -dd1cc45fce7e85a4326c5bddd306840c download/CSWpidgin.prototype +e33492bae1fd2f7773adad463f19fa0f download/CSWpidgin.gspec Deleted: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,31 +0,0 @@ -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 -P CSWgpgerr Modified: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,4 +1,4 @@ %var bitname pidgin %var pkgname CSWpidgin %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,1061 +0,0 @@ -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/finch.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/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/gntft.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/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/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/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/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/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/ntlm.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/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/request.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/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 -d none /opt/csw/include/pidgin 0755 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/gtkconv.h 0644 root bin -f none /opt/csw/include/pidgin/gtkconvwin.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/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/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/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/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/gtkrequest.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/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/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/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/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/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/default 0755 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/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/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/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/disappointed.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/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/fingers-crossed.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/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/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/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/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/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/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/qq.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/shame.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/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/silc.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/yahoo.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/zephyr.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/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/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/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 -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/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/yahoo.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/zephyr.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/status 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/status/11 0755 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/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 -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 -d none /opt/csw/share/pixmaps/pidgin/status/32 0755 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/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/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/invisible.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/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/person.png 0644 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/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/rtl/log-out.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/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/busy.png 0644 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/extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/48/invisible.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/log-out.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/person.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/log-in.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/48/rtl/log-out.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/toolbar 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/toolbar/16 0755 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/change-fgcolor.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/font-face.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/font-size-up.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/insert-link.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/message-new.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/send-file.png 0644 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/unblock.png 0644 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/tray 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/16 0755 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/away_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/connecting_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/invisible_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/message_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/tray-away.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-connecting.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/tray-message.png 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-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-online.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-away.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-connecting.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-invisible.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-new-im.png 0644 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-online.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-away.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-connecting.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-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-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-online.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/48 0755 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-busy.png 0644 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-extended-away.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-new-im.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-online.png 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/CAcert_Class3.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/Equifax_Secure_CA.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/GTE_CyberTrust_Global_Root.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/Microsoft_Internet_Authority.pem 0644 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/StartCom_Free_SSL_CA.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/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 -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/alert.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/receive.wav 0644 root bin -f none /opt/csw/share/sounds/purple/send.wav 0644 root bin 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 30 22:09:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 21:09:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2946] csw/mgar/pkg/texinfo/trunk/Makefile Message-ID: Revision: 2946 http://gar.svn.sourceforge.net/gar/?rev=2946&view=rev Author: dmichelsen Date: 2009-01-30 21:09:32 +0000 (Fri, 30 Jan 2009) Log Message: ----------- texinfo: Fix REVSTAMP version Modified Paths: -------------- csw/mgar/pkg/texinfo/trunk/Makefile Modified: csw/mgar/pkg/texinfo/trunk/Makefile =================================================================== --- csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-30 17:55:28 UTC (rev 2945) +++ csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-30 21:09:32 UTC (rev 2946) @@ -1,5 +1,7 @@ GARNAME = texinfo -GARVERSION = 4.13a +RELEASE = a +GARVERSION = 4.13 +DISTVERSION = $(GARVERSION)$(RELEASE) CATEGORIES = utils DESCRIPTION = The GNU Documentation System @@ -8,9 +10,8 @@ on-line information (info, HTML, XML, Docbook) and printed output (DVI, PDF). endef -DISTNAME = $(GARNAME)-4.13 MASTER_SITES = $(GNU_MIRROR) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz DISTFILES += $(call admfiles,CSWtexinfo,) # We define upstream file regex so we can be notifed of new upstream software release @@ -25,3 +26,5 @@ EXTRA_MERGE_EXCLUDE_FILES = $(libdir)/charset.alias include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) 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 30 22:25:04 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 21:25:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2947] csw/mgar/pkg/glib2/trunk Message-ID: Revision: 2947 http://gar.svn.sourceforge.net/gar/?rev=2947&view=rev Author: harpchad Date: 2009-01-30 21:25:04 +0000 (Fri, 30 Jan 2009) Log Message: ----------- - update to glib 2.18.4 - add 64-bit support - build with gar v2 Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile csw/mgar/pkg/glib2/trunk/checksums Added Paths: ----------- csw/mgar/pkg/glib2/trunk/files/ csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch Property Changed: ---------------- csw/mgar/pkg/glib2/trunk/ Property changes on: csw/mgar/pkg/glib2/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/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:09:32 UTC (rev 2946) +++ csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:25:04 UTC (rev 2947) @@ -1,5 +1,5 @@ -GARNAME = glib2 -GARVERSION = 2.4.0 +GARNAME = glib +GARVERSION = 2.18.4 CATEGORIES = lib DESCRIPTION = The GLib library of C routines. @@ -9,22 +9,31 @@ has been split off as of the developers' version 1.1.0. endef -MASTER_SITES = ftp://ftp.gtk.org/pub/gtk/v2.4/ +MASTER_SITES = $(GNOME_MIRROR) -DISTFILES = glib-$(GARVERSION).tar.bz2 -WORKSRC = $(WORKDIR)/glib-$(GARVERSION) +DISTFILES = $(call admfiles,CSWglib2,) +DISTFILES += $(call admfiles,CSWglib2devel,) +DISTFILES += $(GARNAME)-$(GARVERSION).tar.bz2 +#See gnome bug 569889 +PATCHFILES = gtkdoc-rebase.patch + CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --enable-debug=yes +CONFIGURE_ARGS += --with-libiconv=gnu +CONFIGURE_ARGS += --enable-static +CONFIGURE_ARGS += --disable-gtk-doc -TEST_TARGET = check +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -# Bug #136867 (child-watch) -TEST_SCRIPTS = +BUILD64 = 1 +NO_ISAEXEC = 1 +REQUIRED_PKGS_CSWglib2 = CSWggettext CSWiconv CSWsunmath +REQUIRED_PKGS_CSWglib2devel = CSWglib2 CSWggettext CSWiconv + +TEST_TARGET = + +PKGFILES_CSWglib2 = $(PKGFILES_RT) +PKGFILES_CSWglib2 += /opt/csw/share/locale/.* + include gar/category.mk - -# For some reason, autoconf drops the ball on this one... -post-install: - @( cd $(DESTDIR)$(bindir) ; \ - $(PERL) -i -plne '$$. == 1 && s{#!\s+}{#!$(PERL) }' glib-mkenums ) Modified: csw/mgar/pkg/glib2/trunk/checksums =================================================================== --- csw/mgar/pkg/glib2/trunk/checksums 2009-01-30 21:09:32 UTC (rev 2946) +++ csw/mgar/pkg/glib2/trunk/checksums 2009-01-30 21:25:04 UTC (rev 2947) @@ -1 +1,4 @@ -0f5f4896782ec7ab6ea8c7c1d9958114 download/glib-2.4.0.tar.bz2 +fdfb028f9224b8e9926163aae0e97d3f download/CSWglib2.gspec +716c7eda9a4edd22c1f648396a60b646 download/CSWglib2devel.gspec +ec25ed261534d870141000ab73f1a2bf download/glib-2.18.4.tar.bz2 +fb144356d0918eff4ef17a2a285860bc download/gtkdoc-rebase.patch Added: csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec =================================================================== --- csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec 2009-01-30 21:25:04 UTC (rev 2947) @@ -0,0 +1,4 @@ +%var bitname glib2 +%var pkgname CSWglib2 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec =================================================================== --- csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec 2009-01-30 21:25:04 UTC (rev 2947) @@ -0,0 +1,4 @@ +%var bitname glib2_devel +%var pkgname CSWglib2devel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch =================================================================== --- csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch 2009-01-30 21:25:04 UTC (rev 2947) @@ -0,0 +1,99 @@ +diff -rud glib-2.18.4.o/docs/reference/gio/Makefile.in glib-2.18.4/docs/reference/gio/Makefile.in +--- glib-2.18.4.o/docs/reference/gio/Makefile.in 2009-01-09 10:42:52.000000000 -0600 ++++ glib-2.18.4/docs/reference/gio/Makefile.in 2009-01-30 13:53:08.907638618 -0600 +@@ -739,8 +739,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -769,8 +769,8 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + # Tell versions [3.59,3.63) of GNU make to not export all variables. +diff -rud glib-2.18.4.o/docs/reference/glib/Makefile.in glib-2.18.4/docs/reference/glib/Makefile.in +--- glib-2.18.4.o/docs/reference/glib/Makefile.in 2009-01-09 10:42:52.000000000 -0600 ++++ glib-2.18.4/docs/reference/glib/Makefile.in 2009-01-30 13:52:27.443248125 -0600 +@@ -771,8 +771,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -801,8 +801,8 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + +diff -rud glib-2.18.4.o/docs/reference/gobject/Makefile.in glib-2.18.4/docs/reference/gobject/Makefile.in +--- glib-2.18.4.o/docs/reference/gobject/Makefile.in 2009-01-09 10:42:52.000000000 -0600 ++++ glib-2.18.4/docs/reference/gobject/Makefile.in 2009-01-30 13:53:41.314802722 -0600 +@@ -754,8 +754,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -784,8 +784,8 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + +diff -rud glib-2.18.4.o/gtk-doc.make glib-2.18.4/gtk-doc.make +--- glib-2.18.4.o/gtk-doc.make 2009-01-09 11:08:20.000000000 -0600 ++++ glib-2.18.4/gtk-doc.make 2009-01-30 13:54:08.204190136 -0600 +@@ -157,8 +157,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -190,7 +190,7 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs 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 30 22:42:03 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 21:42:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[2948] csw/mgar/pkg/glib2/trunk/Makefile Message-ID: Revision: 2948 http://gar.svn.sourceforge.net/gar/?rev=2948&view=rev Author: harpchad Date: 2009-01-30 21:42:03 +0000 (Fri, 30 Jan 2009) Log Message: ----------- exclude charset.alias Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile Modified: csw/mgar/pkg/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:25:04 UTC (rev 2947) +++ csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:42:03 UTC (rev 2948) @@ -33,6 +33,9 @@ TEST_TARGET = +#provided by iconv +MERGE_EXCLUDE_FILES = .*/charset.alias + PKGFILES_CSWglib2 = $(PKGFILES_RT) PKGFILES_CSWglib2 += /opt/csw/share/locale/.* 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 30 23:12:55 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 22:12:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[2949] csw/mgar/pkg Message-ID: Revision: 2949 http://gar.svn.sourceforge.net/gar/?rev=2949&view=rev Author: harpchad Date: 2009-01-30 22:12:55 +0000 (Fri, 30 Jan 2009) Log Message: ----------- which (gnu varient): initial commit Added Paths: ----------- csw/mgar/pkg/which/ csw/mgar/pkg/which/branches/ csw/mgar/pkg/which/tags/ csw/mgar/pkg/which/trunk/ csw/mgar/pkg/which/trunk/Makefile csw/mgar/pkg/which/trunk/checksums csw/mgar/pkg/which/trunk/files/ csw/mgar/pkg/which/trunk/files/CSWwhich.gspec Property changes on: csw/mgar/pkg/which/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/which/trunk/Makefile =================================================================== --- csw/mgar/pkg/which/trunk/Makefile (rev 0) +++ csw/mgar/pkg/which/trunk/Makefile 2009-01-30 22:12:55 UTC (rev 2949) @@ -0,0 +1,25 @@ +GARNAME = which +GARVERSION = 2.20 +CATEGORIES = utils + +DESCRIPTION = locate a command and display its pathname or alias +define BLURB + GNU which - is a utility that is used to find which executable (or alias or shell function) is executed when entered on the shell prompt +endef + +MASTER_SITES = $(GNU_MIRROR) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWwhich,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --program-prefix=g +CONFIGURE_ARGS += --disable-dependency-tracking + +TEST_TARGET = check + +BUILD64 = 1 + +include gar/category.mk Added: csw/mgar/pkg/which/trunk/checksums =================================================================== --- csw/mgar/pkg/which/trunk/checksums (rev 0) +++ csw/mgar/pkg/which/trunk/checksums 2009-01-30 22:12:55 UTC (rev 2949) @@ -0,0 +1,2 @@ +c67cf9f6eb706d7806152ff74969d48d download/CSWwhich.gspec +95be0501a466e515422cde4af46b2744 download/which-2.20.tar.gz Added: csw/mgar/pkg/which/trunk/files/CSWwhich.gspec =================================================================== --- csw/mgar/pkg/which/trunk/files/CSWwhich.gspec (rev 0) +++ csw/mgar/pkg/which/trunk/files/CSWwhich.gspec 2009-01-30 22:12:55 UTC (rev 2949) @@ -0,0 +1,4 @@ +%var bitname which +%var pkgname CSWwhich +%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 bdwalton at users.sourceforge.net Fri Jan 30 23:31:43 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 30 Jan 2009 22:31:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2950] csw/mgar/pkg/ruby/trunk Message-ID: Revision: 2950 http://gar.svn.sourceforge.net/gar/?rev=2950&view=rev Author: bdwalton Date: 2009-01-30 22:31:43 +0000 (Fri, 30 Jan 2009) Log Message: ----------- - Remove old prototypes in favour of dynamic gar replacements. - Remove old depend files in favour of gar - First working gar2 build with rdoc patch. Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile csw/mgar/pkg/ruby/trunk/checksums csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec csw/mgar/pkg/ruby/trunk/files/CSWrubytk.gspec Removed Paths: ------------- csw/mgar/pkg/ruby/trunk/files/CSWruby.depend csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.sparc csw/mgar/pkg/ruby/trunk/files/CSWrubytk.depend csw/mgar/pkg/ruby/trunk/files/CSWrubytk.prototype csw/mgar/pkg/ruby/trunk/files/dbm.diff Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 22:31:43 UTC (rev 2950) @@ -25,6 +25,12 @@ closures. endef +SPKG_DESC_CSWrubytk = Ruby Tcl/TK Extension +SPKG_DESC_CSWrubydoc = Documentation for Ruby + +PKGFILES_CSWrubydoc = $(PKGFILES_DOC) +PKGFILES_CSWrubytk = .*tcl.* .*tk.* + MASTER_SITES = ftp://ftp.ruby-lang.org/pub/ruby/ MASTER_SITES += ftp://www.ibiblio.org/pub/languages/ruby/ @@ -34,14 +40,11 @@ DISTFILES = $(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL).tar.bz2 DISTFILES += $(call admfiles,CSWruby,) $(call admfiles,CSWrubytk,) +DISTFILES += $(call admfiles,CSWrubydoc,) # See: http://rubyforge.org/tracker/index.php?func=detail&aid=17607&group_id=426&atid=1698 PATCHFILES = rdoc_parse_order_fix.patch -ifneq ($(SKIP_RUBYDOC),1) -DISTFILES += $(call admfiles,CSWrubydoc,) -endif - # Put samples and RI documentation in share/doc/ruby datadir = $(docdir)/ruby @@ -59,15 +62,16 @@ CONFIGURE_ARGS += --with-readline-dir=$(prefix) CONFIGURE_ARGS += --with-zlib-dir=$(prefix) +INSTALL_ARGS = install-all + WORKSRC = $(WORKDIR)/$(DISTNAME)-$(PATCHLEVEL) WORKSRC_FIRSTMOD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(DISTNAME)-$(PATCHLEVEL) + include gar/category.mk SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHLEVEL) -INSTALL_ARGS = install-all - PI_TARGETS = samples rbconfig rbscripts post-install-modulated: $(PI_TARGETS) Modified: csw/mgar/pkg/ruby/trunk/checksums =================================================================== --- csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,5 +1,5 @@ 0b215c46b89b28d7ab8d56d96e72d5b9 download/ruby-1.8.7-p72.tar.bz2 -b2d3f1987e4dd3962f15131dc6ab28a3 download/CSWruby.gspec -1b4a5fec67986e3f38df7e34c2155ed1 download/CSWrubytk.gspec -02d0cf5721de6c1f6740b399cbe141f1 download/CSWrubydoc.gspec +b700c2469b232a57237f87721188b657 download/CSWruby.gspec +37b936d30a1cb6272d7e5e4582a455df download/CSWrubytk.gspec +bef754cfb2108be9c7511a17a9d91ff6 download/CSWrubydoc.gspec 36460ea6a145017c3ddd1173e903a511 download/rdoc_parse_order_fix.patch Deleted: csw/mgar/pkg/ruby/trunk/files/CSWruby.depend =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWruby.depend 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWruby.depend 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,8 +0,0 @@ -P CSWbdb3 berkeleydb3 - file based pseudo-database library -P CSWgdbm gdbm - GNU dbm -P CSWgfile fileutils - GNU file utilities -P CSWiconv libiconv - GNU iconv library -P CSWncurses ncurses - ncurses library and utilities -P CSWosslrt openssl_rt - Openssl runtime libraries -P CSWreadline readline - library to enable interactive line editing -P CSWzlib zlib - Zlib Data Compression Library Modified: csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,4 +1,4 @@ %var bitname ruby %var pkgname CSWruby -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING +%include url file://%{PKGLIB}/csw_standard.gspec Deleted: csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,692 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/ruby 0755 root bin -f none /opt/csw/bin/testrb 0755 root bin -f none /opt/csw/bin/irb 0755 root bin -f none /opt/csw/bin/rdoc 0755 root bin -f none /opt/csw/bin/erb 0755 root bin -f none /opt/csw/bin/ri 0755 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/ruby 0755 root bin -d none /opt/csw/lib/ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/config.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rbconfig.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rubyio.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/re.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rubysig.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dln.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/defines.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/regex.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/intern.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/env.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/missing.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/version.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/st.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/ruby.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/util.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/node.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/strscan.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/bigdecimal.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/curses.so 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/bubblebabble.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/sha2.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/rmd160.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/md5.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/sha1.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/pty.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/sdbm.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dl.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest.h 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/syck.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/fcntl.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/gdbm.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/thread.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/stringio.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/openssl.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/socket.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dlconfig.h 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/readline.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/iconv.so 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/racc 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/racc/cparse.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/zlib.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dbm.so 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/io 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/io/wait.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dl.h 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/nkf.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/syslog.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/etc.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rbconfig.rb~ 0644 root bin -d none /opt/csw/lib/ruby/1.8/xsd 0755 root bin -f none /opt/csw/lib/ruby/1.8/xsd/namedelements.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/xsd/xmlparser 0755 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/rexmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/xmlscanner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/xmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/qname.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/ns.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/xsd/codegen 0755 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/classdef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/moduledef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/methoddef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/gensupport.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/commentdef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/charset.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/datatypes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/iconvcharset.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/mapping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/datatypes1999.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/weakref.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/finalize.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ipaddr.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mutex_m.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shellwords.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/un.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tsort.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/securerandom.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/cgi 0755 root bin -d none /opt/csw/lib/ruby/1.8/cgi/session 0755 root bin -f none /opt/csw/lib/ruby/1.8/cgi/session/pstore.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/cgi/session.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/date 0755 root bin -f none /opt/csw/lib/ruby/1.8/date/format.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ostruct.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mathn.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/parsedate.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/generator.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rinda 0755 root bin -f none /opt/csw/lib/ruby/1.8/rinda/ring.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rinda/tuplespace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rinda/rinda.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/ruby-lex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/slex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/input-method.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/frame.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/lc 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/error.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/lc/ja 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/ja/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/ja/help-message 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/help-message 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/context.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/workspace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/locale.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/help.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ruby-token.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/ext 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/workspaces.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/change-ws.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/tracer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/loader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/math-mode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/save-history.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/use-loader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/multi-irb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/history.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/xmp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/output-method.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/notifier.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/extend-command.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/cmd 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/fork.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/chws.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/pushws.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/load.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/help.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/nop.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/subirb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ws-for-case-2.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/completion.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/init.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mailread.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/pp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/find.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/Env.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/abbrev.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/observer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/rexmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/taxonomy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/trackback.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/syndication.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xml.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/1.0.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss/content 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/content/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/content/1.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xml-stylesheet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xmlscanner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/atom.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/image.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/rss.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/slash.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/content.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/0.9.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss/maker 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/image.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/0.9.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/taxonomy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/feed.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/base.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/entry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/trackback.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/syndication.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/itunes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/1.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/content.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/slash.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/atom.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/dublincore.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/utils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/converter.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss/dublincore 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore/atom.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore/1.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/itunes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/benchmark.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/net 0755 root bin -f none /opt/csw/lib/ruby/1.8/net/protocol.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/ftp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/smtp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/telnet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/pop.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/https.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/imap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/http.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/telnets.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/ftptls.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ftools.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/collector.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui 0755 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk/testrunner.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/console 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/console/testrunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk2 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk2/testrunner.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/fox 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/fox/testrunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/testsuite.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/util 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/util/observable.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/util/procwrapper.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/util/backtracefilter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/autorunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/failure.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/testresult.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/assertions.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/collector 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/collector/objectspace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/collector/dir.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/assertionfailederror.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/testcase.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/forwardable.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/time.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/thread.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/shell 0755 root bin -f none /opt/csw/lib/ruby/1.8/shell/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/system-command.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/filter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/process-controller.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/builtin-command.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/command-processor.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/sync.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/jcode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/getoptlong.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/date.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/fileutils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/csv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/monitor.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/wsdl 0755 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/importer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/types.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/part.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/message.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/wsdl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/portType.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/definitions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/data.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/info.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/operation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/param.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/service.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/operationBinding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/import.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema 0755 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/all.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/unique.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/attribute.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/content.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/schema.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/include.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/import.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/sequence.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/complexType.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/importer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/data.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/complexContent.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/any.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/length.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/annotation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleType.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/xsd2ruby.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleExtension.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleContent.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/pattern.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/choice.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/enumeration.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleRestriction.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/binding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/documentation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/port.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/wsdl/soap 0755 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/wsdl2ruby.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/servantSkeltonCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/data.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/methodDefCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/mappingRegistryCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/binding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/classDefCreatorSupport.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/address.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/body.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/header.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/standaloneServerStubCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/fault.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/classDefCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/driverCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/clientSkeltonCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/definitions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/operation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/cgiStubCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/headerfault.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/complexType.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/webrick 0755 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/htmlutils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/compat.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/server.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httputils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/ssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/log.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httprequest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpproxy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/utils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/cgi.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/webrick/httpauth 0755 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/htgroup.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/htpasswd.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/userdb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/digestauth.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/authenticator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/htdigest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/basicauth.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpversion.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/cookie.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/webrick/httpservlet 0755 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/cgi_runner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/erbhandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/filehandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/abstract.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/prochandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/cgihandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/config.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpresponse.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/accesslog.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/https.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpstatus.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml 0755 root bin -d none /opt/csw/lib/ruby/1.8/rexml/parsers 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/sax2parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/ultralightparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/xpathparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/treeparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/lightparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/pullparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/baseparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/streamparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/instruction.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/document.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parseexception.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/namespace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/child.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/validation 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/validation/relaxng.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/validation/validationexception.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/validation/validation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/output.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/node.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/sax2listener.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/formatters 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/formatters/default.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/formatters/pretty.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/formatters/transitive.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/source.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/dtd 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/elementdecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/entitydecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/notationdecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/dtd.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/attlistdecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xmltokens.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/light 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/light/node.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/streamlistener.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/attribute.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parent.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/cdata.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/attlistdecl.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/encodings 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/UNILE.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/EUC-JP.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/ISO-8859-15.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/ISO-8859-1.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/ICONV.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/SHIFT_JIS.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/US-ASCII.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/UTF-8.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/SHIFT-JIS.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/UTF-16.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/CP-1252.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/syncenumerator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/text.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/comment.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/undefinednamespaceexception.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xpath.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encoding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/functions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/quickpath.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xmldecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/doctype.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xpath_parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/entity.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/rexml.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/eregex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/readbytes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/base64.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tmpdir.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/drb 0755 root bin -f none /opt/csw/lib/ruby/1.8/drb/eq.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/timeridconv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/invokemethod.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/observer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/acl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/extserv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/ssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/extservm.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/unix.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/drb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/gw.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tempfile.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/profile.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/scanf.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc 0755 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/ri 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_display.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_options.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_reader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_formatter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_cache.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_writer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_driver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_paths.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_descriptions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_util.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/options.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/rdoc.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/dot 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/dot/dot.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/diagram.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/template.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/usage.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/parsers 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_f95.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_rb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parserfactory.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_c.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_simple.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/tokenstream.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/code_objects.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup 0755 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup/test 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/test/AllTests.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/test/TestParse.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/test/TestInline.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/lines.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/fragments.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/inline.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/to_flow.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/to_html.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/to_latex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/preprocess.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup/sample 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/sample/sample.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/sample/rdoc2latex.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/ri_generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/html_generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/xml_generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/chm_generator.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template 0755 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/old_html.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/one_page_html.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/kilmer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/hefss.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/html.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template/chm 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/chm/chm.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template/xml 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/xml/xml.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/xml/rdf.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/optparse 0755 root bin -f none /opt/csw/lib/ruby/1.8/optparse/date.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/time.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/shellwords.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/uri.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/delegate.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tracer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/cgi-lib.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/complex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/prettyprint.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/open-uri.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/xmlrpc 0755 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/create.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/httpserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/base64.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/utils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/client.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/server.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/config.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/datetime.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/marshal.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/open3.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mkmf.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rubyunit.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/racc 0755 root bin -f none /opt/csw/lib/ruby/1.8/racc/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/timeout.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/uri 0755 root bin -f none /opt/csw/lib/ruby/1.8/uri/ftp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/ldap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/mailto.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/ldaps.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/https.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/generic.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/common.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/http.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/profiler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/cgi.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/erb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/gserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/pathname.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/yaml 0755 root bin -f none /opt/csw/lib/ruby/1.8/yaml/types.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/stringio.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/stream.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/constants.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/loader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/ypath.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/dbm.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/basenode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/store.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/rubytypes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/syck.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/tag.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/baseemitter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/encoding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/yamlnode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/pstore.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/marshal.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/property.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/header 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/header/simplehandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/header/handler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/header/handlerset.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/attachment.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/streamHandler.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/encodingstyle 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/aspDotNetHandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/handler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/soapHandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/literalHandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/netHttpClient.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/processor.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/rpc 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/standaloneServer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/rpc.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/httpserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/proxy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/cgistub.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/soaplet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/driver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/router.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/wsdlDriver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mimemessage.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/baseData.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/httpconfigloader.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/mapping 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/mapping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/factory.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/wsdlliteralregistry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/rubytypeFactory.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/registry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/wsdlencodedregistry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/typeMap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/soap.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/runit 0755 root bin -f none /opt/csw/lib/ruby/1.8/runit/testsuite.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/topublic.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/runit/cui 0755 root bin -f none /opt/csw/lib/ruby/1.8/runit/cui/testrunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/testresult.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/testcase.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/assert.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/debug.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/thwait.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/logger.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/importenv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/set.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/e2mmap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/resolv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/parsearg.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/getopts.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/English.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/date2.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/matrix.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/resolv-replace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/singleton.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rational.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/digest 0755 root bin -f none /opt/csw/lib/ruby/1.8/digest/sha2.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/bigdecimal 0755 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/math.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/util.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/jacobian.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/newton.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/ludcmp.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/dl 0755 root bin -f none /opt/csw/lib/ruby/1.8/dl/types.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/dl/struct.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/dl/import.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/dl/win32.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/digest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/md5.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/openssl 0755 root bin -f none /opt/csw/lib/ruby/1.8/openssl/digest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/cipher.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/buffering.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/pkcs7.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/ssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/x509.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/bn.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/io 0755 root bin -f none /opt/csw/lib/ruby/1.8/io/nonblock.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/expect.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/sha1.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/kconv.rb 0644 root bin -d none /opt/csw/lib/ruby/site_ruby 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/%GARCH%-solaris2.8 0755 root bin -d none /opt/csw/lib/ruby/vendor_ruby 0755 root bin -d none /opt/csw/lib/ruby/vendor_ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/vendor_ruby/1.8/%GARCH%-solaris2.8 0755 root bin -f none /opt/csw/lib/libruby.so.1 0755 root bin -f none /opt/csw/lib/libruby-static.a 0644 root bin -s none /opt/csw/lib/libruby.so.1.8.7=libruby.so.1 -s none /opt/csw/lib/libruby.so=libruby.so.1 -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/ruby.1 0644 root bin Deleted: csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend 2009-01-30 22:31:43 UTC (rev 2950) @@ -1 +0,0 @@ -P CSWruby ruby - An object-oriented language for quick and easy programming. Modified: csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,15 +1,5 @@ %var bitname rubydoc %var pkgname CSWrubydoc -# we want to handle the %prototype a little differently for this package, so -# we override the csw_standard include to exclude the file csw_prototype from -# being pulled in. -#%include url file://%{PKGLIB}/csw_standard.gspec -%include url file://%{PKGLIB}/csw_vars.gspec -%prototype -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/doc 0755 root bin -%prototype exec cswproto -s %{TIMESTAMP} -r %{DESTDIR} %{DESTDIR}%{prefix}/share/doc -%pkginfo url file://%{PKGLIB}/csw/pkginfo -%depend:merge url file://%{PKGLIB}/csw/depend -%var desc Ruby documentation -%copyright url file://%{WORKSRC}/COPYING +%var arch all +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING +%include url file://%{PKGLIB}/csw_standard.gspec \ No newline at end of file Deleted: csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,17994 +0,0 @@ -d /opt/csw/share 0755 root bin -d /opt/csw/share/doc 0755 root bin -d /opt/csw/share/doc/ruby 0755 root bin -d /opt/csw/share/doc/ruby/sample 0755 root bin -d /opt/csw/share/doc/ruby/sample/drb 0755 root bin -f /opt/csw/share/doc/ruby/sample/drb/dcdbiff.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbs.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dchats.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/darrayc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/ring_inspect.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqlib.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/speedc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dlogc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/http0.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dchatc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/darray.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbmc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dlogd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/name.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/rinda_ts.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqueue.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dhasen.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/http0serv.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/ring_echo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/speeds.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/rindac.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dhasenc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqout.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/old_tuplespace.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/simpletuple.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/gw_s.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dbiff.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbssl_s.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/gw_cu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/README.rd.ja 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/holderc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/gw_ct.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/README.rd 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/rindas.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/extserv_test.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/namec.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbs-acl.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqin.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbm.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbssl_c.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/holders.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/ring_place.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/from.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/list2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/sieve.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/optparse 0755 root bin -f /opt/csw/share/doc/ruby/sample/optparse/subcommand.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/optparse/opttest.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.scm 0644 root bin -f /opt/csw/share/doc/ruby/sample/dualstack-httpd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/list3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/pi.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/export.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fullpath.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/freq.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/erb 0755 root bin -f /opt/csw/share/doc/ruby/sample/erb/erb4html.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.py 0644 root bin -f /opt/csw/share/doc/ruby/sample/occur.pl 0644 root bin -f /opt/csw/share/doc/ruby/sample/observ.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/mkproto.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dbmtest.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/time.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/eval.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/philos.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/mine.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/openssl 0755 root bin -f /opt/csw/share/doc/ruby/sample/openssl/cert_store_view.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/wget.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/crlstore.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/echo_cli.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/smime_write.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/cert2text.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/cipher.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/smime_read.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/echo_svr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/gen_csr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/certstore.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/c_rehash.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/occur2.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/testunit 0755 root bin -f /opt/csw/share/doc/ruby/sample/testunit/tc_subtracter.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/subtracter.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/tc_adder.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/ts_examples.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/adder.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/regx.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dualstack-fetch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/test.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/exyacc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/occur.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/biorhythm.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/cal.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/trojan.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dir.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/webrick 0755 root bin -f /opt/csw/share/doc/ruby/sample/webrick/hello.cgi 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-urlencoded.cgi 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-multipart.cgi 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/httpproxy.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-servlet.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-app.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/httpsd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/httpd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/hello.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/uumerge.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/svr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/list.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/logger 0755 root bin -f /opt/csw/share/doc/ruby/sample/logger/shifting.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/logger/app.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/logger/log.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/rcs.awk 0644 root bin -f /opt/csw/share/doc/ruby/sample/mpart.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/rss 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/list_description.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/re_read.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/blend.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/rss_recent.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/convert.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/fib.awk 0644 root bin -f /opt/csw/share/doc/ruby/sample/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/less.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/rcs.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tsvr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/getopts.test 0644 root bin -f /opt/csw/share/doc/ruby/sample/cbreak.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/clnt.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fact.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.pl 0644 root bin -f /opt/csw/share/doc/ruby/sample/mrshtest.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/rcs.dat 0644 root bin -d /opt/csw/share/doc/ruby/sample/dl 0755 root bin -f /opt/csw/share/doc/ruby/sample/dl/msgbox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/msgbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/c++sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/c++sample.C 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/libc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/drives.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/getch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/stream.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/dl/sample 0755 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/msgbox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/c++sample.C 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/c++sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/msgbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/libc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/stream.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/drives.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/getch.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/bigdecimal 0755 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/nlsolve.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/linear.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/pi.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/bigdecimal/sample 0755 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/sample/pi.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/sample/nlsolve.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/sample/linear.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/encstr_usage.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/editable_listbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktextio.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkbiff.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkline.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/bindtag_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktree.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/resource.en 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/figmemo_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/btn_with_frame.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkdialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/multi-ip_sample2.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tcltklib 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/sample1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines0.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/batsu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/sample0.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/sample2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines4.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/safeTk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/maru.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/iso2022-kr.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/irbtkw.rbw 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkoptdb.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktree.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/binding_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmenubutton.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tksleep_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/safe-tk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmsgcat-load_tk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/remote-ip_sample2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/24hr_clock.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/irbtk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkoptdb-safeTk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/binstr_usage.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktextframe.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkhello.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkfrom.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmsgcat-load_rb2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkbrowse.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkalignbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmultilistframe.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/remote-ip_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/cmd_res_test.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/msgs_tk 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/el.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/fr.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/cs.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/pl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/license.terms 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/ru.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/de.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/ja.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/nl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/en.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/it.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/en_gb.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/eo.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/es.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/cmd_resource 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktimer.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/cd_timer.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/images 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/flagdown.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/earthris.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/grey.25 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/earth.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/gray25.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/grey.5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/noletter.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/letters.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/tcllogo.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/teapot.ppm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/face.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/flagup.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/pattern.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktimer3.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/msgs_rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/ru.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/de.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/ja.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/el.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/fr.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/cs.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/pl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/en_gb.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/it.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/eo.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/es.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/nl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/en.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktimer2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkcombobox.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/demos-jp 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/README.JP 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/license.terms 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/README.tk80 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/license.terms.tk80 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/widget 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/bind.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/paned2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/bitmap.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/rmt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/twind.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menu8x.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/items.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/tree.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menu84.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/paned1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkmenu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/states.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/msgbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkprogress.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/rolodex 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkbut.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/style.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/clrpick.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/hello 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/image2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/anilabel.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/hscale.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/search.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/toolbar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/image3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/labelframe.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ixset 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/floor.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/arrow.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/goldberg.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/pendulum.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/image1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/combo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/rolodex-j 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/spin.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/mclist.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/cscroll.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/icon.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/check2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/README.1st 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/radio2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/button.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/vscale.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/radio3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/textpeer.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/tcolor 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/entry1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/check.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/dialog2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/browse1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ixset2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/twind2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/entry3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/sayings.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/label.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttknote.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/colors.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/radio.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/form.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/plot.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/dialog1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/entry2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkpane.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/text.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/puzzle.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menubu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/knightstour.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ctext.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/browse2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/filebox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/aniwave.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/square 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/unicodeout.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/floor2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ruler.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/msgbox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/timer 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/plot1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/pareto.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7a.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7c.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph6.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7b.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/scripts 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/scripts/stipples.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/plot1b.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/calendar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/barchart5.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/winop2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/readme.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/sample.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/buckskin.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/qv100.t.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/chalk.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/rain.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/winop1.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/m128_000.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/dial_demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/oscilloscope.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/canvSticker2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/canvItems.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/vu_demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/pie.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/README.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/canvSticker.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/dynarows.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/tcllogo.gif 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/buttons.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/valid.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/basic.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/Orig_LICENSE.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/command.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/maxsize.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/spreadsheet.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/debug.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/repeater.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/readme.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/toolbutton.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/button-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/button-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/pkgIndex.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/pkgIndex.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-d.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/vsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowright-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowdown-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/radio-c.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowup-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-d.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowleft-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tbar-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tab-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/check-u.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/hsb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/vslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/hslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-arrow-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowdown-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/check-c.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowup-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/vsb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowright-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-a.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tbar-a.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/hsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/radio-u.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowleft-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-s.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tbar-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tab-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-h.gif 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/pkgIndex.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-thumb.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowleft-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowup-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowdown-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-n.xcf 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-vthumb.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowleft.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowright-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/slider-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/vslider-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowdown.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowup.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/slider.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowright-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-thumb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowdown-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/vslider.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowup-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-vthumb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowright.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowleft-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-n.gif 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/pkgIndex.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowdown-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/hsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/button-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/vslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/hslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowright-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/button-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-pc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowup-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowleft-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowright-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowdown-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/vsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowup-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowleft-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-pc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/iconlib.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/dnd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/basic.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/bwidget.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/x1.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/manager.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/tree.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/select.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/tmpldlg.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg/demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg/license_terms_of_Img_extension 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg/readme.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/Orig_LICENSE.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/tkIcons 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/tkIcons-sample.kde 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/viewIcons.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/tkIcons.kde 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/hv.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image10 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image13 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image14 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image11 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image12 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/ss.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/Orig_COPYRIGHT.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image11 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image12 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image10 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image13 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image14 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/README 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image20 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image18 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image12 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image33 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image39 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image34 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image15 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image27 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image23 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image29 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image11 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image30 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image37 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image16 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image24 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image14 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image26 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image35 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image38 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image32 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image21 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image13 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image19 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image17 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image25 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image36 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image31 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image28 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image22 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image10 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/xyplot.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/datefield.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/plotdemos2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/plotdemos3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/plotdemos1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/spindate.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/disjointlistbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/panedwindow2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/fileselectiondialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/canvasprintbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/messagebox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/feedback.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/spintime.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/tabset.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/extfileselectiondialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/calendar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/messagebox1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/labeledwidget.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/notebook.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/timefield.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/hierarchy.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/promptdialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/radiobox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/tabnotebook.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/optionmenu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/scrolledcanvas.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/watch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/dialogshell.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/hyperhelp.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/menubar2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/timeentry.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/mainwindow.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/extfileselectionbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/selectiondialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/tabnotebook2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/finddialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/combobox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/menubar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/buttonbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/toolbar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/shell.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/selectionbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/entryfield-1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/dialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/entryfield-3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/spinint.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/datefield.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/canvasprintdialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/entryfield-2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/extbutton.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/messagedialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/scrolledhtml.rb 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 bdwalton at users.sourceforge.net Sat Jan 31 01:48:18 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 31 Jan 2009 00:48:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[2951] csw/mgar/pkg/ruby/trunk/Makefile Message-ID: Revision: 2951 http://gar.svn.sourceforge.net/gar/?rev=2951&view=rev Author: bdwalton Date: 2009-01-31 00:48:18 +0000 (Sat, 31 Jan 2009) Log Message: ----------- corrected dependency typo Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 22:31:43 UTC (rev 2950) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-01-31 00:48:18 UTC (rev 2951) @@ -7,7 +7,7 @@ PREREQUISITE_PKGS = CSWbdb3 CSWgdbm CSWgfile CSWiconv CSWncurses CSWossldevel PREREQUISITE_PKGS += CSWreadline CSWzlib -REQUIRED_PKGS_CSWruby = CSWbdb3n CSWgdbm CSWiconv +REQUIRED_PKGS_CSWruby = CSWbdb3 CSWgdbm CSWiconv REQUIRED_PKGS_CSWruby += CSWncurses CSWosslrt CSWreadline CSWzlib REQUIRED_PKGS_CSWrubytk = CSWruby CSWtk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Sat Jan 31 05:21:32 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Sat, 31 Jan 2009 04:21:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2952] csw/mgar/pkg/gettext/trunk Message-ID: Revision: 2952 http://gar.svn.sourceforge.net/gar/?rev=2952&view=rev Author: harpchad Date: 2009-01-31 04:21:32 +0000 (Sat, 31 Jan 2009) Log Message: ----------- - update to gettext 0.17 - add amd64 support - build in gar v2 Modified Paths: -------------- csw/mgar/pkg/gettext/trunk/Makefile csw/mgar/pkg/gettext/trunk/checksums csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec Added Paths: ----------- csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.i csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.s csw/mgar/pkg/gettext/trunk/files/libintl.so.2.i csw/mgar/pkg/gettext/trunk/files/libintl.so.2.s csw/mgar/pkg/gettext/trunk/files/libintl.so.3.i csw/mgar/pkg/gettext/trunk/files/libintl.so.3.s Property Changed: ---------------- csw/mgar/pkg/gettext/trunk/ Property changes on: csw/mgar/pkg/gettext/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/gettext/trunk/Makefile =================================================================== --- csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 00:48:18 UTC (rev 2951) +++ csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 04:21:32 UTC (rev 2952) @@ -2,25 +2,54 @@ GARVERSION = 0.17 CATEGORIES = lib -DESCRIPTION = GNU gettext +DESCRIPTION = GNU locale utilities define BLURB + GNU gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages endef -MASTER_SITES = $(GNU_MIRRORS) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWggettext) +MASTER_SITES = $(GNU_MIRROR) -# We define upstream file regex so we can be notifed of new upstream software release +DISTFILES = $(call admfiles,CSWggettext,) +DISTFILES += $(call admfiles,CSWggettextdoc,) +DISTFILES += $(GARNAME)-$(GARVERSION).tar.gz +#Include earlier library revisions for compatibility with existing packages +DISTFILES += libgettextlib-0.14.1.so.i +DISTFILES += libgettextlib-0.14.1.so.s +DISTFILES += libintl.so.2.i +DISTFILES += libintl.so.2.s +DISTFILES += libintl.so.3.i +DISTFILES += libintl.so.3.s + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --program-prefix=g +#Dont' depend on packages that depend on me +CONFIGURE_ARGS += --with-included-glib +CONFIGURE_ARGS += --with-included-libcroco +#No glibc +CONFIGURE_ARGS += --with-included-gettext + UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -EXTRA_BUILD_ISAS_sparc = sparcv9 -EXTRA_BUILD_ISAS_i386 = amd64 +BUILD64 = 1 +NO_ISAEXEC = 1 -CONFIGURE_ARGS = $(DIRPATHS) +REQUIRED_PKGS_CSWggettext = CSWiconv CSWexpat CSWncurses -TEST_TARGET = check +TEST_TARGET = +#provided by iconv +MERGE_EXCLUDE_FILES = .*/charset.alias + +PKGFILES_CSWggettextdoc = $(PKGFILES_DOC) + include gar/category.mk -LIBS = -lsec -export LIBS +post-install-isa-sparcv8: + @cp $(FILEDIR)/libgettextlib-0.14.1.so.s $(INSTALLISADIR)/opt/csw/lib/libgettextlib-0.14.1.so + @cp $(FILEDIR)/libintl.so.2.s $(INSTALLISADIR)/opt/csw/lib/libintl.so.2 + @cp $(FILEDIR)/libintl.so.3.s $(INSTALLISADIR)/opt/csw/lib/libintl.so.3 + +post-install-isa-i386: + @cp $(FILEDIR)/libgettextlib-0.14.1.so.i $(INSTALLISADIR)/opt/csw/lib/libgettextlib-0.14.1.so + @cp $(FILEDIR)/libintl.so.2.i $(INSTALLISADIR)/opt/csw/lib/libintl.so.2 + @cp $(FILEDIR)/libintl.so.3.i $(INSTALLISADIR)/opt/csw/lib/libintl.so.3 Modified: csw/mgar/pkg/gettext/trunk/checksums =================================================================== --- csw/mgar/pkg/gettext/trunk/checksums 2009-01-31 00:48:18 UTC (rev 2951) +++ csw/mgar/pkg/gettext/trunk/checksums 2009-01-31 04:21:32 UTC (rev 2952) @@ -1,2 +1,9 @@ +5f7c1991d31760f0f9977949c8f95629 download/CSWggettext.gspec +bdbfd869627a7450185e768b5aa1a0af download/CSWggettextdoc.gspec 58a2bc6d39c0ba57823034d55d65d606 download/gettext-0.17.tar.gz -e77ed8e74dcd0abbf699d345acde7e85 download/CSWggettext.gspec +d44a9a6ec0952bad7ad07026ccb42a10 download/libgettextlib-0.14.1.so.i +ff0219d47dbc11034b55872172488e01 download/libgettextlib-0.14.1.so.s +80123ce62a2ef58afb3f6f07a12bd1c1 download/libintl.so.2.i +3ab768083f6ecc5cada151e49be21aa0 download/libintl.so.2.s +ceb5de2326a4726d3710fe1512b84592 download/libintl.so.3.i +88db7322e263a00f24269a7f364fdc2d download/libintl.so.3.s Modified: csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec =================================================================== --- csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec 2009-01-31 00:48:18 UTC (rev 2951) +++ csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec 2009-01-31 04:21:32 UTC (rev 2952) @@ -1,4 +1,4 @@ %var bitname ggettext %var pkgname CSWggettext %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec =================================================================== --- csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec (rev 0) +++ csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec 2009-01-31 04:21:32 UTC (rev 2952) @@ -0,0 +1,4 @@ +%var bitname ggettextdoc +%var pkgname CSWggettextdoc +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Sat Jan 31 18:05:08 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Sat, 31 Jan 2009 17:05:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2953] csw/mgar/pkg/gettext/trunk/Makefile Message-ID: Revision: 2953 http://gar.svn.sourceforge.net/gar/?rev=2953&view=rev Author: harpchad Date: 2009-01-31 17:05:08 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Add check and note regarding it Modified Paths: -------------- csw/mgar/pkg/gettext/trunk/Makefile Modified: csw/mgar/pkg/gettext/trunk/Makefile =================================================================== --- csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 04:21:32 UTC (rev 2952) +++ csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 17:05:08 UTC (rev 2953) @@ -31,11 +31,13 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz BUILD64 = 1 -NO_ISAEXEC = 1 REQUIRED_PKGS_CSWggettext = CSWiconv CSWexpat CSWncurses -TEST_TARGET = +#NOTE: gettext tests are sensitive to bash environment variables, make sure +# custom paths are prefixed by $PATH, may be better to set aside +# ~/.bashrc, etc. during build. +TEST_TARGET = check #provided by iconv MERGE_EXCLUDE_FILES = .*/charset.alias 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 31 22:33:16 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 21:33:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[2954] csw/mgar/pkg/beanutils/trunk/Makefile Message-ID: Revision: 2954 http://gar.svn.sourceforge.net/gar/?rev=2954&view=rev Author: wbonnet Date: 2009-01-31 21:33:16 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Change the name of the licence file Documentation is installed under /opt/csw/share/doc/commons-beanutils and no longer /opt/csw/share/doc/commons-beanutils/docs Modified Paths: -------------- csw/mgar/pkg/beanutils/trunk/Makefile Modified: csw/mgar/pkg/beanutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 17:05:08 UTC (rev 2953) +++ csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 21:33:16 UTC (rev 2954) @@ -49,8 +49,6 @@ ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) - @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME) - @( cd $(DESTDIR)$(datadir)/licences/$(GARNAME) ; \ - ln -s LICENSE.txt Apache_License_2.0.txt ) - @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs $(DESTDIR)$(datadir)/doc/$(GARNAME)/docs + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME)/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs/* $(DESTDIR)$(datadir)/doc/$(GARNAME) @$(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 Sat Jan 31 22:51:28 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 21:51:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[2955] csw/mgar/pkg/beanutils/trunk/Makefile Message-ID: Revision: 2955 http://gar.svn.sourceforge.net/gar/?rev=2955&view=rev Author: wbonnet Date: 2009-01-31 21:51:28 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Fix license path Modified Paths: -------------- csw/mgar/pkg/beanutils/trunk/Makefile Modified: csw/mgar/pkg/beanutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 21:33:16 UTC (rev 2954) +++ csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 21:51:28 UTC (rev 2955) @@ -28,7 +28,8 @@ REQUIRED_PKGS_CSWajcbeanutils += CSWajclogging # Defines package content -PKGFILES_CSWajcbeanutilsdoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcbeanutilsdoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcbeanutilsdoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt # Defines custom steps since java libs do not use autotools WORKSRC = $(WORKDIR) @@ -48,7 +49,9 @@ ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) - @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) - @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME)/Apache_License_2.0.txt + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs/* $(DESTDIR)$(datadir)/doc/$(GARNAME) @$(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 Sat Jan 31 23:02:48 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:02:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[2956] csw/mgar/pkg Message-ID: Revision: 2956 http://gar.svn.sourceforge.net/gar/?rev=2956&view=rev Author: wbonnet Date: 2009-01-31 22:02:48 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/chain/ csw/mgar/pkg/chain/Makefile csw/mgar/pkg/chain/branches/ csw/mgar/pkg/chain/tags/ csw/mgar/pkg/chain/trunk/ csw/mgar/pkg/chain/trunk/Makefile csw/mgar/pkg/chain/trunk/checksums csw/mgar/pkg/chain/trunk/files/ csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec Added: csw/mgar/pkg/chain/Makefile =================================================================== --- csw/mgar/pkg/chain/Makefile (rev 0) +++ csw/mgar/pkg/chain/Makefile 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/chain/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/chain/trunk/Makefile =================================================================== --- csw/mgar/pkg/chain/trunk/Makefile (rev 0) +++ csw/mgar/pkg/chain/trunk/Makefile 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,56 @@ +SHORTNAME = chain +GARVERSION = 1.2 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons Chain : Chain of Responsibility pattern API +define BLURB +Apache Jakarta Commons chain provides "Chain of Responsibility" pattern implemention +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION)-bin.tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajcchain,) +DISTFILES += $(call admfiles,CSWajcchaindoc,) + +# Defines package description +SPKG_DESC_CSWajcchain = $(DESCRIPTION) +SPKG_DESC_CSWajcchaindoc = $(DESCRIPTION) documentation package + +# Defines dependencies +REQUIRED_PKGS_CSWajcchain = CSWajcdigester +REQUIRED_PKGS_CSWajcchain += CSWajclogging + +# Defines package content +PKGFILES_CSWajcchaindoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcchaindoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/$(DISTNAME)/commons-chain-1.2.jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs/* $(DESTDIR)$(datadir)/doc/$(GARNAME)/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/chain/trunk/checksums =================================================================== --- csw/mgar/pkg/chain/trunk/checksums (rev 0) +++ csw/mgar/pkg/chain/trunk/checksums 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,3 @@ +42d6a4fd3316f88a01eeb0e0c0f89e0f download/commons-chain-1.2-bin.tar.gz +3b4186496bec47046d0b0a6144cee14b download/CSWajcchain.gspec +d9966d181ed11f63926ea5072e3c1d0c download/CSWajcchaindoc.gspec Added: csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec =================================================================== --- csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec (rev 0) +++ csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,5 @@ +%var bitname commons_chain +%var pkgname CSWajcchain +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt Added: csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec =================================================================== --- csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec (rev 0) +++ csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,5 @@ +%var bitname commons_chain_doc +%var pkgname CSWajcchaindoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt 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 31 23:08:40 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:08:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2957] csw/mgar/pkg/beanutils/Makefile Message-ID: Revision: 2957 http://gar.svn.sourceforge.net/gar/?rev=2957&view=rev Author: wbonnet Date: 2009-01-31 22:08:40 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Add makefile Added Paths: ----------- csw/mgar/pkg/beanutils/Makefile Added: csw/mgar/pkg/beanutils/Makefile =================================================================== --- csw/mgar/pkg/beanutils/Makefile (rev 0) +++ csw/mgar/pkg/beanutils/Makefile 2009-01-31 22:08:40 UTC (rev 2957) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) 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 31 23:24:07 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:24:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2958] csw/mgar/pkg Message-ID: Revision: 2958 http://gar.svn.sourceforge.net/gar/?rev=2958&view=rev Author: wbonnet Date: 2009-01-31 22:24:06 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/cli/ csw/mgar/pkg/cli/Makefile csw/mgar/pkg/cli/branches/ csw/mgar/pkg/cli/tags/ csw/mgar/pkg/cli/trunk/ csw/mgar/pkg/cli/trunk/Makefile csw/mgar/pkg/cli/trunk/checksums csw/mgar/pkg/cli/trunk/files/ csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec Added: csw/mgar/pkg/cli/Makefile =================================================================== --- csw/mgar/pkg/cli/Makefile (rev 0) +++ csw/mgar/pkg/cli/Makefile 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/cli/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/cli/trunk/Makefile =================================================================== --- csw/mgar/pkg/cli/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cli/trunk/Makefile 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,55 @@ +SHORTNAME = cli +GARVERSION = 1.1 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons CLI +define BLURB +Apache Jakarta Commons CLI : API for working with the command line arguments and options +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajccli,) +DISTFILES += $(call admfiles,CSWajcclidoc,) + +# Defines package description +SPKG_DESC_CSWajccli = $(DESCRIPTION) +SPKG_DESC_CSWajcclidoc = $(DESCRIPTION) documentation package + +# Defines dependencies +REQUIRED_PKGS_CSWajccli = CSWajclang + +# Defines package content +PKGFILES_CSWajcclidoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcclidoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/$(DISTNAME)/commons-cli-1.1.jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/$(DISTNAME)/docs/* $(DESTDIR)$(datadir)/doc/$(GARNAME)/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/cli/trunk/checksums =================================================================== --- csw/mgar/pkg/cli/trunk/checksums (rev 0) +++ csw/mgar/pkg/cli/trunk/checksums 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,3 @@ +2e5fc38f03a28788bf131d7c0c36d3f2 download/commons-cli-1.1.tar.gz +646c09d6185c60524c85a0314b9b62f7 download/CSWajccli.gspec +e544b77b4156c8666b91f1d21a835269 download/CSWajcclidoc.gspec Added: csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec =================================================================== --- csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec (rev 0) +++ csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,5 @@ +%var bitname commons_cli +%var pkgname CSWajccli +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt Added: csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec =================================================================== --- csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec (rev 0) +++ csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,5 @@ +%var bitname commons_cli_doc +%var pkgname CSWajcclidoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt 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 31 23:59:24 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:59:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2959] csw/mgar/pkg Message-ID: Revision: 2959 http://gar.svn.sourceforge.net/gar/?rev=2959&view=rev Author: wbonnet Date: 2009-01-31 22:59:24 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/codec/ csw/mgar/pkg/codec/Makefile csw/mgar/pkg/codec/branches/ csw/mgar/pkg/codec/tags/ csw/mgar/pkg/codec/trunk/ csw/mgar/pkg/codec/trunk/Makefile csw/mgar/pkg/codec/trunk/checksums csw/mgar/pkg/codec/trunk/files/ csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec Added: csw/mgar/pkg/codec/Makefile =================================================================== --- csw/mgar/pkg/codec/Makefile (rev 0) +++ csw/mgar/pkg/codec/Makefile 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/codec/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/codec/trunk/Makefile =================================================================== --- csw/mgar/pkg/codec/trunk/Makefile (rev 0) +++ csw/mgar/pkg/codec/trunk/Makefile 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,57 @@ +SHORTNAME = codec +GARVERSION = 1.3 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons codec : codec of Responsibility pattern API +define BLURB +Apache Jakarta Commons codec provides "codec of Responsibility" pattern implemention +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajccodec,) +DISTFILES += $(call admfiles,CSWajccodecdoc,) + +# Defines package description +SPKG_DESC_CSWajccodec = $(DESCRIPTION) +SPKG_DESC_CSWajccodecdoc = $(DESCRIPTION) documentation package + +# Defines dependencies + +# Defines package content +PKGFILES_CSWajccodecdoc = $(prefix)/share/doc/.* +PKGFILES_CSWajccodecdoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +SRC_FIRSTMOD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS)) +export SRC_FIRSTMOD + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/commons-codec-$(GARVERSION).jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/LICENSE $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @gcp -fp $(WORKSRC)/LICENSE $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/docs/* $(DESTDIR)$(datadir)/doc/$(GARNAME)/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/codec/trunk/checksums =================================================================== --- csw/mgar/pkg/codec/trunk/checksums (rev 0) +++ csw/mgar/pkg/codec/trunk/checksums 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,3 @@ +aad3948be13476d9599cadaf146bc92a download/commons-codec-1.3.tar.gz +90a1d84e661f6081d96ca9b82d62eabc download/CSWajccodec.gspec +c86330052d7ff3bb49e9f648f5df13b1 download/CSWajccodecdoc.gspec Added: csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec =================================================================== --- csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec (rev 0) +++ csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,5 @@ +%var bitname commons_codec +%var pkgname CSWajccodec +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{SRC_FIRSTMOD}/LICENSE Added: csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec =================================================================== --- csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec (rev 0) +++ csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,5 @@ +%var bitname commons_codec_doc +%var pkgname CSWajccodecdoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{SRC_FIRSTMOD}/LICENSE 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 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: -------------- csw/mgar/pkg/clamav/trunk/Makefile csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2009-01-22 16:23:12 UTC (rev 2875) +++ csw/mgar/pkg/clamav/trunk/Makefile 2009-01-22 17:23:38 UTC (rev 2876) @@ -33,7 +33,7 @@ SPKG_CLASSES_CSWclamav = none cswcpsampleconf cswinitsmf -CFLAGS=-xO2 +OPT_FLAGS_SOS = -xO2 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-clamav @@ -52,7 +52,7 @@ SPKG_SOURCEURL = http://www.clamav.net/ -ENABLE_CHECK=0 +#ENABLE_CHECK=0 include gar/category.mk Modified: csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW =================================================================== --- csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW 2009-01-22 16:23:12 UTC (rev 2875) +++ csw/mgar/pkg/clamav/trunk/files/CSWclamav.README.CSW 2009-01-22 17:23:38 UTC (rev 2876) @@ -40,7 +40,7 @@ clamd.conf has a new option - MailMaxRecursion Package installation is using csw.conf, if available, to determine whether or not to start the daemons. -See http://www.blastwave.org/standards/csw.conf.html for details. +See http://www.opencsw.org/standards/csw.conf for details. The 'specificdaemonname' for this package is clamd and clamav-milter. # 16Oct2006 @@ -148,7 +148,7 @@ There are several ways to use this pkg, i.e., with clamd, with clamav-milter. Some options need to be changed to setup an environment. Please click the 'View news and info' buttom at - http://www.blastwave.org/packages.php/clamav to review the setup + http://www.opencsw.org/packages.php/clamav to review the setup that I use to run clamd and clamav-milter with freshclam running from crontab. 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 18:51:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 17:51:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[2877] csw/mgar/pkg/neon/trunk Message-ID: Revision: 2877 http://gar.svn.sourceforge.net/gar/?rev=2877&view=rev Author: dmichelsen Date: 2009-01-22 17:51:34 +0000 (Thu, 22 Jan 2009) Log Message: ----------- neon: Updating to 0.28.4 and mGAR v2, waiting for expat and krb5 to be fully 64 bit Modified Paths: -------------- csw/mgar/pkg/neon/trunk/Makefile csw/mgar/pkg/neon/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype csw/mgar/pkg/neon/trunk/files/CSWneon.depend csw/mgar/pkg/neon/trunk/files/CSWneon.prototype Property Changed: ---------------- csw/mgar/pkg/neon/trunk/ Property changes on: csw/mgar/pkg/neon/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/neon/trunk/Makefile =================================================================== --- csw/mgar/pkg/neon/trunk/Makefile 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/Makefile 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,7 +1,10 @@ GARNAME = neon -GARVERSION = 0.26.3 +GARVERSION = 0.28.3 CATEGORIES = lib +EXTRA_MODULATORS = GARVERSION +MODULATIONS_GARVERSION = 0.26.4 0.28.3 + DESCRIPTION = Neon HTTP and WebDAV client library define BLURB neon is an HTTP and WebDAV client library for Unix systems, with a C language @@ -10,18 +13,18 @@ be easily implemented. endef -# Compatibility libraries -LIBNAME = libneon.so -COMPATVERS = 24.0.7 25.0.5 -COMPATLIBS = $(foreach A,i386 sparc, \ - $(foreach V,$(COMPATVERS),$(LIBNAME).$(V).$(A).bz2)) - MASTER_SITES = http://www.webdav.org/$(GARNAME)/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWneon,$(ADMSTANDARD)) -DISTFILES += $(call admfiles,CSWneon-devel,$(ADMSTANDARD)) -#DISTFILES += $(COMPATLIBS) +SOURCEFILES = $(foreach VERSION,$(MODULATIONS_GARVERSION), $(GARNAME)-$(VERSION).tar.gz) +DISTFILES = $(SOURCEFILES) +DISTFILES += $(call admfiles,CSWneon,) +DISTFILES += $(call admfiles,CSWneon-devel,) +REQUIRED_PKGS_CSWneon = CSWexpat CSWkrb5lib CSWosslrt CSWzlib +REQUIRED_PKGS_CSWneon-devel = CSWneon + +SPKG_DESC_CSWneon = Neon HTTP and WebDAV client library +SPKG_DESC_CSWneon-devel = Neon HTTP and WebDAV development support + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -30,14 +33,27 @@ CONFIGURE_ARGS += --with-ssl=openssl CONFIGURE_ARGS += --with-expat -include gar/category.mk +BUILD64 = 1 +NO_ISAEXEC = 1 -#post-install: install-compat-libs +MERGE_SCRIPTS_isa-i386-garversion-0.26.4 = copy-only +MERGE_DIRS_isa-i386-garversion-0.26.4 = $(libdir) +MERGE_SCRIPTS_isa-amd64-garversion-0.26.4 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-0.26.4 = $(libdir) -install-compat-libs: - @echo $(DISTFILES) - @for version in $(COMPATVERS) ; do \ - ginstall -m 755 $(WORKDIR)/$(LIBNAME).$$version.$(GARCH) \ - $(DESTDIR)$(libdir)/$(LIBNAME).$$version ; \ - done - @$(MAKECOOKIE) +MERGE_SCRIPTS_isa-i386-garversion-0.28.3 = copy-all +MERGE_SCRIPTS_isa-amd64-garversion-0.28.3 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-0.28.3 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-0.26.4 = copy-only +MERGE_DIRS_isa-sparcv8-garversion-0.26.4 = $(libdir) +MERGE_SCRIPTS_isa-sparcv9-garversion-0.26.4 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-0.26.4 = $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-0.28.3 = copy-all +MERGE_SCRIPTS_isa-sparcv9-garversion-0.28.3 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-0.28.3 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + +PKGFILES_CSWneon-devel = $(PKGFILES_DEVEL) + +include gar/category.mk Modified: csw/mgar/pkg/neon/trunk/checksums =================================================================== --- csw/mgar/pkg/neon/trunk/checksums 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/checksums 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,7 +1,4 @@ -6e52cd9c03e372026d6eccbfb80f09ef download/neon-0.26.3.tar.gz +2d11fff51ffa856fc6b5d4bd801d6cc4 download/neon-0.26.4.tar.gz +47599a328862ce64ac3c52726d6daa12 download/neon-0.28.3.tar.gz 643aa565e0d9f38f0153ab72b6dc5621 download/CSWneon.gspec -cbce1c593467c9783a19b1a996cf5913 download/CSWneon.prototype -8d6f9c43747b4e4dee4ed216cd18a17b download/CSWneon.depend 5e17c5dc62032a174e4e39fa33720aff download/CSWneon-devel.gspec -8bdf9849a69b130170d9065e6b067b0c download/CSWneon-devel.prototype -366228c1cedb93368c4f4a9ffb98412d download/CSWneon-devel.depend Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon-devel.depend 2009-01-22 17:51:34 UTC (rev 2877) @@ -1 +0,0 @@ -P CSWneon neon - Neon HTTP and WebDAV client library Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon-devel.prototype 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,171 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/neon-config 0755 root bin -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/neon 0755 root bin -f none /opt/csw/include/neon/ne_207.h 0644 root bin -f none /opt/csw/include/neon/ne_acl.h 0644 root bin -f none /opt/csw/include/neon/ne_alloc.h 0644 root bin -f none /opt/csw/include/neon/ne_auth.h 0644 root bin -f none /opt/csw/include/neon/ne_basic.h 0644 root bin -f none /opt/csw/include/neon/ne_compress.h 0644 root bin -f none /opt/csw/include/neon/ne_dates.h 0644 root bin -f none /opt/csw/include/neon/ne_defs.h 0644 root bin -f none /opt/csw/include/neon/ne_i18n.h 0644 root bin -f none /opt/csw/include/neon/ne_locks.h 0644 root bin -f none /opt/csw/include/neon/ne_md5.h 0644 root bin -f none /opt/csw/include/neon/ne_props.h 0644 root bin -f none /opt/csw/include/neon/ne_redirect.h 0644 root bin -f none /opt/csw/include/neon/ne_request.h 0644 root bin -f none /opt/csw/include/neon/ne_session.h 0644 root bin -f none /opt/csw/include/neon/ne_socket.h 0644 root bin -f none /opt/csw/include/neon/ne_ssl.h 0644 root bin -f none /opt/csw/include/neon/ne_string.h 0644 root bin -f none /opt/csw/include/neon/ne_uri.h 0644 root bin -f none /opt/csw/include/neon/ne_utils.h 0644 root bin -f none /opt/csw/include/neon/ne_xml.h 0644 root bin -f none /opt/csw/include/neon/ne_xmlreq.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libneon.a 0644 root bin -f none /opt/csw/lib/libneon.la 0755 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/neon.pc 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/neon-0.26.3 0755 root bin -d none /opt/csw/share/doc/neon-0.26.3/html 0755 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/api.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/biblio.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/compliance.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/features.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/index.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/intro.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/ref.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refalloc.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refauth.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbuf.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufapp.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufcr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufdest.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refbufutil.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refcert.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refclicert.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refconfig.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/referr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/reffeat.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refgetst.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refi18n.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refiaddr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refneon.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refopts.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreq.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreqbody.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreqhdr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refreqopts.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refresolve.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refresphdr.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsess.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refshave.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsockinit.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslca.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslcert2.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslcertio.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refssldname.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refsslvfy.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refstatus.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/reftok.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refvers.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/refxml.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/using.html 0644 root bin -f none /opt/csw/share/doc/neon-0.26.3/html/xml.html 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/neon-config.1 0644 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/ne_add_request_header.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_error.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_first.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_next.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_resolve.3 0644 root bin -f none /opt/csw/share/man/man3/ne_addr_result.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_altered.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_append.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_clear.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_concat.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_finish.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_grow.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_ncreate.3 0644 root bin -f none /opt/csw/share/man/man3/ne_buffer_zappend.3 0644 root bin -f none /opt/csw/share/man/man3/ne_calloc.3 0644 root bin -f none /opt/csw/share/man/man3/ne_close_connection.3 0644 root bin -f none /opt/csw/share/man/man3/ne_forget_auth.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_error.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_response_header.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_scheme.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_server_hostport.3 0644 root bin -f none /opt/csw/share/man/man3/ne_has_support.3 0644 root bin -f none /opt/csw/share/man/man3/ne_get_status.3 0644 root bin -f none /opt/csw/share/man/man3/ne_i18n_init.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_cmp.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_free.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_make.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_print.3 0644 root bin -f none /opt/csw/share/man/man3/ne_iaddr_typeof.3 0644 root bin -f none /opt/csw/share/man/man3/ne_malloc.3 0644 root bin -f none /opt/csw/share/man/man3/ne_oom_callback.3 0644 root bin -f none /opt/csw/share/man/man3/ne_print_request_header.3 0644 root bin -f none /opt/csw/share/man/man3/ne_qtoken.3 0644 root bin -f none /opt/csw/share/man/man3/ne_realloc.3 0644 root bin -f none /opt/csw/share/man/man3/ne_request_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_request_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_request_dispatch.3 0644 root bin -f none /opt/csw/share/man/man3/ne_response_header_iterate.3 0644 root bin -f none /opt/csw/share/man/man3/ne_session_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_session_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_session_proxy.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_error.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_persist.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_proxy_auth.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_read_timeout.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_body_buffer.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_body_fd.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_body_fd64.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_request_expect100.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_server_auth.3 0644 root bin -f none /opt/csw/share/man/man3/ne_set_useragent.3 0644 root bin -f none /opt/csw/share/man/man3/ne_shave.3 0644 root bin -f none /opt/csw/share/man/man3/ne_sock_exit.3 0644 root bin -f none /opt/csw/share/man/man3/ne_sock_init.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_cmp.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_export.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_free.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_identity.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_import.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_issuer.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_read.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_signedby.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_subject.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_cert_write.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_decrypt.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_encrypted.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_free.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_name.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_owner.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_clicert_read.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_dname_cmp.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_readable_dname.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_set_verify.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_trust_cert.3 0644 root bin -f none /opt/csw/share/man/man3/ne_ssl_trust_default_ca.3 0644 root bin -f none /opt/csw/share/man/man3/ne_status.3 0644 root bin -f none /opt/csw/share/man/man3/ne_strdup.3 0644 root bin -f none /opt/csw/share/man/man3/ne_strndup.3 0644 root bin -f none /opt/csw/share/man/man3/ne_token.3 0644 root bin -f none /opt/csw/share/man/man3/ne_version_match.3 0644 root bin -f none /opt/csw/share/man/man3/ne_version_string.3 0644 root bin -f none /opt/csw/share/man/man3/ne_xml_create.3 0644 root bin -f none /opt/csw/share/man/man3/ne_xml_destroy.3 0644 root bin -f none /opt/csw/share/man/man3/neon.3 0644 root bin Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon.depend =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon.depend 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon.depend 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,4 +0,0 @@ -P CSWexpat expat - XML Parser Toolkit -P CSWkrb5lib krb5_lib - MIT Kerberos 5 core libraries -P CSWosslrt openssl_rt - Openssl runtime libraries -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon.prototype =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon.prototype 2009-01-22 17:23:38 UTC (rev 2876) +++ csw/mgar/pkg/neon/trunk/files/CSWneon.prototype 2009-01-22 17:51:34 UTC (rev 2877) @@ -1,30 +0,0 @@ -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libneon.so.26.0.3 0755 root bin -s none /opt/csw/lib/libneon.so.26=libneon.so.26.0.3 root bin -s none /opt/csw/lib/libneon.so=libneon.so.26.0.3 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/locale 0755 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/neon.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/neon.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/neon.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/neon.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/neon.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/neon.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/neon.mo 0644 root bin -d none /opt/csw/share/locale/zh 0755 root bin -d none /opt/csw/share/locale/zh/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/zh/LC_MESSAGES/neon.mo 0644 root bin 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 19:18:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 18:18:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2878] csw/mgar/pkg/expat/trunk Message-ID: Revision: 2878 http://gar.svn.sourceforge.net/gar/?rev=2878&view=rev Author: dmichelsen Date: 2009-01-22 18:18:38 +0000 (Thu, 22 Jan 2009) Log Message: ----------- expat: Update to 2.0.1 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/expat/trunk/Makefile csw/mgar/pkg/expat/trunk/checksums csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec Removed Paths: ------------- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype csw/mgar/pkg/expat/trunk/files/CSWexpat.depend csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype csw/mgar/pkg/expat/trunk/files/libexpat.so.0.4.0 csw/mgar/pkg/expat/trunk/files/libexpat.so.0.5.0 Property Changed: ---------------- csw/mgar/pkg/expat/trunk/ Property changes on: csw/mgar/pkg/expat/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/expat/trunk/Makefile =================================================================== --- csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,5 +1,5 @@ GARNAME = expat -GARVERSION = 2.0.0 +GARVERSION = 2.0.1 CATEGORIES = lib DESCRIPTION = XML Parser Toolkit @@ -11,29 +11,23 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWexpat,depend prototype) -DISTFILES += $(call admfiles,CSWexpat-devel,depend prototype) +DISTFILES += $(call admfiles,CSWexpat,) # We define upstream file regex so we can be notifed of new upstream software release UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10127 UPSTREAM_USE_SF = 1 UFILES_REGEX = (\d+(?:\.\d+)*) -# Compatibility libraries -EXTLIBS += libexpat.so.0.4.0 -EXTLIBS += libexpat.so.0.5.0 -DISTFILES += $(EXTLIBS) +BUILD64 = 1 +NO_ISAEXEC = 1 +CONFIGURE_ARGS = $(DIRPATHS) + # The expat 'check' target tries to compile tests that use GCC # constructs -- won't compile under Forte without hackery. TEST_TARGET = check TEST_SCRIPTS = -CONFIGURE_ARGS = $(DIRPATHS) +PKGFILES_CSWexpat-devel = $(PKGFILES_DEVEL) include gar/category.mk - -post-install: - @for extlib in $(EXTLIBS) ; do \ - install -m 0755 $(WORKDIR)/$$extlib $(DESTDIR)$(libdir) ; \ - done Modified: csw/mgar/pkg/expat/trunk/checksums =================================================================== --- csw/mgar/pkg/expat/trunk/checksums 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/checksums 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,9 +1,3 @@ -d945df7f1c0868c5c73cf66ba9596f3f download/expat-2.0.0.tar.gz -7145f62799b8019b4636811f22eed0dc download/CSWexpat.gspec -8093298b67861e241b0d2499c9f2ff89 download/CSWexpat.depend -442c9a9124f9700d5156bf24baf8491b download/CSWexpat.prototype -2fb9c175c9f5d1e21f0531c1cada0994 download/CSWexpat-devel.gspec -3dfca43e9c14ab646c8aadfc59093ba3 download/CSWexpat-devel.depend -7638ec36b2ae51da9b300bee9a18d349 download/CSWexpat-devel.prototype -0d36c0738fa471a0fcae0cd565016295 download/libexpat.so.0.4.0 -b52745e58a5dab5df7a459d25d54d65d download/libexpat.so.0.5.0 +ee8b492592568805593f81f8cdf2a04c download/expat-2.0.1.tar.gz +7547f56dfe29c7f8a29983ba60da41a1 download/CSWexpat.gspec +4542a961d5540f2c0b0328f7a5675005 download/CSWexpat-devel.gspec Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.depend 2009-01-22 18:18:38 UTC (rev 2878) @@ -1 +0,0 @@ -P CSWexpat expat - XML Parser Toolkit Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.gspec 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,5 +0,0 @@ -%var bitname expat_devel -%var pkgname CSWexpat-devel -%var desc XML Parsing Toolkit - Development Support -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat-devel.prototype 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,6 +0,0 @@ -d none /opt/csw/include 0755 root bin -f none /opt/csw/include/expat.h 0644 root bin -f none /opt/csw/include/expat_external.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libexpat.a 0644 root bin -f none /opt/csw/lib/libexpat.la 0755 root bin Modified: csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat.gspec 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,4 +1,4 @@ %var bitname expat %var pkgname CSWexpat %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype =================================================================== --- csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype 2009-01-22 17:51:34 UTC (rev 2877) +++ csw/mgar/pkg/expat/trunk/files/CSWexpat.prototype 2009-01-22 18:18:38 UTC (rev 2878) @@ -1,13 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/xmlwf 0755 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libexpat.so.0.4.0 0755 root bin -f none /opt/csw/lib/libexpat.so.0.5.0 0755 root bin -s none /opt/csw/lib/libexpat.so.0=libexpat.so.0.5.0 -f none /opt/csw/lib/libexpat.so.1.5.0 0755 root bin -s none /opt/csw/lib/libexpat.so.1=libexpat.so.1.5.0 -s none /opt/csw/lib/libexpat.so=libexpat.so.1.5.0 -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/xmlwf.1 0644 root bin Deleted: csw/mgar/pkg/expat/trunk/files/libexpat.so.0.4.0 =================================================================== (Binary files differ) Deleted: csw/mgar/pkg/expat/trunk/files/libexpat.so.0.5.0 =================================================================== (Binary files differ) 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 20:51:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 19:51:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[2879] csw/mgar/pkg/libgcrypt/trunk Message-ID: Revision: 2879 http://gar.svn.sourceforge.net/gar/?rev=2879&view=rev Author: dmichelsen Date: 2009-01-22 19:51:51 +0000 (Thu, 22 Jan 2009) Log Message: ----------- libgcrypt: Update to 1.4.4 which includes bugfixes reported upstream Modified Paths: -------------- csw/mgar/pkg/libgcrypt/trunk/Makefile csw/mgar/pkg/libgcrypt/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff Modified: csw/mgar/pkg/libgcrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/Makefile 2009-01-22 18:18:38 UTC (rev 2878) +++ csw/mgar/pkg/libgcrypt/trunk/Makefile 2009-01-22 19:51:51 UTC (rev 2879) @@ -1,18 +1,16 @@ GARNAME = libgcrypt -GARVERSION = 1.4.3 +GARVERSION = 1.4.4 CATEGORIES = lib DESCRIPTION = GNU libgcrypt define BLURB - Libgcrypt is GNU's basic cryptographic library. + 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 Modified: csw/mgar/pkg/libgcrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/checksums 2009-01-22 18:18:38 UTC (rev 2878) +++ csw/mgar/pkg/libgcrypt/trunk/checksums 2009-01-22 19:51:51 UTC (rev 2879) @@ -1,3 +1,2 @@ -46e50e811ed51f1e0e8dd677dded967d download/libgcrypt-1.4.3.tar.bz2 +34105aa927e23c217741966496b97e67 download/libgcrypt-1.4.4.tar.bz2 94730391b2ab2e9b63227d133dc2547b download/CSWgcrypt.gspec -fec326b0bfff6b1c6ff978c33c7bcd8f download/patch-random.diff Deleted: csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff =================================================================== --- csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff 2009-01-22 18:18:38 UTC (rev 2878) +++ csw/mgar/pkg/libgcrypt/trunk/files/patch-random.diff 2009-01-22 19:51:51 UTC (rev 2879) @@ -1,10 +0,0 @@ -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 dmichelsen at users.sourceforge.net Thu Jan 22 21:11:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 20:11:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2880] csw/mgar/pkg Message-ID: Revision: 2880 http://gar.svn.sourceforge.net/gar/?rev=2880&view=rev Author: dmichelsen Date: 2009-01-22 20:11:32 +0000 (Thu, 22 Jan 2009) Log Message: ----------- exiftool: Initial commit Added Paths: ----------- csw/mgar/pkg/exiftool/ csw/mgar/pkg/exiftool/branches/ csw/mgar/pkg/exiftool/tags/ csw/mgar/pkg/exiftool/trunk/ csw/mgar/pkg/exiftool/trunk/Makefile csw/mgar/pkg/exiftool/trunk/checksums csw/mgar/pkg/exiftool/trunk/files/ csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec Property changes on: csw/mgar/pkg/exiftool/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/exiftool/trunk/Makefile =================================================================== --- csw/mgar/pkg/exiftool/trunk/Makefile (rev 0) +++ csw/mgar/pkg/exiftool/trunk/Makefile 2009-01-22 20:11:32 UTC (rev 2880) @@ -0,0 +1,27 @@ +GARNAME = exiftool +GARVERSION = 7.62 +CATEGORIES = cpan + +DESCRIPTION = Read, Write and Edit Image File Meta Information +define BLURB + ExifTool is a platform-independent Perl library plus a command-line application for + reading, writing and editing meta information in image, audio and video files. +endef + +DISTNAME = Image-ExifTool-$(GARVERSION) + +MASTER_SITES = http://owl.phy.queensu.ca/~phil/exiftool/ +MODDIST = +DISTFILES = $(DISTNAME).tar.gz +DISTFILES += $(call admfiles,CSWexiftool,) + +# 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/exiftool/trunk/checksums =================================================================== --- csw/mgar/pkg/exiftool/trunk/checksums (rev 0) +++ csw/mgar/pkg/exiftool/trunk/checksums 2009-01-22 20:11:32 UTC (rev 2880) @@ -0,0 +1,2 @@ +f95241fdcf8e9b71ef1114f1855b072f download/Image-ExifTool-7.62.tar.gz +13f9aae615a5de5e3c145b374950a75c download/CSWexiftool.gspec Added: csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec =================================================================== --- csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec (rev 0) +++ csw/mgar/pkg/exiftool/trunk/files/CSWexiftool.gspec 2009-01-22 20:11:32 UTC (rev 2880) @@ -0,0 +1,9 @@ +%var bitname exiftool +%var pkgname CSWexiftool +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright +Copyright 2003-2009, Phil Harvey + +This is free software; you can 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 dmichelsen at users.sourceforge.net Thu Jan 22 22:24:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:24:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[2881] csw/mgar/pkg Message-ID: Revision: 2881 http://gar.svn.sourceforge.net/gar/?rev=2881&view=rev Author: dmichelsen Date: 2009-01-22 21:24:25 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl: Initial commit Added Paths: ----------- csw/mgar/pkg/tcl/ csw/mgar/pkg/tcl/branches/ csw/mgar/pkg/tcl/tags/ csw/mgar/pkg/tcl/trunk/ csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums csw/mgar/pkg/tcl/trunk/files/ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Property changes on: csw/mgar/pkg/tcl/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/tcl/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:24:25 UTC (rev 2881) @@ -0,0 +1,35 @@ +GARNAME = tcl +GARVERSION = 8.5.6 +CATEGORIES = lang + +DESCRIPTION = Tcl programming language +define BLURB +endef + +SF_PROJ = tcl +MASTER_SITES = $(SF_MIRRORS) + +DISTNAME = $(GARNAME)$(GARVERSION) +DISTFILES = $(DISTNAME)-src.tar.gz +DISTFILES += $(call admfiles,CSWtcl,) + +SPKG_SOURCEURL = http://www.tcl.tk/ + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10894 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*)-src.tar.gz + +BUILD64 = 1 +NO_ISAEXEC = 1 + +WORKSRC = $(WORKDIR)/$(DISTNAME)/unix + +INCLUDE_FLAGS = + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + +CFLAGS := $(filter-out -I%,$(CFLAGS)) +DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Added: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums (rev 0) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:24:25 UTC (rev 2881) @@ -0,0 +1,2 @@ +d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz +28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Added: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec (rev 0) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-01-22 21:24:25 UTC (rev 2881) @@ -0,0 +1,4 @@ +%var bitname tcl +%var pkgname CSWtcl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22:28:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:28:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2882] csw/mgar/pkg Message-ID: Revision: 2882 http://gar.svn.sourceforge.net/gar/?rev=2882&view=rev Author: dmichelsen Date: 2009-01-22 21:28:09 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl85: Rename from tcl, the original tcl is going to contain 8.4.x Added Paths: ----------- csw/mgar/pkg/tcl85/ Removed Paths: ------------- csw/mgar/pkg/tcl/ 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 22:30:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:30:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[2883] csw/mgar/pkg/tcl85/trunk Message-ID: Revision: 2883 http://gar.svn.sourceforge.net/gar/?rev=2883&view=rev Author: dmichelsen Date: 2009-01-22 21:30:41 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl85: Rename package files Modified Paths: -------------- csw/mgar/pkg/tcl85/trunk/Makefile csw/mgar/pkg/tcl85/trunk/checksums Added Paths: ----------- csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec Removed Paths: ------------- csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec Modified: csw/mgar/pkg/tcl85/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:30:41 UTC (rev 2883) @@ -11,7 +11,7 @@ DISTNAME = $(GARNAME)$(GARVERSION) DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) +DISTFILES += $(call admfiles,CSWtcl85,) SPKG_SOURCEURL = http://www.tcl.tk/ Modified: csw/mgar/pkg/tcl85/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl85/trunk/checksums 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl85/trunk/checksums 2009-01-22 21:30:41 UTC (rev 2883) @@ -1,2 +1,2 @@ d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec +4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec Deleted: csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec 2009-01-22 21:30:41 UTC (rev 2883) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Copied: csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec (from rev 2882, csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec) =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec (rev 0) +++ csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec 2009-01-22 21:30:41 UTC (rev 2883) @@ -0,0 +1,4 @@ +%var bitname tcl85 +%var pkgname CSWtcl85 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22:32:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:32:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2884] csw/mgar/pkg Message-ID: Revision: 2884 http://gar.svn.sourceforge.net/gar/?rev=2884&view=rev Author: dmichelsen Date: 2009-01-22 21:32:37 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl: Clone from tcl 8.5.x Added Paths: ----------- csw/mgar/pkg/tcl/ csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec Removed Paths: ------------- csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Deleted: csw/mgar/pkg/tcl/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) @@ -1,35 +0,0 @@ -GARNAME = tcl -GARVERSION = 8.5.6 -CATEGORIES = lang - -DESCRIPTION = Tcl programming language -define BLURB -endef - -SF_PROJ = tcl -MASTER_SITES = $(SF_MIRRORS) - -DISTNAME = $(GARNAME)$(GARVERSION) -DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) - -SPKG_SOURCEURL = http://www.tcl.tk/ - -# We define upstream file regex so we can be notifed of new upstream software release -UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10894 -UPSTREAM_USE_SF = 1 -UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*)-src.tar.gz - -BUILD64 = 1 -NO_ISAEXEC = 1 - -WORKSRC = $(WORKDIR)/$(DISTNAME)/unix - -INCLUDE_FLAGS = - -CONFIGURE_ARGS = $(DIRPATHS) - -include gar/category.mk - -CFLAGS := $(filter-out -I%,$(CFLAGS)) -DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Copied: csw/mgar/pkg/tcl/trunk/Makefile (from rev 2883, csw/mgar/pkg/tcl85/trunk/Makefile) =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) @@ -0,0 +1,35 @@ +GARNAME = tcl +GARVERSION = 8.4.19 +CATEGORIES = lang + +DESCRIPTION = Tcl programming language +define BLURB +endef + +SF_PROJ = tcl +MASTER_SITES = $(SF_MIRRORS) + +DISTNAME = $(GARNAME)$(GARVERSION) +DISTFILES = $(DISTNAME)-src.tar.gz +DISTFILES += $(call admfiles,CSWtcl,) + +SPKG_SOURCEURL = http://www.tcl.tk/ + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=10894 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*)-src.tar.gz + +BUILD64 = 1 +NO_ISAEXEC = 1 + +WORKSRC = $(WORKDIR)/$(DISTNAME)/unix + +INCLUDE_FLAGS = + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + +CFLAGS := $(filter-out -I%,$(CFLAGS)) +DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Deleted: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl85/trunk/checksums 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) @@ -1,2 +0,0 @@ -d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Copied: csw/mgar/pkg/tcl/trunk/checksums (from rev 2883, csw/mgar/pkg/tcl85/trunk/checksums) =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums (rev 0) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) @@ -0,0 +1,2 @@ +d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz +4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec Deleted: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/CSWtcl.gspec 2009-01-22 21:28:09 UTC (rev 2882) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-01-22 21:32:37 UTC (rev 2884) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Copied: csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec (from rev 2883, csw/mgar/pkg/tcl85/trunk/files/CSWtcl85.gspec) =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec (rev 0) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 21:32:37 UTC (rev 2884) @@ -0,0 +1,4 @@ +%var bitname tcl85 +%var pkgname CSWtcl85 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22 22:48:45 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:48:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[2885] csw/mgar/pkg/libxslt/trunk Message-ID: Revision: 2885 http://gar.svn.sourceforge.net/gar/?rev=2885&view=rev Author: harpchad Date: 2009-01-22 21:48:44 +0000 (Thu, 22 Jan 2009) Log Message: ----------- - Move depends to Makefile - Add package descriptions Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile csw/mgar/pkg/libxslt/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:48:44 UTC (rev 2885) @@ -10,11 +10,17 @@ MASTER_SITES = ftp://xmlsoft.org/libxslt/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibxslt,depend) -DISTFILES += $(call admfiles,CSWlibxsltdevel,depend) -DISTFILES += $(call admfiles,CSWpylibxslt,depend) +DISTFILES += $(call admfiles,CSWlibxslt,) +DISTFILES += $(call admfiles,CSWlibxsltdevel,) +DISTFILES += $(call admfiles,CSWpylibxslt, PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel + +SPKG_DESC_CSWlibxslt = XSLT engine runtime package +SPKG_DESC_CSWlibxsltdevel = XSLT engine development package +SPKG_DESC_CSWpylibxslt = XSLT engine python package + +SPKG_SOURCEURL = http://xmlsoft.org/XSLT/ TEST_TARGET = check # We define upstream file regex so we can be notifed of new upstream software release @@ -29,9 +35,12 @@ CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) BUILD64 = 1 - NO_ISAEXEC = 1 +REQUIRED_PKGS_CSWlibxslt = CSWgcrypt CSWgpgerr CSWiconv CSWlibxml2 CSWzlib +REQUIRED_PKGS_CSWlibxsltdevel = CSWlibxslt +REQUIRED_PKGS_CSWpylibxslt = CSWpython CSWlibxslt + PKGFILES_CSWlibxsltdevel = $(PKGFILES_DEVEL) PKGFILES_CSWlibxsltdevel += $(docdir)/libxslt-$(GARVERSION)/.* PKGFILES_CSWlibxsltdevel += $(libdir)/xsltConf.sh Modified: csw/mgar/pkg/libxslt/trunk/checksums =================================================================== --- csw/mgar/pkg/libxslt/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/checksums 2009-01-22 21:48:44 UTC (rev 2885) @@ -1,7 +1,4 @@ -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 Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxslt.depend 2009-01-22 21:48:44 UTC (rev 2885) @@ -1,5 +0,0 @@ -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 Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/files/CSWlibxsltdevel.depend 2009-01-22 21:48:44 UTC (rev 2885) @@ -1 +0,0 @@ -P CSWlibxslt libxslt - XSLT engine for the XML Toolkit Deleted: csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend =================================================================== --- csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/libxslt/trunk/files/CSWpylibxslt.depend 2009-01-22 21:48:44 UTC (rev 2885) @@ -1,2 +0,0 @@ -P CSWlibxslt libxslt - XSLT engine for the XML Toolkit -P CSWpython python - A high-level scripting language. 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 22 22:52:01 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:52:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[2886] csw/mgar/pkg/libxslt/trunk/Makefile Message-ID: Revision: 2886 http://gar.svn.sourceforge.net/gar/?rev=2886&view=rev Author: harpchad Date: 2009-01-22 21:52:00 +0000 (Thu, 22 Jan 2009) Log Message: ----------- typo, missing paren Modified Paths: -------------- csw/mgar/pkg/libxslt/trunk/Makefile Modified: csw/mgar/pkg/libxslt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:48:44 UTC (rev 2885) +++ csw/mgar/pkg/libxslt/trunk/Makefile 2009-01-22 21:52:00 UTC (rev 2886) @@ -12,7 +12,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWlibxslt,) DISTFILES += $(call admfiles,CSWlibxsltdevel,) -DISTFILES += $(call admfiles,CSWpylibxslt, +DISTFILES += $(call admfiles,CSWpylibxslt,) PREREQUISITE_PKGS = CSWlibxml2 CSWlibxml2devel 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 22:59:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 21:59:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[2887] csw/mgar/pkg/expat/trunk Message-ID: Revision: 2887 http://gar.svn.sourceforge.net/gar/?rev=2887&view=rev Author: dmichelsen Date: 2009-01-22 21:59:25 +0000 (Thu, 22 Jan 2009) Log Message: ----------- expat: Make combined package with 1.95.8 and 2.0.1 for apps binding to libexpat.so.0 Modified Paths: -------------- csw/mgar/pkg/expat/trunk/Makefile csw/mgar/pkg/expat/trunk/checksums Modified: csw/mgar/pkg/expat/trunk/Makefile =================================================================== --- csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 21:52:00 UTC (rev 2886) +++ csw/mgar/pkg/expat/trunk/Makefile 2009-01-22 21:59:25 UTC (rev 2887) @@ -2,6 +2,9 @@ GARVERSION = 2.0.1 CATEGORIES = lib +EXTRA_MODULATORS = GARVERSION +MODULATIONS_GARVERSION = 1.95.8 2.0.1 + DESCRIPTION = XML Parser Toolkit define BLURB This is James Clark's Expat XML parser library in C. It is a stream oriented @@ -10,7 +13,8 @@ endef MASTER_SITES = $(SF_MIRRORS) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +SOURCEFILES = $(foreach VERSION,$(MODULATIONS_GARVERSION), $(GARNAME)-$(VERSION).tar.gz) +DISTFILES = $(SOURCEFILES) DISTFILES += $(call admfiles,CSWexpat,) # We define upstream file regex so we can be notifed of new upstream software release @@ -28,6 +32,26 @@ TEST_TARGET = check TEST_SCRIPTS = -PKGFILES_CSWexpat-devel = $(PKGFILES_DEVEL) +ifeq ($(GARVERSION),1.95.8) +INSTALL_OVERRIDE_DIRS = prefix exec_prefix bindir libdir includedir man1dir +endif +MERGE_SCRIPTS_isa-i386-garversion-1.95.8 = copy-only +MERGE_DIRS_isa-i386-garversion-1.95.8 = $(libdir) +MERGE_SCRIPTS_isa-amd64-garversion-1.95.8 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-1.95.8 = $(libdir) + +MERGE_SCRIPTS_isa-i386-garversion-2.0.1 = copy-all +MERGE_SCRIPTS_isa-amd64-garversion-2.0.1 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-2.0.1 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-1.95.8 = copy-only +MERGE_DIRS_isa-sparcv8-garversion-1.95.8 = $(libdir) +MERGE_SCRIPTS_isa-sparcv9-garversion-1.95.8 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-1.95.8 = $(libdir) + +MERGE_SCRIPTS_isa-sparcv8-garversion-2.0.1 = copy-all +MERGE_SCRIPTS_isa-sparcv9-garversion-2.0.1 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-2.0.1 = $(bindir) $(sbindir) $(libexecdir) $(libdir) + include gar/category.mk Modified: csw/mgar/pkg/expat/trunk/checksums =================================================================== --- csw/mgar/pkg/expat/trunk/checksums 2009-01-22 21:52:00 UTC (rev 2886) +++ csw/mgar/pkg/expat/trunk/checksums 2009-01-22 21:59:25 UTC (rev 2887) @@ -1,3 +1,3 @@ +aff487543845a82fe262e6e2922b4c8e download/expat-1.95.8.tar.gz ee8b492592568805593f81f8cdf2a04c download/expat-2.0.1.tar.gz 7547f56dfe29c7f8a29983ba60da41a1 download/CSWexpat.gspec -4542a961d5540f2c0b0328f7a5675005 download/CSWexpat-devel.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 Thu Jan 22 23:01:46 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 22:01:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2888] csw/mgar/pkg/tcl85/trunk Message-ID: Revision: 2888 http://gar.svn.sourceforge.net/gar/?rev=2888&view=rev Author: dmichelsen Date: 2009-01-22 22:01:46 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl85: Add patches for Solaris x86, needs more work Modified Paths: -------------- csw/mgar/pkg/tcl85/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff csw/mgar/pkg/tcl85/trunk/files/sunmath.diff Modified: csw/mgar/pkg/tcl85/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 21:59:25 UTC (rev 2887) +++ csw/mgar/pkg/tcl85/trunk/Makefile 2009-01-22 22:01:46 UTC (rev 2888) @@ -13,6 +13,12 @@ DISTFILES = $(DISTNAME)-src.tar.gz DISTFILES += $(call admfiles,CSWtcl85,) +# From https://sourceforge.net/tracker/?func=detail&atid=110894&aid=1839067&group_id=10894 +# for Solaris x86: +#PATCHFILES = sunmath-updated.diff +#PATCHFILES = sunmath.diff +# Both patches seem to be for HEAD instead of 8.5.6, to postpone for now + SPKG_SOURCEURL = http://www.tcl.tk/ # We define upstream file regex so we can be notifed of new upstream software release Added: csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff (rev 0) +++ csw/mgar/pkg/tcl85/trunk/files/sunmath-updated.diff 2009-01-22 22:01:46 UTC (rev 2888) @@ -0,0 +1,117 @@ +Index: unix/tcl.m4 +=================================================================== +RCS file: /cvsroot/tcl/tcl/unix/tcl.m4,v +retrieving revision 1.193 +diff -w -u -r1.193 tcl.m4 +--- unix/tcl.m4 27 Mar 2008 13:39:58 -0000 1.193 ++++ unix/tcl.m4 1 Apr 2008 17:53:51 -0000 +@@ -1931,6 +1931,24 @@ + ], [AC_MSG_WARN([64bit mode not supported for $arch])])]) + ]) + ++ #-------------------------------------------------------------------- ++ # On Solaris 5.x i386 with the sunpro compiler we need to link ++ # with sunmath to get floating point rounding control ++ #-------------------------------------------------------------------- ++ AS_IF([test "$GCC" = yes],[use_sunmath=no],[ ++ arch=`isainfo` ++ AC_MSG_CHECKING([whether to use -lsunmath for fp rounding control]) ++ AS_IF([test "$arch" = "amd64 i386"], [ ++ AC_MSG_RESULT([yes]) ++ MATH_LIBS="-lsunmath $MATH_LIBS" ++ AC_CHECK_HEADER(sunmath.h) ++ use_sunmath=yes ++ ], [ ++ AC_MSG_RESULT([no]) ++ use_sunmath=no ++ ]) ++ ]) ++ + # Note: need the LIBS below, otherwise Tk won't find Tcl's + # symbols when dynamically loaded into tclsh. + +@@ -1938,6 +1956,8 @@ + SHLIB_SUFFIX=".so" + DL_OBJS="tclLoadDl.o" + DL_LIBS="-ldl" ++ ++ + AS_IF([test "$GCC" = yes], [ + SHLIB_LD='${CC} -shared' + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' +@@ -1952,11 +1972,12 @@ + #CC_SEARCH_FLAGS="${CC_SEARCH_FLAGS},-R,$v9gcclibdir" + ]) + ], [ ++ AS_IF([test "$use_sunmath" = yes], [textmode=textoff],[textmode=text]) + case $system in + SunOS-5.[[1-9]][[0-9]]*) +- SHLIB_LD='${CC} -G -z text ${LDFLAGS}';; ++ SHLIB_LD="${CC} -G -z $textmode \${LDFLAGS}";; + *) +- SHLIB_LD='/usr/ccs/bin/ld -G -z text';; ++ SHLIB_LD="/usr/ccs/bin/ld -G -z $textmode";; + esac + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}' +Index: generic/tclStrToD.c +=================================================================== +RCS file: /cvsroot/tcl/tcl/generic/tclStrToD.c,v +retrieving revision 1.33 +diff -w -u -r1.33 tclStrToD.c +--- generic/tclStrToD.c 13 Mar 2008 17:14:19 -0000 1.33 ++++ generic/tclStrToD.c 1 Apr 2008 17:53:49 -0000 +@@ -61,6 +61,13 @@ + # define ADJUST_FPU_CONTROL_WORD + #endif + ++/* Sun ProC needs sunmath for rounding control on x86 like gcc above. ++ * ++ * ++ */ ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++#include ++#endif + /* + * HP's PA_RISC architecture uses 7ff4000000000000 to represent a quiet NaN. + * Everyone else uses 7ff8000000000000. (Why, HP, why?) +@@ -1309,6 +1316,9 @@ + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Test for the easy cases. +@@ -1381,6 +1391,9 @@ + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + + return retval; + } +@@ -1427,6 +1440,9 @@ + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Quick checks for over/underflow. +@@ -1485,6 +1501,9 @@ + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + return retval; + } + Added: csw/mgar/pkg/tcl85/trunk/files/sunmath.diff =================================================================== --- csw/mgar/pkg/tcl85/trunk/files/sunmath.diff (rev 0) +++ csw/mgar/pkg/tcl85/trunk/files/sunmath.diff 2009-01-22 22:01:46 UTC (rev 2888) @@ -0,0 +1,161 @@ +Index: unix/tcl.m4 +=================================================================== +RCS file: /cvsroot/tcl/tcl/unix/tcl.m4,v +retrieving revision 1.192 +diff -u -5 -r1.192 tcl.m4 +--- unix/tcl.m4 13 Mar 2008 17:44:22 -0000 1.192 ++++ unix/tcl.m4 18 Mar 2008 23:55:46 -0000 +@@ -1928,18 +1928,38 @@ + CFLAGS="$CFLAGS -xarch=amd64" + LDFLAGS="$LDFLAGS -xarch=amd64" + ]) + ], [AC_MSG_WARN([64bit mode not supported for $arch])])]) + ]) ++ ++ #-------------------------------------------------------------------- ++ # On Solaris 5.x i386 with the sunpro compiler we need to link ++ # with sunmath to get floating point rounding control ++ #-------------------------------------------------------------------- ++ AS_IF([test "$GCC" = yes],[use_sunmath=no],[ ++ arch=`isainfo` ++ AC_MSG_CHECKING([whether to use -lsunmath for fp rounding control]) ++ AS_IF([test "$arch" = "amd64 i386"], [ ++ AC_MSG_RESULT([yes]) ++ MATH_LIBS="-lsunmath $MATH_LIBS" ++ AC_CHECK_HEADER(sunmath.h) ++ use_sunmath=yes ++ ], [ ++ AC_MSG_RESULT([no]) ++ use_sunmath=no ++ ]) ++ ]) + + # Note: need the LIBS below, otherwise Tk won't find Tcl's + # symbols when dynamically loaded into tclsh. + + SHLIB_LD_LIBS='${LIBS}' + SHLIB_SUFFIX=".so" + DL_OBJS="tclLoadDl.o" + DL_LIBS="-ldl" ++ ++ + AS_IF([test "$GCC" = yes], [ + SHLIB_LD='${CC} -shared' + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS} + AS_IF([test "$do64bit_ok" = yes], [ +@@ -1950,16 +1970,17 @@ + # path, remove so name and append 'sparcv9' + #v9gcclibdir="`gcc -print-file-name=libgcc_s.so` | ..." + #CC_SEARCH_FLAGS="${CC_SEARCH_FLAGS},-R,$v9gcclibdir" + ]) + ], [ ++ AS_IF([test "$use_sunmath" = yes], [textmode=textoff],[textmode=text]) + case $system in + SunOS-5.[[1-9]][[0-9]]*) +- SHLIB_LD='${CC} -G -z text';; ++ SHLIB_LD="${CC} -G -z $textmode";; + *) +- SHLIB_LD='/usr/ccs/bin/ld -G -z text';; +- esac ++ SHLIB_LD="/usr/ccs/bin/ld -G -z $textmode";; ++ esac + CC_SEARCH_FLAGS='-Wl,-R,${LIB_RUNTIME_DIR}' + LD_SEARCH_FLAGS='-R ${LIB_RUNTIME_DIR}' + ]) + ;; + UNIX_SV* | UnixWare-5*) +@@ -2594,11 +2615,11 @@ + # right (and it must appear before "-lm"). + #-------------------------------------------------------------------- + + AC_CHECK_FUNC(sin, MATH_LIBS="", MATH_LIBS="-lm") + AC_CHECK_LIB(ieee, main, [MATH_LIBS="-lieee $MATH_LIBS"]) +- ++ + #-------------------------------------------------------------------- + # Interactive UNIX requires -linet instead of -lsocket, plus it + # needs net/errno.h to define the socket-related error codes. + #-------------------------------------------------------------------- + +Index: generic/tclStrToD.c +=================================================================== +RCS file: /cvsroot/tcl/tcl/generic/tclStrToD.c,v +retrieving revision 1.33 +diff -u -5 -r1.33 tclStrToD.c +--- generic/tclStrToD.c 13 Mar 2008 17:14:19 -0000 1.33 ++++ generic/tclStrToD.c 18 Mar 2008 23:55:50 -0000 +@@ -59,10 +59,17 @@ + #define _FPU_SETCW(cw) __asm__ __volatile__ ("fldcw %0" : : "m" (*&cw)) + # define FPU_IEEE_ROUNDING 0x027f + # define ADJUST_FPU_CONTROL_WORD + #endif + ++/* Sun ProC needs sunmath for rounding control on x86 like gcc above. ++ * ++ * ++ */ ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++#include ++#endif + /* + * HP's PA_RISC architecture uses 7ff4000000000000 to represent a quiet NaN. + * Everyone else uses 7ff8000000000000. (Why, HP, why?) + */ + +@@ -1307,10 +1314,13 @@ + fpu_control_t roundTo53Bits = 0x027f; + fpu_control_t oldRoundingMode; + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) && !defined(__GNUC__) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Test for the easy cases. + */ + +@@ -1379,10 +1389,13 @@ + */ + + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + + return retval; + } + + /* +@@ -1425,10 +1438,13 @@ + fpu_control_t roundTo53Bits = 0x027f; + fpu_control_t oldRoundingMode; + _FPU_GETCW(oldRoundingMode); + _FPU_SETCW(roundTo53Bits); + #endif ++#if defined(__sun) && defined(__i386) ++ ieee_flags("set","precision","double",NULL); ++#endif + + /* + * Quick checks for over/underflow. + */ + +@@ -1483,10 +1499,13 @@ + */ + + #if defined(__GNUC__) && defined(__i386) + _FPU_SETCW(oldRoundingMode); + #endif ++#if defined(__sun) && defined(__i386) ++ ieee_flags("clear","precision",NULL,NULL); ++#endif + return retval; + } + + /* + *---------------------------------------------------------------------- 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 23:07:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 22 Jan 2009 22:07:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2889] csw/mgar/pkg/tcl/trunk Message-ID: Revision: 2889 http://gar.svn.sourceforge.net/gar/?rev=2889&view=rev Author: dmichelsen Date: 2009-01-22 22:07:06 +0000 (Thu, 22 Jan 2009) Log Message: ----------- tcl: Minor naming fixes Modified Paths: -------------- csw/mgar/pkg/tcl/trunk/checksums Added Paths: ----------- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Removed Paths: ------------- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec Modified: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 22:01:46 UTC (rev 2888) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 22:07:06 UTC (rev 2889) @@ -1,2 +1,2 @@ -d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec +ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz +28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Copied: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec (from rev 2884, csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec) =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec (rev 0) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-01-22 22:07:06 UTC (rev 2889) @@ -0,0 +1,4 @@ +%var bitname tcl +%var pkgname CSWtcl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Deleted: csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 22:01:46 UTC (rev 2888) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 22:07:06 UTC (rev 2889) @@ -1,4 +0,0 @@ -%var bitname tcl85 -%var pkgname CSWtcl85 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 22 23:40:32 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 22 Jan 2009 22:40:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2890] csw/mgar/pkg/mbuffer/trunk Message-ID: Revision: 2890 http://gar.svn.sourceforge.net/gar/?rev=2890&view=rev Author: skayser Date: 2009-01-22 22:40:32 +0000 (Thu, 22 Jan 2009) Log Message: ----------- mbuffer: Updated to 20090113 Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile csw/mgar/pkg/mbuffer/trunk/checksums Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-22 22:07:06 UTC (rev 2889) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-22 22:40:32 UTC (rev 2890) @@ -1,5 +1,5 @@ GARNAME = mbuffer -GARVERSION = 20090106 +GARVERSION = 20090113 CATEGORIES = utils DESCRIPTION = A tool for buffering data streams @@ -30,14 +30,17 @@ # 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 +# There had been a reason once to build the 64-bit version (all the way down) +# http://opensolaris.org/jive/thread.jspa?messageID=293647&tstart=0 +# +# To build the mixed package for x86 you have to do the following # 1) build8x: gmake build-isa-i386 # 2) build10x: gmake merge # 3) build8x: gmake package +# +# As this is a bit of a hassle and mbuffer has frequent release cycles i +# prefer to leave it out until someone actually needs it. +# # BUILD64 = 1 # ISAEXEC_BINS = $(bindir)/mbuffer @@ -67,11 +70,9 @@ # 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 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) + @perl -pi -e 's#-lm#/lib/64/libm.so.1#' $(WORKSRC)/Makefile @$(MAKECOOKIE) post-install-modulated: DOCS = ChangeLog README AUTHORS Modified: csw/mgar/pkg/mbuffer/trunk/checksums =================================================================== --- csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-22 22:07:06 UTC (rev 2889) +++ csw/mgar/pkg/mbuffer/trunk/checksums 2009-01-22 22:40:32 UTC (rev 2890) @@ -1,2 +1,2 @@ -26f3d5b9bac8caa8af44f9e9e6d3b43d download/mbuffer-20090106.tgz +baeea5a12a863cf05b6d22d5fc012814 download/mbuffer-20090113.tgz ee84b171939ddb3f60a49b5989626000 download/CSWmbuffer.gspec 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 23 14:28:46 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 23 Jan 2009 13:28:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2891] csw/mgar/pkg/clamav/trunk Message-ID: Revision: 2891 http://gar.svn.sourceforge.net/gar/?rev=2891&view=rev Author: bonivart Date: 2009-01-23 13:28:46 +0000 (Fri, 23 Jan 2009) Log Message: ----------- clamav: milter fix Modified Paths: -------------- csw/mgar/pkg/clamav/trunk/Makefile csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2009-01-22 22:40:32 UTC (rev 2890) +++ csw/mgar/pkg/clamav/trunk/Makefile 2009-01-23 13:28:46 UTC (rev 2891) @@ -1,8 +1,3 @@ -# clamav, Peter Bonivart - -# build with "ENABLE_CHECK=0 gmake package" -# check mantis bugs - GARNAME = clamav GARVERSION = 0.94.2 CATEGORIES = apps Modified: csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter =================================================================== --- csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter 2009-01-22 22:40:32 UTC (rev 2890) +++ csw/mgar/pkg/clamav/trunk/files/CSWclamav.cswclamav-milter 2009-01-23 13:28:46 UTC (rev 2891) @@ -11,7 +11,7 @@ # this script. # 2007-06-02 Do not wait for clamd if etc/clamd does not exist. -. /lib/svc/share/smf_include.sh +[ -f /lib/svc/share/smf_include.sh ] && . /lib/svc/share/smf_include.sh CLAMAV_MILTER="/etc/opt/csw/clamav-milter" @@ -97,7 +97,7 @@ # Stop daemon. stop ;; - restart|reload) + restart|reload|refresh) stop start ;; 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 23 17:19:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 16:19:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[2892] csw/mgar/pkg Message-ID: Revision: 2892 http://gar.svn.sourceforge.net/gar/?rev=2892&view=rev Author: dmichelsen Date: 2009-01-23 16:19:41 +0000 (Fri, 23 Jan 2009) Log Message: ----------- tk: Copy from tcl Modified Paths: -------------- csw/mgar/pkg/tk/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tk/ csw/mgar/pkg/tk/trunk/checksums csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec Removed Paths: ------------- csw/mgar/pkg/tk/trunk/checksums csw/mgar/pkg/tk/trunk/files/CSWtcl85.gspec Modified: csw/mgar/pkg/tk/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/tk/trunk/Makefile 2009-01-23 16:19:41 UTC (rev 2892) @@ -1,4 +1,4 @@ -GARNAME = tcl +GARNAME = tk GARVERSION = 8.4.19 CATEGORIES = lang @@ -11,7 +11,7 @@ DISTNAME = $(GARNAME)$(GARVERSION) DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) +DISTFILES += $(call admfiles,CSWtk,) SPKG_SOURCEURL = http://www.tcl.tk/ Deleted: csw/mgar/pkg/tk/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/tk/trunk/checksums 2009-01-23 16:19:41 UTC (rev 2892) @@ -1,2 +0,0 @@ -d0b0b3ff7600ff63135c710b575265cd download/tcl8.5.6-src.tar.gz -4dfb4032b95e50968247a3570b0c3ecc download/CSWtcl85.gspec Copied: csw/mgar/pkg/tk/trunk/checksums (from rev 2889, csw/mgar/pkg/tcl/trunk/checksums) =================================================================== --- csw/mgar/pkg/tk/trunk/checksums (rev 0) +++ csw/mgar/pkg/tk/trunk/checksums 2009-01-23 16:19:41 UTC (rev 2892) @@ -0,0 +1,2 @@ +ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz +28b60464911afb80f9006d8734868438 download/CSWtcl.gspec Copied: csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec (from rev 2889, csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec) =================================================================== --- csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec (rev 0) +++ csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec 2009-01-23 16:19:41 UTC (rev 2892) @@ -0,0 +1,4 @@ +%var bitname tcl +%var pkgname CSWtcl +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Deleted: csw/mgar/pkg/tk/trunk/files/CSWtcl85.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl85.gspec 2009-01-22 21:32:37 UTC (rev 2884) +++ csw/mgar/pkg/tk/trunk/files/CSWtcl85.gspec 2009-01-23 16:19:41 UTC (rev 2892) @@ -1,4 +0,0 @@ -%var bitname tcl85 -%var pkgname CSWtcl85 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms 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 23 17:48:40 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 23 Jan 2009 16:48:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2893] csw/mgar/pkg/curl/trunk Message-ID: Revision: 2893 http://gar.svn.sourceforge.net/gar/?rev=2893&view=rev Author: harpchad Date: 2009-01-23 16:48:40 +0000 (Fri, 23 Jan 2009) Log Message: ----------- - Updates for gar v2 - Add 1.2 and 1.3 curl libraries for backwards compatiblity Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Added Paths: ----------- csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.i csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.s csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.i csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.s Removed Paths: ------------- csw/mgar/pkg/curl/trunk/files/CSWcurl.depend csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-01-23 16:48:40 UTC (rev 2893) @@ -15,9 +15,13 @@ MASTER_SITES = http://curl.haxx.se/download/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWcurl,depend) -DISTFILES += $(call admfiles,CSWcurlrt,depend) -DISTFILES += $(call admfiles,CSWcurldevel,depend) +DISTFILES += libcurl.so.3.0.0.s +DISTFILES += libcurl.so.2.0.2.s +DISTFILES += libcurl.so.3.0.0.i +DISTFILES += libcurl.so.2.0.2.i +DISTFILES += $(call admfiles,CSWcurl,) +DISTFILES += $(call admfiles,CSWcurlrt,) +DISTFILES += $(call admfiles,CSWcurldevel,) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 @@ -29,9 +33,27 @@ #BUILD64 = 1 EXTRA_BUILD_ISAS_sparc = sparcv9 -TEST_SCRIPTS = +REQUIRED_PKGS_CSWcurl = CSWiconv CSWlibidn CSWlibnet CSWoldaprt CSWosslrt +REQUIRED_PKGS_CSWcurl += CSWsasl CSWzlib CSWcurlrt +REQUIRED_PKGS_CSWcurlrt = CSWlibidn CSWlibnet CSWoldaprt CSWosslrt CSWzlib CSWsasl +REQUIRED_PKGS_CSWcurldevel = CSWcurlrt +ENABLE_CHECK = 0 +TEST_TARGET = + PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) PKGFILES_CSWcurlrt = $(PKGFILES_RT) include gar/category.mk + +post-install-isa-sparcv8: + @cp $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 + @cp $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) + +post-install-isa-i386: + @cp $(FILEDIR)/libcurl.so.3.0.0.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 + @cp $(FILEDIR)/libcurl.so.2.0.2.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) + @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/checksums 2009-01-23 16:48:40 UTC (rev 2893) @@ -1,7 +1,8 @@ -8413cf2aff529cb995c14a57bd41a10a download/CSWcurl.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 +a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i +b46b41659b805013740eeb76e759af4b download/libcurl.so.2.0.2.s +30e826ef67b6ce799b32154250014dd9 download/libcurl.so.3.0.0.i +b63de55fb90feba487b1fd21e751d248 download/libcurl.so.3.0.0.s Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurl.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurl.depend 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/files/CSWcurl.depend 2009-01-23 16:48:40 UTC (rev 2893) @@ -1,8 +0,0 @@ -P CSWiconv libiconv - GNU iconv library -P CSWlibidn libidn - Implementation of the Stringprep, Punycode and IDNA -P CSWlibnet libnet - the libnet packet construction library -P CSWoldaprt openldap_rt - OpenLDAP runtime libraries (oldaprt) -P CSWosslrt openssl_rt - Openssl runtime libraries -P CSWsasl sasl - Simple Authentication and Security Layer -P CSWzlib zlib - Zlib Data Compression Library -P CSWcurlrt curlrt - Library for common Internet protocols Runtime Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/files/CSWcurldevel.depend 2009-01-23 16:48:40 UTC (rev 2893) @@ -1 +0,0 @@ -P CSWcurlrt curlrt - Library for common Internet protocols Runtime Deleted: csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend =================================================================== --- csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend 2009-01-23 16:19:41 UTC (rev 2892) +++ csw/mgar/pkg/curl/trunk/files/CSWcurlrt.depend 2009-01-23 16:48:40 UTC (rev 2893) @@ -1,6 +0,0 @@ -P CSWlibidn libidn - Implementation of the Stringprep, Punycode and IDNA -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 Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.2.0.2.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/curl/trunk/files/libcurl.so.3.0.0.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream 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 23 20:32:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 19:32:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2894] csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk Message-ID: Revision: 2894 http://gar.svn.sourceforge.net/gar/?rev=2894&view=rev Author: dmichelsen Date: 2009-01-23 19:32:22 +0000 (Fri, 23 Jan 2009) Log Message: ----------- cpan/Crypt-OpenSSL-Bignum: Update to 0.04 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/Makefile csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/ Property changes on: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/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/Crypt-OpenSSL-Bignum/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/Makefile 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/Makefile 2009-01-23 19:32:22 UTC (rev 2894) @@ -1,5 +1,5 @@ GARNAME = Crypt-OpenSSL-Bignum -GARVERSION = 0.03 +GARVERSION = 0.04 CATEGORIES = cpan AUTHOR = IROBERTS @@ -13,8 +13,8 @@ Crypt::OpenSSL::RSA. endef -DISTFILES += $(call admfiles,CSWpmcryptosslbignum,depend prototype) +DISTFILES += $(call admfiles,CSWpmcryptosslbignum,) -DEPENDS += lib/openssl +REQUIRED_PKGS = CSWosslrt include gar/category.mk Modified: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/checksums 2009-01-23 19:32:22 UTC (rev 2894) @@ -1,4 +1,2 @@ d7a46a96eda9193461d340c9277cde58 download/CSWpmcryptosslbignum.gspec -a8f5a5031ecdfd60e574d576d507e06e download/CSWpmcryptosslbignum.depend -96c8b67d10e3004352adcacb0d0a7135 download/CSWpmcryptosslbignum.prototype -b526c1554b2f3bf7d94bf0c8c474fd2d download/Crypt-OpenSSL-Bignum-0.03.tar.gz +9369ef722b0705c0604998559988eb18 download/Crypt-OpenSSL-Bignum-0.04.tar.gz Deleted: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.depend 2009-01-23 19:32:22 UTC (rev 2894) @@ -1 +0,0 @@ -P CSWosslrt openssl_rt - Openssl runtime libraries Deleted: csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype =================================================================== --- csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype 2009-01-23 16:48:40 UTC (rev 2893) +++ csw/mgar/pkg/cpan/Crypt-OpenSSL-Bignum/trunk/files/CSWpmcryptosslbignum.prototype 2009-01-23 19:32:22 UTC (rev 2894) @@ -1,25 +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/Crypt 0755 root bin -d none /opt/csw/lib/perl/csw/Crypt/OpenSSL 0755 root bin -d none /opt/csw/lib/perl/csw/Crypt/OpenSSL/Bignum 0755 root bin -f none /opt/csw/lib/perl/csw/Crypt/OpenSSL/Bignum.pm 0444 root bin -f none /opt/csw/lib/perl/csw/Crypt/OpenSSL/Bignum/CTX.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Crypt 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum/Bignum.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Crypt/OpenSSL/Bignum/Bignum.so 0555 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/Crypt::OpenSSL::Bignum.3perl 0444 root bin -f none /opt/csw/share/man/man3/Crypt::OpenSSL::Bignum::CTX.3perl 0444 root bin -d none /opt/csw/share/perl 0755 root bin -d none /opt/csw/share/perl/csw 0755 root bin -i copyright=CSWpmcryptosslbignum.copyright -i depend=CSWpmcryptosslbignum.depend -i pkginfo=CSWpmcryptosslbignum.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 Fri Jan 23 21:49:43 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 20:49:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2895] csw/mgar/pkg/tcl/trunk Message-ID: Revision: 2895 http://gar.svn.sourceforge.net/gar/?rev=2895&view=rev Author: dmichelsen Date: 2009-01-23 20:49:38 +0000 (Fri, 23 Jan 2009) Log Message: ----------- tcl: Add legacy build instructions Added Paths: ----------- csw/mgar/pkg/tcl/trunk/legacy/ csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES csw/mgar/pkg/tcl/trunk/legacy/README csw/mgar/pkg/tcl/trunk/legacy/copyright csw/mgar/pkg/tcl/trunk/legacy/depend csw/mgar/pkg/tcl/trunk/legacy/pkginfo csw/mgar/pkg/tcl/trunk/legacy/prototype csw/mgar/pkg/tcl/trunk/legacy/src/ csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure csw/mgar/pkg/tcl/trunk/legacy/src/Makefile csw/mgar/pkg/tcl/trunk/legacy/tcl/ Added: csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/BUILD.NOTES 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,168 @@ +############################################################################### +# +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the TCL package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWtcl +# +# CUR VER: Tcl Version 8.5.2 +# +# REVISION: 04-27-08 +# +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +08-27-04 8.4.7 Initial 8.4.7 package creation +09-11-04 8.4.7,REV=2004.09.11 Fixed email address in pkginfo file +12-09-04 8.4.9 Initial 8.4.9 package creation +06-11-05 8.4.10 Initial 8.9.10 package creation +07-06-07 8.4.15 Initial 8.9.15 package creation +02-06-08 8.5.1 Initial 8.5.1 package creation +04-27-08 8.5.2 Initial 8.5.2 package creation +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +EDITING CHANGES: +------------------------------------------------------------------------------- + + None + +------------------------------------------------------------------------------- +SPARC: +------------------------------------------------------------------------------- + +make: + + * The following warning messages are produced: + + ./../generic/regcomp.c [NOTE: typical lex warnings - OK] + "../generic/regc_lex.c", line 426: warning: statement not reached + "../generic/regc_lex.c", line 519: warning: statement not reached + "../generic/regc_lex.c", line 525: warning: statement not reached + "../generic/regc_lex.c", line 610: warning: statement not reached + "../generic/regc_lex.c", line 642: warning: statement not reached + "../generic/regc_lex.c", line 907: warning: statement not reached + "../generic/regc_lex.c", line 1078: warning: statement not reached + ./tclUnixCompat.c + "./tclUnixCompat.c", line 187: warning: statement not reached + "./tclUnixCompat.c", line 243: warning: statement not reached + "./tclUnixCompat.c", line 299: warning: statement not reached + "./tclUnixCompat.c", line 355: warning: statement not reached + "./tclUnixCompat.c", line 423: warning: statement not reached + "./tclUnixCompat.c", line 486: warning: statement not reached + + * Otherwise, compiles cleanly. + + +make test: + + * All tests pass + + Tests ended at Mon Apr 28 02:17:18 EDT 2008 + all.tcl: Total 24242 Passed 23265 Skipped 977 Failed 0 + Sourced 137 Test Files. + Number of tests skipped for each constraint: + 9 !ieeeFloatingPoint + 2 95or98 + 3 asyncPipeChan + 4 dontCopyLinks + 61 emptyTest + 2 hasIsoLocale + 29 knownBug + 2 knownBug !singleTestInterp + 2 largefileSupport + 77 littleEndian + 100 localeRegexp + 12 longIs64bit + 14 macosxFileAttr + 15 memory + 42 nonPortable + 5 notNetworkFilesystem + 8 nt + 4 readonlyAttr + 1 testWinCPUID + 7 testaccessproc + 1 testexprparser && !ieeeFloatingPoint + 8 testopenfilechannelproc + 7 teststatproc + 1 testwinclock + 21 testwordend + 3 unknownFailure + 2 unthreaded + 524 win + +------------------------------------------------------------------------------- +INTEL: +------------------------------------------------------------------------------- + +make: + + * Same results as sparc + +make test: + + * expr.test + ==== expr-28.362 input floating-point conversion FAILED + ==== Contents of test case: + + # Ad2b dieee UN -720919 E-14 x \ + -1ef696965cbf04_10000000000000000000000001& E-28 + convertToDouble -720919E-14 + + ---- Result was: + 0xbe3ef696965cbf04 + ---- Result should have been (exact matching): + 0xbe3ef696965cbf05 + ==== expr-28.362 FAILED + + ==== expr-28.393 input floating-point conversion FAILED + ==== Contents of test case: + + # Ad2b d UN +65346417 E29 x \ + 13aa1ad778f23b_0111111111111111111111111111110& E122 + convertToDouble +65346417E29 + + [MANY other FP tests also fail by 1] + + Tests ended at Wed Feb 06 21:05:53 EST 2008 + all.tcl: Total 24180 Passed 23081 Skipped 973 Failed 126 + Sourced 137 Test Files. + Files with failing tests: expr.test + Number of tests skipped for each constraint: + 9 !ieeeFloatingPoint + 2 95or98 + 3 asyncPipeChan + 76 bigEndian + 4 dontCopyLinks + 59 emptyTest + 2 hasIsoLocale + 29 knownBug + 2 knownBug !singleTestInterp + 2 largefileSupport + 100 localeRegexp + 12 longIs64bit + 14 macosxFileAttr + 15 memory + 41 nonPortable + 5 notNetworkFilesystem + 8 nt + 4 readonlyAttr + 1 testWinCPUID + 7 testaccessproc + 1 testexprparser && !ieeeFloatingPoint + 8 testopenfilechannelproc + 7 teststatproc + 1 testwinclock + 21 testwordend + 3 unknownFailure + 2 unthreaded + 524 win Added: csw/mgar/pkg/tcl/trunk/legacy/README =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/README 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,216 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the TCL package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWtcl +# +# REVISION: 04-27-08 +# +# NOTES: * +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: wr + or + INTEL: wt + +------------------------------------------------------------------------------- +02: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +03: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/tcl + vi pkginfo + [edit the VERSION line including the ,REV=YYYY.MM.DD string] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +04: Download the source code (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + cd src + vi Makefile (Edit & set TVER to current version) + + make get Download source code from sourceforge: + + or get it from personal machine with: + bwput -d /export/home/jeff/pkgs/tcl/src \ + tcl*-src.tar.gz + + make rename rename the source file + make unpack unpack the source + +------------------------------------------------------------------------------- +05: Update the copyright file (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + cd tcl*[0-9] + cp license.terms ${HOME}/pkgs/tcl/copyright + +------------------------------------------------------------------------------- +06: See if there are any source file modifications required for build +------------------------------------------------------------------------------- + + cd unix + less -+e ../../../BUILD.NOTES + + [update as required] + +------------------------------------------------------------------------------- +07: Compile the software +------------------------------------------------------------------------------- + + make distclean + ../../CJSA.configure # run configure + script zzzz # capture output + make + make test + exit # terminate script + +------------------------------------------------------------------------------- +08: Review zzzz script file and update any required info in BUILD.NOTES file +------------------------------------------------------------------------------- + + vi zzzz ../../../BUILD.NOTES + rm zzzz + +------------------------------------------------------------------------------- +09: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +10: Make symbolic link for tclsh [**** USING PROPER VERSION NO. ****] +------------------------------------------------------------------------------- + + rm -f cswstage/opt/csw/bin/tclsh + ls -l cswstage/opt/csw/bin + + ln -s tclsh8.5 cswstage/opt/csw/bin/tclsh # USE CORRECT VER. NO! + + ls -l cswstage/opt/csw/bin + ls -lL cswstage/opt/csw/bin + +------------------------------------------------------------------------------- +11: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + :g/0444/s//0644/g + [change file permissions from 0555 to 0755] + :g/0555/s//0755/g + [add following 's' line after 'f' line: ***CHECK VERSION NO.***] + f none /opt/csw/bin/tclsh8.5 0755 root bin [existing line] + s none /opt/csw/bin/tclsh=tclsh8.5 + +------------------------------------------------------------------------------- +12: Edit the shipping tclConfig.sh file to set proper paths +------------------------------------------------------------------------------- + + vi opt/csw/lib/tclConfig.sh + :g#/export/home/jeff/pkgs/tcl/src/tcl[0-9.]*/unix#s##/opt/csw/lib#g + :g#/export/home/jeff/pkgs/tcl/src/tcl[0-9.]*#s##/opt/csw/src/tcl#g + :g#-I. -I../generic -I../../generic #s###g + :wq + +------------------------------------------------------------------------------- +13: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/tcl/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/tcl + +------------------------------------------------------------------------------- +14: Create the package tcl-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/tcl + createpkg -r ${HOME}/pkgs/tcl/src/tcl*[0-9]/unix/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +15: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + *** Current dependencies are listed in the depend file *** + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 10 and recreate the package + +------------------------------------------------------------------------------- +16: Build other software for this hardware platform +------------------------------------------------------------------------------- + + Build CSWtk package + Build CSWitcl package (if necessary) + Build CSWitk package (if necessary) + Build CSWtclx package (if applicable) + +------------------------------------------------------------------------------- +17: Go back to step #01 and build everything for the other hardware platform +------------------------------------------------------------------------------- + + * Continue when all packages for Sparc & X86 platforms are ready + +------------------------------------------------------------------------------- +18: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + +------------------------------------------------------------------------------- +19: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/tcl + cp tcl-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +20: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp TCL.${VER}-src.tar.gz /export/medusa/src/tcl${VER}-src.tar.gz + +------------------------------------------------------------------------------- +21: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/tcl/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/copyright 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,40 @@ +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState +Corporation and other parties. The following terms apply to all files +associated with the software unless explicitly disclaimed in +individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. Added: csw/mgar/pkg/tcl/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/depend 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/tcl/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/pkginfo 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,9 @@ +PKG=CSWtcl +NAME=tcl - Tool Command Language +VERSION=8.5.2,REV=2008.04.27 +ARCH=sparc +CATEGORY=system +CSW_CATEGORY="prog, user" +VENDOR=http://www.tcl.tk/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/tcl/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/prototype 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,951 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/tcl-man 0755 root bin +d none /opt/csw/share/tcl-man/man1 0755 root bin +f none /opt/csw/share/tcl-man/man1/tclsh.1 0644 root bin +d none /opt/csw/share/tcl-man/man3 0755 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_Access.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Stat.3=Tcl_Access.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetReturnOptions.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetReturnOptions.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AddErrorInfo.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendObjToErrorInfo.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AddObjErrorInfo.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetObjErrorCode.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetErrorCode.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetErrorCodeVA.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PosixError.3=Tcl_GetReturnOptions.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LogCommandInfo.3=Tcl_GetReturnOptions.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Alloc.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Free.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Realloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AttemptAlloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AttemptRealloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/ckalloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/ckfree.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/ckrealloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/attemptckalloc.3=Tcl_Alloc.3 +l none /opt/csw/share/tcl-man/man3/attemptckrealloc.3=Tcl_Alloc.3 +f none /opt/csw/share/tcl-man/man3/Tcl_AllowExceptions.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_AppInit.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_GetAssocData.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetAssocData.3=Tcl_GetAssocData.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteAssocData.3=Tcl_GetAssocData.3 +f none /opt/csw/share/tcl-man/man3/Tcl_AsyncCreate.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncMark.3=Tcl_AsyncCreate.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncInvoke.3=Tcl_AsyncCreate.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncDelete.3=Tcl_AsyncCreate.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AsyncReady.3=Tcl_AsyncCreate.3 +f none /opt/csw/share/tcl-man/man3/Tcl_BackgroundError.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_Backslash.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_NewBooleanObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetBooleanObj.3=Tcl_NewBooleanObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetBooleanFromObj.3=Tcl_NewBooleanObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewByteArrayObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetByteArrayObj.3=Tcl_NewByteArrayObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetByteArrayFromObj.3=Tcl_NewByteArrayObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetByteArrayLength.3=Tcl_NewByteArrayObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CallWhenDeleted.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DontCallWhenDeleted.3=Tcl_CallWhenDeleted.3 +f none /opt/csw/share/tcl-man/man3/Tcl_StackChannel.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UnstackChannel.3=Tcl_StackChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetStackedChannel.3=Tcl_StackChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetTopChannel.3=Tcl_StackChannel.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CommandComplete.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_Concat.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_CreateChannel.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelInstanceData.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelType.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelName.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelHandle.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelMode.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelBufferSize.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetChannelBufferSize.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NotifyChannel.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_BadChannelOption.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelName.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelVersion.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelBlockModeProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelCloseProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelClose2Proc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelInputProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelOutputProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelSeekProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CutChannel.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelWideSeekProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelTruncateProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelSetOptionProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelGetOptionProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelWatchProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelGetHandleProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelFlushProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelHandlerProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelThreadActionProc.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsChannelShared.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsChannelRegistered.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SpliceChannel.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsChannelExisting.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ClearChannelHandlers.3=Tcl_CreateChannel.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateCommand.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelThread.3=Tcl_CreateChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ChannelBuffered.3=Tcl_CreateChannel.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateChannelHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteChannelHandler.3=Tcl_CreateChannelHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateCloseHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteCloseHandler.3=Tcl_CreateCloseHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateFileHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteFileHandler.3=Tcl_CreateFileHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateInterp.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteInterp.3=Tcl_CreateInterp.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InterpDeleted.3=Tcl_CreateInterp.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateMathFunc.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetMathFuncInfo.3=Tcl_CreateMathFunc.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListMathFuncs.3=Tcl_CreateMathFunc.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateObjCommand.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteCommand.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteCommandFromToken.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandInfo.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandInfoFromToken.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetCommandInfo.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetCommandInfoFromToken.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandName.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandFullName.3=Tcl_CreateObjCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCommandFromObj.3=Tcl_CreateObjCommand.3 +f none /opt/csw/share/tcl-man/man3/Tcl_IsSafe.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_MakeSafe.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateSlave.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetSlave.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetMaster.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetInterpPath.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateAlias.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateAliasObj.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetAlias.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetAliasObj.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExposeCommand.3=Tcl_IsSafe.3 +l none /opt/csw/share/tcl-man/man3/Tcl_HideCommand.3=Tcl_IsSafe.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateTimerHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteTimerHandler.3=Tcl_CreateTimerHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateTrace.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_CreateObjTrace.3=Tcl_CreateTrace.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteTrace.3=Tcl_CreateTrace.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DStringInit.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DStringAppend.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringAppendElement.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringStartSublist.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringEndSublist.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringLength.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringValue.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringTrunc.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringSetLength.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringFree.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringResult.3=Tcl_DStringInit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DStringGetResult.3=Tcl_DStringInit.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DetachPids.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ReapDetachedProcs.3=Tcl_DetachPids.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WaitPid.3=Tcl_DetachPids.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewDictObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjPut.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjGet.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjRemove.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjSize.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjFirst.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjNext.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjDone.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjPutKeyList.3=Tcl_NewDictObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DictObjRemoveKeyList.3=Tcl_NewDictObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DoOneEvent.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_DoWhenIdle.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_CancelIdleCall.3=Tcl_DoWhenIdle.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewDoubleObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetDoubleObj.3=Tcl_NewDoubleObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetDoubleFromObj.3=Tcl_NewDoubleObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_DumpActiveMemory.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_InitMemory.3=Tcl_DumpActiveMemory.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ValidateAllMemory.3=Tcl_DumpActiveMemory.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetEncoding.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FreeEncoding.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingFromObj.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExternalToUtfDString.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExternalToUtf.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToExternalDString.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToExternal.3=Tcl_GetEncoding.3 +f none /opt/csw/share/tcl-man/man3/Tcl_PutEnv.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_WinTCharToUtf.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WinUtfToTChar.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingName.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetSystemEncoding.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingNameFromEnvironment.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingNames.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateEncoding.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEncodingSearchPath.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEncodingSearchPath.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetDefaultEncodingDir.3=Tcl_GetEncoding.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetDefaultEncodingDir.3=Tcl_GetEncoding.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateEnsemble.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FindEnsemble.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleFlags.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleMappingDict.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleNamespace.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleUnknownHandler.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetEnsembleSubcommandList.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsEnsemble.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleFlags.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleMappingDict.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleSubcommandList.3=Tcl_CreateEnsemble.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetEnsembleUnknownHandler.3=Tcl_CreateEnsemble.3 +f none /opt/csw/share/tcl-man/man3/Tcl_EvalObjEx.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_EvalFile.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalObjv.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Eval.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalEx.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GlobalEval.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GlobalEvalObj.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_VarEval.3=Tcl_EvalObjEx.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Exit.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_VarEvalVA.3=Tcl_EvalObjEx.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Finalize.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExitThread.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FinalizeThread.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateThreadExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteThreadExitHandler.3=Tcl_Exit.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetExitProc.3=Tcl_Exit.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ExprLong.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ExprDouble.3=Tcl_ExprLong.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprBoolean.3=Tcl_ExprLong.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprString.3=Tcl_ExprLong.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ExprLongObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ExprDoubleObj.3=Tcl_ExprLongObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprBooleanObj.3=Tcl_ExprLongObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ExprObj.3=Tcl_ExprLongObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_FSRegister.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FSUnregister.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSData.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSMountsChanged.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetFileSystemForPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetPathType.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSCopyFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSCopyDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSCreateDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSDeleteFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSRemoveDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSRenameFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSListVolumes.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSEvalFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSEvalFileEx.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSLoadFile.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSMatchInDirectory.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSLink.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSLstat.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSUtime.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileAttrsGet.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileAttrsSet.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileAttrStrings.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSStat.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSAccess.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSOpenFileChannel.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetCwd.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSChdir.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSPathSeparator.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSJoinPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSSplitPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSEqualPaths.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetNormalizedPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSJoinToPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSConvertToPathType.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetInternalRep.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetTranslatedPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetTranslatedStringPath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSNewNativePath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSGetNativePath.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FSFileSystemInfo.3=Tcl_FSRegister.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AllocStatBuf.3=Tcl_FSRegister.3 +f none /opt/csw/share/tcl-man/man3/Tcl_FindExecutable.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetNameOfExecutable.3=Tcl_FindExecutable.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetCwd.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Chdir.3=Tcl_GetCwd.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetHostName.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_GetIndexFromObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetIndexFromObjStruct.3=Tcl_GetIndexFromObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetInt.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetDouble.3=Tcl_GetInt.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetTime.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetBoolean.3=Tcl_GetInt.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetOpenFile.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_GetStdChannel.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetStdChannel.3=Tcl_GetStdChannel.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetTimeProc.3=Tcl_GetTime.3 +l none /opt/csw/share/tcl-man/man3/Tcl_QueryTimeProc.3=Tcl_GetTime.3 +f none /opt/csw/share/tcl-man/man3/Tcl_GetVersion.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_InitHashTable.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_InitCustomHashTable.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InitObjHashTable.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteHashTable.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FindHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetHashValue.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetHashValue.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetHashKey.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FirstHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NextHashEntry.3=Tcl_InitHashTable.3 +l none /opt/csw/share/tcl-man/man3/Tcl_HashStats.3=Tcl_InitHashTable.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Init.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_InitStubs.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_NewIntObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_NewLongObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NewWideIntObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetIntObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetLongObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetWideIntObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetIntFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetLongFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetWideIntFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NewBignumObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetBignumObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetBignumFromObj.3=Tcl_NewIntObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_TakeBignumFromObj.3=Tcl_NewIntObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Interp.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_LimitAddHandler.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_LimitCheck.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitExceeded.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitGetCommands.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitGetGranularity.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitGetTime.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitReady.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitRemoveHandler.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitSetCommands.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitSetGranularity.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitSetTime.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeEnabled.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeExceeded.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeReset.3=Tcl_LimitAddHandler.3 +l none /opt/csw/share/tcl-man/man3/Tcl_LimitTypeSet.3=Tcl_LimitAddHandler.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Close.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_LinkVar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UnlinkVar.3=Tcl_LinkVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UpdateLinkedVar.3=Tcl_LinkVar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ListObjAppendList.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjAppendElement.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NewListObj.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetListObj.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjGetElements.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjLength.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjIndex.3=Tcl_ListObjAppendList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ListObjReplace.3=Tcl_ListObjAppendList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_AppendExportList.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_CreateNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Export.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FindCommand.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FindNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ForgetImport.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCurrentNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetGloblaNamespace.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetNamespaceUnknownHandler.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Import.3=Tcl_AppendExportList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetNamespaceUnknownHandler.3=Tcl_AppendExportList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CreateEventSource.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteEventSource.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetMaxBlockTime.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_QueueEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ThreadQueueEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ThreadAlert.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCurrentThread.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DeleteEvents.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InitNotifier.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WaitForEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FinalizeNotifier.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AlertNotifier.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetTimer.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ServiceAll.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ServiceEvent.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetServiceMode.3=Tcl_CreateEventSource.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetServiceMode.3=Tcl_CreateEventSource.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_DuplicateObj.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IncrRefCount.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DecrRefCount.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsShared.3=Tcl_NewObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InvalidateStringRep.3=Tcl_NewObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_RegisterObjType.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetObjType.3=Tcl_RegisterObjType.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendAllObjTypes.3=Tcl_RegisterObjType.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConvertToType.3=Tcl_RegisterObjType.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Read.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OpenFileChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OpenCommandChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MakeFileChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelNames.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelNamesEx.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegisterChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UnregisterChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DetachChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_IsStandardChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ReadChars.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetsObj.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Gets.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WriteObj.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WriteChars.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Write.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Flush.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Seek.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Tell.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_TruncateChannel.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelOption.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetChannelOption.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Eof.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InputBlocked.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_InputBuffered.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OutputBuffered.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Ungets.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ReadRaw.3=Tcl_Close.3 +l none /opt/csw/share/tcl-man/man3/Tcl_WriteRaw.3=Tcl_Close.3 +f none /opt/csw/share/tcl-man/man3/Tcl_OpenTcpClient.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_MakeTcpClientChannel.3=Tcl_OpenTcpClient.3 +l none /opt/csw/share/tcl-man/man3/Tcl_OpenTcpServer.3=Tcl_OpenTcpClient.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Panic.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_PanicVA.3=Tcl_Panic.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetPanicProc.3=Tcl_Panic.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ParseCommand.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ParseExpr.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseBraces.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseQuotedString.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseVarName.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ParseVar.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_FreeParse.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalTokens.3=Tcl_ParseCommand.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EvalTokensStandard.3=Tcl_ParseCommand.3 +f none /opt/csw/share/tcl-man/man3/Tcl_PkgRequire.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_PkgRequireEx.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgRequireProc.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgPresent.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgPresentEx.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgProvide.3=Tcl_PkgRequire.3 +l none /opt/csw/share/tcl-man/man3/Tcl_PkgProvideEx.3=Tcl_PkgRequire.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Preserve.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Release.3=Tcl_Preserve.3 +l none /opt/csw/share/tcl-man/man3/Tcl_EventuallyFree.3=Tcl_Preserve.3 +f none /opt/csw/share/tcl-man/man3/Tcl_PrintDouble.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RecordAndEvalObj.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RecordAndEval.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RegisterConfig.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_RegExpMatch.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpCompile.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpExec.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpRange.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetRegExpFromObj.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpMatchObj.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpExecObj.3=Tcl_RegExpMatch.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RegExpGetInfo.3=Tcl_RegExpMatch.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SaveInterpState.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_RestoreInterpState.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DiscardInterpState.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SaveResult.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_RestoreResult.3=Tcl_SaveInterpState.3 +l none /opt/csw/share/tcl-man/man3/Tcl_DiscardResult.3=Tcl_SaveInterpState.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetChannelError.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetChannelErrorInterp.3=Tcl_SetChannelError.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelError.3=Tcl_SetChannelError.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetChannelErrorInterp.3=Tcl_SetChannelError.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetErrno.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetErrno.3=Tcl_SetErrno.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ErrnoId.3=Tcl_SetErrno.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ErrnoMsg.3=Tcl_SetErrno.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetRecursionLimit.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_SetObjResult.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_GetObjResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetStringResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendResult.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendResultVA.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendElement.3=Tcl_SetObjResult.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ResetResult.3=Tcl_SetObjResult.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Sleep.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_FreeResult.3=Tcl_SetObjResult.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SetVar2Ex.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetVar.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ObjSetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetVar2Ex.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetVar.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ObjGetVar2.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UnsetVar.3=Tcl_SetVar2Ex.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UnsetVar2.3=Tcl_SetVar2Ex.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SignalId.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SignalMsg.3=Tcl_SignalId.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SourceRCFile.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_SplitList.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_Merge.3=Tcl_SplitList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ScanElement.3=Tcl_SplitList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConvertElement.3=Tcl_SplitList.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ScanCountedElement.3=Tcl_SplitList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_Main.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ConvertCountedElement.3=Tcl_SplitList.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SplitPath.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_JoinPath.3=Tcl_SplitPath.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetPathType.3=Tcl_SplitPath.3 +f none /opt/csw/share/tcl-man/man3/Tcl_StaticPackage.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_StandardChannels.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_StringMatch.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_StringCaseMatch.3=Tcl_StringMatch.3 +f none /opt/csw/share/tcl-man/man3/Tcl_NewStringObj.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_NewUnicodeObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetStringObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetUnicodeObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetStringFromObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetString.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetUnicodeFromObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetUnicode.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetUniChar.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetRange.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetCharLength.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendUnicodeToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendObjToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendStringsToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendStringsToObjVA.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendLimitedToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_Format.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendFormatToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ObjPrintf.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AppendPrintfToObj.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_SetObjLength.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_AttemptSetObjLength.3=Tcl_NewStringObj.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConcatObj.3=Tcl_NewStringObj.3 +f none /opt/csw/share/tcl-man/man3/Tcl_SubstObj.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/TCL_MEM_DEBUG.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_SetMainLoop.3=Tcl_Main.3 +f none /opt/csw/share/tcl-man/man3/Tcl_ConditionNotify.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_ConditionWait.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_ConditionFinalize.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_GetThreadData.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MutexLock.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MutexUnlock.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_MutexFinalize.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_CreateThread.3=Tcl_ConditionNotify.3 +l none /opt/csw/share/tcl-man/man3/Tcl_JoinThread.3=Tcl_ConditionNotify.3 +f none /opt/csw/share/tcl-man/man3/Tcl_UniCharToUpper.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToLower.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToTitle.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToUpper.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToLower.3=Tcl_UniCharToUpper.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToTitle.3=Tcl_UniCharToUpper.3 +f none /opt/csw/share/tcl-man/man3/Tcl_CommandTraceInfo.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_TraceCommand.3=Tcl_CommandTraceInfo.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UntraceCommand.3=Tcl_CommandTraceInfo.3 +f none /opt/csw/share/tcl-man/man3/Tcl_TraceVar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_TraceVar2.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UntraceVar.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UntraceVar2.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_VarTraceInfo.3=Tcl_TraceVar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_VarTraceInfo2.3=Tcl_TraceVar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_TranslateFileName.3 0644 root bin +f none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsAlnum.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsAlpha.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsControl.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsDigit.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsGraph.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsLower.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsPrint.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsPunct.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsSpace.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsUpper.3=Tcl_UniCharIsAlnum.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharIsWordChar.3=Tcl_UniCharIsAlnum.3 +f none /opt/csw/share/tcl-man/man3/Tcl_UpVar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UpVar2.3=Tcl_UpVar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_UniChar.3 0644 root bin +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharCaseMatch.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharNcasecmp.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToUtf.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToUniChar.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharToUtfDString.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfToUniCharDString.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharLen.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharNcmp.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfCharComplete.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_NumUtfChars.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfFindFirst.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfFindLast.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfNext.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfPrev.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UniCharAtIndex.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfAtIndex.3=Tcl_UniChar.3 +l none /opt/csw/share/tcl-man/man3/Tcl_UtfBackslash.3=Tcl_UniChar.3 +f none /opt/csw/share/tcl-man/man3/Tcl_WrongNumArgs.3 0644 root bin +d none /opt/csw/share/tcl-man/mann 0755 root bin +f none /opt/csw/share/tcl-man/mann/Tcl.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/after.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/append.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/apply.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/array.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/bgerror.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/binary.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/break.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/case.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/catch.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/cd.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/chan.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/clock.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/close.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/concat.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/continue.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/dde.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/dict.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/encoding.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/eof.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/error.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/eval.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/exec.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/exit.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/expr.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fblocked.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fconfigure.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fcopy.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/file.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/fileevent.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/filename.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/flush.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/for.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/foreach.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/format.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/gets.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/glob.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/global.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/history.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/http.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/if.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/incr.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/info.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/interp.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/join.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lappend.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lassign.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/auto_execok.n 0644 root bin +l none /opt/csw/share/tcl-man/mann/auto_import.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_load.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_mkindex.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_mkindex_old.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_qualify.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/auto_reset.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_findLibrary.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/parray.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_endOfWord.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_startOfNextWord.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_startOfPreviousWord.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_wordBreakAfter.n=auto_execok.n +l none /opt/csw/share/tcl-man/mann/tcl_wordBreakBefore.n=auto_execok.n +f none /opt/csw/share/tcl-man/mann/lindex.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/linsert.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/list.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/llength.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/load.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lrange.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lrepeat.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lreplace.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lreverse.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lsearch.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lset.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/lsort.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/mathfunc.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/mathop.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/memory.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/msgcat.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/namespace.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/open.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/package.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pkg::create.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pid.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pkg_mkIndex.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/platform.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/platform::shell.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/proc.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/puts.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/pwd.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/re_syntax.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/read.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/refchan.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/regexp.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/registry.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/regsub.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/rename.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/return.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/SafeBase.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/scan.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/seek.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/set.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/socket.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/source.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/split.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/subst.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/string.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/switch.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tcltest.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tclvars.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tell.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/time.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/tm.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/trace.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/unknown.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/unload.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/unset.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/update.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/uplevel.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/upvar.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/variable.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/vwait.n 0644 root bin +f none /opt/csw/share/tcl-man/mann/while.n 0644 root bin +d none /opt/csw/lib 0755 root bin +d none /opt/csw/lib/tcl8.5 0755 root bin +d none /opt/csw/lib/tcl8.5/msgs 0755 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ec.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/eo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ca.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kw_gb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ga.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/it.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_bw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gl_es.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/de_at.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sh.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ro.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kl_gl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hi.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_pr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/te.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_lb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ar.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/id.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/af.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/he.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_zw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/th.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_uy.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/lt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_nz.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_jo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_tw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_sy.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/bg.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fa.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_ph.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/pt_br.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ru.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/et.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_cl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ar.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_hn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kok_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_sg.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_sg.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nl_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/af_za.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/cs.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/bn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_sv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ms_my.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hi_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_cn.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ko_kr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_cr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_mx.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_gt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_ie.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ga_ie.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_pa.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/hu.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_au.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_py.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/lv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/bn_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mr_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ja.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_hk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/de_be.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/pt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh_hk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ta_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gv.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/eu_es.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/vi.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fo_fo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fa_ir.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fi.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/de.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_bo.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/te_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/mt.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_pe.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sw.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ni.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fa_in.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/id_id.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/el.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_za.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_ve.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/nl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/pl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/tr.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ms.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ru_ua.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ta.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/it_ch.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr_ca.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/ko.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/fr_ch.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_co.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/kok.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/is.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/gv_gb.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/zh.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_ca.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/uk.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sq.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/sl.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/eu.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/es_do.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/da.msg 0644 root bin +f none /opt/csw/lib/tcl8.5/msgs/en_gb.msg 0644 root bin +d none /opt/csw/lib/tcl8.5/opt0.4 0755 root bin +f none /opt/csw/lib/tcl8.5/opt0.4/optparse.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/opt0.4/pkgIndex.tcl 0644 root bin +d none /opt/csw/lib/tcl8.5/http1.0 0755 root bin +f none /opt/csw/lib/tcl8.5/http1.0/http.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/http1.0/pkgIndex.tcl 0644 root bin +d none /opt/csw/lib/tcl8.5/encoding 0755 root bin +f none /opt/csw/lib/tcl8.5/encoding/ascii.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/big5.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1250.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1251.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1252.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1253.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1254.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1255.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1256.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1257.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp1258.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp437.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp737.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp775.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp850.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp852.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp855.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp857.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp860.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp861.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp862.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp863.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp864.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp865.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp866.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp869.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp874.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp932.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp936.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp949.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/cp950.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/dingbats.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/ebcdic.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/euc-cn.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/euc-jp.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/euc-kr.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb12345.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb1988.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb2312-raw.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/gb2312.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso2022-jp.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso2022-kr.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso2022.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-1.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-10.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-13.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-14.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-15.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-16.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-2.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-3.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-4.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-5.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-6.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-7.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-8.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/iso8859-9.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/jis0201.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/jis0208.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/jis0212.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/koi8-r.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/koi8-u.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/ksc5601.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macCentEuro.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macCroatian.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macCyrillic.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macDingbats.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macGreek.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macIceland.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macJapan.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macRoman.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macRomania.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macThai.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macTurkish.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/macUkraine.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/shiftjis.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/symbol.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/encoding/tis-620.enc 0644 root bin +f none /opt/csw/lib/tcl8.5/auto.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/clock.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/history.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/init.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/package.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/parray.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/safe.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/tm.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/word.tcl 0644 root bin +f none /opt/csw/lib/tcl8.5/tclIndex 0644 root bin +f none /opt/csw/lib/tcl8.5/tclAppInit.c 0644 root bin +f none /opt/csw/lib/tcl8.5/ldAix 0644 root bin +f none /opt/csw/lib/libtcl8.5.so 0755 root bin +f none /opt/csw/lib/tclConfig.sh 0644 root bin +f none /opt/csw/lib/libtclstub8.5.a 0644 root bin +d none /opt/csw/lib/tcl8 0755 root bin +d none /opt/csw/lib/tcl8/8.3 0755 root bin +d none /opt/csw/lib/tcl8/8.4 0755 root bin +d none /opt/csw/lib/tcl8/8.4/platform 0755 root bin +f none /opt/csw/lib/tcl8/8.4/platform/shell-1.1.3.tm 0644 root bin +f none /opt/csw/lib/tcl8/8.4/http-2.7.tm 0644 root bin +f none /opt/csw/lib/tcl8/8.4/platform-1.0.3.tm 0644 root bin +d none /opt/csw/lib/tcl8/8.5 0755 root bin +f none /opt/csw/lib/tcl8/8.5/msgcat-1.4.2.tm 0644 root bin +f none /opt/csw/lib/tcl8/8.5/tcltest-2.3.0.tm 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/tclsh8.5 0755 root bin +s none /opt/csw/bin/tclsh=tclsh8.5 +d none /opt/csw/include 0755 root bin +f none /opt/csw/include/tcl.h 0644 root bin +f none /opt/csw/include/tclDecls.h 0644 root bin +f none /opt/csw/include/tclPlatDecls.h 0644 root bin +f none /opt/csw/include/tclTomMath.h 0644 root bin +f none /opt/csw/include/tclTomMathDecls.h 0644 root bin Added: csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,14 @@ +# Configure command for the TCL package +# Run from the tcl*[0-9]/unix subdirectory +# +# NOTE: * Had to add the CFLAGS argument for 8.5.x so that the test routines +# could find the current tcl.h file in the generic directory rather +# than the previously installed 8.4.x /opt/csw/include/tcl.h which +# was causing all sorts of compile problems due to undefined objects! +# +# * The CFLAGS line below is necessary for the tests to be compiled and +# run. Must edit out of tclConfig.sh later. + +./configure --prefix=/opt/csw --mandir=/opt/csw/share/tcl-man \ + --enable-threads \ + CFLAGS="-I. -I../generic -I../../generic" Property changes on: csw/mgar/pkg/tcl/trunk/legacy/src/CJSA.configure ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/tcl/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/tcl/trunk/legacy/src/Makefile 2009-01-23 20:49:38 UTC (rev 2895) @@ -0,0 +1,46 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the TCL src directory. This is used to +# retrieve current source code for the specified package(s). +# +# REVISION: 04-27-08 +# +# NOTES: * Set TVER to the current version of the software. +# +############################################################################### + +TVER=8.5.2 + + +help: + @echo "---------------------------------------------------------------" + @echo "TCL Version: $(TVER)" + @echo "---------------------------------------------------------------" + @echo "make get download the current TCL source code" + @echo "" + @echo "make rename rename downloaded source code file" + @echo "" + @echo "make unpack unpack the TCL source code" + @echo "" + @echo "make clean remove source working directory + @echo "---------------------------------------------------------------" + + +# target get does not work until we can locate an unambiguous download site +# for the TCL source + +get tcl TCL: + wget \ + http://downloads.sourceforge.net/tcl/tcl$(TVER)-src.tar.gz + +rename: + mv tcl$(TVER)-src.tar.gz TCL.$(TVER)-src.tar.gz + clear ; ls + +unpack unpak: TCL.$(TVER)-src.tar.gz + unpak TCL.$(TVER)-src.tar.gz + +clean: + rm -rf tcl${TVER} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 23 21:50:07 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 23 Jan 2009 20:50:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2896] csw/mgar/pkg/cvsps/trunk Message-ID: Revision: 2896 http://gar.svn.sourceforge.net/gar/?rev=2896&view=rev Author: bdwalton Date: 2009-01-23 20:50:07 +0000 (Fri, 23 Jan 2009) Log Message: ----------- - Clean up autoconf patches. - Import gnulib functions for missing things. Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch csw/mgar/pkg/cvsps/trunk/files/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch csw/mgar/pkg/cvsps/trunk/files/0003-add-script-to-do-the-autotools-setup-steps.patch csw/mgar/pkg/cvsps/trunk/files/0004-add-config.h-awareness-to-all-source-files.patch csw/mgar/pkg/cvsps/trunk/files/0005-gnulib-import-of-missing-functions.patch csw/mgar/pkg/cvsps/trunk/files/0006-enabled-imported-gnulib-functions.patch Removed 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 csw/mgar/pkg/cvsps/trunk/files/patch-extralibs.diff Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 20:50:07 UTC (rev 2896) @@ -11,11 +11,12 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWcvsps,) -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 +PATCHFILES = 0001-add-basic-autotools-files.patch +PATCHFILES += 0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch +PATCHFILES += 0003-add-script-to-do-the-autotools-setup-steps.patch +PATCHFILES += 0004-add-config.h-awareness-to-all-source-files.patch +PATCHFILES += 0005-gnulib-import-of-missing-functions.patch +PATCHFILES += 0006-enabled-imported-gnulib-functions.patch PREREQUISITE_PKGS = CSWzlib CSWautomake CSWautoconf @@ -26,18 +27,18 @@ TEST_SCRIPTS = -INSTALL_SCRIPTS = custom +#INSTALL_SCRIPTS = custom include gar/category.mk -pre-configure-isa-i386: +pre-configure-modulated: @echo About to initialize the autotools bits. - @(cd $(WORKSRC_FIRSTMOD); chmod +x autoinit.sh; ./autoinit.sh) + @(cd $(WORKSRC); chmod +x autoinit.sh; ./autoinit.sh) @$(MAKECOOKIE) -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/ +# 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-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,7 +1,8 @@ bde2110ed9f5d14de8f8cb04e9d596fe download/cvsps-2.1.tar.gz cb54db01900320e1bf80da166c60c2f8 download/CSWcvsps.gspec -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 +f1980fbc932203a048a6e5c3cfa1af5b download/0001-add-basic-autotools-files.patch +85b73079daeef9d87b637939e3749489 download/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch +f5d84b7c7a05a44f64f740006df5c349 download/0003-add-script-to-do-the-autotools-setup-steps.patch +78d2f5dc4b1aa496e4f4ea8d2db4bf17 download/0004-add-config.h-awareness-to-all-source-files.patch +58cbd19160b6a98f3c5ff2a8786f0848 download/0005-gnulib-import-of-missing-functions.patch +02c14b029fd57a61fa97cc8209f18d7d download/0006-enabled-imported-gnulib-functions.patch Added: csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0001-add-basic-autotools-files.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,65 @@ +From e6497925a720052265d5854b70a987a48bd07e58 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 17:03:35 +0100 +Subject: [PATCH] add basic autotools files + +--- + Makefile.am | 4 ++++ + configure.ac | 34 ++++++++++++++++++++++++++++++++++ + 2 files changed, 38 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..86de070 +--- /dev/null ++++ b/Makefile.am +@@ -0,0 +1,4 @@ ++bin_PROGRAMS = cvsps ++cvsps_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c ++cvsps_SOURCES += cbtcommon/debug.c cbtcommon/sio.c cbtcommon/text_util.c ++cvsps_SOURCES += cbtcommon/hash.c cbtcommon/tcpsocket.c +diff --git a/configure.ac b/configure.ac +new file mode 100644 +index 0000000..a882782 +--- /dev/null ++++ b/configure.ac +@@ -0,0 +1,34 @@ ++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. ++AC_CHECK_LIB([z], [gzputs]) ++AC_SEARCH_LIBS([gethostbyname], [nsl]) ++AC_SEARCH_LIBS([bind], [socket]) ++ ++# 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 strsep tzset]) ++ ++AC_CONFIG_FILES([Makefile]) ++AC_OUTPUT ++ +-- +1.6.0.5 + Deleted: csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0001-adding-initial-autotools-files.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,62 +0,0 @@ -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-add-modified-autoconf-check_zlib-from-loic-dachary.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0002-add-modified-autoconf-check_zlib-from-loic-dachary.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,96 @@ +From e1f5b581f98abf6ffca50a1a757108e8ebba8f9f Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 18:49:38 +0100 +Subject: [PATCH] add modified autoconf check_zlib from loic dachary + +--- + configure.ac | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- + 1 files changed, 65 insertions(+), 1 deletions(-) + +diff --git a/configure.ac b/configure.ac +index a882782..414c98b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -3,6 +3,70 @@ AC_INIT([cvsps], [2.1]) + AC_CONFIG_SRCDIR([util.h]) + AC_CONFIG_HEADERS([config.h]) + ++ ++# This is a slightly modified version of CHECK_ZLIB as provided under the GPL ++# by Loic Dachary at http://autoconf-archive.cryp.to/check_zlib.html ++# The GPL may be found at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt ++# I am not included the file with this project since the project is not mine. ++# 2009-01-23 ++# -Ben Walton ++ ++#this should be a safe default for most systems that ship a zlib by default. ++ZLIB_HOME=/usr/ ++ ++AC_DEFUN([CHECK_ZLIB], ++# ++# Handle user hints ++# ++[AC_MSG_CHECKING(for zlib) ++AC_ARG_WITH(zlib, ++[ --with-zlib=DIR root directory path of zlib installation [defaults to /usr]], ++[if test "$withval" != no ; then ++ AC_MSG_RESULT($withval) ++ if test -d "$withval" ++ then ++ ZLIB_HOME="$withval" ++ else ++ AC_MSG_ERROR([$withval is not a valid zlib dir.]) ++ fi ++else ++ AC_MSG_ERROR([You can't disable use of zlib]) ++fi]) ++ ++# Locate zlib, if wanted ++if test -n "${ZLIB_HOME}" ++then ++ ZLIB_OLD_LDFLAGS=$LDFLAGS ++ ZLIB_OLD_CPPFLAGS=$LDFLAGS ++ LDFLAGS="$LDFLAGS -L${ZLIB_HOME}/lib" ++ CPPFLAGS="$CPPFLAGS -I${ZLIB_HOME}/include" ++ AC_LANG_SAVE ++ AC_LANG_C ++ AC_CHECK_LIB(z, inflateEnd, [zlib_cv_libz=yes], [zlib_cv_libz=no]) ++ AC_CHECK_HEADER(zlib.h, [zlib_cv_zlib_h=yes], [zlib_cv_zlib_h=no]) ++ AC_LANG_RESTORE ++ if test "$zlib_cv_libz" = "yes" -a "$zlib_cv_zlib_h" = "yes" ++ then ++ # ++ # If both library and header were found, use them ++ # ++ AC_CHECK_LIB(z, inflateEnd) ++ AC_MSG_CHECKING(zlib in ${ZLIB_HOME}) ++ AC_MSG_RESULT(ok) ++ else ++ # ++ # If either header or library was not found, revert and bomb ++ # ++ AC_MSG_CHECKING(zlib in ${ZLIB_HOME}) ++ LDFLAGS="$ZLIB_OLD_LDFLAGS" ++ CPPFLAGS="$ZLIB_OLD_CPPFLAGS" ++ AC_MSG_RESULT(failed) ++ AC_MSG_ERROR(specify a valid zlib installation with --with-zlib=DIR) ++ fi ++fi ++ ++]) ++ + # We're using automake too + AM_INIT_AUTOMAKE(cvsps,2.1) + +@@ -11,7 +75,7 @@ AC_PROG_CC + AC_PROG_INSTALL + + # Checks for libraries. +-AC_CHECK_LIB([z], [gzputs]) ++CHECK_ZLIB() + AC_SEARCH_LIBS([gethostbyname], [nsl]) + AC_SEARCH_LIBS([bind], [socket]) + +-- +1.6.0.5 + Deleted: 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 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0002-adding-script-to-do-the-auto-steps.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,25 +0,0 @@ -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/0003-add-script-to-do-the-autotools-setup-steps.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0003-add-script-to-do-the-autotools-setup-steps.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0003-add-script-to-do-the-autotools-setup-steps.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,25 @@ +From 8c789701ec47444baac8612e1fbf258989b3f1ce Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Thu, 22 Jan 2009 01:54:49 +0100 +Subject: [PATCH] add script to do the autotools setup 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-add-config.h-awareness-to-all-source-files.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0004-add-config.h-awareness-to-all-source-files.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0004-add-config.h-awareness-to-all-source-files.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,204 @@ +From 27703c47440259a4196164fe2016af6a9d2da7ca Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 19:10:58 +0100 +Subject: [PATCH] add config.h awareness to all source files + +--- + cache.c | 4 ++++ + cap.c | 4 ++++ + cbtcommon/debug.c | 4 ++++ + cbtcommon/hash.c | 4 ++++ + cbtcommon/sio.c | 4 ++++ + cbtcommon/tcpsocket.c | 4 ++++ + cbtcommon/text_util.c | 5 +++++ + cvs_direct.c | 4 ++++ + cvsps.c | 4 ++++ + list_sort.c | 4 ++++ + stats.c | 4 ++++ + util.c | 4 ++++ + 12 files changed, 49 insertions(+), 0 deletions(-) + +diff --git a/cache.c b/cache.c +index 4c51cf7..2519684 100644 +--- a/cache.c ++++ b/cache.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cap.c b/cap.c +index a6186f6..0197489 100644 +--- a/cap.c ++++ b/cap.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cbtcommon/debug.c b/cbtcommon/debug.c +index 3f5ac52..b0f818d 100644 +--- a/cbtcommon/debug.c ++++ b/cbtcommon/debug.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cbtcommon/hash.c b/cbtcommon/hash.c +index ddc081b..81a34dc 100644 +--- a/cbtcommon/hash.c ++++ b/cbtcommon/hash.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cbtcommon/sio.c b/cbtcommon/sio.c +index a9faf81..3f70851 100644 +--- a/cbtcommon/sio.c ++++ b/cbtcommon/sio.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + + #ifdef WIN32 +diff --git a/cbtcommon/tcpsocket.c b/cbtcommon/tcpsocket.c +index 27cc13a..ec64bd1 100644 +--- a/cbtcommon/tcpsocket.c ++++ b/cbtcommon/tcpsocket.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #ifdef SOLARIS + #include + #else +diff --git a/cbtcommon/text_util.c b/cbtcommon/text_util.c +index 052a94b..485f0be 100644 +--- a/cbtcommon/text_util.c ++++ b/cbtcommon/text_util.c +@@ -9,6 +9,11 @@ + * @created Fri Nov 6 14:33:29 1998 + * @version $Revision: 1.9 $$Date: 2001/10/25 18:36:11 $ + */ ++ ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cvs_direct.c b/cvs_direct.c +index 920487d..4eb268c 100644 +--- a/cvs_direct.c ++++ b/cvs_direct.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/cvsps.c b/cvsps.c +index 1e64e3c..4f49f22 100644 +--- a/cvsps.c ++++ b/cvsps.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/list_sort.c b/list_sort.c +index 6c6f54c..95ee733 100644 +--- a/list_sort.c ++++ b/list_sort.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include "list_sort.h" +diff --git a/stats.c b/stats.c +index 0276a50..3c3085d 100644 +--- a/stats.c ++++ b/stats.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +diff --git a/util.c b/util.c +index e4b9d14..216c53e 100644 +--- a/util.c ++++ b/util.c +@@ -3,6 +3,10 @@ + * See COPYING file for license information + */ + ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include + #include + #include +-- +1.6.0.5 + Deleted: 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 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0004-make-cvsps.c-aware-of-config.h-from-autoconf.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,25 +0,0 @@ -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 - Deleted: 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 2009-01-23 20:49:38 UTC (rev 2895) +++ csw/mgar/pkg/cvsps/trunk/files/0005-add-autoconf-checks-for-lsocket-lnsl.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -1,30 +0,0 @@ -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/0005-gnulib-import-of-missing-functions.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0005-gnulib-import-of-missing-functions.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0005-gnulib-import-of-missing-functions.patch 2009-01-23 20:50:07 UTC (rev 2896) @@ -0,0 +1,5783 @@ +From bac41c37a9db9aae12ff571ae511c925a03c261a Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 21:35:07 +0100 +Subject: [PATCH] gnulib import of missing functions + +--- + gnulib/Makefile.am | 368 +++++++++++++++++++++++++++ + gnulib/alloca.in.h | 56 ++++ + gnulib/m4/alloca.m4 | 46 ++++ + gnulib/m4/eealloc.m4 | 32 +++ + gnulib/m4/environ.m4 | 36 +++ + gnulib/m4/extensions.m4 | 94 +++++++ + gnulib/m4/gnulib-cache.m4 | 37 +++ + gnulib/m4/gnulib-common.m4 | 110 ++++++++ + gnulib/m4/gnulib-comp.m4 | 224 ++++++++++++++++ + gnulib/m4/gnulib-tool.m4 | 57 ++++ + gnulib/m4/include_next.m4 | 170 +++++++++++++ + gnulib/m4/longlong.m4 | 106 ++++++++ + gnulib/m4/malloca.m4 | 14 + + gnulib/m4/multiarch.m4 | 66 +++++ + gnulib/m4/setenv.m4 | 71 +++++ + gnulib/m4/stdint.m4 | 404 +++++++++++++++++++++++++++++ + gnulib/m4/stdlib_h.m4 | 62 +++++ + gnulib/m4/string_h.m4 | 92 +++++++ + gnulib/m4/strsep.m4 | 24 ++ + gnulib/m4/unistd_h.m4 | 83 ++++++ + gnulib/m4/wchar.m4 | 99 +++++++ + gnulib/m4/wint_t.m4 | 28 ++ + gnulib/malloca.c | 137 ++++++++++ + gnulib/malloca.h | 134 ++++++++++ + gnulib/malloca.valgrind | 7 + + gnulib/setenv.c | 330 ++++++++++++++++++++++++ + gnulib/stdint.in.h | 567 +++++++++++++++++++++++++++++++++++++++++ + gnulib/stdlib.in.h | 377 +++++++++++++++++++++++++++ + gnulib/string.in.h | 605 ++++++++++++++++++++++++++++++++++++++++++++ + gnulib/strsep.c | 58 +++++ + gnulib/unistd.in.h | 582 ++++++++++++++++++++++++++++++++++++++++++ + gnulib/unsetenv.c | 90 +++++++ + gnulib/wchar.in.h | 306 ++++++++++++++++++++++ + link-warning.h | 28 ++ + 34 files changed, 5500 insertions(+), 0 deletions(-) + create mode 100644 gnulib/Makefile.am + create mode 100644 gnulib/alloca.in.h + create mode 100644 gnulib/m4/alloca.m4 + create mode 100644 gnulib/m4/eealloc.m4 + create mode 100644 gnulib/m4/environ.m4 + create mode 100644 gnulib/m4/extensions.m4 + create mode 100644 gnulib/m4/gnulib-cache.m4 + create mode 100644 gnulib/m4/gnulib-common.m4 + create mode 100644 gnulib/m4/gnulib-comp.m4 + create mode 100644 gnulib/m4/gnulib-tool.m4 + create mode 100644 gnulib/m4/include_next.m4 + create mode 100644 gnulib/m4/longlong.m4 + create mode 100644 gnulib/m4/malloca.m4 + create mode 100644 gnulib/m4/multiarch.m4 + create mode 100644 gnulib/m4/setenv.m4 + create mode 100644 gnulib/m4/stdint.m4 + create mode 100644 gnulib/m4/stdlib_h.m4 + create mode 100644 gnulib/m4/string_h.m4 + create mode 100644 gnulib/m4/strsep.m4 + create mode 100644 gnulib/m4/unistd_h.m4 + create mode 100644 gnulib/m4/wchar.m4 + create mode 100644 gnulib/m4/wint_t.m4 + create mode 100644 gnulib/malloca.c + create mode 100644 gnulib/malloca.h + create mode 100644 gnulib/malloca.valgrind + create mode 100644 gnulib/setenv.c + create mode 100644 gnulib/stdint.in.h + create mode 100644 gnulib/stdlib.in.h + create mode 100644 gnulib/string.in.h + create mode 100644 gnulib/strsep.c + create mode 100644 gnulib/unistd.in.h + create mode 100644 gnulib/unsetenv.c + create mode 100644 gnulib/wchar.in.h + create mode 100644 link-warning.h + +diff --git a/gnulib/Makefile.am b/gnulib/Makefile.am +new file mode 100644 +index 0000000..b1ddb97 +--- /dev/null ++++ b/gnulib/Makefile.am +@@ -0,0 +1,368 @@ ++## DO NOT EDIT! GENERATED AUTOMATICALLY! ++## Process this file with automake to produce Makefile.in. ++# Copyright (C) 2002-2009 Free Software Foundation, Inc. ++# ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. ++# ++# Generated by gnulib-tool. ++# Reproduce by: gnulib-tool --import --dir=. --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=. --no-libtool --macro-prefix=gl setenv stdint strsep unsetenv ++ ++AUTOMAKE_OPTIONS = 1.5 gnits ++ ++SUBDIRS = ++noinst_HEADERS = ++noinst_LIBRARIES = ++noinst_LTLIBRARIES = ++EXTRA_DIST = ++BUILT_SOURCES = ++SUFFIXES = ++MOSTLYCLEANFILES = core *.stackdump ++MOSTLYCLEANDIRS = ++CLEANFILES = ++DISTCLEANFILES = ++MAINTAINERCLEANFILES = ++EXTRA_DIST += m4/gnulib-cache.m4 ++ ++AM_CPPFLAGS = ++ ++noinst_LIBRARIES += libgnu.a ++ ++libgnu_a_SOURCES = ++libgnu_a_LIBADD = $(gl_LIBOBJS) ++libgnu_a_DEPENDENCIES = $(gl_LIBOBJS) ++EXTRA_libgnu_a_SOURCES = ++ ++## begin gnulib module alloca-opt ++ ++BUILT_SOURCES += $(ALLOCA_H) ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++alloca.h: alloca.in.h ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ cat $(srcdir)/alloca.in.h; \ ++ } > $@-t ++ mv -f $@-t $@ ++MOSTLYCLEANFILES += alloca.h alloca.h-t ++ ++## end gnulib module alloca-opt ++ ++## begin gnulib module link-warning ++ ++LINK_WARNING_H=$(top_srcdir)/./link-warning.h ++ ++## end gnulib module link-warning ++ ++## begin gnulib module malloca ++ ++libgnu_a_SOURCES += malloca.c ++ ++## end gnulib module malloca ++ ++## begin gnulib module stdint ++ ++BUILT_SOURCES += $(STDINT_H) ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++stdint.h: stdint.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ sed -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ ++ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \ ++ -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \ ++ -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ ++ -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \ ++ -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \ ++ -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ ++ -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \ ++ -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \ ++ -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \ ++ -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \ ++ -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \ ++ -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \ ++ -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \ ++ -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \ ++ -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \ ++ -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \ ++ -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ ++ -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ ++ < $(srcdir)/stdint.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += stdint.h stdint.h-t ++ ++## end gnulib module stdint ++ ++## begin gnulib module stdlib ++ ++BUILT_SOURCES += stdlib.h ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++stdlib.h: stdlib.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ ++ sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \ ++ -e 's|@''GNULIB_MALLOC_POSIX''@|$(GNULIB_MALLOC_POSIX)|g' \ ++ -e 's|@''GNULIB_REALLOC_POSIX''@|$(GNULIB_REALLOC_POSIX)|g' \ ++ -e 's|@''GNULIB_CALLOC_POSIX''@|$(GNULIB_CALLOC_POSIX)|g' \ ++ -e 's|@''GNULIB_ATOLL''@|$(GNULIB_ATOLL)|g' \ ++ -e 's|@''GNULIB_GETLOADAVG''@|$(GNULIB_GETLOADAVG)|g' \ ++ -e 's|@''GNULIB_GETSUBOPT''@|$(GNULIB_GETSUBOPT)|g' \ ++ -e 's|@''GNULIB_MKDTEMP''@|$(GNULIB_MKDTEMP)|g' \ ++ -e 's|@''GNULIB_MKSTEMP''@|$(GNULIB_MKSTEMP)|g' \ ++ -e 's|@''GNULIB_PUTENV''@|$(GNULIB_PUTENV)|g' \ ++ -e 's|@''GNULIB_RANDOM_R''@|$(GNULIB_RANDOM_R)|g' \ ++ -e 's|@''GNULIB_RPMATCH''@|$(GNULIB_RPMATCH)|g' \ ++ -e 's|@''GNULIB_SETENV''@|$(GNULIB_SETENV)|g' \ ++ -e 's|@''GNULIB_STRTOD''@|$(GNULIB_STRTOD)|g' \ ++ -e 's|@''GNULIB_STRTOLL''@|$(GNULIB_STRTOLL)|g' \ ++ -e 's|@''GNULIB_STRTOULL''@|$(GNULIB_STRTOULL)|g' \ ++ -e 's|@''GNULIB_UNSETENV''@|$(GNULIB_UNSETENV)|g' \ ++ -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \ ++ -e 's|@''HAVE_CALLOC_POSIX''@|$(HAVE_CALLOC_POSIX)|g' \ ++ -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \ ++ -e 's|@''HAVE_MALLOC_POSIX''@|$(HAVE_MALLOC_POSIX)|g' \ ++ -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \ ++ -e 's|@''HAVE_REALLOC_POSIX''@|$(HAVE_REALLOC_POSIX)|g' \ ++ -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \ ++ -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \ ++ -e 's|@''HAVE_SETENV''@|$(HAVE_SETENV)|g' \ ++ -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \ ++ -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \ ++ -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \ ++ -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \ ++ -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \ ++ -e 's|@''HAVE_UNSETENV''@|$(HAVE_UNSETENV)|g' \ ++ -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \ ++ -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \ ++ -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \ ++ -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \ ++ -e 's|@''VOID_UNSETENV''@|$(VOID_UNSETENV)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/stdlib.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += stdlib.h stdlib.h-t ++ ++## end gnulib module stdlib ++ ++## begin gnulib module string ++ ++BUILT_SOURCES += string.h ++ ++# We need the following in order to create when the system ++# doesn't have one that works with the given compiler. ++string.h: string.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ ++ sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \ ++ -e 's|@''GNULIB_MBSLEN''@|$(GNULIB_MBSLEN)|g' \ ++ -e 's|@''GNULIB_MBSNLEN''@|$(GNULIB_MBSNLEN)|g' \ ++ -e 's|@''GNULIB_MBSCHR''@|$(GNULIB_MBSCHR)|g' \ ++ -e 's|@''GNULIB_MBSRCHR''@|$(GNULIB_MBSRCHR)|g' \ ++ -e 's|@''GNULIB_MBSSTR''@|$(GNULIB_MBSSTR)|g' \ ++ -e 's|@''GNULIB_MBSCASECMP''@|$(GNULIB_MBSCASECMP)|g' \ ++ -e 's|@''GNULIB_MBSNCASECMP''@|$(GNULIB_MBSNCASECMP)|g' \ ++ -e 's|@''GNULIB_MBSPCASECMP''@|$(GNULIB_MBSPCASECMP)|g' \ ++ -e 's|@''GNULIB_MBSCASESTR''@|$(GNULIB_MBSCASESTR)|g' \ ++ -e 's|@''GNULIB_MBSCSPN''@|$(GNULIB_MBSCSPN)|g' \ ++ -e 's|@''GNULIB_MBSPBRK''@|$(GNULIB_MBSPBRK)|g' \ ++ -e 's|@''GNULIB_MBSSPN''@|$(GNULIB_MBSSPN)|g' \ ++ -e 's|@''GNULIB_MBSSEP''@|$(GNULIB_MBSSEP)|g' \ ++ -e 's|@''GNULIB_MBSTOK_R''@|$(GNULIB_MBSTOK_R)|g' \ ++ -e 's|@''GNULIB_MEMMEM''@|$(GNULIB_MEMMEM)|g' \ ++ -e 's|@''GNULIB_MEMPCPY''@|$(GNULIB_MEMPCPY)|g' \ ++ -e 's|@''GNULIB_MEMRCHR''@|$(GNULIB_MEMRCHR)|g' \ ++ -e 's|@''GNULIB_RAWMEMCHR''@|$(GNULIB_RAWMEMCHR)|g' \ ++ -e 's|@''GNULIB_STPCPY''@|$(GNULIB_STPCPY)|g' \ ++ -e 's|@''GNULIB_STPNCPY''@|$(GNULIB_STPNCPY)|g' \ ++ -e 's|@''GNULIB_STRCHRNUL''@|$(GNULIB_STRCHRNUL)|g' \ ++ -e 's|@''GNULIB_STRDUP''@|$(GNULIB_STRDUP)|g' \ ++ -e 's|@''GNULIB_STRNDUP''@|$(GNULIB_STRNDUP)|g' \ ++ -e 's|@''GNULIB_STRNLEN''@|$(GNULIB_STRNLEN)|g' \ ++ -e 's|@''GNULIB_STRPBRK''@|$(GNULIB_STRPBRK)|g' \ ++ -e 's|@''GNULIB_STRSEP''@|$(GNULIB_STRSEP)|g' \ ++ -e 's|@''GNULIB_STRSTR''@|$(GNULIB_STRSTR)|g' \ ++ -e 's|@''GNULIB_STRCASESTR''@|$(GNULIB_STRCASESTR)|g' \ ++ -e 's|@''GNULIB_STRTOK_R''@|$(GNULIB_STRTOK_R)|g' \ ++ -e 's|@''GNULIB_STRERROR''@|$(GNULIB_STRERROR)|g' \ ++ -e 's|@''GNULIB_STRSIGNAL''@|$(GNULIB_STRSIGNAL)|g' \ ++ -e 's|@''GNULIB_STRVERSCMP''@|$(GNULIB_STRVERSCMP)|g' \ ++ -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \ ++ -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \ ++ -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \ ++ -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \ ++ -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \ ++ -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \ ++ -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \ ++ -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \ ++ -e 's|@''HAVE_STRNDUP''@|$(HAVE_STRNDUP)|g' \ ++ -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \ ++ -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \ ++ -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \ ++ -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \ ++ -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \ ++ -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \ ++ -e 's|@''HAVE_DECL_STRERROR''@|$(HAVE_DECL_STRERROR)|g' \ ++ -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \ ++ -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \ ++ -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ ++ -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \ ++ -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ ++ -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \ ++ -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \ ++ -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/string.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += string.h string.h-t ++ ++## end gnulib module string ++ ++## begin gnulib module unistd ++ ++BUILT_SOURCES += unistd.h ++ ++# We need the following in order to create an empty placeholder for ++# when the system doesn't have one. ++unistd.h: unistd.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ sed -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ ++ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \ ++ -e 's|@''GNULIB_CHOWN''@|$(GNULIB_CHOWN)|g' \ ++ -e 's|@''GNULIB_CLOSE''@|$(GNULIB_CLOSE)|g' \ ++ -e 's|@''GNULIB_DUP2''@|$(GNULIB_DUP2)|g' \ ++ -e 's|@''GNULIB_ENVIRON''@|$(GNULIB_ENVIRON)|g' \ ++ -e 's|@''GNULIB_EUIDACCESS''@|$(GNULIB_EUIDACCESS)|g' \ ++ -e 's|@''GNULIB_FCHDIR''@|$(GNULIB_FCHDIR)|g' \ ++ -e 's|@''GNULIB_FSYNC''@|$(GNULIB_FSYNC)|g' \ ++ -e 's|@''GNULIB_FTRUNCATE''@|$(GNULIB_FTRUNCATE)|g' \ ++ -e 's|@''GNULIB_GETCWD''@|$(GNULIB_GETCWD)|g' \ ++ -e 's|@''GNULIB_GETDOMAINNAME''@|$(GNULIB_GETDOMAINNAME)|g' \ ++ -e 's|@''GNULIB_GETDTABLESIZE''@|$(GNULIB_GETDTABLESIZE)|g' \ ++ -e 's|@''GNULIB_GETHOSTNAME''@|$(GNULIB_GETHOSTNAME)|g' \ ++ -e 's|@''GNULIB_GETLOGIN_R''@|$(GNULIB_GETLOGIN_R)|g' \ ++ -e 's|@''GNULIB_GETPAGESIZE''@|$(GNULIB_GETPAGESIZE)|g' \ ++ -e 's|@''GNULIB_GETUSERSHELL''@|$(GNULIB_GETUSERSHELL)|g' \ ++ -e 's|@''GNULIB_LCHOWN''@|$(GNULIB_LCHOWN)|g' \ ++ -e 's|@''GNULIB_LINK''@|$(GNULIB_LINK)|g' \ ++ -e 's|@''GNULIB_LSEEK''@|$(GNULIB_LSEEK)|g' \ ++ -e 's|@''GNULIB_READLINK''@|$(GNULIB_READLINK)|g' \ ++ -e 's|@''GNULIB_SLEEP''@|$(GNULIB_SLEEP)|g' \ ++ -e 's|@''GNULIB_UNISTD_H_SIGPIPE''@|$(GNULIB_UNISTD_H_SIGPIPE)|g' \ ++ -e 's|@''GNULIB_WRITE''@|$(GNULIB_WRITE)|g' \ ++ -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \ ++ -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \ ++ -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \ ++ -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \ ++ -e 's|@''HAVE_GETDOMAINNAME''@|$(HAVE_GETDOMAINNAME)|g' \ ++ -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \ ++ -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \ ++ -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \ ++ -e 's|@''HAVE_GETUSERSHELL''@|$(HAVE_GETUSERSHELL)|g' \ ++ -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \ ++ -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \ ++ -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \ ++ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ ++ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ ++ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ ++ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ ++ -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ ++ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ ++ -e 's|@''REPLACE_FCHDIR''@|$(REPLACE_FCHDIR)|g' \ ++ -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \ ++ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ ++ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ ++ -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \ ++ -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \ ++ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/unistd.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += unistd.h unistd.h-t ++ ++## end gnulib module unistd ++ ++## begin gnulib module wchar ++ ++BUILT_SOURCES += $(WCHAR_H) ++ ++# We need the following in order to create when the system ++# version does not work standalone. ++wchar.h: wchar.in.h ++ rm -f $@-t $@ ++ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ ++ sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ ++ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ ++ -e 's|@''NEXT_WCHAR_H''@|$(NEXT_WCHAR_H)|g' \ ++ -e 's|@''HAVE_WCHAR_H''@|$(HAVE_WCHAR_H)|g' \ ++ -e 's|@''GNULIB_BTOWC''@|$(GNULIB_BTOWC)|g' \ ++ -e 's|@''GNULIB_WCTOB''@|$(GNULIB_WCTOB)|g' \ ++ -e 's|@''GNULIB_MBSINIT''@|$(GNULIB_MBSINIT)|g' \ ++ -e 's|@''GNULIB_MBRTOWC''@|$(GNULIB_MBRTOWC)|g' \ ++ -e 's|@''GNULIB_MBRLEN''@|$(GNULIB_MBRLEN)|g' \ ++ -e 's|@''GNULIB_MBSRTOWCS''@|$(GNULIB_MBSRTOWCS)|g' \ ++ -e 's|@''GNULIB_MBSNRTOWCS''@|$(GNULIB_MBSNRTOWCS)|g' \ ++ -e 's|@''GNULIB_WCRTOMB''@|$(GNULIB_WCRTOMB)|g' \ ++ -e 's|@''GNULIB_WCSRTOMBS''@|$(GNULIB_WCSRTOMBS)|g' \ ++ -e 's|@''GNULIB_WCSNRTOMBS''@|$(GNULIB_WCSNRTOMBS)|g' \ ++ -e 's|@''GNULIB_WCWIDTH''@|$(GNULIB_WCWIDTH)|g' \ ++ -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \ ++ -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \ ++ -e 's|@''HAVE_MBSINIT''@|$(HAVE_MBSINIT)|g' \ ++ -e 's|@''HAVE_MBRTOWC''@|$(HAVE_MBRTOWC)|g' \ ++ -e 's|@''HAVE_MBRLEN''@|$(HAVE_MBRLEN)|g' \ ++ -e 's|@''HAVE_MBSRTOWCS''@|$(HAVE_MBSRTOWCS)|g' \ ++ -e 's|@''HAVE_MBSNRTOWCS''@|$(HAVE_MBSNRTOWCS)|g' \ ++ -e 's|@''HAVE_WCRTOMB''@|$(HAVE_WCRTOMB)|g' \ ++ -e 's|@''HAVE_WCSRTOMBS''@|$(HAVE_WCSRTOMBS)|g' \ ++ -e 's|@''HAVE_WCSNRTOMBS''@|$(HAVE_WCSNRTOMBS)|g' \ ++ -e 's|@''HAVE_DECL_WCTOB''@|$(HAVE_DECL_WCTOB)|g' \ ++ -e 's|@''HAVE_DECL_WCWIDTH''@|$(HAVE_DECL_WCWIDTH)|g' \ ++ -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \ ++ -e 's|@''REPLACE_BTOWC''@|$(REPLACE_BTOWC)|g' \ ++ -e 's|@''REPLACE_WCTOB''@|$(REPLACE_WCTOB)|g' \ ++ -e 's|@''REPLACE_MBSINIT''@|$(REPLACE_MBSINIT)|g' \ ++ -e 's|@''REPLACE_MBRTOWC''@|$(REPLACE_MBRTOWC)|g' \ ++ -e 's|@''REPLACE_MBRLEN''@|$(REPLACE_MBRLEN)|g' \ ++ -e 's|@''REPLACE_MBSRTOWCS''@|$(REPLACE_MBSRTOWCS)|g' \ ++ -e 's|@''REPLACE_MBSNRTOWCS''@|$(REPLACE_MBSNRTOWCS)|g' \ ++ -e 's|@''REPLACE_WCRTOMB''@|$(REPLACE_WCRTOMB)|g' \ ++ -e 's|@''REPLACE_WCSRTOMBS''@|$(REPLACE_WCSRTOMBS)|g' \ ++ -e 's|@''REPLACE_WCWIDTH''@|$(REPLACE_WCWIDTH)|g' \ ++ -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \ ++ < $(srcdir)/wchar.in.h; \ ++ } > $@-t ++ mv $@-t $@ ++MOSTLYCLEANFILES += wchar.h wchar.h-t ++ ++## end gnulib module wchar ++ ++ ++mostlyclean-local: mostlyclean-generic ++ @for dir in '' $(MOSTLYCLEANDIRS); do \ ++ if test -n "$$dir" && test -d $$dir; then \ ++ echo "rmdir $$dir"; rmdir $$dir; \ ++ fi; \ ++ done; \ ++ : +diff --git a/gnulib/alloca.in.h b/gnulib/alloca.in.h +new file mode 100644 +index 0000000..6269607 +--- /dev/null ++++ b/gnulib/alloca.in.h +@@ -0,0 +1,56 @@ ++/* Memory allocation on the stack. ++ ++ Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software ++ Foundation, Inc. ++ ++ 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, 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. */ ++ ++/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H ++ means there is a real alloca function. */ ++#ifndef _GL_ALLOCA_H ++#define _GL_ALLOCA_H ++ ++/* alloca (N) returns a pointer to N bytes of memory ++ allocated on the stack, which will last until the function returns. ++ Use of alloca should be avoided: ++ - inside arguments of function calls - undefined behaviour, ++ - in inline functions - the allocation may actually last until the ++ calling function returns, ++ - for huge N (say, N >= 65536) - you never know how large (or small) ++ the stack is, and when the stack cannot fulfill the memory allocation ++ request, the program just crashes. ++ */ ++ ++#ifndef alloca ++# ifdef __GNUC__ ++# define alloca __builtin_alloca ++# elif defined _AIX ++# define alloca __alloca ++# elif defined _MSC_VER ++# include ++# define alloca _alloca ++# elif defined __DECC && defined __VMS ++# define alloca __ALLOCA ++# else ++# include ++# ifdef __cplusplus ++extern "C" ++# endif ++void *alloca (size_t); ++# endif ++#endif ++ ++#endif /* _GL_ALLOCA_H */ +diff --git a/gnulib/m4/alloca.m4 b/gnulib/m4/alloca.m4 +new file mode 100644 +index 0000000..4b978e1 +--- /dev/null ++++ b/gnulib/m4/alloca.m4 +@@ -0,0 +1,46 @@ ++# alloca.m4 serial 9 ++dnl Copyright (C) 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_FUNC_ALLOCA], ++[ ++ dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57. ++ AC_REQUIRE([AC_PROG_CPP]) ++ AC_REQUIRE([AC_PROG_EGREP]) ++ ++ AC_REQUIRE([AC_FUNC_ALLOCA]) ++ if test $ac_cv_func_alloca_works = no; then ++ gl_PREREQ_ALLOCA ++ fi ++ ++ # Define an additional variable used in the Makefile substitution. ++ if test $ac_cv_working_alloca_h = yes; then ++ AC_CACHE_CHECK([for alloca as a compiler built-in], [gl_cv_rpl_alloca], [ ++ AC_EGREP_CPP([Need own alloca], [ ++#if defined __GNUC__ || defined _AIX || defined _MSC_VER ++ Need own alloca ++#endif ++ ], [gl_cv_rpl_alloca=yes], [gl_cv_rpl_alloca=no]) ++ ]) ++ if test $gl_cv_rpl_alloca = yes; then ++ dnl OK, alloca can be implemented through a compiler built-in. ++ AC_DEFINE([HAVE_ALLOCA], [1], ++ [Define to 1 if you have 'alloca' after including , ++ a header that may be supplied by this distribution.]) ++ ALLOCA_H=alloca.h ++ else ++ dnl alloca exists as a library function, i.e. it is slow and probably ++ dnl a memory leak. Don't define HAVE_ALLOCA in this case. ++ ALLOCA_H= ++ fi ++ else ++ ALLOCA_H=alloca.h ++ fi ++ AC_SUBST([ALLOCA_H]) ++]) ++ ++# Prerequisites of lib/alloca.c. ++# STACK_DIRECTION is already handled by AC_FUNC_ALLOCA. ++AC_DEFUN([gl_PREREQ_ALLOCA], [:]) +diff --git a/gnulib/m4/eealloc.m4 b/gnulib/m4/eealloc.m4 +new file mode 100644 +index 0000000..3c9c0b5 +--- /dev/null ++++ b/gnulib/m4/eealloc.m4 +@@ -0,0 +1,32 @@ ++# eealloc.m4 serial 2 ++dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_EEALLOC], ++[ ++ AC_REQUIRE([gl_EEMALLOC]) ++ AC_REQUIRE([gl_EEREALLOC]) ++ AC_REQUIRE([AC_C_INLINE]) ++]) ++ ++AC_DEFUN([gl_EEMALLOC], ++[ ++ _AC_FUNC_MALLOC_IF( ++ [gl_cv_func_malloc_0_nonnull=1], ++ [gl_cv_func_malloc_0_nonnull=0]) ++ AC_DEFINE_UNQUOTED([MALLOC_0_IS_NONNULL], [$gl_cv_func_malloc_0_nonnull], ++ [If malloc(0) is != NULL, define this to 1. Otherwise define this ++ to 0.]) ++]) ++ ++AC_DEFUN([gl_EEREALLOC], ++[ ++ _AC_FUNC_REALLOC_IF( ++ [gl_cv_func_realloc_0_nonnull=1], ++ [gl_cv_func_realloc_0_nonnull=0]) ++ AC_DEFINE_UNQUOTED([REALLOC_0_IS_NONNULL], [$gl_cv_func_realloc_0_nonnull], ++ [If realloc(NULL,0) is != NULL, define this to 1. Otherwise define this ++ to 0.]) ++]) +diff --git a/gnulib/m4/environ.m4 b/gnulib/m4/environ.m4 +new file mode 100644 +index 0000000..b17bb60 +--- /dev/null ++++ b/gnulib/m4/environ.m4 +@@ -0,0 +1,36 @@ ++# environ.m4 serial 2 ++dnl Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_ENVIRON], ++[ ++ AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) ++ dnl Persuade glibc to declare environ. ++ AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) ++ gt_CHECK_VAR_DECL([#include ], environ) ++ if test $gt_cv_var_environ_declaration != yes; then ++ HAVE_DECL_ENVIRON=0 ++ fi ++]) ++ ++# Check if a variable is properly declared. ++# gt_CHECK_VAR_DECL(includes,variable) ++AC_DEFUN([gt_CHECK_VAR_DECL], ++[ ++ define([gt_cv_var], [gt_cv_var_]$2[_declaration]) ++ AC_MSG_CHECKING([if $2 is properly declared]) ++ AC_CACHE_VAL([gt_cv_var], [ ++ AC_TRY_COMPILE([$1 ++ extern struct { int foo; } $2;], ++ [$2.foo = 1;], ++ gt_cv_var=no, ++ gt_cv_var=yes)]) ++ AC_MSG_RESULT([$gt_cv_var]) ++ if test $gt_cv_var = yes; then ++ AC_DEFINE([HAVE_]translit($2, [a-z], [A-Z])[_DECL], 1, ++ [Define if you have the declaration of $2.]) ++ fi ++ undefine([gt_cv_var]) ++]) +diff --git a/gnulib/m4/extensions.m4 b/gnulib/m4/extensions.m4 +new file mode 100644 +index 0000000..611fcfd +--- /dev/null ++++ b/gnulib/m4/extensions.m4 +@@ -0,0 +1,94 @@ ++# serial 6 -*- Autoconf -*- ++# Enable extensions on systems that normally disable them. ++ ++# Copyright (C) 2003, 2006-2008 Free Software Foundation, Inc. ++# This file is free software; the Free Software Foundation ++# gives unlimited permission to copy and/or distribute it, ++# with or without modifications, as long as this notice is preserved. ++ ++# This definition of AC_USE_SYSTEM_EXTENSIONS is stolen from CVS ++# Autoconf. Perhaps we can remove this once we can assume Autoconf ++# 2.62 or later everywhere, but since CVS Autoconf mutates rapidly ++# enough in this area it's likely we'll need to redefine ++# AC_USE_SYSTEM_EXTENSIONS for quite some time. ++ ++# AC_USE_SYSTEM_EXTENSIONS ++# ------------------------ ++# Enable extensions on systems that normally disable them, ++# typically due to standards-conformance issues. ++# Remember that #undef in AH_VERBATIM gets replaced with #define by ++# AC_DEFINE. The goal here is to define all known feature-enabling ++# macros, then, if reports of conflicts are made, disable macros that ++# cause problems on some platforms (such as __EXTENSIONS__). ++AC_DEFUN([AC_USE_SYSTEM_EXTENSIONS], ++[AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl ++AC_BEFORE([$0], [AC_RUN_IFELSE])dnl ++ ++ AC_REQUIRE([AC_CANONICAL_HOST]) ++ ++ AC_CHECK_HEADER([minix/config.h], [MINIX=yes], [MINIX=]) ++ if test "$MINIX" = yes; then ++ AC_DEFINE([_POSIX_SOURCE], [1], ++ [Define to 1 if you need to in order for `stat' and other ++ things to work.]) ++ AC_DEFINE([_POSIX_1_SOURCE], [2], ++ [Define to 2 if the system does not provide POSIX.1 features ++ except with this defined.]) ++ AC_DEFINE([_MINIX], [1], ++ [Define to 1 if on MINIX.]) ++ fi ++ ++ dnl HP-UX 11.11 defines mbstate_t only if _XOPEN_SOURCE is defined to 500, ++ dnl regardless of whether the flags -Ae or _D_HPUX_SOURCE=1 are already ++ dnl provided. ++ case "$host_os" in ++ hpux*) ++ AC_DEFINE([_XOPEN_SOURCE], [500], ++ [Define to 500 only on HP-UX.]) ++ ;; ++ esac ++ ++ AH_VERBATIM([__EXTENSIONS__], ++[/* Enable extensions on AIX 3, Interix. */ ++#ifndef _ALL_SOURCE ++# undef _ALL_SOURCE ++#endif ++/* Enable GNU extensions on systems that have them. */ ++#ifndef _GNU_SOURCE ++# undef _GNU_SOURCE ++#endif ++/* Enable threading extensions on Solaris. */ ++#ifndef _POSIX_PTHREAD_SEMANTICS ++# undef _POSIX_PTHREAD_SEMANTICS ++#endif ++/* Enable extensions on HP NonStop. */ ++#ifndef _TANDEM_SOURCE ++# undef _TANDEM_SOURCE ++#endif ++/* Enable general extensions on Solaris. */ ++#ifndef __EXTENSIONS__ ++# undef __EXTENSIONS__ ++#endif ++]) ++ AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__], ++ [ac_cv_safe_to_define___extensions__], ++ [AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([[ ++# define __EXTENSIONS__ 1 ++ ]AC_INCLUDES_DEFAULT])], ++ [ac_cv_safe_to_define___extensions__=yes], ++ [ac_cv_safe_to_define___extensions__=no])]) ++ test $ac_cv_safe_to_define___extensions__ = yes && ++ AC_DEFINE([__EXTENSIONS__]) ++ AC_DEFINE([_ALL_SOURCE]) ++ AC_DEFINE([_GNU_SOURCE]) ++ AC_DEFINE([_POSIX_PTHREAD_SEMANTICS]) ++ AC_DEFINE([_TANDEM_SOURCE]) ++])# AC_USE_SYSTEM_EXTENSIONS ++ ++# gl_USE_SYSTEM_EXTENSIONS ++# ------------------------ ++# Enable extensions on systems that normally disable them, ++# typically due to standards-conformance issues. ++AC_DEFUN([gl_USE_SYSTEM_EXTENSIONS], ++ [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])]) +diff --git a/gnulib/m4/gnulib-cache.m4 b/gnulib/m4/gnulib-cache.m4 +new file mode 100644 +index 0000000..49427a5 +--- /dev/null ++++ b/gnulib/m4/gnulib-cache.m4 +@@ -0,0 +1,37 @@ ++# Copyright (C) 2002-2009 Free Software Foundation, Inc. ++# ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. ++# ++# Generated by gnulib-tool. ++# ++# This file represents the specification of how gnulib-tool is used. ++# It acts as a cache: It is written and read by gnulib-tool. ++# In projects using CVS, this file is meant to be stored in CVS, ++# like the configure.ac and various Makefile.am files. ++ ++ ++# Specification in the form of a command-line invocation: ++# gnulib-tool --import --dir=. --lib=libgnu --source-base=gnulib --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=. --no-libtool --macro-prefix=gl setenv stdint strsep unsetenv ++ ++# Specification in the form of a few gnulib-tool.m4 macro invocations: ++gl_LOCAL_DIR([]) ++gl_MODULES([ ++ setenv ++ stdint ++ strsep ++ unsetenv ++]) ++gl_AVOID([]) ++gl_SOURCE_BASE([gnulib]) ++gl_M4_BASE([gnulib/m4]) ++gl_PO_BASE([]) ++gl_DOC_BASE([doc]) ++gl_TESTS_BASE([tests]) ++gl_LIB([libgnu]) ++gl_MAKEFILE_NAME([]) ++gl_MACRO_PREFIX([gl]) ++gl_PO_DOMAIN([]) +diff --git a/gnulib/m4/gnulib-common.m4 b/gnulib/m4/gnulib-common.m4 +new file mode 100644 +index 0000000..cfd1b99 +--- /dev/null ++++ b/gnulib/m4/gnulib-common.m4 +@@ -0,0 +1,110 @@ ++# gnulib-common.m4 serial 8 ++dnl Copyright (C) 2007-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++# gl_COMMON ++# is expanded unconditionally through gnulib-tool magic. ++AC_DEFUN([gl_COMMON], [ ++ dnl Use AC_REQUIRE here, so that the code is expanded once only. ++ AC_REQUIRE([gl_COMMON_BODY]) ++]) ++AC_DEFUN([gl_COMMON_BODY], [ ++ AH_VERBATIM([isoc99_inline], ++[/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports ++ the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of ++ earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. ++ __APPLE__ && __MACH__ test for MacOS X. ++ __APPLE_CC__ tests for the Apple compiler and its version. ++ __STDC_VERSION__ tests for the C99 mode. */ ++#if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ ++# define __GNUC_STDC_INLINE__ 1 ++#endif]) ++ AH_VERBATIM([unused_parameter], ++[/* Define as a marker that can be attached to function parameter declarations ++ for parameters that are not used. This helps to reduce warnings, such as ++ from GCC -Wunused-parameter. */ ++#if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) ++# define _UNUSED_PARAMETER_ __attribute__ ((__unused__)) ++#else ++# define _UNUSED_PARAMETER_ ++#endif ++]) ++]) ++ ++# gl_MODULE_INDICATOR([modulename]) ++# defines a C macro indicating the presence of the given module. ++AC_DEFUN([gl_MODULE_INDICATOR], ++[ ++ AC_DEFINE([GNULIB_]translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1], ++ [Define to 1 when using the gnulib module ]$1[.]) ++]) ++ ++# m4_foreach_w ++# is a backport of autoconf-2.59c's m4_foreach_w. ++# Remove this macro when we can assume autoconf >= 2.60. ++m4_ifndef([m4_foreach_w], ++ [m4_define([m4_foreach_w], ++ [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])]) ++ ++# AC_PROG_MKDIR_P ++# is a backport of autoconf-2.60's AC_PROG_MKDIR_P. ++# Remove this macro when we can assume autoconf >= 2.60. ++m4_ifdef([AC_PROG_MKDIR_P], [], [ ++ AC_DEFUN([AC_PROG_MKDIR_P], ++ [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake ++ MKDIR_P='$(mkdir_p)' ++ AC_SUBST([MKDIR_P])])]) ++ ++# AC_C_RESTRICT ++# This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61, ++# so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++ ++# works. ++# This definition can be removed once autoconf >= 2.62 can be assumed. ++AC_DEFUN([AC_C_RESTRICT], ++[AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict], ++ [ac_cv_c_restrict=no ++ # The order here caters to the fact that C++ does not require restrict. ++ for ac_kw in __restrict __restrict__ _Restrict restrict; do ++ AC_COMPILE_IFELSE([AC_LANG_PROGRAM( ++ [[typedef int * int_ptr; ++ int foo (int_ptr $ac_kw ip) { ++ return ip[0]; ++ }]], ++ [[int s[1]; ++ int * $ac_kw t = s; ++ t[0] = 0; ++ return foo(t)]])], ++ [ac_cv_c_restrict=$ac_kw]) ++ test "$ac_cv_c_restrict" != no && break ++ done ++ ]) ++ AH_VERBATIM([restrict], ++[/* Define to the equivalent of the C99 'restrict' keyword, or to ++ nothing if this is not supported. Do not define if restrict is ++ supported directly. */ ++#undef restrict ++/* Work around a bug in Sun C++: it does not support _Restrict, even ++ though the corresponding Sun C compiler does, which causes ++ "#define restrict _Restrict" in the previous line. Perhaps some future ++ version of Sun C++ will work with _Restrict; if so, it'll probably ++ define __RESTRICT, just as Sun C does. */ ++#if defined __SUNPRO_CC && !defined __RESTRICT ++# define _Restrict ++#endif]) ++ case $ac_cv_c_restrict in ++ restrict) ;; ++ no) AC_DEFINE([restrict], []) ;; ++ *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;; ++ esac ++]) ++ ++# gl_BIGENDIAN ++# is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd. ++# Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some ++# macros invoke AC_C_BIGENDIAN with arguments. ++AC_DEFUN([gl_BIGENDIAN], ++[ ++ AC_C_BIGENDIAN ++]) +diff --git a/gnulib/m4/gnulib-comp.m4 b/gnulib/m4/gnulib-comp.m4 +new file mode 100644 +index 0000000..1134631 +--- /dev/null ++++ b/gnulib/m4/gnulib-comp.m4 +@@ -0,0 +1,224 @@ ++# DO NOT EDIT! GENERATED AUTOMATICALLY! ++# Copyright (C) 2002-2009 Free Software Foundation, Inc. ++# ++# This file is free software, distributed under the terms of the GNU ++# General Public License. As a special exception to the GNU General ++# Public License, this file may be distributed as part of a program ++# that contains a configuration script generated by Autoconf, under ++# the same distribution terms as the rest of that program. ++# ++# Generated by gnulib-tool. ++# ++# This file represents the compiled summary of the specification in ++# gnulib-cache.m4. It lists the computed macro invocations that need ++# to be invoked from configure.ac. ++# In projects using CVS, this file can be treated like other built files. ++ ++ ++# This macro should be invoked from ./configure.ac, in the section ++# "Checks for programs", right after AC_PROG_CC, and certainly before ++# any checks for libraries, header files, types and library functions. ++AC_DEFUN([gl_EARLY], ++[ ++ m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace ++ m4_pattern_allow([^gl_ES$])dnl a valid locale name ++ m4_pattern_allow([^gl_LIBOBJS$])dnl a variable ++ m4_pattern_allow([^gl_LTLIBOBJS$])dnl a variable ++ AC_REQUIRE([AC_PROG_RANLIB]) ++ AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) ++]) ++ ++# This macro should be invoked from ./configure.ac, in the section ++# "Check for header files, types and library functions". ++AC_DEFUN([gl_INIT], ++[ ++ AM_CONDITIONAL([GL_COND_LIBTOOL], [false]) ++ gl_cond_libtool=false ++ gl_libdeps= ++ gl_ltlibdeps= ++ m4_pushdef([AC_LIBOBJ], m4_defn([gl_LIBOBJ])) ++ m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gl_REPLACE_FUNCS])) ++ m4_pushdef([AC_LIBSOURCES], m4_defn([gl_LIBSOURCES])) ++ m4_pushdef([gl_LIBSOURCES_LIST], []) ++ m4_pushdef([gl_LIBSOURCES_DIR], []) ++ gl_COMMON ++ gl_source_base='gnulib' ++ gl_FUNC_ALLOCA ++ gl_ENVIRON ++ gl_UNISTD_MODULE_INDICATOR([environ]) ++ gl_MALLOCA ++ AC_REQUIRE([gl_MULTIARCH]) ++ gl_FUNC_SETENV ++ gl_STDLIB_MODULE_INDICATOR([setenv]) ++ gl_STDINT_H ++ gl_STDLIB_H ++ gl_HEADER_STRING_H ++ gl_FUNC_STRSEP ++ gl_STRING_MODULE_INDICATOR([strsep]) ++ gl_UNISTD_H ++ gl_FUNC_UNSETENV ++ gl_STDLIB_MODULE_INDICATOR([unsetenv]) ++ gl_WCHAR_H ++ m4_ifval(gl_LIBSOURCES_LIST, [ ++ m4_syscmd([test ! -d ]m4_defn([gl_LIBSOURCES_DIR])[ || ++ for gl_file in ]gl_LIBSOURCES_LIST[ ; do ++ if test ! -r ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file ; then ++ echo "missing file ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file" >&2 ++ exit 1 ++ fi ++ done])dnl ++ m4_if(m4_sysval, [0], [], ++ [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ++ ]) ++ m4_popdef([gl_LIBSOURCES_DIR]) ++ m4_popdef([gl_LIBSOURCES_LIST]) ++ m4_popdef([AC_LIBSOURCES]) ++ m4_popdef([AC_REPLACE_FUNCS]) ++ m4_popdef([AC_LIBOBJ]) ++ AC_CONFIG_COMMANDS_PRE([ ++ gl_libobjs= ++ gl_ltlibobjs= ++ if test -n "$gl_LIBOBJS"; then ++ # Remove the extension. ++ sed_drop_objext='s/\.o$//;s/\.obj$//' ++ for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed "$sed_drop_objext" | sort | uniq`; do ++ gl_libobjs="$gl_libobjs $i.$ac_objext" ++ gl_ltlibobjs="$gl_ltlibobjs $i.lo" ++ done ++ fi ++ AC_SUBST([gl_LIBOBJS], [$gl_libobjs]) ++ AC_SUBST([gl_LTLIBOBJS], [$gl_ltlibobjs]) ++ ]) ++ gltests_libdeps= ++ gltests_ltlibdeps= ++ m4_pushdef([AC_LIBOBJ], m4_defn([gltests_LIBOBJ])) ++ m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gltests_REPLACE_FUNCS])) ++ m4_pushdef([AC_LIBSOURCES], m4_defn([gltests_LIBSOURCES])) ++ m4_pushdef([gltests_LIBSOURCES_LIST], []) ++ m4_pushdef([gltests_LIBSOURCES_DIR], []) ++ gl_COMMON ++ gl_source_base='tests' ++ m4_ifval(gltests_LIBSOURCES_LIST, [ ++ m4_syscmd([test ! -d ]m4_defn([gltests_LIBSOURCES_DIR])[ || ++ for gl_file in ]gltests_LIBSOURCES_LIST[ ; do ++ if test ! -r ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file ; then ++ echo "missing file ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file" >&2 ++ exit 1 ++ fi ++ done])dnl ++ m4_if(m4_sysval, [0], [], ++ [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ++ ]) ++ m4_popdef([gltests_LIBSOURCES_DIR]) ++ m4_popdef([gltests_LIBSOURCES_LIST]) ++ m4_popdef([AC_LIBSOURCES]) ++ m4_popdef([AC_REPLACE_FUNCS]) ++ m4_popdef([AC_LIBOBJ]) ++ AC_CONFIG_COMMANDS_PRE([ ++ gltests_libobjs= ++ gltests_ltlibobjs= ++ if test -n "$gltests_LIBOBJS"; then ++ # Remove the extension. ++ sed_drop_objext='s/\.o$//;s/\.obj$//' ++ for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed "$sed_drop_objext" | sort | uniq`; do ++ gltests_libobjs="$gltests_libobjs $i.$ac_objext" ++ gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" ++ done ++ fi ++ AC_SUBST([gltests_LIBOBJS], [$gltests_libobjs]) ++ AC_SUBST([gltests_LTLIBOBJS], [$gltests_ltlibobjs]) ++ ]) ++ LIBGNU_LIBDEPS="$gl_libdeps" ++ AC_SUBST([LIBGNU_LIBDEPS]) ++ LIBGNU_LTLIBDEPS="$gl_ltlibdeps" ++ AC_SUBST([LIBGNU_LTLIBDEPS]) ++]) ++ ++# Like AC_LIBOBJ, except that the module name goes ++# into gl_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gl_LIBOBJ], [ ++ AS_LITERAL_IF([$1], [gl_LIBSOURCES([$1.c])])dnl ++ gl_LIBOBJS="$gl_LIBOBJS $1.$ac_objext" ++]) ++ ++# Like AC_REPLACE_FUNCS, except that the module name goes ++# into gl_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gl_REPLACE_FUNCS], [ ++ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl ++ AC_CHECK_FUNCS([$1], , [gl_LIBOBJ($ac_func)]) ++]) ++ ++# Like AC_LIBSOURCES, except the directory where the source file is ++# expected is derived from the gnulib-tool parameterization, ++# and alloca is special cased (for the alloca-opt module). ++# We could also entirely rely on EXTRA_lib..._SOURCES. ++AC_DEFUN([gl_LIBSOURCES], [ ++ m4_foreach([_gl_NAME], [$1], [ ++ m4_if(_gl_NAME, [alloca.c], [], [ ++ m4_define([gl_LIBSOURCES_DIR], [gnulib]) ++ m4_append([gl_LIBSOURCES_LIST], _gl_NAME, [ ]) ++ ]) ++ ]) ++]) ++ ++# Like AC_LIBOBJ, except that the module name goes ++# into gltests_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gltests_LIBOBJ], [ ++ AS_LITERAL_IF([$1], [gltests_LIBSOURCES([$1.c])])dnl ++ gltests_LIBOBJS="$gltests_LIBOBJS $1.$ac_objext" ++]) ++ ++# Like AC_REPLACE_FUNCS, except that the module name goes ++# into gltests_LIBOBJS instead of into LIBOBJS. ++AC_DEFUN([gltests_REPLACE_FUNCS], [ ++ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl ++ AC_CHECK_FUNCS([$1], , [gltests_LIBOBJ($ac_func)]) ++]) ++ ++# Like AC_LIBSOURCES, except the directory where the source file is ++# expected is derived from the gnulib-tool parameterization, ++# and alloca is special cased (for the alloca-opt module). ++# We could also entirely rely on EXTRA_lib..._SOURCES. ++AC_DEFUN([gltests_LIBSOURCES], [ ++ m4_foreach([_gl_NAME], [$1], [ ++ m4_if(_gl_NAME, [alloca.c], [], [ ++ m4_define([gltests_LIBSOURCES_DIR], [tests]) ++ m4_append([gltests_LIBSOURCES_LIST], _gl_NAME, [ ]) ++ ]) ++ ]) ++]) ++ ++# This macro records the list of files which have been installed by ++# gnulib-tool and may be removed by future gnulib-tool invocations. ++AC_DEFUN([gl_FILE_LIST], [ ++ build-aux/link-warning.h ++ lib/alloca.in.h ++ lib/malloca.c ++ lib/malloca.h ++ lib/malloca.valgrind ++ lib/setenv.c ++ lib/stdint.in.h ++ lib/stdlib.in.h ++ lib/string.in.h ++ lib/strsep.c ++ lib/unistd.in.h ++ lib/unsetenv.c ++ lib/wchar.in.h ++ m4/alloca.m4 ++ m4/eealloc.m4 ++ m4/environ.m4 ++ m4/extensions.m4 ++ m4/gnulib-common.m4 ++ m4/include_next.m4 ++ m4/longlong.m4 ++ m4/malloca.m4 ++ m4/multiarch.m4 ++ m4/setenv.m4 ++ m4/stdint.m4 ++ m4/stdlib_h.m4 ++ m4/string_h.m4 ++ m4/strsep.m4 ++ m4/unistd_h.m4 ++ m4/wchar.m4 ++ m4/wint_t.m4 ++]) +diff --git a/gnulib/m4/gnulib-tool.m4 b/gnulib/m4/gnulib-tool.m4 +new file mode 100644 +index 0000000..4438d48 +--- /dev/null ++++ b/gnulib/m4/gnulib-tool.m4 +@@ -0,0 +1,57 @@ ++# gnulib-tool.m4 serial 2 ++dnl Copyright (C) 2004-2005 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl The following macros need not be invoked explicitly. ++dnl Invoking them does nothing except to declare default arguments ++dnl for "gnulib-tool --import". ++ ++dnl Usage: gl_LOCAL_DIR([DIR]) ++AC_DEFUN([gl_LOCAL_DIR], []) ++ ++dnl Usage: gl_MODULES([module1 module2 ...]) ++AC_DEFUN([gl_MODULES], []) ++ ++dnl Usage: gl_AVOID([module1 module2 ...]) ++AC_DEFUN([gl_AVOID], []) ++ ++dnl Usage: gl_SOURCE_BASE([DIR]) ++AC_DEFUN([gl_SOURCE_BASE], []) ++ ++dnl Usage: gl_M4_BASE([DIR]) ++AC_DEFUN([gl_M4_BASE], []) ++ ++dnl Usage: gl_PO_BASE([DIR]) ++AC_DEFUN([gl_PO_BASE], []) ++ ++dnl Usage: gl_DOC_BASE([DIR]) ++AC_DEFUN([gl_DOC_BASE], []) ++ ++dnl Usage: gl_TESTS_BASE([DIR]) ++AC_DEFUN([gl_TESTS_BASE], []) ++ ++dnl Usage: gl_WITH_TESTS ++AC_DEFUN([gl_WITH_TESTS], []) ++ ++dnl Usage: gl_LIB([LIBNAME]) ++AC_DEFUN([gl_LIB], []) ++ ++dnl Usage: gl_LGPL or gl_LGPL([VERSION]) ++AC_DEFUN([gl_LGPL], []) ++ ++dnl Usage: gl_MAKEFILE_NAME([FILENAME]) ++AC_DEFUN([gl_MAKEFILE_NAME], []) ++ ++dnl Usage: gl_LIBTOOL ++AC_DEFUN([gl_LIBTOOL], []) ++ ++dnl Usage: gl_MACRO_PREFIX([PREFIX]) ++AC_DEFUN([gl_MACRO_PREFIX], []) ++ ++dnl Usage: gl_PO_DOMAIN([DOMAIN]) ++AC_DEFUN([gl_PO_DOMAIN], []) ++ ++dnl Usage: gl_VC_FILES([BOOLEAN]) ++AC_DEFUN([gl_VC_FILES], []) +diff --git a/gnulib/m4/include_next.m4 b/gnulib/m4/include_next.m4 +new file mode 100644 +index 0000000..062753c +--- /dev/null ++++ b/gnulib/m4/include_next.m4 +@@ -0,0 +1,170 @@ ++# include_next.m4 serial 10 ++dnl Copyright (C) 2006-2008 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl From Paul Eggert and Derek Price. ++ ++dnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER. ++dnl ++dnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to ++dnl 'include' otherwise. ++dnl ++dnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler ++dnl supports it in the special case that it is the first include directive in ++dnl the given file, or to 'include' otherwise. ++dnl ++dnl PRAGMA_SYSTEM_HEADER can be used in files that contain #include_next, ++dnl so as to avoid GCC warnings when the gcc option -pedantic is used. ++dnl '#pragma GCC system_header' has the same effect as if the file was found ++dnl through the include search path specified with '-isystem' options (as ++dnl opposed to the search path specified with '-I' options). Namely, gcc ++dnl does not warn about some things, and on some systems (Solaris and Interix) ++dnl __STDC__ evaluates to 0 instead of to 1. The latter is an undesired side ++dnl effect; we are therefore careful to use 'defined __STDC__' or '1' instead ++dnl of plain '__STDC__'. ++ ++AC_DEFUN([gl_INCLUDE_NEXT], ++[ ++ AC_LANG_PREPROC_REQUIRE() ++ AC_CACHE_CHECK([whether the preprocessor supports include_next], ++ [gl_cv_have_include_next], ++ [rm -rf conftestd1a conftestd1b conftestd2 ++ mkdir conftestd1a conftestd1b conftestd2 ++ dnl The include of is because IBM C 9.0 on AIX 6.1 supports ++ dnl include_next when used as first preprocessor directive in a file, ++ dnl but not when preceded by another include directive. Additionally, ++ dnl with this same compiler, include_next is a no-op when used in a ++ dnl header file that was included by specifying its absolute file name. ++ dnl Despite these two bugs, include_next is used in the compiler's ++ dnl . By virtue of the second bug, we need to use include_next ++ dnl as well in this case. ++ cat < conftestd1a/conftest.h ++#define DEFINED_IN_CONFTESTD1 ++#include_next ++#ifdef DEFINED_IN_CONFTESTD2 ++int foo; ++#else ++#error "include_next doesn't work" ++#endif ++EOF ++ cat < conftestd1b/conftest.h ++#define DEFINED_IN_CONFTESTD1 ++#include ++#include_next ++#ifdef DEFINED_IN_CONFTESTD2 ++int foo; ++#else ++#error "include_next doesn't work" ++#endif ++EOF ++ cat < conftestd2/conftest.h ++#ifndef DEFINED_IN_CONFTESTD1 ++#error "include_next test doesn't work" ++#endif ++#define DEFINED_IN_CONFTESTD2 ++EOF ++ gl_save_CPPFLAGS="$CPPFLAGS" ++ CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2" ++ AC_COMPILE_IFELSE([#include ], ++ [gl_cv_have_include_next=yes], ++ [CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2" ++ AC_COMPILE_IFELSE([#include ], ++ [gl_cv_have_include_next=buggy], ++ [gl_cv_have_include_next=no]) ++ ]) ++ CPPFLAGS="$gl_save_CPPFLAGS" ++ rm -rf conftestd1a conftestd1b conftestd2 ++ ]) ++ PRAGMA_SYSTEM_HEADER= ++ if test $gl_cv_have_include_next = yes; then ++ INCLUDE_NEXT=include_next ++ INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next ++ if test -n "$GCC"; then ++ PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' ++ fi ++ else ++ if test $gl_cv_have_include_next = buggy; then ++ INCLUDE_NEXT=include ++ INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next ++ else ++ INCLUDE_NEXT=include ++ INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include ++ fi ++ fi ++ AC_SUBST([INCLUDE_NEXT]) ++ AC_SUBST([INCLUDE_NEXT_AS_FIRST_DIRECTIVE]) ++ AC_SUBST([PRAGMA_SYSTEM_HEADER]) ++]) ++ ++# gl_CHECK_NEXT_HEADERS(HEADER1 HEADER2 ...) ++# ------------------------------------------ ++# For each arg foo.h, if #include_next works, define NEXT_FOO_H to be ++# ''; otherwise define it to be ++# '"///usr/include/foo.h"', or whatever other absolute file name is suitable. ++# That way, a header file with the following line: ++# #@INCLUDE_NEXT@ @NEXT_FOO_H@ ++# behaves (after sed substitution) as if it contained ++# #include_next ++# even if the compiler does not support include_next. ++# The three "///" are to pacify Sun C 5.8, which otherwise would say ++# "warning: #include of /usr/include/... may be non-portable". ++# Use `""', not `<>', so that the /// cannot be confused with a C99 comment. ++# Note: This macro assumes that the header file is not empty after ++# preprocessing, i.e. it does not only define preprocessor macros but also ++# provides some type/enum definitions or function/variable declarations. ++AC_DEFUN([gl_CHECK_NEXT_HEADERS], ++[ ++ AC_REQUIRE([gl_INCLUDE_NEXT]) ++ AC_REQUIRE([AC_CANONICAL_HOST]) ++ AC_CHECK_HEADERS_ONCE([$1]) ++ ++ m4_foreach_w([gl_HEADER_NAME], [$1], ++ [AS_VAR_PUSHDEF([gl_next_header], ++ [gl_cv_next_]m4_quote(m4_defn([gl_HEADER_NAME]))) ++ if test $gl_cv_have_include_next = yes; then ++ AS_VAR_SET([gl_next_header], ['<'gl_HEADER_NAME'>']) ++ else ++ AC_CACHE_CHECK( ++ [absolute name of <]m4_quote(m4_defn([gl_HEADER_NAME]))[>], ++ m4_quote(m4_defn([gl_next_header])), ++ [AS_VAR_PUSHDEF([gl_header_exists], ++ [ac_cv_header_]m4_quote(m4_defn([gl_HEADER_NAME]))) ++ if test AS_VAR_GET(gl_header_exists) = yes; then ++ AC_LANG_CONFTEST( ++ [AC_LANG_SOURCE( ++ [[#include <]]m4_dquote(m4_defn([gl_HEADER_NAME]))[[>]] ++ )]) ++ dnl AIX "xlc -E" and "cc -E" omit #line directives for header files ++ dnl that contain only a #include of other header files and no ++ dnl non-comment tokens of their own. This leads to a failure to ++ dnl detect the absolute name of , , ++ dnl and others. The workaround is to force preservation of comments ++ dnl through option -C. This ensures all necessary #line directives ++ dnl are present. GCC supports option -C as well. ++ case "$host_os" in ++ aix*) gl_absname_cpp="$ac_cpp -C" ;; ++ *) gl_absname_cpp="$ac_cpp" ;; ++ esac ++ dnl eval is necessary to expand gl_absname_cpp. ++ dnl Ultrix and Pyramid sh refuse to redirect output of eval, ++ dnl so use subshell. ++ AS_VAR_SET([gl_next_header], ++ ['"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | ++ sed -n '\#/]m4_quote(m4_defn([gl_HEADER_NAME]))[#{ ++ s#.*"\(.*/]m4_quote(m4_defn([gl_HEADER_NAME]))[\)".*#\1# ++ s#^/[^/]#//&# ++ p ++ q ++ }'`'"']) ++ else ++ AS_VAR_SET([gl_next_header], ['<'gl_HEADER_NAME'>']) ++ fi ++ AS_VAR_POPDEF([gl_header_exists])]) ++ fi ++ AC_SUBST( ++ AS_TR_CPP([NEXT_]m4_quote(m4_defn([gl_HEADER_NAME]))), ++ [AS_VAR_GET([gl_next_header])]) ++ AS_VAR_POPDEF([gl_next_header])]) ++]) +diff --git a/gnulib/m4/longlong.m4 b/gnulib/m4/longlong.m4 +new file mode 100644 +index 0000000..eedc8d5 +--- /dev/null ++++ b/gnulib/m4/longlong.m4 +@@ -0,0 +1,106 @@ ++# longlong.m4 serial 14 ++dnl Copyright (C) 1999-2007, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl From Paul Eggert. ++ ++# Define HAVE_LONG_LONG_INT if 'long long int' works. ++# This fixes a bug in Autoconf 2.61, but can be removed once we ++# assume 2.62 everywhere. ++ ++# Note: If the type 'long long int' exists but is only 32 bits large ++# (as on some very old compilers), HAVE_LONG_LONG_INT will not be ++# defined. In this case you can treat 'long long int' like 'long int'. ++ ++AC_DEFUN([AC_TYPE_LONG_LONG_INT], ++[ ++ AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int], ++ [AC_LINK_IFELSE( ++ [_AC_TYPE_LONG_LONG_SNIPPET], ++ [dnl This catches a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004. ++ dnl If cross compiling, assume the bug isn't important, since ++ dnl nobody cross compiles for this platform as far as we know. ++ AC_RUN_IFELSE( ++ [AC_LANG_PROGRAM( ++ [[@%:@include ++ @%:@ifndef LLONG_MAX ++ @%:@ define HALF \ ++ (1LL << (sizeof (long long int) * CHAR_BIT - 2)) ++ @%:@ define LLONG_MAX (HALF - 1 + HALF) ++ @%:@endif]], ++ [[long long int n = 1; ++ int i; ++ for (i = 0; ; i++) ++ { ++ long long int m = n << i; ++ if (m >> i != n) ++ return 1; ++ if (LLONG_MAX / 2 < m) ++ break; ++ } ++ return 0;]])], ++ [ac_cv_type_long_long_int=yes], ++ [ac_cv_type_long_long_int=no], ++ [ac_cv_type_long_long_int=yes])], ++ [ac_cv_type_long_long_int=no])]) ++ if test $ac_cv_type_long_long_int = yes; then ++ AC_DEFINE([HAVE_LONG_LONG_INT], [1], ++ [Define to 1 if the system has the type `long long int'.]) ++ fi ++]) ++ ++# Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works. ++# This fixes a bug in Autoconf 2.61, but can be removed once we ++# assume 2.62 everywhere. ++ ++# Note: If the type 'unsigned long long int' exists but is only 32 bits ++# large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT ++# will not be defined. In this case you can treat 'unsigned long long int' ++# like 'unsigned long int'. ++ ++AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT], ++[ ++ AC_CACHE_CHECK([for unsigned long long int], ++ [ac_cv_type_unsigned_long_long_int], ++ [AC_LINK_IFELSE( ++ [_AC_TYPE_LONG_LONG_SNIPPET], ++ [ac_cv_type_unsigned_long_long_int=yes], ++ [ac_cv_type_unsigned_long_long_int=no])]) ++ if test $ac_cv_type_unsigned_long_long_int = yes; then ++ AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1], ++ [Define to 1 if the system has the type `unsigned long long int'.]) ++ fi ++]) ++ ++# Expands to a C program that can be used to test for simultaneous support ++# of 'long long' and 'unsigned long long'. We don't want to say that ++# 'long long' is available if 'unsigned long long' is not, or vice versa, ++# because too many programs rely on the symmetry between signed and unsigned ++# integer types (excluding 'bool'). ++AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET], ++[ ++ AC_LANG_PROGRAM( ++ [[/* For now, do not test the preprocessor; as of 2007 there are too many ++ implementations with broken preprocessors. Perhaps this can ++ be revisited in 2012. In the meantime, code should not expect ++ #if to work with literals wider than 32 bits. */ ++ /* Test literals. */ ++ long long int ll = 9223372036854775807ll; ++ long long int nll = -9223372036854775807LL; ++ unsigned long long int ull = 18446744073709551615ULL; ++ /* Test constant expressions. */ ++ typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll) ++ ? 1 : -1)]; ++ typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1 ++ ? 1 : -1)]; ++ int i = 63;]], ++ [[/* Test availability of runtime routines for shift and division. */ ++ long long int llmax = 9223372036854775807ll; ++ unsigned long long int ullmax = 18446744073709551615ull; ++ return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i) ++ | (llmax / ll) | (llmax % ll) ++ | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i) ++ | (ullmax / ull) | (ullmax % ull));]]) ++]) +diff --git a/gnulib/m4/malloca.m4 b/gnulib/m4/malloca.m4 +new file mode 100644 +index 0000000..2841ae8 +--- /dev/null ++++ b/gnulib/m4/malloca.m4 +@@ -0,0 +1,14 @@ ++# malloca.m4 serial 1 ++dnl Copyright (C) 2003-2004, 2006-2007 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_MALLOCA], ++[ ++ dnl Use the autoconf tests for alloca(), but not the AC_SUBSTed variables ++ dnl @ALLOCA@ and @LTALLOCA at . ++ dnl gl_FUNC_ALLOCA dnl Already brought in by the module dependencies. ++ AC_REQUIRE([gl_EEMALLOC]) ++ AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) ++]) +diff --git a/gnulib/m4/multiarch.m4 b/gnulib/m4/multiarch.m4 +new file mode 100644 +index 0000000..3948e6e +--- /dev/null ++++ b/gnulib/m4/multiarch.m4 +@@ -0,0 +1,66 @@ ++# multiarch.m4 serial 4 ++dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++# Determine whether the compiler is or may be producing universal binaries. ++# ++# On MacOS X 10.5 and later systems, the user can create libraries and ++# executables that work on multiple system types--known as "fat" or ++# "universal" binaries--by specifying multiple '-arch' options to the ++# compiler but only a single '-arch' option to the preprocessor. Like ++# this: ++# ++# ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ ++# CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ ++# CPP="gcc -E" CXXCPP="g++ -E" ++# ++# Detect this situation and set the macro AA_APPLE_UNIVERSAL_BUILD at the ++# beginning of config.h and set APPLE_UNIVERSAL_BUILD accordingly. ++ ++dnl This macro must pass through AC_REQUIRE (never directly invoke it). ++AC_DEFUN_ONCE([gl_MULTIARCH], ++[ ++ dnl Code similar to autoconf-2.63 AC_C_BIGENDIAN. ++ gl_cv_c_multiarch=no ++ AC_COMPILE_IFELSE( ++ [AC_LANG_SOURCE( ++ [[#ifndef __APPLE_CC__ ++ not a universal capable compiler ++ #endif ++ typedef int dummy; ++ ]])], ++ [ ++ dnl Check for potential -arch flags. It is not universal unless ++ dnl there are at least two -arch flags with different values. ++ arch= ++ prev= ++ for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do ++ if test -n "$prev"; then ++ case $word in ++ i?86 | x86_64 | ppc | ppc64) ++ if test -z "$arch" || test "$arch" = "$word"; then ++ arch="$word" ++ else ++ gl_cv_c_multiarch=yes ++ fi ++ ;; ++ esac ++ prev= ++ else ++ if test "x$word" = "x-arch"; then ++ prev=arch ++ fi ++ fi ++ done ++ ]) ++ if test $gl_cv_c_multiarch = yes; then ++ AC_DEFINE([AA_APPLE_UNIVERSAL_BUILD], [1], ++ [Define if the compiler is building for multiple architectures of Apple platforms at once.]) ++ APPLE_UNIVERSAL_BUILD=1 ++ else ++ APPLE_UNIVERSAL_BUILD=0 ++ fi ++ AC_SUBST([APPLE_UNIVERSAL_BUILD]) ++]) +diff --git a/gnulib/m4/setenv.m4 b/gnulib/m4/setenv.m4 +new file mode 100644 +index 0000000..e28407e +--- /dev/null ++++ b/gnulib/m4/setenv.m4 +@@ -0,0 +1,71 @@ ++# setenv.m4 serial 11 ++dnl Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_FUNC_SETENV], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ AC_CHECK_FUNCS_ONCE([setenv]) ++ if test $ac_cv_func_setenv = no; then ++ HAVE_SETENV=0 ++ AC_LIBOBJ([setenv]) ++ gl_PREREQ_SETENV ++ fi ++]) ++ ++# Like gl_FUNC_SETENV, except prepare for separate compilation (no AC_LIBOBJ). ++AC_DEFUN([gl_FUNC_SETENV_SEPARATE], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ AC_CHECK_FUNCS_ONCE([setenv]) ++ if test $ac_cv_func_setenv = no; then ++ HAVE_SETENV=0 ++ fi ++ gl_PREREQ_SETENV ++]) ++ ++AC_DEFUN([gl_FUNC_UNSETENV], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ AC_CHECK_FUNCS([unsetenv]) ++ if test $ac_cv_func_unsetenv = no; then ++ HAVE_UNSETENV=0 ++ AC_LIBOBJ([unsetenv]) ++ gl_PREREQ_UNSETENV ++ else ++ AC_CACHE_CHECK([for unsetenv() return type], [gt_cv_func_unsetenv_ret], ++ [AC_TRY_COMPILE([#include ++extern ++#ifdef __cplusplus ++"C" ++#endif ++#if defined(__STDC__) || defined(__cplusplus) ++int unsetenv (const char *name); ++#else ++int unsetenv(); ++#endif ++], , gt_cv_func_unsetenv_ret='int', gt_cv_func_unsetenv_ret='void')]) ++ if test $gt_cv_func_unsetenv_ret = 'void'; then ++ VOID_UNSETENV=1 ++ fi ++ fi ++]) ++ ++# Prerequisites of lib/setenv.c. ++AC_DEFUN([gl_PREREQ_SETENV], ++[ ++ AC_REQUIRE([AC_FUNC_ALLOCA]) ++ AC_REQUIRE([gl_ENVIRON]) ++ AC_CHECK_HEADERS_ONCE([unistd.h]) ++ AC_CHECK_HEADERS([search.h]) ++ AC_CHECK_FUNCS([tsearch]) ++]) ++ ++# Prerequisites of lib/unsetenv.c. ++AC_DEFUN([gl_PREREQ_UNSETENV], ++[ ++ AC_REQUIRE([gl_ENVIRON]) ++ AC_CHECK_HEADERS_ONCE([unistd.h]) ++]) +diff --git a/gnulib/m4/stdint.m4 b/gnulib/m4/stdint.m4 +new file mode 100644 +index 0000000..b4194c8 +--- /dev/null ++++ b/gnulib/m4/stdint.m4 +@@ -0,0 +1,404 @@ ++# stdint.m4 serial 33 ++dnl Copyright (C) 2001-2009 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++dnl From Paul Eggert and Bruno Haible. ++dnl Test whether is supported or must be substituted. ++ ++AC_DEFUN([gl_STDINT_H], ++[ ++ AC_PREREQ([2.59])dnl ++ ++ dnl Check for long long int and unsigned long long int. ++ AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) ++ if test $ac_cv_type_long_long_int = yes; then ++ HAVE_LONG_LONG_INT=1 ++ else ++ HAVE_LONG_LONG_INT=0 ++ fi ++ AC_SUBST([HAVE_LONG_LONG_INT]) ++ AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT]) ++ if test $ac_cv_type_unsigned_long_long_int = yes; then ++ HAVE_UNSIGNED_LONG_LONG_INT=1 ++ else ++ HAVE_UNSIGNED_LONG_LONG_INT=0 ++ fi ++ AC_SUBST([HAVE_UNSIGNED_LONG_LONG_INT]) ++ ++ dnl Check for . ++ dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_inttypes_h. ++ if test $ac_cv_header_inttypes_h = yes; then ++ HAVE_INTTYPES_H=1 ++ else ++ HAVE_INTTYPES_H=0 ++ fi ++ AC_SUBST([HAVE_INTTYPES_H]) ++ ++ dnl Check for . ++ dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_sys_types_h. ++ if test $ac_cv_header_sys_types_h = yes; then ++ HAVE_SYS_TYPES_H=1 ++ else ++ HAVE_SYS_TYPES_H=0 ++ fi ++ AC_SUBST([HAVE_SYS_TYPES_H]) ++ ++ gl_CHECK_NEXT_HEADERS([stdint.h]) ++ if test $ac_cv_header_stdint_h = yes; then ++ HAVE_STDINT_H=1 ++ else ++ HAVE_STDINT_H=0 ++ fi ++ AC_SUBST([HAVE_STDINT_H]) ++ ++ dnl Now see whether we need a substitute . ++ if test $ac_cv_header_stdint_h = yes; then ++ AC_CACHE_CHECK([whether stdint.h conforms to C99], ++ [gl_cv_header_working_stdint_h], ++ [gl_cv_header_working_stdint_h=no ++ AC_COMPILE_IFELSE([ ++ AC_LANG_PROGRAM([[ ++#define __STDC_LIMIT_MACROS 1 /* to make it work also in C++ mode */ ++#define __STDC_CONSTANT_MACROS 1 /* to make it work also in C++ mode */ ++#define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ ++#include ++/* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in . */ ++#if !(defined WCHAR_MIN && defined WCHAR_MAX) ++#error "WCHAR_MIN, WCHAR_MAX not defined in " ++#endif ++] ++gl_STDINT_INCLUDES ++[ ++#ifdef INT8_MAX ++int8_t a1 = INT8_MAX; ++int8_t a1min = INT8_MIN; ++#endif ++#ifdef INT16_MAX ++int16_t a2 = INT16_MAX; ++int16_t a2min = INT16_MIN; ++#endif ++#ifdef INT32_MAX ++int32_t a3 = INT32_MAX; ++int32_t a3min = INT32_MIN; ++#endif ++#ifdef INT64_MAX ++int64_t a4 = INT64_MAX; ++int64_t a4min = INT64_MIN; ++#endif ++#ifdef UINT8_MAX ++uint8_t b1 = UINT8_MAX; ++#else ++typedef int b1[(unsigned char) -1 != 255 ? 1 : -1]; ++#endif ++#ifdef UINT16_MAX ++uint16_t b2 = UINT16_MAX; ++#endif ++#ifdef UINT32_MAX ++uint32_t b3 = UINT32_MAX; ++#endif ++#ifdef UINT64_MAX ++uint64_t b4 = UINT64_MAX; ++#endif ++int_least8_t c1 = INT8_C (0x7f); ++int_least8_t c1max = INT_LEAST8_MAX; ++int_least8_t c1min = INT_LEAST8_MIN; ++int_least16_t c2 = INT16_C (0x7fff); ++int_least16_t c2max = INT_LEAST16_MAX; ++int_least16_t c2min = INT_LEAST16_MIN; ++int_least32_t c3 = INT32_C (0x7fffffff); ++int_least32_t c3max = INT_LEAST32_MAX; ++int_least32_t c3min = INT_LEAST32_MIN; ++int_least64_t c4 = INT64_C (0x7fffffffffffffff); ++int_least64_t c4max = INT_LEAST64_MAX; ++int_least64_t c4min = INT_LEAST64_MIN; ++uint_least8_t d1 = UINT8_C (0xff); ++uint_least8_t d1max = UINT_LEAST8_MAX; ++uint_least16_t d2 = UINT16_C (0xffff); ++uint_least16_t d2max = UINT_LEAST16_MAX; ++uint_least32_t d3 = UINT32_C (0xffffffff); ++uint_least32_t d3max = UINT_LEAST32_MAX; ++uint_least64_t d4 = UINT64_C (0xffffffffffffffff); ++uint_least64_t d4max = UINT_LEAST64_MAX; ++int_fast8_t e1 = INT_FAST8_MAX; ++int_fast8_t e1min = INT_FAST8_MIN; ++int_fast16_t e2 = INT_FAST16_MAX; ++int_fast16_t e2min = INT_FAST16_MIN; ++int_fast32_t e3 = INT_FAST32_MAX; ++int_fast32_t e3min = INT_FAST32_MIN; ++int_fast64_t e4 = INT_FAST64_MAX; ++int_fast64_t e4min = INT_FAST64_MIN; ++uint_fast8_t f1 = UINT_FAST8_MAX; ++uint_fast16_t f2 = UINT_FAST16_MAX; ++uint_fast32_t f3 = UINT_FAST32_MAX; ++uint_fast64_t f4 = UINT_FAST64_MAX; ++#ifdef INTPTR_MAX ++intptr_t g = INTPTR_MAX; ++intptr_t gmin = INTPTR_MIN; ++#endif ++#ifdef UINTPTR_MAX ++uintptr_t h = UINTPTR_MAX; ++#endif ++intmax_t i = INTMAX_MAX; ++uintmax_t j = UINTMAX_MAX; ++ ++#include /* for CHAR_BIT */ ++#define TYPE_MINIMUM(t) \ ++ ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1))) ++#define TYPE_MAXIMUM(t) \ ++ ((t) ((t) 0 < (t) -1 ? (t) -1 : ~ (~ (t) 0 << (sizeof (t) * CHAR_BIT - 1)))) ++struct s { ++ int check_PTRDIFF: ++ PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t) ++ && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t) ++ ? 1 : -1; ++ /* Detect bug in FreeBSD 6.0 / ia64. */ ++ int check_SIG_ATOMIC: ++ SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t) ++ && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t) ++ ? 1 : -1; ++ int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1; ++ int check_WCHAR: ++ WCHAR_MIN == TYPE_MINIMUM (wchar_t) ++ && WCHAR_MAX == TYPE_MAXIMUM (wchar_t) ++ ? 1 : -1; ++ /* Detect bug in mingw. */ ++ int check_WINT: ++ WINT_MIN == TYPE_MINIMUM (wint_t) ++ && WINT_MAX == TYPE_MAXIMUM (wint_t) ++ ? 1 : -1; ++ ++ /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */ ++ int check_UINT8_C: ++ (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1; ++ int check_UINT16_C: ++ (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1; ++ ++ /* Detect bugs in OpenBSD 3.9 stdint.h. */ ++#ifdef UINT8_MAX ++ int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1; ++#endif ++#ifdef UINT16_MAX ++ int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1; ++#endif ++#ifdef UINT32_MAX ++ int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1; ++#endif ++#ifdef UINT64_MAX ++ int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1; ++#endif ++ int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1; ++ int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1; ++ int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1; ++ int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1; ++ int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1; ++ int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1; ++ int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1; ++ int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1; ++ int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1; ++ int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1; ++ int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1; ++}; ++ ]])], ++ [gl_cv_header_working_stdint_h=yes])]) ++ fi ++ if test "$gl_cv_header_working_stdint_h" = yes; then ++ STDINT_H= ++ else ++ dnl Check for , and for ++ dnl (used in Linux libc4 >= 4.6.7 and libc5). ++ AC_CHECK_HEADERS([sys/inttypes.h sys/bitypes.h]) ++ if test $ac_cv_header_sys_inttypes_h = yes; then ++ HAVE_SYS_INTTYPES_H=1 ++ else ++ HAVE_SYS_INTTYPES_H=0 ++ fi ++ AC_SUBST([HAVE_SYS_INTTYPES_H]) ++ if test $ac_cv_header_sys_bitypes_h = yes; then ++ HAVE_SYS_BITYPES_H=1 ++ else ++ HAVE_SYS_BITYPES_H=0 ++ fi ++ AC_SUBST([HAVE_SYS_BITYPES_H]) ++ ++ dnl Check for (missing in Linux uClibc when built without wide ++ dnl character support). ++ AC_CHECK_HEADERS_ONCE([wchar.h]) ++ ++ gl_STDINT_TYPE_PROPERTIES ++ STDINT_H=stdint.h ++ fi ++ AC_SUBST([STDINT_H]) ++]) ++ ++dnl gl_STDINT_BITSIZEOF(TYPES, INCLUDES) ++dnl Determine the size of each of the given types in bits. ++AC_DEFUN([gl_STDINT_BITSIZEOF], ++[ ++ dnl Use a shell loop, to avoid bloating configure, and ++ dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into ++ dnl config.h.in, ++ dnl - extra AC_SUBST calls, so that the right substitutions are made. ++ m4_foreach_w([gltype], [$1], ++ [AH_TEMPLATE([BITSIZEOF_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]), ++ [Define to the number of bits in type ']gltype['.])]) ++ for gltype in $1 ; do ++ AC_CACHE_CHECK([for bit size of $gltype], [gl_cv_bitsizeof_${gltype}], ++ [AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT], ++ [$2 ++#include ], [result=unknown]) ++ eval gl_cv_bitsizeof_${gltype}=\$result ++ ]) ++ eval result=\$gl_cv_bitsizeof_${gltype} ++ if test $result = unknown; then ++ dnl Use a nonempty default, because some compilers, such as IRIX 5 cc, ++ dnl do a syntax check even on unused #if conditions and give an error ++ dnl on valid C code like this: ++ dnl #if 0 ++ dnl # if > 32 ++ dnl # endif ++ dnl #endif ++ result=0 ++ fi ++ GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` ++ AC_DEFINE_UNQUOTED([BITSIZEOF_${GLTYPE}], [$result]) ++ eval BITSIZEOF_${GLTYPE}=\$result ++ done ++ m4_foreach_w([gltype], [$1], ++ [AC_SUBST([BITSIZEOF_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))]) ++]) ++ ++dnl gl_CHECK_TYPES_SIGNED(TYPES, INCLUDES) ++dnl Determine the signedness of each of the given types. ++dnl Define HAVE_SIGNED_TYPE if type is signed. ++AC_DEFUN([gl_CHECK_TYPES_SIGNED], ++[ ++ dnl Use a shell loop, to avoid bloating configure, and ++ dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into ++ dnl config.h.in, ++ dnl - extra AC_SUBST calls, so that the right substitutions are made. ++ m4_foreach_w([gltype], [$1], ++ [AH_TEMPLATE([HAVE_SIGNED_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]), ++ [Define to 1 if ']gltype[' is a signed integer type.])]) ++ for gltype in $1 ; do ++ AC_CACHE_CHECK([whether $gltype is signed], [gl_cv_type_${gltype}_signed], ++ [AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([$2[ ++ int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];]])], ++ result=yes, result=no) ++ eval gl_cv_type_${gltype}_signed=\$result ++ ]) ++ eval result=\$gl_cv_type_${gltype}_signed ++ GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` ++ if test "$result" = yes; then ++ AC_DEFINE_UNQUOTED([HAVE_SIGNED_${GLTYPE}], [1]) ++ eval HAVE_SIGNED_${GLTYPE}=1 ++ else ++ eval HAVE_SIGNED_${GLTYPE}=0 ++ fi ++ done ++ m4_foreach_w([gltype], [$1], ++ [AC_SUBST([HAVE_SIGNED_]translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))]) ++]) ++ ++dnl gl_INTEGER_TYPE_SUFFIX(TYPES, INCLUDES) ++dnl Determine the suffix to use for integer constants of the given types. ++dnl Define t_SUFFIX for each such type. ++AC_DEFUN([gl_INTEGER_TYPE_SUFFIX], ++[ ++ dnl Use a shell loop, to avoid bloating configure, and ++ dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into ++ dnl config.h.in, ++ dnl - extra AC_SUBST calls, so that the right substitutions are made. ++ m4_foreach_w([gltype], [$1], ++ [AH_TEMPLATE(translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX], ++ [Define to l, ll, u, ul, ull, etc., as suitable for ++ constants of type ']gltype['.])]) ++ for gltype in $1 ; do ++ AC_CACHE_CHECK([for $gltype integer literal suffix], ++ [gl_cv_type_${gltype}_suffix], ++ [eval gl_cv_type_${gltype}_suffix=no ++ eval result=\$gl_cv_type_${gltype}_signed ++ if test "$result" = yes; then ++ glsufu= ++ else ++ glsufu=u ++ fi ++ for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do ++ case $glsuf in ++ '') gltype1='int';; ++ l) gltype1='long int';; ++ ll) gltype1='long long int';; ++ i64) gltype1='__int64';; ++ u) gltype1='unsigned int';; ++ ul) gltype1='unsigned long int';; ++ ull) gltype1='unsigned long long int';; ++ ui64)gltype1='unsigned __int64';; ++ esac ++ AC_COMPILE_IFELSE( ++ [AC_LANG_PROGRAM([$2[ ++ extern $gltype foo; ++ extern $gltype1 foo;]])], ++ [eval gl_cv_type_${gltype}_suffix=\$glsuf]) ++ eval result=\$gl_cv_type_${gltype}_suffix ++ test "$result" != no && break ++ done]) ++ GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` ++ eval result=\$gl_cv_type_${gltype}_suffix ++ test "$result" = no && result= ++ eval ${GLTYPE}_SUFFIX=\$result ++ AC_DEFINE_UNQUOTED([${GLTYPE}_SUFFIX], [$result]) ++ done ++ m4_foreach_w([gltype], [$1], ++ [AC_SUBST(translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX])]) ++]) ++ ++dnl gl_STDINT_INCLUDES ++AC_DEFUN([gl_STDINT_INCLUDES], ++[[ ++ /* BSD/OS 4.0.1 has a bug: , and must be ++ included before . */ ++ #include ++ #include ++ #if HAVE_WCHAR_H ++ # include ++ # include ++ # include ++ #endif ++]]) ++ ++dnl gl_STDINT_TYPE_PROPERTIES ++dnl Compute HAVE_SIGNED_t, BITSIZEOF_t and t_SUFFIX, for all the types t ++dnl of interest to stdint.in.h. ++AC_DEFUN([gl_STDINT_TYPE_PROPERTIES], ++[ ++ AC_REQUIRE([gl_MULTIARCH]) ++ if test $APPLE_UNIVERSAL_BUILD = 0; then ++ gl_STDINT_BITSIZEOF([ptrdiff_t size_t], ++ [gl_STDINT_INCLUDES]) ++ fi ++ gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t], ++ [gl_STDINT_INCLUDES]) ++ gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t], ++ [gl_STDINT_INCLUDES]) ++ gl_cv_type_ptrdiff_t_signed=yes ++ gl_cv_type_size_t_signed=no ++ if test $APPLE_UNIVERSAL_BUILD = 0; then ++ gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t], ++ [gl_STDINT_INCLUDES]) ++ fi ++ gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t], ++ [gl_STDINT_INCLUDES]) ++]) ++ ++dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in. ++dnl Remove this when we can assume autoconf >= 2.61. ++m4_ifdef([AC_COMPUTE_INT], [], [ ++ AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])]) ++]) ++ ++# Hey Emacs! ++# Local Variables: ++# indent-tabs-mode: nil ++# End: +diff --git a/gnulib/m4/stdlib_h.m4 b/gnulib/m4/stdlib_h.m4 +new file mode 100644 +index 0000000..582db13 +--- /dev/null ++++ b/gnulib/m4/stdlib_h.m4 +@@ -0,0 +1,62 @@ ++# stdlib_h.m4 serial 13 ++dnl Copyright (C) 2007, 2008 Free Software Foundation, Inc. ++dnl This file is free software; the Free Software Foundation ++dnl gives unlimited permission to copy and/or distribute it, ++dnl with or without modifications, as long as this notice is preserved. ++ ++AC_DEFUN([gl_STDLIB_H], ++[ ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ gl_CHECK_NEXT_HEADERS([stdlib.h]) ++ AC_CHECK_TYPES([struct random_data], ++ [], [HAVE_STRUCT_RANDOM_DATA=0], ++ [[#include ]]) ++]) ++ ++AC_DEFUN([gl_STDLIB_MODULE_INDICATOR], ++[ ++ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. ++ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) ++ GNULIB_[]m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])=1 ++]) ++ ++AC_DEFUN([gl_STDLIB_H_DEFAULTS], ++[ ++ GNULIB_MALLOC_POSIX=0; AC_SUBST([GNULIB_MALLOC_POSIX]) ++ GNULIB_REALLOC_POSIX=0; AC_SUBST([GNULIB_REALLOC_POSIX]) ++ GNULIB_CALLOC_POSIX=0; AC_SUBST([GNULIB_CALLOC_POSIX]) ++ GNULIB_ATOLL=0; AC_SUBST([GNULIB_ATOLL]) ++ GNULIB_GETLOADAVG=0; AC_SUBST([GNULIB_GETLOADAVG]) ++ GNULIB_GETSUBOPT=0; AC_SUBST([GNULIB_GETSUBOPT]) ++ GNULIB_MKDTEMP=0; AC_SUBST([GNULIB_MKDTEMP]) ++ GNULIB_MKSTEMP=0; AC_SUBST([GNULIB_MKSTEMP]) ++ GNULIB_PUTENV=0; AC_SUBST([GNULIB_PUTENV]) ++ GNULIB_RANDOM_R=0; AC_SUBST([GNULIB_RANDOM_R]) ++ GNULIB_RPMATCH=0; AC_SUBST([GNULIB_RPMATCH]) ++ GNULIB_SETENV=0; AC_SUBST([GNULIB_SETENV]) ++ GNULIB_STRTOD=0; AC_SUBST([GNULIB_STRTOD]) ++ GNULIB_STRTOLL=0; AC_SUBST([GNULIB_STRTOLL]) ++ GNULIB_STRTOULL=0; AC_SUBST([GNULIB_STRTOULL]) ++ GNULIB_UNSETENV=0; AC_SUBST([GNULIB_UNSETENV]) ++ dnl Assume proper GNU behavior unless another module says otherwise. ++ HAVE_ATOLL=1; AC_SUBST([HAVE_ATOLL]) ++ HAVE_CALLOC_POSIX=1; AC_SUBST([HAVE_CALLOC_POSIX]) ++ HAVE_GETSUBOPT=1; AC_SUBST([HAVE_GETSUBOPT]) ++ HAVE_MALLOC_POSIX=1; AC_SUBST([HAVE_MALLOC_POSIX]) ++ HAVE_MKDTEMP=1; AC_SUBST([HAVE_MKDTEMP]) ++ HAVE_REALLOC_POSIX=1; AC_SUBST([HAVE_REALLOC_POSIX]) ++ HAVE_RANDOM_R=1; AC_SUBST([HAVE_RANDOM_R]) ++ HAVE_RPMATCH=1; AC_SUBST([HAVE_RPMATCH]) ++ HAVE_SETENV=1; AC_SUBST([HAVE_SETENV]) ++ HAVE_STRTOD=1; AC_SUBST([HAVE_STRTOD]) ++ HAVE_STRTOLL=1; AC_SUBST([HAVE_STRTOLL]) ++ HAVE_STRTOULL=1; AC_SUBST([HAVE_STRTOULL]) ++ HAVE_STRUCT_RANDOM_DATA=1; AC_SUBST([HAVE_STRUCT_RANDOM_DATA]) ++ HAVE_SYS_LOADAVG_H=0; AC_SUBST([HAVE_SYS_LOADAVG_H]) ++ HAVE_UNSETENV=1; AC_SUBST([HAVE_UNSETENV]) ++ HAVE_DECL_GETLOADAVG=1; AC_SUBST([HAVE_DECL_GETLOADAVG]) ++ REPLACE_MKSTEMP=0; AC_SUBST([REPLACE_MKSTEMP]) ++ REPLACE_PUTENV=0; AC_SUBST([REPLACE_PUTENV]) ++ REPLACE_STRTOD=0; AC_SUBST([REPLACE_STRTOD]) ++ VOID_UNSETENV=0; AC_SUBST([VOID_UNSETENV]) ++]) +diff --git a/gnulib/m4/string_h.m4 b/gnulib/m4/string_h.m4 +new file mode 100644 +index 0000000..2d5553c +--- /dev/null ++++ b/gnulib/m4/string_h.m4 +@@ -0,0 +1,92 @@ @@ 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 23 21:55:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 20:55:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2897] csw/mgar/pkg/tk/trunk Message-ID: Revision: 2897 http://gar.svn.sourceforge.net/gar/?rev=2897&view=rev Author: dmichelsen Date: 2009-01-23 20:55:31 +0000 (Fri, 23 Jan 2009) Log Message: ----------- tk: Add legacy build instructions Modified Paths: -------------- csw/mgar/pkg/tk/trunk/Makefile csw/mgar/pkg/tk/trunk/checksums Added Paths: ----------- csw/mgar/pkg/tk/trunk/files/CSWtk.gspec csw/mgar/pkg/tk/trunk/legacy/ csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES csw/mgar/pkg/tk/trunk/legacy/README csw/mgar/pkg/tk/trunk/legacy/copyright csw/mgar/pkg/tk/trunk/legacy/depend csw/mgar/pkg/tk/trunk/legacy/pkginfo csw/mgar/pkg/tk/trunk/legacy/prototype csw/mgar/pkg/tk/trunk/legacy/src/ csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure csw/mgar/pkg/tk/trunk/legacy/src/Makefile Removed Paths: ------------- csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec Modified: csw/mgar/pkg/tk/trunk/Makefile =================================================================== --- csw/mgar/pkg/tk/trunk/Makefile 2009-01-23 20:50:07 UTC (rev 2896) +++ csw/mgar/pkg/tk/trunk/Makefile 2009-01-23 20:55:31 UTC (rev 2897) @@ -25,11 +25,11 @@ WORKSRC = $(WORKDIR)/$(DISTNAME)/unix -INCLUDE_FLAGS = +# INCLUDE_FLAGS = CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk -CFLAGS := $(filter-out -I%,$(CFLAGS)) -DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) +#CFLAGS := $(filter-out -I%,$(CFLAGS)) +#DIRECTORY_EXPORTS := $(filter-out includedir,$(DIRECTORY_EXPORTS)) Modified: csw/mgar/pkg/tk/trunk/checksums =================================================================== --- csw/mgar/pkg/tk/trunk/checksums 2009-01-23 20:50:07 UTC (rev 2896) +++ csw/mgar/pkg/tk/trunk/checksums 2009-01-23 20:55:31 UTC (rev 2897) @@ -1,2 +1,2 @@ -ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec +9b998d0456d1b956eb9da610837a9c47 download/tk8.4.19-src.tar.gz +12a36182202248eb293d4391d8390781 download/CSWtk.gspec Deleted: csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec 2009-01-23 20:50:07 UTC (rev 2896) +++ csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec 2009-01-23 20:55:31 UTC (rev 2897) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Copied: csw/mgar/pkg/tk/trunk/files/CSWtk.gspec (from rev 2892, csw/mgar/pkg/tk/trunk/files/CSWtcl.gspec) =================================================================== --- csw/mgar/pkg/tk/trunk/files/CSWtk.gspec (rev 0) +++ csw/mgar/pkg/tk/trunk/files/CSWtk.gspec 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,4 @@ +%var bitname tk +%var pkgname CSWtk +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms Added: csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/BUILD.NOTES 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,95 @@ +############################################################################### +# +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the TK package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWtk +# +# CUR VER: Tk Version 8.5.1 +# +# REVISION: 04-27-08 +# +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +08-27-04 8.4.7 Initial 8.4.7 package creation +09-11-04 8.4.7,REV=2004.09.11 Fixed email address in pkginfo file +12-09-04 8.4.9 Initial 8.4.9 package creation +06-11-05 8.4.10 Initial 8.4.10 package creation +07-06-07 8.4.15 Initial 8.4.15 package creation +02-06-08 8.5.1 Initial 8.5.1 package creation +04-27-08 8.5.2 Initial 8.5.2 package creation +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +EDITING CHANGES: +------------------------------------------------------------------------------- + + None + + +------------------------------------------------------------------------------- +SPARC: +------------------------------------------------------------------------------- + +make: + + * There are a stream of the following warnings: + + "warning: ignoring #pragma ident" + + * /export/home/jeff/pkgs/tk/src/tk8.5.1/unix/../generic/tkWindow.c:3307: \ + warning: subscript has type `char' + + +make test: + + * Tests were run on my SunFire V250 system running Solaris 10 & Gnome 2.6 + + [...] + font.test Failed (Expected on UNIX systems) + [...] + listbox.test Failed + [...] + panedwindow.test Failed + [...] + scrollbar.test Failed + [...] + textDisp.test Failed + [...] + textImage.test Failed + [...] + unixEmbed.test Failed + [...] + unixSelect.test Failed + [...] + unixWm.test Failed (due to gnome toolbar at top of screen?) + [...] + window.test + +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +INTEL: +------------------------------------------------------------------------------- + +make: + + * Same as sparc system + +make test: + + * Tests were not run on the intel platform + +------------------------------------------------------------------------------- + Added: csw/mgar/pkg/tk/trunk/legacy/README =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/README 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,244 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the TK package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWtk +# +# REVISION: 04-27-08 +# +# NOTES: Build the tcl package first. +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: wr + or + INTEL: wt + +------------------------------------------------------------------------------- +02: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +03: Make sure tcl source is unpacked and configured (if not already done) +------------------------------------------------------------------------------- + + Tcl should have been previously compiled on this platform. If not: + cd pkgs/tcl/src + make unpack + cd tcl*[0-9]/unix + + make distclean + ../../CJSA.configure + make + +------------------------------------------------------------------------------- +04: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/tk + vi pkginfo + [edit the version info: must include REV=YYYY.MM.DD] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +05: Create symlink to tcl source (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd src + make links # create TCL links + ls tcl*[0-9]/unix; ls -lL tcl.h # check the links + +------------------------------------------------------------------------------- +06: Download the source code (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + vi Makefile (Set TVER to current version) + + make get Download source code from sourceforge: + + or get it from personal machine with: + bwput -d /export/home/jeff/pkgs/tk/src \ + tk*-src.tar.gz + + make rename rename the source file + make unpack unpack the source + +------------------------------------------------------------------------------- +07: Update the copyright file (ONLY NEEDS TO BE DONE ONCE PER RELEASE) +------------------------------------------------------------------------------- + + cd tk*[0-9] + cp license.terms ${HOME}/pkgs/tk/copyright + +------------------------------------------------------------------------------- +08: See if there are any source file modifications required for build +------------------------------------------------------------------------------- + + cd unix + less -+e ../../../BUILD.NOTES + + [update as required] + +------------------------------------------------------------------------------- +09: Compile the software +------------------------------------------------------------------------------- + + make distclean + ../../CJSA.configure # run configure + script zzzz # capture output + make + make test [To run, must login for X11 session using: ssh -X + This test run takes FOREVER over the ssh connection! + To run tests, I suggest compiling and testing on a + local system.] + exit # terminate script + +------------------------------------------------------------------------------- +10: Review zzzz script file and update any required info in BUILD.NOTES file +------------------------------------------------------------------------------- + + vi zzzz ../../BUILD.NOTES + rm zzzz + +------------------------------------------------------------------------------- +11: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +12: Make symbolic link for wish [**** USING PROPER VERSION NO. ****] +------------------------------------------------------------------------------- + + rm -f cswstage/opt/csw/bin/wish + ls -l cswstage/opt/csw/bin + + ln -s wish8.5 cswstage/opt/csw/bin/wish # USE CORRECT VER. NO! + + ls -l cswstage/opt/csw/bin + ls -lL cswstage/opt/csw/bin + +------------------------------------------------------------------------------- +13: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + :g/0444/s//0644/g + [change file permissions from 0555 to 0755] + :g/0555/s//0755/g + [add following 's' line after 'f' line: ***CHECK VERSION NO.***] + f none /opt/csw/bin/wish8.5 0755 root bin [existing line] + s none /opt/csw/bin/wish=wish8.5 + +------------------------------------------------------------------------------- +14: Edit the shipping tkConfig.sh file to set proper paths +------------------------------------------------------------------------------- + + vi opt/csw/lib/tkConfig.sh + :g#/export/home/jeff/pkgs/tk/src/tk[0-9.]*/unix#s##/opt/csw/lib#g + :g#/export/home/jeff/pkgs/tk/src/tk[0-9.]*#s##/opt/csw/src/tk#g + :wq + +------------------------------------------------------------------------------- +15: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/tk/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/tk + +------------------------------------------------------------------------------- +16: Create the package tk-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/tk + createpkg -r ${HOME}/pkgs/tk/src/tk*[0-9]/unix/cswstage + + NOTE: This may fail with: + + ERROR: cannot find package for libtcl8.5.so + ERROR: failed check. + + When updating to a new major revision number (e.g., 8.4->8.5) + since the current tcl package is not installed. Just go + ahead and finish packaging step by gzipping it up: + + gzip tk-*pkg + +------------------------------------------------------------------------------- +17: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + *** Current dependencies are listed in the depend file *** + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat step 11 and recreate the package + +------------------------------------------------------------------------------- +18: Build other software for this hardware platform +------------------------------------------------------------------------------- + + Build CSWitcl package (if necessary) + Build CSWitk package (if necessary) + Build CSWtclx package (if applicable) + +------------------------------------------------------------------------------- +19: Go back to TCL and build everything for the other hardware platform +------------------------------------------------------------------------------ + + * Continue when all packages for Sparc & X86 platforms are ready + +------------------------------------------------------------------------------- +20: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + +------------------------------------------------------------------------------- +21: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/tk + cp tk-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +22: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp TK.${VER}-src.tar.gz /export/medusa/src/tk${VER}-src.tar.gz + +------------------------------------------------------------------------------- +23: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/tk/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/copyright 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,39 @@ +This software is copyrighted by the Regents of the University of +California, Sun Microsystems, Inc., and other parties. The following +terms apply to all files associated with the software unless explicitly +disclaimed in individual files. + +The authors hereby grant permission to use, copy, modify, distribute, +and license this software and its documentation for any purpose, provided +that existing copyright notices are retained in all copies and that this +notice is included verbatim in any distributions. No written agreement, +license, or royalty fee is required for any of the authorized uses. +Modifications to this software may be copyrighted by their authors +and need not follow the licensing terms described here, provided that +the new terms are clearly indicated on the first page of each file where +they apply. + +IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY +FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY +DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE +IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE +NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR +MODIFICATIONS. + +GOVERNMENT USE: If you are acquiring this software on behalf of the +U.S. government, the Government shall have only "Restricted Rights" +in the software and related documentation as defined in the Federal +Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you +are acquiring the software on behalf of the Department of Defense, the +software shall be classified as "Commercial Computer Software" and the +Government shall have only "Restricted Rights" as defined in Clause +252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the +authors grant the U.S. Government and others acting in its behalf +permission to use and distribute the software in accordance with the +terms specified in this license. Added: csw/mgar/pkg/tk/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/depend 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,3 @@ +P CSWcommon +P CSWtcl +P SUNWxwrtl Added: csw/mgar/pkg/tk/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/pkginfo 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,9 @@ +PKG=CSWtk +NAME=tk - GUI toolkit for tcl +VERSION=8.5.2,REV=2008.04.27 +ARCH=sparc +CATEGORY=system +CSW_CATEGORY="prog, user" +VENDOR=http://www.tcl.tk/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/tk/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/prototype 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,556 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/tk-man 0755 root bin +d none /opt/csw/share/tk-man/man1 0755 root bin +f none /opt/csw/share/tk-man/man1/wish.1 0644 root bin +d none /opt/csw/share/tk-man/man3 0755 root bin +f none /opt/csw/share/tk-man/man3/Tk_Alloc3DBorderFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Get3DBorder.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Get3DBorderFromObj.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Draw3DRectangle.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Fill3DRectangle.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Draw3DPolygon.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Fill3DPolygon.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DVerticalBevel.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DHorizontalBevel.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_SetBackgroundFromBorder.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOf3DBorder.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DBorderColor.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_3DBorderGC.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Free3DBorderFromObj.3=Tk_Alloc3DBorderFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_Free3DBorder.3=Tk_Alloc3DBorderFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_AddOption.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateBindingTable.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteBindingTable.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_CreateBinding.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_DeleteBinding.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetBinding.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetAllBindings.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_DeleteAllBindings.3=Tk_CreateBindingTable.3 +l none /opt/csw/share/tk-man/man3/Tk_BindEvent.3=Tk_CreateBindingTable.3 +f none /opt/csw/share/tk-man/man3/Tk_CanvasPsY.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsBitmap.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsColor.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsFont.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsPath.3=Tk_CanvasPsY.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasPsStipple.3=Tk_CanvasPsY.3 +f none /opt/csw/share/tk-man/man3/Tk_CanvasTkwin.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CanvasGetCoord.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasDrawableCoords.3=Tk_CanvasTkwin.3 +f none /opt/csw/share/tk-man/man3/Tk_MoveWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CanvasSetStippleOrigin.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasWindowCoords.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasEventuallyRedraw.3=Tk_CanvasTkwin.3 +l none /opt/csw/share/tk-man/man3/Tk_CanvasTagsOption.3=Tk_CanvasTkwin.3 +f none /opt/csw/share/tk-man/man3/Tk_CanvasTextInfo.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ClipboardClear.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ClipboardAppend.3=Tk_ClipboardClear.3 +f none /opt/csw/share/tk-man/man3/Tk_ClearSelection.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ConfigureWidget.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ConfigureInfo.3=Tk_ConfigureWidget.3 +l none /opt/csw/share/tk-man/man3/Tk_ConfigureValue.3=Tk_ConfigureWidget.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeOptions.3=Tk_ConfigureWidget.3 +l none /opt/csw/share/tk-man/man3/Tk_ConfigureWindow.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_ResizeWindow.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_MoveResizeWindow.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBorderWidth.3=Tk_MoveWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_X.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ChangeWindowAttributes.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBackground.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBackgroundPixmap.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBorder.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowBorderPixmap.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_SetWindowColormap.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_DefineCursor.3=Tk_MoveWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_UndefineCursor.3=Tk_MoveWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_CoordsToWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateClientMessageHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteClientMessageHandler.3=Tk_CreateClientMessageHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_InitConsoleChannels.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateErrorHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteErrorHandler.3=Tk_CreateErrorHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateGenericHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteGenericHandler.3=Tk_CreateGenericHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateImageType.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetImageMasterData.3=Tk_CreateImageType.3 +l none /opt/csw/share/tk-man/man3/Tk_InitImageArgs.3=Tk_CreateImageType.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateItemType.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetItemTypes.3=Tk_CreateItemType.3 +f none /opt/csw/share/tk-man/man3/Tk_CreatePhotoImageFormat.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateSelHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteSelHandler.3=Tk_CreateSelHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_CreateWindowFromPath.3=Tk_CreateWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_DestroyWindow.3=Tk_CreateWindow.3 +l none /opt/csw/share/tk-man/man3/Tk_MakeWindowExist.3=Tk_CreateWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_DeleteImage.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_DrawFocusHighlight.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CreateEventHandler.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteEventHandler.3=Tk_CreateEventHandler.3 +f none /opt/csw/share/tk-man/man3/Tk_FindPhoto.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_PhotoPutBlock.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoPutZoomedBlock.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoGetImage.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoBlank.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoExpand.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoGetSize.3=Tk_FindPhoto.3 +l none /opt/csw/share/tk-man/man3/Tk_PhotoSetSize.3=Tk_FindPhoto.3 +f none /opt/csw/share/tk-man/man3/Tk_FontId.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetFontMetrics.3=Tk_FontId.3 +l none /opt/csw/share/tk-man/man3/Tk_PostscriptFontName.3=Tk_FontId.3 +f none /opt/csw/share/tk-man/man3/Tk_FreeXId.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GeometryRequest.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_SetMinimumRequestSize.3=Tk_GeometryRequest.3 +l none /opt/csw/share/tk-man/man3/Tk_SetInternalBorder.3=Tk_GeometryRequest.3 +l none /opt/csw/share/tk-man/man3/Tk_SetInternalBorderEx.3=Tk_GeometryRequest.3 +l none /opt/csw/share/tk-man/man3/Tk_Y.3=Tk_X.3 +f none /opt/csw/share/tk-man/man3/Tk_GetAnchorFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetAnchor.3=Tk_GetAnchorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfAnchor.3=Tk_GetAnchorFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_AllocBitmapFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetBitmapFromObj.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_DefineBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_SizeOfBitmap.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeBitmapFromObj.3=Tk_AllocBitmapFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeBitmap.3=Tk_AllocBitmapFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetCapStyle.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_NameOfCapStyle.3=Tk_GetCapStyle.3 +f none /opt/csw/share/tk-man/man3/Tk_GetColormap.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreeColormap.3=Tk_GetColormap.3 +f none /opt/csw/share/tk-man/man3/Tk_AllocColorFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetColor.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetColorFromObj.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetColorByValue.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfColor.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeColorFromObj.3=Tk_AllocColorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeColor.3=Tk_AllocColorFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_AllocCursorFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetCursor.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetCursorFromObj.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetCursorFromData.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfCursor.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeCursorFromObj.3=Tk_AllocCursorFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeCursor.3=Tk_AllocCursorFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetDash.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_AllocFontFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetFont.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetFontFromObj.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfFont.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeFontFromObj.3=Tk_AllocFontFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeFont.3=Tk_AllocFontFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetGC.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreeGC.3=Tk_GetGC.3 +f none /opt/csw/share/tk-man/man3/Tk_GetHINSTANCE.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetHWND.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_AttachHWND.3=Tk_GetHWND.3 +f none /opt/csw/share/tk-man/man3/Tk_GetImage.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_RedrawImage.3=Tk_GetImage.3 +l none /opt/csw/share/tk-man/man3/Tk_SizeOfImage.3=Tk_GetImage.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeImage.3=Tk_GetImage.3 +f none /opt/csw/share/tk-man/man3/Tk_GetJoinStyle.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_NameOfJoinStyle.3=Tk_GetJoinStyle.3 +f none /opt/csw/share/tk-man/man3/Tk_GetJustifyFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetJustify.3=Tk_GetJustifyFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfJustify.3=Tk_GetJustifyFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetOption.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetPixelsFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetPixels.3=Tk_GetPixelsFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetMMFromObj.3=Tk_GetPixelsFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_GetScreenMM.3=Tk_GetPixelsFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetPixmap.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreePixmap.3=Tk_GetPixmap.3 +f none /opt/csw/share/tk-man/man3/Tk_GetReliefFromObj.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetRelief.3=Tk_GetReliefFromObj.3 +l none /opt/csw/share/tk-man/man3/Tk_NameOfRelief.3=Tk_GetReliefFromObj.3 +f none /opt/csw/share/tk-man/man3/Tk_GetRootCoords.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetScrollInfo.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetScrollInfoObj.3=Tk_GetScrollInfo.3 +f none /opt/csw/share/tk-man/man3/Tk_GetSelection.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetUid.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Uid.3=Tk_GetUid.3 +f none /opt/csw/share/tk-man/man3/Tk_GetVRootGeometry.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetVisual.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_Grab.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Ungrab.3=Tk_Grab.3 +f none /opt/csw/share/tk-man/man3/Tk_HWNDToWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_HandleEvent.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_IdToWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ImageChanged.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_Name.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_GetUserInactiveTime.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_ResetUserInactiveTime.3=Tk_GetUserInactiveTime.3 +f none /opt/csw/share/tk-man/man3/Tk_InternAtom.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetAtomName.3=Tk_InternAtom.3 +f none /opt/csw/share/tk-man/man3/Tk_MainLoop.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_MainWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_GetNumMainWindows.3=Tk_MainWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_MaintainGeometry.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_UnmaintainGeometry.3=Tk_MaintainGeometry.3 +f none /opt/csw/share/tk-man/man3/Tk_ManageGeometry.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_MapWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_UnmapWindow.3=Tk_MapWindow.3 +f none /opt/csw/share/tk-man/man3/Tk_MeasureChars.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_TextWidth.3=Tk_MeasureChars.3 +l none /opt/csw/share/tk-man/man3/Tk_DrawChars.3=Tk_MeasureChars.3 +l none /opt/csw/share/tk-man/man3/Tk_UnderlineChars.3=Tk_MeasureChars.3 +f none /opt/csw/share/tk-man/man3/Tk_MoveToplevelWindow.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_PathName.3=Tk_Name.3 +l none /opt/csw/share/tk-man/man3/Tk_NameToWindow.3=Tk_Name.3 +f none /opt/csw/share/tk-man/man3/Tk_NameOfImage.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_OwnSelection.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ParseArgv.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_CollapseMotionEvents.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_QueueWindowEvent.3=Tk_CollapseMotionEvents.3 +f none /opt/csw/share/tk-man/man3/Tk_RestackWindow.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_RestrictEvents.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetAppName.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetCaretPos.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetClass.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_Class.3=Tk_SetClass.3 +f none /opt/csw/share/tk-man/man3/Tk_SetClassProcs.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_SetGrid.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_UnsetGrid.3=Tk_SetGrid.3 +f none /opt/csw/share/tk-man/man3/Tk_CreateOptionTable.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_DeleteOptionTable.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_InitOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_SetOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeSavedOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_RestoreSavedOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetOptionValue.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_GetOptionInfo.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_FreeConfigOptions.3=Tk_CreateOptionTable.3 +l none /opt/csw/share/tk-man/man3/Tk_Offset.3=Tk_CreateOptionTable.3 +f none /opt/csw/share/tk-man/man3/Tk_SetWindowVisual.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_StrictMotif.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_ComputeTextLayout.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_FreeTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_DrawTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_UnderlineTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_PointToChar.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_CharBbox.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_DistanceToTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_IntersectTextLayout.3=Tk_ComputeTextLayout.3 +l none /opt/csw/share/tk-man/man3/Tk_TextLayoutToPostscript.3=Tk_ComputeTextLayout.3 +f none /opt/csw/share/tk-man/man3/Tk_InitStubs.3 0644 root bin +f none /opt/csw/share/tk-man/man3/Tk_Init.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_SafeInit.3=Tk_Init.3 +f none /opt/csw/share/tk-man/man3/Tk_Main.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Tk_WindowId.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Parent.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Display.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_DisplayName.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_ScreenNumber.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Screen.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Width.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Height.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Changes.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Attributes.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsContainer.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsEmbedded.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsMapped.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_IsTopLevel.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_ReqWidth.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_ReqHeight.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_MinReqWidth.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_MinReqHeight.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderLeft.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderRight.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderTop.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_InternalBorderBottom.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Visual.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Depth.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Colormap.3=Tk_X.3 +l none /opt/csw/share/tk-man/man3/Tk_Interp.3=Tk_X.3 +f none /opt/csw/share/tk-man/man3/Ttk_MakeBox.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Ttk_PadBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_ExpandBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_PackBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_StickBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_PlaceBox.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_BoxContains.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_MakePadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_UniformPadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_AddPadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_RelievePadding.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetPaddingFromObj.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetBorderFromObj.3=Ttk_MakeBox.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetStickyFromObj.3=Ttk_MakeBox.3 +f none /opt/csw/share/tk-man/man3/Ttk_CreateTheme.3 0644 root bin +l none /opt/csw/share/tk-man/man3/Ttk_GetTheme.3=Ttk_CreateTheme.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetDefaultTheme.3=Ttk_CreateTheme.3 +l none /opt/csw/share/tk-man/man3/Ttk_GetCurrentTheme.3=Ttk_CreateTheme.3 +d none /opt/csw/share/tk-man/mann 0755 root bin +f none /opt/csw/share/tk-man/mann/bell.n 0644 root bin +f none /opt/csw/share/tk-man/mann/bind.n 0644 root bin +f none /opt/csw/share/tk-man/mann/bindtags.n 0644 root bin +f none /opt/csw/share/tk-man/mann/bitmap.n 0644 root bin +f none /opt/csw/share/tk-man/mann/button.n 0644 root bin +f none /opt/csw/share/tk-man/mann/canvas.n 0644 root bin +f none /opt/csw/share/tk-man/mann/checkbutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_chooseColor.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_chooseDirectory.n 0644 root bin +f none /opt/csw/share/tk-man/mann/clipboard.n 0644 root bin +f none /opt/csw/share/tk-man/mann/colors.n 0644 root bin +f none /opt/csw/share/tk-man/mann/console.n 0644 root bin +f none /opt/csw/share/tk-man/mann/cursors.n 0644 root bin +f none /opt/csw/share/tk-man/mann/destroy.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_dialog.n 0644 root bin +f none /opt/csw/share/tk-man/mann/entry.n 0644 root bin +f none /opt/csw/share/tk-man/mann/event.n 0644 root bin +f none /opt/csw/share/tk-man/mann/focus.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_focusNext.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_focusPrev.n=tk_focusNext.n +l none /opt/csw/share/tk-man/mann/tk_focusFollowsMouse.n=tk_focusNext.n +f none /opt/csw/share/tk-man/mann/font.n 0644 root bin +f none /opt/csw/share/tk-man/mann/frame.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_getOpenFile.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_getSaveFile.n=tk_getOpenFile.n +f none /opt/csw/share/tk-man/mann/grab.n 0644 root bin +f none /opt/csw/share/tk-man/mann/grid.n 0644 root bin +f none /opt/csw/share/tk-man/mann/image.n 0644 root bin +f none /opt/csw/share/tk-man/mann/keysyms.n 0644 root bin +f none /opt/csw/share/tk-man/mann/label.n 0644 root bin +f none /opt/csw/share/tk-man/mann/labelframe.n 0644 root bin +f none /opt/csw/share/tk-man/mann/listbox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/loadTk.n 0644 root bin +f none /opt/csw/share/tk-man/mann/lower.n 0644 root bin +f none /opt/csw/share/tk-man/mann/menu.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_menuSetFocus.n=menu.n +f none /opt/csw/share/tk-man/mann/tk_menuBar.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_bindForTraversal.n=tk_menuBar.n +f none /opt/csw/share/tk-man/mann/menubutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/message.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_messageBox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/option.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_optionMenu.n 0644 root bin +f none /opt/csw/share/tk-man/mann/options.n 0644 root bin +f none /opt/csw/share/tk-man/mann/pack-old.n 0644 root bin +f none /opt/csw/share/tk-man/mann/pack.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_setPalette.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_bisque.n=tk_setPalette.n +f none /opt/csw/share/tk-man/mann/panedwindow.n 0644 root bin +f none /opt/csw/share/tk-man/mann/photo.n 0644 root bin +f none /opt/csw/share/tk-man/mann/place.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tk_popup.n 0644 root bin +f none /opt/csw/share/tk-man/mann/radiobutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/raise.n 0644 root bin +f none /opt/csw/share/tk-man/mann/scale.n 0644 root bin +f none /opt/csw/share/tk-man/mann/scrollbar.n 0644 root bin +f none /opt/csw/share/tk-man/mann/selection.n 0644 root bin +f none /opt/csw/share/tk-man/mann/send.n 0644 root bin +f none /opt/csw/share/tk-man/mann/spinbox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/text.n 0644 root bin +l none /opt/csw/share/tk-man/mann/tk_textCopy.n=text.n +l none /opt/csw/share/tk-man/mann/tk_textCut.n=text.n +l none /opt/csw/share/tk-man/mann/tk_textPaste.n=text.n +f none /opt/csw/share/tk-man/mann/tk.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tkerror.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tkvars.n 0644 root bin +f none /opt/csw/share/tk-man/mann/tkwait.n 0644 root bin +f none /opt/csw/share/tk-man/mann/toplevel.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_button.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_checkbutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_combobox.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_entry.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_frame.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_image.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_intro.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_label.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_labelframe.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_menubutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_notebook.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_panedwindow.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_progressbar.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_radiobutton.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_scrollbar.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_separator.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_sizegrip.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_style.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_treeview.n 0644 root bin +f none /opt/csw/share/tk-man/mann/ttk_widget.n 0644 root bin +f none /opt/csw/share/tk-man/mann/winfo.n 0644 root bin +f none /opt/csw/share/tk-man/mann/wm.n 0644 root bin +d none /opt/csw/lib 0755 root bin +d none /opt/csw/lib/tk8.5 0755 root bin +f none /opt/csw/lib/tk8.5/pkgIndex.tcl 0644 root bin +d none /opt/csw/lib/tk8.5/images 0755 root bin +f none /opt/csw/lib/tk8.5/images/README 0644 root bin +f none /opt/csw/lib/tk8.5/images/logo.eps 0644 root bin +f none /opt/csw/lib/tk8.5/images/logo100.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/logo64.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/logoLarge.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/logoMed.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo.eps 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo100.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo150.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo175.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo200.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/pwrdLogo75.gif 0644 root bin +f none /opt/csw/lib/tk8.5/images/tai-ku.gif 0644 root bin +d none /opt/csw/lib/tk8.5/msgs 0755 root bin +f none /opt/csw/lib/tk8.5/msgs/cs.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/da.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/de.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/el.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/en.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/en_gb.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/eo.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/es.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/fr.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/hu.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/it.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/nl.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/pl.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/pt.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/ru.msg 0644 root bin +f none /opt/csw/lib/tk8.5/msgs/sv.msg 0644 root bin +d none /opt/csw/lib/tk8.5/ttk 0755 root bin +f none /opt/csw/lib/tk8.5/ttk/altTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/aquaTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/button.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/clamTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/classicTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/combobox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/cursors.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/defaults.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/entry.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/fonts.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/menubutton.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/notebook.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/panedwindow.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/progress.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/scale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/scrollbar.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/sizegrip.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/treeview.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/ttk.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/utils.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/winTheme.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/ttk/xpTheme.tcl 0644 root bin +d none /opt/csw/lib/tk8.5/demos 0755 root bin +d none /opt/csw/lib/tk8.5/demos/images 0755 root bin +f none /opt/csw/lib/tk8.5/demos/images/earth.gif 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/earthris.gif 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/face.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/flagdown.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/flagup.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/gray25.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/letters.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/noletter.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/pattern.xbm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/tcllogo.gif 0644 root bin +f none /opt/csw/lib/tk8.5/demos/images/teapot.ppm 0644 root bin +f none /opt/csw/lib/tk8.5/demos/README 0644 root bin +f none /opt/csw/lib/tk8.5/demos/anilabel.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/aniwave.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/arrow.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/bind.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/bitmap.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/browse 0755 root bin +f none /opt/csw/lib/tk8.5/demos/button.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/check.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/clrpick.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/colors.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/combo.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/cscroll.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ctext.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/dialog1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/dialog2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/en.msg 0644 root bin +f none /opt/csw/lib/tk8.5/demos/entry1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/entry2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/entry3.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/filebox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/floor.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/form.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/hello 0755 root bin +f none /opt/csw/lib/tk8.5/demos/goldberg.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/hscale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/icon.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/image1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/image2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/items.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ixset 0755 root bin +f none /opt/csw/lib/tk8.5/demos/label.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/labelframe.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/license.terms 0644 root bin +f none /opt/csw/lib/tk8.5/demos/mclist.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/menu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/menubu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/msgbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/nl.msg 0644 root bin +f none /opt/csw/lib/tk8.5/demos/paned1.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/paned2.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/pendulum.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/plot.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/puzzle.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/radio.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/rmt 0755 root bin +f none /opt/csw/lib/tk8.5/demos/rolodex 0755 root bin +f none /opt/csw/lib/tk8.5/demos/ruler.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/sayings.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/square 0755 root bin +f none /opt/csw/lib/tk8.5/demos/search.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/spin.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/states.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/style.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/tclIndex 0644 root bin +f none /opt/csw/lib/tk8.5/demos/tcolor 0755 root bin +f none /opt/csw/lib/tk8.5/demos/text.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/textpeer.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/timer 0755 root bin +f none /opt/csw/lib/tk8.5/demos/toolbar.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/tree.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkbut.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkmenu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttknote.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkpane.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/ttkprogress.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/twind.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/unicodeout.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/vscale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/demos/widget 0755 root bin +f none /opt/csw/lib/tk8.5/bgerror.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/button.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/choosedir.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/clrpick.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/comdlg.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/console.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/dialog.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/entry.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/focus.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/listbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/menu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/mkpsenc.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/msgbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/obsolete.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/optMenu.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/palette.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/panedwindow.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/safetk.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/scale.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/scrlbar.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/spinbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/tearoff.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/text.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/tk.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/tkfbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/unsupported.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/xmfbox.tcl 0644 root bin +f none /opt/csw/lib/tk8.5/prolog.ps 0644 root bin +f none /opt/csw/lib/tk8.5/tclIndex 0644 root bin +f none /opt/csw/lib/tk8.5/tkAppInit.c 0644 root bin +f none /opt/csw/lib/libtk8.5.so 0755 root bin +f none /opt/csw/lib/tkConfig.sh 0644 root bin +f none /opt/csw/lib/libtkstub8.5.a 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/wish8.5 0755 root bin +s none /opt/csw/bin/wish=wish8.5 +d none /opt/csw/include 0755 root bin +f none /opt/csw/include/tk.h 0644 root bin +f none /opt/csw/include/tkDecls.h 0644 root bin +f none /opt/csw/include/tkPlatDecls.h 0644 root bin Added: csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,15 @@ +# Configure command for the TK package +# Run from the tk*[0-9]/unix subdirectory +# +# NOTE: * Had to add the CFLAGS argument for 8.5.x so that the test routines +# could find the current tk.h file in the generic directory rather +# than the previously installed 8.4.x /opt/csw/include/tcl.h which +# was causing all sorts of compile problems due to undefined objects! +# +# * The CFLAGS line is needed to compile and run the tests. These +# entries need to later be edited out of the file. + + +./configure --prefix=/opt/csw --mandir=/opt/csw/share/tk-man \ + --enable-threads \ + CFLAGS="-I. -I.. -I ../.. -I../generic" Property changes on: csw/mgar/pkg/tk/trunk/legacy/src/CJSA.configure ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/tk/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/tk/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/tk/trunk/legacy/src/Makefile 2009-01-23 20:55:31 UTC (rev 2897) @@ -0,0 +1,53 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the TK src directory. This is used to +# retrieve current source code for the specified package(s). +# +# REVISION: 04-27-08 +# +# NOTES: * Set TVER to the current version of the software. +# +############################################################################### + +TVER=8.5.2 + + +help: + @echo "---------------------------------------------------------------" + @echo "TK Version: $(TVER)" + @echo "---------------------------------------------------------------" + @echo "make get download the current TK source code" + @echo "" + @echo "make rename rename downloaded source code file" + @echo "" + @echo "make unpack unpack the TK source code" + @echo "" + @echo "make links create symbolic links to current TCL source" + @echo "" + @echo "make clean remove source working directory + @echo "---------------------------------------------------------------" + + +# target get does not work until we can locate an unambiguous download site +# for the TK source + +get tk TK: + wget \ + http://prdownloads.sourceforge.net/tcl/tk$(TVER)-src.tar.gz + +rename: + mv tk$(TVER)-src.tar.gz TK.$(TVER)-src.tar.gz + clear ; ls + +unpack: TK.$(TVER)-src.tar.gz + unpak TK.$(TVER)-src.tar.gz + +links link tcl tcl-link: + rm -rf tcl*[0-9] tcl.h + ln -s ../../tcl/src/tcl*[0-9] . + ln -s ../../tcl/src/tcl*[0-9]/generic/tcl.h . + +clean: + rm -rf tk${TVER} tcl* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 23 22:25:02 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 23 Jan 2009 21:25:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[2898] csw/mgar/pkg/cvsps/trunk Message-ID: Revision: 2898 http://gar.svn.sourceforge.net/gar/?rev=2898&view=rev Author: bdwalton Date: 2009-01-23 21:24:59 +0000 (Fri, 23 Jan 2009) Log Message: ----------- - Fixed Makefile.am to include the man page - Fixed configure args - Cleaned old (now defunct) custom install stuff Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile csw/mgar/pkg/cvsps/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 20:55:31 UTC (rev 2897) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 21:24:59 UTC (rev 2898) @@ -17,6 +17,7 @@ PATCHFILES += 0004-add-config.h-awareness-to-all-source-files.patch PATCHFILES += 0005-gnulib-import-of-missing-functions.patch PATCHFILES += 0006-enabled-imported-gnulib-functions.patch +PATCHFILES += 0007-enable-installation-of-man-pages.patch PREREQUISITE_PKGS = CSWzlib CSWautomake CSWautoconf @@ -27,7 +28,7 @@ TEST_SCRIPTS = -#INSTALL_SCRIPTS = custom +CONFIGURE_ARGS = $(DIRPATHS) --with-zlib=/opt/csw include gar/category.mk @@ -36,9 +37,5 @@ @(cd $(WORKSRC); chmod +x autoinit.sh; ./autoinit.sh) @$(MAKECOOKIE) - -# 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/ +pre-install: + @echo DESTDIR is $(DESTDIR) Modified: csw/mgar/pkg/cvsps/trunk/checksums =================================================================== --- csw/mgar/pkg/cvsps/trunk/checksums 2009-01-23 20:55:31 UTC (rev 2897) +++ csw/mgar/pkg/cvsps/trunk/checksums 2009-01-23 21:24:59 UTC (rev 2898) @@ -6,3 +6,4 @@ 78d2f5dc4b1aa496e4f4ea8d2db4bf17 download/0004-add-config.h-awareness-to-all-source-files.patch 58cbd19160b6a98f3c5ff2a8786f0848 download/0005-gnulib-import-of-missing-functions.patch 02c14b029fd57a61fa97cc8209f18d7d download/0006-enabled-imported-gnulib-functions.patch +2a729989bcafa6f533bcd6b33c9ceb09 download/0007-enable-installation-of-man-pages.patch Added: csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch =================================================================== --- csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch (rev 0) +++ csw/mgar/pkg/cvsps/trunk/files/0007-enable-installation-of-man-pages.patch 2009-01-23 21:24:59 UTC (rev 2898) @@ -0,0 +1,21 @@ +From 588cc7cdd0795dd592674ad2c846b58e5ea884c4 Mon Sep 17 00:00:00 2001 +From: Ben Walton +Date: Fri, 23 Jan 2009 22:04:10 +0100 +Subject: [PATCH] enable installation of man pages + +--- + Makefile.am | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index a07bbda..84b2eb9 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -9,3 +9,4 @@ cvsps_SOURCES = cache.c cap.c cvs_direct.c cvsps.c list_sort.c stats.c util.c + cvsps_SOURCES += cbtcommon/debug.c cbtcommon/sio.c cbtcommon/text_util.c + cvsps_SOURCES += cbtcommon/hash.c cbtcommon/tcpsocket.c + ++man1_MANS = cvsps.1 +-- +1.6.0.5 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 23 22:37:01 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 23 Jan 2009 21:37:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[2899] csw/mgar/pkg/cvsps/trunk/Makefile Message-ID: Revision: 2899 http://gar.svn.sourceforge.net/gar/?rev=2899&view=rev Author: bdwalton Date: 2009-01-23 21:37:01 +0000 (Fri, 23 Jan 2009) Log Message: ----------- added files to share/doc/ Modified Paths: -------------- csw/mgar/pkg/cvsps/trunk/Makefile Modified: csw/mgar/pkg/cvsps/trunk/Makefile =================================================================== --- csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 21:24:59 UTC (rev 2898) +++ csw/mgar/pkg/cvsps/trunk/Makefile 2009-01-23 21:37:01 UTC (rev 2899) @@ -32,10 +32,15 @@ include gar/category.mk +DOCDIR = $(datadir)/doc/$(GARNAME)-$(GARVERSION) + pre-configure-modulated: @echo About to initialize the autotools bits. @(cd $(WORKSRC); chmod +x autoinit.sh; ./autoinit.sh) @$(MAKECOOKIE) -pre-install: - @echo DESTDIR is $(DESTDIR) +post-install-modulated: + @echo Installing README's, etc. + @(cd $(WORKSRC_FIRSTMOD); ginstall -m 0755 -d $(DESTDIR)/$(DOCDIR); \ + ginstall -m 0644 CHANGELOG README COPYING $(DESTDIR)/$(DOCDIR)) + @$(MAKECOOKIE) 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 23 22:58:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 21:58:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2900] csw/mgar/pkg/texinfo/trunk Message-ID: Revision: 2900 http://gar.svn.sourceforge.net/gar/?rev=2900&view=rev Author: dmichelsen Date: 2009-01-23 21:58:30 +0000 (Fri, 23 Jan 2009) Log Message: ----------- texinfo: Populate stub, update to 4.13a and convert to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/texinfo/trunk/Makefile csw/mgar/pkg/texinfo/trunk/checksums Added Paths: ----------- csw/mgar/pkg/texinfo/trunk/files/ csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec Property Changed: ---------------- csw/mgar/pkg/texinfo/trunk/ Property changes on: csw/mgar/pkg/texinfo/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/texinfo/trunk/Makefile =================================================================== --- csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-23 21:37:01 UTC (rev 2899) +++ csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-23 21:58:30 UTC (rev 2900) @@ -1,19 +1,27 @@ GARNAME = texinfo -GARVERSION = 4.6 +GARVERSION = 4.13a CATEGORIES = utils -DESCRIPTION = Create different types of documentation from a single source. +DESCRIPTION = The GNU Documentation System define BLURB - Texinfo is a documentation system that uses a single source to produce both - on-line information (info, HTML, XML, Docbook) and printed output (DVI, PDF). + Texinfo is a documentation system that uses a single source to produce both + on-line information (info, HTML, XML, Docbook) and printed output (DVI, PDF). endef +DISTNAME = $(GARNAME)-4.13 MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWtexinfo,) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWgsed CSWncurses CSWiconv CSWggettext + CONFIGURE_ARGS = $(DIRPATHS) +TEST_TARGET = check + +EXTRA_MERGE_EXCLUDE_FILES = $(libdir)/charset.alias + include gar/category.mk Modified: csw/mgar/pkg/texinfo/trunk/checksums =================================================================== --- csw/mgar/pkg/texinfo/trunk/checksums 2009-01-23 21:37:01 UTC (rev 2899) +++ csw/mgar/pkg/texinfo/trunk/checksums 2009-01-23 21:58:30 UTC (rev 2900) @@ -1 +1,2 @@ -5730c8c0c7484494cca7a7e2d7459c64 download/texinfo-4.6.tar.gz +71ba711519209b5fb583fed2b3d86fcb download/texinfo-4.13a.tar.gz +a2faefb6b4dbc8b851619b0e467d9685 download/CSWtexinfo.gspec Added: csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec =================================================================== --- csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec (rev 0) +++ csw/mgar/pkg/texinfo/trunk/files/CSWtexinfo.gspec 2009-01-23 21:58:30 UTC (rev 2900) @@ -0,0 +1,4 @@ +%var bitname texinfo +%var pkgname CSWtexinfo +%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 23 23:35:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 23 Jan 2009 22:35:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2901] csw/mgar/gar Message-ID: Revision: 2901 http://gar.svn.sourceforge.net/gar/?rev=2901&view=rev Author: dmichelsen Date: 2009-01-23 22:35:36 +0000 (Fri, 23 Jan 2009) Log Message: ----------- mGAR: Fix typo in path Modified Paths: -------------- csw/mgar/gar/v1/gar.conf.mk csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v1/gar.conf.mk =================================================================== --- csw/mgar/gar/v1/gar.conf.mk 2009-01-23 21:58:30 UTC (rev 2900) +++ csw/mgar/gar/v1/gar.conf.mk 2009-01-23 22:35:36 UTC (rev 2901) @@ -237,7 +237,7 @@ UPSTREAM_USE_SF ?= 0 # GNU -GNU_SITE = http://mirrors.kernel.org/ +GNU_SITE = http://mirrors.kernel.org GNU_GNUROOT = $(GNU_SITE)/gnu GNU_NGNUROOT = $(GNU_SITE)/non-gnu GNU_MIRROR = $(GNU_GNUROOT)/$(GARNAME)/ Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-01-23 21:58:30 UTC (rev 2900) +++ csw/mgar/gar/v2/gar.conf.mk 2009-01-23 22:35:36 UTC (rev 2901) @@ -500,7 +500,7 @@ GOOGLE_MIRROR ?= http://$(GOOGLE_PROJECT).googlecode.com/files/ # GNU -GNU_SITE = http://mirrors.kernel.org/ +GNU_SITE = http://mirrors.kernel.org GNU_GNUROOT = $(GNU_SITE)/gnu GNU_NGNUROOT = $(GNU_SITE)/non-gnu GNU_MIRROR = $(GNU_GNUROOT)/$(GARNAME)/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Jan 24 02:11:24 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 24 Jan 2009 01:11:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2902] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 2902 http://gar.svn.sourceforge.net/gar/?rev=2902&view=rev Author: bdwalton Date: 2009-01-24 01:11:24 +0000 (Sat, 24 Jan 2009) Log Message: ----------- git_cvs depends on cvsps Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-01-23 22:35:36 UTC (rev 2901) +++ csw/mgar/pkg/git/trunk/Makefile 2009-01-24 01:11:24 UTC (rev 2902) @@ -4,7 +4,7 @@ PREREQUISITE_PKGS = CSWasciidoc CSWossldevel CSWxmlto CSWbash CSWcurl PREREQUISITE_PKGS += CSWgsed CSWgnulinks CSWperl CSWtk CSWexpat -PREREQUISITE_PKGS += CSWzlib CSWpmerror CSWpmsvn CSWcvs CSWemacs +PREREQUISITE_PKGS += CSWzlib CSWpmerror CSWpmsvn CSWcvsps CSWemacs REQUIRED_PKGS_CSWgit = CSWzlib CSWperl CSWrsync CSWcurlrt CSWosslrt REQUIRED_PKGS_CSWgit += CSWossh CSWiconv CSWexpat CSWbash CSWpmerror @@ -15,7 +15,7 @@ REQUIRED_PKGS_CSWgitsvn = CSWgit CSWpmsvn -REQUIRED_PKGS_CSWgitcvs = CSWgit CSWcvs +REQUIRED_PKGS_CSWgitcvs = CSWgit CSWcvsps REQUIRED_PKGS_CSWgitemacs = CSWgit CSWemacs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jan 24 14:35:11 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 24 Jan 2009 13:35:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[2903] csw/mgar/pkg/lftp/trunk Message-ID: Revision: 2903 http://gar.svn.sourceforge.net/gar/?rev=2903&view=rev Author: chninkel Date: 2009-01-24 13:35:11 +0000 (Sat, 24 Jan 2009) Log Message: ----------- lftp: updated to 3.7.8 Modified Paths: -------------- csw/mgar/pkg/lftp/trunk/Makefile csw/mgar/pkg/lftp/trunk/checksums Modified: csw/mgar/pkg/lftp/trunk/Makefile =================================================================== --- csw/mgar/pkg/lftp/trunk/Makefile 2009-01-24 01:11:24 UTC (rev 2902) +++ csw/mgar/pkg/lftp/trunk/Makefile 2009-01-24 13:35:11 UTC (rev 2903) @@ -1,5 +1,5 @@ GARNAME = lftp -GARVERSION = 3.7.7 +GARVERSION = 3.7.8 CATEGORIES = net DESCRIPTION = sophisticated command-line ftp/http client Modified: csw/mgar/pkg/lftp/trunk/checksums =================================================================== --- csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 01:11:24 UTC (rev 2902) +++ csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 13:35:11 UTC (rev 2903) @@ -1,4 +1,4 @@ -7b7aebf99e862fa4b9dcf892b7b45d82 download/lftp-3.7.7.tar.gz +014a4ac6b9ea4016d5cd64afe0397b89 download/lftp-3.7.8.tar.gz 47fdb80e4575a9a70d69b146974620df download/CSWlftp.gspec 96ee1569832d5eaed0c3a7b37e13fc88 download/CSWlftp.prototype f2c7e3e3db9f5c48dddb983c95588528 download/CSWlftp.depend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jan 24 16:14:39 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 24 Jan 2009 15:14:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[2904] csw/mgar/pkg/lftp/trunk Message-ID: Revision: 2904 http://gar.svn.sourceforge.net/gar/?rev=2904&view=rev Author: chninkel Date: 2009-01-24 15:14:38 +0000 (Sat, 24 Jan 2009) Log Message: ----------- lftp: updated changelog Modified Paths: -------------- csw/mgar/pkg/lftp/trunk/checksums csw/mgar/pkg/lftp/trunk/files/changelog.CSW Modified: csw/mgar/pkg/lftp/trunk/checksums =================================================================== --- csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 13:35:11 UTC (rev 2903) +++ csw/mgar/pkg/lftp/trunk/checksums 2009-01-24 15:14:38 UTC (rev 2904) @@ -2,6 +2,6 @@ 47fdb80e4575a9a70d69b146974620df download/CSWlftp.gspec 96ee1569832d5eaed0c3a7b37e13fc88 download/CSWlftp.prototype f2c7e3e3db9f5c48dddb983c95588528 download/CSWlftp.depend -1bcc79a591071b5110fa57c072b57818 download/changelog.CSW +f1eeec4e93ff6e52c685603708f3407c download/changelog.CSW 3a01fb949dfe799507720c311222cd96 download/i.conf 51abe2144219c1af4c79c2e8b7e81cb9 download/r.conf Modified: csw/mgar/pkg/lftp/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-01-24 13:35:11 UTC (rev 2903) +++ csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-01-24 15:14:38 UTC (rev 2904) @@ -1,3 +1,9 @@ +lftp (3.7.8,REV=2009.01.24) unstable + + * New upstream version. + + -- Yann Rouillard Sat, 24 Jan 2009 16:14:12 +0100 + lftp (3.7.7,REV=2008.12.12) unstable * New upstream version. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jan 24 22:25:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 24 Jan 2009 21:25:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2905] csw/mgar/pkg Message-ID: Revision: 2905 http://gar.svn.sourceforge.net/gar/?rev=2905&view=rev Author: dmichelsen Date: 2009-01-24 21:25:09 +0000 (Sat, 24 Jan 2009) Log Message: ----------- top: Initial commit Added Paths: ----------- csw/mgar/pkg/top/ csw/mgar/pkg/top/branches/ csw/mgar/pkg/top/tags/ csw/mgar/pkg/top/trunk/ csw/mgar/pkg/top/trunk/Makefile csw/mgar/pkg/top/trunk/checksums csw/mgar/pkg/top/trunk/files/ csw/mgar/pkg/top/trunk/files/CSWtop.gspec Property changes on: csw/mgar/pkg/top/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/top/trunk/Makefile =================================================================== --- csw/mgar/pkg/top/trunk/Makefile (rev 0) +++ csw/mgar/pkg/top/trunk/Makefile 2009-01-24 21:25:09 UTC (rev 2905) @@ -0,0 +1,31 @@ +GARNAME = top +GARVERSION = 3.7 +CATEGORIES = apps + +DESCRIPTION = Unix system state reporter +define BLURB +endef + +SF_PROJ = unixtop +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWtop,) + +SPKG_SOURCEURL = http://www.unixtop.org/ + +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=72892 +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +BUILD64 = 1 + +# autoconf tries to compile for the current kernel. Get rid of +# these extra flags as we set them ourselves with BUILD64 = 1 +BUILD_OVERRIDE_DIRS = ARCHFLAG + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --disable-dualarch + +# top doesn't have a testsuite +TEST_TARGET = + +include gar/category.mk Added: csw/mgar/pkg/top/trunk/checksums =================================================================== --- csw/mgar/pkg/top/trunk/checksums (rev 0) +++ csw/mgar/pkg/top/trunk/checksums 2009-01-24 21:25:09 UTC (rev 2905) @@ -0,0 +1,2 @@ +166226469776c073da7abd35197627dc download/top-3.7.tar.gz +9799a03c1e974c7a702c4c9f042487d6 download/CSWtop.gspec Added: csw/mgar/pkg/top/trunk/files/CSWtop.gspec =================================================================== --- csw/mgar/pkg/top/trunk/files/CSWtop.gspec (rev 0) +++ csw/mgar/pkg/top/trunk/files/CSWtop.gspec 2009-01-24 21:25:09 UTC (rev 2905) @@ -0,0 +1,4 @@ +%var bitname top +%var pkgname CSWtop +%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 bdwalton at users.sourceforge.net Sun Jan 25 01:33:29 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sun, 25 Jan 2009 00:33:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2906] csw/mgar/pkg/ruby/trunk/ Message-ID: Revision: 2906 http://gar.svn.sourceforge.net/gar/?rev=2906&view=rev Author: bdwalton Date: 2009-01-25 00:33:29 +0000 (Sun, 25 Jan 2009) Log Message: ----------- revert to gar1 for testing 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/v2 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 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 26 10:33:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 26 Jan 2009 09:33:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2907] csw/mgar/pkg/cpan/Email-Simple/trunk Message-ID: Revision: 2907 http://gar.svn.sourceforge.net/gar/?rev=2907&view=rev Author: dmichelsen Date: 2009-01-26 09:33:30 +0000 (Mon, 26 Jan 2009) Log Message: ----------- Email-Simple: Update to 2.005 Modified Paths: -------------- csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile csw/mgar/pkg/cpan/Email-Simple/trunk/checksums Modified: csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile 2009-01-25 00:33:29 UTC (rev 2906) +++ csw/mgar/pkg/cpan/Email-Simple/trunk/Makefile 2009-01-26 09:33:30 UTC (rev 2907) @@ -1,5 +1,5 @@ GARNAME = Email-Simple -GARVERSION = 2.004 +GARVERSION = 2.005 CATEGORIES = cpan AUTHOR = RJBS Modified: csw/mgar/pkg/cpan/Email-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Email-Simple/trunk/checksums 2009-01-25 00:33:29 UTC (rev 2906) +++ csw/mgar/pkg/cpan/Email-Simple/trunk/checksums 2009-01-26 09:33:30 UTC (rev 2907) @@ -1,2 +1,2 @@ c694874fd890d5ad6f963a6d207fd4dd download/CSWpmemailsimple.gspec -e23ebf15657b6e46b69e8975740cb4b4 download/Email-Simple-2.004.tar.gz +945a8a487ba7aea909b01b84ceb1c678 download/Email-Simple-2.005.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 26 19:24:09 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 18:24:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2908] csw/mgar/pkg/gvim/trunk Message-ID: Revision: 2908 http://gar.svn.sourceforge.net/gar/?rev=2908&view=rev Author: harpchad Date: 2009-01-26 18:24:09 +0000 (Mon, 26 Jan 2009) Log Message: ----------- - update to patch level 088 - now using gar v2 - now includes 64 bit binaries (w/isaexec) - removed links to vim build directory Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile csw/mgar/pkg/gvim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gvim/trunk/files/vimtutor.patch Removed Paths: ------------- csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype csw/mgar/pkg/gvim/trunk/files/vimtutor.diff Property Changed: ---------------- csw/mgar/pkg/gvim/trunk/ Property changes on: csw/mgar/pkg/gvim/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/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 18:24:09 UTC (rev 2908) @@ -1,5 +1,7 @@ GARNAME = vim DISTVERSION = 7.2 +PATCHREV = 088 +GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php DESCRIPTION = Vi IMproved with GTK+ support @@ -13,30 +15,76 @@ #DEPENDS = utils/mktemp lib/ncurses -include ../vim/files/config.mk -DISTFILES += $(call admfiles,CSWgvim,prototype depend) +MASTER_SITES += ftp://ftp.vim.org/pub/vim/patches/$(DISTVERSION)/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/extra/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/unix/ + +DISTFILES = $(call admfiles,CSWgvim,) +DISTFILES += $(GARNAME)-$(DISTVERSION).tar.bz2 +DISTFILES += $(GARNAME)-$(DISTVERSION)-lang.tar.gz +DISTFILES += $(GARNAME)-$(DISTVERSION)-extra.tar.gz DISTFILES += gvim.desktop +PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) +PATCHFILES += vimtutor.patch + +WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-global-runtime=$(sharedstatedir)/$(GARNAME) +CONFIGURE_ARGS += --with-features=huge +CONFIGURE_ARGS += --with-tlib=ncurses +CONFIGURE_ARGS += --enable-multibyte +CONFIGURE_ARGS += --enable-cscope CONFIGURE_ARGS += --with-vim-name="vim-x11" CONFIGURE_ARGS += --enable-gui=gnome2 -include ../vim/files/patches.mk +BUILD_ARGS += "VIMRCLOC=/opt/csw/etc/vim" +BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim72" +BUILD64 = 1 +PATCHDIRLEVEL = 0 + +REQUIRED_PKGS_CSWgvim = CSWvimrt CSWbonobo2 CSWfconfig CSWftype2 CSWgconf2 +REQUIRED_PKGS_CSWgvim += CSWggettext CSWglib2 CSWgnomekeyring CSWgnomevfs2 CSWgtk2 +REQUIRED_PKGS_CSWgvim += CSWiconv CSWlibart CSWlibatk CSWlibbonoboui CSWlibcairo +REQUIRED_PKGS_CSWgvim += CSWlibgnome CSWlibgnomecanvas CSWlibgnomeui CSWlibnet CSWlibpopt +REQUIRED_PKGS_CSWgvim += CSWlibxml2 CSWlibxrender CSWncurses CSWorbit2 CSWpango +REQUIRED_PKGS_CSWgvim += CSWperl CSWpng CSWzlib + INSTALL_SCRIPTS = minimal # Test requires controlling terminal TEST_SCRIPTS = +MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/gvim-x11tutor + include gar/category.mk -# Don't install the runtime -install-minimal: - @$(INSTALL_ENV) $(MAKE) -C $(WORKSRC)/src \ - installvimbin installlinks installtools installgtutorbin +post-install-isa-sparcv8 post-install-isa-i386: mkdir -p $(DESTDIR)/opt/csw/share/pixmaps cp $(WORKSRC)/runtime/vim48x48.png $(DESTDIR)/opt/csw/share/pixmaps/gvim.png mkdir -p $(DESTDIR)/opt/csw/share/applications cp $(DOWNLOADDIR)/gvim.desktop $(DESTDIR)/opt/csw/share/applications/gvim.desktop mv $(DESTDIR)/opt/csw/bin/gvim-x11tutor $(DESTDIR)/opt/csw/bin/gvimtutor + mv $(DESTDIR)/opt/csw/bin/gvim-x11 $(DESTDIR)/opt/csw/bin/gvim + mv $(DESTDIR)/opt/csw/bin/rgvim-x11 $(DESTDIR)/opt/csw/bin/rgvim + mv $(DESTDIR)/opt/csw/bin/evim-x11 $(DESTDIR)/opt/csw/bin/evim + mv $(DESTDIR)/opt/csw/bin/gvim-x11diff $(DESTDIR)/opt/csw/bin/gvimdiff @$(MAKECOOKIE) $(DONADA) + +post-install-isa-sparcv9 post-install-isa-amd64: + mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/gvim + mv $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim + mv $(DESTDIR)/opt/csw/bin/$(ISA)/evim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/evim + mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11diff $(DESTDIR)/opt/csw/bin/$(ISA)/gvimdiff + @$(MAKECOOKIE) + $(DONADA) + +# Don't install the runtime +install-minimal: + @$(INSTALL_ENV) $(MAKE) -C $(WORKSRC)/src \ + installvimbin installglinks installgtutorbin + @$(MAKECOOKIE) + $(DONADA) Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-26 18:24:09 UTC (rev 2908) @@ -81,11 +81,14 @@ 3bdf4ec7db7976876a827f2dfa269e89 download/7.2.081 590c9aa51fcb808ece4b6b4bfaaaaf30 download/7.2.082 2a10abc536f7a69ff3ef353b55b6cb65 download/7.2.083 +78defaaa03e61955f6624b796efb8655 download/7.2.084 +869116b3e92e944d40a3e03f9a99816f download/7.2.085 +5af26f073ebeba60af90525d68a61725 download/7.2.086 +639d7a80864afe68132725e377f52f19 download/7.2.087 +44b152484534fa23c4ff531316a0e518 download/7.2.088 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 -582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.diff -2f6bf1938bfdc77a305903e70e3d1de2 download/CSWgvim.depend +582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.patch 3d2b62d6810417d562ed17aaada29868 download/CSWgvim.gspec -2b8beca0088c83291df67af00616a197 download/CSWgvim.prototype 47396843634a6e3c05d4f5d6b4bf8a72 download/gvim.desktop Deleted: csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend =================================================================== --- csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/files/CSWgvim.depend 2009-01-26 18:24:09 UTC (rev 2908) @@ -1,28 +0,0 @@ -P CSWvimrt vimrt - vim shared runtime and documentation -P CSWbonobo2 libbonobo2 - GNOME component and compound document system -P CSWfconfig fontconfig - A library for configuring and customizing font access. -P CSWftype2 freetype2 - The free and portable high quality font engine -P CSWgconf2 gconf2 - GNOME configuration database system -P CSWggettext ggettext - GNU gettext -P CSWglib2 glib2 - Low-level core library that forms the basis of GTK+ -P CSWgnomekeyring gnomekeyring - keep password and other secrets for users -P CSWgnomevfs2 gnomevfs2 - GNOME Virtual File System -P CSWgtk2 gtk2 - GTK+, The GIMP Toolkit -P CSWiconv libiconv - GNU iconv library -P CSWlibart libart - High performance 2D graphics library -P CSWlibatk libatk - Accessibility toolkit for GNOME -P CSWlibbonoboui libbonoboui - UI code for the GNOME 2 Object Activation Framework -P CSWlibcairo libcairo - The Cairo 2D Graphics Library -P CSWlibgnome libgnome - The main GNOME 2 library -P CSWlibgnomecanvas libgnomecanvas - Gnome2 Canvas Lib -P CSWlibgnomeui libgnomeui - The main GNOME 2 UI library -P CSWlibnet libnet - the libnet packet construction library -P CSWlibpopt libpopt - Command line option parsing library -P CSWlibxml2 libxml2 - XML Parser Library -P CSWlibxrender libxrender - fontconfig.org Xrender library -P CSWncurses ncurses - ncurses library and utilities -P CSWorbit2 orbit2 - ORBit 2.x CORBA tools and libs -P CSWpango libpango - Library for laying out and rendering text -P CSWperl perl - A high-level, general-purpose programming language. -P CSWpng png - library for Portable Network Graphics format (PNG) -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype =================================================================== --- csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/files/CSWgvim.prototype 2009-01-26 18:24:09 UTC (rev 2908) @@ -1,15 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/vim-x11 0755 root bin -s none /opt/csw/bin/evim=vim-x11 -s none /opt/csw/bin/eview=vim-x11 -s none /opt/csw/bin/gview=vim-x11 -s none /opt/csw/bin/gvim=vim-x11 -s none /opt/csw/bin/gvimdiff=vim-x11 -s none /opt/csw/bin/rgview=vim-x11 -s none /opt/csw/bin/rgvim=vim-x11 -f none /opt/csw/bin/gvimtutor 0755 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/pixmaps 0755 root bin -f none /opt/csw/share/pixmaps/gvim.png 0644 root bin -d none /opt/csw/share/applications 0755 root bin -f none /opt/csw/share/applications/gvim.desktop 0644 root bin Deleted: csw/mgar/pkg/gvim/trunk/files/vimtutor.diff =================================================================== --- csw/mgar/pkg/gvim/trunk/files/vimtutor.diff 2009-01-26 09:33:30 UTC (rev 2907) +++ csw/mgar/pkg/gvim/trunk/files/vimtutor.diff 2009-01-26 18:24:09 UTC (rev 2908) @@ -1 +0,0 @@ -link ../../vim/files/vimtutor.diff \ No newline at end of file Added: csw/mgar/pkg/gvim/trunk/files/vimtutor.patch =================================================================== --- csw/mgar/pkg/gvim/trunk/files/vimtutor.patch (rev 0) +++ csw/mgar/pkg/gvim/trunk/files/vimtutor.patch 2009-01-26 18:24:09 UTC (rev 2908) @@ -0,0 +1,13 @@ +*** src/vimtutor.o Thu Dec 18 23:27:44 2008 +--- src/vimtutor Thu Dec 18 23:28:10 2008 +*************** +*** 1,5 **** +--- 1,8 ---- + #! /bin/sh + ++ PATH=`dirname $0`:$PATH ++ export PATH ++ + # Start Vim on a copy of the tutor file. + + # Usage: vimtutor [-g] [xx] 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 26 20:33:46 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 19:33:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[2909] csw/mgar/pkg/vim/trunk Message-ID: Revision: 2909 http://gar.svn.sourceforge.net/gar/?rev=2909&view=rev Author: harpchad Date: 2009-01-26 19:33:45 +0000 (Mon, 26 Jan 2009) Log Message: ----------- - update to patch level 088 - now using gar v2 - now includes 64 bit binaries (w/isaexec) Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile csw/mgar/pkg/vim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/vim/trunk/files/vimtutor.patch Removed Paths: ------------- csw/mgar/pkg/vim/trunk/files/CSWvim.depend csw/mgar/pkg/vim/trunk/files/CSWvim.prototype csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype csw/mgar/pkg/vim/trunk/files/config.mk csw/mgar/pkg/vim/trunk/files/patches.mk csw/mgar/pkg/vim/trunk/files/rules.mk csw/mgar/pkg/vim/trunk/files/vimtutor.diff Property Changed: ---------------- csw/mgar/pkg/vim/trunk/ Property changes on: csw/mgar/pkg/vim/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/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,5 +1,7 @@ GARNAME = vim DISTVERSION = 7.2 +PATCHREV = 088 +GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php DESCRIPTION = Vi IMproved @@ -11,21 +13,51 @@ Unix, MS Windows, OS/2, Macintosh, VMS, and Amiga. endef -#DEPENDS = utils/mktemp lib/ncurses +MASTER_SITES += ftp://ftp.vim.org/pub/vim/patches/$(DISTVERSION)/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/extra/ +MASTER_SITES += ftp://ftp.vim.org/pub/vim/unix/ -include files/config.mk -DISTFILES += $(call admfiles,CSWvim,depend prototype) -DISTFILES += $(call admfiles,CSWvimrt,prototype) +DISTFILES += $(call admfiles,CSWvim,) +DISTFILES += $(call admfiles,CSWvimrt,) +DISTFILES += $(GARNAME)-$(DISTVERSION).tar.bz2 +DISTFILES += $(GARNAME)-$(DISTVERSION)-lang.tar.gz +DISTFILES += $(GARNAME)-$(DISTVERSION)-extra.tar.gz +PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) +PATCHFILES += vimtutor.patch + +WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) + +CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-xim CONFIGURE_ARGS += --without-x CONFIGURE_ARGS += --enable-gui=no CONFIGURE_ARGS += --disable-gpm +CONFIGURE_ARGS += --with-global-runtime=$(sharedstatedir)/$(GARNAME) +CONFIGURE_ARGS += --with-features=huge +CONFIGURE_ARGS += --with-tlib=ncurses +CONFIGURE_ARGS += --enable-multibyte +CONFIGURE_ARGS += --enable-cscope -include files/patches.mk +BUILD_ARGS = "VIMRCLOC=/opt/csw/etc/vim" +BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim72" +BUILD64 = 1 +PATCHDIRLEVEL = 0 + +REQUIRED_PKGS_CSWvim = CSWggettext CSWiconv CSWncurses CSWvimrt +INCOMPATIBLE_PKGS_CSWvim = CSWvim-minimal + +PKGFILES_CSWvimrt = $(PKGFILES_DOC) + # Test requires controlling terminal TEST_SCRIPTS = include gar/category.mk -include files/rules.mk + +post-configure: make-interps-lazy + +make-interps-lazy: + @perl -i.bak -plne \ + 's/(-l(?:perl|python|ruby|tcl)\S*)/-zlazyload $$1 -znolazyload/' \ + $(WORKSRC)/src/auto/config.mk Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/checksums 2009-01-26 19:33:45 UTC (rev 2909) @@ -81,12 +81,14 @@ 3bdf4ec7db7976876a827f2dfa269e89 download/7.2.081 590c9aa51fcb808ece4b6b4bfaaaaf30 download/7.2.082 2a10abc536f7a69ff3ef353b55b6cb65 download/7.2.083 -198b5e809eddd24650dac5ab237e26d0 download/CSWvim.depend +78defaaa03e61955f6624b796efb8655 download/7.2.084 +869116b3e92e944d40a3e03f9a99816f download/7.2.085 +5af26f073ebeba60af90525d68a61725 download/7.2.086 +639d7a80864afe68132725e377f52f19 download/7.2.087 +44b152484534fa23c4ff531316a0e518 download/7.2.088 59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec -7f886f132e8404332757262c82aac7af download/CSWvim.prototype c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec -9ca3e912af15f511018b08f568e9f9cf download/CSWvimrt.prototype 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 -582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.diff +582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.patch Deleted: csw/mgar/pkg/vim/trunk/files/CSWvim.depend =================================================================== --- csw/mgar/pkg/vim/trunk/files/CSWvim.depend 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/files/CSWvim.depend 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,5 +0,0 @@ -I CSWvim-minimal vim_minimal - Vi Improved - minimal configuration -P CSWggettext ggettext - GNU gettext -P CSWiconv libiconv - GNU iconv library -P CSWncurses ncurses - ncurses library and utilities -P CSWvimrt vimrt - vim shared runtime and documentation Deleted: csw/mgar/pkg/vim/trunk/files/CSWvim.prototype =================================================================== --- csw/mgar/pkg/vim/trunk/files/CSWvim.prototype 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/files/CSWvim.prototype 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,7 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/vim 0755 root bin -f none /opt/csw/bin/xxd 0755 root bin -s none /opt/csw/bin/rview=vim -s none /opt/csw/bin/rvim=vim -s none /opt/csw/bin/view=vim -s none /opt/csw/bin/vimdiff=vim Deleted: csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype =================================================================== --- csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype 2009-01-26 18:24:09 UTC (rev 2908) +++ csw/mgar/pkg/vim/trunk/files/CSWvimrt.prototype 2009-01-26 19:33:45 UTC (rev 2909) @@ -1,1691 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/vimtutor 0755 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/vim 0755 root bin -d none /opt/csw/share/vim/vim72 0755 root bin -d none /opt/csw/share/vim/vim72 0755 root bin -d none /opt/csw/share/vim/vim72/print 0755 root bin -f none /opt/csw/share/vim/vim72/print/cidfont.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/ks_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/koi8-u.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/ascii.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/jis_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/latin1.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/ebcdic-uk.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-3.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/hp-roman8.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-2.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/koi8-r.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cns_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-7.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-5.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/gb_roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-4.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1250.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/prolog.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1251.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1253.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-15.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-14.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1252.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-10.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1257.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/dec-mcs.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-11.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-8.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-13.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/mac-roman.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1255.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/cp1254.ps 0644 root bin -f none /opt/csw/share/vim/vim72/print/iso-8859-9.ps 0644 root bin -d none /opt/csw/share/vim/vim72/ftplugin 0755 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lftp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/verilog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/abaqus.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/css.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/grub.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitrebase.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/arch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/procmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/passwd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mrxvtrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/fetchmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/reva.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dictconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/group.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xf86conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sensors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/vhdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/aspvbs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/racc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mplayerconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/rnc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/csh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mailcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/logindefs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/flexwiki.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dircolors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/art.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/calendar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/zsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitsendemail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/bst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/debchangelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/changelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/vim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dictdconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/denyhosts.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/aap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sudoers.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cvsrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/git.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/slpreg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/btm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cobol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/a2ps.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sass.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/slpspi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/jsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/tex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pascal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xmodmap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/setserial.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/hostconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ocaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/kconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/updatedb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xslt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/scheme.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/nanorc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/services.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/protocols.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/terminfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/javascript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pinfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/help.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/loginaccess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/vb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/python.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pyrex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/alsaconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/matlab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gpg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/modconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/msmessages.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/hamster.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/occam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/framescript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lprolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xdefaults.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/automake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/m4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/indent.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xinetd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/slpconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/eterm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ishd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/diff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/quake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/objc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/kwt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/fortran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mupad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sshconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sysctl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/man.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/context.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/udevrules.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/udevperm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitcommit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sieve.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dosbatch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/haml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/svg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/limits.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sgml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/mailaliases.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/postscr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lua.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/pamconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/spec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/csc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/java.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/prolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xhtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/ld.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/config.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/logtalk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/crm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/sh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/debcontrol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/screen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/fvwm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/plaintex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/haskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/udevconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/elinks.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/yaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/tcsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/bdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/htmldjango.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/muttrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/lisp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/AppendMatchGroup.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dosini.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/libao.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/rpl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/netrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/make.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/hostsaccess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dtd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/dtrace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/readline.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/cdrdaoconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/gitconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/manconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/initex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin/nsis.vim 0644 root bin -d none /opt/csw/share/vim/vim72/indent 0755 root bin -f none /opt/csw/share/vim/vim72/indent/mma.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/java.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dtd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dtrace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/verilog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/occam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/haml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/rpl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/idlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cmake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/pyrex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dylan.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/changelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/objc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/erlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ishd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ocaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dictdconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/config.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/prolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tilde.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cobol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/javascript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/lua.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/awk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/mp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/make.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/readline.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tcsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/GenericIndent.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/lisp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ld.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/hamster.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xf86conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/fortran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sass.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xinetd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/docbk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/vb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/d.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/bib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/dictconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/matlab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/vhdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/python.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/logtalk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/jsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/framescript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/postscr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/tf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/scheme.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/pascal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/indent/aap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xhtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/yacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/zsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/bst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/vim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/pov.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/htmldjango.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/automake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/eiffel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/mupad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/cdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/css.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/gitconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/sqlanywhere.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/xslt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indent/eterm.vim 0644 root bin -d none /opt/csw/share/vim/vim72/tutor 0755 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sv.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.cs.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.no 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ko.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ja.euc 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.pl 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.tr.iso9 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.es 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.el.cp737 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hu 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hr 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ja.sjis 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.info 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ru.cp1251 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.tr.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hu.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hr.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.zh.euc 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.it.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.fr 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.el.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.el.cp737.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.vi.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.es.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.zh.big5 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ko.euc 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.cs 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ru 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.cs.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.zh.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sv 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.no.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ja.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.el.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.el 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.pl.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.pl.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hu.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.de 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.fr.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.vim 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sk.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sk.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ru.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.sk 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ca.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.de.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.ca 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.hr.cp1250 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.eo.utf-8 0644 root bin -f none /opt/csw/share/vim/vim72/tutor/tutor.it 0644 root bin -f none /opt/csw/share/vim/vim72/optwin.vim 0644 root bin -d none /opt/csw/share/vim/vim72/macros 0755 root bin -f none /opt/csw/share/vim/vim72/macros/dvorak 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm.info 0644 root bin -d none /opt/csw/share/vim/vim72/macros/urm 0755 root bin -f none /opt/csw/share/vim/vim72/macros/urm/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/urm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/examples 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/urm 0644 root bin -f none /opt/csw/share/vim/vim72/macros/urm/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/less.sh 0755 root bin -d none /opt/csw/share/vim/vim72/macros/maze 0755 root bin -f none /opt/csw/share/vim/vim72/macros/maze/Makefile 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze_mac 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/poster.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/poster 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze_5.78.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/mazeansi.c 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/main.aap 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/mazeclean.c 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze_5.78 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze/maze.c 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/maze.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/shellmenu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/matchit.vim 0644 root bin -d none /opt/csw/share/vim/vim72/macros/hanoi 0755 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/hanoi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/poster.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/poster 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/click.me.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/hanoi/click.me 0644 root bin -f none /opt/csw/share/vim/vim72/macros/matchit.txt 0644 root bin -d none /opt/csw/share/vim/vim72/macros/life 0755 root bin -f none /opt/csw/share/vim/vim72/macros/life/click.me.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/life/life.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/life/click.me 0644 root bin -f none /opt/csw/share/vim/vim72/macros/justify.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/swapmous.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/README.txt.info 0644 root bin -f none /opt/csw/share/vim/vim72/macros/less.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/editexisting.vim 0644 root bin -f none /opt/csw/share/vim/vim72/macros/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/indent.vim 0644 root bin -d none /opt/csw/share/vim/vim72/compiler 0755 root bin -f none /opt/csw/share/vim/vim72/compiler/gnat.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/onsgmls.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_cv.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/javac.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/rubyunit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/tcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/tidy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/modelsim_vcom.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/bcc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/bdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/msvc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/se.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/rspec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_g77.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fpc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/xmlwf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mipspro_c89.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/dot.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/pbx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/pyunit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/jikes.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/gcc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mipspro_cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/intel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/splint.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/checkstyle.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_lf95.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/neato.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/tex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/icc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/irix5_cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/xmllint.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/hp_acc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mips_c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/mcs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_elf90.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/decada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/irix5_c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/compiler/fortran_F.vim 0644 root bin -f none /opt/csw/share/vim/vim72/synmenu.vim 0644 root bin -d none /opt/csw/share/vim/vim72/tools 0755 root bin -f none /opt/csw/share/vim/vim72/tools/efm_perl.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/efm_filter.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/vimspell.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/pltags.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/ccfilter.1 0644 root bin -f none /opt/csw/share/vim/vim72/tools/ref 0755 root bin -f none /opt/csw/share/vim/vim72/tools/vimm 0755 root bin -f none /opt/csw/share/vim/vim72/tools/mve.awk 0755 root bin -f none /opt/csw/share/vim/vim72/tools/vim_vs_net.cmd 0644 root bin -f none /opt/csw/share/vim/vim72/tools/vim132 0755 root bin -f none /opt/csw/share/vim/vim72/tools/xcmdsrv_client.c 0644 root bin -f none /opt/csw/share/vim/vim72/tools/ccfilter.c 0644 root bin -f none /opt/csw/share/vim/vim72/tools/blink.c 0644 root bin -f none /opt/csw/share/vim/vim72/tools/shtags.1 0644 root bin -f none /opt/csw/share/vim/vim72/tools/vimspell.sh 0755 root bin -f none /opt/csw/share/vim/vim72/tools/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/ccfilter_README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/tools/efm_filter.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/shtags.pl 0755 root bin -f none /opt/csw/share/vim/vim72/tools/mve.txt 0644 root bin -f none /opt/csw/share/vim/vim72/vimrc_example.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftoff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/gvimrc_example.vim 0644 root bin -f none /opt/csw/share/vim/vim72/menu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/scripts.vim 0644 root bin -d none /opt/csw/share/vim/vim72/spell 0755 root bin -f none /opt/csw/share/vim/vim72/spell/en.latin1.sug 0644 root bin -f none /opt/csw/share/vim/vim72/spell/yi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.latin1.spl 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.utf-8.sug 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.ascii.spl 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.utf-8.spl 0644 root bin -f none /opt/csw/share/vim/vim72/spell/en.ascii.sug 0644 root bin -f none /opt/csw/share/vim/vim72/spell/he.vim 0644 root bin -f none /opt/csw/share/vim/vim72/spell/cleanadd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/evim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/ftplugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/mswin.vim 0644 root bin -d none /opt/csw/share/vim/vim72/syntax 0755 root bin -f none /opt/csw/share/vim/vim72/syntax/debsources.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pinfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/flexwiki.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/postscr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cuda.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cynlib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rpcgen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/texmf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ecd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smil.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bzr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abaqus.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gkrellmrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/freebasic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/btm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitcommit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlforms.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/git.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lite.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aflex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/yacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pamconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pod.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/conaryrecipe.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/icemenu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/scilab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/simula.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xf86conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/passwd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/moo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dylan.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rcslog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aspvbs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/litestep.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/focexec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dictconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/art.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/2html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aspperl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/colortest.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mmix.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/zsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wvdial.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/b.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tssop.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modsim3.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sindacmp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/logtalk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cterm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/acedb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tads.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lifelines.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/procmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eiffel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/groovy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/takout.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mush.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ocaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pov.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pccts.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jgraph.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fgl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sgmldecl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plsql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/texinfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/help.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/uil.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fdcc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dsl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlinformix.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/elf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nroff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/maple.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vera.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/syntax.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xquery.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dcd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/atlas.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rexx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/aml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/autoit.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/named.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/foxpro.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rnc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/antlr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rtf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hitest.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/csh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slpreg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pyrex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spice.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fortran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mmp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tsscl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asn.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/chordpro.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/css.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/purifylog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/exports.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cmake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/prescribe.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/icon.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/udevrules.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slpspi.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/winbatch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/qf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sas.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/openroad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/context.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xslt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/clean.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sshconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snnsres.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fvwm2m4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/occam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rnoweb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/calendar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/manual.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/group.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wdiff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ratpoison.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/m4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pascal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/docbkxml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/groff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cvs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ora.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/c.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/def.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xpm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/clipper.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nastran.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/a2ps.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mailaliases.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nanorc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/z8a.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/terminfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/scheme.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wget.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/samba.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/d.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/services.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sass.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slice.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/webmacro.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/chaskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/po.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mason.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lpc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/msmessages.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gpg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/web.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sather.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lout.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/progress.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/updatedb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/valgrind.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/debchangelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ppwiz.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/python.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hostconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vsejcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lss.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ruby.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitsendemail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cfg.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gtkrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/manconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ncf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/haste.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/inform.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hastepreproc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xpm2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/opl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sinda.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/matlab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cvsrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vhdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmlos.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pfmain.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/virata.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sendpr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lotos.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/skill.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xxd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bindzone.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/racc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/automake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snnspat.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cobol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tilde.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lynx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/haskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/javascript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ayacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ldapconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nqc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jsp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/indent.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xinetd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tidy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/master.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lftp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vmasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vrml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/desc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/arch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cheetah.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cynpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/esmtprc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/grub.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mysql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dylanintr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ahdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tssgm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/objcpp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/alsaconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ipfilter.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ctrlh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/reva.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ant.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/framescript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/a65.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gedcom.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sindaout.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqloracle.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/udevperm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/verilogams.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/model.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dylanlid.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sgmllnx.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sicad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sed.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xbl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/natural.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cdrtoc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slrnrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dircolors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tsalt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/initng.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dracula.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmlcheetah.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/edif.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/takcmp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/wsml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jargon.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/strace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ld.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/changelog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rst.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/robots.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nsis.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sudoers.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sisu.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/uc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ampl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/denyhosts.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/elmfilt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dictdconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/promela.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/awk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lua.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/radiance.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eviews.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smith.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/chill.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/catalog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/svn.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/specman.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/make.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sysctl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lilo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/esterel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sshdconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/csc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gitrebase.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kwt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jam.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/perl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/limits.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lsl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/yaml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tcsh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/verilog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/amiga.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmlm4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/nosyntax.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/monk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spyce.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ibasic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/man.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lisp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fetchmail.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/viminfo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gdb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snnsnet.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/docbksgml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cupl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/trasys.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/exim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mrxvtrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/forth.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sensors.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/libao.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/apachestyle.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/registry.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/latte.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/loginaccess.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/msidl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/remind.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gdmo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sdl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smarty.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cmusrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fvwm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pilrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xmath.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modula2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/masm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/conf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dot.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/diva.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mailcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/r.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/logindefs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pike.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/config.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tags.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/netrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rebol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/docbk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kix.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlj.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dosbatch.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/prolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mma.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rib.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lscript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/autohotkey.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/quake.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/screen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ptcap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xkb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cweb.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/doxygen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dtd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mgl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mupad.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/java.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/basic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ppd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/maxima.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/whitespace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spup.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/syncolor.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tli.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/squid.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cdrdaoconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/synload.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sqlanywhere.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hamster.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hercules.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ldif.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/udevconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pine.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/inittab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dns.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/erlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/snobol4.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sgml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/esqlc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xdefaults.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/eterm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/haml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fasm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lprolog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/elinks.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rpl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/cuplsim.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/fstab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/csp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slpconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/pic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/omnimark.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abel.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/javacc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plaintex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/muttrc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/voscm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/desktop.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/lhaskell.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mgp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rcs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/grads.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/spec.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/psf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/objc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asterisk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/coco.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/setserial.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/idlang.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/diff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/html.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dosini.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gnuplot.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/plp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/apache.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/vgrindefs.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xmodmap.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/rhelp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/bdf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/slrnsc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/htmldjango.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/abc.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/crontab.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/tcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/messages.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/modula3.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/idl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/xhtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/readline.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/phtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kconfig.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/privoxy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/st.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/baan.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/smcl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/hog.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/php.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/resolv.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/crm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ia64.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/blank.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sieve.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/iss.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/msql.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/dtrace.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ave.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/netrw.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/papp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ist.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/django.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/ishd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sh.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/mplayerconf.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asmh8300.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/protocols.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/stp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/debcontrol.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asm68k.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jal.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/gretl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/change.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/jproperties.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/sml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/povini.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/asteriskvm.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/stata.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/kscript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/expect.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/initex.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/splint.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/form.vim 0644 root bin -f none /opt/csw/share/vim/vim72/syntax/trustees.vim 0644 root bin -d none /opt/csw/share/vim/vim72/colors 0755 root bin -f none /opt/csw/share/vim/vim72/colors/slate.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/blue.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/darkblue.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/zellner.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/evening.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/peachpuff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/koehler.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/ron.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/shine.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/elflord.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/murphy.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/pablo.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/default.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/morning.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/torte.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/colors/desert.vim 0644 root bin -f none /opt/csw/share/vim/vim72/colors/delek.vim 0644 root bin -d none /opt/csw/share/vim/vim72/keymap 0755 root bin -f none /opt/csw/share/vim/vim72/keymap/persian.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp_cp1255.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/esperanto_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian-latin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/arabic_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/sinhala-phonetic_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/esperanto.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/lithuanian-baltic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_iso-8859-7.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/czech_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/mongolian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_cp1251.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/ukrainian-jcuken.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/thaana-phonetic_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/canfr-win.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_cp737.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian-latin_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-jcuken.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/tamil_tscii.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak_cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-jcukenwin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/thaana.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/slovak_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/vietnamese-viqr_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/kana.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/bulgarian-bds.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/greek_cp1253.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrewp_iso-8859-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/persian-iranian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/sinhala.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_iso-8859-5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/serbian_iso-8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew_iso-8859-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-dvorak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_cp852.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/russian-yawerty.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/accents.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/croatian_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/magyar_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/ukrainian-dvorak.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/polish-slash_utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/czech.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/pinyin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/arabic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/bulgarian-phonetic.vim 0644 root bin -f none /opt/csw/share/vim/vim72/keymap/hebrew_cp1255.vim 0644 root bin -d none /opt/csw/share/vim/vim72/autoload 0755 root bin -f none /opt/csw/share/vim/vim72/autoload/gnat.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/csscomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/javascriptcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/netrwSettings.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xmlcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/netrw.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/sqlcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/adacomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/phpcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/ada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/tar.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/rubycomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/paste.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/zip.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/ccomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/netrwFileHandlers.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/vimball.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/pythoncomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/syntaxcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/htmlcomplete.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/gzip.vim 0644 root bin -d none /opt/csw/share/vim/vim72/autoload/xml 0755 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml10f.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml10s.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xsl.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml10t.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html401f.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html401t.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html401s.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xhtml11.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/xsd.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html32.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html40f.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html40s.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/xml/html40t.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/decada.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/getscript.vim 0644 root bin -f none /opt/csw/share/vim/vim72/autoload/spellfile.vim 0644 root bin -f none /opt/csw/share/vim/vim72/bugreport.vim 0644 root bin -d none /opt/csw/share/vim/vim72/plugin 0755 root bin -f none /opt/csw/share/vim/vim72/plugin/netrwPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/tarPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/rrhelper.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/gzip.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/zipPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/tohtml.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/vimballPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/README.txt 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/getscriptPlugin.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/spellfile.vim 0644 root bin -f none /opt/csw/share/vim/vim72/plugin/matchparen.vim 0644 root bin -f none /opt/csw/share/vim/vim72/indoff.vim 0644 root bin -f none /opt/csw/share/vim/vim72/filetype.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang 0755 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_br.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese(gb)_gb.936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko_kr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_finnish_finland.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_eo_eo.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.cp932.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/sk 0755 root bin -d none /opt/csw/share/vim/vim72/lang/sk/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/sk/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv_se.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_vi_vn.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_eo.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr_fr.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs_cz.iso_8859-2.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/it 0755 root bin -d none /opt/csw/share/vim/vim72/lang/it/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/it/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_br.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese(taiwan)_taiwan.950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese_gb.936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_pt.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.ujis.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ca 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ca/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ca/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_en_gb.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca_es.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_italian_italy.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_czech_czech_republic.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sl_si.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/pt_BR 0755 root bin -d none /opt/csw/share/vim/vim72/lang/pt_BR/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/pt_BR/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi_fi.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/eo 0755 root bin -d none /opt/csw/share/vim/vim72/lang/eo/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/eo/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de_de.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl_pl.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_uk_ua.koi8-u.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ko 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ko/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ko/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sl_si.latin2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.cp936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.ujis.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/sv 0755 root bin -d none /opt/csw/share/vim/vim72/lang/sv/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/sv/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es_es.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_slovak_slovak_republic.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/README.txt 0644 root bin -d none /opt/csw/share/vim/vim72/lang/fi 0755 root bin -d none /opt/csw/share/vim/vim72/lang/fi/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/fi/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.eucjp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk.cp1250.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/en_GB 0755 root bin -d none /opt/csw/share/vim/vim72/lang/en_GB/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/en_GB/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_pt.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko_kr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr_fr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af_af.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ru 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ru/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ru/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_polish_poland.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru_ru.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/uk 0755 root bin -d none /opt/csw/share/vim/vim72/lang/uk/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/uk/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru_ru.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ja 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ja/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ja/LC_MESSAGES/vim.mo 0644 root bin -d none /opt/csw/share/vim/vim72/lang/de 0755 root bin -d none /opt/csw/share/vim/vim72/lang/de/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/de/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl_pl.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu_hu.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/vi 0755 root bin -d none /opt/csw/share/vim/vim72/lang/vi/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/vi/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de_de.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.big5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_japanese_japan.932.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_spanish_spain.850.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_tw.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.euc-jp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca_es.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es_es.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.cp936.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.ascii.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af_af.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/fr 0755 root bin -d none /opt/csw/share/vim/vim72/lang/fr/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/fr/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fi_fi.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_czech_czech_republic.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_eo_xx.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_TW/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs_cz.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_en_gb.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it_it.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs_cz.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl_nl.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_tw.big5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pl_pl.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_german_germany.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.euc-jp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.eucjp.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_french_france.1252.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/cs 0755 root bin -d none /opt/csw/share/vim/vim72/lang/cs/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/cs/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sl_si.cp1250.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_de.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_uk_ua.cp1251.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_CN/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_english_united_kingdom.ascii.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_fr.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ca.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no_no.latin1.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/af 0755 root bin -d none /opt/csw/share/vim/vim72/lang/af/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/af/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_nl_nl.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.iso_8859-5.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_af.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.cp950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ko_kr.euckr.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr_yu.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_chinese_taiwan.950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_br.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_czech_czech_republic.ascii.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/es 0755 root bin -d none /opt/csw/share/vim/vim72/lang/es/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/es/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_no_no.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/pl 0755 root bin -d none /opt/csw/share/vim/vim72/lang/pl/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/pl/LC_MESSAGES/vim.mo 0644 root bin -d none /opt/csw/share/vim/vim72/lang/no 0755 root bin -d none /opt/csw/share/vim/vim72/lang/no/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/no/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sk_sk.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sr.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs.latin1.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_english_united_kingdom.1252.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_cs.cp1250.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW.UTF-8 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_TW.UTF-8/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_TW.UTF-8/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_es.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh.gb2312.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.18030.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.gbk.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_pt_pt.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu.iso_8859-2.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_hu_hu.utf-8.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/ga 0755 root bin -d none /opt/csw/share/vim/vim72/lang/ga/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/ga/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it_it.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_it.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_sv_se.utf-8.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ru_ru.koi8-r.vim 0644 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN.UTF-8 0755 root bin -d none /opt/csw/share/vim/vim72/lang/zh_CN.UTF-8/LC_MESSAGES 0755 root bin -f none /opt/csw/share/vim/vim72/lang/zh_CN.UTF-8/LC_MESSAGES/vim.mo 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_tw.cp950.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_ja_jp.cp932.vim 0644 root bin -f none /opt/csw/share/vim/vim72/lang/menu_zh_cn.gb2312.vim 0644 root bin -f none /opt/csw/share/vim/vim72/delmenu.vim 0644 root bin -d none /opt/csw/share/vim/vim72/doc 0755 root bin -f none /opt/csw/share/vim/vim72/doc/version5.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/todo.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/editing.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/quotes.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/autocmd.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/change.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/hebrew.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_03.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_os2.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/scroll.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_04.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/tagsrch.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/fold.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_31.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_msdos.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/rileft.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_beos.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_44.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_43.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/gui.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/message.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/vi_diff.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/tags 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_29.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_27.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/farsi.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_mac.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_pyth.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/ft_sql.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_spec.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_20.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/spell.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_12.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pattern.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/ft_ada.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_qnx.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/map.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_42.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/russian.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_45.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_30.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/various.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/starting.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_05.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_02.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/howto.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_amiga.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/intro.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_mint.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_getscript.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/version4.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/remote.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/help.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_mzsch.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_sniff.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_21.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_26.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/mlang.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_ruby.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/digraph.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_tar.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_ole.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_28.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_risc.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_gzip.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/quickref.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/sign.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_unix.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/vim2html.pl 0755 root bin -f none /opt/csw/share/vim/vim72/doc/tabpage.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_perl.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/gui_w16.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/netbeans.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/indent.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_10.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/print.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/index.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_25.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/tips.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/visual.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_tcl.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_22.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/workshop.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/recover.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/options.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/mbyte.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/cmdline.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_90.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_paren.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_41.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_netrw.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/diff.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/gui_w32.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_zip.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_01.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/windows.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_06.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/motion.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/filetype.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/usr_08.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/version7.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/if_cscop.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/hangulin.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_vms.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/os_390.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/uganda.txt 0644 root bin -f none /opt/csw/share/vim/vim72/doc/pi_vimball.txt 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 Mon Jan 26 21:15:49 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 20:15:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[2910] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2910 http://gar.svn.sourceforge.net/gar/?rev=2910&view=rev Author: harpchad Date: 2009-01-26 20:15:49 +0000 (Mon, 26 Jan 2009) Log Message: ----------- Add rules to put files in correct packages Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 19:33:45 UTC (rev 2909) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 20:15:49 UTC (rev 2910) @@ -48,7 +48,8 @@ REQUIRED_PKGS_CSWvim = CSWggettext CSWiconv CSWncurses CSWvimrt INCOMPATIBLE_PKGS_CSWvim = CSWvim-minimal -PKGFILES_CSWvimrt = $(PKGFILES_DOC) +MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/vimtutor +PKGFILES_CSWvimrt = /opt/csw/share/.* # Test requires controlling terminal 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 Mon Jan 26 21:22:45 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 20:22:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[2911] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2911 http://gar.svn.sourceforge.net/gar/?rev=2911&view=rev Author: harpchad Date: 2009-01-26 20:22:45 +0000 (Mon, 26 Jan 2009) Log Message: ----------- fix vimtutor Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 20:15:49 UTC (rev 2910) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-26 20:22:45 UTC (rev 2911) @@ -57,8 +57,6 @@ # Test requires controlling terminal TEST_SCRIPTS = -MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/gvim-x11tutor - include gar/category.mk post-install-isa-sparcv8 post-install-isa-i386: @@ -75,6 +73,7 @@ $(DONADA) post-install-isa-sparcv9 post-install-isa-amd64: + mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11tutor $(DESTDIR)/opt/csw/bin/$(ISA)/gvimtutor mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/gvim mv $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim mv $(DESTDIR)/opt/csw/bin/$(ISA)/evim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/evim 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 26 21:23:21 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Mon, 26 Jan 2009 20:23:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[2912] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2912 http://gar.svn.sourceforge.net/gar/?rev=2912&view=rev Author: harpchad Date: 2009-01-26 20:23:21 +0000 (Mon, 26 Jan 2009) Log Message: ----------- fix vimtutor Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 20:22:45 UTC (rev 2911) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-26 20:23:21 UTC (rev 2912) @@ -48,7 +48,6 @@ REQUIRED_PKGS_CSWvim = CSWggettext CSWiconv CSWncurses CSWvimrt INCOMPATIBLE_PKGS_CSWvim = CSWvim-minimal -MERGE_EXCLUDE_FILES = /opt/csw/bin/sparcv9/vimtutor PKGFILES_CSWvimrt = /opt/csw/share/.* # Test requires controlling terminal 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 27 10:16:43 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Jan 2009 09:16:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2913] csw/mgar/pkg/cpan/Net-DNS/trunk Message-ID: Revision: 2913 http://gar.svn.sourceforge.net/gar/?rev=2913&view=rev Author: bonivart Date: 2009-01-27 09:16:43 +0000 (Tue, 27 Jan 2009) Log Message: ----------- net-dns: update to 0.65 Modified Paths: -------------- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile csw/mgar/pkg/cpan/Net-DNS/trunk/checksums Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-26 20:23:21 UTC (rev 2912) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/Makefile 2009-01-27 09:16:43 UTC (rev 2913) @@ -1,5 +1,5 @@ GARNAME = Net-DNS -GARVERSION = 0.64 +GARVERSION = 0.65 CATEGORIES = cpan AUTHOR = OLAF Modified: csw/mgar/pkg/cpan/Net-DNS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-DNS/trunk/checksums 2009-01-26 20:23:21 UTC (rev 2912) +++ csw/mgar/pkg/cpan/Net-DNS/trunk/checksums 2009-01-27 09:16:43 UTC (rev 2913) @@ -1,2 +1,2 @@ ec522b0bede886bfe23f1610d74954fe download/CSWpmnetdns.gspec -08aa3357707bf5d904d40f25ff4a34b6 download/Net-DNS-0.64.tar.gz +54e5a12a20de39b954a93723927ac789 download/Net-DNS-0.65.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 27 18:22:24 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Jan 2009 17:22:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2914] csw/mgar/pkg/dhcp/trunk Message-ID: Revision: 2914 http://gar.svn.sourceforge.net/gar/?rev=2914&view=rev Author: bonivart Date: 2009-01-27 17:22:24 +0000 (Tue, 27 Jan 2009) Log Message: ----------- dhcp: fixed doc and init script Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile csw/mgar/pkg/dhcp/trunk/checksums csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 17:22:24 UTC (rev 2914) @@ -34,7 +34,7 @@ PKGFILES_CSWdhcpdevel = $(PKGFILES_DEVEL) -ENABLE_CHECK = 0 +#ENABLE_CHECK = 0 INSTALL_SCRIPTS = custom Modified: csw/mgar/pkg/dhcp/trunk/checksums =================================================================== --- csw/mgar/pkg/dhcp/trunk/checksums 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/checksums 2009-01-27 17:22:24 UTC (rev 2914) @@ -1,4 +1,3 @@ 1fffed2e8c3d67b111316d6a9b33db7a download/dhcp-4.1.0.tar.gz 688cb75529efcf37de7526cd4111eea9 download/CSWdhcp.gspec -4c15df7a456274832321edd6c2c85ba4 download/CSWdhcp.preremove 5d8f4f34a43f235e28db4da8ecb1837d download/CSWdhcpdevel.gspec Modified: csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW =================================================================== --- csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.README.CSW 2009-01-27 17:22:24 UTC (rev 2914) @@ -9,9 +9,10 @@ Installation ------------ 1. Modify the dhcpd.conf file in /etc/opt/csw. -2. Start DHCP with "/etc/init.d/cswdhcp start". +2. Start DHCP with "/etc/init.d/cswdhcpd start" or + with "svcadm enable cswdhcpd" if you use SMF. -More info here: http://www.isc.org/products/DHCP/. +More info here: http://www.isc.org/sw/dhcp/. -bonivart/071024 +bonivart/090127 Modified: csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd =================================================================== --- csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd 2009-01-27 09:16:43 UTC (rev 2913) +++ csw/mgar/pkg/dhcp/trunk/files/CSWdhcp.cswdhcpd 2009-01-27 17:22:24 UTC (rev 2914) @@ -1,18 +1,20 @@ #!/sbin/sh # rc-script for CSW DHCP -# Peter Bonivart, 2008-12-21 +# Peter Bonivart, 2009-01-27 PID=/var/opt/csw/dhcp/dhcpd.pid -#OPTIONS="-cf /opt/csw/etc/dhcpd.conf" # use old location of conf file +#CONF=/opt/csw/etc/dhcpd.conf # use old location of conf file +CONF=/etc/opt/csw/dhcpd.conf +OPTIONS="-pf /var/opt/csw/dhcp/dhcpd.pid" ZONE= # used for initialization, do not change case "$1" in 'start') - if [ -f /opt/csw/sbin/dhcpd -a -f /etc/opt/csw/dhcpd.conf ]; then + if [ -f /opt/csw/sbin/dhcpd -a -f $CONF ]; then echo 'Starting dhcp.' - /opt/csw/sbin/dhcpd $OPTIONS & + /opt/csw/sbin/dhcpd -cf $CONF $OPTIONS fi ;; 'stop') 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 27 19:19:26 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 27 Jan 2009 18:19:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[2915] csw/mgar/pkg/dhcp/trunk/Makefile Message-ID: Revision: 2915 http://gar.svn.sourceforge.net/gar/?rev=2915&view=rev Author: bonivart Date: 2009-01-27 18:19:26 +0000 (Tue, 27 Jan 2009) Log Message: ----------- dhcp: fix file perm Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 17:22:24 UTC (rev 2914) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-01-27 18:19:26 UTC (rev 2915) @@ -51,6 +51,7 @@ gmake DESTDIR=$(DESTDIR) install ) @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @cp $(FILEDIR)/CSWdhcp.cswdhcpd $(DESTDIR)/etc/opt/csw/init.d/cswdhcpd + @chmod 755 $(DESTDIR)/etc/opt/csw/init.d/cswdhcpd @( cd $(DESTDIR)/etc/opt/csw ; \ mv dhcpd.conf dhcpd.conf.CSW ; \ mv dhclient.conf dhclient.conf.CSW ) 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 28 02:01:23 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 01:01:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[2916] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2916 http://gar.svn.sourceforge.net/gar/?rev=2916&view=rev Author: harpchad Date: 2009-01-28 01:01:22 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Adjust isaexec binaries Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-27 18:19:26 UTC (rev 2915) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 01:01:22 UTC (rev 2916) @@ -57,6 +57,33 @@ # Test requires controlling terminal TEST_SCRIPTS = +ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/gview +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rgvim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rgview +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvimdiff +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvimtutor +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/evim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/eview + +MERGE_EXCLUDE_FILES_isa-sparcv9 = /opt/csw/bin/sparcv9/gview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rgvim-x11 +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rgview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/eview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/evim-x11 +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/gvim-x11diff +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/gvim-x11 +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/gvim-x11tutor + +MERGE_EXCLUDE_FILES_isa-amd64 = /opt/csw/bin/amd64/gview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rgvim-x11 +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rgview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/eview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/evim-x11 +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/gvim-x11diff +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/gvim-x11 +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/gvim-x11tutor + include gar/category.mk post-install-isa-sparcv8 post-install-isa-i386: @@ -72,15 +99,6 @@ @$(MAKECOOKIE) $(DONADA) -post-install-isa-sparcv9 post-install-isa-amd64: - mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11tutor $(DESTDIR)/opt/csw/bin/$(ISA)/gvimtutor - mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/gvim - mv $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/rgvim - mv $(DESTDIR)/opt/csw/bin/$(ISA)/evim-x11 $(DESTDIR)/opt/csw/bin/$(ISA)/evim - mv $(DESTDIR)/opt/csw/bin/$(ISA)/gvim-x11diff $(DESTDIR)/opt/csw/bin/$(ISA)/gvimdiff - @$(MAKECOOKIE) - $(DONADA) - # Don't install the runtime install-minimal: @$(INSTALL_ENV) $(MAKE) -C $(WORKSRC)/src \ 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 28 02:02:18 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 01:02:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[2917] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2917 http://gar.svn.sourceforge.net/gar/?rev=2917&view=rev Author: harpchad Date: 2009-01-28 01:02:18 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Adjust isaexec binaries Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 01:01:22 UTC (rev 2916) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 01:02:18 UTC (rev 2917) @@ -50,6 +50,27 @@ PKGFILES_CSWvimrt = /opt/csw/share/.* +ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/view +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rvim +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/rview +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/vimdiff +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/ex +ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/vimtutor + +MERGE_EXCLUDE_FILES_isa-sparcv9 = /opt/csw/bin/sparcv9/view +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rvim +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/rview +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/vimdiff +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/ex +MERGE_EXCLUDE_FILES_isa-sparcv9 += /opt/csw/bin/sparcv9/vimtutor + +MERGE_EXCLUDE_FILES_isa-amd64 = /opt/csw/bin/amd64/view +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rvim +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/rview +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimdiff +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/ex +MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimtutor + # Test requires controlling terminal TEST_SCRIPTS = 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 28 11:30:53 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 28 Jan 2009 10:30:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[2918] csw/mgar/gar/v2 Message-ID: Revision: 2918 http://gar.svn.sourceforge.net/gar/?rev=2918&view=rev Author: dmichelsen Date: 2009-01-28 10:30:53 +0000 (Wed, 28 Jan 2009) Log Message: ----------- mGAR v2: Add ISAEXEC_EXCLUDE_FILES and remove unused code Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-01-28 01:02:18 UTC (rev 2917) +++ csw/mgar/gar/v2/gar.conf.mk 2009-01-28 10:30:53 UTC (rev 2918) @@ -611,7 +611,6 @@ @echo @echo " ISAEXEC dirs: $(ISAEXEC_DIRS)" @echo " ISAEXEC files: $(ISAEXEC_FILES)" - @echo " ISA relocated: $(ISA_RELOCATE_FILES)" @echo @echo " Merge include: $(_MERGE_INCLUDE_FILES)" @echo " Merge exclude: $(_MERGE_EXCLUDE_FILES)" Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-01-28 01:02:18 UTC (rev 2917) +++ csw/mgar/gar/v2/gar.mk 2009-01-28 10:30:53 UTC (rev 2918) @@ -489,11 +489,12 @@ endif # These directories get relocated into their ISA subdirectories -#ISA_RELOCATE_DIRS ?= $(ISA_RELOCATE_DIRS_$(ISA)) MERGE_DIRS ?= $(MERGE_DIRS_$(MODULATION)) # These files get relocated and will be replaced by the isaexec-wrapper -_ISAEXEC_FILES = $(wildcard $(foreach D,$(ISAEXEC_DIRS),$(PKGROOT)$(D)/* )) +_ISAEXEC_FILES = $(filter-out $(foreach F,$(ISAEXEC_EXCLUDE_FILES),$(PKGROOT)$(F)), \ + $(wildcard $(foreach D,$(ISAEXEC_DIRS),$(PKGROOT)$(D)/* )) \ + ) ISAEXEC_FILES ?= $(if $(_ISAEXEC_FILES),$(patsubst $(PKGROOT)%,%, \ $(shell for F in $(_ISAEXEC_FILES); do \ if test -f "$$F"; then echo $$F; fi; \ @@ -503,11 +504,6 @@ _EXTRA_GAR_PKGS += CSWisaexec endif -# These files get relocated. -# MERGE_DIRS is expanded to individual files here. All further -# processing is done using these files. -ISA_RELOCATE_FILES ?= $(patsubst $(PKGROOT)%,%,$(wildcard $(foreach D,$(MERGE_DIRS),$(PKGROOT)$(D)/*))) $(ISAEXEC_FILES) $(EXTRA_ISA_RELOCATE_FILES) - # These merge-rules are actually processed for the current modulation MERGE_TARGETS ?= $(addprefix merge-,$(MERGE_SCRIPTS_$(MODULATION))) $(EXTRA_MERGE_TARGETS) 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 28 15:15:44 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 28 Jan 2009 14:15:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2919] csw/mgar/pkg Message-ID: Revision: 2919 http://gar.svn.sourceforge.net/gar/?rev=2919&view=rev Author: bonivart Date: 2009-01-28 14:15:43 +0000 (Wed, 28 Jan 2009) Log Message: ----------- transmission: initial commit Added Paths: ----------- csw/mgar/pkg/transmission/ csw/mgar/pkg/transmission/branches/ csw/mgar/pkg/transmission/tags/ csw/mgar/pkg/transmission/trunk/ csw/mgar/pkg/transmission/trunk/Makefile csw/mgar/pkg/transmission/trunk/checksums csw/mgar/pkg/transmission/trunk/files/ csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec Property changes on: csw/mgar/pkg/transmission/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/transmission/trunk/Makefile =================================================================== --- csw/mgar/pkg/transmission/trunk/Makefile (rev 0) +++ csw/mgar/pkg/transmission/trunk/Makefile 2009-01-28 14:15:43 UTC (rev 2919) @@ -0,0 +1,21 @@ +GARNAME = transmission +GARVERSION = 1.42 +CATEGORIES = net + +DESCRIPTION = Fast, easy, and free multi-platform BitTorrent client +define BLURB +endef + +MASTER_SITES = http://mirrors.m0k.org/transmission/files/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(call admfiles,CSWtransmission,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 + +GARCOMPILER = GNU + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk +PATH := /opt/csw/gnu:$(PATH) Added: csw/mgar/pkg/transmission/trunk/checksums =================================================================== --- csw/mgar/pkg/transmission/trunk/checksums (rev 0) +++ csw/mgar/pkg/transmission/trunk/checksums 2009-01-28 14:15:43 UTC (rev 2919) @@ -0,0 +1,2 @@ +c083bdcb01426466e80ee339bccd9351 download/transmission-1.42.tar.bz2 +0b6395df62da35201f8663ceea204f51 download/CSWtransmission.gspec Added: csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec =================================================================== --- csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec (rev 0) +++ csw/mgar/pkg/transmission/trunk/files/CSWtransmission.gspec 2009-01-28 14:15:43 UTC (rev 2919) @@ -0,0 +1,4 @@ +%var bitname transmission +%var pkgname CSWtransmission +%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 harpchad at users.sourceforge.net Wed Jan 28 17:05:19 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:05:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[2920] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2920 http://gar.svn.sourceforge.net/gar/?rev=2920&view=rev Author: harpchad Date: 2009-01-28 16:05:19 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 14:15:43 UTC (rev 2919) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 16:05:19 UTC (rev 2920) @@ -54,8 +54,8 @@ INSTALL_SCRIPTS = minimal -# Test requires controlling terminal -TEST_SCRIPTS = +# Note: Tests require controlling terminal +TEST_SCRIPTS = test ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/gview ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvim 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 28 17:07:31 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:07:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2921] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2921 http://gar.svn.sourceforge.net/gar/?rev=2921&view=rev Author: harpchad Date: 2009-01-28 16:07:30 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:05:19 UTC (rev 2920) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:07:30 UTC (rev 2921) @@ -71,8 +71,8 @@ MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/ex MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimtutor -# Test requires controlling terminal -TEST_SCRIPTS = +# Note: Tests require controlling terminal +TEST_SCRIPTS = test include gar/category.mk 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 28 17:30:09 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:30:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[2922] csw/mgar/pkg/vim/trunk/Makefile Message-ID: Revision: 2922 http://gar.svn.sourceforge.net/gar/?rev=2922&view=rev Author: harpchad Date: 2009-01-28 16:30:08 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:07:30 UTC (rev 2921) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 16:30:08 UTC (rev 2922) @@ -72,7 +72,7 @@ MERGE_EXCLUDE_FILES_isa-amd64 += /opt/csw/bin/amd64/vimtutor # Note: Tests require controlling terminal -TEST_SCRIPTS = test +TEST_TARGET = test include gar/category.mk 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 28 17:31:00 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 16:31:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[2923] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2923 http://gar.svn.sourceforge.net/gar/?rev=2923&view=rev Author: harpchad Date: 2009-01-28 16:30:59 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Enable tests Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 16:30:08 UTC (rev 2922) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 16:30:59 UTC (rev 2923) @@ -55,7 +55,7 @@ INSTALL_SCRIPTS = minimal # Note: Tests require controlling terminal -TEST_SCRIPTS = test +TEST_TARGET = test ISAEXEC_EXCLUDE_FILES = /opt/csw/bin/gview ISAEXEC_EXCLUDE_FILES += /opt/csw/bin/gvim 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 28 22:02:08 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 28 Jan 2009 21:02:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2924] csw/mgar/pkg Message-ID: Revision: 2924 http://gar.svn.sourceforge.net/gar/?rev=2924&view=rev Author: wbonnet Date: 2009-01-28 21:02:08 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Move beanutils to gar Added Paths: ----------- csw/mgar/pkg/beanutils/ csw/mgar/pkg/beanutils/branches/ csw/mgar/pkg/beanutils/tags/ csw/mgar/pkg/beanutils/trunk/ csw/mgar/pkg/beanutils/trunk/Makefile csw/mgar/pkg/beanutils/trunk/checksums csw/mgar/pkg/beanutils/trunk/files/ Property changes on: csw/mgar/pkg/beanutils/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/beanutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/beanutils/trunk/Makefile (rev 0) +++ csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-28 21:02:08 UTC (rev 2924) @@ -0,0 +1,56 @@ +SHORTNAME = beanutils +GARVERSION = 1.8.0 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons BeanUtils +define BLURB +Apache Jakarta Commons BeanUtils provides wrappers around the Java reflection and introspection +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION)-bin.tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajcbeanutils,) +DISTFILES += $(call admfiles,CSWajcbeanutilsdoc,) + +# Defines package description +SPKG_DESC_CSWajcbeanutils = $(DESCRIPTION) +SPKG_DESC_CSWajcbeanutilsdoc = $(DESCRIPTION) documentation package + +# Defines dependencies +REQUIRED_PKGS_CSWajcbeanutils = CSWajcdigester +REQUIRED_PKGS_CSWajcbeanutils += CSWajclogging + +# Defines package content +PKGFILES_CSWajcbeanutilsdoc = $(prefix)/share/doc/.* + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/$(DISTNAME)/commons-beanutils-1.8.0.jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.8.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME) + @( cd $(DESTDIR)$(datadir)/licences/$(GARNAME) ; \ + ln -s LICENSE.txt Apache_License_2.0.txt ) + @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs $(DESTDIR)$(datadir)/doc/$(GARNAME)/docs + @$(MAKECOOKIE) Added: csw/mgar/pkg/beanutils/trunk/checksums =================================================================== --- csw/mgar/pkg/beanutils/trunk/checksums (rev 0) +++ csw/mgar/pkg/beanutils/trunk/checksums 2009-01-28 21:02:08 UTC (rev 2924) @@ -0,0 +1,3 @@ +bffa9e8a9d2a09d4c3641b042e8954fc download/commons-beanutils-1.8.0-bin.tar.gz +deddb3b8699130e5ac02783f197797b8 download/CSWajcbeanutils.gspec +bba923244adbc3155615619a0a000583 download/CSWajcbeanutilsdoc.gspec 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 28 22:56:10 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 28 Jan 2009 21:56:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[2925] csw/mgar/gar/v2/categories Message-ID: Revision: 2925 http://gar.svn.sourceforge.net/gar/?rev=2925&view=rev Author: wbonnet Date: 2009-01-28 21:56:10 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Add java category Added Paths: ----------- csw/mgar/gar/v2/categories/java/ csw/mgar/gar/v2/categories/java/category.mk Added: csw/mgar/gar/v2/categories/java/category.mk =================================================================== --- csw/mgar/gar/v2/categories/java/category.mk (rev 0) +++ csw/mgar/gar/v2/categories/java/category.mk 2009-01-28 21:56:10 UTC (rev 2925) @@ -0,0 +1,8 @@ +# http://jakarta.apache.org/commons + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX ?= commons-$(GARNAME)-(\d+(?:\.\d+)*)-bin.tar.gz +USTREAM_MASTER_SITE ?= $(SPKG_SOURCEURL) + +# Includes the rest of gar +include gar/gar.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 28 23:00:30 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:00:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[2926] csw/mgar/pkg/beanutils/trunk/files Message-ID: Revision: 2926 http://gar.svn.sourceforge.net/gar/?rev=2926&view=rev Author: wbonnet Date: 2009-01-28 22:00:30 +0000 (Wed, 28 Jan 2009) Log Message: ----------- Add gspec files Added Paths: ----------- csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec Added: csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec =================================================================== --- csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec (rev 0) +++ csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutils.gspec 2009-01-28 22:00:30 UTC (rev 2926) @@ -0,0 +1,5 @@ +%var bitname commons_beanutils +%var pkgname CSWajcbeanutils +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt Added: csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec =================================================================== --- csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec (rev 0) +++ csw/mgar/pkg/beanutils/trunk/files/CSWajcbeanutilsdoc.gspec 2009-01-28 22:00:30 UTC (rev 2926) @@ -0,0 +1,5 @@ +%var bitname commons_beanutl_doc +%var pkgname CSWajcbeanutilsdoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt 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 28 23:05:44 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:05:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[2927] csw/mgar/pkg/vim/trunk Message-ID: Revision: 2927 http://gar.svn.sourceforge.net/gar/?rev=2927&view=rev Author: harpchad Date: 2009-01-28 22:05:43 +0000 (Wed, 28 Jan 2009) Log Message: ----------- - update to patch level 93 - add 64bit alignment fix (should be official patch soon) Modified Paths: -------------- csw/mgar/pkg/vim/trunk/Makefile csw/mgar/pkg/vim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff Modified: csw/mgar/pkg/vim/trunk/Makefile =================================================================== --- csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 22:00:30 UTC (rev 2926) +++ csw/mgar/pkg/vim/trunk/Makefile 2009-01-28 22:05:43 UTC (rev 2927) @@ -1,6 +1,6 @@ GARNAME = vim DISTVERSION = 7.2 -PATCHREV = 088 +PATCHREV = 093 GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php @@ -17,7 +17,7 @@ MASTER_SITES += ftp://ftp.vim.org/pub/vim/extra/ MASTER_SITES += ftp://ftp.vim.org/pub/vim/unix/ -DISTFILES += $(call admfiles,CSWvim,) +DISTFILES = $(call admfiles,CSWvim,) DISTFILES += $(call admfiles,CSWvimrt,) DISTFILES += $(GARNAME)-$(DISTVERSION).tar.bz2 DISTFILES += $(GARNAME)-$(DISTVERSION)-lang.tar.gz @@ -25,6 +25,7 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) PATCHFILES += vimtutor.patch +PATCHFILES += fix-alignment64-spell.c.diff WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) Modified: csw/mgar/pkg/vim/trunk/checksums =================================================================== --- csw/mgar/pkg/vim/trunk/checksums 2009-01-28 22:00:30 UTC (rev 2926) +++ csw/mgar/pkg/vim/trunk/checksums 2009-01-28 22:05:43 UTC (rev 2927) @@ -86,6 +86,12 @@ 5af26f073ebeba60af90525d68a61725 download/7.2.086 639d7a80864afe68132725e377f52f19 download/7.2.087 44b152484534fa23c4ff531316a0e518 download/7.2.088 +990e6a23c4061df0dcc0ab84528a2e1a download/7.2.089 +8985dcfe7df6b439e88554e22cf34919 download/7.2.090 +137faec139470453ca446c015c226e47 download/7.2.091 +e15782bf5892ad787d149491bfe013e7 download/7.2.092 +2198caf9e5f422eacde337e9c27677ab download/7.2.093 +6619235ca793edf41831be1b1f9f63db download/fix-alignment64-spell.c.diff 59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz Added: csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff =================================================================== --- csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff (rev 0) +++ csw/mgar/pkg/vim/trunk/files/fix-alignment64-spell.c.diff 2009-01-28 22:05:43 UTC (rev 2927) @@ -0,0 +1,74 @@ +Index: spell.c +=================================================================== +RCS file: /cvsroot/vim/vim7/src/spell.c,v +retrieving revision 1.121 +diff -c -r1.121 spell.c +*** src/spell.c 9 Dec 2008 21:34:19 -0000 1.121 +--- src/spell.c 28 Jan 2009 20:32:04 -0000 +*************** +*** 2335,2348 **** + if (curline) + break; /* only check cursor line */ + + /* Advance to next line. */ + if (dir == BACKWARD) + { +- /* If we are back at the starting line and searched it again there +- * is no match, give up. */ +- if (lnum == wp->w_cursor.lnum && wrapped) +- break; +- + if (lnum > 1) + --lnum; + else if (!p_ws) +--- 2335,2348 ---- + if (curline) + break; /* only check cursor line */ + ++ /* If we are back at the starting line and searched it again there ++ * is no match, give up. */ ++ if (lnum == wp->w_cursor.lnum && wrapped) ++ break; ++ + /* Advance to next line. */ + if (dir == BACKWARD) + { + if (lnum > 1) + --lnum; + else if (!p_ws) +*************** +*** 4961,4968 **** + typedef struct sblock_S sblock_T; + struct sblock_S + { +- sblock_T *sb_next; /* next block in list */ + int sb_used; /* nr of bytes already in use */ + char_u sb_data[1]; /* data, actually longer */ + }; + +--- 4961,4968 ---- + typedef struct sblock_S sblock_T; + struct sblock_S + { + int sb_used; /* nr of bytes already in use */ ++ sblock_T *sb_next; /* next block in list */ + char_u sb_data[1]; /* data, actually longer */ + }; + +*************** +*** 15011,15017 **** + + case 0: + /* +! * Lenghts are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ +--- 15011,15017 ---- + + case 0: + /* +! * Lengths are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ 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 28 23:11:23 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:11:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[2928] csw/mgar/pkg/gvim/trunk Message-ID: Revision: 2928 http://gar.svn.sourceforge.net/gar/?rev=2928&view=rev Author: harpchad Date: 2009-01-28 22:11:23 +0000 (Wed, 28 Jan 2009) Log Message: ----------- - update to patch level 93 - add 64bit alignment patch Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile csw/mgar/pkg/gvim/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 22:05:43 UTC (rev 2927) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-28 22:11:23 UTC (rev 2928) @@ -1,6 +1,6 @@ GARNAME = vim DISTVERSION = 7.2 -PATCHREV = 088 +PATCHREV = 093 GARVERSION = $(DISTVERSION).$(PATCHREV) CATEGORIES = utils SPKG_SOURCEURL = http://www.vim.org/download.php @@ -27,6 +27,7 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) PATCHFILES += vimtutor.patch +PATCHFILES += fix-alignment64-spell.c.diff WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:05:43 UTC (rev 2927) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:11:23 UTC (rev 2928) @@ -86,9 +86,15 @@ 5af26f073ebeba60af90525d68a61725 download/7.2.086 639d7a80864afe68132725e377f52f19 download/7.2.087 44b152484534fa23c4ff531316a0e518 download/7.2.088 +990e6a23c4061df0dcc0ab84528a2e1a download/7.2.089 +8985dcfe7df6b439e88554e22cf34919 download/7.2.090 +137faec139470453ca446c015c226e47 download/7.2.091 +e15782bf5892ad787d149491bfe013e7 download/7.2.092 +2198caf9e5f422eacde337e9c27677ab download/7.2.093 +6619235ca793edf41831be1b1f9f63db download/fix-alignment64-spell.c.diff +59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec +c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec 35e04482f07c57221c9a751aaa3b8dac download/vim-7.2-extra.tar.gz d8884786979e0e520c112faf2e176f05 download/vim-7.2-lang.tar.gz f0901284b338e448bfd79ccca0041254 download/vim-7.2.tar.bz2 582717146f6bbd5b73db83a2f62e62a5 download/vimtutor.patch -3d2b62d6810417d562ed17aaada29868 download/CSWgvim.gspec -47396843634a6e3c05d4f5d6b4bf8a72 download/gvim.desktop Added: csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff =================================================================== --- csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff (rev 0) +++ csw/mgar/pkg/gvim/trunk/files/fix-alignment64-spell.c.diff 2009-01-28 22:11:23 UTC (rev 2928) @@ -0,0 +1,74 @@ +Index: spell.c +=================================================================== +RCS file: /cvsroot/vim/vim7/src/spell.c,v +retrieving revision 1.121 +diff -c -r1.121 spell.c +*** src/spell.c 9 Dec 2008 21:34:19 -0000 1.121 +--- src/spell.c 28 Jan 2009 20:32:04 -0000 +*************** +*** 2335,2348 **** + if (curline) + break; /* only check cursor line */ + + /* Advance to next line. */ + if (dir == BACKWARD) + { +- /* If we are back at the starting line and searched it again there +- * is no match, give up. */ +- if (lnum == wp->w_cursor.lnum && wrapped) +- break; +- + if (lnum > 1) + --lnum; + else if (!p_ws) +--- 2335,2348 ---- + if (curline) + break; /* only check cursor line */ + ++ /* If we are back at the starting line and searched it again there ++ * is no match, give up. */ ++ if (lnum == wp->w_cursor.lnum && wrapped) ++ break; ++ + /* Advance to next line. */ + if (dir == BACKWARD) + { + if (lnum > 1) + --lnum; + else if (!p_ws) +*************** +*** 4961,4968 **** + typedef struct sblock_S sblock_T; + struct sblock_S + { +- sblock_T *sb_next; /* next block in list */ + int sb_used; /* nr of bytes already in use */ + char_u sb_data[1]; /* data, actually longer */ + }; + +--- 4961,4968 ---- + typedef struct sblock_S sblock_T; + struct sblock_S + { + int sb_used; /* nr of bytes already in use */ ++ sblock_T *sb_next; /* next block in list */ + char_u sb_data[1]; /* data, actually longer */ + }; + +*************** +*** 15011,15017 **** + + case 0: + /* +! * Lenghts are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ +--- 15011,15017 ---- + + case 0: + /* +! * Lengths are equal, thus changes must result in same length: An + * insert is only possible in combination with a delete. + * 1: check if for identical strings + */ 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 28 23:30:06 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Wed, 28 Jan 2009 22:30:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2929] csw/mgar/pkg/gvim/trunk/checksums Message-ID: Revision: 2929 http://gar.svn.sourceforge.net/gar/?rev=2929&view=rev Author: harpchad Date: 2009-01-28 22:30:06 +0000 (Wed, 28 Jan 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/checksums Modified: csw/mgar/pkg/gvim/trunk/checksums =================================================================== --- csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:11:23 UTC (rev 2928) +++ csw/mgar/pkg/gvim/trunk/checksums 2009-01-28 22:30:06 UTC (rev 2929) @@ -92,8 +92,8 @@ e15782bf5892ad787d149491bfe013e7 download/7.2.092 2198caf9e5f422eacde337e9c27677ab download/7.2.093 6619235ca793edf41831be1b1f9f63db download/fix-alignment64-spell.c.diff -59c166f15ad9e4db7aeef3ce7f6d89d9 download/CSWvim.gspec -c1ead6a1fa0f1a38b80689134cac8ca9 download/CSWvimrt.gspec +3d2b62d6810417d562ed17aaada29868 download/CSWgvim.gspec +47396843634a6e3c05d4f5d6b4bf8a72 download/gvim.desktop 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 wbonnet at users.sourceforge.net Thu Jan 29 01:20:37 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 29 Jan 2009 00:20:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2930] csw/mgar/pkg Message-ID: Revision: 2930 http://gar.svn.sourceforge.net/gar/?rev=2930&view=rev Author: wbonnet Date: 2009-01-29 00:20:37 +0000 (Thu, 29 Jan 2009) Log Message: ----------- Creation of JXplorer package Added Paths: ----------- csw/mgar/pkg/jxplorer/ csw/mgar/pkg/jxplorer/Makefile csw/mgar/pkg/jxplorer/branches/ csw/mgar/pkg/jxplorer/tags/ csw/mgar/pkg/jxplorer/trunk/ csw/mgar/pkg/jxplorer/trunk/Makefile csw/mgar/pkg/jxplorer/trunk/checksums csw/mgar/pkg/jxplorer/trunk/files/ csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff Added: csw/mgar/pkg/jxplorer/Makefile =================================================================== --- csw/mgar/pkg/jxplorer/Makefile (rev 0) +++ csw/mgar/pkg/jxplorer/Makefile 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/jxplorer/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/jxplorer/trunk/Makefile =================================================================== --- csw/mgar/pkg/jxplorer/trunk/Makefile (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/Makefile 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,51 @@ +GARNAME = jxplorer +GARVERSION = 3.2 +CATEGORIES = java + +DESCRIPTION = JXplorer - A Java Ldap Browser +define BLURB +JXplorer is an open source ldap browser originally developed by Computer Associates' eTrust Directory development lab. It is a standards compliant general purpose ldap browser that can be used to read and search any ldap directory, or any X500 directory with an ldap interface. It is available under a standard OSI-style open source licence. +endef + +MASTER_SITES += $(SF_MIRRORS) + +# DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = JXv$(GARVERSION)deploy.tar.bz2 +DISTFILES += $(call admfiles, CSWjxplorer) +DISTFILES += jxconfig.txt.template +DISTFILES += gssapi.conf.template + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=55394 +UPSTREAM_USE_SF = 1 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PATCHFILES = jxplorer.sh.diff + +include gar/category.mk + +post-extract: + ( mv $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME) $(WORKSRC_FIRSTMOD) ) + @$(MAKECOOKIE) + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/$(GARNAME) + @ginstall -d $(DESTDIR)$(prefix)/etc/$(GARNAME) + @gcp -fpr $(WORKSRC)/* $(DESTDIR)$(datadir)/$(GARNAME) + @cp $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/gssapi.conf.template $(DESTDIR)$(prefix)/etc/$(GARNAME) + @cp $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/jxconfig.txt.template $(DESTDIR)$(prefix)/etc/$(GARNAME) + @rm $(DESTDIR)$(datadir)/$(GARNAME)/build.xml + @rm $(DESTDIR)$(datadir)/$(GARNAME)/jxmac.sh + @rm $(DESTDIR)$(datadir)/$(GARNAME)/jxplorer.bat + @rm $(DESTDIR)$(datadir)/$(GARNAME)/jxplorer.ico + @chmod +x $(DESTDIR)$(datadir)/$(GARNAME)/jxplorer.sh + @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) + @gcp -fp $(WORKSRC)/licence.txt $(DESTDIR)$(datadir)/licences/$(GARNAME) + @( cd $(DESTDIR)$(datadir)/licences/$(GARNAME) ; \ + ln -s ../../jxplorer/licence.txt CA_Open_Source_Licence_Version_1.0.txt ) + @$(MAKECOOKIE) Added: csw/mgar/pkg/jxplorer/trunk/checksums =================================================================== --- csw/mgar/pkg/jxplorer/trunk/checksums (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/checksums 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,5 @@ +5cd9766391995736164b17a30354d72e download/JXv3.2deploy.tar.bz2 +b585c7ce45e6d5d96f4b157ff11a4097 download/CSWjxplorer.gspec +0622fcb316ce5507d3338d7a81a50f5c download/jxconfig.txt.template +c60592606719e3504ffa12121d6cf250 download/gssapi.conf.template +a8e65c343f68c69a21223213b64f48b3 download/jxplorer.sh.diff Added: csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/CSWjxplorer.gspec 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,5 @@ +%var bitname jxplorer +%var pkgname CSWjxplorer +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/licence.txt Added: csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/gssapi.conf.template 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,4 @@ +com.ca.commons.jndi.JNDIOps { + com.sun.security.auth.module.Krb5LoginModule required client=TRUE + useTicketCache=TRUE; +}; \ No newline at end of file Added: csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/jxconfig.txt.template 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,132 @@ +#Generated Property List /opt/csw/share/jxplorer/jxconfig.txt +# The property file location defaults to where JXplorer is installed +# - this can be over-ridden with the system property 'jxplorer.config' +# with a config directory location, or set to user home using the +# flag 'user.home' (e.g. -Djxplorer.config='user.home' on the command line). + +#Thu Jan 29 00:27:34 CET 2009 + +#.level (java loggin variable) - allowable values are 'OFF', 'SEVERE', 'WARNING', 'INFO', 'FINE', 'FINER', 'FINEST' and 'ALL' +.level=WARNING + +#baseAdminDN default value for a specific 3rd party plug in; rarely used +baseAdminDN=cn\=Management System + +#baseDN the default base DN for an empty connection - rarely used +baseDN=c\=au + +#com.ca.level \ (java loggin variable) partial logging is also available. Be warned that the Sun logging system is a very buggy partial reimplementation of log4j, and doesn't seem to do inheritance well. +com.ca.level=UNUSED + +#dir this sets the directories that JXplorer reads its resources from. +dir.help=/opt/csw/share/jxplorer/help/ +dir.htmldocs=/opt/csw/share/jxplorer/htmldocs/ +dir.icons=/opt/csw/share/jxplorer/icons/ +dir.images=/opt/csw/share/jxplorer/images/ +dir.local=/opt/csw/share/jxplorer/ +dir.plugins=/opt/csw/share/jxplorer/plugins/ +dir.templates=/opt/csw/share/jxplorer/templates/ + +#getSystemEnvironment Set this to true if you wish to add the system environment properties to the JX list (e.g. if you are setting JX properties via system variables) +getSystemEnvironment=false + +#gui.lookandfeel Can set to com.sun.java.swing.plaf.mac.MacLookAndFeel for OSX +gui.lookandfeel=com.sun.java.swing.plaf.motif.MotifLookAndFeel + +#handlers (java logging variable) This sets the log level for console reporting +handlers=java.util.logging.ConsoleHandler + +#height set by client GUI - don't change +height=600 + +#java.util.logging.ConsoleHandler.formatter (java logging variable) This sets the built in formatter to use for console reporting +java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter + +#java.util.logging.ConsoleHandler.level (java logging variable) This sets the log level for console reporting +java.util.logging.ConsoleHandler.level=ALL + +#java.util.logging.FileHandler.formatter (java loggin variable) This sets the built in formatter to use for file reporting +java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter + +#java.util.logging.FileHandler.level (java loggin variable) This sets the log level for log file reporting +java.util.logging.FileHandler.level=ALL + +#java.util.logging.FileHandler.pattern (java loggin variable) The name of the log file (see java.util.logging.FileHandler java doc) +java.util.logging.FileHandler.pattern=JX%u.log + +#jxplorer.cache.passwords whether JX should keep a (run time only) cache of passwords for reuse and reconnection +jxplorer.cache.passwords=true +keystoreType.cacerts=JKS +keystoreType.clientcerts=JKS +last.search.filter=default + +#ldap.sslsocketfactory This is the built in ssl factory - it can be changed if required. +ldap.sslsocketfactory=com.ca.commons.jndi.JndiSocketFactory + +#ldapversion set by client GUI - don't change +ldapversion=3 + +#null.entry.editor the editor displayed for null entries is pluggable and can be set to a custom java class +null.entry.editor=defaulteditor + +#option.confirmTableEditorUpdates whether the user is prompted before updates; usually set by GUI +option.confirmTableEditorUpdates=false + +#option.drag.and.drop set to 'false' to disable drag and drop in the left hand tree view +option.drag.and.drop=true + +#option.ignoreSchemaOnSubmission Skip client side schema checks; useful if JXplorer is getting confused or the schema is inconsistent +option.ignoreSchemaOnSubmission=false + +#option.ldap.browseAliasBehaviour jndi variable setting how aliases are handled while browsing\: 'always','never','finding','searching' +option.ldap.browseAliasBehaviour=finding + +#option.ldap.limit The maximum number of entries to return - '0' \= 'all the server allows' +option.ldap.limit=0 + +#option.ldap.referral this is a jdni variable determinning how referrals are handled\: 'ignore','follow' or 'throw' +option.ldap.referral=ignore + +#option.ldap.searchAliasBehaviour jndi variable setting how aliases are handled while searching\: 'always','never','finding','searching' +option.ldap.searchAliasBehaviour=searching + +#option.ldap.sendVerboseBinarySuffix some directories require ';binary' to be explicitly appended to binary attribute names\: 'true' or 'false' +option.ldap.sendVerboseBinarySuffix=false + +#option.ldap.timeout the maximum time to allow a query to run before cancelling - '0' \= 'as long as the server allows' +option.ldap.timeout=0 +option.ssl.cacerts=/opt/csw/share/jxplorer/security/cacerts +option.ssl.clientcerts=/opt/csw/share/jxplorer/security/clientcerts +option.ssl.import.cert.during.connection=true + +#option.url.handling override URL handling to launch JXplorer rather than default browser +option.url.handling=JXplorer + +#plugins.ignoreUniqueness whether to allow multiple plugins for the same object class\: 'true' or 'false +plugins.ignoreUniqueness=false + +#securityProvider the security provider can be changed, and three more can be added by creating 'securityProperty0', 'securityProperty1' and 'securityProperty2'. +securityProvider=com.sun.net.ssl.internal.ssl.Provider + +#sort.by.naming.attribute if true, this sorts entries in the tree editor by naming attribute first, then by attribute value +sort.by.naming.attribute=false + +#url.defaultadmin default value for a specific 3rd party plug in; rarely used +url.defaultadmin=localhost + +#url.defaultadminport default value for a specific 3rd party plug in; rarely used +url.defaultadminport=3389 + +#url.defaultdirectory default for empty connection screen GUI - rarely used +url.defaultdirectory=localhost + +#url.defaultdirectory.port default for empty connection screen GUI - rarely used +url.defaultdirectory.port=389 + +#width set by client GUI - don't change +width=800 + +#xml.ldif.rfc Experimental support for saving XML in LDIF files in editable form (e.g. not base64 encoded) +xml.ldif.rfc=false +xpos=400 +ypos=300 Added: csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff =================================================================== --- csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff (rev 0) +++ csw/mgar/pkg/jxplorer/trunk/files/jxplorer.sh.diff 2009-01-29 00:20:37 UTC (rev 2930) @@ -0,0 +1,41 @@ +diff --speed-large-files --minimal -Nru jxplorer-3.2.orig/jxplorer.sh jxplorer-3.2/jxplorer.sh +--- jxplorer-3.2.orig/jxplorer.sh 2007-02-26 11:08:34.000000000 +0100 ++++ jxplorer-3.2/jxplorer.sh 2009-01-29 00:45:02.526025469 +0100 +@@ -1,6 +1,20 @@ + #!/bin/sh + # OpenDirectory jxstart.sh $Revision: 1.13 $ $Date: 2006/04/18 04:12:12 $ + ++if [ ! -d $HOME/.jxplorer ]; then ++ mkdir $HOME/.jxplorer ++fi ++ ++if [ ! -f $HOME/.jxplorer/gssapi.conf ]; then ++ cp /opt/csw/etc/jxplorer/gssapi.conf.template $HOME/.jxplorer/gssapi.conf ++fi ++ ++if [ ! -f $HOME/.jxplorer/jxconfig.txt ]; then ++ cp /opt/csw/etc/jxplorer/jxconfig.txt.template $HOME/.jxplorer/jxconfig.txt ++fi ++ ++ ++ + if [ -x $JAVA_HOME/bin/java ]; then + JAVA_LOC=$JAVA_HOME/bin/java + elif [ -x /opt/jre/bin/java ]; then +@@ -38,14 +52,14 @@ + echo + FAIL=0 + if [ "$1" = "console" ] ; then +- $JAVAV -cp .:jars/jxplorer.jar:jars/help.jar:jars/jhall.jar:jars/junit.jar:jars/ldapsec.jar:jars/log4j.jar:jars/dsml/activation.jar:jars/dsml/commons-logging.jar:jars/dsml/dom4j.jar:jars/dsml/jxext.jar:jars/dsml/mail.jar:jars/dsml/providerutil.jar:jars/dsml/saaj-api.jar:jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer ++ $JAVAV -cp /opt/csw/share/jxplorer/:/opt/csw/share/jxplorer/jars/jxplorer.jar:/opt/csw/share/jxplorer/jars/help.jar:/opt/csw/share/jxplorer/jars/jhall.jar:/opt/csw/share/jxplorer/jars/junit.jar:/opt/csw/share/jxplorer/jars/ldapsec.jar:/opt/csw/share/jxplorer/jars/log4j.jar:/opt/csw/share/jxplorer/jars/dsml/activation.jar:/opt/csw/share/jxplorer/jars/dsml/commons-logging.jar:/opt/csw/share/jxplorer/jars/dsml/dom4j.jar:/opt/csw/share/jxplorer/jars/dsml/jxext.jar:/opt/csw/share/jxplorer/jars/dsml/mail.jar:/opt/csw/share/jxplorer/jars/dsml/providerutil.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-api.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer + + if [ "$?" != "0" ]; then + FAIL=1 + fi + else + echo "Use \"jxstart.sh console\" if you want logging to the console" +- $JAVAV -cp .:jars/jxplorer.jar:jars/help.jar:jars/jhall.jar:jars/junit.jar:jars/ldapsec.jar:jars/log4j.jar:jars/dsml/activation.jar:jars/dsml/commons-logging.jar:jars/dsml/dom4j.jar:jars/dsml/jxext.jar:jars/dsml/mail.jar:jars/dsml/providerutil.jar:jars/dsml/saaj-api.jar:jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer >/dev/null 2>&1 ++ $JAVAV -cp /opt/csw/share/jxplorer/:/opt/csw/share/jxplorer/jars/jxplorer.jar:/opt/csw/share/jxplorer/jars/help.jar:/opt/csw/share/jxplorer/jars/jhall.jar:/opt/csw/share/jxplorer/jars/junit.jar:/opt/csw/share/jxplorer/jars/ldapsec.jar:/opt/csw/share/jxplorer/jars/log4j.jar:/opt/csw/share/jxplorer/jars/dsml/activation.jar:/opt/csw/share/jxplorer/jars/dsml/commons-logging.jar:/opt/csw/share/jxplorer/jars/dsml/dom4j.jar:/opt/csw/share/jxplorer/jars/dsml/jxext.jar:/opt/csw/share/jxplorer/jars/dsml/mail.jar:/opt/csw/share/jxplorer/jars/dsml/providerutil.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-api.jar:/opt/csw/share/jxplorer/jars/dsml/saaj-ri.jar com.ca.directory.jxplorer.JXplorer >/dev/null 2>&1 + + if [ "$?" != "0" ]; then + FAIL=1 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 29 17:14:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Thu, 29 Jan 2009 16:14:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2931] csw/mgar/pkg/mbuffer/trunk/Makefile Message-ID: Revision: 2931 http://gar.svn.sourceforge.net/gar/?rev=2931&view=rev Author: skayser Date: 2009-01-29 16:14:06 +0000 (Thu, 29 Jan 2009) Log Message: ----------- mbuffer: re-activated BUILD64=1 with NO_ISAEXEC=1 Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-29 00:20:37 UTC (rev 2930) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-01-29 16:14:06 UTC (rev 2931) @@ -30,19 +30,16 @@ # value of MASTER_SITES # UPSTREAM_MASTER_SITES = -# There had been a reason once to build the 64-bit version (all the way down) -# http://opensolaris.org/jive/thread.jspa?messageID=293647&tstart=0 -# # To build the mixed package for x86 you have to do the following # 1) build8x: gmake build-isa-i386 # 2) build10x: gmake merge # 3) build8x: gmake package -# -# As this is a bit of a hassle and mbuffer has frequent release cycles i -# prefer to leave it out until someone actually needs it. -# -# BUILD64 = 1 +BUILD64 = 1 + +# 64-bit isn't thorougly tested by upstream, default to 32-bit, but still +# deliver 64-bit in case someone might want to play around with 2GB+ buffers # ISAEXEC_BINS = $(bindir)/mbuffer +NO_ISAEXEC = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 29 21:20:24 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Thu, 29 Jan 2009 20:20:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2932] csw/mgar/pkg/gvim/trunk/Makefile Message-ID: Revision: 2932 http://gar.svn.sourceforge.net/gar/?rev=2932&view=rev Author: harpchad Date: 2009-01-29 20:20:24 +0000 (Thu, 29 Jan 2009) Log Message: ----------- Remove 64 bit support, need 64bit gtk first Modified Paths: -------------- csw/mgar/pkg/gvim/trunk/Makefile Modified: csw/mgar/pkg/gvim/trunk/Makefile =================================================================== --- csw/mgar/pkg/gvim/trunk/Makefile 2009-01-29 16:14:06 UTC (rev 2931) +++ csw/mgar/pkg/gvim/trunk/Makefile 2009-01-29 20:20:24 UTC (rev 2932) @@ -27,7 +27,6 @@ PATCHFILES = $(foreach T,$(shell gseq -f "%03g" 001 $(PATCHREV)),$(DISTVERSION).$(T)) PATCHFILES += vimtutor.patch -PATCHFILES += fix-alignment64-spell.c.diff WORKSRC = $(WORKDIR)/$(GARNAME)$(subst .,,$(DISTVERSION)) @@ -42,7 +41,8 @@ BUILD_ARGS += "VIMRCLOC=/opt/csw/etc/vim" BUILD_ARGS += "VIMRUNTIMEDIR=/opt/csw/share/vim/vim72" -BUILD64 = 1 +#GTK2 needs 64-bit +#BUILD64 = 1 PATCHDIRLEVEL = 0 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 30 01:44:24 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 30 Jan 2009 00:44:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2933] csw/mgar/pkg Message-ID: Revision: 2933 http://gar.svn.sourceforge.net/gar/?rev=2933&view=rev Author: skayser Date: 2009-01-30 00:44:24 +0000 (Fri, 30 Jan 2009) Log Message: ----------- dovecot: Initial commit Added Paths: ----------- csw/mgar/pkg/dovecot/ csw/mgar/pkg/dovecot/branches/ csw/mgar/pkg/dovecot/tags/ csw/mgar/pkg/dovecot/trunk/ csw/mgar/pkg/dovecot/trunk/Makefile csw/mgar/pkg/dovecot/trunk/checksums csw/mgar/pkg/dovecot/trunk/files/ csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff Property changes on: csw/mgar/pkg/dovecot/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/dovecot/trunk/Makefile =================================================================== --- csw/mgar/pkg/dovecot/trunk/Makefile (rev 0) +++ csw/mgar/pkg/dovecot/trunk/Makefile 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,44 @@ +GARNAME = dovecot +GARVERSION = 1.1.8 +CATEGORIES = server + +DESCRIPTION = Secure IMAP server +define BLURB + Dovecot is an open source IMAP and POP3 server for Linux/UNIX-like systems, + written with security primarily in mind. Dovecot is an excellent choice for + both small and large installations. It's fast, simple to set up, requires no + special administration and it uses very little memory. +endef + +MASTER_SITES = http://dovecot.org/releases/1.1/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWdovecot,) + +REQUIRED_PKGS = CSWosslrt CSWmysql5rt + +PREREQUISITE_PKGS = CSWmysql5devel CSWmysql5rt +PREREQUISITE_PKGS += CSWoldaprt CSWoldapdevel + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# See http://www.mail-archive.com/dovecot at dovecot.org/msg15562.html +PATCHFILES = patch-unsetenv.diff + +# TODO +# * Consider LDAP issues: http://opencsw.org/bugtrack/view.php?id=2760 +# * --enable-header-install & split packages (dovecot, dovecotdevel) +# * Build and package Dovecot Sieve plugin http://wiki.dovecot.org/LDA/Sieve +# * ... + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-ldap +CONFIGURE_ARGS += --with-mysql +CONFIGURE_ARGS += --with-sqlite +CONFIGURE_ARGS += --with-ssl=openssl +CONFIGURE_ARGS += --with-ssldir=$(DESTDIR)/ssl + +EXTRA_LIB = /opt/csw/mysql5/lib/mysql +EXTRA_INC = /opt/csw/mysql5/include/mysql + +include gar/category.mk Added: csw/mgar/pkg/dovecot/trunk/checksums =================================================================== --- csw/mgar/pkg/dovecot/trunk/checksums (rev 0) +++ csw/mgar/pkg/dovecot/trunk/checksums 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,3 @@ +bc23a919c7ad2b3c5ba69e19f1b46eb2 download/dovecot-1.1.8.tar.gz +d707692194795943a4ff18581f61d04d download/CSWdovecot.gspec +827bae06acbae39e9c89707d7b198b4e download/patch-unsetenv.diff Added: csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec =================================================================== --- csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec (rev 0) +++ csw/mgar/pkg/dovecot/trunk/files/CSWdovecot.gspec 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,4 @@ +%var bitname dovecot +%var pkgname CSWdovecot +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff =================================================================== --- csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff (rev 0) +++ csw/mgar/pkg/dovecot/trunk/files/patch-unsetenv.diff 2009-01-30 00:44:24 UTC (rev 2933) @@ -0,0 +1,46 @@ +# HG changeset patch +# User Timo Sirainen +# Date 1231433510 18000 +# Node ID fec8412dc1c5487d10974c18104f9ec9cbd009f1 +# Parent 30207243a4f4c3e076bea43d1e92de8e7179c72a +env_remove(): Implement a fallback method if unsetenv() doesn't exist. +Fixes compiling at least with Solaris 8. + +--- a/configure.in Thu Jan 08 11:41:30 2009 -0500 ++++ b/configure.in Thu Jan 08 11:51:50 2009 -0500 +@@ -459,7 +459,7 @@ AC_CHECK_FUNCS(fcntl flock lockf inet_at + setrlimit setproctitle seteuid setreuid setegid setresgid \ + strtoull strtoll strtouq strtoq \ + setpriority quotactl getmntent kqueue kevent backtrace_symbols \ +- walkcontext dirfd clearenv malloc_usable_size) ++ walkcontext dirfd clearenv malloc_usable_size unsetenv) + + dnl strtoimax and strtoumax are macros in HP-UX, so inttypes.h must be included + AC_MSG_CHECKING([for strtoimax]) +--- a/src/lib/env-util.c Thu Jan 08 11:41:30 2009 -0500 ++++ b/src/lib/env-util.c Thu Jan 08 11:51:50 2009 -0500 +@@ -19,7 +19,24 @@ void env_put(const char *env) + + void env_remove(const char *name) + { ++#ifdef HAVE_UNSETENV + unsetenv(name); ++#else ++ extern char **environ; ++ unsigned int len; ++ char **envp; ++ ++ len = strlen(name); ++ for (envp = environ; *envp != NULL; envp++) { ++ if (strncmp(name, *envp, len) == 0 && ++ (*envp)[len] == '=') { ++ do { ++ envp[0] = envp[1]; ++ } while (*++envp != NULL); ++ break; ++ } ++ } ++#endif + } + + void env_clean(void) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 30 04:40:29 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 30 Jan 2009 03:40:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2934] csw/mgar/pkg/ruby/trunk Message-ID: Revision: 2934 http://gar.svn.sourceforge.net/gar/?rev=2934&view=rev Author: bdwalton Date: 2009-01-30 03:40:29 +0000 (Fri, 30 Jan 2009) Log Message: ----------- cleanup of gar description; workaround for rdoc bug Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile csw/mgar/pkg/ruby/trunk/checksums Added Paths: ----------- csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 00:44:24 UTC (rev 2933) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 03:40:29 UTC (rev 2934) @@ -4,8 +4,16 @@ GARVERSION = $(DISTVERSION) CATEGORIES = lang -WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL) +PREREQUISITE_PKGS = CSWbdb3 CSWgdbm CSWgfile CSWiconv CSWncurses CSWossldevel +PREREQUISITE_PKGS += CSWreadline CSWzlib +REQUIRED_PKGS_CSWruby = CSWbdb3n CSWgdbm CSWiconv +REQUIRED_PKGS_CSWruby += CSWncurses CSWosslrt CSWreadline CSWzlib + +REQUIRED_PKGS_CSWrubytk = CSWruby CSWtk + +REQUIRED_PKGS_CSWrubydoc = CSWruby + DESCRIPTION = An object-oriented language for quick and easy programming. define BLURB Ruby is a language for quick and easy programming. Similar in scope to Perl @@ -20,28 +28,25 @@ MASTER_SITES = ftp://ftp.ruby-lang.org/pub/ruby/ MASTER_SITES += ftp://www.ibiblio.org/pub/languages/ruby/ -DISTFILES = $(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL).tar.bz2 - -# We define upstream file regex so we can be notifed of new upstream software release +# We define upstream file regex so we can be notifed of new upstream +# software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*)-p(\d+).tar.bz2 -DISTFILES += CSWruby.gspec CSWruby.depend CSWruby.prototype -DISTFILES += CSWrubytk.gspec CSWrubytk.depend CSWrubytk.prototype +DISTFILES = $(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL).tar.bz2 +DISTFILES += $(call admfiles,CSWruby,) $(call admfiles,CSWrubytk,) +# See: http://rubyforge.org/tracker/index.php?func=detail&aid=17607&group_id=426&atid=1698 +PATCHFILES = rdoc_parse_order_fix.patch + ifneq ($(SKIP_RUBYDOC),1) -DISTFILES += CSWrubydoc.gspec CSWrubydoc.depend +DISTFILES += $(call admfiles,CSWrubydoc,) endif -# Force the dbm extension to build -#PATCHFILES += dbm.diff - -#LIBDEPS += lib/iconv lib/gdbm lib/ncurses lib/readline -#LIBDEPS += lib/zlib lib/openssl lib/bdb3 -#LIBDEPS += lang/tcl lang/tk - # Put samples and RI documentation in share/doc/ruby datadir = $(docdir)/ruby +GARCOMPILER = GNU + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-pthread CONFIGURE_ARGS += --enable-shared @@ -54,30 +59,18 @@ CONFIGURE_ARGS += --with-readline-dir=$(prefix) CONFIGURE_ARGS += --with-zlib-dir=$(prefix) -#override this as the configure script wants to use the obsolete (broken in -#some cases) -KPIC -#ifeq "$(GARCH)" "sparc" -#CONFIGURE_ARGS += CFLAGS="-xO3 -xtarget=ultra -xarch=v8 -I/export/home/bwalton/build.5.8-sparc/ruby/opt/csw/include -I/opt/csw/include" -#CFLAGS = -xO3 -xtarget=ultra -xarch=v8 -I/export/home/bwalton/build.5.8-sparc/ruby/opt/csw/include -I/opt/csw/include -#endif +WORKSRC = $(WORKDIR)/$(DISTNAME)-$(PATCHLEVEL) +WORKSRC_FIRSTMOD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(DISTNAME)-$(PATCHLEVEL) include gar/category.mk SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHLEVEL) -# Replace current build arch in prototype -pre-package: - @for proto in "" $(wildcard $(WORKDIR)/*.prototype) ; do \ - test -z "$$proto" && continue ; \ - gsed -i -e s,%GARCH%,$(GARCH),g $$proto ; \ - done +INSTALL_ARGS = install-all PI_TARGETS = samples rbconfig rbscripts -ifneq ($(SKIP_RUBYDOC),1) -PI_TARGETS += rubydoc -endif -post-install: $(PI_TARGETS) +post-install-modulated: $(PI_TARGETS) @$(MAKECOOKIE) # Fix up rbconfig @@ -89,28 +82,12 @@ # Copy samples samples: @mkdir -p $(DESTDIR)$(datadir) - @cp -R $(WORKSRC)/sample $(DESTDIR)$(datadir) + @cp -R $(WORKSRC_FIRSTMOD)/sample $(DESTDIR)$(datadir) @for ext in bigdecimal dl tk ; do \ - cp -R $(WORKSRC)/ext/$$ext/sample $(DESTDIR)$(datadir)/sample/$$ext ; \ + cp -R $(WORKSRC_FIRSTMOD)/ext/$$ext/sample $(DESTDIR)$(datadir)/sample/$$ext ; \ done @$(MAKECOOKIE) -# Doing a 'make install-doc' in $(WORKSRC) tries to install -# docs to the real prefix. This target installs to the packaging -# prefix instead. -rubydoc: - ( cd $(WORKSRC) ; \ - LD_LIBRARY_PATH=$(DESTDIR)$(libdir) \ - $(DESTDIR)$(bindir)/ruby \ - -I $(DESTDIR)$(libdir)/ruby/1.8 \ - -I $(DESTDIR)$(libdir)/ruby/1.8/$(GARCH)-solaris2.8 \ - bin/rdoc \ - --all \ - --ri-system \ - --op $(DESTDIR)$(datadir)/ri/1.8/system \ - $(DESTDIR)$(libdir)/ruby/1.8 ) - @$(MAKECOOKIE) - # Some scripts come with /usr/local/bin/ruby hard coded. rbscripts: @echo " ==> Fixing shebang path in distributed ruby scripts" Modified: csw/mgar/pkg/ruby/trunk/checksums =================================================================== --- csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 00:44:24 UTC (rev 2933) +++ csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 03:40:29 UTC (rev 2934) @@ -1,9 +1,5 @@ 0b215c46b89b28d7ab8d56d96e72d5b9 download/ruby-1.8.7-p72.tar.bz2 b2d3f1987e4dd3962f15131dc6ab28a3 download/CSWruby.gspec -25662a7cdcf85d39c6d570d59a3fb6e1 download/CSWruby.depend -86606872b8f3ee082d450749de65278f download/CSWruby.prototype 1b4a5fec67986e3f38df7e34c2155ed1 download/CSWrubytk.gspec -817e7a061bed70106d8cf71c9663089b download/CSWrubytk.depend -8f76677cdf9627f1f203e3cfee871422 download/CSWrubytk.prototype 02d0cf5721de6c1f6740b399cbe141f1 download/CSWrubydoc.gspec -75313e990d12f29577e16fc44aab7dfa download/CSWrubydoc.depend +36460ea6a145017c3ddd1173e903a511 download/rdoc_parse_order_fix.patch Added: csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch =================================================================== --- csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch (rev 0) +++ csw/mgar/pkg/ruby/trunk/files/rdoc_parse_order_fix.patch 2009-01-30 03:40:29 UTC (rev 2934) @@ -0,0 +1,11 @@ +--- ruby-1.8.7-p72/lib/rdoc/rdoc.rb.orig 2009-01-30 03:16:02.823906957 +0100 ++++ ruby-1.8.7-p72/lib/rdoc/rdoc.rb 2009-01-30 03:16:09.628913124 +0100 +@@ -200,7 +200,7 @@ + # we may well contain subdirectories which must + # be tested for .document files + def list_files_in_directory(dir, options) +- normalized_file_list(options, Dir.glob(File.join(dir, "*")), false, options.exclude) ++ normalized_file_list(options, Dir.glob(File.join(dir, "*")).sort, false, options.exclude) + end + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Fri Jan 30 09:49:31 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Fri, 30 Jan 2009 08:49:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[2935] csw/mgar/pkg Message-ID: Revision: 2935 http://gar.svn.sourceforge.net/gar/?rev=2935&view=rev Author: idogan23 Date: 2009-01-30 08:49:30 +0000 (Fri, 30 Jan 2009) Log Message: ----------- swftools: initial commit Added Paths: ----------- csw/mgar/pkg/swftools/ csw/mgar/pkg/swftools/branches/ csw/mgar/pkg/swftools/tags/ csw/mgar/pkg/swftools/trunk/ csw/mgar/pkg/swftools/trunk/Makefile csw/mgar/pkg/swftools/trunk/checksums csw/mgar/pkg/swftools/trunk/files/ csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec Property changes on: csw/mgar/pkg/swftools/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/swftools/trunk/Makefile =================================================================== --- csw/mgar/pkg/swftools/trunk/Makefile (rev 0) +++ csw/mgar/pkg/swftools/trunk/Makefile 2009-01-30 08:49:30 UTC (rev 2935) @@ -0,0 +1,25 @@ +GARNAME = swftools +GARVERSION = 0.8.1 +CATEGORIES = lib + +DESCRIPTION = SWF manipulation and generation utilities +define BLURB + SWF manipulation and generation utilities +endef + +MASTER_SITES = http://www.swftools.org/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWswftools,) + +# 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) + +GARCOMPILER = GCC3 + +include gar/category.mk Added: csw/mgar/pkg/swftools/trunk/checksums =================================================================== --- csw/mgar/pkg/swftools/trunk/checksums (rev 0) +++ csw/mgar/pkg/swftools/trunk/checksums 2009-01-30 08:49:30 UTC (rev 2935) @@ -0,0 +1,2 @@ +932f4e5fce551ed70c0390fdc0eb1af6 download/swftools-0.8.1.tar.gz +74eaeda4ed196a1ce3bc8761697e9e58 download/CSWswftools.gspec Added: csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec =================================================================== --- csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec (rev 0) +++ csw/mgar/pkg/swftools/trunk/files/CSWswftools.gspec 2009-01-30 08:49:30 UTC (rev 2935) @@ -0,0 +1,4 @@ +%var bitname swftools +%var pkgname CSWswftools +%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 dmichelsen at users.sourceforge.net Fri Jan 30 11:38:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:38:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[2936] csw/mgar/pkg Message-ID: Revision: 2936 http://gar.svn.sourceforge.net/gar/?rev=2936&view=rev Author: dmichelsen Date: 2009-01-30 10:38:12 +0000 (Fri, 30 Jan 2009) Log Message: ----------- kshdbx: Initial commit Added Paths: ----------- csw/mgar/pkg/kshdbx/ csw/mgar/pkg/kshdbx/branches/ csw/mgar/pkg/kshdbx/tags/ csw/mgar/pkg/kshdbx/trunk/ csw/mgar/pkg/kshdbx/trunk/Makefile csw/mgar/pkg/kshdbx/trunk/files/ csw/mgar/pkg/kshdbx/trunk/files/CSWpackage.gspec csw/mgar/pkg/kshdbx/trunk/legacy/ csw/mgar/pkg/kshdbx/trunk/legacy/README csw/mgar/pkg/kshdbx/trunk/legacy/copyright csw/mgar/pkg/kshdbx/trunk/legacy/depend csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo csw/mgar/pkg/kshdbx/trunk/legacy/prototype csw/mgar/pkg/kshdbx/trunk/legacy/src/ csw/mgar/pkg/kshdbx/trunk/legacy/src/KSHDB_ORIG.tar.gz csw/mgar/pkg/kshdbx/trunk/legacy/src/kshdbx-1.2.tar.gz Property changes on: csw/mgar/pkg/kshdbx/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/kshdbx/trunk/Makefile =================================================================== --- csw/mgar/pkg/kshdbx/trunk/Makefile (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/Makefile 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/kshdbx/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/kshdbx/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/files/CSWpackage.gspec 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/kshdbx/trunk/legacy/README =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/README 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,100 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the KSHDBX package. +# +# PACKAGE: CSWkshdbx +# +# REVISION: 09-09-05 +# +# NOTES: * This package is a set of architecture independent ksh(1) +# scripts and will work on both the sparc and intel platforms. +# +############################################################################### + +------------------------------------------------------------------------------- +01: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/kshdbx + vi pkginfo + [edit the version info to match the current revision/release] + +------------------------------------------------------------------------------- +02: Update the copyright file (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd src + cp copyright ../copyright + +------------------------------------------------------------------------------- +03: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +04: Update the prototype file +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +05: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/kshdbx/prototype prototype + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/kshdbx + +------------------------------------------------------------------------------- +06: Create the package kshdbx-*-SunOS5.8-all-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/kshdbx + createpkg -r ${HOME}/pkgs/kshdbx/src/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +07: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + make pack + +------------------------------------------------------------------------------- +08: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/kshdbx + cp kshdbx-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +09: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp kshdbx-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +10: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/kshdbx/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/copyright 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,51 @@ +############################################################################### +# +# FILE: copyright +# +# DESCRIPTION: Copyright information for the kshdbx(1) package. +# +# AUTHOR: C. Jeffery Small (jeff at cjsa.com) +# +# REVISIONS: Latest revision: 12-23-04 +# +############################################################################### + +The original kshdb scripts were written by Bill Rosenblatt and published in +January 1993 by O'Reilly & Associates in the book "Learning the Korn Shell" +(ISBN: 1-56592-054-6). These scripts were subsequently republished in the +May 1993 issue of UnixWorld Magazine. + +The source code for these original scripts may be located at: + + http://examples.oreilly.com/korn/ksh.tar.Z + + +The author, Bill Rosenblatt, has indicated his willingness to allow the +kshdb code to be modified and redistributed, but the actual copyright is +owned by the publisher O'Reilly & Associates. The complete text of the +"O'Reilly Policy on Re-Use of Code Examples from Books" can be seen at: + + http://www.oreilly.com/pub/a/oreilly/ask_tim/2001/codepolicy.html + +In part, this policy states: + + "You can use and redistribute example code from our books for any + non-commercial purpose (and most commercial purposes) as long as you + acknowledge their source and authorship. The source of the code should + be noted in any documentation as well as in the program code itself + (as a comment). The attribution should include author, title, publisher, + and ISBN." + + "As per the copyright notice in our books, O'Reilly reserves all + rights to the material in the book, including the code examples. This + literally means that you can use the example code all you like, but you + can't publish or redistribute it without our permission. In reality, we + are comfortable with any reasonable "fair use" of the code, and you can + assume permission is granted without contacting us." + + +The accompanying kshdbx scripts are modified versions of the original +kshdb scripts. All modifications were written by C. Jeffery Small +(jeff at cjsa.com) and the right to use and redistribute these modifications +for any purpose is hereby granted, so long as a copy of this copyright file +always accompanies the code. Added: csw/mgar/pkg/kshdbx/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/depend 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/pkginfo 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,9 @@ +PKG=CSWkshdbx +NAME=kshdbx - an interactive ksh(1) Korn shell debugger +VERSION=1.2 +ARCH=all +CATEGORY=application +CSW_CATEGORY="prog, shell, user" +VENDOR=http://examples.oreilly.com/korn/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/kshdbx/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/kshdbx/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/kshdbx/trunk/legacy/prototype 2009-01-30 10:38:12 UTC (rev 2936) @@ -0,0 +1,13 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/kshdbx.1 0644 root bin +d none /opt/csw/share/kshdbx 0755 root bin +f none /opt/csw/share/kshdbx/copyright 0644 root bin +f none /opt/csw/share/kshdbx/kshdbx.func 0644 root bin +f none /opt/csw/share/kshdbx/kshdbx.pre 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/kshdbx 0755 root bin Added: csw/mgar/pkg/kshdbx/trunk/legacy/src/KSHDB_ORIG.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/kshdbx/trunk/legacy/src/KSHDB_ORIG.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/kshdbx/trunk/legacy/src/kshdbx-1.2.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/kshdbx/trunk/legacy/src/kshdbx-1.2.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 30 11:44:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:44:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[2937] csw/mgar/pkg Message-ID: Revision: 2937 http://gar.svn.sourceforge.net/gar/?rev=2937&view=rev Author: dmichelsen Date: 2009-01-30 10:44:13 +0000 (Fri, 30 Jan 2009) Log Message: ----------- xtide: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/xtide/ csw/mgar/pkg/xtide/branches/ csw/mgar/pkg/xtide/tags/ csw/mgar/pkg/xtide/trunk/ csw/mgar/pkg/xtide/trunk/Makefile csw/mgar/pkg/xtide/trunk/files/ csw/mgar/pkg/xtide/trunk/files/CSWpackage.gspec csw/mgar/pkg/xtide/trunk/legacy/ csw/mgar/pkg/xtide/trunk/legacy/xtide/ csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES csw/mgar/pkg/xtide/trunk/legacy/xtide/README csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright csw/mgar/pkg/xtide/trunk/legacy/xtide/depend csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype csw/mgar/pkg/xtide/trunk/legacy/xtide/src/ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile csw/mgar/pkg/xtide/trunk/legacy/xtideh/ csw/mgar/pkg/xtide/trunk/legacy/xtideh/README csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/ csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile csw/mgar/pkg/xtide/trunk/legacy/xtidew/ csw/mgar/pkg/xtide/trunk/legacy/xtidew/README csw/mgar/pkg/xtide/trunk/legacy/xtidew/copyright csw/mgar/pkg/xtide/trunk/legacy/xtidew/depend csw/mgar/pkg/xtide/trunk/legacy/xtidew/pkginfo csw/mgar/pkg/xtide/trunk/legacy/xtidew/prototype csw/mgar/pkg/xtide/trunk/legacy/xtidew/src/ csw/mgar/pkg/xtide/trunk/legacy/xtidew/src/Makefile Property changes on: csw/mgar/pkg/xtide/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/xtide/trunk/Makefile =================================================================== --- csw/mgar/pkg/xtide/trunk/Makefile (rev 0) +++ csw/mgar/pkg/xtide/trunk/Makefile 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/xtide/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/xtide/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/xtide/trunk/files/CSWpackage.gspec 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/BUILD.NOTES 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,89 @@ +############################################################################### +# +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the XTIDE package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWxtide +# +# CUR VER: xtide Version 2.9.5 +# +# REVISION: 02-04-08 +# +# NOTES: * +# +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +10-25-04 2.7.1 Initial 2.7.1 package creation +01-31-05 2.8.2 +12-22-07 2.9.5 +02-04-08 2.10-RC1 +------------------------------------------------------------------------------- + +############################################################################### +# NOTES FOR SUN COMPILER BUILD +############################################################################### + +------------------------------------------------------------------------------- +SPARC: (CC) +------------------------------------------------------------------------------- + +make libtcd: + * No errors or warnings. + + +make xtide: + * There are numerous warning message issued during the build. + These are generally string literal conversions to char*. + Too many to list here. + +------------------------------------------------------------------------------- + + + +------------------------------------------------------------------------------- +INTEL: (CC) +------------------------------------------------------------------------------- + +make: * Same warnings and errors as with SPARC + +------------------------------------------------------------------------------- + +############################################################################### +# NOTES FOR GCC/G++ COMPILER BUILD +############################################################################### + +------------------------------------------------------------------------------- +PARC: (gcc/g++) +------------------------------------------------------------------------------- + +make libtcd: + * No errors or warnings. + + + +make xtide: + Station.cc: In function `interval_rep_t llround(double)': + Station.cc:46: warning: converting to `interval_rep_t' from `double' + Station.cc:48: warning: converting to `interval_rep_t' from `double' + +------------------------------------------------------------------------------ + + + +------------------------------------------------------------------------------- +INTEL: (gcc/g++) +------------------------------------------------------------------------------- + +make: * Same warnings and errors as with SPARC + +------------------------------------------------------------------------------- Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/README =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/README (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/README 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,255 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the XTIDE package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWxtide +# +# REVISION: 02-05-08 +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: ra + or + INTEL: thor + +------------------------------------------------------------------------------- +02: Update the pkginfo file VERSION=[,REV=YYYY.MM.DD] +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtide + vi pkginfo + [edit the VERSION line including the ,REV=YYYY.MM.DD string] + [edit the ARCH line for either a 'sparc' or 'i386' build] + + NOTE: No '-' allowed in the VERSION string + +------------------------------------------------------------------------------- +03: Download and/or unpack source code [**** ONLY ONCE PER SESSION ****] +------------------------------------------------------------------------------- + + cd src + + For new versions of software: + vi Makefile [set XVER to current xtide version] + [set LVER to current libtcd version] + make get [download new source code] + make extract [unpack new source code] + + For software updates: + make unpack [unpack existing source code] + +------------------------------------------------------------------------------- +04: Build the libtcd static library +------------------------------------------------------------------------------- + + For Sun CC compiler: + SPARC: export CC="cc -fast -xarch=v8 -xnolibmopt -xstrconst -xildoff" + INTEL: export CC="cc -fast -xarch=386 -xstrconst -xildoff" + + For GNU gcc compiler: + unset CC + + For either compiler: + + cd libtcd*[0-9] + + make clean + rm -f Makefile + ../.libtcdConfig + make + +------------------------------------------------------------------------------- +05: Make xtide links to libtcd library and header files +------------------------------------------------------------------------------- + + cd .. + + make links + + ls -als xtide*[0-9]/libtcd xtide*[0-9]/tcd.h + ls -alsL xtide*[0-9]/libtcd xtide*[0-9]/tcd.h + +------------------------------------------------------------------------------- +06: Modify the install target in Makefile.in, using the contents in the + .xtideMake.mods file: [**** ONLY ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + cd xtide*[0-9] + vi ../.xtideMake.mods Makefile.in + +------------------------------------------------------------------------------- +07: Update copyright file [**** ONLY ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + vi README ${HOME}/pkgs/xtide/copyright + [copy entire "License and disclaimer" section to copyright file] + [eliminate the word "Icon" from "Icon License and disclaimer] + +------------------------------------------------------------------------------- +08: Set the proper build environment +------------------------------------------------------------------------------- + + For Sun CC compiler: + SPARC: export CXX="CC -fast -xarch=v8 -library=stlport4" + INTEL: export CXX="CC -fast -xarch=386 -library=stlport4" + + For GNU gcc compiler: + * NOTE: If compiling with GNU gcc/g++ compilers, you must make sure + you are compiling with gcc V3* and not 2.95.3. Check it + with: gcc --version + +------------------------------------------------------------------------------- +09: Compile the software using customized configure script +------------------------------------------------------------------------------- + + --------------------------------------------------------------------------- + For Sun CC compiler: + --------------------------------------------------------------------------- + make clean + rm -f Makefile # force Makefile recreation + ../.xtideConfig + + script zzzz # save output in file zzzz + make + exit # terminate script + + --------------------------------------------------------------------------- + For GNU gcc compiler: + --------------------------------------------------------------------------- + + make clean + rm -f Makefile # force Makefile recreation + ../.xtideConfig-gcc + + script zzzz # save output in file zzzz + make + exit # terminate script + +------------------------------------------------------------------------------- +10: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg DESTDIR=$PWD/cswstage install + +------------------------------------------------------------------------------- +11: Update the prototype file +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check: 'f'iles & 'd'irs have owner/group 'root bin'] + egrep '0444|0555' prototype + [check: permissions should all be 0644 & 0755] + grep '^i depend$' prototype + [check: the third line should be: i depend ] + +------------------------------------------------------------------------------- +12: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/xtide/prototype prototype + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/xtide + +------------------------------------------------------------------------------- +13: Create the package xtide-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtide + createpkg -r ${HOME}/pkgs/xtide/src/xtide*[0-9]/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + + NOTE: Packaging fails due to the xtideh and xtidew packages not being + installed on the build machines. + + ERROR: information for "CSWxtidew" was not found + ERROR: invalid package CSWxtidew specified + ERROR: failed check. + + This should be the last step in the checking process so + everything is actually OK. To finish the packaging step, + simply gzip up the file with: + + gzip xtide*pkg + +------------------------------------------------------------------------------- +14: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + *** Current dependencies are listed in the depend file *** + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 08 and recreate the package + +------------------------------------------------------------------------------- +15: Make package for other platform. +------------------------------------------------------------------------------- + + Go to step 01 and repeat for other architecture + +------------------------------------------------------------------------------- +16: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtide/src/libtcd*[0-9] + make clean + + cd ${HOME}/pkgs/xtide/src/xtide*[0-9] + make clean ; rm -rf cswstage zzzz + + cd ${HOME}/pkgs/xtide/src + make pack # if req'd, tar up and gzip source + make clean # remove the source code + +------------------------------------------------------------------------------- +18: Copy the newsparc and i386 packages to the testing or installation area +------------------------------------------------------------------------------- + + cd pkgs/xtide + + cp xtide-*.pkg.gz /export/medusa/testing + or + cp xtide-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +19: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp libtcd-*.gz xtide-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +20: Notify users for testing or package administrator for update +------------------------------------------------------------------------------- + + Post message to the Blastwave maint list regarding testing + or + Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------- +21: Build the xtideh and xtidew packages +------------------------------------------------------------------------------- + + If required, repackage the xtide harmonics & shoreline data files + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/copyright 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,722 @@ +License and disclaimer + + NOTE. The license and disclaimer appearing below applies to the XTide + program itself. For information about permissions on the harmonic + constants, see + [3]http://www.flaterco.com/xtide/harmonics_boilerplate.txt and + [4]http://harmonics.unh.edu/xtide/harmonics_boilerplate.txt. + + XTide Copyright \xA9 1998 David Flater + + This software is provided under the terms of the GNU General Public + License, either version 3 of the License, or (at your option) any later + version. + + Although the package as a whole is GPL, some individual source files + are public domain. Consult their header comments for details. + + NOT FOR NAVIGATION + + 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. The author + assumes no liability for damages arising from use of this program OR of + any 'harmonics data' that might be distributed with it. For details, + see the appended GNU General Public License. + + (Accurate tide predictions can only be made if the 'harmonics data' for + the relevant location are good. Unfortunately, the only way the + maintainer of those data has of knowing when they are bad is when + someone with access to authoritative tide predictions or observations + reports a problem. You should not use this program or any data files + that might be distributed with it if anyone or anything could come to + harm as a result of an incorrect tide prediction. NOAA and similar + agencies in other countries can provide you with certified tide + predictions if that is what you need.) + + XTide's predictions do not incorporate the effects of tropical storms, + El Ni\xF1o, seismic events, subsidence, uplift, or changes in global sea + level. + __________________________________________________________________ + + The tide prediction algorithm used in this program was developed with + United States Government funding, so no proprietary rights can be + attached to it. For more information, refer to the following + publications: + + Manual of Harmonic Analysis and Prediction of Tides. Special + Publication No. 98, Revised (1940) Edition (reprinted 1958 with + corrections; reprinted again 1994). United States Government + Printing Office, 1994. + + Computer Applications to Tides in the National Ocean Survey. + Supplement to Manual of Harmonic Analysis and Prediction of Tides + (Special Publication No. 98). National Ocean Service, National + Oceanic and Atmospheric Administration, U.S. Department of Commerce, + January 1982. + __________________________________________________________________ + + GNU GENERAL PUBLIC LICENSE + + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <[5]http://fsf.org/> + + Everyone is permitted to copy and distribute verbatim copies of this + license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for software + and other kinds of works. + + The licenses for most software and other practical works are designed + to take away your freedom to share and change the works. By contrast, + the GNU General Public License is intended to guarantee your freedom to + share and change all versions of a program--to make sure it remains + free software for all its users. We, the Free Software Foundation, use + the GNU General Public License for most of our software; it applies + also to any other work released this way by its authors. You can apply + it to your programs, too. + + When we speak of free software, we are referring to freedom, not + price. Our General Public Licenses are designed to make sure that you + have the freedom to distribute copies of free software (and charge for + them if you wish), that you receive source code or can get it if you + want it, that you can change the software or use pieces of it in new + free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you + these rights or asking you to surrender the rights. Therefore, you + have certain responsibilities if you distribute copies of the software, + or if you modify it: responsibilities to respect the freedom of + others. + + For example, if you distribute copies of such a program, whether gratis + or for a fee, you must pass on to the recipients the same freedoms that + you received. You must make sure that they, too, receive or can get + the source code. And you must show them these terms so they know their + rights. + + Developers that use the GNU GPL protect your rights with two steps: + (1) assert copyright on the software, and (2) offer you this License + giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains + that there is no warranty for this free software. For both users' and + authors' sake, the GPL requires that modified versions be marked as + changed, so that their problems will not be attributed erroneously to + authors of previous versions. + + Some devices are designed to deny users access to install or run + modified versions of the software inside them, although the + manufacturer can do so. This is fundamentally incompatible with the + aim of protecting users' freedom to change the software. The + systematic pattern of such abuse occurs in the area of products for + individuals to use, which is precisely where it is most unacceptable. + Therefore, we have designed this version of the GPL to prohibit the + practice for those products. If such problems arise substantially in + other domains, we stand ready to extend this provision to those domains + in future versions of the GPL, as needed to protect the freedom of + users. + + Finally, every program is threatened constantly by software patents. + States should not allow patents to restrict development and use of + software on general-purpose computers, but in those that do, we wish to + avoid the special danger that patents applied to a free program could + make it effectively proprietary. To prevent this, the GPL assures that + patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and + modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of + works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this + License. Each licensee is addressed as "you". "Licensees" and + "recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work + in a fashion requiring copyright permission, other than the making of + an exact copy. The resulting work is called a "modified version" of + the earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based on + the Program. + + To "propagate" a work means to do anything with it that, without + permission, would make you directly or secondarily liable for + infringement under applicable copyright law, except executing it on a + computer or modifying a private copy. Propagation includes copying, + distribution (with or without modification), making available to the + public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other + parties to make or receive copies. Mere interaction with a user + through a computer network, with no transfer of a copy, is not + conveying. + + An interactive user interface displays "Appropriate Legal Notices" to + the extent that it includes a convenient and prominently visible + feature that (1) displays an appropriate copyright notice, and (2) + tells the user that there is no warranty for the work (except to the + extent that warranties are provided), that licensees may convey the + work under this License, and how to view a copy of this License. If + the interface presents a list of user commands or options, such as a + menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work for + making modifications to it. "Object code" means any non-source form of + a work. + + A "Standard Interface" means an interface that either is an official + standard defined by a recognized standards body, or, in the case of + interfaces specified for a particular programming language, one that is + widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other + than the work as a whole, that (a) is included in the normal form of + packaging a Major Component, but which is not part of that Major + Component, and (b) serves only to enable use of the work with that + Major Component, or to implement a Standard Interface for which an + implementation is available to the public in source code form. A + "Major Component", in this context, means a major essential component + (kernel, window system, and so on) of the specific operating system (if + any) on which the executable work runs, or a compiler used to produce + the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all the + source code needed to generate, install, and (for an executable work) + run the object code and to modify the work, including scripts to + control those activities. However, it does not include the work's + System Libraries, or general-purpose tools or generally available free + programs which are used unmodified in performing those activities but + which are not part of the work. For example, Corresponding Source + includes interface definition files associated with source files for + the work, and the source code for shared libraries and dynamically + linked subprograms that the work is specifically designed to require, + such as by intimate data communication or control flow between those + subprograms and other parts of the work. + + The Corresponding Source need not include anything that users can + regenerate automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same + work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of + copyright on the Program, and are irrevocable provided the stated + conditions are met. This License explicitly affirms your unlimited + permission to run the unmodified Program. The output from running a + covered work is covered by this License only if the output, given its + content, constitutes a covered work. This License acknowledges your + rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not convey, + without conditions so long as your license otherwise remains in force. + You may convey covered works to others for the sole purpose of having + them make modifications exclusively for you, or provide you with + facilities for running those works, provided that you comply with the + terms of this License in conveying all material for which you do not + control copyright. Those thus making or running the covered works for + you must do so exclusively on your behalf, under your direction and + control, on terms that prohibit them from making any copies of your + copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under the + conditions stated below. Sublicensing is not allowed; section 10 makes + it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological + measure under any applicable law fulfilling obligations under article + 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar + laws prohibiting or restricting circumvention of such measures. + + When you convey a covered work, you waive any legal power to forbid + circumvention of technological measures to the extent such + circumvention is effected by exercising rights under this License with + respect to the covered work, and you disclaim any intention to limit + operation or modification of the work as a means of enforcing, against + the work's users, your or third parties' legal rights to forbid + circumvention of technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you + receive it, in any medium, provided that you conspicuously and + appropriately publish on each copy an appropriate copyright notice; + keep intact all notices stating that this License and any + non-permissive terms added in accord with section 7 apply to the code; + keep intact all notices of the absence of any warranty; and give all + recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, and + you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to + produce it from the Program, in the form of source code under the terms + of section 4, provided that you also meet all of these conditions: + * a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + * b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to "keep + intact all notices". + * c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + * d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your work + need not make them do so. + + A compilation of a covered work with other separate and independent + works, which are not by their nature extensions of the covered work, + and which are not combined with it such as to form a larger program, in + or on a volume of a storage or distribution medium, is called an + "aggregate" if the compilation and its resulting copyright are not used + to limit the access or legal rights of the compilation's users beyond + what the individual works permit. Inclusion of a covered work in an + aggregate does not cause this License to apply to the other parts of + the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms of + sections 4 and 5, provided that you also convey the machine-readable + Corresponding Source under the terms of this License, in one of these + ways: + * a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium customarily + used for software interchange. + * b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as long + as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the Corresponding Source + from a network server at no charge. + * c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + * d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + * e) Convey the object code using peer-to-peer transmission, + provided you inform other peers where the object code and + Corresponding Source of the work are being offered to the general + public at no charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded + from the Corresponding Source as a System Library, need not be included + in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any + tangible personal property which is normally used for personal, family, + or household purposes, or (2) anything designed or sold for + incorporation into a dwelling. In determining whether a product is a + consumer product, doubtful cases shall be resolved in favor of + coverage. For a particular product received by a particular user, + "normally used" refers to a typical or common use of that class of + product, regardless of the status of the particular user or of the way + in which the particular user actually uses, or expects or is expected + to use, the product. A product is a consumer product regardless of + whether the product has substantial commercial, industrial or + non-consumer uses, unless such uses represent the only significant mode + of use of the product. + + "Installation Information" for a User Product means any methods, + procedures, authorization keys, or other information required to + install and execute modified versions of a covered work in that User + Product from a modified version of its Corresponding Source. The + information must suffice to ensure that the continued functioning of + the modified object code is in no case prevented or interfered with + solely because modification has been made. + + If you convey an object code work under this section in, or with, or + specifically for use in, a User Product, and the conveying occurs as + part of a transaction in which the right of possession and use of the + User Product is transferred to the recipient in perpetuity or for a + fixed term (regardless of how the transaction is characterized), the + Corresponding Source conveyed under this section must be accompanied by + the Installation Information. But this requirement does not apply if + neither you nor any third party retains the ability to install modified + object code on the User Product (for example, the work has been + installed in ROM). + + The requirement to provide Installation Information does not include a + requirement to continue to provide support service, warranty, or + updates for a work that has been modified or installed by the + recipient, or for the User Product in which it has been modified or + installed. Access to a network may be denied when the modification + itself materially and adversely affects the operation of the network or + violates the rules and protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, + in accord with this section must be in a format that is publicly + documented (and with an implementation available to the public in + source code form), and must require no special password or key for + unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this + License by making exceptions from one or more of its conditions. + Additional permissions that are applicable to the entire Program shall + be treated as though they were included in this License, to the extent + that they are valid under applicable law. If additional permissions + apply only to part of the Program, that part may be used separately + under those permissions, but the entire Program remains governed by + this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option remove + any additional permissions from that copy, or from any part of it. + (Additional permissions may be written to require their own removal in + certain cases when you modify the work.) You may place additional + permissions on material, added by you to a covered work, for which you + have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you + add to a covered work, you may (if authorized by the copyright holders + of that material) supplement the terms of this License with terms: + * a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + * b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + * c) Prohibiting misrepresentation of the origin of that material, + or requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + * d) Limiting the use for publicity purposes of names of licensors + or authors of the material; or + * e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + * f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions + of it) with contractual assumptions of liability to the recipient, + for any liability that these contractual assumptions directly + impose on those licensors and authors. + + All other non-permissive additional terms are considered "further + restrictions" within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the additional + terms that apply to those files, or a notice indicating where to find + the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; the + above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your license + from a particular copyright holder is reinstated (a) provisionally, + unless and until the copyright holder explicitly and finally terminates + your license, and (b) permanently, if the copyright holder fails to + notify you of the violation by some reasonable means prior to 60 days + after the cessation. + + Moreover, your license from a particular copyright holder is reinstated + permanently if the copyright holder notifies you of the violation by + some reasonable means, this is the first time you have received notice + of violation of this License (for any work) from that copyright holder, + and you cure the violation prior to 30 days after your receipt of the + notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or run + a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission to + receive a copy likewise does not require acceptance. However, nothing + other than this License grants you permission to propagate or modify + any covered work. These actions infringe copyright if you do not + accept this License. Therefore, by modifying or propagating a covered + work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that transaction + who receives a copy of the work also receives whatever licenses to the + work the party's predecessor in interest had or could give under the + previous paragraph, plus a right to possession of the Corresponding + Source of the work from the predecessor in interest, if the predecessor + has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims owned + or controlled by the contributor, whether already acquired or hereafter + acquired, that would be infringed by some manner, permitted by this + License, of making, using, or selling its contributor version, but do + not include claims that would be infringed only as a consequence of + further modification of the contributor version. For purposes of this + definition, "control" includes the right to grant patent sublicenses in + a manner consistent with the requirements of this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To "grant" such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone to + copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. "Knowingly relying" means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is "discriminatory" if it does not include within the + scope of its coverage, prohibits the exercise of, or is conditioned on + the non-exercise of one or more of the rights that are specifically + granted under this License. You may not convey a covered work if you + are a party to an arrangement with a third party that is in the + business of distributing software, under which you make payment to the + third party based on the extent of your activity of conveying the work, + and under which the third party grants, to any of the parties who would + receive the covered work from you, a discriminatory patent license (a) + in connection with copies of the covered work conveyed by you (or + copies made from those copies), or (b) primarily for and in connection + with specific products or compilations that contain the covered work, + unless you entered into that arrangement, or that patent license was + granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting any + implied license or other defenses to infringement that may otherwise be + available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey a + covered work so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a consequence + you may not convey it at all. For example, if you agree to terms that + obligate you to collect a royalty for further conveying from those to + whom you convey the Program, the only way you could satisfy both those + terms and this License would be to refrain entirely from conveying the + Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of + the GNU General Public License from time to time. Such new versions + will be similar in spirit to the present version, but may differ in + detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies that a certain numbered version of the GNU General Public + License "or any later version" applies to it, you have the option of + following the terms and conditions either of that numbered version or + of any later version published by the Free Software Foundation. If the + Program does not specify a version number of the GNU General Public + License, you may choose any version ever published by the Free Software + Foundation. + + If the Program specifies that a proxy can decide which future versions + of the GNU General Public License can be used, that proxy's public + statement of acceptance of a version permanently authorizes you to + choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + 15. Disclaimer of Warranty. + + 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. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING + WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR + CONVEYS 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. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided + above cannot be given local legal effect according to their terms, + reviewing courts shall apply local law that most closely approximates + an absolute waiver of all civil liability in connection with the + Program, unless a warranty or assumption of liability accompanies a + copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest + possible use to the public, the best way to achieve this is to make it + free software which everyone can redistribute and change under these + terms. + + To do so, attach the following notices to the program. It is safest to + attach them to the start of each source file to most effectively state + the exclusion of warranty; and each file should have at least the + "copyright" line and a pointer to where the full notice is found. + + Copyright (C) + + 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 . + + Also add information on how to contact you by electronic and paper + mail. + + If the program does terminal interaction, make it output a short notice + like this when it starts in an interactive mode: + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + + The hypothetical commands `show w' and `show c' should show the + appropriate parts of the General Public License. Of course, your + program's commands might be different; for a GUI interface, you would + use an "about box". + + You should also get your employer (if you work as a programmer) or + school, if any, to sign a "copyright disclaimer" for the program, if + necessary. For more information on this, and how to apply and follow + the GNU GPL, see <[6]http://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your + program into proprietary programs. If your program is a subroutine + library, you may consider it more useful to permit linking proprietary + applications with the library. If this is what you want to do, use the + GNU Lesser General Public License instead of this License. But first, + please read <[7]http://www.gnu.org/philosophy/why-not-lgpl.html>. Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/depend =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/depend (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/depend 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,7 @@ +P CSWcommon +P CSWpng +P CSWxpm +P CSWzlib +P CSWstlport +P CSWxtideh +P CSWxtidew Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/pkginfo 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,9 @@ +PKG=CSWxtide +NAME=xtide - harmonic tide clock and tide predictor +VERSION=2.10,REV=2008.02.07 +ARCH=sparc +CATEGORY=application +CSW_CATEGORY="eng, fun, user" +VENDOR=http://www.flaterco.com/xtide/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/prototype 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,21 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man1 0755 root bin +f none /opt/csw/share/man/man1/tide.1 0644 root bin +f none /opt/csw/share/man/man1/xtide.1 0644 root bin +d none /opt/csw/share/man/man8 0755 root bin +f none /opt/csw/share/man/man8/xttpd.8 0644 root bin +d none /opt/csw/share/xtide 0755 root bin +f none /opt/csw/share/xtide/copyright 0644 root bin +f none /opt/csw/share/xtide/xtide.conf.sample 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/tide.bin 0755 root bin +f none /opt/csw/bin/xtide.bin 0755 root bin +f none /opt/csw/bin/tide 0755 root bin +f none /opt/csw/bin/xtide 0755 root bin +d none /opt/csw/sbin 0755 root bin +f none /opt/csw/sbin/xttpd.bin 0755 root bin +f none /opt/csw/sbin/xttpd 0755 root bin Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,21 @@ +#! /bin/sh +############################################################################### +# +# FILE: .libtcdConfig +# +# DESCRIPTION: Configuration file for the libtcd program. This should be +# executed from withing the current libtcd build sub-directory +# as: +# +# ../.libtcdConfig +# +# NOTES: +# +# PACKAGE: CSWlibtcd +# +# REVISION: 12-30-07 +# +############################################################################### + +./configure --prefix=/opt/csw --disable-shared \ + CPPFLAGS="-I/opt/csw/include -I." LDFLAGS="-L/opt/csw/lib -R/opt/csw/lib" Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.libtcdConfig ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,28 @@ +#!/bin/sh +############################################################################### +# +# FILE: tide +# +# DESCRIPTION: This script is a front-end to the actual tide binary which +# has been renamed tide.bin. This file is used to set the +# HFILE_PATH and WVS_DIR environment variables to the proper +# values for the CSW installation. +# +# PACKAGE: CSWxtide [Requires CSWxtideh, CSWxtidew] +# +# REVISION: 12-21-07 +# +############################################################################### + +HFILE_PATH="${HFILE_PATH:-/opt/csw/share/xtide/harmonics-free.tcd:/opt/csw/share/xtide/harmonics-nonfree.tcd}" +WVS_DIR="${WVS_DIR:-/opt/csw/share/xtide/wvs}" + +export HFILE_PATH WVS_DIR + +if [ -x /opt/csw/bin/tide.bin ] ; then + PROG="/opt/csw/bin/tide.bin" +else + PROG="tide.bin" +fi + +exec ${PROG} $* Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.tide ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,28 @@ +#!/bin/sh +############################################################################### +# +# FILE: xtide +# +# DESCRIPTION: This script is a front-end to the actual xtide binary which +# has been renamed xtide.bin. This file is used to set the +# HFILE_PATH and WVS_DIR environment variables to the proper +# values for the CSW installation. +# +# PACKAGE: CSWxtide [Requires CSWxtideh, CSWxtidew] +# +# REVISION: 12-21-07 +# +############################################################################### + +HFILE_PATH="${HFILE_PATH:-/opt/csw/share/xtide/harmonics-free.tcd:/opt/csw/share/xtide/harmonics-nonfree.tcd}" +WVS_DIR="${WVS_DIR:-/opt/csw/share/xtide/wvs}" + +export HFILE_PATH WVS_DIR + +if [ -x /opt/csw/bin/xtide.bin ] ; then + PROG="/opt/csw/bin/xtide.bin" +else + PROG="xtide.bin" +fi + +exec ${PROG} $* Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtide ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,23 @@ +#! /bin/sh +############################################################################### +# +# FILE: .xtideConfig +# +# DESCRIPTION: Configuration file for the xtide program. This should be +# executed from withing the current xtide build sub-directory +# as: +# +# ../.xtideConfig +# +# NOTE: *** THIS IS ONLY FOR USE WITH SUN'S cc/CC COMPILERS! *** +# *** USE ../.xtideConfig-gcc when using GNU COMPILERS! *** +# +# PACKAGE: CSWxtide +# +# REVISION: 12-30-07 +# +############################################################################### + +./configure --prefix=/opt/csw \ + CPPFLAGS="-I/opt/csw/include -I." \ + LDFLAGS="-R/opt/csw/lib -L/opt/csw/lib -Llibtcd" Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,23 @@ +#! /bin/sh +############################################################################### +# +# FILE: .xtideConfig-gcc +# +# DESCRIPTION: Configuration file for the xtide program. This should be +# executed from withing the current xtide build sub-directory +# as: +# +# ../.xtideConfig-gcc +# +# NOTE: *** THIS IS ONLY FOR USE WITH THE GNU gcc/g++ COMPILERS! *** +# *** Use ../.xtideConfig when using SUN'S COMPILERS! *** +# +# PACKAGE: CSWxtide +# +# REVISION: 12-30-07 +# +############################################################################### + +./configure --prefix=/opt/csw \ + CPPFLAGS="-I/opt/csw/include -I." \ + LDFLAGS="-R/opt/csw/lib -L/opt/csw/lib -R/opt/csw/gcc3/lib -L/opt/csw/gcc3/lib -Llibtcd" Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideConfig-gcc ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xtideMake.mods 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,61 @@ +############################################################################### +# +# FILE: .xtideMake.mods +# +# DESCRIPTION: These are the pre-configure modifications for the xtide +# Makefile.in file. +# +# PACKAGE: CSWxtide +# +# REVISION: 02-05-08 +# +# NOTES: * This relies on the CJSA version of install. +# +# * Just pick up everything below and move it into the +# Makefile.in file, replacing the default install target +# located there. +# +############################################################################### + +#---------------------------------------------------------------------------- +# Start of install target for Blastwave +#---------------------------------------------------------------------------- +BINDIR = $(DESTDIR)/opt/csw/bin +SBINDIR = $(DESTDIR)/opt/csw/sbin +LIBDIR = $(DESTDIR)/opt/csw/share/xtide +MANDIR = $(DESTDIR)/opt/csw/man + +install: inst-prog inst-lib inst-man + +inst-prog: inst-dirs tide xtide xttpd ../.tide ../.xtide ../.xttpd + install -s -o root -g bin -m 755 tide $(BINDIR)/tide.bin + install -s -o root -g bin -m 755 xtide $(BINDIR)/xtide.bin + install -s -o root -g bin -m 755 xttpd $(SBINDIR)/xttpd.bin + install -c -o root -g bin -m 755 ../.tide $(BINDIR)/tide + install -c -o root -g bin -m 755 ../.xtide $(BINDIR)/xtide + install -c -o root -g bin -m 755 ../.xttpd $(SBINDIR)/xttpd + +inst-lib: inst-dirs ../../copyright + install -c -o root -g bin -m 644 ../../copyright $(LIBDIR) + echo "/opt/csw/share/xtide/harmonics.tcd" > $(LIBDIR)/xtide.conf.sample + echo "/opt/csw/share/xtide/wvs/" >> $(LIBDIR)/xtide.conf.sample + +inst-man: inst-dirs + @for i in *.1 ; do \ + echo "installing $$i" ; \ + install -o root -g bin -m 644 $$i $(MANDIR)/man1 ; \ + done + @for i in *.8 ; do \ + echo "installing $$i" ; \ + install -o root -g bin -m 644 $$i $(MANDIR)/man8 ; \ + done + +inst-dirs: + install -d -o root -g bin -m 755 $(BINDIR) + install -d -o root -g bin -m 755 $(SBINDIR) + install -d -o root -g bin -m 755 $(LIBDIR) + install -d -o root -g bin -m 755 $(MANDIR)/man1 + install -d -o root -g bin -m 755 $(MANDIR)/man8 +#---------------------------------------------------------------------------- +# End of install target for Blastwave +#---------------------------------------------------------------------------- Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,30 @@ +#!/bin/sh +############################################################################### +# +# FILE: xttpd +# +# DESCRIPTION: This script is a front-end to the actual xttpd binary which +# has been renamed xttpd.bin. This file is used to set the +# HFILE_PATH and WVS_DIR environment variable to the proper +# values for the CSW installation. +# +# PACKAGE: CSWxtide [Requires CSWxtideh, CSWxtidew] +# +# REVISION: 12-21-07 +# +############################################################################### + +HFILE_PATH="${HFILE_PATH:-/opt/csw/share/xtide/harmonics-free.tcd:/opt/csw/share/xtide/harmonics-nonfree.tcd}" +WVS_DIR="${WVS_DIR:-/opt/csw/share/xtide/wvs}" + +export HFILE_PATH WVS_DIR + +if [ -x /opt/csw/sbin/xttpd.bin ] ; then + PROG="/opt/csw/sbin/xttpd.bin" +elif [ -x /opt/csw/bin/xttpd.bin ] ; then + PROG="/opt/csw/bin/xttpd.bin" +else + PROG="xttpd.bin" +fi + +exec ${PROG} $* Property changes on: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/.xttpd ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtide/src/Makefile 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,101 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the XTIDE src directory +# +# PACKAGE: CSWxtide +# +# REVISION: 02-05-08 +# +# NOTES: * Set the XVER variable to the current xtide v ersion number +# * Set the LVER variable to the current libtcd version number +# +# * INSTALL_ROOT controls the location of the installation +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +XVER = 2.10 +LVER = 2.2.3 + +XSOURCE = xtide-$(XVER).tar.bz2 +LSOURCE = libtcd-$(LVER).tar.bz2 + +XSAVE = $(XSOURCE)X +LSAVE = $(LSOURCE)X + +XDIR = xtide-$(XVER) +LDIR = libtcd-$(LVER) + +XTAR = xtide-$(XVER).tar + +XARCH = $(XTAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "xtide ver: $(XVER) libtcd ver: $(LVER)" + @echo "---------------------------------------------------------------" + @echo "make get download xtide and libtcd source code" + @echo "" + @echo "make extract extract source code from downloaded archives" + @echo "" + @echo "make links create symbolic links to libtcd directory" + @echo "" + @echo "make pack tar up and gzip the source code directory" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +get: getx getl + +getx: + wget ftp://ftp.flaterco.com/xtide/$(XSOURCE) + +getl: + wget ftp://ftp.flaterco.com/xtide/$(LSOURCE) + + +extract: extractx extractl + +extractx: $(XSOURCE) + unpak $(XSOURCE) + mv $(XSOURCE) $(XSAVE) + +extractl: $(LSOURCE) + unpak $(LSOURCE) + mv $(LSOURCE) $(LSAVE) + + +pack pak tar: $(LDIR) $(XDIR) + @if [ -f $(XTAR) ] ; then \ + echo "Cannot pack: $(XTAR) exists." ; \ + elif [ -f $(XARCH) ] ; then \ + echo "Cannot pack: $(XARCH) exists." ; \ + else \ + tar cvf $(XTAR) $(LDIR) $(XDIR) ; \ + gzip $(XTAR) ; \ + fi + +unpack unpak: $(XARCH) + unpak $(XARCH) + +links link: + @rm -f xtide*[0-9]/libtcd xtide*[0-9]/tcd.h + (cd xtide*[0-9] ; \ + ln -s ../libtcd*[0-9]/.libs libtcd) + (cd xtide*[0-9] ; \ + ln -s ../libtcd*[0-9]/tcd.h tcd.h) + +clean: + @if [ ! -f $(XARCH) ] ; then \ + echo "You must first archive the source with: make pack" ; \ + else \ + rm -rf $(XDIR) $(XSOURCE) $(XSAVE) $(LDIR) $(LSOURCE) $(LSAVE) ; \ + fi Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/README =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/README (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/README 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,117 @@ +############################################################################### +# +# FILE: README +# +# DESCRIPTION: Instructions for creating the XTIDEH package. +# +# PACKAGE: CSWxtideh +# +# REVISION: 12-21-07 +# +# NOTES: * This package is architecture independent and will work in +# conjunction with both the sparc and intel XTIDE packages. +# +############################################################################### + +------------------------------------------------------------------------------- +01: Login to the sparc build machine (ra) +------------------------------------------------------------------------------- + + wr + +------------------------------------------------------------------------------- +02: Update the pkginfo file +------------------------------------------------------------------------------- + + cd pkgs/xtideh + vi pkginfo + [edit the version info: Set it to the harmonics data file date] + +------------------------------------------------------------------------------- +03: Download the latest boilerplate and harmonics files +------------------------------------------------------------------------------- + + cd src + vi Makefile [set HARVER to current version (i.e., date)] + + make get + + Or, if the source was already downloaded: + + make unpack + +------------------------------------------------------------------------------- +04: Update copyright file [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + cp boilerplate.txt ${HOME}/pkgs/xtideh/copyright + +------------------------------------------------------------------------------- +05: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install + +------------------------------------------------------------------------------- +06: Update the prototype file +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype (only if necessary) + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + +------------------------------------------------------------------------------- +07: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/xtideh/prototype prototype + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/xtideh + +------------------------------------------------------------------------------- +08: Create the package xtideh-*-SunOS5.8-all-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xtideh + createpkg -b ${HOME}/pkgs/xtideh/src/cswstage/opt/csw + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +09: Clean up +------------------------------------------------------------------------------- + + cd src + make clean + make pack + make realclean + +------------------------------------------------------------------------------- +10: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/xtideh + cp xtideh-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +11: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp xtideh-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +12: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +------------------------------------------------------------------------------ Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/copyright 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,543 @@ +# $Id: harmonics_boilerplate.txt 2899 2007-12-28 23:10:40Z flaterco $ +# +# Definitions and constants for XTide +# +# NOTE: This file should not be used as-is to provide a constituent +# set to harmgen because it contains multiple constituents with the +# same frequency. A better constituent set is included in the harmgen +# distribution (see the README). +# +# +# ********* NOT FOR NAVIGATION ******** +# +# *** DO NOT RELY ON THIS DATA FILE FOR DECISIONS THAT CAN RESULT IN *** +# *** HARM TO ANYONE OR ANYTHING. *** +# +# Highly trustworthy tide predictions cannot be achieved on a zero +# budget. If you need guaranteed results, don't use these data! +# Contact the tide authority for your region (NOAA in the U.S.). +# +# This data file is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without any warranty that its use will NOT +# INFRINGE ANY RIGHTS, and without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# WHOEVER CHOOSES TO REDISTRIBUTE THESE DATA ASSUMES ALL LIABILITY +# ASSOCIATED THEREWITH. NEITHER DAVID FLATER NOR ANYONE ELSE INVOLVED +# SHALL BE LIABLE PERSONALLY OR OTHERWISE FOR ANY LOSSES THAT THE +# REDISTRIBUTOR MIGHT SUFFER AS A CONSEQUENCE OF ANY CLAIMS, BOGUS OR +# OTHERWISE, THAT ARE MADE TO THESE DATA. +# +# +# --- Notes to contributors --- +# +# After getting legal threats from the U.K. Hydrographic Office, I am +# no longer willing to accept any data without an explicit statement +# from the copyright owner or eminent authority either granting +# permission for non-commercial use with XTide or explaining that such +# permission is not required. The absence of a copyright notice is +# not sufficient; however, a blanket permission for non-commercial use +# is sufficient. +# +# For more technical reasons, I am not prepared to accept data under +# conditions that require me to track uses of the data, to limit the +# uses of the data to a particular time period, or to verify that +# every user has read the legalese. XTide has many different +# interfaces by which users can obtain results, and such requirements +# are impossible to implement in a reasonable and consistent fashion +# across all interfaces. For a reasonable compromise, see what was +# done for the POL data: a reference to legalese is included in the +# location name field. +# +# +# --- Copyright statements --- +# +# United States: Data published by the U.S. government is by law +# non-proprietary. Stations in the U.S., territories of the U.S., +# commonwealths associated with the U.S., and countries with a Compact +# of Free Association with the U.S. have been included. A few other +# stations available from the NOS web site have been dropped. +# +# Notice available on the NOS web site at +# http://tidesandcurrents.noaa.gov/disclaimers.html as of +# 2007-05-30: +# +# The information on government servers are in the public domain, +# unless specifically annotated otherwise, and may be used freely by +# the public. Before using information obtained from this server, +# special attention should be given to the date and time of the data +# and products being displayed. This information shall not be +# modified in content and then presented as official government +# material. +# +# The user assumes the entire risk related to its use of these +# data. NOS is providing these data "as is," and NOS disclaims any +# and all warranties, whether express or implied, including (without +# limitation) any implied warranties of merchantability or fitness +# for a particular purpose. In no event will NOS be liable to you or +# to any third party for any direct, indirect, incidental, +# consequential, special or exemplary damages or lost profit +# resulting from any use or misuse of this data. +# +# NOS requests that attribution be given whenever NOS material is +# reproduced and re-disseminated. Pursuant to 17 U.S.C. 403, third +# parties producing copyrighted (compilation) works consisting +# predominantly of material created by Federal Government employees +# are encouraged to provide notice with such work(s) identifying the +# U.S. Government material incorporated and stating that such +# material is not subject to copyright protection. +# +# Canada: The harmonic constants used to perform tide predictions for +# locations in Canada are derived from sea level data made available +# by Marine Environmental Data Services, Fisheries and Oceans Canada, +# for public, non-commercial use. The predictions are not the same as +# those computed by the Canadian Hydrographic Service, which uses its +# own sets of harmonic constants. +# +# Copyright notice for the sea level data at +# http://www.meds-sdmm.dfo-mpo.gc.ca/meds/About_MEDS/copyright_e.htm: +# +# Non-commercial Reproduction +# +# Information on this site has been posted with the intent that it be +# readily available for personal and public non-commercial use and may +# be reproduced, in part or in whole and by any means, without charge +# or further permission from the Department of Fisheries and Oceans +# Canada. We ask only that: +# +# * Users exercise due diligence in ensuring the accuracy of the +# materials reproduced; +# +# * The Department of Fisheries and Oceans Canada be identified as +# the source department; and, +# +# * The reproduction is not represented as an official version of +# the materials reproduced, nor as having been made, in +# affiliation with or with the endorsement of the Department of +# Fisheries and Oceans Canada. +# +# Netherlands: The Netherlands data was contributed directly by Koos +# Doekes of the Rijkswaterstaat RIKZ/ZDI, who grants permission by his +# own authority: +# +# Herewith I grant permission for non-commercial use +# of all harmonic constants for the Netherlands by +# users of Xtide or Xtide-based products. +# +# This covers the use of the constants for Dutch +# ports in the Xtide-database by designers +# of web applications, and the use in commercial +# tidal prediction software in which the constants +# themselves are not stored - i.e. the user has +# to copy them from the Xtide-database himself. +# +# It does NOT cover the use in commercial software +# in which the constants are incorporated, which is +# considered commercial use of the constants here. +# Any request for permission of use of Dutch constants +# in software of this kind should be redirected to +# RIKZ. +# +# Germany: The Germany data was contributed directly by Wolfgang +# Lange of the Bundesamt fuer Seeschifffahrt und Hydrographie (BSH), +# who grants permission by his own authority: +# +# As long as you make your software using these tidal data +# freely available, I grant permission for non-commercial use +# of the harmonic constants for the 12 reference stations at +# the german North Sea coast on the same conditions and rules +# layed down in the letter from Koos Doekes, RIKZ/ZDI, +# concerning the Netherlands harmonic constituents. +# +# UK: Received 2003-11-15 DWF. See also http://www.flaterco.com/pol.html. +# +# Proudman Oceanographic Laboratory +# Natural Environment Research Council +# +# Bidston Observatory +# Bidston Hill +# Prenton +# Merseyside +# CH43 7RA +# United Kingdom +# David Flater +# 13320 Country Ridge Drive Tel +44 (0) 151 653 8633 +# Germantown, MD 20874 Fax +44 (0) 151 653 6269 +# United States of America www.pol.ac.uk +# +# +# 07 November 2003 +# +# Dear David, +# +# This letter is to confirm that we are happy for you to download the +# sea level data from the British Oceanographic Data Centre website and +# use this in the generation of harmonic constants using the HarmGen +# software. However there are a couple of things that we would politely +# ask that you do. +# +# 1. Limit the number of harmonic constants you use in the software to +# a maximum of 40 for any port. This should easily be enough to create +# very accurate tidal predictions as for nearly all locations, any +# harmonics left out (i.e. the 41st most significant constants onwards) +# will have amplitudes of the order of a centimetre. +# +# 2. State that the data is derived from sea level data obtained from +# the British Oceanographic Data Centre based at the Proudman +# Oceanographic Laboratory, Liverpool. +# +# 3. Make it clear that the predictions however are not the same as +# those computed by the Proudman Oceanographic Laboratory which uses its +# own sets of harmonic constants. +# +# 4. Continue to make your software using the data freely available. +# Please inform us if you intend to produce a software product that you +# will be making a charge for. +# +# I hope these conditions are acceptable to you and it will be good to +# see the UK back on the map. +# +# Yours sincerely, +# Colin Bell +# Head of Applications Group +# +# +# Changelog +# --------- +# +# 2007-12-28 +# +# Imported NOS data from snapshot 2007-12-17. +# +# Reapplied the meridian fixes for Albany and Coyote Point Marina. +# Coordinates of I-526 bridge were fixed upstream. +# +# A comparison of all reference stations versus the 2008 tide tables +# published on the web revealed discrepancies for Anchorage, AK and Port +# O'Connor, TX. The Anchorage discrepancies are small enough to be +# explained by a data update; however, the Port O'Connor discrepancies are +# major and are not helped by the meridian fix that worked for Albany and +# Coyote Point Marina. Local observations are required to determine whether +# the Port O'Connor predictions are any good at all. This is complicated by +# the fact that it is a diurnal station with small tidal range, making +# eyewitness confirmation that much more unreliable. Subordinate stations +# depending on these reference stations will also fail to match the +# published tables. +# +# +# 2007-11-22 +# +# To facilitate compliance with Linux distribution packaging policies +# and to draw more attention to the acceptable use restriction on +# non-U.S. data, the "free" and "nonfree" data are now being exported +# to separate TCD files. At this time, all "free" data are public +# domain and all "nonfree" data are merely restricted to +# non-commercial use only. +# +# Replaced the data set for Harwich, England with one calculated from +# a longer time series. Proudman still does not yet publish +# predictions for this location. +# +# +# 2007-03-18 +# +# Updated approximated MLLW datums with improved estimates. +# +# Put IGNORE HEIGHTS in the legalese fields of the 14 subordinate +# stations where NOS zeroed out the heights. +# +# +# 2007-02-22 +# +# Applied renamings as updated and improved by Walt Bilofsky (thanks +# Walt). +# +# +# 2007-02-11 +# +# Interim release, without renamings. +# +# Imported NOS data from snapshot 2007-02-07. +# +# (9414449) Coyote Point Marina, San Francisco Bay, CA: corrected meridian. +# (Data claimed UTC, was UTC-8) +# (8518995) Albany, Hudson River, NY: corrected meridian. +# (Data claimed UTC, was UTC-5) +# I-526 bridge, Ashley River, South Carolina: fixed longitude. +# Pascagoula, Mississippi Sound, Mississippi latitude was fixed upstream. +# +# In progress: renamings. +# +# Since there were two reference stations with incorrect meridians +# (one that was reported last time and one that was just discovered), +# it is reasonable to expect that there will be more. +# +# +# 2006-07-08 +# +# Coyote Point Marina, San Francisco Bay, California: corrected meridian. +# Delaware City, Delaware River, Delweare: fixed typo in name. +# Pascagoula, Mississippi Sound, Mississippi: fixed latitude. +# I-526 bridge, Ashley River, South Carolina: fixed longitude. +# +# +# 2006-03-05 +# +# Installed renamings from AH for the 102 stations that lacked states. +# +# +# 2006-02-05 +# +# Refreshed U.S. data from NOS web site (snapshot 2006-01-04). AH has +# dealt with new and modified station names to maintain the naming +# convention installed 2005-11-27. Still to be fixed is a list of +# stations that do not include their state in their name. Most or all +# of those have been that way since November. They didn't stick out +# much until an unrelated Harmbase query happened to group them +# together. +# +# An e-mail exchange with Todd Ehret of NOS CO-OPS this time led me to +# believe that the UTC constants for the Alaskan reference stations +# with weird time zones should be correct, so I have retained them. A +# survey of affected subordinate stations shows that most should be +# correct if their reference station is correct (they all use the same +# one). Most doubtful are the six subordinate stations on +# St. Lawrence Island. I do not even have reliable intelligence on +# what the de facto time zone of St. Lawrence Island is. It was not +# mentioned in the statute that defines U.S. time zones. +# +# +# 2005-11-27 +# +# Installed renamings from August Hahn to achieve something like the +# naming convention previously followed in legacy data. These +# renamings will be maintained through subsequent updates if the churn +# is not too bad. +# +# +# 2005-09-05 +# +# Generated and installed harmonic constants for 49 Canadian stations +# using up to 10 years of hourly data (the maximum permitted download) +# from Marine Environmental Data Services (MEDS), Fisheries and Oceans +# Canada. +# +# MEDS publishes water level data for 962 stations. Of those, only 92 +# are currently active. Of those 92, 43 are non-tidal, being located +# on or near the great lakes. +# +# +# 2005-06-05 +# +# Generated and installed fresh harmonic constants for U.K. stations +# using all available data for the 19 year epoch from 1986 to 2004. +# Quality assurance information is available at +# ftp://ftp.flaterco.com/xtide/harmonics-dwf-2005-06-05-QA.txt +# +# Station Harwich, England is new with only 8 months of data. +# Authoritative predictions for this station are not yet available for +# comparison. +# +# +# 2005-01-20 +# +# Deleted the following Alaskan reference stations, which were +# rendered incorrect by technical difficulties confirmed by Todd Ehret +# of NOS CO-OPS, and all dependent sub stations. They may return +# corrected in future revisions. +# +# - 9460150 Attu, Massacre Bay +# - 9465261 Clarks Point, Nushagak Bay +# - 9468132 St. Michael, Norton Sound +# - 9497649 Prudhoe Bay #2 +# - 9497778 Cross Island +# +# Also deleted the following station which is listed as superseded. +# +# - 9497652 Prudhoe Bay, Dock #1 +# +# +# 2004-12-10 +# +# Refreshed all NOS data from NOS web site. +# +# +# 2004-10-18 +# +# No data changes -- just resyncing and renaming all the different +# editions of the database. +# harmonics-dwf-2004-10-18-v2.tcd Built with libtcd 2.0 +# harmonics-dwf-2004-10-18-v1.tcd Built with libtcd 1.100 +# harmonics-dwf-2004-10-18.sql Postgres 7.4.2 +# harmonics-dwf-2004-10-18-dump txt/xml restored from -v2.tcd +# harmonics-dwf-2004-10-18-compat txt/xml years 1970-2037 only +# +# +# 2004-10-08 DWF +# +# Updated RIKZ/MII references to new name, RIKZ/ZDI. +# +# +# 2004-10-05 DWF +# +# Rebuilt using libtcd 1.99, which corrects a problem where +# constituents with zero phases were being dropped. The affected +# reference stations are Delfzijl, Netherlands; The Battery, New York +# Harbor, NY; and South Pass, LA. +# +# +# 2004-09-14 DWF +# +# Imported subordinate stations available from the NOS web site as of +# 2004-09-09. Compare against +# http://co-ops.nos.noaa.gov/tide_pred.html. Some stations will +# disagree moderately because the reference stations were updated and +# don't match the published tables. +# +# The smattering of sub stations in non-U.S. territory was suppressed. +# +# There are time zone problems in Alaska. The LST used by the NOS for +# stations in Alaska does not always match the local statutory time +# zone (which I have followed). For reference stations, the problem +# was detectable and correctable because the constants were available +# calibrated with UTC as well as LST. But for the sub stations, it is +# impossible to tell whether a disagreement with NOS predictions +# results from a disagreement about time zone, incorrect calibration, +# or both. +# +# A few names suffixed by (A) and (B) reflect sub stations on the NOS +# web site with the same names and close coordinates, where it is far +# from obvious why there are two of them. Other name clashes were +# resolved by disambiguation. +# +# (Nit) Corrected months_on_station for German ref stations from 13 to +# 12. (It's a time zone / rounding issue, on list to be fixed.) +# +# +# 2004-09-07c DWF +# +# Put the following three stations on Eastern time (they were calibrated +# to Central time on the NOS web site): +# Johns Island, Chassahowitzka Bay, FL +# Chassahowitzka River, FL +# Crystal River, Kings Bay, FL +# +# +# 2004-09-07b DWF +# +# Corrected heuristic for Alaskan time zones. A few stations in the +# Aleutians were affected. +# +# +# 2004-09-07 DWF +# +# Added notes for stations in Alaska where the LST used by NOS does not +# match the apparent statutory time zone. Presently these notes just +# get attached to the comments field in the TCD file, but the next major +# revision to the TCD format should enable XTide to display them more +# prominently. +# +# +# 2004-09-01 DWF +# +# Most reference stations available from the NOS web site as of +# 2004-08-26 have been imported. Compare against +# http://co-ops.nos.noaa.gov/tide_pred.html. +# +# MLLW benchmarks were not available for all stations. For stations +# where a MLLW datum was not available, the datum has been set to LAT. +# +# I know there are typos in the location names. +# +# Currents are not available at this time. According to Mr. Ehret, they +# will become available when the new CO-OPS currents database is +# complete. +# +# The following stations, which are located in jurisdictions that are +# neither territories of the U.S., nor commonwealths associated with the +# U.S., nor countries with a Compact of Free Association with the U.S., +# have been dropped. Their data are distributed without legalese from +# the NOS web site; however, that does not necessarily mean that anyone +# other than the NOS has permission from the respective governments to +# use or redistribute the data. This may seem paranoid, but the +# situation with the U.K. data that were pulled in 2001 was very +# similar. +# +# Apia, Samoa +# Bermuda Esso Pier, St. Georges Island, Bermuda +# Fare Ute Point, Papeete Harbor, French Polynesia +# La Uni\xF3n, El Salvador +# Madero, Tampico Harbor, Tamaulipas, Mexico +# Puerto Corinto, Nicaragua +# Puerto Cort\xE9s, Honduras +# Puerto Quetzal (San Jose), Guatemala +# Settlement Point, Grand Bahama I., Bahamas +# Suva Harbor, Suva, Fiji +# +# +# 2004-08-19 DWF +# +# This is an interim release as I am starting over from scratch using +# Harmbase2. All legacy data have been dumped. +# +# All U.S. data are temporarily down; the 2004-08-09 version of this +# file remains usable for those. Mr. Ehret has indicated that there +# would be fees involved in obtaining harmonic constants and offsets +# in the format previously received, so I am abandoning all that and +# gearing up to scrape data off of the web. According to Mr. Ehret, +# the set of locations on the web site is a superset of those used in +# published prediction tables. The discrepancies that occur are +# because the harmonic constants on the web are updated continuously +# while the harmonic constants used for the published tables are fixed +# in advance. Thus there seems little to be lost by replacing all of +# the legacy data with a snapshot of the web data. +# +# Data presently included: +# +# Netherlands reference stations computed from hourly levels 1999 +# through 2002, as received from Koos Doekes on 2004-02-03. Compare +# against http://www.getij.nl/engels/. +# +# German reference stations computed using Harmgen from year 2001 +# observations sent by Wolfgang Lange on 2004-08-19. The datums are +# adjusted to LAT. Compare against +# http://www.bsh.de/en/Marine%20data/Forecasts/Tides/index.jsp. (The +# web site is still using the MLWS datum, so the heights will disagree +# strongly until the web site is updated. However, even adjusting for +# that, the agreement is not as good as could be hoped. The BSH +# predictions are made using a non-harmonic method, so some +# discrepancies are inevitable.) +# +# German subordinate stations as sent by Wolfgang Lange on 2004-08-10. +# +# U.K. reference stations computed using Harmgen from at least four +# years of observations ending 2002-12-31, as downloaded from the BODC +# web site 2003-11. Compare against http://www.pol.ac.uk/ntslf/tides/. +# +# +# 2004-08-09 DWF +# +# harmonics-dwf is a new database that emphasizes responsiveness to +# updates and traceability to authoritative sources instead of maximum +# coverage of locations and historical predictions. All data known to +# be old and expired and all data for which no source of updates +# exists have been purged. This will orphan many users who have been +# getting good results from old data. For these, please continue to +# use RMK's database. +# +# harmonics-dwf now contains: +# - U.S. reference stations provided by Todd Ehret of NOAA circa +# 2004-02-04. +# - Netherlands reference stations provided by Koos Doekes of the +# Rijkswaterstaat RIKZ/ZDI (then RIKZ/MII) on 2004-02-03. +# - U.K. reference stations derived by Harmgen from BODC data, +# 2003-11. +# - The most recent data for other U.S. reference stations that +# were in RMK data rev. 2004-04-16 23:30 but not included in +# the distribution from Todd Ehret. +# +# All sub stations are gone temporarily while I update my software to +# import the sub station data sent by Todd Ehret in February. I will +# also be contacting Mr. Ehret to see if I can obtain a complete dump +# of all stations in current use so that I can build a legacy-free +# database. Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/depend 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/pkginfo 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,9 @@ +PKG=CSWxtideh +NAME=xtideh - harmonics data files for xtide +VERSION=07.12.28,REV=2008.02.05 +ARCH=all +CATEGORY=application +CSW_CATEGORY="eng, fun, lib" +VENDOR=http://www.flaterco.com/xtide/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/prototype 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,8 @@ +i pkginfo +i copyright +i depend +d none share 0755 root bin +d none share/xtide 0755 root bin +f none share/xtide/boilerplate.txt 0644 root bin +f none share/xtide/harmonics-free.tcd 0644 root bin +f none share/xtide/harmonics-nonfree.tcd 0644 root bin Added: csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile =================================================================== --- csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile (rev 0) +++ csw/mgar/pkg/xtide/trunk/legacy/xtideh/src/Makefile 2009-01-30 10:44:13 UTC (rev 2937) @@ -0,0 +1,105 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the XTIDEH src directory. +# These are the harmonics data files used by the XTIDE package. +# +# PACKAGE: CSWxtideh +# +# REVISION: 02-05-08 +# +# NOTES: * Set the HARVER variable to the current harmonics file date. +# +# * Am using CJSA custom install(1M) utility in ${HOME}/bin. +# +# * INSTALL_ROOT controls the location of the installation. +# +# * Files at: http://www.flaterco.com/xtide/files.html +# +# * Version 1 harmonics used with xtide <= 2.7 +# Version 2 harmonics used with xtide >= 2.8 +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +BOILER = harmonics_boilerplate.txt + +HARVER = 20071228 + +HARMON1 = harmonics-dwf-$(HARVER)-free.tcd +HARMON2 = harmonics-dwf-$(HARVER)-nonfree.tcd + +HAR1 = harmonics-free.tcd +HAR2 = harmonics-nonfree.tcd + +HARTAR = xtideh-$(HARVER).tar + +HARCH = $(HARTAR).gz + +LIBDIR = $(INSTALL_ROOT)/opt/csw/share/xtide + +help: + @echo "---------------------------------------------------------------" + @echo "Harmonics Ver: $(HARVER)" + @echo "---------------------------------------------------------------" + @echo "make get download the harmonics.tcd & boilerplate files" + @echo "" + @echo "make install install the harmonics.tcd file" + @echo "" + @echo "make pack tar up and gzip the harmonics source code" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "make clean remove previous copies of files and cswstage" + @echo "" + @echo "make realclean clean + rm harmonics.tcd & boilerplate files" + @echo "---------------------------------------------------------------" + + +get: get_bp get_hf + +get_bp: + @rm -rf boilerplate.txt.PREV harmonics.*.PREV + @if [ -f boilerplate.txt ] ; then \ + mv boilerplate.txt boilerplate.txt.PREV ; \ + fi + wget http://www.flaterco.com/xtide/$(BOILER) + mv $(BOILER) boilerplate.txt + +get_hf: + @if [ -f harmonics.tcd ] ; then \ + mv harmonics.tcd harmonics.tcd.PREV ; \ + fi + wget ftp://ftp.flaterco.com/xtide/$(HARMON1).bz2 + bunzip2 $(HARMON1).bz2 + wget ftp://ftp.flaterco.com/xtide/$(HARMON2).bz2 + bunzip2 $(HARMON2).bz2 + + +install: boilerplate.txt $(HARMON1) $(HARMON2) + install -d -o root -g bin -m 755 $(LIBDIR) @@ 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 30 11:47:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:47:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[2938] csw/mgar/pkg Message-ID: Revision: 2938 http://gar.svn.sourceforge.net/gar/?rev=2938&view=rev Author: dmichelsen Date: 2009-01-30 10:47:51 +0000 (Fri, 30 Jan 2009) Log Message: ----------- xmahjongg: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/xmahjongg/ csw/mgar/pkg/xmahjongg/branches/ csw/mgar/pkg/xmahjongg/tags/ csw/mgar/pkg/xmahjongg/trunk/ csw/mgar/pkg/xmahjongg/trunk/Makefile csw/mgar/pkg/xmahjongg/trunk/files/ csw/mgar/pkg/xmahjongg/trunk/files/CSWpackage.gspec csw/mgar/pkg/xmahjongg/trunk/legacy/ csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES csw/mgar/pkg/xmahjongg/trunk/legacy/README csw/mgar/pkg/xmahjongg/trunk/legacy/copyright csw/mgar/pkg/xmahjongg/trunk/legacy/depend csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo csw/mgar/pkg/xmahjongg/trunk/legacy/prototype csw/mgar/pkg/xmahjongg/trunk/legacy/src/ csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile csw/mgar/pkg/xmahjongg/trunk/legacy/src/xmahjongg-3.7.tar.gz Property changes on: csw/mgar/pkg/xmahjongg/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/xmahjongg/trunk/Makefile =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/Makefile (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/Makefile 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/xmahjongg/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/files/CSWpackage.gspec 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/BUILD.NOTES 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,146 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the XMAHJONGG package. These are notes +# concerning the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWxmahjongg +# +# CUR VER: Xmahjongg Version 3.7 +# +# REVISION: 04-15-07 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +04-15-07 3.7 Initial package build +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + + * board.cc + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + 4 Warning(s) detected. + + * button.cc + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "button.hh", line 36: Warning: Button::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + 3 Warning(s) detected. + + * game.cc + "game.cc", line 399: Warning (Anachronism): Formal argument 4 of \ + type extern "C" int(*)(const void*,const void*) in call to \ + std::qsort(void*, unsigned, unsigned, extern "C" \ + int(*)(const void*,const void*)) is being passed \ + int(*)(const void*,const void*). + 1 Warning(s) detected. + + * gmjts.cc + "gmjts.hh", line 13: Warning: Identifier expected instead of "}". + 1 Warning(s) detected. + + * hint.cc + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + 4 Warning(s) detected. + + * kdets.cc + "kdets.hh", line 13: Warning: Identifier expected instead of "}". + 1 Warning(s) detected. + + * kmjts.cc + "kmjts.hh", line 13: Warning: Identifier expected instead of "}". + 1 Warning(s) detected. + + * main.cc + "xmj3ts.hh", line 21: Warning: Identifier expected instead of "}". + "gmjts.hh", line 13: Warning: Identifier expected instead of "}". + "kmjts.hh", line 13: Warning: Identifier expected instead of "}". + "kdets.hh", line 13: Warning: Identifier expected instead of "}". + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "button.hh", line 36: Warning: Button::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "solution.hh", line 35: Warning: SolutionDisplay::alarm hides \ + the virtual function AlarmHooks::alarm(Alarm*). + "main.cc", line 174: Warning (Anachronism): Formal argument 4 of \ + type extern "C" int(*)(const void*,const void*) in call to\ + std::qsort(void*, unsigned, unsigned, extern "C" \ + int(*)(const void*,const void*)) is being passed \ + int(*)(const void*,const void*). + "main.cc", line 253: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 254: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 255: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 256: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 257: Warning: String literal converted to char* \ + in formal argument name in call to new_button(Panel*, char*). + "main.cc", line 712: Warning: String literal converted to char* \ + in assignment. + 17 Warning(s) detected. + + * panel.cc + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "button.hh", line 36: Warning: Button::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + "solution.hh", line 35: Warning: SolutionDisplay::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + "traverse.hh", line 58: Warning: Traversal::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + 7 Warning(s) detected. + + * solution.cc + "solution.hh", line 35: Warning: SolutionDisplay::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + 4 Warning(s) detected. + + * traverse.cc + "traverse.hh", line 58: Warning: Traversal::alarm hides the \ + virtual function AlarmHooks::alarm(Alarm*). + "panel.hh", line 44: Warning: Identifier expected instead of "}". + "panel.hh", line 48: Warning: Identifier expected instead of "}". + "board.hh", line 77: Warning: Identifier expected instead of "}". + "hint.hh", line 53: Warning: Hint::alarm hides the virtual \ + function AlarmHooks::alarm(Alarm*). + 5 Warning(s) detected. + + * xmj3ts.cc + "xmj3ts.hh", line 21: Warning: Identifier expected instead of "}". + "xmj3ts.cc", line 81: Warning (Anachronism): Formal argument 4 of \ + type extern "C" int(*)(const void*,const void*) in call to \ + std::qsort(void*, unsigned, unsigned, extern "C" \ + int(*)(const void*,const void*)) is being passed \ + int(*)(const void*,const void*). + 2 Warning(s) detected. Added: csw/mgar/pkg/xmahjongg/trunk/legacy/README =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/README 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,183 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the XMAHJONGG package. Refer to +# the BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWxmahjongg +# +# REVISION: 04-15-07 +# +# NOTES: * Source code: http://www.lcdf.org/xmahjongg/ +# +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +02: Update the pkginfo file +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xmahjongg + vi pkginfo + [edit the VERSION info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +03: Unpack and/or download the software and game files +------------------------------------------------------------------------------- + + cd src + make unpack + +------------------------------------------------------------------------------- +04: Update the copyright file (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd xmahjongg*[0-9] + vi README ${HOME}/pkgs/xmahjongg/copyright + [copy the COPYRIGHT and AUTHORS sections to the copyright file] + +------------------------------------------------------------------------------- +05: Fix the source files (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd src + + vi game.cc gmjts.cc kmjts.cc main.cc tileset.cc xmj3ts.cc + + * Add following line to end of #include section in each file + #include + + cd .. + +------------------------------------------------------------------------------- +06: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -fast -xarch=v8 -xstrconst -xildoff' + export CCC='CC -fast -xarch=v8' + export CXX='CC -fast -xarch=v8' + + INTEL: export CC='cc -fast -xarch=386 -xstrconst -xildoff' + export CCC='CC -fast -xarch=386' + export CCX='CC -fast -xarch=386' + +------------------------------------------------------------------------------- +07: Configure and build the software +------------------------------------------------------------------------------- + + make clean + ./configure --prefix=/opt/csw + make + +------------------------------------------------------------------------------- +08: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg DESTDIR=$PWD/cswstage install + +------------------------------------------------------------------------------- +09: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +10: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/xmahjongg/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/xmahjongg + +------------------------------------------------------------------------------- +11: Create the package xmahjongg-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xmahjongg + createpkg -r ${HOME}/pkgs/xmahjongg/src/xmahjongg*[0-9]/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +12: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 09 and recreate the package + +------------------------------------------------------------------------------- +13: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Start over and rebuild the Solaris-x86 version + +------------------------------------------------------------------------------- +14: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/xmahjongg/src/xmahjongg*[0-9] + rm -rf cswstage + make clean + +------------------------------------------------------------------------------- +15: Archive source code +------------------------------------------------------------------------------- + + cd .. + make pack + make clean + +------------------------------------------------------------------------------- +16: Copy the new package to the testing or installation area +------------------------------------------------------------------------------- + + cd pkgs/xmahjongg + cp xmahjongg-*.pkg.gz /export/medusa/testing + or + cp xmahjongg-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +17: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp xmahjongg-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +18: Notify package community or administrator +------------------------------------------------------------------------------- + + * Post testing note to local.blastewave.maint list + or + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/xmahjongg/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/copyright 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,53 @@ +---------------------------------------------------------------------------- +COPYRIGHT/LICENSE +---------------------------------------------------------------------------- + +All source code is Copyright (C) 1993-2000 Eddie Kohler. + +This package is distributed under the GNU General Public License, +Version 2, or, at your discretion, any later version. The GNU +General Public License is available via the Web at + + + +The GPL is designed to allow you to alter and redistribute the package, +as long as you do not remove that freedom from others. + +---------------------------------------------------------------------------- +AUTHORS +---------------------------------------------------------------------------- + +Eddie Kohler + Source code, default background image, buttons and numbers, coloring + of the `default' and `thick' tilesets + +Mark A. Holm + Black-and-white versions of the `default' and `tall' tilesets, (c) + 1988. He gave permission to copy and distribute the black-and-white + versions for non-profit purposes. The colored tiles are sufficiently + different to make them a `derived work' which can be separately + copyrighted; they are distributed under the GPL. + +Dorothy Robinson + `dorothys' tileset (c) 2000, and `dorwhite' tileset, which is the + original color xmahjongg tiles (c) 1988. + +Berrie Bloem (?) + http://www.mahjongg.com/ + `small' tileset + +Jonathan Buzzard and Max Watson + `gnome' and `gnome2' tilesets + +Mark Sanctuary + http://jps.net/sanctuary + `real' tileset + +Naoki Haga + http://www.kyodai.com/ + `arena', `ceremonial', `deepwell', `farandole', and `theater' layouts + +Vincent Krebs + `hourglass' and `papillon' layouts + +---------------------------------------------------------------------------- Added: csw/mgar/pkg/xmahjongg/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/depend 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/pkginfo 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,9 @@ +PKG=CSWxmahjongg +NAME=xmahjongg - Chinese Tile Game +VERSION=3.7 +ARCH=sparc +CATEGORY=application +CSW_CATEGORY="fun, user" +VENDOR=http://www.lcdf.org/xmahjongg/ - packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/xmahjongg/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/prototype 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,47 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man6 0755 root bin +f none /opt/csw/share/man/man6/xmahjongg.6 0644 root bin +d none /opt/csw/share/xmahjongg 0755 root bin +d none /opt/csw/share/xmahjongg/layouts 0755 root bin +f none /opt/csw/share/xmahjongg/layouts/default 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/bridge 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/wedges 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/ceremonial 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/farandole 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/arena 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/theater 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/deepwell 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/hourglass 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/arrow 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/papillon 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/schoon 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/rat 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/ox 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/tiger 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/hare 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/dragon 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/snake 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/horse 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/ram 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/monkey 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/rooster 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/dog 0644 root bin +f none /opt/csw/share/xmahjongg/layouts/boar 0644 root bin +d none /opt/csw/share/xmahjongg/tiles 0755 root bin +f none /opt/csw/share/xmahjongg/tiles/thin.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/small.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/thick.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/gnome.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/gnome2.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/dorothys.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/dorwhite.gif 0644 root bin +f none /opt/csw/share/xmahjongg/tiles/real.gif 0644 root bin +d none /opt/csw/share/xmahjongg/backgrounds 0755 root bin +f none /opt/csw/share/xmahjongg/backgrounds/default.gif 0644 root bin +f none /opt/csw/share/xmahjongg/backgrounds/green.gif 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/xmahjongg 0755 root bin Added: csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/xmahjongg/trunk/legacy/src/Makefile 2009-01-30 10:47:51 UTC (rev 2938) @@ -0,0 +1,53 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the XMAHJONGG src directory. +# +# PACKAGE: CSWxmahjongg +# +# REVISION: 04-14-07 +# +# NOTES: * Set the SVER variable to the current xmahjongg version number +# +# REQMTS: * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +SVER = 3.7 + +SDIR = xmahjongg-$(SVER) + +STAR = xmahjongg-$(SVER).tar + +SARCH = $(STAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "Spider Ver: $(SVER)" + @echo "---------------------------------------------------------------" + @echo "make pack tar up and gzip the source code directory" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +pack tar: $(SDIR) + @if [ -f $(STAR) ] ; then mv $(STAR) $(STAR).OLD ; fi + @if [ -f $(SARCH) ] ; then mv $(SARCH) $(SARCH).OLD ; fi + tar cvf $(STAR) $(SDIR) + gzip $(STAR) + rm -rf $(STAR).OLD $(SARCH).OLD + +unpack unpak: $(SARCH) + unpak $(SARCH) + +clean: + @if [ ! -f $(SARCH) ] ; then \ + echo "You must first archive the source with: make pack" ; \ + else \ + rm -rf $(SDIR) ; \ + fi Added: csw/mgar/pkg/xmahjongg/trunk/legacy/src/xmahjongg-3.7.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/xmahjongg/trunk/legacy/src/xmahjongg-3.7.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 30 11:49:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 10:49:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[2939] csw/mgar/pkg Message-ID: Revision: 2939 http://gar.svn.sourceforge.net/gar/?rev=2939&view=rev Author: dmichelsen Date: 2009-01-30 10:49:35 +0000 (Fri, 30 Jan 2009) Log Message: ----------- unclutter: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/unclutter/ csw/mgar/pkg/unclutter/branches/ csw/mgar/pkg/unclutter/tags/ csw/mgar/pkg/unclutter/trunk/ csw/mgar/pkg/unclutter/trunk/Makefile csw/mgar/pkg/unclutter/trunk/files/ csw/mgar/pkg/unclutter/trunk/files/CSWpackage.gspec csw/mgar/pkg/unclutter/trunk/legacy/ csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES csw/mgar/pkg/unclutter/trunk/legacy/README csw/mgar/pkg/unclutter/trunk/legacy/copyright csw/mgar/pkg/unclutter/trunk/legacy/depend csw/mgar/pkg/unclutter/trunk/legacy/pkginfo csw/mgar/pkg/unclutter/trunk/legacy/prototype csw/mgar/pkg/unclutter/trunk/legacy/src/ csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile csw/mgar/pkg/unclutter/trunk/legacy/src/unclutter-1.09.tar.gz Property changes on: csw/mgar/pkg/unclutter/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/unclutter/trunk/Makefile =================================================================== --- csw/mgar/pkg/unclutter/trunk/Makefile (rev 0) +++ csw/mgar/pkg/unclutter/trunk/Makefile 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/unclutter/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/unclutter/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/unclutter/trunk/files/CSWpackage.gspec 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/BUILD.NOTES 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,51 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the UNCLUTTER package. These are notes +# concerning the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWunclutter +# +# CUR VER: Unclutter Version 1.09 +# +# REVISION: 01-05-07 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +01-05-07 1.09 Initial package build +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + * The following warning messages are generated + + "vroot.h", line 43: warning: no explicit type given for parameter: \ + screen + "unclutter.c", line 43: warning: old-style declaration or incorrect \ + type for: pexit + "unclutter.c", line 45: warning: implicit function declaration: exit + "unclutter.c", line 47: warning: old-style declaration or incorrect \ + type for: usage + "unclutter.c", line 91: warning: old-style declaration or incorrect \ + type for: nameinlist + "unclutter.c", line 113: warning: old-style declaration or incorrect \ + type for: matchinlist + "unclutter.c", line 135: warning: old-style declaration or incorrect \ + type for: createnullcursor + "unclutter.c", line 158: warning: old-style declaration or incorrect + type for: main + "unclutter.c", line 158: warning: no explicit type given for \ + parameter: argc + "unclutter.c", line 174: warning: implicit function declaration: atoi + "unclutter.c", line 209: warning: implicit function declaration: malloc + "unclutter.c", line 269: warning: implicit function declaration: abs Added: csw/mgar/pkg/unclutter/trunk/legacy/README =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/README 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,161 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the UNCLUTTER package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWunclutter +# +# REVISION: 01-05-07 +# +# NOTES: * This source code for version 1.08 was released into the +# public domain in 1992 and is not being maintained. Thus, +# this is the sole repository for the source code, including +# the revisions I made, bumping it to version 1.09. +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +02: Update the pkginfo file VERSION=[,REV=YYYY.MM.DD] +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/unclutter + vi pkginfo + [edit the version info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +03: Unpack the source code [**** ONLY NEEDS TO BE DONE ONCE PER SESSION ****] +------------------------------------------------------------------------------- + + cd src + vi Makefile [edit the UVERS variable] + make unpack [unpack unless it was just extracted] + +------------------------------------------------------------------------------- +04: Update copyright file [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + vi unclutter*[0-9]/README ${HOME}/pkgs/unclutter/copyright + [Include the notice concerning release to the public domain] + +------------------------------------------------------------------------------- +05: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +06: Compile the software +------------------------------------------------------------------------------- + + cd unclutter*[0-9] + + xmkmf # generate a current Makefile + + make clean + make + +------------------------------------------------------------------------------- +07: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install-csw + +------------------------------------------------------------------------------- +08: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +09: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/unclutter/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/unclutter + +------------------------------------------------------------------------------- +10: Create the package unclutter-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/unclutter + createpkg -b ${HOME}/pkgs/unclutter/src/unclutter*[0-9]/cswstage/opt/csw + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +11: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 07 and recreate the package + +------------------------------------------------------------------------------- +12: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Go to step 01 and repeat for other architecture + +------------------------------------------------------------------------------- +13: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/unclutter/src/unclutter*[0-9] + make clean ; rm -rf cswstage + cd ${HOME}/pkgs/unclutter/src + make pack # if req'd, tar up and gzip source + make clean + +------------------------------------------------------------------------------- +14: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/unclutter + cp unclutter-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +15: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp unclutter*tar.gz /export/medusa/src + +------------------------------------------------------------------------------- +16: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/unclutter/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/copyright 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,11 @@ +From the README file accompanying version 1.08: +------------------------------------------------------------------------- +The program is released into the public domain. +Only the considerate will leave credit for the author. + +ORIGINAL AUTHOR: Mark M Martin. mmm at cetia.fr sep 1992. +------------------------------------------------------------------------- + +Additions by C. Jeffery Small (jeff at cjsa.com) for version 1.09 +are also released into the public domain. 01-05-07 +------------------------------------------------------------------------- Added: csw/mgar/pkg/unclutter/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/depend 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/unclutter/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/pkginfo 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,9 @@ +PKG=CSWunclutter +NAME=unclutter - Remove idle cursor image from screen +VERSION=1.09 +ARCH=i386 +CATEGORY=application +CSW_CATEGORY="user, x" +VENDOR=https://sourceforge.net/projects/unclutter/ packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/unclutter/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/prototype 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,9 @@ +i pkginfo +i copyright +i depend +d none share 0755 root bin +d none share/man 0755 root bin +d none share/man/man1 0755 root bin +f none share/man/man1/unclutter.1 0644 root bin +d none bin 0755 root bin +f none bin/unclutter 0755 root bin Added: csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/unclutter/trunk/legacy/src/Makefile 2009-01-30 10:49:35 UTC (rev 2939) @@ -0,0 +1,49 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the UNClUTTER src directory. +# +# PACKAGE: CSWunclutter +# +# REVISION: 02-05-07 +# +# NOTES: * Set the UVER variable to the current par version number. +# +# * INSTALL_ROOT controls the location of the installation. +# +# * Source is located at: sourceforge.net +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +UVERS = 1.09 + +UDIR = unclutter-$(UVERS) + +UTAR = unclutter-$(UVERS).tar + +UARCH = $(UTAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "Unclutter Ver: $(UVERS)" + @echo "---------------------------------------------------------------" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +unpack unpak: $(UARCH) + unpak $(UARCH) + +clean: + @if [ ! -f $(UARCH) ] ; then \ + echo "You must first archive the source" ; \ + else \ + rm -rf $(UDIR) ; \ + fi Added: csw/mgar/pkg/unclutter/trunk/legacy/src/unclutter-1.09.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/unclutter/trunk/legacy/src/unclutter-1.09.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream 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 30 14:45:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 13:45:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2940] csw/mgar/pkg Message-ID: Revision: 2940 http://gar.svn.sourceforge.net/gar/?rev=2940&view=rev Author: dmichelsen Date: 2009-01-30 13:45:07 +0000 (Fri, 30 Jan 2009) Log Message: ----------- spider: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/spider/ csw/mgar/pkg/spider/branches/ csw/mgar/pkg/spider/tags/ csw/mgar/pkg/spider/trunk/ csw/mgar/pkg/spider/trunk/Makefile csw/mgar/pkg/spider/trunk/files/ csw/mgar/pkg/spider/trunk/files/CSWpackage.gspec csw/mgar/pkg/spider/trunk/legacy/ csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES csw/mgar/pkg/spider/trunk/legacy/README csw/mgar/pkg/spider/trunk/legacy/copyright csw/mgar/pkg/spider/trunk/legacy/depend csw/mgar/pkg/spider/trunk/legacy/pkginfo csw/mgar/pkg/spider/trunk/legacy/prototype csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/PATCH.zoo csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/SPIDERv1r1p1a.zoo csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.intro csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.misc csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.rules csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.summary csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/events.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/face.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/gfx.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/globals.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/main.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/movelog.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/patchlevel.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/rank.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.info csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/spider.man csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/suit.bm csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/util.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/version.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/windows.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xaw_stubs.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xaw_ui.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xaw_ui.h csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xv_stubs.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xv_ui.c csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/xv_ui.h csw/mgar/pkg/spider/trunk/legacy/src/ csw/mgar/pkg/spider/trunk/legacy/src/Makefile csw/mgar/pkg/spider/trunk/legacy/src/spider-1.1.1.tar.gz Property changes on: csw/mgar/pkg/spider/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/spider/trunk/Makefile =================================================================== --- csw/mgar/pkg/spider/trunk/Makefile (rev 0) +++ csw/mgar/pkg/spider/trunk/Makefile 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/spider/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/spider/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/spider/trunk/files/CSWpackage.gspec 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/BUILD.NOTES 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,32 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the SPIDER package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWspider +# +# CUR VER: Spider Version 1.1.1,REV=2006.11.18 +# +# REVISION: 11-18-06 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +10-23-04 1.1.1 Initial package build +11-18-06 1.1.1,REV=2006.11.18 New release with 150 perfect games +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + + * Numerous non-fatal warning messages are issues [too many to list] Added: csw/mgar/pkg/spider/trunk/legacy/README =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/README 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,162 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the SPIDER package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWspider +# +# REVISION: 11-18-06 +# +# NOTES: * Primary source code is located at: +# - ftp://ftp.uu.net/usenet/comp.sources.x/volume7/spider +# * Patch #2 is located at: +# - ftp://ftp.uu.net/usenet/comp.sources.x/volume10/spider +############################################################################### + +------------------------------------------------------------------------------- +01: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +02: Update the pkginfo file +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/spider + vi pkginfo + [edit the version info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +03: Unpack and/or download the software and game files +------------------------------------------------------------------------------- + cd src + make unpack + +------------------------------------------------------------------------------- +04: Update the copyright file (only needs to be done once per release) +------------------------------------------------------------------------------- + + cd spider*[0-9] + cp copyright.h ${HOME}/pkgs/spider/copyright + +------------------------------------------------------------------------------- +05: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +06: Compile the software +------------------------------------------------------------------------------- + + xmkmf + make clean + make + +------------------------------------------------------------------------------- +07: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install-csw + +------------------------------------------------------------------------------- +08: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +09: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/spider/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/spider + +------------------------------------------------------------------------------- +10: Create the package spider-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/spider + createpkg -r ${HOME}/pkgs/spider/src/spider*[0-9]/cswstage + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +11: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 09 and recreate the package + +------------------------------------------------------------------------------- +12: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Start over and rebuild the Solaris-x86 version + +------------------------------------------------------------------------------- +13: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/spider/src/spider*[0-9] + rm -rf cswstage + make clean + +------------------------------------------------------------------------------- +14: Archive source code +------------------------------------------------------------------------------- + + cd .. + make pack + make clean + +------------------------------------------------------------------------------- +15: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/spider + cp spider-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +16: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp spider-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +17: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/spider/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/copyright 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,108 @@ +/* + * Copyright 1990 Heather Rose and Sun Microsystems, Inc. + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that copyright + * notice and this permission notice appear in supporting documentation, and + * that the names of Donald Woods and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems make + * no representations about the suitability of this software for any purpose. + * It is provided "as is" without express or implied warranty. + * + * THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT + * SHALL HEATHER ROSE OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. + * + * Author: + * Heather Rose + * hrose at sun.com + * + * Sun Microsystems, Inc. + * 2550 Garcia Avenue + * Mountain View, CA 94043 + */ + +/* + * Copyright 1990 David Lemke and Network Computing Devices + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation, and that the name of Network Computing Devices not be + * used in advertising or publicity pertaining to distribution of the + * software without specific, written prior permission. Network Computing + * Devices makes no representations about the suitability of this software + * for any purpose. It is provided "as is" without express or implied + * warranty. + * + * NETWORK COMPUTING DEVICES DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, + * IN NO EVENT SHALL NETWORK COMPUTING DEVICES BE LIABLE FOR ANY SPECIAL, + * 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. + * + * Author: + * Dave Lemke + * lemke at ncd.com + * + * Network Computing Devices, Inc + * 350 North Bernardo Ave + * Mountain View, CA 94043 + * + * @(#)copyright.h 2.2 90/04/27 + * + */ + +/* +% Copyright (c) 1989, Donald R. Woods and Sun Microsystems, Inc. +% +% Permission to use, copy, modify, distribute, and sell this software and its +% documentation for any purpose is hereby granted without fee, provided that +% the above copyright notice appear in all copies and that both that copyright +% notice and this permission notice appear in supporting documentation, and +% that the names of Donald Woods and Sun Microsystems not be used in +% advertising or publicity pertaining to distribution of the software without +% specific, written prior permission. Donald Woods and Sun Microsystems make +% no representations about the suitability of this software for any purpose. +% It is provided "as is" without express or implied warranty. +% +% THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +% INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT +% SHALL DONALD WOODS OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. +% +% History: Spider is a solitaire card game that can be found in various books +% of same; the rules are presumed to be in the public domain. The author's +% first computer implementation was on the Stanford Artificial Intelligence Lab +% system (SAIL). It was later ported to the Xerox Development Environment. +% The card images are loosely based on scanned-in images but were largely +% redrawn by the author with help from Larry Rosenberg. +% +% This program is written entirely in NeWS and runs on OPEN WINDOWS 1.0. +% It could be made to run much faster if parts of it were written in C, using +% NeWS mainly for its display and input capabilities, but that is left as an +% exercise for the reader. Spider may also run with little or no modification +% on subsequent releases of OPEN WINDOWS, but no guarantee is made on this +% point (nor any other; see above!). To run Spider, feed this file to 'psh'. +% +% Author: Don Woods +% woods at sun.com +% +% Sun Microsystems, Inc. +% 2550 Garcia Avenue +% Mountain View, CA 94043 +*/ Added: csw/mgar/pkg/spider/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/depend 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/spider/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/pkginfo 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,9 @@ +PKG=CSWspider +NAME=spider - Solitaire Card Game +VERSION=1.1.1,REV=2006.11.18 +ARCH=i386 +CATEGORY=application +CSW_CATEGORY="fun, user" +VENDOR=ftp://ftp.uu.net/usenet/comp.sources.x/ - packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/spider/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/prototype 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,169 @@ +i pkginfo +i copyright +i depend +d none /opt/csw/share 0755 root bin +d none /opt/csw/share/man 0755 root bin +d none /opt/csw/share/man/man6 0755 root bin +f none /opt/csw/share/man/man6/spider.6 0644 root bin +d none /opt/csw/share/spider 0755 root bin +d none /opt/csw/share/spider/help 0755 root bin +f none /opt/csw/share/spider/help/doc.controls 0644 root bin +f none /opt/csw/share/spider/help/doc.examples 0644 root bin +f none /opt/csw/share/spider/help/doc.intro 0644 root bin +f none /opt/csw/share/spider/help/doc.misc 0644 root bin +f none /opt/csw/share/spider/help/doc.rules 0644 root bin +f none /opt/csw/share/spider/help/doc.summary 0644 root bin +d none /opt/csw/share/spider/games 0755 root bin +f none /opt/csw/share/spider/games/README 0644 root bin +f none /opt/csw/share/spider/games/1000.001 0644 root bin +f none /opt/csw/share/spider/games/1000.002 0644 root bin +f none /opt/csw/share/spider/games/1000.003 0644 root bin +f none /opt/csw/share/spider/games/1000.004 0644 root bin +f none /opt/csw/share/spider/games/1000.005 0644 root bin +f none /opt/csw/share/spider/games/1000.006 0644 root bin +f none /opt/csw/share/spider/games/1000.007 0644 root bin +f none /opt/csw/share/spider/games/1000.008 0644 root bin +f none /opt/csw/share/spider/games/1000.009 0644 root bin +f none /opt/csw/share/spider/games/1000.010 0644 root bin +f none /opt/csw/share/spider/games/1000.011 0644 root bin +f none /opt/csw/share/spider/games/1000.012 0644 root bin +f none /opt/csw/share/spider/games/1000.013 0644 root bin +f none /opt/csw/share/spider/games/1000.014 0644 root bin +f none /opt/csw/share/spider/games/1000.015 0644 root bin +f none /opt/csw/share/spider/games/1000.016 0644 root bin +f none /opt/csw/share/spider/games/1000.017 0644 root bin +f none /opt/csw/share/spider/games/1000.018 0644 root bin +f none /opt/csw/share/spider/games/1000.019 0644 root bin +f none /opt/csw/share/spider/games/1000.020 0644 root bin +f none /opt/csw/share/spider/games/1000.021 0644 root bin +f none /opt/csw/share/spider/games/1000.022 0644 root bin +f none /opt/csw/share/spider/games/1000.023 0644 root bin +f none /opt/csw/share/spider/games/1000.024 0644 root bin +f none /opt/csw/share/spider/games/1000.025 0644 root bin +f none /opt/csw/share/spider/games/1000.026 0644 root bin +f none /opt/csw/share/spider/games/1000.027 0644 root bin +f none /opt/csw/share/spider/games/1000.028 0644 root bin +f none /opt/csw/share/spider/games/1000.029 0644 root bin +f none /opt/csw/share/spider/games/1000.030 0644 root bin +f none /opt/csw/share/spider/games/1000.031 0644 root bin +f none /opt/csw/share/spider/games/1000.032 0644 root bin +f none /opt/csw/share/spider/games/1000.033 0644 root bin +f none /opt/csw/share/spider/games/1000.034 0644 root bin +f none /opt/csw/share/spider/games/1000.035 0644 root bin +f none /opt/csw/share/spider/games/1000.036 0644 root bin +f none /opt/csw/share/spider/games/1000.037 0644 root bin +f none /opt/csw/share/spider/games/1000.038 0644 root bin +f none /opt/csw/share/spider/games/1000.039 0644 root bin +f none /opt/csw/share/spider/games/1000.040 0644 root bin +f none /opt/csw/share/spider/games/1000.041 0644 root bin +f none /opt/csw/share/spider/games/1000.042 0644 root bin +f none /opt/csw/share/spider/games/1000.043 0644 root bin +f none /opt/csw/share/spider/games/1000.044 0644 root bin +f none /opt/csw/share/spider/games/1000.045 0644 root bin +f none /opt/csw/share/spider/games/1000.046 0644 root bin +f none /opt/csw/share/spider/games/1000.047 0644 root bin +f none /opt/csw/share/spider/games/1000.048 0644 root bin +f none /opt/csw/share/spider/games/1000.049 0644 root bin +f none /opt/csw/share/spider/games/1000.050 0644 root bin +f none /opt/csw/share/spider/games/1000.051 0644 root bin +f none /opt/csw/share/spider/games/1000.052 0644 root bin +f none /opt/csw/share/spider/games/1000.053 0644 root bin +f none /opt/csw/share/spider/games/1000.054 0644 root bin +f none /opt/csw/share/spider/games/1000.055 0644 root bin +f none /opt/csw/share/spider/games/1000.056 0644 root bin +f none /opt/csw/share/spider/games/1000.057 0644 root bin +f none /opt/csw/share/spider/games/1000.058 0644 root bin +f none /opt/csw/share/spider/games/1000.059 0644 root bin +f none /opt/csw/share/spider/games/1000.060 0644 root bin +f none /opt/csw/share/spider/games/1000.061 0644 root bin +f none /opt/csw/share/spider/games/1000.062 0644 root bin +f none /opt/csw/share/spider/games/1000.063 0644 root bin +f none /opt/csw/share/spider/games/1000.064 0644 root bin +f none /opt/csw/share/spider/games/1000.065 0644 root bin +f none /opt/csw/share/spider/games/1000.066 0644 root bin +f none /opt/csw/share/spider/games/1000.067 0644 root bin +f none /opt/csw/share/spider/games/1000.068 0644 root bin +f none /opt/csw/share/spider/games/1000.069 0644 root bin +f none /opt/csw/share/spider/games/1000.070 0644 root bin +f none /opt/csw/share/spider/games/1000.071 0644 root bin +f none /opt/csw/share/spider/games/1000.072 0644 root bin +f none /opt/csw/share/spider/games/1000.073 0644 root bin +f none /opt/csw/share/spider/games/1000.074 0644 root bin +f none /opt/csw/share/spider/games/1000.075 0644 root bin +f none /opt/csw/share/spider/games/1000.076 0644 root bin +f none /opt/csw/share/spider/games/1000.077 0644 root bin +f none /opt/csw/share/spider/games/1000.078 0644 root bin +f none /opt/csw/share/spider/games/1000.079 0644 root bin +f none /opt/csw/share/spider/games/1000.080 0644 root bin +f none /opt/csw/share/spider/games/1000.081 0644 root bin +f none /opt/csw/share/spider/games/1000.082 0644 root bin +f none /opt/csw/share/spider/games/1000.083 0644 root bin +f none /opt/csw/share/spider/games/1000.084 0644 root bin +f none /opt/csw/share/spider/games/1000.085 0644 root bin +f none /opt/csw/share/spider/games/1000.086 0644 root bin +f none /opt/csw/share/spider/games/1000.087 0644 root bin +f none /opt/csw/share/spider/games/1000.088 0644 root bin +f none /opt/csw/share/spider/games/1000.089 0644 root bin +f none /opt/csw/share/spider/games/1000.090 0644 root bin +f none /opt/csw/share/spider/games/1000.091 0644 root bin +f none /opt/csw/share/spider/games/1000.092 0644 root bin +f none /opt/csw/share/spider/games/1000.093 0644 root bin +f none /opt/csw/share/spider/games/1000.094 0644 root bin +f none /opt/csw/share/spider/games/1000.095 0644 root bin +f none /opt/csw/share/spider/games/1000.096 0644 root bin +f none /opt/csw/share/spider/games/1000.097 0644 root bin +f none /opt/csw/share/spider/games/1000.098 0644 root bin +f none /opt/csw/share/spider/games/1000.099 0644 root bin +f none /opt/csw/share/spider/games/1000.100 0644 root bin +f none /opt/csw/share/spider/games/1000.101 0644 root bin +f none /opt/csw/share/spider/games/1000.102 0644 root bin +f none /opt/csw/share/spider/games/1000.103 0644 root bin +f none /opt/csw/share/spider/games/1000.104 0644 root bin +f none /opt/csw/share/spider/games/1000.105 0644 root bin +f none /opt/csw/share/spider/games/1000.106 0644 root bin +f none /opt/csw/share/spider/games/1000.107 0644 root bin +f none /opt/csw/share/spider/games/1000.108 0644 root bin +f none /opt/csw/share/spider/games/1000.109 0644 root bin +f none /opt/csw/share/spider/games/1000.110 0644 root bin +f none /opt/csw/share/spider/games/1000.111 0644 root bin +f none /opt/csw/share/spider/games/1000.112 0644 root bin +f none /opt/csw/share/spider/games/1000.113 0644 root bin +f none /opt/csw/share/spider/games/1000.114 0644 root bin +f none /opt/csw/share/spider/games/1000.115 0644 root bin +f none /opt/csw/share/spider/games/1000.116 0644 root bin +f none /opt/csw/share/spider/games/1000.117 0644 root bin +f none /opt/csw/share/spider/games/1000.118 0644 root bin +f none /opt/csw/share/spider/games/1000.119 0644 root bin +f none /opt/csw/share/spider/games/1000.120 0644 root bin +f none /opt/csw/share/spider/games/1000.121 0644 root bin +f none /opt/csw/share/spider/games/1000.122 0644 root bin +f none /opt/csw/share/spider/games/1000.123 0644 root bin +f none /opt/csw/share/spider/games/1000.124 0644 root bin +f none /opt/csw/share/spider/games/1000.125 0644 root bin +f none /opt/csw/share/spider/games/1000.126 0644 root bin +f none /opt/csw/share/spider/games/1000.127 0644 root bin +f none /opt/csw/share/spider/games/1000.128 0644 root bin +f none /opt/csw/share/spider/games/1000.129 0644 root bin +f none /opt/csw/share/spider/games/1000.130 0644 root bin +f none /opt/csw/share/spider/games/1000.131 0644 root bin +f none /opt/csw/share/spider/games/1000.132 0644 root bin +f none /opt/csw/share/spider/games/1000.133 0644 root bin +f none /opt/csw/share/spider/games/1000.134 0644 root bin +f none /opt/csw/share/spider/games/1000.135 0644 root bin +f none /opt/csw/share/spider/games/1000.136 0644 root bin +f none /opt/csw/share/spider/games/1000.137 0644 root bin +f none /opt/csw/share/spider/games/1000.138 0644 root bin +f none /opt/csw/share/spider/games/1000.139 0644 root bin +f none /opt/csw/share/spider/games/1000.140 0644 root bin +f none /opt/csw/share/spider/games/1000.141 0644 root bin +f none /opt/csw/share/spider/games/1000.142 0644 root bin +f none /opt/csw/share/spider/games/1000.143 0644 root bin +f none /opt/csw/share/spider/games/1000.144 0644 root bin +f none /opt/csw/share/spider/games/1000.145 0644 root bin +f none /opt/csw/share/spider/games/1000.146 0644 root bin +f none /opt/csw/share/spider/games/1000.147 0644 root bin +f none /opt/csw/share/spider/games/1000.148 0644 root bin +f none /opt/csw/share/spider/games/1000.149 0644 root bin +f none /opt/csw/share/spider/games/1000.150 0644 root bin +d none /opt/csw/bin 0755 root bin +f none /opt/csw/bin/spider 0755 root bin Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,6 @@ +set -x +make install +make install.man +make install.doc +chown -R games.games /usr/local/Games/bin/spider +chown -R games.games /usr/local/Games/lib/spider Property changes on: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/CJSA.install ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Imakefile 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,320 @@ +/**/# Run imake -DUseInstalled -I/usr/lib/X11/config to make a Makefile. +/**/# This is an R4 style Imakefile, so will need the R4 config files to +/**/# to make a Makefile. It also assume that X11 is installed in /usr/lib. + + SHAR = shar -a + COMPRESS = compress + BTOA = btoa + SPLIT = split + CAT = cat +/***** Note: probably want to define this to be something else *****/ + HELPDIR = /usr/local/Games/lib/spider + +/***** Note: Used to over-ride some declarations in the default Imakefile + configurations. If you want to use some of these things, then + set OverrideDefs to YES below and change the corresponding + definitions to what you would like them to be below. Delete + or comment out those you do not wish to use *****/ +#ifndef OverrideDefs +#define OverrideDefs YES +#endif + +#if OverrideDefs + +# ifdef ManSuffix +# undef ManSuffix +# define ManSuffix 6 +# else +# define ManSuffix 6 +# endif + MANSUFFIX = ManSuffix + MANDIR = /usr/local/Games/man/man$(MANSUFFIX) + BINDIR = /usr/local/Games/bin + MKDIRHIER = /usr/openwin/bin/mkdirhier + +#endif /* OverrideDefs */ + +/***** Note: if your OS or libc does not have usleep defined, set this + to YES. (SunOS is one that does have usleep in libc) *****/ +#ifndef NeedsLocalUsleep +#define NeedsLocalUsleep NO +#endif + +/***** Note: if your OS or libc does not have strdup defined, set this + to YES. (SunOS is one that does have strdup in libc) *****/ +#ifndef NeedsLocalStrdup +#define NeedsLocalStrdup NO +#endif + +/***** Note: only need XViewHasOlgx when using XView 2.0 or greater *****/ +#ifndef XViewNeedsOlgx +#define XViewNeedsOlgx YES +#endif + +/***** Note: cannot have CompileXlibOnly, CompileXView, and CompileXAW + all be true. Need to pick one *****/ +#ifndef CompileXlibOnly +#define CompileXlibOnly NO +#endif + +#ifndef CompileXView +#define CompileXView NO +#endif + +#ifndef CompileXAW +#define CompileXAW YES +#endif + +#if CompileXlibOnly +# if CompileXView +# undef CompileXView +# endif +# if CompileXAW +# undef CompileXAW +# endif +#elif CompileXView +# if CompileXAW +# undef CompileXAW +# endif +#endif + +/***** Note: cannot have both Round Cards and Small Cards be true *****/ +#ifndef RoundCards +#define RoundCards YES +#endif + +#ifndef SmallCards +#define SmallCards NO +#endif + +#if SmallCards +# if RoundCards +# undef RoundCards +# endif +#endif + +#if CompileXView +/**/# If these are not defined in the site.def file, define them now. +/**/# set up compile time dependencies for XView clients. + # XVTOP = $(XVIEWHOME) + XVTOP = $(OPENWINHOME) + XVLIBSRC = $(XVTOP)/lib +# if UseInstalled + DEPXVIEWLIB = + DEPOLGXLIB = +# else + DEPXVIEWLIB = $(XVLIBSRC)/libxview.a +# if XViewNeedsOlgx + DEPOLGXLIB = $(XVLIBSRC)/libolgx.a +# else + DEPOLGXLIB = +# endif +# endif + XVIEWLIB = -L$(XVLIBSRC) -lxview +# if XViewNeedsOlgx + OLGXLIB = -L$(XVLIBSRC) -lolgx +# else + OLGXLIB = +# endif +#endif /* CompileXView */ + + KL_DIST = main.c +#if CompileXlibOnly +# if RoundCards + DEPLIBS = $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XMULIB) $(XLIB) +# else + DEPLIBS = $(DEPXLIB) + LOCAL_LIBRARIES = $(XLIB) +# endif + TKOBJS = main.o + + TKSRCS = main.c + + TKHEADERS = + + TKBITMAPS = + + TKDOCS = + + TKDEFINES = -DKITLESS + + TKINCLUDES = + + TARGET = spider +#endif /* CompileXlibOnly */ + + XVIEW_DIST = xv_ui.c xv_stubs.c xv_ui.h spider.info +#if CompileXView +# if RoundCards + DEPLIBS = $(DEPXVIEWLIB) $(DEPOLGXLIB) $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XVIEWLIB) $(OLGXLIB) $(XMULIB) $(XLIB) +# else + DEPLIBS = $(DEPXVIEWLIB) $(DEPOLGXLIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XVIEWLIB) $(OLGXLIB) $(XLIB) +# endif + TKOBJS = xv_ui.o xv_stubs.o + + TKSRCS = xv_ui.c xv_stubs.c + + TKHEADERS = xv_ui.h + + TKBITMAPS = + + TKDOCS = spider.info + + TKDEFINES = -DXVIEW + + TKINCLUDES = -I$(XVTOP)/include + + TARGET = spider +#endif /* CompileXView */ + + XAW_DIST = xaw_ui.c xaw_stubs.c xaw_ui.h +#if CompileXAW + DEPLIBS = $(DEPXAWLIB) $(DEPXTOOLLIB) $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XAWLIB) $(XTOOLLIB) $(XMULIB) $(XLIB) + + TKOBJS = xaw_ui.o xaw_stubs.o + + TKSRCS = xaw_ui.c xaw_stubs.c + + TKHEADERS = xaw_ui.h + + TKBITMAPS = + + TKDOCS = + + TKDEFINES = -DXAW + + TKINCLUDES = + + TARGET = spider +#endif /* CompileXAW */ + +BASE_OBJS = gfx.o spider.o events.o windows.o movelog.o util.o version.o +OBJS = $(BASE_OBJS) $(TKOBJS) + +BASE_SRCS = gfx.c spider.c events.c windows.c movelog.c util.c version.c +SRCS = $(BASE_SRCS) $(TKSRCS) + +BASE_HEADERS = globals.h defs.h assert.h +HEADERS = $(BASE_HEADERS) $(TKHEADERS) + +BASE_BITMAPS = rank.bm suit.bm face.bm spider.bm cards.bm.aa cards.bm.ab +BITMAPS = $(BASE_BITMAPS) $(TKBITMAPS) + +BASE_DOCS = doc.intro doc.rules doc.controls doc.examples doc.misc doc.summary +DOCS = $(BASE_DOCS) $(TKDOCS) + +MISC = Imakefile Makefile.sunpro README spider.man + +ALL_SRCS = $(MISC) $(BASE_SRCS) $(BASE_HEADERS) $(BASE_BITMAPS) $(BASE_DOCS) \ + $(XVIEW_DIST) $(XAW_DIST) $(KL_DIST) + +#if NeedsLocalUsleep +# if NeedsLocalStrdup +UTILDEFS = -DLOCAL_USLEEP -DLOCAL_STRDUP +# else +UTILDEFS = -DLOCAL_USLEEP +# endif +#else +# if NeedsLocalStrdup +UTILDEFS = -DLOCAL_STRDUP +# else +UTILDEFS = +# endif +#endif + +#if SmallCards +DEFINES = $(TKDEFINES) -DSMALL_CARDS -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) +#else +# if RoundCards +DEFINES = $(TKDEFINES) -DROUND_CARDS -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) +# else +DEFINES = $(TKDEFINES) -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) +# endif +#endif + +INCLUDES = -I. $(TKINCLUDES) + +CPPFLAGS = + +all:: $(TARGET) + +#if SmallCards +all:: + - at if [ ! -f cards.bm ]; then cat cards.bm.aa cards.bm.ab > cards.bm; fi +#endif +#if OverrideDefs +MakeDirectories(install,$(BINDIR)) +MakeDirectories(install.man, $(MANDIR)) +#endif + +ComplexProgramTarget($(TARGET)) + +#ifdef SparcArchitecture +/**/# SunOS4.0.3 sparc optimizer slimes this file +util.o: util.c + $(CC) $(CPPFLAGS) $(DEFINES) $(INCLUDES) -c util.c +#endif + +version.o: version.c + $(CC) -DDATE="\"`date`\"" -c version.c + +MakeDirectories(install.doc,$(HELPDIR)) +InstallMultipleDest(install.doc,$(DOCS),$(HELPDIR)) + +World:: + @echo "" + @echo "Begin build of the $(TARGET) application for the" +#if CompileXView + @echo "XView toolkit version." +#else +# if CompileXlibOnly + @echo "Xlib only, no toolkit version." +# else +# if CompileXAW + @echo "Athena Widget toolkit version." +# endif +# endif +#endif +#if SmallCards + @echo "Using cards with small bitmaps for a low resolution display." +#else +# if RoundCards + @echo "Using cards with normal bitmaps and optional rounded edges." +# else + @echo "Using cards with normal bitmaps." +# endif +#endif + @echo "" + @date + @echo "" + $(MAKE) $(MFLAGS) clean + $(MAKE) $(MFLAGS) depend + $(MAKE) $(MFLAGS) + @echo "" + @date + @echo "" + @echo "Begin installation... " + $(MAKE) $(MFLAGS) -k install + $(MAKE) $(MFLAGS) -k install.doc + $(MAKE) $(MFLAGS) -k install.man + @echo "" + @date + @echo "" + @echo "Installation complete...now type 'make clean'" + +clean:: + $(RM) spider.shar spider.a spider.a.a?a cards.bm + +shar:: + $(SHAR) $(ALL_SRCS) > spider.shar + +dist:: shar + $(RM) spider.shar.Z + $(COMPRESS) spider.shar + $(CAT) spider.shar.Z | $(BTOA) > spider.a + $(SPLIT) spider.a spider.a. + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/MANIFEST 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,38 @@ + File Name Archive # Description +----------------------------------------------------------- + Imakefile 1 + MANIFEST 1 This shipping list + Makefile.sunpro 1 + README 1 + assert.h 1 + cards.bm.aa 9 + cards.bm.ab 7 + copyright.h 2 + defs.h 2 + doc.controls 2 + doc.examples 8 + doc.intro 1 + doc.misc 1 + doc.rules 1 + doc.summary 1 + events.c 2 + face.bm 6 + gfx.c 5 + globals.h 1 + main.c 1 + movelog.c 3 + rank.bm 1 + spider.bm 1 + spider.c 4 + spider.info 2 + spider.man 1 + suit.bm 1 + util.c 1 + version.c 1 + windows.c 1 + xaw_stubs.c 2 + xaw_ui.c 3 + xaw_ui.h 1 + xv_stubs.c 4 + xv_ui.c 3 + xv_ui.h 1 Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,751 @@ +# Makefile generated by imake - do not edit! +# $XConsortium: imake.c,v 1.89 94/08/12 00:45:51 gildea Exp $ + +# ----------------------------------------------------------------------- +# Makefile generated from "Imake.tmpl" and +# $XConsortium: Imake.tmpl,v 1.219 94/05/13 15:58:31 matt Exp $ +# $SunSoft: @(#)Imake.tmpl 1.1 01/13/97 16:16:22 $ +# + +# ************************************************************************** +# NOTE: +# +# If the user does not define DESTDIR and/or BINDIR in the local Imakefile, +# 'make install' will install the resultant binaries in /usr/openwin/bin. +# This usually fails because of lack of write permission in that directory +# for non-root users. +# +# The reason is that the default definition of ProjectRoot is /usr/openwin. +# This value determines all other definitions, e.g. the binary, library and +# manual page directories, etc. The destination directory, DESTDIR, is not +# defined and BINDIR is defined as $(ProjectRoot)/bin in Project.tmpl. +# +# Care must be taken when changing ProjectRoot. It affects the inclusion +# path of 'imake' in finding the *.cf, *.def, *.tmpl and *.rules files, +# which are in /usr/openwin/lib/X11/config/, and the default inclusion path +# of X11 header files and libraries. Therefore, if ProjectRoot is changed +# not only these configuration files need to be copied to a proper location, +# defined by IRULESRC, so 'make Makefile' can work properly, the header file +# inclusion path, /usr/openwin/include, and the library search path, +# /usr/openwin/lib, also need to be defined properly either in the local +# Imakefile or one of the configuration files to avoid compilation errors +# for programs that use X11 header files or libraries. +# +# Please refer to Project.tmpl, Imake.tmpl, site.def, etc. in +# /usr/openwin/lib/X11/config/ for details. +# ************************************************************************** + +.SUFFIXES: .i + +# $XConsortium: Imake.cf,v 1.12 94/03/29 15:42:08 gildea Exp $ +# $SunSoft: @(#)Imake.cf 1.1 01/13/97 16:16:21 $ + +# ----------------------------------------------------------------------- +# site-specific configuration parameters that need to come before +# the platform-specific parameters - edit site.def to change + +# site: $XConsortium: site.sample,v 1.11 94/06/03 19:50:12 matt Exp $ +# site: $SunSoft: @(#)site.def 1.1 01/13/97 16:16:27$ + +# ----------------------------------------------------------------------- +# platform-specific configuration parameters - edit sun.cf to change + +# platform: $XConsortium: sun.cf,v 1.133 94/07/08 12:23:12 gildea Exp $ +# platform: $SunSoft: @(#)sun.cf 1.11 05/04/01 13:49:33 $ + +# operating system: SunOS 5.9 + +# SUNSOFT SUNSOFT_LOADABLE + +# $XConsortium: svr4.cf,v 1.6 94/04/08 18:56:33 rws Exp $ +# $SunSoft: @(#)svr4.cf 1.1 01/13/97 16:16:29 $ + +# $XConsortium: sv4Lib.rules,v 1.14 94/04/09 12:00:10 rws Exp $ +# $SunSoft: @(#)sv4Lib.rules 1.1 01/13/97 16:16:28 $ + +# SUNSOFT SUNSOFT_LOADABLE + + TROFFTOPS = /usr/lib/lp/postscript/dpost | /usr/lib/lp/postscript/postreverse -r + +# ----------------------------------------------------------------------- +# site-specific configuration parameters that go after +# the platform-specific parameters - edit site.def to change + +# site: $XConsortium: site.sample,v 1.11 94/06/03 19:50:12 matt Exp $ +# site: $SunSoft: @(#)site.def 1.1 01/13/97 16:16:27$ + +INSTALLFLAGS = -o bin -g bin -m 0644 + +USRINCLUDEDIR = /usr/local/C/include +USRINCDIR = /usr/local/C/include + +APPDEFDIR = /usr/local/X11/lib/app-defaults +APPDEFDIR1 = /usr/openwin/lib/app-defaults +APPDEFDIR2 = /usr/dt/app-defaults/C + +# ----------------------------------------------------------------------- +# Imake rules for building libraries, programs, scripts, and data files +# rules: $XConsortium: Imake.rules,v 1.193 94/04/10 17:39:55 rws Exp $ +# rules: $SunSoft: @(#)Imake.rules 1.1 01/13/97 16:16:21 $ + +# SUNSOFT SUNSOFT_LOADABLE + + PATHSEP = / + SHELL = /bin/sh + + TOP = . + CURRENT_DIR = . + + IMAKE = imake + DEPEND = makedepend + MKDIRHIER = mkdirhier + CONFIGSRC = $(TOP)/config + IMAKESRC = $(CONFIGSRC)/imake + DEPENDSRC = $(CONFIGSRC)/makedepend + IXXSRC = $(UNSUPPORTEDSRC)/programs/ixx + IXX = ixx + IXXFLAGS = -s BaseObject -m TypeObj -r RequestObj -p Xf + IXXINCLUDES = -i '' + + INCROOT = /usr/openwin/include + USRLIBDIR = /usr/local/C/lib + SHLIBDIR = /usr/local/C/lib + LINTLIBDIR = $(USRLIBDIR) + MANPATH = /usr/local/X11/man + MANSOURCEPATH = /usr/local/X11/man/man + MANDIR = $(MANSOURCEPATH)1 + LIBMANDIR = $(MANSOURCEPATH)3 + FILEMANDIR = $(MANSOURCEPATH)$(FILEMANSUFFIX) + + AR = /usr/ccs/bin/ar cq + BOOTSTRAPCFLAGS = -DSVR4 + CC = gcc -fpcc-struct-return + AS = /usr/ccs/bin/as + + COMPRESS = compress + CPP = /usr/ccs/lib/cpp $(STD_CPP_DEFINES) + PREPROCESSCMD = gcc -fpcc-struct-return -E $(STD_CPP_DEFINES) + INSTALL = /usr/local/bin/install + INSTALLFLAGS = -c + LD = /usr/ccs/bin/ld + LEX = /usr/ccs/bin/lex + LEXLIB = -ll + YACC = /usr/ccs/bin/yacc + CCYACC = /usr/ccs/bin/yacc + LINT = lint + LINTLIBFLAG = -y -o + LINTOPTS = -b -h -Xc + LN = ln -s + MAKE = /usr/ccs/bin/make + MV = mv + CP = cp + + RM = rm -f + MANSUFFIX = 1 + LIBMANSUFFIX = 3 + FILEMANSUFFIX = 4 + TROFF = troff -t -Tpost + MSMACROS = -ms + TBL = tbl + EQN = eqn + + DVIPS = dvips + LATEX = latex + + STD_INCLUDES = -I/usr/local/C/include -I/usr/sfw/include -I/opt/csw/include -I/opt/sfw/include + STD_CPP_DEFINES = -Dsun -Dsparc -DSVR4 -DSYSV + STD_DEFINES = -Dsun -Dsparc -DSVR4 -DSYSV + EXTRA_LOAD_FLAGS = -L/usr/local/C/lib -R/usr/local/C/lib -L/usr/sfw/lib -R/usr/sfw/lib -L/opt/csw/lib -R/opt/csw/lib -L/opt/sfw/lib -R/opt/sfw/lib + EXTRA_LDOPTIONS = + EXTRA_LIBRARIES = -lsocket -lnsl + TAGS = ctags + + SHAREDCODEDEF = + SHLIBDEF = + + SHLIBLDFLAGS = -G -z text -M mapfile + + PICFLAGS = -fpic + + CXXPICFLAGS = -K PIC + + PROTO_DEFINES = + + INSTPGMFLAGS = -s -o bin -g bin -m 0755 + + INSTBINFLAGS = -s -o bin -g bin -m 0755 + INSTUIDFLAGS = -o bin -g bin -m 04755 + INSTLIBFLAGS = -o bin -g bin -m 0644 + INSTINCFLAGS = -o bin -g bin -m 0644 + INSTMANFLAGS = -o bin -g bin -m 0644 + INSTDATFLAGS = -o bin -g bin -m 0644 + INSTKMEMFLAGS = -o bin -g kmem -m 02755 + + PROJECTROOT = /usr/openwin + + TOP_INCLUDES = -I$(INCROOT) + + CDEBUGFLAGS = -O + CCOPTIONS = + + ALLINCLUDES = $(INCLUDES) $(EXTRA_INCLUDES) $(TOP_INCLUDES) $(STD_INCLUDES) + ALLDEFINES = $(ALLINCLUDES) $(STD_DEFINES) $(EXTRA_DEFINES) $(PROTO_DEFINES) $(THREADS_DEFINES) $(DEFINES) + CFLAGS = $(CDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(ALLDEFINES) + LINTFLAGS = $(LINTOPTS) -DLINT $(ALLDEFINES) $(DEPEND_DEFINES) + LDPRELIB = -L$(USRLIBDIR) + LDPOSTLIB = + LDOPTIONS = $(CDEBUGFLAGS) $(CCOPTIONS) $(EXTRA_LDOPTIONS) $(THREADS_LDFLAGS) $(LOCAL_LDFLAGS) $(LDPRELIB) + CXXLDOPTIONS = $(CXXDEBUGFLAGS) $(CXXOPTIONS) $(EXTRA_LDOPTIONS) $(THREADS_CXXLDFLAGS) $(LOCAL_LDFLAGS) $(LDPRELIB) + + LDLIBS = $(LDPOSTLIB) $(THREADS_LIBS) $(SYS_LIBRARIES) $(EXTRA_LIBRARIES) + + CCENVSETUP = LD_RUN_PATH=$(USRLIBDIR) + CCLINK = $(CCENVSETUP) $(CC) + + CXXENVSETUP = LD_RUN_PATH=$(USRLIBDIR) + CXXLINK = $(CXXENVSETUP) $(CXX) + + LDSTRIPFLAGS = -x + LDCOMBINEFLAGS = -r + DEPENDFLAGS = + + MACROFILE = sun.cf + RM_CMD = $(RM) + + IMAKE_DEFINES = + + IRULESRC = $(CONFIGDIR) + IMAKE_CMD = $(IMAKE) -DUseInstalled -I$(IRULESRC) $(IMAKE_DEFINES) + + ICONFIGFILES = $(IRULESRC)/Imake.tmpl $(IRULESRC)/Project.tmpl \ + $(IRULESRC)/site.def $(IRULESRC)/$(MACROFILE) \ + $(EXTRA_ICONFIGFILES) + +# ----------------------------------------------------------------------- +# X Window System Build Parameters and Rules +# $XConsortium: Project.tmpl,v 1.242 94/04/13 14:58:40 rws Exp $ +# $SunSoft: @(#)Project.tmpl 1.6 05/30/02 19:12:02 $ + +# SUNSOFT SUNSOFT_LOADABLE + +# ----------------------------------------------------------------------- +# X Window System make variables; these need to be coordinated with rules + + BINDIR = /usr/local/X11/bin + BUILDINCROOT = $(TOP) + BUILDINCDIR = $(BUILDINCROOT)/X11 + BUILDINCTOP = .. + BUILDLIBDIR = $(TOP)/usrlib + BUILDLIBTOP = .. + INCDIR = $(INCROOT)/X11 + ADMDIR = /usr/adm + LIBDIR = /usr/local/X11/lib + + FONTDIR = $(LIBDIR)/fonts + XINITDIR = $(LIBDIR)/xinit + XDMDIR = $(LIBDIR)/xdm + TWMDIR = $(LIBDIR)/twm + NLSDIR = $(LIBDIR)/nls + XLOCALEDIR = $(PROJECTROOT)/lib/locale + PEXAPIDIR = $(LIBDIR)/PEX + XAPPLOADDIR = $(LIBDIR)/app-defaults + FONTCFLAGS = -t + + INSTAPPFLAGS = $(INSTDATFLAGS) + + RGB = rgb + FONTC = bdftopcf + MKFONTDIR = mkfontdir + + DOCUTILSRC = $(TOP)/doc/util + XDOCMACROS = $(DOCUTILSRC)/macros.t + XIDXMACROS = $(DOCUTILSRC)/indexmacros.t + PROGRAMSRC = $(TOP)/programs + LIBSRC = $(TOP)/lib + FONTSRC = $(TOP)/fonts + INCLUDESRC = $(TOP)/X11 + SERVERSRC = $(TOP)/programs/Xserver + CONTRIBSRC = $(TOP)/../contrib + UNSUPPORTEDSRC = $(TOP)/unsupported + DOCSRC = $(TOP)/doc + RGBSRC = $(TOP)/programs/rgb + BDFTOPCFSRC = $(PROGRAMSRC)/bdftopcf + MKFONTDIRSRC = $(PROGRAMSRC)/mkfontdir + FONTSERVERSRC = $(PROGRAMSRC)/xfs + FONTINCSRC = $(TOP)/include/fonts + EXTINCSRC = $(TOP)/include/extensions + TRANSCOMMSRC = $(LIBSRC)/xtrans + TRANS_INCLUDES = -I$(TRANSCOMMSRC) + +# $XConsortium: sunLib.tmpl,v 1.37 95/05/23 14:31:40 matt Exp $ +# SunSoft: @(#)sunLib.tmpl 1.4 05/30/02 17:00:20 + +# $XConsortium: sv4Lib.tmpl,v 1.19 93/12/03 10:48:36 kaleb Exp $ +# $SunSoft: @(#)sv4Lib.tmpl 1.1 01/13/97 16:16:29 $ + +XMULIBONLY = -lXmu -lm +XMULIB = -lXmu -lm + + SERVERLIB = /usr/openwin/server/lib + + SERVERMODULES = /usr/openwin/server/modules + + SERVERETC = /usr/openwin/server/etc + +SHLIBLDFLAGS = -G -z text -M mapfile +PICFLAGS = -fpic +MAPFILE = mapfile + + XLIBSRC = $(LIBSRC)/X11 + +SOXLIBREV = 4 +DEPXONLYLIB = +XONLYLIB = -lX11 + +LINTXONLY = $(LINTLIBDIR)/llib-lX11.ln + + XLIBONLY = $(XONLYLIB) + + XEXTLIBSRC = $(LIBSRC)/Xext + +SOXEXTREV = 0 +DEPEXTENSIONLIB = +EXTENSIONLIB = -lXext + +LINTEXTENSION = $(LINTLIBDIR)/llib-lXext.ln + +LINTEXTENSIONLIB = $(LINTEXTENSION) + DEPXLIB = $(DEPEXTENSIONLIB) $(DEPXONLYLIB) + XLIB = $(EXTENSIONLIB) $(XONLYLIB) + LINTXLIB = $(LINTXONLYLIB) + + XAUTHSRC = $(LIBSRC)/Xau + +DEPXAUTHLIB = $(USRLIBDIR)/libXau.a +XAUTHLIB = -lXau + +LINTXAUTH = $(LINTLIBDIR)/llib-lXau.ln + + XDMCPLIBSRC = $(LIBSRC)/Xdmcp + +DEPXDMCPLIB = $(USRLIBDIR)/libXdmcp.a +XDMCPLIB = -lXdmcp + +LINTXDMCP = $(LINTLIBDIR)/llib-lXdmcp.ln + + XMUSRC = $(LIBSRC)/Xmu + +SOXMUREV = 4 +DEPXMULIB = +XMULIB = -lXmu + +LINTXMU = $(LINTLIBDIR)/llib-lXmu.ln + +XMULIB = -lXmu -lm + + XCONFIGSRC = $(LIBSRC)/Xconfig + +SOXCONFIGREV = 0 +DEPXCONFIGLIB = +XCONFIGLIB = -lXconfig + +LINTXCONFIG = $(LINTLIBDIR)/llib-lXconfig.ln + + DGASRC = $(LIBSRC)/dga + +SODGAREV = 1 +DEPDGASRCLIB = +DGASRCLIB = -ldga + +LINTDGASRC = $(LINTLIBDIR)/llib-ldga.ln + + MISRC = $(SERVERSRC)/mi + +SOMIREV = 1 +DEPMILIB = +MILIB = -lmi + +LINTMI = $(LINTLIBDIR)/llib-lmi.ln + + MFBSRC = $(SERVERSRC)/mfb + +SOMFBREV = 1 +DEPMFBLIB = +MFBLIB = -lmfb + +LINTMFB = $(LINTLIBDIR)/llib-lmfb.ln + + CFBSRC = $(SERVERSRC)/cfb + +SOCFBREV = 1 +DEPCFBLIB = +CFBLIB = -lcfb + +LINTCFB = $(LINTLIBDIR)/llib-lcfb.ln + + OLDXLIBSRC = $(LIBSRC)/oldX + +SOOLDXREV = 6 +DEPOLDXLIB = +OLDXLIB = -loldX + +LINTOLDX = $(LINTLIBDIR)/llib-loldX.ln + + TOOLKITSRC = $(LIBSRC)/Xt + +SOXTREV = 4 +DEPXTOOLONLYLIB = +XTOOLONLYLIB = -lXt + +LINTXTOOLONLY = $(LINTLIBDIR)/llib-lXt.ln + + DEPXTOOLLIB = $(DEPXTOOLONLYLIB) $(DEPSMLIB) $(DEPICELIB) + XTOOLLIB = $(XTOOLONLYLIB) $(SMLIB) $(ICELIB) + LINTXTOOLLIB = $(LINTXTOOLONLYLIB) + + AWIDGETSRC = $(LIBSRC)/Xaw + +SOXAWREV = 5 +DEPXAWLIB = +XAWLIB = -lXaw + +LINTXAW = $(LINTLIBDIR)/llib-lXaw.ln + + XTFSRC = $(TOP)/workInProgress/Xtf + +SOXTFREV = 0.7 +DEPXTFLIB = +XTFLIB = -lXtf + +LINTXTF = $(LINTLIBDIR)/llib-lXtf.ln + + FRESCOSRC = $(TOP)/workInProgress/Fresco + +SOFRESCOREV = 0.7 +DEPFRESCOLIB = +FRESCOLIB = -lFresco + +LINTFRESCO = $(LINTLIBDIR)/llib-lFresco.ln + + XILIBSRC = $(LIBSRC)/Xi + +SOXINPUTREV = 5 +DEPXILIB = +XILIB = -lXi + +LINTXI = $(LINTLIBDIR)/llib-lXi.ln + + XTESTLIBSRC = $(LIBSRC)/Xtst + +SOXTESTREV = 1 +DEPXTESTLIB = +XTESTLIB = -lXtst + +LINTXTEST = $(LINTLIBDIR)/llib-lXtst.ln + + PEXLIBSRC = $(LIBSRC)/PEX5 + +SOPEXREV = 6 +DEPPEXLIB = +PEXLIB = -lPEX5 + +LINTPEX = $(LINTLIBDIR)/llib-lPEX5.ln + +SODPSREV = 5 +SOSERVERDPSREV = 5 + + DPSLIBSRC = $(LIBSRC)/DPS + +SODPSREV = 5 +DEPDPSLIB = +DPSLIB = -lDPS + +LINTDPS = $(LINTLIBDIR)/llib-lDPS.ln + + XIELIBSRC = $(LIBSRC)/XIE + +SOXIEREV = 6 +DEPXIELIB = +XIELIB = -lXIE + +LINTXIE = $(LINTLIBDIR)/llib-lXIE.ln + + PHIGSLIBSRC = $(LIBSRC)/PHIGS + +DEPPHIGSLIB = $(USRLIBDIR)/libphigs.a +PHIGSLIB = -lphigs + +LINTPHIGS = $(LINTLIBDIR)/llib-lphigs.ln + +DEPXBSDLIB = $(USRLIBDIR)/libXbsd.a +XBSDLIB = -lXbsd + +LINTXBSD = $(LINTLIBDIR)/llib-lXbsd.ln + + ICESRC = $(LIBSRC)/ICE + +SOICEREV = 6 +DEPICELIB = +ICELIB = -lICE + +LINTICE = $(LINTLIBDIR)/llib-lICE.ln + + SMSRC = $(LIBSRC)/SM + +SOSMREV = 6 +DEPSMLIB = +SMLIB = -lSM + +LINTSM = $(LINTLIBDIR)/llib-lSM.ln + + FSLIBSRC = $(LIBSRC)/FS + +SOFSREV = 5 +DEPFSLIB = +FSLIB = -lFS + +LINTFS = $(LINTLIBDIR)/llib-lFS.ln + + FONTLIBSRC = $(LIBSRC)/font + +DEPFONTLIB = $(USRLIBDIR)/libfont.a +FONTLIB = -lfont + +LINTFONT = $(LINTLIBDIR)/llib-lfont.ln + + XRENDERLIBSRC = $(LIBSRC)/Xrender + +SOXRENDERREV = 1 +DEPXRENDERLIB = +XRENDERLIB = -lXrender + +LINTXRENDER = $(LINTLIBDIR)/llib-lXrender.ln + +XRENDERLIB = -L/usr/openwin/sfw/lib -R/usr/openwin/lib:/usr/openwin/sfw/lib -lXrender + + DEPLIBS = $(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB) + + DEPLIBS1 = $(DEPLIBS) + DEPLIBS2 = $(DEPLIBS) + DEPLIBS3 = $(DEPLIBS) + + CONFIGDIR = $(LIBDIR)/config + +# ----------------------------------------------------------------------- +# start of Imakefile + +# Run imake -DUseInstalled -I/usr/lib/X11/config to make a Makefile. +# This is an R4 style Imakefile, so will need the R4 config files to +# to make a Makefile. It also assume that X11 is installed in /usr/lib. + + SHAR = shar -a + COMPRESS = compress + BTOA = btoa + SPLIT = split + CAT = cat + + HELPDIR = /usr/local/Games/lib/spider + + MANSUFFIX = 6 + MANDIR = /usr/local/Games/man/man$(MANSUFFIX) + BINDIR = /usr/local/Games/bin + MKDIRHIER = /usr/openwin/bin/mkdirhier + + KL_DIST = main.c + + XVIEW_DIST = xv_ui.c xv_stubs.c xv_ui.h spider.info + + XAW_DIST = xaw_ui.c xaw_stubs.c xaw_ui.h + + DEPLIBS = $(DEPXAWLIB) $(DEPXTOOLLIB) $(DEPXMULIB) $(DEPXLIB) + LOCAL_LIBRARIES = $(XAWLIB) $(XTOOLLIB) $(XMULIB) $(XLIB) + + TKOBJS = xaw_ui.o xaw_stubs.o + + TKSRCS = xaw_ui.c xaw_stubs.c + + TKHEADERS = xaw_ui.h + + TKBITMAPS = + + TKDOCS = + + TKDEFINES = -DXAW + + TKINCLUDES = + + TARGET = spider + +BASE_OBJS = gfx.o spider.o events.o windows.o movelog.o util.o version.o +OBJS = $(BASE_OBJS) $(TKOBJS) + +BASE_SRCS = gfx.c spider.c events.c windows.c movelog.c util.c version.c +SRCS = $(BASE_SRCS) $(TKSRCS) + +BASE_HEADERS = globals.h defs.h assert.h +HEADERS = $(BASE_HEADERS) $(TKHEADERS) + +BASE_BITMAPS = rank.bm suit.bm face.bm spider.bm cards.bm.aa cards.bm.ab +BITMAPS = $(BASE_BITMAPS) $(TKBITMAPS) + +BASE_DOCS = doc.intro doc.rules doc.controls doc.examples doc.misc doc.summary +DOCS = $(BASE_DOCS) $(TKDOCS) + +MISC = Imakefile Makefile.sunpro README spider.man + +ALL_SRCS = $(MISC) $(BASE_SRCS) $(BASE_HEADERS) $(BASE_BITMAPS) $(BASE_DOCS) \ + $(XVIEW_DIST) $(XAW_DIST) $(KL_DIST) + +UTILDEFS = + +DEFINES = $(TKDEFINES) -DROUND_CARDS -DHELPDIR="\"$(HELPDIR)\"" $(UTILDEFS) + +INCLUDES = -I. $(TKINCLUDES) + +CPPFLAGS = + +all:: $(TARGET) + +install:: + @case '${MFLAGS}' in *[i]*) set +e;; esac; + @for i in $(BINDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi \ + done + +install.man:: + @case '${MFLAGS}' in *[i]*) set +e;; esac; + @for i in $(MANDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi \ + done + + PROGRAM = $(TARGET) + +all:: $(TARGET) + +$(TARGET): $(OBJS) $(DEPLIBS) + $(RM) $@ + $(CCLINK) -o $@ $(LDOPTIONS) $(OBJS) $(LOCAL_LIBRARIES) $(LDLIBS) $(EXTRA_LOAD_FLAGS) + +install:: $(TARGET) + @if [ -d $(DESTDIR)$(BINDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(BINDIR)); fi + $(INSTALL) $(INSTALLFLAGS) $(INSTPGMFLAGS) $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET) + +install.man:: $(TARGET).man + @if [ -d $(DESTDIR)$(MANDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(MANDIR)); fi + instman -$(MANSUFFIX) -M $(MANDIR) -N $(TARGET) $(TARGET).man + +depend:: + $(DEPEND) $(DEPENDFLAGS) -- $(ALLDEFINES) $(DEPEND_DEFINES) -- $(SRCS) + +lint: + $(LINT) $(LINTFLAGS) $(SRCS) $(LINTLIBS) +lint1: + $(LINT) $(LINTFLAGS) $(FILE) $(LINTLIBS) + +clean:: + $(RM) $(TARGET) + +# SunOS4.0.3 sparc optimizer slimes this file +util.o: util.c + $(CC) $(CPPFLAGS) $(DEFINES) $(INCLUDES) -c util.c + +version.o: version.c + $(CC) -DDATE="\"`date`\"" -c version.c + +install.doc:: + @case '${MFLAGS}' in *[i]*) set +e;; esac; + @for i in $(HELPDIR); do if [ -d $(DESTDIR)$$i ]; then \ + set +x; else (set -x; $(MKDIRHIER) $(DESTDIR)$$i); fi \ + done + +install.doc:: $(DOCS) + @if [ -d $(DESTDIR)$(HELPDIR) ]; then set +x; \ + else (set -x; $(MKDIRHIER) $(DESTDIR)$(HELPDIR)); fi + @case '${MFLAGS}' in *[i]*) set +e;; esac; \ + for i in $(DOCS); do \ + (set -x; $(INSTALL) $(INSTALLFLAGS) $(INSTDATFLAGS) $$i $(DESTDIR)$(HELPDIR)); \ + done + +World:: + @echo "" + @echo "Begin build of the $(TARGET) application for the" + + @echo "Athena Widget toolkit version." + + @echo "Using cards with normal bitmaps and optional rounded edges." + + @echo "" + @date + @echo "" + $(MAKE) $(MFLAGS) clean + $(MAKE) $(MFLAGS) depend + $(MAKE) $(MFLAGS) + @echo "" + @date + @echo "" + @echo "Begin installation... " + $(MAKE) $(MFLAGS) -k install + $(MAKE) $(MFLAGS) -k install.doc + $(MAKE) $(MFLAGS) -k install.man + @echo "" + @date + @echo "" + @echo "Installation complete...now type 'make clean'" + +clean:: + $(RM) spider.shar spider.a spider.a.a?a cards.bm + +shar:: + $(SHAR) $(ALL_SRCS) > spider.shar + +dist:: shar + $(RM) spider.shar.Z + $(COMPRESS) spider.shar + $(CAT) spider.shar.Z | $(BTOA) > spider.a + $(SPLIT) spider.a spider.a. + +# ----------------------------------------------------------------------- +# common rules for all Makefiles - do not edit + +.c.i: + $(RM) $@ + $(CC) -E $(CFLAGS) $(_NOOP_) $*.c > $@ + +emptyrule:: + +clean:: + $(RM) *.CKP *.ln *.BAK *.bak *.o core errs ,* *~ *.a .emacs_* tags TAGS make.log MakeOut "#"* + +Makefile:: + - at if [ -f Makefile ]; then set -x; \ + $(RM) Makefile.bak; $(MV) Makefile Makefile.bak; \ + else exit 0; fi + $(IMAKE_CMD) -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) + +tags:: + $(TAGS) -w *.[ch] + $(TAGS) -xw *.[ch] > TAGS + +man_keywords:: + catman -M $(DESTDIR)$(MANPATH) -w + +# ---------------------------------------------------------------------- +# empty rules for directories that do not have SUBDIRS - do not edit + +install:: + @echo "install in $(CURRENT_DIR) done" + +install.man:: + @echo "install.man in $(CURRENT_DIR) done" + +Makefiles:: + +includes:: + +depend:: + +# ----------------------------------------------------------------------- +# dependencies generated by makedepend + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/Makefile.sunpro 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,166 @@ +#/* +# * Spider +# * +# * (c) Copyright 1989, Donald R. Woods and Sun Microsystems, Inc. +# * (c) Copyright 1990, David Lemke and Network Computing Devices Inc. +# * +# * See copyright.h for the terms of the copyright. +# * +# * @(#)Makefile 2.1 90/04/27 +# * +# */ +# +# SunPro make Makefile for Spider +# +CFLAGS = -O +# define ROUND_CARDS to make them round. this slows things down a bit, +# but does make them prettier. +CPPFLAGS = -DROUND_CARDS +# if SMALL_CARDS is defined *don't* define ROUND_CARDS. +#CPPFLAGS = -DSMALL_CARDS + +# round cards require Xmu. +#LIBS = -lX11 +LIBS = -lXmu -lX11 + +# set HELPDIR to be the place where the help files will be installed +#HELPDIR = . +HELPDIR = /u6/lemke/games/lib/spider +# set BINDIR to be the place where the executables will be installed +BINDIR = . + +CPPFLAGS += -DHELPDIR="\"$(HELPDIR)\"" + +.KEEP_STATE: + +OBJS = main.o gfx.o spider.o events.o windows.o movelog.o util.o version.o + +SRCS = main.c gfx.c spider.c events.c windows.c movelog.c util.c version.c + +HEADERS = globals.h defs.h assert.h copyright.h + +XVIEW_OBJS = gfx.o spider.o events.o movelog.o util.o windows.o \ + xv_ui.o xv_stubs.o version.o + +XVIEW_SRCS = gfx.c spider.c events.c movelog.c util.c windows.c \ + xv_ui.c xv_stubs.c version.c + +XVIEW_HEADERS = ${HEADERS} xv_ui.h + +XVIEW_DIST = xv_ui.c xv_stubs.c xv_ui.h + +XAW_OBJS = gfx.o spider.o events.o movelog.o util.o windows.o \ + xaw_ui.o xaw_stubs.o version.o + +XAW_SRCS = gfx.c spider.c events.c movelog.c util.c windows.c \ + xaw_ui.c xaw_stubs.c version.c + +XAW_HEADERS = ${HEADERS} xaw_ui.h + +XAW_DIST = xaw_ui.c xaw_ui.h xaw_stubs.c + +BITMAPS = rank.bm suit.bm face.bm spider.bm cards.bm.aa cards.bm.ab + +DOCS = doc.intro doc.rules doc.controls doc.examples doc.misc spider.man \ + spider.info doc.summary + +KL_BIN = spider +XAW_BIN = spider +XVIEW_BIN = spider + +# for make all, these need to be moved +all:= KL_BIN = spider.kl +all:= XAW_BIN = spider.xaw +all:= XVIEW_BIN = spider.xview + +debug:= CFLAGS = -g +debug:= CPPFLAGS += -DDEBUG +debug:= LDFLAGS = -Bstatic +debug:= MALLOC = /usr/lib/debug/malloc.o + +kl_spider:= CPPFLAGS += -DKITLESS + +xv_spider:= OBJS = $(XVIEW_OBJS) +xv_spider:= SRCS = $(XVIEW_SRCS) +# +# NOTE: XVIEW 1.1 requires libolgx. 1.0.1, R4, and 1.0 don't. +# +xv_spider:= LIBS = -L$(OPENWINHOME)/usr/lib -lxview -lolgx -lX11 +xv_spider:= CPPFLAGS += -I$(OPENWINHOME)/include -DXVIEW + +xaw_spider:= OBJS = $(XAW_OBJS) +xaw_spider:= SRCS = $(XAW_SRCS) +xaw_spider:= LIBS = -lXaw -lXmu -lXt -lXext -lX11 +xaw_spider:= CPPFLAGS += -DXAW + + +all: xaw_spider +debug: xaw_spider + +xv_spider: obj + mv obj $(XVIEW_BIN) + +xaw_spider: obj + mv obj $(XAW_BIN) + +kl_spider: obj + mv obj $(KL_BIN) + + +obj: $$(OBJS) + cc -o $@ $(LDFLAGS) $(OBJS) $(MALLOC) $(LIBS) + +.c.o: + cc $(CPPFLAGS) $(CFLAGS) -c $< + +# SunOS4.0.3 sparc optimizer slimes this file +util.o: util.c + cc $(CPPFLAGS) -c $< +# cc -g $(CPPFLAGS) -c $< + +gfx.o: cards.bm + cc $(CPPFLAGS) $(CFLAGS) -c $< + +version.o: FRC + cc -c -DDATE="\"`date`\"" $< + +cards.bm: cards.bm.aa cards.bm.ab + cat cards.bm.aa cards.bm.ab > $@ + +install: all + mkdir $(HELPDIR) + cp $(DOCS) $(HELPDIR) + mkdir $(BINDIR) + mv $(BINDIR)/$(KL_BIN) $(BINDIR)/$(KL_BIN)- + mv $(BINDIR)/$(XAW_BIN) $(BINDIR)/$(XAW_BIN)- + mv $(BINDIR)/$(XVIEW_BIN) $(BINDIR)/$(XVIEW_BIN)- + cp $(KL_BIN) $(XAW_BIN) $(XVIEW_BIN) $(BINDIR) + + +lint: + lint -abchxz $(SRCS) + +clean: + rm -f core *.o cards.bm.a? spider *~ ,* Part* spider.shar* spider.a spider.a.a? + +tags: $$(SRCS) $$(HEADERS) $$(XAW_DIST) $$(XVIEW_DIST) + ctags $(SRCS) $(HEADERS) $(XAW_DIST) $(XVIEW_DIST) + +kit: + split -675 cards.bm cards.bm. + makekit -m README Makefile.sunpro Imakefile $(DOCS) $(SRCS) \ + $(HEADERS) $(XVIEW_DIST) $(XAW_DIST) $(BITMAPS) + +shar: + split -675 cards.bm cards.bm. + shar README Makefile.sunpro Imakefile $(DOCS) $(SRCS) $(HEADERS) \ + $(XVIEW_DIST) $(XAW_DIST) $(BITMAPS) > spider.shar + +dist: shar + rm -f spider.shar.Z + compress spider.shar + cat spider.shar.Z | btoa > spider.a + split spider.a spider.a. + +FRC:: + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/PATCH.zoo =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/PATCH.zoo ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/README 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,99 @@ +Patch level 1: + fixed bug, some problems with Imakefile. + fixed bug, can no longer see turned-over cards with middle mouse. + fixed bug, "f" will use the text field then selection for information. + added, patch_level variable to version.c file. + +Patch level 2: + added advice for choosing a move. + added "squish" feature for packing contiguous cards of same suit. + added looking in common places in XView for help files if not found. + bumped version number to 1.1 from 1.0.1. + +Spider is a challenging double decked solitaire game. Unlike most +soilitaire games, skill is just as important as luck. + +The X11 version of spider is based on the NeWS version by Don Woods, +and uses the same save file format and card images. + +The game has three interfaces: raw Xlib, Athena widget and XView. The +Athena interface was built with the R4 toolkit, and may not work with +earlier versions. The XView interface requires XView 1.0.1, which was +shipped on the R4 tape. + +Installation: + +1. Decide which interfaces you wish to build, and set up the Imakefile + appropriately. + +2. Set the HELPDIR directory for 'make install' to + work correctly, and the help files to be found. + +3a. If you plan to run on a small display (less than ~900 pixels wide), + define SMALL_CARDS. These aren't as pretty, but its a lot + better than having to move the window while playing. (if your + display is less than ~500 pixels, you're SOL unless you want + to make some smaller cards.) + +3b. If you have a wider display, define ROUND_CARDS if you want it to look + prettier, at the cost of a considerable amount of performance + (although its still quite playable on a reasonable server). + +4. Type 'xmkmf' to build the Makefile, and type 'make'. + +If you are compiling multiple versions, be sure to do a "make clean" +before doing a "make" of the next version. This will avoid mixing +modules which have been compiled with different flags. + +Spider has been tested on the following: + +Hosts: + Sun 3 & 4 running 4.0.x, 4.1.x + Solbourne 5 running 4.0x + Decstation 3100 Ultrix 3.1 + Decstation 3100 running OSF/1 + Textronix 4319 running UTek 4.1 + + partially: + DG AViiON 5100 running DG/UX 4.20 + (kitless only, and no usleep() since it doesn't have setitimer(2)) + +Displays: + NCD 16, 19, 17c + Sun 3 & 4 running MIT X11R4 + Sun 3 & 4 running X11/NeWS + Decstation 3100, running UWS 2.2 + Decstation 3100, running MIT X11R4 + Textronix 4319, running MIT X11R4 + +Please send any bugs or comments to: + +Dave Lemke +lemke at ncd.com +uunet!lupine!lemke + +I'd especially like to see new interfaces to it, particularly +non-Xt based toolkits like InterViews, OI or Andrew. + +Note on XView version: + +The supplied XView code will compile with either XView 1.0.1 (which is +included on the X11R4 distribution) or XView 2.0 (which will be released +later this summer). + +Before running the XView version of the tool, set the environment variable +HELPDIR to the location of the spider.info file so spot help will work. +For XView 2.0, HELPDIR becomes HELPPATH which works similarly to MANPATH. + +The XView version also has two extra command line args: -name and +-resource_file. These allow you to have instances of the Spider tool +which resources apply to and allow one to use a different resource +file than the default. The default resource file for the XView version +is $HOME/.Xdefaults. The spider.info file has more information on +resources when you prompt it for spot help. + +Please send any bugs or comments about the XView front end to: + +Heather Rose +hrose at sun.com +sun!hrose Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/SPIDERv1r1p1a.zoo =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/SPIDERv1r1p1a.zoo ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/assert.h 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,17 @@ +/* + * Spider + * + * (c) Copyright 1989, Donald R. Woods and Sun Microsystems, Inc. + * (c) Copyright 1990, David Lemke and Network Computing Devices Inc. + * + * See copyright.h for the terms of the copyright. + * + * @(#)assert.h 2.1 90/04/25 + * + */ + +#ifdef DEBUG +#define assert(ex) {if (!(ex)){(void)fprintf(stderr,"Assertion \"ex\" failed: file \"%s\", line %d\n", __FILE__, __LINE__);abort();}} +#else +#define assert(ex) +#endif Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/copyright.h 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,108 @@ +/* + * Copyright 1990 Heather Rose and Sun Microsystems, Inc. + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that copyright + * notice and this permission notice appear in supporting documentation, and + * that the names of Donald Woods and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems not be used in + * advertising or publicity pertaining to distribution of the software without + * specific, written prior permission. Heather Rose and Sun Microsystems make + * no representations about the suitability of this software for any purpose. + * It is provided "as is" without express or implied warranty. + * + * THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT + * SHALL HEATHER ROSE OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. + * + * Author: + * Heather Rose + * hrose at sun.com + * + * Sun Microsystems, Inc. + * 2550 Garcia Avenue + * Mountain View, CA 94043 + */ + +/* + * Copyright 1990 David Lemke and Network Computing Devices + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation, and that the name of Network Computing Devices not be + * used in advertising or publicity pertaining to distribution of the + * software without specific, written prior permission. Network Computing + * Devices makes no representations about the suitability of this software + * for any purpose. It is provided "as is" without express or implied + * warranty. + * + * NETWORK COMPUTING DEVICES DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS + * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, + * IN NO EVENT SHALL NETWORK COMPUTING DEVICES BE LIABLE FOR ANY SPECIAL, + * 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. + * + * Author: + * Dave Lemke + * lemke at ncd.com + * + * Network Computing Devices, Inc + * 350 North Bernardo Ave + * Mountain View, CA 94043 + * + * @(#)copyright.h 2.2 90/04/27 + * + */ + +/* +% Copyright (c) 1989, Donald R. Woods and Sun Microsystems, Inc. +% +% Permission to use, copy, modify, distribute, and sell this software and its +% documentation for any purpose is hereby granted without fee, provided that +% the above copyright notice appear in all copies and that both that copyright +% notice and this permission notice appear in supporting documentation, and +% that the names of Donald Woods and Sun Microsystems not be used in +% advertising or publicity pertaining to distribution of the software without +% specific, written prior permission. Donald Woods and Sun Microsystems make +% no representations about the suitability of this software for any purpose. +% It is provided "as is" without express or implied warranty. +% +% THE ABOVE-NAMED DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +% INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT +% SHALL DONALD WOODS OR SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, 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. +% +% History: Spider is a solitaire card game that can be found in various books +% of same; the rules are presumed to be in the public domain. The author's +% first computer implementation was on the Stanford Artificial Intelligence Lab +% system (SAIL). It was later ported to the Xerox Development Environment. +% The card images are loosely based on scanned-in images but were largely +% redrawn by the author with help from Larry Rosenberg. +% +% This program is written entirely in NeWS and runs on OPEN WINDOWS 1.0. +% It could be made to run much faster if parts of it were written in C, using +% NeWS mainly for its display and input capabilities, but that is left as an +% exercise for the reader. Spider may also run with little or no modification +% on subsequent releases of OPEN WINDOWS, but no guarantee is made on this +% point (nor any other; see above!). To run Spider, feed this file to 'psh'. +% +% Author: Don Woods +% woods at sun.com +% +% Sun Microsystems, Inc. +% 2550 Garcia Avenue +% Mountain View, CA 94043 +*/ Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/defs.h 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,241 @@ +/* + * Spider + * + * (c) Copyright 1989, Donald R. Woods and Sun Microsystems, Inc. + * (c) Copyright 1990, David Lemke and Network Computing Devices Inc. + * + * See copyright.h for the terms of the copyright. + * + * @(#)defs.h 2.2 90/04/30 + * + */ + +/* + * std includes and types + */ +#include +#include +#include +#include +#include "assert.h" +#include "copyright.h" + +#ifdef DEBUG +/* + * so i don't have to keep looking up my constants + */ +typedef enum {Spade, Heart, Diamond, Club} Suit; + +typedef enum {Ace, Deuce, Three, Four, Five, Six, Seven, + Eight, Nine, Ten, Jack, Queen, King} Rank; + +typedef enum {Faceup, Facedown, Joker} Type; + +#else DEBUG + +typedef char Suit; +typedef char Rank; +typedef char Type; + +#define Spade 0 +#define Heart 1 +#define Diamond 2 +#define Club 3 + +#define Ace 0 +#define Deuce 1 +#define Three 2 +#define Four 3 +#define Five 4 +#define Six 5 +#define Seven 6 +#define Eight 7 +#define Nine 8 +#define Ten 9 +#define Jack 10 +#define Queen 11 +#define King 12 + +#define Faceup 0 +#define Facedown 1 +#define Joker 2 + +#endif DEBUG + +#define NUM_DECKS 2 +#define NUM_PILES 8 +#define NUM_STACKS 10 +#define NUM_RANKS 13 +#define NUM_SUITS 4 +#define CARDS_PER_DECK (NUM_RANKS * NUM_SUITS) +#define NUM_CARDS (NUM_DECKS * CARDS_PER_DECK) + +/* diff locations for a cardlist */ +#define DECK 0 + +#define PILE_1 1 +#define PILE_2 2 +#define PILE_3 3 +#define PILE_4 4 +#define PILE_5 5 +#define PILE_6 6 +#define PILE_7 7 +#define PILE_8 8 + +/* convert a pile value to an array index */ +#define PILE_INDEX(i) ((i) - 1) + +#define STACK_1 11 +#define STACK_2 12 +#define STACK_3 13 +#define STACK_4 14 +#define STACK_5 15 +#define STACK_6 16 +#define STACK_7 17 +#define STACK_8 18 +#define STACK_9 19 +#define STACK_10 20 + +/* convert a stack value to an array index */ +#define STACK_INDEX(i) ((i) - 11) + +#define LOC_BEFORE 1 +#define LOC_AFTER 2 +#define LOC_END 3 +#define LOC_START 4 + +typedef struct _CardStruct { + struct _CardStruct *prev; + struct _CardStruct *next; + struct _CardList *list; + int x,y; /* location */ + Suit suit; + Rank rank; + Type type; + int draw_count; +} CardStruct, *CardPtr; + +#define CARDNULL ((CardPtr) 0) + +typedef struct _CardList { + CardPtr cards; + int place; + int card_delta; /* pixels between cards in stack */ + int x, y; +} CardListStruct, *CardList; + +#define CARDLISTNULL ((CardList) 0) + +#ifndef SMALL_CARDS +#define CARD_DELTA 30 +#else +#define CARD_DELTA 20 +#endif /* !SMALL_CARDS */ + + +#define IS_PILE(list) (((list) != CARDLISTNULL) && (list)->place < STACK_1) + +/* gfx defs */ + +/* card info*/ +#ifndef SMALL_CARDS +#define CARD_HEIGHT 123 +#define CARD_WIDTH 79 + +#define FACECARD_WIDTH 47 +#define FACECARD_HEIGHT 92 + +#define RANK_WIDTH 9 +#define RANK_HEIGHT 14 + +#define RANK_LOC_X 4 +#define RANK_LOC_Y 7 + +#define SMALL_LOC_X 4 +#define SMALL_LOC_Y (RANK_HEIGHT + RANK_LOC_Y + 3) + +#define MID_CARD_X (CARD_WIDTH/2) +#define MID_CARD_Y (CARD_HEIGHT/2) + +#define CARD_COL1_X (3 * CARD_WIDTH/10) +#define CARD_COL2_X (CARD_WIDTH/2) +#define CARD_COL3_X (7 * CARD_WIDTH/10) + +/* 5 diff rows for the two main columns */ +/* 1 and 5 are top and bottom, 3 is the middle */ +/* 2 & 4 are for the 10 & 9 */ +#define CARD_ROW1_Y (CARD_HEIGHT/5) +#define CARD_ROW2_Y (2 * CARD_HEIGHT/5) +#define CARD_ROW3_Y (CARD_HEIGHT/2) +#define CARD_ROW4_Y (CARD_HEIGHT - 2 * CARD_HEIGHT/5) +#define CARD_ROW5_Y (CARD_HEIGHT - CARD_HEIGHT/5) + +/* between 1 & 3, 3 & 5 */ +#define CARD_SEVEN_Y (7 * CARD_HEIGHT/20) +#define CARD_EIGHT_Y (CARD_HEIGHT - 7 * CARD_HEIGHT/20) + +/* between rows 1 & 2, 4 & 5 */ +#define CARD_TEN_Y1 (3 * CARD_HEIGHT/10) +#define CARD_TEN_Y2 (CARD_HEIGHT - 3 * CARD_HEIGHT/10) + +/* card positioning */ +#define CARD_INSET_X 10 +#define CARD_INSET_Y (CARD_HEIGHT/8) + +#define STACK_WIDTH (CARD_WIDTH + 10) +#define STACK_LOC_X(i) ((STACK_INDEX(i) * STACK_WIDTH) + CARD_INSET_X) +#define STACK_LOC_Y (CARD_HEIGHT + 3 * CARD_INSET_Y) + +#define PILE_WIDTH STACK_WIDTH +#define PILE_INSET_X (STACK_WIDTH + CARD_INSET_X + CARD_WIDTH) +#define PILE_LOC_X(i) ((PILE_INDEX(i) * PILE_WIDTH) + PILE_INSET_X) +#define PILE_LOC_Y (CARD_INSET_Y) + +#define DECK_X CARD_INSET_X +#define DECK_Y CARD_INSET_Y + +#define TABLE_X 10 +#define TABLE_Y 10 + +#define TABLE_WIDTH (STACK_WIDTH * NUM_STACKS + 2 * CARD_INSET_X) +#define TABLE_HEIGHT (STACK_LOC_Y + 2 * CARD_HEIGHT) +#define TABLE_BW 2 + +/* pip info */ +#define PIP_WIDTH 10 +#define PIP_HEIGHT 10 + +#else /* SMALL_CARDS */ + +#define CARD_HEIGHT 60 +#define CARD_WIDTH 40 + +/* card positioning */ +#define CARD_INSET_X 10 +#define CARD_INSET_Y (CARD_HEIGHT/8) + +#define STACK_WIDTH (CARD_WIDTH + 10) +#define STACK_LOC_X(i) ((STACK_INDEX(i) * STACK_WIDTH) + CARD_INSET_X) +#define STACK_LOC_Y (CARD_HEIGHT + 4 * CARD_INSET_Y) + +#define PILE_WIDTH STACK_WIDTH +#define PILE_INSET_X (STACK_WIDTH + CARD_INSET_X + CARD_WIDTH) +#define PILE_LOC_X(i) ((PILE_INDEX(i) * PILE_WIDTH) + PILE_INSET_X) +#define PILE_LOC_Y (CARD_INSET_Y) + +#define DECK_X CARD_INSET_X +#define DECK_Y CARD_INSET_Y + +#define TABLE_X 10 +#define TABLE_Y 10 + +#define TABLE_WIDTH (STACK_WIDTH * NUM_STACKS + 2 * CARD_INSET_X) +#define TABLE_HEIGHT (STACK_LOC_Y + 2 * CARD_HEIGHT) +#define TABLE_BW 2 + +#endif /* !SMALL_CARDS */ + +#ifdef KITLESS +#define MESSAGE_FONT "fixed" +#define MESSAGE_X 10 +#endif /* KITLESS */ Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.controls 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,117 @@ + III. T H E S P I D E R P R O G R A M + +The stack of cards in the upper left of the Spider window represents +the undealt cards (initially the full deck; later the "Hand"). The +eight outlines to the right mark where the eight suits will go as you +remove them from the tableau. The rest of the window is initially +empty until you start a game. + +To start a game, press the [New Game] button or click either the left +mouse button over the undealt cards. Playing the game is handled +entirely within the main window; the control panel provides a few +ancillary functions, described later. First, the main window: + +If you press the left mouse button anywhere within or below a column of +cards, it says you want to move as many cards as possible from that +column. If you then move the mouse to another column and let up on the +button, the program moves as many cards as it can from the first column +to the second. (If there is no such legal move, the program says so.) +Note that, unless the destination column is empty (i.e., a "space"), +there is at most one choice for the number of cards to move. + +If you instead use the second mouse button to select within a column, +it says you want to move the card you're pointing at plus any cards +covering it. If these cards cannot be moved as a unit (i.e., they are +not a sequence within a suit), the program says so. Again, if you move +the mouse to another column and release the button, the program moves +as the selected cards to the destination. The only time you need to +use this method (instead of using left) is if you're moving cards into +a space AND you wish to move fewer than the maximum permitted. + +If you click the left button over a single column, the program tries to +move the specified cards to "the obvious place" by trying the following +choices, in order: (1) remove them if they form a completed suit, else +(2) move them onto a card of the same suit, else (3) move them onto a +card of a different suit, else (4) move them into a space. If it can't +do any of these, it complains. + +You can also remove a completed suit by selecting all 13 cards (using +the left button), moving the mouse into the region of outlines above +the tableau, and releasing the button. + +To deal a new round, click any button on the facedown stack in the +upper left. The window footer shows you how many more deals remain. +Remember that all spaces must be filled before you can deal a new +round. + +If you click with any mouse button in the outline region where the +removed suits go, the program will tell you which suits (if any) have +enough cards face-up to form a complete sequence of thirteen. + +The game also has a control panel for performing some less frequent +operations. Many of these also have keyboard accelerators: + +[New Game], N or n: Throws away the current game and start a new one. + +[Backup: One Move], U or u: Undo the last move. If you undo a move +that revealed a previously unknown card, the program will chastise you. + +[Backup: Start Over], A or a: Play the same hand again. This will +restart the game with the initial deck, discarding what you've already +done. + +[Backup: Replay], R or r: Show all the moves made so far. This can take +a while, so any key or button press will abort it. + +[Expand], E or e: Expand column. This prompts the user to select a +column, which is then displayed in textual form. This is useful when +the window cannot be made larger and the columns are very large. + +[Locate], F or f: tries to find a specified card or cards among the +face-up cards in the tableau. First specify the name of the card to +look for by putting the rank and suit in the Name item. (The ranks are +A, 2, 3, ..., 10, J, Q, or K; you can also use T for 10. Suits are C, +D, H, and S. Lower-case is permitted.) If you omit the suit, [Locate] +will look for all cards of the specific rank that are not already +covered by a card of the next lower rank. (Such cards are called +"unused", "free", or "available".) For example, if you want to move a +9 out of some pile, you need either a space or a free 10 onto which to +move it, so you could use [Locate] to find all free 10s. + +[Score], S or s: Shows the current score. + +[File] is a stack; the default is [Save in File], which writes a file +containing the current state of the game, including the original deck and all +the moves made so far. The name of the file is taken from the Name item. +The file also includes a human-readable text representation of the current +tableau, similar to those that appear in the examples below. + +[File: Resume from File] reads a file created by the [File: Save in File] +command. The name of the file is taken from the Name item. It can also read +various partial files; in particular, if all but the first line of the file +has been deleted, it will restore the most recent position and, if possible, +the original deck (in case you want to Start Over), but it will not be able +to Back Up over the moves. + +[File: Resume from Selection] restores a position represented by the current +text selection. This is useful for loading positions from section IV, below. + +The window also understands these additional keyboard commands: + +D or d: Deals a new round. + +L or l: Loads a saved game from the current PRIMARY selection. If the +selection is a file name, it will be loaded from that file. Otherwise +it will attempt to load the selection as position. This is useful for +loading positions from the examples in section IV. + +W or w: Saves the current position in the filename contained in the +PRIMARY selection. + +?: Gives a move suggestion. This isn't necessarily the best move, but +may be helpful for beginners. + +#: Displays some game statatistics. + +Q: Quit. + Added: csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples =================================================================== --- csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples (rev 0) +++ csw/mgar/pkg/spider/trunk/legacy/spider1.1.1/doc.examples 2009-01-30 13:45:07 UTC (rev 2940) @@ -0,0 +1,980 @@ + IV. E X A M P L E S A N D C O N U N D R U M S + +In all the examples below, the tableau will be given here in the text as best +as can be done within the limits of the character set. For those who want to +see the positions more graphically via the program, each example also starts +with a line of apparent garbage that, if selected, can be read using the +[File: Resume from Selection] command to display the position. (The line is +quite long and may wrap around onto more than one line when you display it; +you have to select it all to restore the position.) + +Some of these examples are extremely complex. Novice players may wish to +step through just the first example, to get an idea of how to play, and save +the other examples for later. The final example is a deck that is especially +easy to win with (unless you're trying to win with all eight suits still in +the tableau), so you might try that one to boost your confidence if you're +having a lot of trouble getting anywhere. + +=========================================================================== + +J6m\ZM^3>gU82j]`LGMFl8o0WeDimHa;d^1QcHGKQdQAZ6l;oK/QmbbBhNhiMiWe=FOHD >Kg74/^ YoT[/6 HCcF/P \MNXm/Q EK25/k 9^0M/c KF0 at W/N \JHY/: 9GLR/L \W8hH/2. + +Here, to start you off, is an example of the beginning of a game. We'll step +through it and look at the rationale behind the recommended moves. Here's +the initial tableau: + + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- 10d As -- 3h 9s -- Jh Qh -- + 6d 4s 3c 7c + +The two primary rules of thumb to bear in mind throughout the game, and +particularly at the start, are (1) try to get a space, and (2) keep your +options open. The first rule should be fairly clear; the second leads to a +few common strategic decisions. First, given the choice, make a "natural" +move instead of an "unnatural" one, where a natural move is one that brings +together two cards of the same suit. This keeps our options open by allowing +us to move the newly combined cards as a unit should we turn up an +appropriate card. Second, given the choice, move a card (or pile) that has +more than one place it can go. This keeps our options open by allowing us to +move it to the other place if for some reason we want to dig into the pile +sitting in the first location. Third, work from the top down. Thus we move +a 9 onto a 10 before moving an 8 onto the 9 (unless the latter move is +natural while the former is not), since once we move an unnatural 8 onto the +9 we won't be able to move the 9. Now, with these ideas in mind, let's look +at the play of the above tableau. + +Our highest-ranking move is Jack onto Queen, and it's also our only natural +move, so it wins for sure. We move the Jh from column 8 to column 9, and in +this particular game we chance to turn up a 6s in column 8. Now we have no +natural moves. We could try for the space by moving the 6s to column 10, but +that move isn't going to go away, so instead we go from the top down by +moving the 10d from 2 to 9. This time we turn up a 4c. No hesitation about +this one! We move the 3c from 7 to 2. (Note that we still have the 4s onto +which we can, eventually, move the 3h, so we're not giving up our option of +digging into pile 5. But even if we didn't have the other 4, making the +natural move would be the better play.) In column 7 the card turned up is a +2c, which we promptly move to column 2, turning up a 10h. The tableau is +now: + + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- 4c -- -- -- -- 10h 6s -- -- + -- 3c As -- 3h 9s Qh -- + 6d 2c 4s Jh 7c + 10d + +Having once again run out of natural moves, we revert to working from the top +down, and move the 9s from 6 to 9. This also follows the rule of moving a +pile that has more than one place to go; if we find ourselves interested in +digging through column 9 we can move the 9s to column 7 instead. But for +now, since column 7 looks like a more likely place to dig, we'll bury column +9 a bit more. In column 6 we turn up a Kc. Since we have no place to move +the 10d from column 9, we are unable to get pile 9 moved onto the newly +revealed King. Them's the breaks. + +Continuing from the top down, we decide it's time to move a 6 onto the 7c. +Which 6 should we move? Neither is natural, but the one in column 8 looks +like a better one to move since we're only 3 cards away from getting a space +in that column. So we move the 6s from 8 to 10 and turn up a 6c. We're +getting low on things to do now; we can move the 3h or the As. Going by the +top-down rule, we move the 3h from 5 to 4, turning up a 2h, which we move +onto the 3h (now in column 4). This time we turn up a 9d: + + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- + -- -- -- -- 9d -- -- 6c -- -- + -- 4c -- -- Kc 10h -- -- + -- 3c As -- Qh -- + 6d 2c 4s Jh 7c + 3h 10d 6s + 2h 9s + +We could now move the 9d from 5 to 7, but instead we choose to move the As +from column 3, since there are two places to put it. Column 4 is already +unnatural, so we'll move it there. The card turned up is the other As. We +could move this Ace onto the other deuce, but this would lose us our option +of moving the first Ace there should we want to dig into column 4, so we'll +let the top-down rule take precedence and move the 9d. But let's not be +hasty! Instead of moving the 9d from 5 to 7, we'll move the 9s from 9 to 7 +and then move the 9d from 5 to 9; this puts the 9d with a 10d, which it can't +hurt to do. This time we turn up a Qh. Since we're so close to a space now, +we keep going by moving the Qh from 5 to 6, turning up a 10d: + + -- -- -- -- 10d -- -- -- -- -- + -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- 6c -- -- + -- 4c As -- Kc 10h -- -- + -- 3c -- Qh 9s Qh -- + 6d 2c 4s Jh 7c + 3h 10d 6s + 2h 9d + As + +Only one move left to try: we move the As from 3 to 2, turning up a 7h. Once +again, we shuffle things around a bit so keep as many piles natural as +possible; we move the 6s from 10 to 3 and the 6c from 8 to 10, turning up a +5d. We move the 5d from 8 to 1 (natural) and turn up a 3s: + + -- -- -- -- 10d -- -- 3s -- -- + -- -- -- -- -- -- -- -- + -- -- 7h -- -- -- -- -- + -- 4c 6s -- Kc 10h -- -- + -- 3c -- Qh 9s Qh -- + 6d 2c 4s Jh 7c + 5d As 3h 10d 6c + 2h 9d + As + +We have no more moves (aside from useless maneuvers such as moving the 9d +from 9 to 5), so it's now time to deal a new round. We never did get a +space, but we got two piles down to a single card each, so we are quite +likely to get a space soon after the new deal. This game is going somewhat +better than average and will very likely be won with proper play. If you +actually do get a space in the first round, you're doing particularly well. + +=========================================================================== + +1;]mcD96:2o6j1J7Fj>N/\j?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?P O DLV/7V[ N=^cfil 8_/R<3d9NC4I^SDY?F\bfKl16[ k;]>Hhn ak\k/Z\2O[<@FkLPWZ[;>CdINS 9A C L75/1;\aFJo. + +Now, for your first "Spider problem", here is a relatively simple position. +In the tableau shown below, what should you do? First off, what are your +options? On what should you base your choice? (After the tableau is the +"solution", so don't read further until you're ready!) + +10h (sp) -- Ad -- Qc -- 3s Qh -- + -- 7d -- Jh -- 2s -- + -- 6d Kh 10d -- -- + 8s 5d Qc 6c -- 7d + 7s Qs Jc 4c Qd 6d + 6s Js 10c 3d Jd 5d + 10d 9c 2d 10h 4d + 8c Js 3d + 7c 10s 2c + 6c 9s As + 5c 8h + 4c 7h + 3c 6h + 2c 5h + Ac 4s + Qd 3h + 10c 10s + 9c 8c + 8s 7h + 7s 6h + 6s 5h + 5s 4h + 4s 3h + 3s 2h + 2s Ah + +Solution: + +First, the options. There's no way to get through column 5 or 7 to turn up a +new card. (This should be pretty obvious; we'll save detailed analyses of +this sort of thing for cases where it's not as clear.) Nor does it do us any +good to dig into column 4 or 6. We don't have any complete suits showing, so +there's no way we can try to put one together. That leaves three fairly +simple options: (1) we could move the 8-6s from column 3 into the space, +turning up a new card, (2) we could dig through column 10 (moving the Ace +onto a deuce, the 2c into the space, 5-3d onto the 6s in column 3, 2c out of +the space and back onto the 5-3d, and finally the 7-6d into the space) and +turn up a new card there, or (3) we could fill in the space and deal a new +round. + +It's usually a good idea to turn up more cards when possible rather than bury +everything under a new deal, so we'll discount the third option. That leaves +us with the choice of which column to dig through, 3 or 10. The two are +equally close to becoming new spaces (three face-down cards each), so that's +not a consideration here. Let's consider what the face-down card might be +that will be revealed. If it's a Jack, 4, or King, we can get back the space +(which we'll have lost in the process of getting to the new card). If it's a +9 or 8, we MIGHT get the space back right away; it depends on whether we +moved the 8 (from column 3) or the 7 (from column 10) into the space. +Looking at the tableau, we see there are five 8's visible, but only three +9's. Thus it's more likely we'll turn up a 9, so we should go for column 3. +(Sorry for all this gory detail, but this is after all intended as an +introductory example.) + +So it looks like the best thing to do is move the 8-6s from column 3 into the +space. But wait! Suppose the card turned up isn't a Jack, 4, King, or 9, +and furthermore isn't an Ace or 5 (which we would be able to move elsewhere +immediately)? Is there anything we can do ahead of time to hedge our bets? +Yes! We can move the spade Ace from column 10 to column 5, then use the +space to swap the deuces in columns 6 and 10 (move one deuce into the space, +move the other deuce to the other column, and move the first deuce out of the +space). Now column 10 contains just the 7 through deuce of diamonds, and if +we chance to turn up an 8 in column 3 we can move the 7-2d onto it. Note +that we have to do this BEFORE we move the 8-6s into the space, since we need +the space to swap the deuces. In fact, in the game where this particular +tableau arose, the card turned up in column 3 was the diamond 8. The +preparations made in column 10 eventually produced not one but TWO spaces! +(Play it out using the program and see for yourself.) + +=========================================================================== + +?jT\Ne61gU/3`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?P LF^Q/lLQ7[]`8Qe^_ B\^CO9M at 4I] Q=Lh/C;aS2o D0/b6;[MEXM. + +Turn up another face-down card WITHOUT dealing more cards or "using up" the +space. (You may, of course, use the space, so long as you are sure you can +get it back no matter what the card turned up turns out to be.) Note that +there are enough clubs and hearts showing to form complete sets of those +suits. Here's the tableau (again, the solution follows the tableau): + + -- -- (sp) -- Qh -- -- -- -- -- + -- -- Ks Jh -- Jc -- -- -- + -- -- 2s 7h -- 8h -- -- Kh + -- -- As As 7h Kc -- Qc + Jc Kd 9h 9h Qc Kc Jh +10h 9d 8d 8s Jd 7s Js + 9c 8d 7c 5s 6s 3d + 8s 7d 6c 4h Qh 2c + 7d 3h 5c 3c Js Ad + 6h 2h 4h 2c 8c 8h + 5d Ah 3s Ac + 3d 2d 2s 10s + 2d 5c 9s + Ah 6d 8c + 9s 5h 7s +10c 6s + 5s + 4c + +Solution: + +First, we ascertain that we can't get a second space. The only place where +we might be able to do so is column 5, and to move the Q-Jh we need to find a +King that doesn't already have a Queen on it. (We'll call this a "free +King", for short.) There are three free Kings, but the one in column 9 is +useless since we need another free King to get to it, and those in columns 2 +and 4 are inaccessible since there are no free 3's. Hence, whatever we do, +we have to do it using only the one space. + +Next, can we remove a complete set of clubs or hearts? Well, hearts are out, +because the only Kh showing is in column 10, and the only 10h is in column 1, +and getting to each of them requires that we move a 3 onto a free 4. Since +there's only one free 4 (in column 8), we lose. How about clubs? They don't +work out, either, but the proof is trickier. The only 9c is in column 1 and +getting to it will require our sole free 4. Thus we can't use the Qc in +column 10, and must instead use the Qc from column 8. To reach it we need a +free 6; we have exactly one free 6, namely in column 9. We CAN get to this +6, without losing the space, by a fairly convoluted sequence of moves. You +may want to figure out how it can be done before reading on. . . . Ready? +Okay, proceed as follows: 7h from 5 to 10, 10c from 1 to 5, 8c from 9 to 1, +Js from 9 to 3 (into the space), 10c from 5 to 3, Jh from 5 to 9, 10c from 3 +to 9, Js from 3 to 5, 10c from 9 to 5, Q-Jh from 9 to 3, 7-6s from 9 to 4, +and finally Q-Jh from 3 to 9, getting the space back. + +Having determined that we can, if desired, obtain a free 6, let's get back to +the question of the clubs. The only 7c is in column 6, and getting to it +requires a free 6. But we need the free 6 to get to the Qc as well. So we +again lose. We are thus reduced to uncovering a card without removing any +suits and without getting any more spaces. Which column is it to be? It +obviously can't be a column containing a King, since (given that we can't +remove any completed suits) the only place a King can go is into the space. +And it can't be column 1 or 7, since that would require a free Queen, and +there isn't any. So it must be column 6. We can get through that column by +first digging through to the free 6 as described earlier, and then playing: +5h from 6 to 4, 6d from 6 to 10, 5c from 6 to 10, 3-2s from 6 to 3, 4h from 6 +to 4, 3-2s from 3 to 4, 7-5c from 6 to 1. The tableau now looks like this: + + -- -- (sp) -- Qh -- -- -- -- -- + -- -- Ks Js -- Jc -- -- -- + -- -- 2s 10c -- 8h -- -- Kh + -- -- As As 7h Kc -- Qc + Jc Kd 9h 9h Qc Kc Jh +10h 9d 8d 8s Jd Qh Js + 9c 8d 7s 5s Jh 3d + 8s 7d 6s 4h 2c + 7d 3h 5h 3c Ad + 6h 2h 4h 2c 8h + 5d Ah 3s Ac 7h + 3d 2d 2s 10s 6d + 2d 9s 5c + Ah 8c + 9s 7s + 8c 6s + 7c 5s + 6c 4c + 5c + +Once again, it's time to make contingency plans. If we just move the 9h-8s +onto the 10c and the As onto the 2s, we could be in trouble if we turn up a +King. The lone space won't be sufficient for us to be able to move the stuff +out of column 5 onto the King. So we undo some of what we did in the course +of getting the free 6: Jh from 9 to 3, 10c from 5 to 3, Js from 5 to 9, 10c +from 3 to 9, Jh from 3 to 5. While we're at it, it can't hurt to move the 4c +from 8 to 1, and in a moment we'll match the 8s with a 9s, too. We now +proceed: 8s from 6 to 3, 9h from 6 to 9, 8-5c from 1 to 9, 8s from 3 to 1, +and finally As from 6 to 4. (Once again, preparation pays off; in the game +where this took place, the card turned up was indeed a King.) + +=========================================================================== + +?jT\Ne61gU/3`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?Pe:O`5J_0EZo at Uj?P LF^Q/lLR4Y^cDjm3 XCkS/QENCCAV`O 3 ]:na6K<1F[LAV =Dil1W9>CgJN b P 4:[/eQW8\afKl16 @J/8\QA7o279 C. + +Again, complete sets of clubs and hearts are available. Without dealing any +more cards or turning up any face-down cards, remove a set of clubs AND a set +of hearts (not necessarily in that order). Can you remove them in the other +order? + + -- -- 8c Ks Kh 5c Kc -- (sp) -- + -- -- Qh Qh -- -- + -- -- Jc Jh -- Kh + -- -- 10c 10c Kc Qc + Jc Kd 9c 9h Qc Jh +10h 9d 8c 8d Jd Js + 9s 8d 7c 7d 10h 3d + 8s 7d 6c 6d 9h 2c + 7s 3h 5c 5d 8h Ad + 6s 2h 4c 4h 7h 8h + 5s Ah 3c 3d 6h 7h + 4s 2d 2c 2d 5h + 3c Ah Ac 4h + 2s 3h + As + +Solution: + +The clubs look like the better bet, since the Jack through Ace are already +assembled and there's a King-Queen in column 8. Let's see what can be done. +Since there are no free 9's or 6's, we have to remove the first completed +suit without the benefit of any additional spaces. Since we are also short +on free 4's, this means we can't use the Qc in column 10. That seems okay; +the one in column 8 looks easier to get to anyhow. All we have to do is move @@ 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 30 14:56:06 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 13:56:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[2941] csw/mgar/pkg Message-ID: Revision: 2941 http://gar.svn.sourceforge.net/gar/?rev=2941&view=rev Author: dmichelsen Date: 2009-01-30 13:56:06 +0000 (Fri, 30 Jan 2009) Log Message: ----------- par: Initial commit of legacy build description Added Paths: ----------- csw/mgar/pkg/par/ csw/mgar/pkg/par/branches/ csw/mgar/pkg/par/tags/ csw/mgar/pkg/par/trunk/ csw/mgar/pkg/par/trunk/Makefile csw/mgar/pkg/par/trunk/files/ csw/mgar/pkg/par/trunk/files/CSWpackage.gspec csw/mgar/pkg/par/trunk/legacy/ csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES csw/mgar/pkg/par/trunk/legacy/README csw/mgar/pkg/par/trunk/legacy/copyright csw/mgar/pkg/par/trunk/legacy/depend csw/mgar/pkg/par/trunk/legacy/pkginfo csw/mgar/pkg/par/trunk/legacy/prototype csw/mgar/pkg/par/trunk/legacy/src/ csw/mgar/pkg/par/trunk/legacy/src/Makefile csw/mgar/pkg/par/trunk/legacy/src/par-1.52.tar.gz Property changes on: csw/mgar/pkg/par/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/par/trunk/Makefile =================================================================== --- csw/mgar/pkg/par/trunk/Makefile (rev 0) +++ csw/mgar/pkg/par/trunk/Makefile 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,23 @@ +GARNAME = package +GARVERSION = 1.0 +CATEGORIES = category + +DESCRIPTION = Brief description +define BLURB + Long description +endef + +MASTER_SITES = +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWpackage,) + +# 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/par/trunk/files/CSWpackage.gspec =================================================================== --- csw/mgar/pkg/par/trunk/files/CSWpackage.gspec (rev 0) +++ csw/mgar/pkg/par/trunk/files/CSWpackage.gspec 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,4 @@ +%var bitname package +%var pkgname CSWpackage +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC}/LICENSE Added: csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES =================================================================== --- csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/BUILD.NOTES 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,31 @@ +############################################################################### +# FILE: BUILD.NOTES +# +# DESCRIPTION: Build notes for the PAR package. These are notes concerning +# the compiling and testing of this package. +# +# Use the detailed instructions in the README file for package +# creation. +# +# PACKAGE: CSWpar +# +# CUR VER: Par Version 1.52 +# +# REVISION: 10-25-04 +############################################################################### + +------------------------------------------------------------------------------- +HISTORY: +------------------------------------------------------------------------------- +Date: Version: Notes: +------------------------------------------------------------------------------- +10-25-04 1.52 Initial package build +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +SPARC & INTEL: +------------------------------------------------------------------------------- + +make: + + * Numerous non-fatal warning messages are issues [too many to list] Added: csw/mgar/pkg/par/trunk/legacy/README =================================================================== --- csw/mgar/pkg/par/trunk/legacy/README (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/README 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,177 @@ +############################################################################### +# FILE: README +# +# DESCRIPTION: Instructions for creating the PAR package. Refer to the +# BUILD.NOTES file for specific information about the actual +# build and testing of the current version. +# +# PACKAGE: CSWpar +# +# REVISION: 09-09-05 +# +# NOTES: * +############################################################################### + +------------------------------------------------------------------------------- +01: Make sure you are on the blastwave machine +------------------------------------------------------------------------------- + + hostname + +------------------------------------------------------------------------------- +02: Download and extract the par source +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par/src + vi Makefile [set PVER[S] to current par version] + make get + make extract + +------------------------------------------------------------------------------- +03: Switch to the correct build machine +------------------------------------------------------------------------------- + + SPARC: + or + INTEL: + +------------------------------------------------------------------------------- +04: Update the pkginfo file VERSION=[,REV=YYYY.MM.DD] +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par + vi pkginfo + [edit the version info: must include REV= portion if applicable] + [edit the ARCH line for either a 'sparc' or 'i386' build] + +------------------------------------------------------------------------------- +05: Unpack the source code [**** ONLY NEEDS TO BE DONE ONCE PER SESSION ****] +------------------------------------------------------------------------------- + + cd src + make unpack [unpack unless it was just extracted] + +------------------------------------------------------------------------------- +06: Modify the install target in Makefile, using the contents in the + .parMake.mods file: [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + cd par*[0-9] + cp protoMakefile Makefile + vi ../.parMake.mods Makefile + +------------------------------------------------------------------------------- +07: Update copyright file [**** ONLY NEEDS TO BE DONE ONCE PER RELEASE ****] +------------------------------------------------------------------------------- + + vi par.doc ${HOME}/pkgs/par/copyright + [Extract the File List and Rights and Responsibilities sections] + +------------------------------------------------------------------------------- +08: Set the proper build environment +------------------------------------------------------------------------------- + + SPARC: export CC='cc -xarch=v8 -xstrconst -xildoff' + or + INTEL: export CC='cc -xtarget=pentium -xstrconst -xildoff' + +------------------------------------------------------------------------------- +09: Compile the software +------------------------------------------------------------------------------- + + make clean + make + +------------------------------------------------------------------------------- +10: Install executable in a staging directory +------------------------------------------------------------------------------- + + rm -rf cswstage + stagepkg INSTALL_ROOT=$PWD/cswstage install-csw + +------------------------------------------------------------------------------- +11: Update the prototype file (2nd build can use existing prototype file) +------------------------------------------------------------------------------- + + cd cswstage + grep '^[df]' prototype | grep -v 'root bin' + [check 'f'iles & 'd'irs have owner/group 'root bin'] + vi prototype + [if necessary ...] + [change all owners/groups to 'root bin'] + [change file permissions from 0444 to 0644] + [change file permissions from 0555 to 0755] + [add following 'i' line as third line in file] + i depend + +------------------------------------------------------------------------------- +12: Check changes in prototype from previous release and update file +------------------------------------------------------------------------------- + + diff ${HOME}/pkgs/par/prototype prototype | less -+e + [if any odd differences, investigate and fix] + + cp prototype ${HOME}/pkgs/par + +------------------------------------------------------------------------------- +13: Create the package par-*-SunOS5.8-{sparc,386i}-CSW.pkg.gz +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par + createpkg -b ${HOME}/pkgs/par/src/par*[0-9]/cswstage/opt/csw + + [The package name should follow this format:] + + -[,REV=YYYY.MM.DD]---CSW.pkg.gz + +------------------------------------------------------------------------------- +14: Examine list of libraries used to see if any new CSW dependencies exist +------------------------------------------------------------------------------- + + If a new library is found, check package dependency: + + pkgchk -l -p /opt/csw/lib/lib<...> + + Add entry to the depend file: + + P CSW + + Now repeat from step 13 and recreate the package + +------------------------------------------------------------------------------- +15: Rebuild again on other build platform +------------------------------------------------------------------------------- + + Go to step 03 and repeat for other architecture + +------------------------------------------------------------------------------- +16: Clean up +------------------------------------------------------------------------------- + + cd ${HOME}/pkgs/par/src/par*[0-9] + make clean ; rm -rf cswstage + cd ${HOME}/pkgs/par/src + make pack # if req'd, tar up and gzip source + make clean + +------------------------------------------------------------------------------- +17: Copy the new package to the installation area +------------------------------------------------------------------------------- + + cd pkgs/par + cp par-*.pkg.gz /export/medusa/newpkgs + +------------------------------------------------------------------------------- +18: Copy the source code tarball to the holding area +------------------------------------------------------------------------------- + + cd src + cp par-*.gz /export/medusa/src + +------------------------------------------------------------------------------- +19: Notify package administrator +------------------------------------------------------------------------------- + + * Email phil at bolthole.com (Philip Brown) describing the update + +----------------------------------------------------------------------------- Added: csw/mgar/pkg/par/trunk/legacy/copyright =================================================================== --- csw/mgar/pkg/par/trunk/legacy/copyright (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/copyright 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,50 @@ +File List + + The Par 1.52 package is always distributed with at least the + following files: + + buffer.c + buffer.h + charset.c + charset.h + errmsg.c + errmsg.h + par.1 + par.c + par.doc + protoMakefile + reformat.c + reformat.h + releasenotes + + Each file is a text file which identifies itself on the second line, + and identifies the version of Par to which it belongs on the third + line, so you can always tell which file is which, even if the files + have been renamed. + + The file "par.1" is a man page for the filter par (not to be + confused with the package Par, which contains the source code for + par). "par.1" is based on this doc file, and conveys much (not + all) of the same information, but "par.doc" is the definitive + documentation for both par and Par. + + +Rights and Responsibilities + + The files listed in the Files List section above are each Copyright + 2001 by Adam M. Costello (henceforth "I", "me"). + + I grant everyone ("you") permission to do whatever you like with + these files, provided that if you modify them you take reasonable + steps to avoid confusing or misleading people about who wrote the + modified files (both you and I) or what version they are. All + official versions of Par will have version numbers consisting of + only digits and periods. + + I encourage you to send me copies of your modifications in case I + wish to incorporate them into future versions of Par. See the Bugs + section for my address. + + Though I have tried to make sure that Par is free of bugs, I make no + guarantees about its soundness. Therefore, I am not responsible for + any damage resulting from the use of these files. Added: csw/mgar/pkg/par/trunk/legacy/depend =================================================================== --- csw/mgar/pkg/par/trunk/legacy/depend (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/depend 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1 @@ +P CSWcommon Added: csw/mgar/pkg/par/trunk/legacy/pkginfo =================================================================== --- csw/mgar/pkg/par/trunk/legacy/pkginfo (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/pkginfo 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,9 @@ +PKG=CSWpar +NAME=par - Paragraph Reformatter +VERSION=1.52 +ARCH=sparc +CATEGORY=application +CSW_CATEGORY="text, user" +VENDOR=http://www.nicemice.net/par/ - packaged for CSW by C. Jeffery Small +HOTLINE=http://www.blastwave.org/bugtrack/ +EMAIL=jeff at blastwave.org Added: csw/mgar/pkg/par/trunk/legacy/prototype =================================================================== --- csw/mgar/pkg/par/trunk/legacy/prototype (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/prototype 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,11 @@ +i pkginfo +i copyright +i depend +d none share 0755 root bin +d none share/man 0755 root bin +d none share/man/man1 0755 root bin +f none share/man/man1/par.1 0644 root bin +d none share/par 0755 root bin +f none share/par/par.txt 0644 root bin +d none bin 0755 root bin +f none bin/par 0755 root bin Added: csw/mgar/pkg/par/trunk/legacy/src/Makefile =================================================================== --- csw/mgar/pkg/par/trunk/legacy/src/Makefile (rev 0) +++ csw/mgar/pkg/par/trunk/legacy/src/Makefile 2009-01-30 13:56:06 UTC (rev 2941) @@ -0,0 +1,78 @@ +############################################################################### +# +# FILE: Makefile +# +# DESCRIPTION: Control file for the PAR src directory. +# +# PACKAGE: CSWpar +# +# REVISION: 10-28-04 +# +# NOTES: * Set the PVER variable to the current par version number. +# +# * INSTALL_ROOT controls the location of the installation. +# +# * Source is located at: http://www.nicemice.net/par/ +# +# REQMTS: * The CJSA custom install(1M) utility in ${HOME}/bin +# * The CJSA custom unpak(1M) utility in ${HOME}/bin +# +############################################################################### + +PVER = 152 +PVERS = 1.52 + +PSOURCE = Par$(PVER).tar.gz + +PDIR = par.$(PVERS) + +PTAR = par-$(PVERS).tar + +PARCH = $(PTAR).gz + +help: + @echo "---------------------------------------------------------------" + @echo "Par Ver: $(PVERS)" + @echo "---------------------------------------------------------------" + @echo "make get download par source code" + @echo "" + @echo "make extract extract source code from downloaded archive" + @echo "" + @echo "" + @echo "make pack tar up and gzip the source code directory" + @echo "" + @echo "make unpack extract source code from gzipped tarball" + @echo "" + @echo "" + @echo "make clean remove the source code directory" + @echo "---------------------------------------------------------------" + + +get: + wget http://www.nicemice.net/par/$(PSOURCE) + + +extract: $(PSOURCE) + unpak $(PSOURCE) + mv Par*[0-9] $(PDIR) + + +pack pak tar: $(PDIR) + @if [ -f $(PTAR) ] ; then \ + echo "Cannot pack: $(PTAR) exists." ; \ + elif [ -f $(PARCH) ] ; then \ + echo "Cannot pack: $(PARCH) exists." ; \ + else \ + tar cvf $(PTAR) $(PDIR) ; \ + gzip $(PTAR) ; \ + fi + +unpack unpak: $(PARCH) + unpak $(PARCH) + +clean: + @if [ ! -f $(PARCH) ] ; then \ + echo "You must first archive the source with: make pack" ; \ + else \ + rm -rf $(PSOURCE) $(PDIR) ; \ + fi Added: csw/mgar/pkg/par/trunk/legacy/src/par-1.52.tar.gz =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/par/trunk/legacy/src/par-1.52.tar.gz ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jan 30 15:20:10 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 30 Jan 2009 14:20:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[2942] csw/mgar/pkg Message-ID: Revision: 2942 http://gar.svn.sourceforge.net/gar/?rev=2942&view=rev Author: bdwalton Date: 2009-01-30 14:20:10 +0000 (Fri, 30 Jan 2009) Log Message: ----------- initial csup gar description Added Paths: ----------- csw/mgar/pkg/csup/ csw/mgar/pkg/csup/branches/ csw/mgar/pkg/csup/tags/ csw/mgar/pkg/csup/trunk/ csw/mgar/pkg/csup/trunk/Makefile csw/mgar/pkg/csup/trunk/files/ csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec Property changes on: csw/mgar/pkg/csup/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/csup/trunk/Makefile =================================================================== --- csw/mgar/pkg/csup/trunk/Makefile (rev 0) +++ csw/mgar/pkg/csup/trunk/Makefile 2009-01-30 14:20:10 UTC (rev 2942) @@ -0,0 +1,20 @@ +GARNAME = csup +GARVERSION = snap +PATCHLEVEL = 20060318 +CATEGORIES = apps + +DESCRIPTION = A replacement for CVSup +define BLURB +A solid replacement for CVSup for checkout-only functionality. +endef + +MASTER_SITES = http://www.mu.org/~mux/ +DISTFILES = $(GARNAME)-$(GARVERSION)-$(PATCHLEVEL).tgz +DISTFILES += $(call admfiles,CSWcsup,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec =================================================================== --- csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec (rev 0) +++ csw/mgar/pkg/csup/trunk/files/CSWcsup.gspec 2009-01-30 14:20:10 UTC (rev 2942) @@ -0,0 +1,3 @@ +%var bitname csup +%var pkgname CSWcsup +%copyright url file://%{WORKSRC}/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 30 17:38:55 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 30 Jan 2009 16:38:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[2943] csw/mgar/pkg Message-ID: Revision: 2943 http://gar.svn.sourceforge.net/gar/?rev=2943&view=rev Author: bonivart Date: 2009-01-30 16:38:55 +0000 (Fri, 30 Jan 2009) Log Message: ----------- phpMyAdmin: update to 3.1.2 Added Paths: ----------- csw/mgar/pkg/phpMyAdmin/ csw/mgar/pkg/phpMyAdmin/branches/ csw/mgar/pkg/phpMyAdmin/tags/ csw/mgar/pkg/phpMyAdmin/trunk/ csw/mgar/pkg/phpMyAdmin/trunk/Makefile csw/mgar/pkg/phpMyAdmin/trunk/checksums csw/mgar/pkg/phpMyAdmin/trunk/files/ csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec Property changes on: csw/mgar/pkg/phpMyAdmin/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/phpMyAdmin/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/Makefile (rev 0) +++ csw/mgar/pkg/phpMyAdmin/trunk/Makefile 2009-01-30 16:38:55 UTC (rev 2943) @@ -0,0 +1,46 @@ +GARNAME = phpMyAdmin +GARVERSION = 3.1.2 +CATEGORIES = apps + +DESCRIPTION = Effective MySQL Management +define BLURB + phpMyAdmin is a free software tool written in PHP intended to handle the + administration of MySQL over the World Wide Web. phpMyAdmin supports a wide range of + operations with MySQL. The most frequently used operations are supported by the user + interface (managing databases, tables, fields, relations, indexes, users, permissions, + etc), while you still have the ability to directly execute any SQL statement. +endef + +MASTER_SITES = http://garr.dl.sourceforge.net/sourceforge/phpmyadmin/ +DISTFILES = $(GARNAME)-$(GARVERSION)-all-languages.tar.bz2 +DISTFILES += $(call admfiles,CSWphpmyadmin,) + +#SPKG_DESC_CSWap2modphp5 = PHP 5 - Apache 2.2.x Module +#SPKG_DESC_CSWmysql5 = MySQL 5 database management system - server files +#SPKG_DESC_CSWphp5gd = PHP 5 - GD Extension +#SPKG_DESC_CSWphp5mcrypt = PHP 5 - libmcrypt Extension +#SPKG_DESC_CSWphp5mysqli = PHP 5 - MySQLi Extension +#SPKG_DESC_CSWphp5session = PHP 5 - Session Extension + +REQUIRED_PKGS = CSWapache2 CSWap2modphp5 CSWmysql5 CSWphp5 CSWphp5gd CSWphp5mcrypt CSWphp5mysqli CSWphp5session + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*)-all-languages.tar.bz2 + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +SPKG_SOURCEURL = http://www.phpmyadmin.net + +include gar/category.mk + +install-custom: + @echo " ==> Installing $(GARNAME) (custom)" + @rm -rf $(DESTDIR)$(prefix)/apache2/share/htdocs/phpmyadmin + @ginstall -d $(DESTDIR)$(prefix)/apache2/share/htdocs + @cp -R $(WORKSRC)-all-languages $(DESTDIR)$(prefix)/apache2/share/htdocs/phpmyadmin + @ginstall -d $(DESTDIR)$(docdir)/phpmyadmin + @cp $(WORKSRC)-all-languages/LICENSE $(DESTDIR)$(docdir)/phpmyadmin + @$(MAKECOOKIE) Added: csw/mgar/pkg/phpMyAdmin/trunk/checksums =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/checksums (rev 0) +++ csw/mgar/pkg/phpMyAdmin/trunk/checksums 2009-01-30 16:38:55 UTC (rev 2943) @@ -0,0 +1,2 @@ +cb6a6db5d684f94e71f864071b5b0d7a download/phpMyAdmin-3.1.2-all-languages.tar.bz2 +25157d38d820705d47f2056d67cc0c2e download/CSWphpmyadmin.gspec Added: csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec (rev 0) +++ csw/mgar/pkg/phpMyAdmin/trunk/files/CSWphpmyadmin.gspec 2009-01-30 16:38:55 UTC (rev 2943) @@ -0,0 +1,7 @@ +%var bitname phpmyadmin +%var pkgname CSWphpmyadmin +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright + +Please see /opt/csw/share/doc/phpmyadmin/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 Fri Jan 30 17:43:29 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 30 Jan 2009 16:43:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[2944] csw/mgar/pkg/phpMyAdmin/trunk/Makefile Message-ID: Revision: 2944 http://gar.svn.sourceforge.net/gar/?rev=2944&view=rev Author: bonivart Date: 2009-01-30 16:43:29 +0000 (Fri, 30 Jan 2009) Log Message: ----------- phpMyAdmin: cleaned up Makefile Modified Paths: -------------- csw/mgar/pkg/phpMyAdmin/trunk/Makefile Modified: csw/mgar/pkg/phpMyAdmin/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpMyAdmin/trunk/Makefile 2009-01-30 16:38:55 UTC (rev 2943) +++ csw/mgar/pkg/phpMyAdmin/trunk/Makefile 2009-01-30 16:43:29 UTC (rev 2944) @@ -15,13 +15,6 @@ DISTFILES = $(GARNAME)-$(GARVERSION)-all-languages.tar.bz2 DISTFILES += $(call admfiles,CSWphpmyadmin,) -#SPKG_DESC_CSWap2modphp5 = PHP 5 - Apache 2.2.x Module -#SPKG_DESC_CSWmysql5 = MySQL 5 database management system - server files -#SPKG_DESC_CSWphp5gd = PHP 5 - GD Extension -#SPKG_DESC_CSWphp5mcrypt = PHP 5 - libmcrypt Extension -#SPKG_DESC_CSWphp5mysqli = PHP 5 - MySQLi Extension -#SPKG_DESC_CSWphp5session = PHP 5 - Session Extension - REQUIRED_PKGS = CSWapache2 CSWap2modphp5 CSWmysql5 CSWphp5 CSWphp5gd CSWphp5mcrypt CSWphp5mysqli CSWphp5session # We define upstream file regex so we can be notifed of new upstream software release 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 30 18:55:28 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 17:55:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[2945] csw/mgar/pkg/pidgin/trunk Message-ID: Revision: 2945 http://gar.svn.sourceforge.net/gar/?rev=2945&view=rev Author: harpchad Date: 2009-01-30 17:55:28 +0000 (Fri, 30 Jan 2009) Log Message: ----------- Updates related to gar v2 Modified Paths: -------------- csw/mgar/pkg/pidgin/trunk/Makefile csw/mgar/pkg/pidgin/trunk/checksums csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec Removed Paths: ------------- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype Modified: csw/mgar/pkg/pidgin/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/Makefile 2009-01-30 17:55:28 UTC (rev 2945) @@ -10,9 +10,9 @@ MASTER_SITES = $(SF_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += x11.pc -DISTFILES += $(call admfiles,CSWpidgin,prototype depend) +DISTFILES += $(call admfiles,CSWpidgin,) -CONFIGURE_ARGS = $(DIRPATHS) +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' @@ -21,21 +21,29 @@ CONFIGURE_ARGS += '--disable-avahi' CONFIGURE_ARGS += '--disable-nm' -CONFIGURE_ENV += DOT="/opt/csw/graphviz2/bin/dot" - +DOT=/opt/csw/graphviz2/bin/dot +XGETTEXT=/opt/csw/bin/gxgettext +MSGFMT=/opt/csw/bin/gmsgfmt +MSGMERGE=/opt/csw/bin/gmsgmerge +SED=/opt/csw/bin/gsed +EXTRA_CONFIGURE_EXPORTS = DOT XGETTEXT MSGFMT MSGMERGE SED 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) +EXTRA_PKGCONFIG_PATH = $(CURDIR)/$(WORKDIR) -#No tests -TEST_SCRIPTS = +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 = +EXTRA_MERGE_EXCLUDE_FILES = .*/perllocal.pod +REQUIRED_PKGS_CSWpidgin = CSWaspell CSWdbusglib CSWgcrypt CSWggettext CSWglib2 +REQUIRED_PKGS_CSWpidgin += CSWgnutls CSWgstreamer CSWgtk2 CSWgtkspell CSWlibatk +REQUIRED_PKGS_CSWpidgin += CSWlibcairo CSWlibdbus CSWlibxml2 CSWmeanwhile CSWncurses +REQUIRED_PKGS_CSWpidgin += CSWpango CSWperl CSWpython CSWsilctoolkit CSWstartupnotif +REQUIRED_PKGS_CSWpidgin += CSWtcl CSWtk CSWiconv CSWsunmath CSWzlib + + include gar/category.mk Modified: csw/mgar/pkg/pidgin/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin/trunk/checksums 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/checksums 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,5 +1,3 @@ eb28c552647ee583f3d817db690164c5 download/pidgin-2.5.4.tar.gz 6dd3c13c4b6f610409fd267692dbe716 download/x11.pc -75d0097a23fe4aa80f6d1a0a77312be5 download/CSWpidgin.depend -e3bacfec1eab2b829d4255afa4f69bee download/CSWpidgin.gspec -dd1cc45fce7e85a4326c5bddd306840c download/CSWpidgin.prototype +e33492bae1fd2f7773adad463f19fa0f download/CSWpidgin.gspec Deleted: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.depend 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,31 +0,0 @@ -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 -P CSWgpgerr Modified: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.gspec 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,4 +1,4 @@ %var bitname pidgin %var pkgname CSWpidgin %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype =================================================================== --- csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-30 16:43:29 UTC (rev 2944) +++ csw/mgar/pkg/pidgin/trunk/files/CSWpidgin.prototype 2009-01-30 17:55:28 UTC (rev 2945) @@ -1,1061 +0,0 @@ -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/finch.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/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/gntft.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/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/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/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/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/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/ntlm.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/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/request.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/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 -d none /opt/csw/include/pidgin 0755 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/gtkconv.h 0644 root bin -f none /opt/csw/include/pidgin/gtkconvwin.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/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/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/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/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/gtkrequest.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/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/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/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/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/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/default 0755 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/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/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/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/disappointed.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/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/fingers-crossed.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/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/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/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/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/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/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/qq.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/shame.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/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/silc.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/yahoo.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/16/zephyr.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/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/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/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 -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/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/yahoo.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/protocols/48/zephyr.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/status 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/status/11 0755 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/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 -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 -d none /opt/csw/share/pixmaps/pidgin/status/32 0755 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/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/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/invisible.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/log-out.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/32/person.png 0644 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/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/rtl/log-out.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/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/busy.png 0644 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/extended-away.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/48/invisible.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/log-out.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/person.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/log-in.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/status/48/rtl/log-out.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/toolbar 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/toolbar/16 0755 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/change-fgcolor.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/font-face.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/font-size-up.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/insert-link.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/message-new.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/send-file.png 0644 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/unblock.png 0644 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/tray 0755 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/16 0755 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/away_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/connecting_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/invisible_4bit.ico 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/message_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/tray-away.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-connecting.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/tray-message.png 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-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/16/tray-online.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-away.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-connecting.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-invisible.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-new-im.png 0644 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-online.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-away.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-connecting.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-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-offline.png 0644 root bin -f none /opt/csw/share/pixmaps/pidgin/tray/32/tray-online.png 0644 root bin -d none /opt/csw/share/pixmaps/pidgin/tray/48 0755 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-busy.png 0644 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-extended-away.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-new-im.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-online.png 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/CAcert_Class3.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/Equifax_Secure_CA.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/GTE_CyberTrust_Global_Root.pem 0644 root bin -f none /opt/csw/share/purple/ca-certs/Microsoft_Internet_Authority.pem 0644 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/StartCom_Free_SSL_CA.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/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 -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/alert.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/receive.wav 0644 root bin -f none /opt/csw/share/sounds/purple/send.wav 0644 root bin 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 30 22:09:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 30 Jan 2009 21:09:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[2946] csw/mgar/pkg/texinfo/trunk/Makefile Message-ID: Revision: 2946 http://gar.svn.sourceforge.net/gar/?rev=2946&view=rev Author: dmichelsen Date: 2009-01-30 21:09:32 +0000 (Fri, 30 Jan 2009) Log Message: ----------- texinfo: Fix REVSTAMP version Modified Paths: -------------- csw/mgar/pkg/texinfo/trunk/Makefile Modified: csw/mgar/pkg/texinfo/trunk/Makefile =================================================================== --- csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-30 17:55:28 UTC (rev 2945) +++ csw/mgar/pkg/texinfo/trunk/Makefile 2009-01-30 21:09:32 UTC (rev 2946) @@ -1,5 +1,7 @@ GARNAME = texinfo -GARVERSION = 4.13a +RELEASE = a +GARVERSION = 4.13 +DISTVERSION = $(GARVERSION)$(RELEASE) CATEGORIES = utils DESCRIPTION = The GNU Documentation System @@ -8,9 +10,8 @@ on-line information (info, HTML, XML, Docbook) and printed output (DVI, PDF). endef -DISTNAME = $(GARNAME)-4.13 MASTER_SITES = $(GNU_MIRROR) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz DISTFILES += $(call admfiles,CSWtexinfo,) # We define upstream file regex so we can be notifed of new upstream software release @@ -25,3 +26,5 @@ EXTRA_MERGE_EXCLUDE_FILES = $(libdir)/charset.alias include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) 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 30 22:25:04 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 21:25:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[2947] csw/mgar/pkg/glib2/trunk Message-ID: Revision: 2947 http://gar.svn.sourceforge.net/gar/?rev=2947&view=rev Author: harpchad Date: 2009-01-30 21:25:04 +0000 (Fri, 30 Jan 2009) Log Message: ----------- - update to glib 2.18.4 - add 64-bit support - build with gar v2 Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile csw/mgar/pkg/glib2/trunk/checksums Added Paths: ----------- csw/mgar/pkg/glib2/trunk/files/ csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch Property Changed: ---------------- csw/mgar/pkg/glib2/trunk/ Property changes on: csw/mgar/pkg/glib2/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/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:09:32 UTC (rev 2946) +++ csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:25:04 UTC (rev 2947) @@ -1,5 +1,5 @@ -GARNAME = glib2 -GARVERSION = 2.4.0 +GARNAME = glib +GARVERSION = 2.18.4 CATEGORIES = lib DESCRIPTION = The GLib library of C routines. @@ -9,22 +9,31 @@ has been split off as of the developers' version 1.1.0. endef -MASTER_SITES = ftp://ftp.gtk.org/pub/gtk/v2.4/ +MASTER_SITES = $(GNOME_MIRROR) -DISTFILES = glib-$(GARVERSION).tar.bz2 -WORKSRC = $(WORKDIR)/glib-$(GARVERSION) +DISTFILES = $(call admfiles,CSWglib2,) +DISTFILES += $(call admfiles,CSWglib2devel,) +DISTFILES += $(GARNAME)-$(GARVERSION).tar.bz2 +#See gnome bug 569889 +PATCHFILES = gtkdoc-rebase.patch + CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --enable-debug=yes +CONFIGURE_ARGS += --with-libiconv=gnu +CONFIGURE_ARGS += --enable-static +CONFIGURE_ARGS += --disable-gtk-doc -TEST_TARGET = check +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -# Bug #136867 (child-watch) -TEST_SCRIPTS = +BUILD64 = 1 +NO_ISAEXEC = 1 +REQUIRED_PKGS_CSWglib2 = CSWggettext CSWiconv CSWsunmath +REQUIRED_PKGS_CSWglib2devel = CSWglib2 CSWggettext CSWiconv + +TEST_TARGET = + +PKGFILES_CSWglib2 = $(PKGFILES_RT) +PKGFILES_CSWglib2 += /opt/csw/share/locale/.* + include gar/category.mk - -# For some reason, autoconf drops the ball on this one... -post-install: - @( cd $(DESTDIR)$(bindir) ; \ - $(PERL) -i -plne '$$. == 1 && s{#!\s+}{#!$(PERL) }' glib-mkenums ) Modified: csw/mgar/pkg/glib2/trunk/checksums =================================================================== --- csw/mgar/pkg/glib2/trunk/checksums 2009-01-30 21:09:32 UTC (rev 2946) +++ csw/mgar/pkg/glib2/trunk/checksums 2009-01-30 21:25:04 UTC (rev 2947) @@ -1 +1,4 @@ -0f5f4896782ec7ab6ea8c7c1d9958114 download/glib-2.4.0.tar.bz2 +fdfb028f9224b8e9926163aae0e97d3f download/CSWglib2.gspec +716c7eda9a4edd22c1f648396a60b646 download/CSWglib2devel.gspec +ec25ed261534d870141000ab73f1a2bf download/glib-2.18.4.tar.bz2 +fb144356d0918eff4ef17a2a285860bc download/gtkdoc-rebase.patch Added: csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec =================================================================== --- csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/CSWglib2.gspec 2009-01-30 21:25:04 UTC (rev 2947) @@ -0,0 +1,4 @@ +%var bitname glib2 +%var pkgname CSWglib2 +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec =================================================================== --- csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/CSWglib2devel.gspec 2009-01-30 21:25:04 UTC (rev 2947) @@ -0,0 +1,4 @@ +%var bitname glib2_devel +%var pkgname CSWglib2devel +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch =================================================================== --- csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch (rev 0) +++ csw/mgar/pkg/glib2/trunk/files/gtkdoc-rebase.patch 2009-01-30 21:25:04 UTC (rev 2947) @@ -0,0 +1,99 @@ +diff -rud glib-2.18.4.o/docs/reference/gio/Makefile.in glib-2.18.4/docs/reference/gio/Makefile.in +--- glib-2.18.4.o/docs/reference/gio/Makefile.in 2009-01-09 10:42:52.000000000 -0600 ++++ glib-2.18.4/docs/reference/gio/Makefile.in 2009-01-30 13:53:08.907638618 -0600 +@@ -739,8 +739,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -769,8 +769,8 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + # Tell versions [3.59,3.63) of GNU make to not export all variables. +diff -rud glib-2.18.4.o/docs/reference/glib/Makefile.in glib-2.18.4/docs/reference/glib/Makefile.in +--- glib-2.18.4.o/docs/reference/glib/Makefile.in 2009-01-09 10:42:52.000000000 -0600 ++++ glib-2.18.4/docs/reference/glib/Makefile.in 2009-01-30 13:52:27.443248125 -0600 +@@ -771,8 +771,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -801,8 +801,8 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + +diff -rud glib-2.18.4.o/docs/reference/gobject/Makefile.in glib-2.18.4/docs/reference/gobject/Makefile.in +--- glib-2.18.4.o/docs/reference/gobject/Makefile.in 2009-01-09 10:42:52.000000000 -0600 ++++ glib-2.18.4/docs/reference/gobject/Makefile.in 2009-01-30 13:53:41.314802722 -0600 +@@ -754,8 +754,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -784,8 +784,8 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + +diff -rud glib-2.18.4.o/gtk-doc.make glib-2.18.4/gtk-doc.make +--- glib-2.18.4.o/gtk-doc.make 2009-01-09 11:08:20.000000000 -0600 ++++ glib-2.18.4/gtk-doc.make 2009-01-30 13:54:08.204190136 -0600 +@@ -157,8 +157,8 @@ + mv -f $${installdir}/$(DOC_MODULE).devhelp \ + $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp; \ + fi; \ +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir} ; \ + fi + + uninstall-local: +@@ -190,7 +190,7 @@ + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- ! which gtkdoc-rebase >/dev/null 2>&1 || \ +- gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ #! which gtkdoc-rebase >/dev/null 2>&1 || \ ++ #gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs 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 30 22:42:03 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 21:42:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[2948] csw/mgar/pkg/glib2/trunk/Makefile Message-ID: Revision: 2948 http://gar.svn.sourceforge.net/gar/?rev=2948&view=rev Author: harpchad Date: 2009-01-30 21:42:03 +0000 (Fri, 30 Jan 2009) Log Message: ----------- exclude charset.alias Modified Paths: -------------- csw/mgar/pkg/glib2/trunk/Makefile Modified: csw/mgar/pkg/glib2/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:25:04 UTC (rev 2947) +++ csw/mgar/pkg/glib2/trunk/Makefile 2009-01-30 21:42:03 UTC (rev 2948) @@ -33,6 +33,9 @@ TEST_TARGET = +#provided by iconv +MERGE_EXCLUDE_FILES = .*/charset.alias + PKGFILES_CSWglib2 = $(PKGFILES_RT) PKGFILES_CSWglib2 += /opt/csw/share/locale/.* 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 30 23:12:55 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Fri, 30 Jan 2009 22:12:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[2949] csw/mgar/pkg Message-ID: Revision: 2949 http://gar.svn.sourceforge.net/gar/?rev=2949&view=rev Author: harpchad Date: 2009-01-30 22:12:55 +0000 (Fri, 30 Jan 2009) Log Message: ----------- which (gnu varient): initial commit Added Paths: ----------- csw/mgar/pkg/which/ csw/mgar/pkg/which/branches/ csw/mgar/pkg/which/tags/ csw/mgar/pkg/which/trunk/ csw/mgar/pkg/which/trunk/Makefile csw/mgar/pkg/which/trunk/checksums csw/mgar/pkg/which/trunk/files/ csw/mgar/pkg/which/trunk/files/CSWwhich.gspec Property changes on: csw/mgar/pkg/which/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/which/trunk/Makefile =================================================================== --- csw/mgar/pkg/which/trunk/Makefile (rev 0) +++ csw/mgar/pkg/which/trunk/Makefile 2009-01-30 22:12:55 UTC (rev 2949) @@ -0,0 +1,25 @@ +GARNAME = which +GARVERSION = 2.20 +CATEGORIES = utils + +DESCRIPTION = locate a command and display its pathname or alias +define BLURB + GNU which - is a utility that is used to find which executable (or alias or shell function) is executed when entered on the shell prompt +endef + +MASTER_SITES = $(GNU_MIRROR) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(call admfiles,CSWwhich,) + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --program-prefix=g +CONFIGURE_ARGS += --disable-dependency-tracking + +TEST_TARGET = check + +BUILD64 = 1 + +include gar/category.mk Added: csw/mgar/pkg/which/trunk/checksums =================================================================== --- csw/mgar/pkg/which/trunk/checksums (rev 0) +++ csw/mgar/pkg/which/trunk/checksums 2009-01-30 22:12:55 UTC (rev 2949) @@ -0,0 +1,2 @@ +c67cf9f6eb706d7806152ff74969d48d download/CSWwhich.gspec +95be0501a466e515422cde4af46b2744 download/which-2.20.tar.gz Added: csw/mgar/pkg/which/trunk/files/CSWwhich.gspec =================================================================== --- csw/mgar/pkg/which/trunk/files/CSWwhich.gspec (rev 0) +++ csw/mgar/pkg/which/trunk/files/CSWwhich.gspec 2009-01-30 22:12:55 UTC (rev 2949) @@ -0,0 +1,4 @@ +%var bitname which +%var pkgname CSWwhich +%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 bdwalton at users.sourceforge.net Fri Jan 30 23:31:43 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 30 Jan 2009 22:31:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[2950] csw/mgar/pkg/ruby/trunk Message-ID: Revision: 2950 http://gar.svn.sourceforge.net/gar/?rev=2950&view=rev Author: bdwalton Date: 2009-01-30 22:31:43 +0000 (Fri, 30 Jan 2009) Log Message: ----------- - Remove old prototypes in favour of dynamic gar replacements. - Remove old depend files in favour of gar - First working gar2 build with rdoc patch. Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile csw/mgar/pkg/ruby/trunk/checksums csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec csw/mgar/pkg/ruby/trunk/files/CSWrubytk.gspec Removed Paths: ------------- csw/mgar/pkg/ruby/trunk/files/CSWruby.depend csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.sparc csw/mgar/pkg/ruby/trunk/files/CSWrubytk.depend csw/mgar/pkg/ruby/trunk/files/CSWrubytk.prototype csw/mgar/pkg/ruby/trunk/files/dbm.diff Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 22:31:43 UTC (rev 2950) @@ -25,6 +25,12 @@ closures. endef +SPKG_DESC_CSWrubytk = Ruby Tcl/TK Extension +SPKG_DESC_CSWrubydoc = Documentation for Ruby + +PKGFILES_CSWrubydoc = $(PKGFILES_DOC) +PKGFILES_CSWrubytk = .*tcl.* .*tk.* + MASTER_SITES = ftp://ftp.ruby-lang.org/pub/ruby/ MASTER_SITES += ftp://www.ibiblio.org/pub/languages/ruby/ @@ -34,14 +40,11 @@ DISTFILES = $(GARNAME)-$(DISTVERSION)-$(PATCHLEVEL).tar.bz2 DISTFILES += $(call admfiles,CSWruby,) $(call admfiles,CSWrubytk,) +DISTFILES += $(call admfiles,CSWrubydoc,) # See: http://rubyforge.org/tracker/index.php?func=detail&aid=17607&group_id=426&atid=1698 PATCHFILES = rdoc_parse_order_fix.patch -ifneq ($(SKIP_RUBYDOC),1) -DISTFILES += $(call admfiles,CSWrubydoc,) -endif - # Put samples and RI documentation in share/doc/ruby datadir = $(docdir)/ruby @@ -59,15 +62,16 @@ CONFIGURE_ARGS += --with-readline-dir=$(prefix) CONFIGURE_ARGS += --with-zlib-dir=$(prefix) +INSTALL_ARGS = install-all + WORKSRC = $(WORKDIR)/$(DISTNAME)-$(PATCHLEVEL) WORKSRC_FIRSTMOD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(DISTNAME)-$(PATCHLEVEL) + include gar/category.mk SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHLEVEL) -INSTALL_ARGS = install-all - PI_TARGETS = samples rbconfig rbscripts post-install-modulated: $(PI_TARGETS) Modified: csw/mgar/pkg/ruby/trunk/checksums =================================================================== --- csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/checksums 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,5 +1,5 @@ 0b215c46b89b28d7ab8d56d96e72d5b9 download/ruby-1.8.7-p72.tar.bz2 -b2d3f1987e4dd3962f15131dc6ab28a3 download/CSWruby.gspec -1b4a5fec67986e3f38df7e34c2155ed1 download/CSWrubytk.gspec -02d0cf5721de6c1f6740b399cbe141f1 download/CSWrubydoc.gspec +b700c2469b232a57237f87721188b657 download/CSWruby.gspec +37b936d30a1cb6272d7e5e4582a455df download/CSWrubytk.gspec +bef754cfb2108be9c7511a17a9d91ff6 download/CSWrubydoc.gspec 36460ea6a145017c3ddd1173e903a511 download/rdoc_parse_order_fix.patch Deleted: csw/mgar/pkg/ruby/trunk/files/CSWruby.depend =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWruby.depend 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWruby.depend 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,8 +0,0 @@ -P CSWbdb3 berkeleydb3 - file based pseudo-database library -P CSWgdbm gdbm - GNU dbm -P CSWgfile fileutils - GNU file utilities -P CSWiconv libiconv - GNU iconv library -P CSWncurses ncurses - ncurses library and utilities -P CSWosslrt openssl_rt - Openssl runtime libraries -P CSWreadline readline - library to enable interactive line editing -P CSWzlib zlib - Zlib Data Compression Library Modified: csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWruby.gspec 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,4 +1,4 @@ %var bitname ruby %var pkgname CSWruby -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING +%include url file://%{PKGLIB}/csw_standard.gspec Deleted: csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWruby.prototype 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,692 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/ruby 0755 root bin -f none /opt/csw/bin/testrb 0755 root bin -f none /opt/csw/bin/irb 0755 root bin -f none /opt/csw/bin/rdoc 0755 root bin -f none /opt/csw/bin/erb 0755 root bin -f none /opt/csw/bin/ri 0755 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/ruby 0755 root bin -d none /opt/csw/lib/ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/config.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rbconfig.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rubyio.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/re.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rubysig.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dln.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/defines.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/regex.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/intern.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/env.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/missing.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/version.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/st.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/ruby.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/util.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/node.h 0644 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/strscan.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/bigdecimal.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/curses.so 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/bubblebabble.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/sha2.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/rmd160.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/md5.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest/sha1.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/pty.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/sdbm.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dl.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest.h 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/syck.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/fcntl.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/gdbm.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/thread.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/stringio.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/openssl.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/socket.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dlconfig.h 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/readline.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/iconv.so 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/racc 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/racc/cparse.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/zlib.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dbm.so 0755 root bin -d none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/io 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/io/wait.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/digest.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/dl.h 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/nkf.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/syslog.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/etc.so 0755 root bin -f none /opt/csw/lib/ruby/1.8/%GARCH%-solaris2.8/rbconfig.rb~ 0644 root bin -d none /opt/csw/lib/ruby/1.8/xsd 0755 root bin -f none /opt/csw/lib/ruby/1.8/xsd/namedelements.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/xsd/xmlparser 0755 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/rexmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/xmlscanner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser/xmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/qname.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/xmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/ns.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/xsd/codegen 0755 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/classdef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/moduledef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/methoddef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/gensupport.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/codegen/commentdef.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/charset.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/datatypes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/iconvcharset.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/mapping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xsd/datatypes1999.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/weakref.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/finalize.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ipaddr.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mutex_m.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shellwords.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/un.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tsort.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/securerandom.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/cgi 0755 root bin -d none /opt/csw/lib/ruby/1.8/cgi/session 0755 root bin -f none /opt/csw/lib/ruby/1.8/cgi/session/pstore.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/cgi/session.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/date 0755 root bin -f none /opt/csw/lib/ruby/1.8/date/format.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ostruct.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mathn.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/parsedate.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/generator.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rinda 0755 root bin -f none /opt/csw/lib/ruby/1.8/rinda/ring.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rinda/tuplespace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rinda/rinda.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/ruby-lex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/slex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/input-method.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/frame.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/lc 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/error.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/lc/ja 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/ja/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/ja/help-message 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/lc/help-message 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/context.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/workspace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/locale.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/help.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ruby-token.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/ext 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/workspaces.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/change-ws.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/tracer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/loader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/math-mode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/save-history.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/use-loader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/multi-irb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ext/history.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/xmp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/output-method.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/notifier.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/extend-command.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/irb/cmd 0755 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/fork.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/chws.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/pushws.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/load.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/help.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/nop.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/cmd/subirb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/ws-for-case-2.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/completion.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb/init.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mailread.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/pp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/find.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/Env.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/abbrev.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/observer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/rexmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/taxonomy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/trackback.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/syndication.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xml.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/1.0.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss/content 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/content/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/content/1.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xml-stylesheet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xmlscanner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/atom.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/image.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/rss.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/slash.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/content.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/xmlparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/0.9.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss/maker 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/image.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/0.9.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/taxonomy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/feed.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/base.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/entry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/trackback.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/syndication.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/itunes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/1.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/content.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/slash.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/atom.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/maker/dublincore.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/utils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/converter.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rss/dublincore 0755 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore/atom.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore/2.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/dublincore/1.0.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rss/itunes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/benchmark.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/net 0755 root bin -f none /opt/csw/lib/ruby/1.8/net/protocol.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/ftp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/smtp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/telnet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/pop.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/https.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/imap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/http.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/telnets.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/net/ftptls.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/ftools.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/collector.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui 0755 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk/testrunner.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/console 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/console/testrunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk2 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/gtk2/testrunner.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/ui/fox 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/ui/fox/testrunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/testsuite.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/util 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/util/observable.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/util/procwrapper.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/util/backtracefilter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/autorunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/failure.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/testresult.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/assertions.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/test/unit/collector 0755 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/collector/objectspace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/collector/dir.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/assertionfailederror.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/test/unit/testcase.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/forwardable.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/time.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/thread.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/shell 0755 root bin -f none /opt/csw/lib/ruby/1.8/shell/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/system-command.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/filter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/process-controller.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/builtin-command.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/shell/command-processor.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/sync.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/jcode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/getoptlong.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/date.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/fileutils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/csv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/monitor.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/wsdl 0755 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/importer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/types.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/part.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/message.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/wsdl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/portType.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/definitions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/data.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/info.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/operation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/param.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/service.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/operationBinding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/import.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema 0755 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/all.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/unique.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/attribute.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/content.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/schema.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/include.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/import.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/sequence.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/complexType.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/importer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/data.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/complexContent.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/any.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/length.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/annotation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleType.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/xsd2ruby.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleExtension.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleContent.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/pattern.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/choice.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/enumeration.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/xmlSchema/simpleRestriction.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/binding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/documentation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/port.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/wsdl/soap 0755 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/wsdl2ruby.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/servantSkeltonCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/data.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/methodDefCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/mappingRegistryCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/binding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/classDefCreatorSupport.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/address.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/body.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/header.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/standaloneServerStubCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/fault.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/classDefCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/driverCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/clientSkeltonCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/definitions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/operation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/cgiStubCreator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/headerfault.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/wsdl/soap/complexType.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/webrick 0755 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/htmlutils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/compat.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/server.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httputils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/ssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/log.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httprequest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpproxy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/utils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/cgi.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/webrick/httpauth 0755 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/htgroup.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/htpasswd.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/userdb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/digestauth.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/authenticator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/htdigest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpauth/basicauth.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpversion.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/cookie.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/webrick/httpservlet 0755 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/cgi_runner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/erbhandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/filehandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/abstract.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/prochandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpservlet/cgihandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/config.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpresponse.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/accesslog.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/https.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick/httpstatus.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml 0755 root bin -d none /opt/csw/lib/ruby/1.8/rexml/parsers 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/sax2parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/ultralightparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/xpathparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/treeparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/lightparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/pullparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/baseparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parsers/streamparser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/instruction.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/document.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parseexception.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/namespace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/child.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/validation 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/validation/relaxng.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/validation/validationexception.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/validation/validation.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/output.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/node.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/sax2listener.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/formatters 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/formatters/default.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/formatters/pretty.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/formatters/transitive.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/source.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/dtd 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/elementdecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/entitydecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/notationdecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/dtd.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/dtd/attlistdecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xmltokens.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/light 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/light/node.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/streamlistener.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/attribute.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/parent.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/cdata.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/attlistdecl.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rexml/encodings 0755 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/UNILE.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/EUC-JP.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/ISO-8859-15.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/ISO-8859-1.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/ICONV.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/SHIFT_JIS.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/US-ASCII.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/UTF-8.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/SHIFT-JIS.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/UTF-16.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encodings/CP-1252.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/syncenumerator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/text.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/comment.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/undefinednamespaceexception.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xpath.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/encoding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/functions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/quickpath.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xmldecl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/doctype.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/xpath_parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/entity.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/rexml.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rexml/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/eregex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/readbytes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/base64.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tmpdir.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/drb 0755 root bin -f none /opt/csw/lib/ruby/1.8/drb/eq.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/timeridconv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/invokemethod.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/observer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/acl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/extserv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/ssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/extservm.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/unix.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/drb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb/gw.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tempfile.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/profile.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/scanf.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc 0755 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/ri 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_display.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_options.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_reader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_formatter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_cache.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_writer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_driver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_paths.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_descriptions.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/ri/ri_util.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/options.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/rdoc.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/dot 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/dot/dot.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/diagram.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/template.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/usage.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/parsers 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_f95.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_rb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parserfactory.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_c.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/parsers/parse_simple.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/tokenstream.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/code_objects.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup 0755 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup/test 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/test/AllTests.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/test/TestParse.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/test/TestInline.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/lines.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/fragments.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/inline.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/to_flow.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/to_html.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/to_latex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup/preprocess.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/simple_markup.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/markup/sample 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/sample/sample.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/markup/sample/rdoc2latex.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/ri_generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/html_generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/xml_generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/chm_generator.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template 0755 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/old_html.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/one_page_html.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/kilmer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/hefss.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/html/html.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template/chm 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/chm/chm.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/rdoc/generators/template/xml 0755 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/xml/xml.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rdoc/generators/template/xml/rdf.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/optparse 0755 root bin -f none /opt/csw/lib/ruby/1.8/optparse/date.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/time.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/version.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/shellwords.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/optparse/uri.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/drb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/delegate.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/tracer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/cgi-lib.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/complex.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/prettyprint.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/open-uri.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/xmlrpc 0755 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/create.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/httpserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/base64.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/utils.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/client.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/server.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/config.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/datetime.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/xmlrpc/marshal.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/open3.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/mkmf.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rubyunit.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/racc 0755 root bin -f none /opt/csw/lib/ruby/1.8/racc/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/timeout.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/webrick.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/uri 0755 root bin -f none /opt/csw/lib/ruby/1.8/uri/ftp.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/ldap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/mailto.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/ldaps.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/https.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/generic.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/common.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/uri/http.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/profiler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/cgi.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/erb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/gserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/pathname.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/yaml 0755 root bin -f none /opt/csw/lib/ruby/1.8/yaml/types.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/stringio.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/stream.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/constants.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/loader.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/ypath.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/dbm.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/basenode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/store.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/rubytypes.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/syck.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/tag.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/baseemitter.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/encoding.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/yaml/yamlnode.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/pstore.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/marshal.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/property.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/header 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/header/simplehandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/header/handler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/header/handlerset.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/attachment.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/streamHandler.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/encodingstyle 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/aspDotNetHandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/handler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/soapHandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/encodingstyle/literalHandler.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/netHttpClient.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/processor.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/rpc 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/standaloneServer.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/element.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/rpc.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/httpserver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/proxy.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/cgistub.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/soaplet.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/driver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/rpc/router.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/wsdlDriver.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mimemessage.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/baseData.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/parser.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/httpconfigloader.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/soap/mapping 0755 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/mapping.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/factory.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/wsdlliteralregistry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/rubytypeFactory.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/registry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/wsdlencodedregistry.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/mapping/typeMap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/generator.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/soap/soap.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/runit 0755 root bin -f none /opt/csw/lib/ruby/1.8/runit/testsuite.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/topublic.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/runit/cui 0755 root bin -f none /opt/csw/lib/ruby/1.8/runit/cui/testrunner.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/testresult.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/testcase.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/assert.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/runit/error.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/debug.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/thwait.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/logger.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/importenv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/set.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/e2mmap.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/resolv.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/parsearg.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/getopts.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/English.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/date2.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/matrix.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/resolv-replace.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/irb.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/singleton.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/rational.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/digest 0755 root bin -f none /opt/csw/lib/ruby/1.8/digest/sha2.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/bigdecimal 0755 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/math.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/util.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/jacobian.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/newton.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/bigdecimal/ludcmp.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/dl 0755 root bin -f none /opt/csw/lib/ruby/1.8/dl/types.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/dl/struct.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/dl/import.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/dl/win32.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/digest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/md5.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/openssl 0755 root bin -f none /opt/csw/lib/ruby/1.8/openssl/digest.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/cipher.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/buffering.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/pkcs7.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/ssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/x509.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl/bn.rb 0644 root bin -d none /opt/csw/lib/ruby/1.8/io 0755 root bin -f none /opt/csw/lib/ruby/1.8/io/nonblock.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/expect.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/openssl.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/sha1.rb 0644 root bin -f none /opt/csw/lib/ruby/1.8/kconv.rb 0644 root bin -d none /opt/csw/lib/ruby/site_ruby 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/%GARCH%-solaris2.8 0755 root bin -d none /opt/csw/lib/ruby/vendor_ruby 0755 root bin -d none /opt/csw/lib/ruby/vendor_ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/vendor_ruby/1.8/%GARCH%-solaris2.8 0755 root bin -f none /opt/csw/lib/libruby.so.1 0755 root bin -f none /opt/csw/lib/libruby-static.a 0644 root bin -s none /opt/csw/lib/libruby.so.1.8.7=libruby.so.1 -s none /opt/csw/lib/libruby.so=libruby.so.1 -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/ruby.1 0644 root bin Deleted: csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.depend 2009-01-30 22:31:43 UTC (rev 2950) @@ -1 +0,0 @@ -P CSWruby ruby - An object-oriented language for quick and easy programming. Modified: csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.gspec 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,15 +1,5 @@ %var bitname rubydoc %var pkgname CSWrubydoc -# we want to handle the %prototype a little differently for this package, so -# we override the csw_standard include to exclude the file csw_prototype from -# being pulled in. -#%include url file://%{PKGLIB}/csw_standard.gspec -%include url file://%{PKGLIB}/csw_vars.gspec -%prototype -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/doc 0755 root bin -%prototype exec cswproto -s %{TIMESTAMP} -r %{DESTDIR} %{DESTDIR}%{prefix}/share/doc -%pkginfo url file://%{PKGLIB}/csw/pkginfo -%depend:merge url file://%{PKGLIB}/csw/depend -%var desc Ruby documentation -%copyright url file://%{WORKSRC}/COPYING +%var arch all +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING +%include url file://%{PKGLIB}/csw_standard.gspec \ No newline at end of file Deleted: csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 =================================================================== --- csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 2009-01-30 22:12:55 UTC (rev 2949) +++ csw/mgar/pkg/ruby/trunk/files/CSWrubydoc.prototype.i386 2009-01-30 22:31:43 UTC (rev 2950) @@ -1,17994 +0,0 @@ -d /opt/csw/share 0755 root bin -d /opt/csw/share/doc 0755 root bin -d /opt/csw/share/doc/ruby 0755 root bin -d /opt/csw/share/doc/ruby/sample 0755 root bin -d /opt/csw/share/doc/ruby/sample/drb 0755 root bin -f /opt/csw/share/doc/ruby/sample/drb/dcdbiff.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbs.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dchats.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/darrayc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/ring_inspect.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqlib.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/speedc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dlogc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/http0.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dchatc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/darray.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbmc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dlogd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/name.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/rinda_ts.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqueue.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dhasen.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/http0serv.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/ring_echo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/speeds.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/rindac.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dhasenc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqout.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/old_tuplespace.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/simpletuple.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/gw_s.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dbiff.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbssl_s.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/gw_cu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/README.rd.ja 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/holderc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/gw_ct.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/README.rd 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/rindas.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/extserv_test.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/namec.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbs-acl.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/dqin.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbm.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/drbssl_c.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/holders.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/drb/ring_place.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/from.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/list2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/sieve.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/optparse 0755 root bin -f /opt/csw/share/doc/ruby/sample/optparse/subcommand.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/optparse/opttest.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.scm 0644 root bin -f /opt/csw/share/doc/ruby/sample/dualstack-httpd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/list3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/pi.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/export.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fullpath.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/freq.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/erb 0755 root bin -f /opt/csw/share/doc/ruby/sample/erb/erb4html.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.py 0644 root bin -f /opt/csw/share/doc/ruby/sample/occur.pl 0644 root bin -f /opt/csw/share/doc/ruby/sample/observ.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/mkproto.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dbmtest.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/time.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/eval.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/philos.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/mine.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/openssl 0755 root bin -f /opt/csw/share/doc/ruby/sample/openssl/cert_store_view.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/wget.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/crlstore.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/echo_cli.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/smime_write.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/cert2text.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/cipher.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/smime_read.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/echo_svr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/gen_csr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/certstore.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/openssl/c_rehash.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/occur2.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/testunit 0755 root bin -f /opt/csw/share/doc/ruby/sample/testunit/tc_subtracter.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/subtracter.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/tc_adder.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/ts_examples.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/testunit/adder.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/regx.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dualstack-fetch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/test.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/exyacc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/occur.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/biorhythm.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/cal.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/trojan.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dir.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/webrick 0755 root bin -f /opt/csw/share/doc/ruby/sample/webrick/hello.cgi 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-urlencoded.cgi 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-multipart.cgi 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/httpproxy.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-servlet.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/demo-app.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/httpsd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/httpd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/webrick/hello.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/uumerge.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/svr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/list.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/logger 0755 root bin -f /opt/csw/share/doc/ruby/sample/logger/shifting.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/logger/app.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/logger/log.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/rcs.awk 0644 root bin -f /opt/csw/share/doc/ruby/sample/mpart.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/rss 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/list_description.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/re_read.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/blend.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/rss_recent.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/rss/convert.rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/fib.awk 0644 root bin -f /opt/csw/share/doc/ruby/sample/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/less.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/rcs.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tsvr.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/getopts.test 0644 root bin -f /opt/csw/share/doc/ruby/sample/cbreak.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/clnt.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fact.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/fib.pl 0644 root bin -f /opt/csw/share/doc/ruby/sample/mrshtest.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/rcs.dat 0644 root bin -d /opt/csw/share/doc/ruby/sample/dl 0755 root bin -f /opt/csw/share/doc/ruby/sample/dl/msgbox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/msgbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/c++sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/c++sample.C 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/libc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/drives.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/getch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/stream.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/dl/sample 0755 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/msgbox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/c++sample.C 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/c++sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/msgbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/libc.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/stream.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/drives.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/dl/sample/getch.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/bigdecimal 0755 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/nlsolve.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/linear.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/pi.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/bigdecimal/sample 0755 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/sample/pi.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/sample/nlsolve.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/bigdecimal/sample/linear.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/encstr_usage.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/editable_listbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktextio.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkbiff.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkline.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/bindtag_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktree.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/resource.en 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/figmemo_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/btn_with_frame.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkdialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/multi-ip_sample2.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tcltklib 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/sample1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines0.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/batsu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/sample0.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/sample2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines4.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/safeTk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/maru.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tcltklib/lines1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/iso2022-kr.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/irbtkw.rbw 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkoptdb.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktree.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/binding_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmenubutton.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tksleep_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/safe-tk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmsgcat-load_tk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/remote-ip_sample2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/24hr_clock.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/irbtk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkoptdb-safeTk.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/binstr_usage.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktextframe.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkhello.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkfrom.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmsgcat-load_rb2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkbrowse.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkalignbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkmultilistframe.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/remote-ip_sample.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/cmd_res_test.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/msgs_tk 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/el.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/fr.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/cs.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/pl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/license.terms 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/ru.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/de.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/ja.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/nl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/en.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/it.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/en_gb.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/eo.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_tk/es.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/cmd_resource 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktimer.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/cd_timer.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/images 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/flagdown.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/earthris.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/grey.25 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/earth.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/gray25.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/grey.5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/noletter.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/letters.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/tcllogo.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/teapot.ppm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/face.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/flagup.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/images/pattern.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktimer3.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/msgs_rb 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/ru.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/de.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/ja.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/el.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/fr.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/cs.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/pl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/en_gb.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/it.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/eo.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/es.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/nl.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/msgs_rb/en.msg 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tktimer2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkcombobox.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/demos-jp 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/README.JP 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/license.terms 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/README.tk80 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/doc.org/license.terms.tk80 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/widget 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/bind.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/paned2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/bitmap.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/rmt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/twind.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menu8x.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/items.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/tree.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menu84.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/paned1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkmenu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/states.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/msgbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkprogress.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/rolodex 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkbut.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/style.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/clrpick.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/README 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/hello 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/image2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/anilabel.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/hscale.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/search.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/toolbar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/image3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/labelframe.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ixset 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/floor.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/arrow.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/goldberg.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/pendulum.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/image1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/combo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/rolodex-j 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/spin.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/mclist.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/cscroll.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/icon.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/check2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/README.1st 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/radio2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/button.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/vscale.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/radio3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/textpeer.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/tcolor 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/entry1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/check.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/dialog2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/browse1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ixset2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/twind2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/entry3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/sayings.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/label.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttknote.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/colors.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/radio.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/form.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/plot.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/dialog1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/entry2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ttkpane.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/text.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/puzzle.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/menubu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/knightstour.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ctext.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/browse2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/filebox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/aniwave.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/square 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/unicodeout.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/floor2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/ruler.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/msgbox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/demos-jp/timer 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/plot1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/pareto.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7a.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7c.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph6.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/graph7b.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/scripts 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/scripts/stipples.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/plot1b.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/calendar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/barchart5.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/winop2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/readme.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/sample.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/buckskin.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/qv100.t.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/chalk.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/images/rain.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/blt/winop1.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/m128_000.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/dial_demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/oscilloscope.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/canvSticker2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/canvItems.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/vu_demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/pie.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/README.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/canvSticker.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/vu/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/dynarows.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/tcllogo.gif 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/buttons.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/valid.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/basic.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/Orig_LICENSE.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/command.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/maxsize.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/spreadsheet.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tktable/debug.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/repeater.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/readme.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/toolbutton.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/button-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/radio-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/button-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc/check-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/kroc.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc/pkgIndex.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/kroc.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/pkgIndex.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-d.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/vsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowright-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowdown-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/radio-c.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowup-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-d.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowleft-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tbar-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tab-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/check-u.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/hsb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/vslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/hslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-arrow-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowdown-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/check-c.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowup-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/vsb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowright-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-a.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tbar-a.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/hsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/radio-u.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/arrowleft-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/mbut-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-s.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tbar-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/tab-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/keramik/keramik/button-h.gif 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/pkgIndex.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-thumb.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowleft-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowup-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowdown-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-n.xcf 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-vthumb.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowleft.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowright-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/slider-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/vslider-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowdown.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowup.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/slider.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowright-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-thumb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/radio-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowdown-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/vslider.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowup-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/sb-vthumb-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowright.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/arrowleft-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/check-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/blue/blue/button-n.gif 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/pkgIndex.tcl 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowdown-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/hsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/button-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/vslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/hslider-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowright-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/button-h.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-pc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowup-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowleft-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-hc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowright-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-nu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowdown-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/button-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-nc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/vsb-n.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowup-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/arrowleft-p.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/check-hu.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik/radio-pc.gif 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/themes/plastik/plastik.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/iconlib.tcl 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tile/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/dnd.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/basic.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/bwidget.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/x1.xbm 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/manager.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/tree.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/select.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/tmpldlg.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/bwidget/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg/demo.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg/license_terms_of_Img_extension 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkimg/readme.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/Orig_LICENSE.txt 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/tkIcons 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/tkIcons-sample.kde 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/viewIcons.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/ICONS/tkIcons.kde 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/hv.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image10 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image13 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image14 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image11 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image12 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page3/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/ss.rb 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page4/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/Orig_COPYRIGHT.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image11 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image12 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image10 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image13 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image14 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page1/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/README 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image7 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image20 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image18 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image12 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image33 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image39 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image34 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image15 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image27 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image23 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image4 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image29 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image11 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image30 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image37 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image16 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image24 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image3 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image9 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image14 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image26 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image1 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image35 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image38 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image32 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image21 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image6 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image13 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image19 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/index.html 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image17 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image8 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image2 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image25 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image36 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image31 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image28 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image5 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image22 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tkHTML/page2/image10 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/xyplot.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/datefield.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/plotdemos2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/plotdemos3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/plotdemos1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/tcllib/Orig_LICENSE.txt 0644 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets 0755 root bin -d /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample 0755 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/spindate.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/disjointlistbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/panedwindow2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/fileselectiondialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/canvasprintbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/messagebox2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/feedback.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/spintime.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/tabset.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/extfileselectiondialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/calendar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/messagebox1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/labeledwidget.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/notebook.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/timefield.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/hierarchy.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/promptdialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/radiobox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/tabnotebook.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/optionmenu.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/scrolledcanvas.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/watch.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/dialogshell.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/hyperhelp.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/menubar2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/timeentry.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/mainwindow.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/extfileselectionbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/selectiondialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/tabnotebook2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/finddialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/combobox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/menubar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/buttonbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/toolbar.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/shell.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/selectionbox.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/entryfield-1.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/dialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/entryfield-3.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/spinint.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/datefield.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/canvasprintdialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/entryfield-2.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/extbutton.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/messagedialog.rb 0644 root bin -f /opt/csw/share/doc/ruby/sample/tk/tkextlib/iwidgets/sample/scrolledhtml.rb 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 bdwalton at users.sourceforge.net Sat Jan 31 01:48:18 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 31 Jan 2009 00:48:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[2951] csw/mgar/pkg/ruby/trunk/Makefile Message-ID: Revision: 2951 http://gar.svn.sourceforge.net/gar/?rev=2951&view=rev Author: bdwalton Date: 2009-01-31 00:48:18 +0000 (Sat, 31 Jan 2009) Log Message: ----------- corrected dependency typo Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-01-30 22:31:43 UTC (rev 2950) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-01-31 00:48:18 UTC (rev 2951) @@ -7,7 +7,7 @@ PREREQUISITE_PKGS = CSWbdb3 CSWgdbm CSWgfile CSWiconv CSWncurses CSWossldevel PREREQUISITE_PKGS += CSWreadline CSWzlib -REQUIRED_PKGS_CSWruby = CSWbdb3n CSWgdbm CSWiconv +REQUIRED_PKGS_CSWruby = CSWbdb3 CSWgdbm CSWiconv REQUIRED_PKGS_CSWruby += CSWncurses CSWosslrt CSWreadline CSWzlib REQUIRED_PKGS_CSWrubytk = CSWruby CSWtk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Sat Jan 31 05:21:32 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Sat, 31 Jan 2009 04:21:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[2952] csw/mgar/pkg/gettext/trunk Message-ID: Revision: 2952 http://gar.svn.sourceforge.net/gar/?rev=2952&view=rev Author: harpchad Date: 2009-01-31 04:21:32 +0000 (Sat, 31 Jan 2009) Log Message: ----------- - update to gettext 0.17 - add amd64 support - build in gar v2 Modified Paths: -------------- csw/mgar/pkg/gettext/trunk/Makefile csw/mgar/pkg/gettext/trunk/checksums csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec Added Paths: ----------- csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.i csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.s csw/mgar/pkg/gettext/trunk/files/libintl.so.2.i csw/mgar/pkg/gettext/trunk/files/libintl.so.2.s csw/mgar/pkg/gettext/trunk/files/libintl.so.3.i csw/mgar/pkg/gettext/trunk/files/libintl.so.3.s Property Changed: ---------------- csw/mgar/pkg/gettext/trunk/ Property changes on: csw/mgar/pkg/gettext/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/gettext/trunk/Makefile =================================================================== --- csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 00:48:18 UTC (rev 2951) +++ csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 04:21:32 UTC (rev 2952) @@ -2,25 +2,54 @@ GARVERSION = 0.17 CATEGORIES = lib -DESCRIPTION = GNU gettext +DESCRIPTION = GNU locale utilities define BLURB + GNU gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages endef -MASTER_SITES = $(GNU_MIRRORS) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWggettext) +MASTER_SITES = $(GNU_MIRROR) -# We define upstream file regex so we can be notifed of new upstream software release +DISTFILES = $(call admfiles,CSWggettext,) +DISTFILES += $(call admfiles,CSWggettextdoc,) +DISTFILES += $(GARNAME)-$(GARVERSION).tar.gz +#Include earlier library revisions for compatibility with existing packages +DISTFILES += libgettextlib-0.14.1.so.i +DISTFILES += libgettextlib-0.14.1.so.s +DISTFILES += libintl.so.2.i +DISTFILES += libintl.so.2.s +DISTFILES += libintl.so.3.i +DISTFILES += libintl.so.3.s + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --program-prefix=g +#Dont' depend on packages that depend on me +CONFIGURE_ARGS += --with-included-glib +CONFIGURE_ARGS += --with-included-libcroco +#No glibc +CONFIGURE_ARGS += --with-included-gettext + UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -EXTRA_BUILD_ISAS_sparc = sparcv9 -EXTRA_BUILD_ISAS_i386 = amd64 +BUILD64 = 1 +NO_ISAEXEC = 1 -CONFIGURE_ARGS = $(DIRPATHS) +REQUIRED_PKGS_CSWggettext = CSWiconv CSWexpat CSWncurses -TEST_TARGET = check +TEST_TARGET = +#provided by iconv +MERGE_EXCLUDE_FILES = .*/charset.alias + +PKGFILES_CSWggettextdoc = $(PKGFILES_DOC) + include gar/category.mk -LIBS = -lsec -export LIBS +post-install-isa-sparcv8: + @cp $(FILEDIR)/libgettextlib-0.14.1.so.s $(INSTALLISADIR)/opt/csw/lib/libgettextlib-0.14.1.so + @cp $(FILEDIR)/libintl.so.2.s $(INSTALLISADIR)/opt/csw/lib/libintl.so.2 + @cp $(FILEDIR)/libintl.so.3.s $(INSTALLISADIR)/opt/csw/lib/libintl.so.3 + +post-install-isa-i386: + @cp $(FILEDIR)/libgettextlib-0.14.1.so.i $(INSTALLISADIR)/opt/csw/lib/libgettextlib-0.14.1.so + @cp $(FILEDIR)/libintl.so.2.i $(INSTALLISADIR)/opt/csw/lib/libintl.so.2 + @cp $(FILEDIR)/libintl.so.3.i $(INSTALLISADIR)/opt/csw/lib/libintl.so.3 Modified: csw/mgar/pkg/gettext/trunk/checksums =================================================================== --- csw/mgar/pkg/gettext/trunk/checksums 2009-01-31 00:48:18 UTC (rev 2951) +++ csw/mgar/pkg/gettext/trunk/checksums 2009-01-31 04:21:32 UTC (rev 2952) @@ -1,2 +1,9 @@ +5f7c1991d31760f0f9977949c8f95629 download/CSWggettext.gspec +bdbfd869627a7450185e768b5aa1a0af download/CSWggettextdoc.gspec 58a2bc6d39c0ba57823034d55d65d606 download/gettext-0.17.tar.gz -e77ed8e74dcd0abbf699d345acde7e85 download/CSWggettext.gspec +d44a9a6ec0952bad7ad07026ccb42a10 download/libgettextlib-0.14.1.so.i +ff0219d47dbc11034b55872172488e01 download/libgettextlib-0.14.1.so.s +80123ce62a2ef58afb3f6f07a12bd1c1 download/libintl.so.2.i +3ab768083f6ecc5cada151e49be21aa0 download/libintl.so.2.s +ceb5de2326a4726d3710fe1512b84592 download/libintl.so.3.i +88db7322e263a00f24269a7f364fdc2d download/libintl.so.3.s Modified: csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec =================================================================== --- csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec 2009-01-31 00:48:18 UTC (rev 2951) +++ csw/mgar/pkg/gettext/trunk/files/CSWggettext.gspec 2009-01-31 04:21:32 UTC (rev 2952) @@ -1,4 +1,4 @@ %var bitname ggettext %var pkgname CSWggettext %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec =================================================================== --- csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec (rev 0) +++ csw/mgar/pkg/gettext/trunk/files/CSWggettextdoc.gspec 2009-01-31 04:21:32 UTC (rev 2952) @@ -0,0 +1,4 @@ +%var bitname ggettextdoc +%var pkgname CSWggettextdoc +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Added: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libgettextlib-0.14.1.so.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.2.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.i =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.i ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream Added: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.s =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/gettext/trunk/files/libintl.so.3.s ___________________________________________________________________ Added: svn:executable + * Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From harpchad at users.sourceforge.net Sat Jan 31 18:05:08 2009 From: harpchad at users.sourceforge.net (harpchad at users.sourceforge.net) Date: Sat, 31 Jan 2009 17:05:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[2953] csw/mgar/pkg/gettext/trunk/Makefile Message-ID: Revision: 2953 http://gar.svn.sourceforge.net/gar/?rev=2953&view=rev Author: harpchad Date: 2009-01-31 17:05:08 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Add check and note regarding it Modified Paths: -------------- csw/mgar/pkg/gettext/trunk/Makefile Modified: csw/mgar/pkg/gettext/trunk/Makefile =================================================================== --- csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 04:21:32 UTC (rev 2952) +++ csw/mgar/pkg/gettext/trunk/Makefile 2009-01-31 17:05:08 UTC (rev 2953) @@ -31,11 +31,13 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz BUILD64 = 1 -NO_ISAEXEC = 1 REQUIRED_PKGS_CSWggettext = CSWiconv CSWexpat CSWncurses -TEST_TARGET = +#NOTE: gettext tests are sensitive to bash environment variables, make sure +# custom paths are prefixed by $PATH, may be better to set aside +# ~/.bashrc, etc. during build. +TEST_TARGET = check #provided by iconv MERGE_EXCLUDE_FILES = .*/charset.alias 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 31 22:33:16 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 21:33:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[2954] csw/mgar/pkg/beanutils/trunk/Makefile Message-ID: Revision: 2954 http://gar.svn.sourceforge.net/gar/?rev=2954&view=rev Author: wbonnet Date: 2009-01-31 21:33:16 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Change the name of the licence file Documentation is installed under /opt/csw/share/doc/commons-beanutils and no longer /opt/csw/share/doc/commons-beanutils/docs Modified Paths: -------------- csw/mgar/pkg/beanutils/trunk/Makefile Modified: csw/mgar/pkg/beanutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 17:05:08 UTC (rev 2953) +++ csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 21:33:16 UTC (rev 2954) @@ -49,8 +49,6 @@ ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) - @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME) - @( cd $(DESTDIR)$(datadir)/licences/$(GARNAME) ; \ - ln -s LICENSE.txt Apache_License_2.0.txt ) - @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs $(DESTDIR)$(datadir)/doc/$(GARNAME)/docs + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME)/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs/* $(DESTDIR)$(datadir)/doc/$(GARNAME) @$(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 Sat Jan 31 22:51:28 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 21:51:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[2955] csw/mgar/pkg/beanutils/trunk/Makefile Message-ID: Revision: 2955 http://gar.svn.sourceforge.net/gar/?rev=2955&view=rev Author: wbonnet Date: 2009-01-31 21:51:28 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Fix license path Modified Paths: -------------- csw/mgar/pkg/beanutils/trunk/Makefile Modified: csw/mgar/pkg/beanutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 21:33:16 UTC (rev 2954) +++ csw/mgar/pkg/beanutils/trunk/Makefile 2009-01-31 21:51:28 UTC (rev 2955) @@ -28,7 +28,8 @@ REQUIRED_PKGS_CSWajcbeanutils += CSWajclogging # Defines package content -PKGFILES_CSWajcbeanutilsdoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcbeanutilsdoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcbeanutilsdoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt # Defines custom steps since java libs do not use autotools WORKSRC = $(WORKDIR) @@ -48,7 +49,9 @@ ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) - @ginstall -d $(DESTDIR)$(datadir)/licences/$(GARNAME) - @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licences/$(GARNAME)/Apache_License_2.0.txt + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs/* $(DESTDIR)$(datadir)/doc/$(GARNAME) @$(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 Sat Jan 31 23:02:48 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:02:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[2956] csw/mgar/pkg Message-ID: Revision: 2956 http://gar.svn.sourceforge.net/gar/?rev=2956&view=rev Author: wbonnet Date: 2009-01-31 22:02:48 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/chain/ csw/mgar/pkg/chain/Makefile csw/mgar/pkg/chain/branches/ csw/mgar/pkg/chain/tags/ csw/mgar/pkg/chain/trunk/ csw/mgar/pkg/chain/trunk/Makefile csw/mgar/pkg/chain/trunk/checksums csw/mgar/pkg/chain/trunk/files/ csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec Added: csw/mgar/pkg/chain/Makefile =================================================================== --- csw/mgar/pkg/chain/Makefile (rev 0) +++ csw/mgar/pkg/chain/Makefile 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/chain/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/chain/trunk/Makefile =================================================================== --- csw/mgar/pkg/chain/trunk/Makefile (rev 0) +++ csw/mgar/pkg/chain/trunk/Makefile 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,56 @@ +SHORTNAME = chain +GARVERSION = 1.2 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons Chain : Chain of Responsibility pattern API +define BLURB +Apache Jakarta Commons chain provides "Chain of Responsibility" pattern implemention +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION)-bin.tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajcchain,) +DISTFILES += $(call admfiles,CSWajcchaindoc,) + +# Defines package description +SPKG_DESC_CSWajcchain = $(DESCRIPTION) +SPKG_DESC_CSWajcchaindoc = $(DESCRIPTION) documentation package + +# Defines dependencies +REQUIRED_PKGS_CSWajcchain = CSWajcdigester +REQUIRED_PKGS_CSWajcchain += CSWajclogging + +# Defines package content +PKGFILES_CSWajcchaindoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcchaindoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/$(DISTNAME)/commons-chain-1.2.jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/$(DISTNAME)/apidocs/* $(DESTDIR)$(datadir)/doc/$(GARNAME)/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/chain/trunk/checksums =================================================================== --- csw/mgar/pkg/chain/trunk/checksums (rev 0) +++ csw/mgar/pkg/chain/trunk/checksums 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,3 @@ +42d6a4fd3316f88a01eeb0e0c0f89e0f download/commons-chain-1.2-bin.tar.gz +3b4186496bec47046d0b0a6144cee14b download/CSWajcchain.gspec +d9966d181ed11f63926ea5072e3c1d0c download/CSWajcchaindoc.gspec Added: csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec =================================================================== --- csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec (rev 0) +++ csw/mgar/pkg/chain/trunk/files/CSWajcchain.gspec 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,5 @@ +%var bitname commons_chain +%var pkgname CSWajcchain +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt Added: csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec =================================================================== --- csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec (rev 0) +++ csw/mgar/pkg/chain/trunk/files/CSWajcchaindoc.gspec 2009-01-31 22:02:48 UTC (rev 2956) @@ -0,0 +1,5 @@ +%var bitname commons_chain_doc +%var pkgname CSWajcchaindoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt 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 31 23:08:40 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:08:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[2957] csw/mgar/pkg/beanutils/Makefile Message-ID: Revision: 2957 http://gar.svn.sourceforge.net/gar/?rev=2957&view=rev Author: wbonnet Date: 2009-01-31 22:08:40 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Add makefile Added Paths: ----------- csw/mgar/pkg/beanutils/Makefile Added: csw/mgar/pkg/beanutils/Makefile =================================================================== --- csw/mgar/pkg/beanutils/Makefile (rev 0) +++ csw/mgar/pkg/beanutils/Makefile 2009-01-31 22:08:40 UTC (rev 2957) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) 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 31 23:24:07 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:24:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[2958] csw/mgar/pkg Message-ID: Revision: 2958 http://gar.svn.sourceforge.net/gar/?rev=2958&view=rev Author: wbonnet Date: 2009-01-31 22:24:06 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/cli/ csw/mgar/pkg/cli/Makefile csw/mgar/pkg/cli/branches/ csw/mgar/pkg/cli/tags/ csw/mgar/pkg/cli/trunk/ csw/mgar/pkg/cli/trunk/Makefile csw/mgar/pkg/cli/trunk/checksums csw/mgar/pkg/cli/trunk/files/ csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec Added: csw/mgar/pkg/cli/Makefile =================================================================== --- csw/mgar/pkg/cli/Makefile (rev 0) +++ csw/mgar/pkg/cli/Makefile 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/cli/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/cli/trunk/Makefile =================================================================== --- csw/mgar/pkg/cli/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cli/trunk/Makefile 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,55 @@ +SHORTNAME = cli +GARVERSION = 1.1 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons CLI +define BLURB +Apache Jakarta Commons CLI : API for working with the command line arguments and options +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajccli,) +DISTFILES += $(call admfiles,CSWajcclidoc,) + +# Defines package description +SPKG_DESC_CSWajccli = $(DESCRIPTION) +SPKG_DESC_CSWajcclidoc = $(DESCRIPTION) documentation package + +# Defines dependencies +REQUIRED_PKGS_CSWajccli = CSWajclang + +# Defines package content +PKGFILES_CSWajcclidoc = $(prefix)/share/doc/.* +PKGFILES_CSWajcclidoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/$(DISTNAME)/commons-cli-1.1.jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @gcp -fp $(WORKSRC)/$(DISTNAME)/LICENSE.txt $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/$(DISTNAME)/docs/* $(DESTDIR)$(datadir)/doc/$(GARNAME)/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/cli/trunk/checksums =================================================================== --- csw/mgar/pkg/cli/trunk/checksums (rev 0) +++ csw/mgar/pkg/cli/trunk/checksums 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,3 @@ +2e5fc38f03a28788bf131d7c0c36d3f2 download/commons-cli-1.1.tar.gz +646c09d6185c60524c85a0314b9b62f7 download/CSWajccli.gspec +e544b77b4156c8666b91f1d21a835269 download/CSWajcclidoc.gspec Added: csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec =================================================================== --- csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec (rev 0) +++ csw/mgar/pkg/cli/trunk/files/CSWajccli.gspec 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,5 @@ +%var bitname commons_cli +%var pkgname CSWajccli +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt Added: csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec =================================================================== --- csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec (rev 0) +++ csw/mgar/pkg/cli/trunk/files/CSWajcclidoc.gspec 2009-01-31 22:24:06 UTC (rev 2958) @@ -0,0 +1,5 @@ +%var bitname commons_cli_doc +%var pkgname CSWajcclidoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE.txt 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 31 23:59:24 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 31 Jan 2009 22:59:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[2959] csw/mgar/pkg Message-ID: Revision: 2959 http://gar.svn.sourceforge.net/gar/?rev=2959&view=rev Author: wbonnet Date: 2009-01-31 22:59:24 +0000 (Sat, 31 Jan 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/codec/ csw/mgar/pkg/codec/Makefile csw/mgar/pkg/codec/branches/ csw/mgar/pkg/codec/tags/ csw/mgar/pkg/codec/trunk/ csw/mgar/pkg/codec/trunk/Makefile csw/mgar/pkg/codec/trunk/checksums csw/mgar/pkg/codec/trunk/files/ csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec Added: csw/mgar/pkg/codec/Makefile =================================================================== --- csw/mgar/pkg/codec/Makefile (rev 0) +++ csw/mgar/pkg/codec/Makefile 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/codec/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/codec/trunk/Makefile =================================================================== --- csw/mgar/pkg/codec/trunk/Makefile (rev 0) +++ csw/mgar/pkg/codec/trunk/Makefile 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,57 @@ +SHORTNAME = codec +GARVERSION = 1.3 + +GARNAME = commons-$(SHORTNAME) +CATEGORIES = java + +DESCRIPTION = Apache Jakarta Commons codec : codec of Responsibility pattern API +define BLURB +Apache Jakarta Commons codec provides "codec of Responsibility" pattern implemention +endef + +# Use jakarta sources +MASTER_SITES = http://apache.cict.fr/commons/$(SHORTNAME)/binaries/ + +# Set archive filename +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +# Defines two packages, lib and doc +DISTFILES += $(call admfiles,CSWajccodec,) +DISTFILES += $(call admfiles,CSWajccodecdoc,) + +# Defines package description +SPKG_DESC_CSWajccodec = $(DESCRIPTION) +SPKG_DESC_CSWajccodecdoc = $(DESCRIPTION) documentation package + +# Defines dependencies + +# Defines package content +PKGFILES_CSWajccodecdoc = $(prefix)/share/doc/.* +PKGFILES_CSWajccodecdoc += $(prefix)/share/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + +# Defines custom steps since java libs do not use autotools +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +SRC_FIRSTMOD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS)) +export SRC_FIRSTMOD + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(datadir)/java + @gcp -fp $(WORKSRC)/commons-codec-$(GARVERSION).jar $(DESTDIR)$(datadir)/java + @( cd $(DESTDIR)$(datadir)/java ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME)-1.jar ; \ + ln -s $(GARNAME)-$(GARVERSION).jar $(GARNAME).jar ) + @ginstall -d $(DESTDIR)$(datadir)/doc/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME) + @ginstall -d $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc + @gcp -fp $(WORKSRC)/LICENSE $(DESTDIR)$(datadir)/licenses/$(GARNAME)/Apache_License_2.0.txt + @gcp -fp $(WORKSRC)/LICENSE $(DESTDIR)$(datadir)/licenses/$(GARNAME)-doc/Apache_License_2.0.txt + @gcp -frp $(WORKSRC)/docs/* $(DESTDIR)$(datadir)/doc/$(GARNAME)/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/codec/trunk/checksums =================================================================== --- csw/mgar/pkg/codec/trunk/checksums (rev 0) +++ csw/mgar/pkg/codec/trunk/checksums 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,3 @@ +aad3948be13476d9599cadaf146bc92a download/commons-codec-1.3.tar.gz +90a1d84e661f6081d96ca9b82d62eabc download/CSWajccodec.gspec +c86330052d7ff3bb49e9f648f5df13b1 download/CSWajccodecdoc.gspec Added: csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec =================================================================== --- csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec (rev 0) +++ csw/mgar/pkg/codec/trunk/files/CSWajccodec.gspec 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,5 @@ +%var bitname commons_codec +%var pkgname CSWajccodec +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{SRC_FIRSTMOD}/LICENSE Added: csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec =================================================================== --- csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec (rev 0) +++ csw/mgar/pkg/codec/trunk/files/CSWajccodecdoc.gspec 2009-01-31 22:59:24 UTC (rev 2959) @@ -0,0 +1,5 @@ +%var bitname commons_codec_doc +%var pkgname CSWajccodecdoc +%var arch all +%include url file://%{PKGLIB}/csw_dyndepend.gspec +%copyright url file://%{SRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.