From valholla at users.sourceforge.net Fri May 1 03:27:12 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 01:27:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[4625] csw/mgar/pkg Message-ID: Revision: 4625 http://gar.svn.sourceforge.net/gar/?rev=4625&view=rev Author: valholla Date: 2009-05-01 01:27:12 +0000 (Fri, 01 May 2009) Log Message: ----------- initial checkin Added Paths: ----------- csw/mgar/pkg/mediawiki/ csw/mgar/pkg/mediawiki/Makefile csw/mgar/pkg/mediawiki/branches/ csw/mgar/pkg/mediawiki/tags/ csw/mgar/pkg/mediawiki/trunk/ csw/mgar/pkg/mediawiki/trunk/Makefile csw/mgar/pkg/mediawiki/trunk/checksums csw/mgar/pkg/mediawiki/trunk/files/ csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW Added: csw/mgar/pkg/mediawiki/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/Makefile (rev 0) +++ csw/mgar/pkg/mediawiki/Makefile 2009-05-01 01:27:12 UTC (rev 4625) @@ -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) Added: csw/mgar/pkg/mediawiki/trunk/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/trunk/Makefile (rev 0) +++ csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 01:27:12 UTC (rev 4625) @@ -0,0 +1,47 @@ +GARNAME = mediawiki +GARVERSION = 1.14.0 +CATEGORIES = apps +RELVER = $(shell echo $(GARVERSION) |gsed 's/\(^[0-9].*\)\.[0-9]*/\1/') +DESCRIPTION = A free software wiki package written in PHP +define BLURB + MediaWiki is a free software wiki package written in PHP, + originally for use on Wikipedia. It is now used by several + other projects of the non-profit Wikimedia Foundation and + by many other wikis, including this website, the home of MediaWiki. +endef + +MASTER_SITES = http://download.wikimedia.org/mediawiki/$(RELVER)/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWmediawiki CSWmediawiki-math +CATALOGNAME_CSWmediawiki = mediawiki +SPKG_DESC_CSWmediawiki = $(DESCRIPTION) +CATALOGNAME_CSWmediawiki-math = mediawiki_math +SPKG_DESC_CSWmediawiki-math = LaTeX compatable Math plugin for MediaWiki + +REQUIRED_PKGS_CSWmediawiki = CSWphp5 +REQUIRED_PKGS_CSWmediawiki-math = CSWphp5 CSWmediawiki + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +ARCHALL_CSWmediawiki = 1 +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = math +INSTALL_SCRIPTS = custom +TEST_SCRIPTS = skip + +build-math: + gmake $(WORKSRC)/math + @$(MAKECOOKIE) + +install-custom: + @ginstall -d $(INSTALLISADIR)$(prefix)/mediawiki + @(cd $(WORKSRC); /usr/bin/pax -rw -v ./ $(abspath $(INSTALLISADIR)$(prefix)/mediawiki)) + +test-skip: + @$(MAKECOOKIE) + +include gar/category.mk + Added: csw/mgar/pkg/mediawiki/trunk/checksums =================================================================== --- csw/mgar/pkg/mediawiki/trunk/checksums (rev 0) +++ csw/mgar/pkg/mediawiki/trunk/checksums 2009-05-01 01:27:12 UTC (rev 4625) @@ -0,0 +1 @@ +36bfd924e92b61a6f5fe70c6bc8e5aac download/mediawiki-1.14.0.tar.gz Added: csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall (rev 0) +++ csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall 2009-05-01 01:27:12 UTC (rev 4625) @@ -0,0 +1,44 @@ +#!/bin/sh + +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +AP2_PREFIX=$CSW_PREFIX/apache2 +AP2_BINDIR=$AP2_PREFIX/sbin +AP2_LIBEXEC=$AP2_PREFIX/libexec +AP2_CONFDIR=$AP2_PREFIX/etc +AP2_EXTRADIR=$AP2_CONFDIR/extra +AP2_CONFIG=$AP2_CONFDIR/httpd.conf + +# Enable MediaWiki in httpd.conf +FOUND=`grep "^Include etc/extra/httpd-mediawiki.conf" ${AP2_CONFIG}` + +if [ -n "`grep "^Include etc/extra/httpd-mediawiki.conf" ${AP2_CONFIG}`" ]; then + echo "MediaWiki Already Enabled" +elif [ -n "`grep "^#Include etc/extra/httpd-mediawiki.conf" ${AP2_CONFIG}`" ]; then + echo "Re-enabling existing config" + perl -i -pe 's|^#(Include etc/extra/httpd-mediawiki.conf)|$1|' ${AP2_CONFIG} +else + echo "Adding Include for httpd-mediawiki.conf" + cat << _END_ >>${AP2_CONFIG} +Include etc/extra/httpd-mediawiki.conf +_END_ +fi + +file = ${AP2_EXTRADIR}/httpd-mediawiki.conf +if [ ! -f ${file} ]; then + echo "Creating ${file} from ${file}.CSW" + cp ${file}.CSW ${file} +else + echo "Preserving Existing ${file}" +fi + +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled MediaWiki +* in ${AP2_CONFIG} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ + +exit 0 + Added: csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove (rev 0) +++ csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove 2009-05-01 01:27:12 UTC (rev 4625) @@ -0,0 +1,24 @@ +#!/bin/sh + +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +AP2_PREFIX=$CSW_PREFIX/apache2 +AP2_BINDIR=$AP2_PREFIX/sbin +AP2_LIBEXEC=$AP2_PREFIX/libexec +AP2_CONFDIR=$AP2_PREFIX/etc +AP2_EXTRADIR=$AP2_CONFDIR/extra +AP2_CONFIG=$AP2_CONFDIR/httpd.conf + +# Disable MediaWiki in httpd.conf +perl -i -pe 's|^(Include etc/extra/httpd-mediawiki.conf)|#$1|' ${AP2_CONFIG} + +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled MediaWiki +* in ${AP2_CONFIG} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ + +exit 0 + Added: csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW (rev 0) +++ csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW 2009-05-01 01:27:12 UTC (rev 4625) @@ -0,0 +1,12 @@ + + + Alias /MediaWiki /opt/csw/mediawiki + + + + AllowOverride None + Options None + Order allow,deny + Allow from all + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 03:28:29 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 01:28:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[4626] csw/mgar/pkg/mediawiki/trunk/ Message-ID: Revision: 4626 http://gar.svn.sourceforge.net/gar/?rev=4626&view=rev Author: valholla Date: 2009-05-01 01:28:29 +0000 (Fri, 01 May 2009) Log Message: ----------- externals propset Property Changed: ---------------- csw/mgar/pkg/mediawiki/trunk/ Property changes on: csw/mgar/pkg/mediawiki/trunk ___________________________________________________________________ Added: svn:externals + 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 valholla at users.sourceforge.net Fri May 1 03:38:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 01:38:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4627] csw/mgar/pkg/mediawiki/trunk/ Message-ID: Revision: 4627 http://gar.svn.sourceforge.net/gar/?rev=4627&view=rev Author: valholla Date: 2009-05-01 01:38:09 +0000 (Fri, 01 May 2009) Log Message: ----------- set ignores Property Changed: ---------------- csw/mgar/pkg/mediawiki/trunk/ Property changes on: csw/mgar/pkg/mediawiki/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 03:54:20 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 01:54:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[4628] csw/mgar/pkg/mediawiki/trunk/Makefile Message-ID: Revision: 4628 http://gar.svn.sourceforge.net/gar/?rev=4628&view=rev Author: valholla Date: 2009-05-01 01:54:20 +0000 (Fri, 01 May 2009) Log Message: ----------- package checkin Modified Paths: -------------- csw/mgar/pkg/mediawiki/trunk/Makefile Modified: csw/mgar/pkg/mediawiki/trunk/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 01:38:09 UTC (rev 4627) +++ csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 01:54:20 UTC (rev 4628) @@ -22,10 +22,12 @@ REQUIRED_PKGS_CSWmediawiki = CSWphp5 REQUIRED_PKGS_CSWmediawiki-math = CSWphp5 CSWmediawiki +PKGFILES_CSWmediawiki-math = # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +GARCOMPILER = GNU ARCHALL_CSWmediawiki = 1 CONFIGURE_SCRIPTS = BUILD_SCRIPTS = math @@ -33,7 +35,7 @@ TEST_SCRIPTS = skip build-math: - gmake $(WORKSRC)/math + cd $(WORKSRC)/math; $(BUILD_ENV) gmake @$(MAKECOOKIE) install-custom: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 04:01:20 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 02:01:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[4629] csw/mgar/pkg/mediawiki/trunk/Makefile Message-ID: Revision: 4629 http://gar.svn.sourceforge.net/gar/?rev=4629&view=rev Author: valholla Date: 2009-05-01 02:01:20 +0000 (Fri, 01 May 2009) Log Message: ----------- filter for mediawiki-math Modified Paths: -------------- csw/mgar/pkg/mediawiki/trunk/Makefile Modified: csw/mgar/pkg/mediawiki/trunk/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 01:54:20 UTC (rev 4628) +++ csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 02:01:20 UTC (rev 4629) @@ -22,7 +22,8 @@ REQUIRED_PKGS_CSWmediawiki = CSWphp5 REQUIRED_PKGS_CSWmediawiki-math = CSWphp5 CSWmediawiki -PKGFILES_CSWmediawiki-math = +PKGFILES_CSWmediawiki-math = .*/mediawiki/math.* + # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 05:02:37 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 03:02:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4630] csw/mgar/pkg/mediawiki/trunk Message-ID: Revision: 4630 http://gar.svn.sourceforge.net/gar/?rev=4630&view=rev Author: valholla Date: 2009-05-01 03:02:37 +0000 (Fri, 01 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/mediawiki/trunk/Makefile csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove Removed Paths: ------------- csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW Modified: csw/mgar/pkg/mediawiki/trunk/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 02:01:20 UTC (rev 4629) +++ csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 03:02:37 UTC (rev 4630) @@ -20,7 +20,7 @@ SPKG_DESC_CSWmediawiki-math = LaTeX compatable Math plugin for MediaWiki REQUIRED_PKGS_CSWmediawiki = CSWphp5 -REQUIRED_PKGS_CSWmediawiki-math = CSWphp5 CSWmediawiki +REQUIRED_PKGS_CSWmediawiki-math = CSWphp5 CSWmediawiki CSWtetex PKGFILES_CSWmediawiki-math = .*/mediawiki/math.* Modified: csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall 2009-05-01 02:01:20 UTC (rev 4629) +++ csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.postinstall 2009-05-01 03:02:37 UTC (rev 4630) @@ -8,35 +8,18 @@ AP2_EXTRADIR=$AP2_CONFDIR/extra AP2_CONFIG=$AP2_CONFDIR/httpd.conf -# Enable MediaWiki in httpd.conf -FOUND=`grep "^Include etc/extra/httpd-mediawiki.conf" ${AP2_CONFIG}` +AP2_SERVERNAME=`/bin/sed -ne 's/^[\s]*ServerName \(.*\)/\1/p' ${AP2_CONFIG}` +AP2_DOCROOT=`/bin/sed -ne 's/^[\s]*DocumentRoot "\(.*\)"/\1/p' ${AP2_CONFIG}` +/bin/ln -s /opt/csw/mediawiki ${AP2_DOCROOT}/wiki -if [ -n "`grep "^Include etc/extra/httpd-mediawiki.conf" ${AP2_CONFIG}`" ]; then - echo "MediaWiki Already Enabled" -elif [ -n "`grep "^#Include etc/extra/httpd-mediawiki.conf" ${AP2_CONFIG}`" ]; then - echo "Re-enabling existing config" - perl -i -pe 's|^#(Include etc/extra/httpd-mediawiki.conf)|$1|' ${AP2_CONFIG} -else - echo "Adding Include for httpd-mediawiki.conf" - cat << _END_ >>${AP2_CONFIG} -Include etc/extra/httpd-mediawiki.conf -_END_ -fi - -file = ${AP2_EXTRADIR}/httpd-mediawiki.conf -if [ ! -f ${file} ]; then - echo "Creating ${file} from ${file}.CSW" - cp ${file}.CSW ${file} -else - echo "Preserving Existing ${file}" -fi - cat << _EOF_ ****************************************************************************** * NOTICE: Successfully Enabled MediaWiki * in ${AP2_CONFIG} * -* You will need to restart your web server to finish the install +* You will need to point your web browser to +* http://${AP2_SERVERNAME}/wiki/config +* To configure your Wiki ****************************************************************************** _EOF_ Modified: csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove 2009-05-01 02:01:20 UTC (rev 4629) +++ csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki.preremove 2009-05-01 03:02:37 UTC (rev 4630) @@ -8,17 +8,8 @@ AP2_EXTRADIR=$AP2_CONFDIR/extra AP2_CONFIG=$AP2_CONFDIR/httpd.conf -# Disable MediaWiki in httpd.conf -perl -i -pe 's|^(Include etc/extra/httpd-mediawiki.conf)|#$1|' ${AP2_CONFIG} +AP2_DOCROOT=`/bin/sed -ne 's/^[\s]*DocumentRoot "\(.*\)"/\1/p' ${AP2_CONFIG}` +/bin/rm -f ${AP2_DOCROOT}/wiki -cat << _EOF_ -****************************************************************************** -* NOTICE: Successfully Disabled MediaWiki -* in ${AP2_CONFIG} -* -* You will need to restart your web server to finish the removal -****************************************************************************** -_EOF_ - exit 0 Deleted: csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW 2009-05-01 02:01:20 UTC (rev 4629) +++ csw/mgar/pkg/mediawiki/trunk/files/httpd-mediawiki.conf.CSW 2009-05-01 03:02:37 UTC (rev 4630) @@ -1,12 +0,0 @@ - - - Alias /MediaWiki /opt/csw/mediawiki - - - - AllowOverride None - Options None - Order allow,deny - Allow from all - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 05:15:52 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 03:15:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4631] csw/mgar/pkg/mediawiki/trunk Message-ID: Revision: 4631 http://gar.svn.sourceforge.net/gar/?rev=4631&view=rev Author: valholla Date: 2009-05-01 03:15:52 +0000 (Fri, 01 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/mediawiki/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki-math.postinstall Modified: csw/mgar/pkg/mediawiki/trunk/Makefile =================================================================== --- csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 03:02:37 UTC (rev 4630) +++ csw/mgar/pkg/mediawiki/trunk/Makefile 2009-05-01 03:15:52 UTC (rev 4631) @@ -12,7 +12,11 @@ MASTER_SITES = http://download.wikimedia.org/mediawiki/$(RELVER)/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += CSWmediawiki-math.postinstall +DISTFILES += CSWmediawiki.postinstall +DISTFILES += CSWmediawiki.preremove + PACKAGES = CSWmediawiki CSWmediawiki-math CATALOGNAME_CSWmediawiki = mediawiki SPKG_DESC_CSWmediawiki = $(DESCRIPTION) Added: csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki-math.postinstall =================================================================== --- csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki-math.postinstall (rev 0) +++ csw/mgar/pkg/mediawiki/trunk/files/CSWmediawiki-math.postinstall 2009-05-01 03:15:52 UTC (rev 4631) @@ -0,0 +1,21 @@ +#!/bin/sh + +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +AP2_PREFIX=$CSW_PREFIX/apache2 +AP2_BINDIR=$AP2_PREFIX/sbin +AP2_LIBEXEC=$AP2_PREFIX/libexec +AP2_CONFDIR=$AP2_PREFIX/etc +AP2_EXTRADIR=$AP2_CONFDIR/extra +AP2_CONFIG=$AP2_CONFDIR/httpd.conf + +cat << _EOF_ +****************************************************************************** +* +* DO NOT FORGET: +* You will need to set \$wgUseTeX to true in your LocalSettings.php +* +****************************************************************************** +_EOF_ + +exit 0 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 05:17:00 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 03:17:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[4632] csw/mgar/pkg/mediawiki/trunk/checksums Message-ID: Revision: 4632 http://gar.svn.sourceforge.net/gar/?rev=4632&view=rev Author: valholla Date: 2009-05-01 03:17:00 +0000 (Fri, 01 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/mediawiki/trunk/checksums Modified: csw/mgar/pkg/mediawiki/trunk/checksums =================================================================== --- csw/mgar/pkg/mediawiki/trunk/checksums 2009-05-01 03:15:52 UTC (rev 4631) +++ csw/mgar/pkg/mediawiki/trunk/checksums 2009-05-01 03:17:00 UTC (rev 4632) @@ -1 +1,4 @@ +ef5ecd4900918e5bf67929a94a793f22 download/CSWmediawiki-math.postinstall +7643276ab2527aa36dbd6c99c1493f73 download/CSWmediawiki.postinstall +03b5e4fe1408f1fe2a1799b71df504af download/CSWmediawiki.preremove 36bfd924e92b61a6f5fe70c6bc8e5aac download/mediawiki-1.14.0.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 Fri May 1 15:09:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 13:09:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[4633] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 4633 http://gar.svn.sourceforge.net/gar/?rev=4633&view=rev Author: dmichelsen Date: 2009-05-01 13:09:55 +0000 (Fri, 01 May 2009) Log Message: ----------- mGAR v2: Call bin/upstream_watch only when needed Modified Paths: -------------- csw/mgar/gar/v2/gar.lib.mk Modified: csw/mgar/gar/v2/gar.lib.mk =================================================================== --- csw/mgar/gar/v2/gar.lib.mk 2009-05-01 03:17:00 UTC (rev 4632) +++ csw/mgar/gar/v2/gar.lib.mk 2009-05-01 13:09:55 UTC (rev 4633) @@ -160,12 +160,12 @@ UPSTREAM_MASTER_SITES ?= $(MASTER_SITES) UW_ARGS = $(addprefix -u ,$(UPSTREAM_MASTER_SITES)) SF_ARGS = $(addprefix -s ,$(UPSTREAM_USE_SF)) -ifneq ($(UFILES_REGEX), "") - FILES2CHECK := $(shell http_proxy=$(http_proxy) ftp_proxy=$(ftp_proxy) $(GARBIN)/upstream_watch $(UW_ARGS) $(SF_ARGS) $(addsuffix ',$(addprefix ',$(UFILES_REGEX)))) -else - FILES2CHECK := "" -endif +define files2check +$(if $(UFILES_REGEX),$(shell http_proxy=$(http_proxy) ftp_proxy=$(ftp_proxy) $(GARBIN)/upstream_watch $(UW_ARGS) $(SF_ARGS) $(addsuffix ',$(addprefix ',$(UFILES_REGEX))))) +endef + +check-upstream-and-mail: FILES2CHECK = $(call files2check) check-upstream-and-mail: @if [ -n '$(FILES2CHECK)' ]; then \ NEW_FILES=""; \ @@ -227,6 +227,7 @@ fi; \ fi +check-upstream: FILES2CHECK = $(call files2check) check-upstream: @if [ -n '$(FILES2CHECK)' ]; then \ NEW_FILES=""; \ 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 May 1 16:37:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 14:37:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[4634] csw/mgar/gar/v2 Message-ID: Revision: 4634 http://gar.svn.sourceforge.net/gar/?rev=4634&view=rev Author: dmichelsen Date: 2009-05-01 14:37:31 +0000 (Fri, 01 May 2009) Log Message: ----------- mGAR v2: Allow category-specific compiler flags, use x11/category.mk as example Modified Paths: -------------- csw/mgar/gar/v2/categories/x11/category.mk csw/mgar/gar/v2/gar.conf.mk Modified: csw/mgar/gar/v2/categories/x11/category.mk =================================================================== --- csw/mgar/gar/v2/categories/x11/category.mk 2009-05-01 13:09:55 UTC (rev 4633) +++ csw/mgar/gar/v2/categories/x11/category.mk 2009-05-01 14:37:31 UTC (rev 4634) @@ -3,41 +3,22 @@ XCB_MASTER_SITES = http://xcb.freedesktop.org/dist/ # C and C++ compiler flags -ifeq ($(GARCOMPILER),GNU) - CFLAGS += - CXXFLAGS += -else - CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION - CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -endif +_CATEGORY_CFLAGS_SOS11 = -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION +_CATEGORY_CFLAGS_SOS12 = -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION +_CATEGORY_CXXFLAGS_SOS11 = -xlibmil -xlibmopt -features=tmplife -norunpath +_CATEGORY_CXXFLAGS_SOS12 = -xlibmil -xlibmopt -features=tmplife -norunpath -# Preprocessor flags +_CATEGORY_CFLAGS = $(_CATEGORY_CFLAGS_$(GARCOMPILER)) +_CATEGORY_CXXFLAGS = $(_CATEGORY_CFLAGS_$(GARCOMPILER)) -# Linker flags -#LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib - # Defines some tools used by autostuff GREP = ggrep _CATEGORY_COMMON_EXPORTS = GREP -# export the variables -#export LDFLAGS CXXFLAGS CFLAGS CPPFLAGS GREP - -# pkg-config options -#_CATEGORY_PKG_CONFIG_PATH = $(abspath $(prefix)/X11/lib/$(MM_LIBDIR)/pkgconfig) - prefix = $(BUILD_PREFIX)/X11 -# Configure common options -#CONFIGURE_ARGS = --prefix=/opt/csw/X11 -#CONFIGURE_ARGS += --exec-prefix=/opt/csw/X11 -#CONFIGURE_ARGS += --libdir=/opt/csw/X11/lib -#CONFIGURE_ARGS += --includedir=/opt/csw/X11/include -#CONFIGURE_ARGS += --datadir=/opt/csw/X11/share -#CONFIGURE_ARGS += --mandir=/opt/csw/X11/share/man - # No tests scripts, thus there is no "gmake test" target -TEST_SCRIPTS = +TEST_SCRIPTS = # Includes the rest of gar include gar/gar.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-05-01 13:09:55 UTC (rev 4633) +++ csw/mgar/gar/v2/gar.conf.mk 2009-05-01 14:37:31 UTC (rev 4634) @@ -466,12 +466,12 @@ CC_HOME = $($(GARCOMPILER)_CC_HOME) CC = $($(GARCOMPILER)_CC) CXX = $($(GARCOMPILER)_CXX) -CFLAGS ?= $(strip $($(GARCOMPILER)_CC_FLAGS) $(EXTRA_CFLAGS) $(INCLUDE_FLAGS)) -CXXFLAGS ?= $(strip $($(GARCOMPILER)_CXX_FLAGS) $(EXTRA_CXXFLAGS) $(INCLUDE_FLAGS)) -CPPFLAGS ?= $(strip $($(GARCOMPILER)_CPP_FLAGS) $(EXTRA_CPPFLAGS) $(INCLUDE_FLAGS)) -LDFLAGS ?= $(strip $($(GARCOMPILER)_LD_FLAGS) $(EXTRA_LDFLAGS) $(LINKER_FLAGS)) -ASFLAGS ?= $(strip $($(GARCOMPILER)_AS_FLAGS) $(EXTRA_ASFLAGS)) -OPTFLAGS ?= $(strip $($(GARCOMPILER)_CC_FLAGS) $(EXTRA_OPTFLAGS)) +CFLAGS ?= $(strip $($(GARCOMPILER)_CC_FLAGS) $(_CATEGORY_CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE_FLAGS)) +CXXFLAGS ?= $(strip $($(GARCOMPILER)_CXX_FLAGS) $(_CATEGORY_CXXFLAGS) $(EXTRA_CXXFLAGS) $(INCLUDE_FLAGS)) +CPPFLAGS ?= $(strip $($(GARCOMPILER)_CPP_FLAGS) $(_CATEGORY_CPPFLAGS) $(EXTRA_CPPFLAGS) $(INCLUDE_FLAGS)) +LDFLAGS ?= $(strip $($(GARCOMPILER)_LD_FLAGS) $(_CATEGORY_LDFLAGS) $(EXTRA_LDFLAGS) $(LINKER_FLAGS)) +ASFLAGS ?= $(strip $($(GARCOMPILER)_AS_FLAGS) $(_CATEGORY_ASFLAGS) $(EXTRA_ASFLAGS)) +OPTFLAGS ?= $(strip $($(GARCOMPILER)_CC_FLAGS) $(_CATEGORY_OPTFLAGS) $(EXTRA_OPTFLAGS)) GCC3_LD_OPTIONS = -R$(GCC3_CC_HOME)/lib $(EXTRA_GCC3_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) $(EXTRA_LD_OPTIONS) GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) $(EXTRA_LD_OPTIONS) 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 May 1 17:25:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 15:25:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4635] csw/mgar/pkg/x11/libxcb/trunk Message-ID: Revision: 4635 http://gar.svn.sourceforge.net/gar/?rev=4635&view=rev Author: dmichelsen Date: 2009-05-01 15:25:25 +0000 (Fri, 01 May 2009) Log Message: ----------- x11/libxcb: Update to 1.2 Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile csw/mgar/pkg/x11/libxcb/trunk/checksums Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-01 14:37:31 UTC (rev 4634) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-01 15:25:25 UTC (rev 4635) @@ -1,5 +1,5 @@ GARNAME = libxcb -GARVERSION = 1.1 +GARVERSION = 1.2 CATEGORIES = x11 DESCRIPTION = The XCB library @@ -11,7 +11,7 @@ MASTER_SITES = http://xcb.freedesktop.org/dist/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -PREREQUISITE_PKGS = CSWlibxaudevel CSWlibpthreadstubs CSWdoxygen +PREREQUISITE_PKGS = CSWlibxaudevel CSWlibpthreadstubs CSWdoxygen CSWpython REQUIRED_PKGS_CSWlibxcb = CSWxcbproto CSWlibxau PACKAGES = CSWlibxcb CSWlibxcbdevel CSWlibxcbdoc Modified: csw/mgar/pkg/x11/libxcb/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/checksums 2009-05-01 14:37:31 UTC (rev 4634) +++ csw/mgar/pkg/x11/libxcb/trunk/checksums 2009-05-01 15:25:25 UTC (rev 4635) @@ -1 +1 @@ -90e02378256d5dec96ddc6c7d72119b6 download/libxcb-1.1.tar.gz +f55c731d32ec1a555c77ebbbc8f386aa download/libxcb-1.2.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 Fri May 1 17:54:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 15:54:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4636] csw/mgar/pkg/x11/libX11/trunk Message-ID: Revision: 4636 http://gar.svn.sourceforge.net/gar/?rev=4636&view=rev Author: dmichelsen Date: 2009-05-01 15:54:13 +0000 (Fri, 01 May 2009) Log Message: ----------- x11/libx11: Update to dynamic gspec, license and bump to 1.2 Modified Paths: -------------- csw/mgar/pkg/x11/libX11/trunk/Makefile csw/mgar/pkg/x11/libX11/trunk/checksums 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-05-01 15:25:25 UTC (rev 4635) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-01 15:54:13 UTC (rev 4636) @@ -1,32 +1,38 @@ GARNAME = libX11 -GARVERSION = 1.1.5 +GARVERSION = 1.2 CATEGORIES = x11 DESCRIPTION = X11 client-side library define BLURB -This package provides a client interface to the X Window System, otherwise known as 'Xlib'. It provides a complete API for the basic functions of the window system. + This package provides a client interface to the X Window System, + otherwise known as 'Xlib'. It provides a complete API for the basic + functions of the window system. endef MASTER_SITES =http://xorg.freedesktop.org/releases/individual/lib/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -PKGDIST = $(GARNAME)-$(GARVERSION).tar.gz # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +PREREQUSITE_PKGS = CSWxextproto CSWxtrans CSWkbproto CSWinputproto + +PACKAGES = CSWlibx11 CSWlibx11devel + SPKG_DESC_CSWlibx11 = $(DESCRIPTION) SPKG_DESC_CSWlibx11devel = $(DESCRIPTION) development package -DISTFILES += $(call admfiles,CSWlibx11devel, ) -DISTFILES += $(call admfiles,CSWlibx11, ) +CATALOGNAME_CSWlibx11 = libx11 +CATALOGNAME_CSWlibx11devel = libx11_devel PKGFILES_CSWlibx11devel = $(PKGFILES_DEVEL) -PKGFILES_CSWlibx11devel += $(prefix)/X11/include/.* -PKGFILES_CSWlibx11devel += $(prefix)/X11/lib/.*\.a -PKGFILES_CSWlibx11devel += $(prefix)/X11/lib/pkgconfig/.* REQUIRED_PKGS_CSWlibx11 = CSWlibxcb REQUIRED_PKGS_CSWlibx11devel = CSWlibx11 +BUILD64 = 1 +NOISALIST = 1 +CONFIGURE_ARGS = $(DIRPATHS) + include gar/category.mk Modified: csw/mgar/pkg/x11/libX11/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/checksums 2009-05-01 15:25:25 UTC (rev 4635) +++ csw/mgar/pkg/x11/libX11/trunk/checksums 2009-05-01 15:54:13 UTC (rev 4636) @@ -1,3 +1 @@ -2feb39a0de6f05b25c308268691d960c download/libX11-1.1.5.tar.gz -227f750748ff9b31fbf803f6a3d2110a download/CSWlibx11devel.gspec -8b5aa1b7f74313397e420e0c3166aaa4 download/CSWlibx11.gspec +a8e045794665c9fb7486c0faa21e3211 download/libX11-1.2.tar.gz Deleted: csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec 2009-05-01 15:25:25 UTC (rev 4635) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11.gspec 2009-05-01 15:54:13 UTC (rev 4636) @@ -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-05-01 15:25:25 UTC (rev 4635) +++ csw/mgar/pkg/x11/libX11/trunk/files/CSWlibx11devel.gspec 2009-05-01 15:54:13 UTC (rev 4636) @@ -1,4 +0,0 @@ -%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 dmichelsen at users.sourceforge.net Fri May 1 18:29:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 16:29:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[4637] csw/mgar/pkg/x11/xtrans/trunk Message-ID: Revision: 4637 http://gar.svn.sourceforge.net/gar/?rev=4637&view=rev Author: dmichelsen Date: 2009-05-01 16:29:35 +0000 (Fri, 01 May 2009) Log Message: ----------- x11/xtrans: Update to 1.2.3 Modified Paths: -------------- csw/mgar/pkg/x11/xtrans/trunk/Makefile csw/mgar/pkg/x11/xtrans/trunk/checksums Modified: csw/mgar/pkg/x11/xtrans/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-05-01 15:54:13 UTC (rev 4636) +++ csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-05-01 16:29:35 UTC (rev 4637) @@ -1,5 +1,5 @@ GARNAME = xtrans -GARVERSION = 1.2.2 +GARVERSION = 1.2.3 CATEGORIES = x11 DESCRIPTION = X transport library @@ -8,7 +8,7 @@ at time of writing, it includes support for UNIX sockets, IPv4, IPv6, and DECnet. endef -MASTER_SITES =http://xorg.freedesktop.org/releases/individual/lib/ +MASTER_SITES = http://xorg.freedesktop.org/releases/individual/lib/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz # We define upstream file regex so we can be notifed of new upstream software release Modified: csw/mgar/pkg/x11/xtrans/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/xtrans/trunk/checksums 2009-05-01 15:54:13 UTC (rev 4636) +++ csw/mgar/pkg/x11/xtrans/trunk/checksums 2009-05-01 16:29:35 UTC (rev 4637) @@ -1 +1 @@ -1b9362b6c7577f1cd5009703949ac5d0 download/xtrans-1.2.2.tar.gz +9e9dcfb9555bbe4eae7ceeb33d9d710e download/xtrans-1.2.3.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 Fri May 1 18:59:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 16:59:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4638] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 4638 http://gar.svn.sourceforge.net/gar/?rev=4638&view=rev Author: dmichelsen Date: 2009-05-01 16:59:03 +0000 (Fri, 01 May 2009) Log Message: ----------- x11/libxcb: Require CSWxcbproto only on compiletime Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-01 16:29:35 UTC (rev 4637) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-01 16:59:03 UTC (rev 4638) @@ -11,8 +11,8 @@ MASTER_SITES = http://xcb.freedesktop.org/dist/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -PREREQUISITE_PKGS = CSWlibxaudevel CSWlibpthreadstubs CSWdoxygen CSWpython -REQUIRED_PKGS_CSWlibxcb = CSWxcbproto CSWlibxau +PREREQUISITE_PKGS = CSWlibxaudevel CSWlibpthreadstubs CSWdoxygen CSWpython CSWxcbproto +REQUIRED_PKGS_CSWlibxcb = CSWlibxau PACKAGES = CSWlibxcb CSWlibxcbdevel CSWlibxcbdoc # 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 valholla at users.sourceforge.net Fri May 1 20:19:38 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 18:19:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[4639] csw/mgar/pkg/gcc4/trunk/files Message-ID: Revision: 4639 http://gar.svn.sourceforge.net/gar/?rev=4639&view=rev Author: valholla Date: 2009-05-01 18:19:37 +0000 (Fri, 01 May 2009) Log Message: ----------- fix for gnative2ascii Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk csw/mgar/pkg/gcc4/trunk/files/package_files.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 16:59:03 UTC (rev 4638) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 18:19:37 UTC (rev 4639) @@ -94,7 +94,6 @@ ISAEXEC_FILES += /opt/csw/gcc4/bin/jv-convert ISAEXEC_FILES += /opt/csw/gcc4/bin/gcj ISAEXEC_FILES += /opt/csw/gcc4/bin/gij -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnative2ascii ISAEXEC_FILES += /opt/csw/gcc4/bin/gserialver ISAEXEC_FILES += /opt/csw/gcc4/bin/gappletviewer ISAEXEC_FILES += /opt/csw/gcc4/bin/gcj-dbtool Modified: csw/mgar/pkg/gcc4/trunk/files/package_files.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/package_files.mk 2009-05-01 16:59:03 UTC (rev 4638) +++ csw/mgar/pkg/gcc4/trunk/files/package_files.mk 2009-05-01 18:19:37 UTC (rev 4639) @@ -7,7 +7,7 @@ PKGFILES_CSWgcc4ada += .*/gcc4/.*/adalib/.* PKGFILES_CSWgcc4ada += .*/gcc4/.*/adainclude/.* PKGFILES_CSWgcc4ada += .*/gcc4/info/.*gnat.* -PKGFILES_CSWgcc4ada += .*/gcc4/bin/gnat.* +PKGFILES_CSWgcc4ada += .*/gcc4/bin/gnat(?!ive).* ## gcc4gfortran Definitions PKGFILES_CSWgcc4gfortran = .*/gcc4/bin/.*gfortran This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 20:46:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 18:46:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[4640] csw/mgar/pkg/python/trunk/Makefile Message-ID: Revision: 4640 http://gar.svn.sourceforge.net/gar/?rev=4640&view=rev Author: valholla Date: 2009-05-01 18:46:16 +0000 (Fri, 01 May 2009) Log Message: ----------- update to Python 2.6.2 Modified Paths: -------------- csw/mgar/pkg/python/trunk/Makefile Modified: csw/mgar/pkg/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/python/trunk/Makefile 2009-05-01 18:19:37 UTC (rev 4639) +++ csw/mgar/pkg/python/trunk/Makefile 2009-05-01 18:46:16 UTC (rev 4640) @@ -1,5 +1,5 @@ GARNAME = Python -GARVERSION = 2.6.1 +GARVERSION = 2.6.2 CATEGORIES = lang PACKAGES = CSWpython CSWpython-tk CSWidle This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 20:56:19 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 18:56:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[4641] csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Message-ID: Revision: 4641 http://gar.svn.sourceforge.net/gar/?rev=4641&view=rev Author: valholla Date: 2009-05-01 18:56:19 +0000 (Fri, 01 May 2009) Log Message: ----------- no 64bit ada remove from ISAEXEC Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 18:46:16 UTC (rev 4640) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 18:56:19 UTC (rev 4641) @@ -100,18 +100,5 @@ ISAEXEC_FILES += /opt/csw/gcc4/bin/gjar ISAEXEC_FILES += /opt/csw/gcc4/bin/gorbd ISAEXEC_FILES += /opt/csw/gcc4/bin/gtnameserv -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnat -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatbind -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatbl -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatchop -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatclean -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatfind ISAEXEC_FILES += /opt/csw/gcc4/bin/gnative2ascii -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatkr -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatlink -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatls -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatmake -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatname -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatprep -ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatxref endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 1 21:16:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 19:16:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4642] csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Message-ID: Revision: 4642 http://gar.svn.sourceforge.net/gar/?rev=4642&view=rev Author: valholla Date: 2009-05-01 19:16:25 +0000 (Fri, 01 May 2009) Log Message: ----------- no 64bit ada remove from ISAEXEC Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 18:56:19 UTC (rev 4641) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 19:16:25 UTC (rev 4642) @@ -101,4 +101,18 @@ ISAEXEC_FILES += /opt/csw/gcc4/bin/gorbd ISAEXEC_FILES += /opt/csw/gcc4/bin/gtnameserv ISAEXEC_FILES += /opt/csw/gcc4/bin/gnative2ascii +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/gnat +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatls +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatname +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatmake +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatclean +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatkr +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatbind +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnat +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatbl +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatchop +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatfind +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatxref +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatprep +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatlink 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 May 1 23:23:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 01 May 2009 21:23:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4643] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 4643 http://gar.svn.sourceforge.net/gar/?rev=4643&view=rev Author: dmichelsen Date: 2009-05-01 21:23:47 +0000 (Fri, 01 May 2009) Log Message: ----------- x11/libxcb: Add flag to enable use of stdint.h on Solaris Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-01 19:16:25 UTC (rev 4642) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-01 21:23:47 UTC (rev 4643) @@ -36,5 +36,7 @@ NOISALIST = 1 CONFIGURE_ARGS = $(DIRPATHS) +EXTRA_CFLAGS = -D__solaris__ + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat May 2 00:53:40 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 01 May 2009 22:53:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[4644] csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Message-ID: Revision: 4644 http://gar.svn.sourceforge.net/gar/?rev=4644&view=rev Author: valholla Date: 2009-05-01 22:53:40 +0000 (Fri, 01 May 2009) Log Message: ----------- fix isaexec for ada Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 21:23:47 UTC (rev 4643) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-01 22:53:40 UTC (rev 4644) @@ -1,4 +1,3 @@ -AMD_DEBUG = 1 ifeq ($(AMD_DEBUG),) _DBG=@ else @@ -101,18 +100,18 @@ ISAEXEC_FILES += /opt/csw/gcc4/bin/gorbd ISAEXEC_FILES += /opt/csw/gcc4/bin/gtnameserv ISAEXEC_FILES += /opt/csw/gcc4/bin/gnative2ascii -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/gnat -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatls -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatname -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatmake -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatclean -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatkr -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatbind -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnat -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatbl -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatchop -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatfind -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatxref -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatprep -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/gcc4/bin/i386/gnatlink +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnat +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatls +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatname +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatmake +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatclean +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatkr +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatbind +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnat +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatbl +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatchop +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatfind +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatxref +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatprep +ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatlink 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 Sat May 2 08:48:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 02 May 2009 06:48:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[4645] csw/mgar/pkg/x11/libX11/trunk Message-ID: Revision: 4645 http://gar.svn.sourceforge.net/gar/?rev=4645&view=rev Author: dmichelsen Date: 2009-05-02 06:48:26 +0000 (Sat, 02 May 2009) Log Message: ----------- x11/libX11: Update to 1.2.1 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/patch-stdint.diff Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-01 22:53:40 UTC (rev 4644) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-02 06:48:26 UTC (rev 4645) @@ -1,5 +1,5 @@ GARNAME = libX11 -GARVERSION = 1.2 +GARVERSION = 1.2.1 CATEGORIES = x11 DESCRIPTION = X11 client-side library @@ -11,11 +11,12 @@ MASTER_SITES =http://xorg.freedesktop.org/releases/individual/lib/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +PATCHFILES = patch-stdint.diff # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PREREQUSITE_PKGS = CSWxextproto CSWxtrans CSWkbproto CSWinputproto +PREREQUISITE_PKGS = CSWxextproto CSWxtrans CSWkbproto CSWinputproto PACKAGES = CSWlibx11 CSWlibx11devel @@ -34,5 +35,7 @@ NOISALIST = 1 CONFIGURE_ARGS = $(DIRPATHS) +EXTRA_CFLAGS = -D__solaris__ + include gar/category.mk Modified: csw/mgar/pkg/x11/libX11/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/checksums 2009-05-01 22:53:40 UTC (rev 4644) +++ csw/mgar/pkg/x11/libX11/trunk/checksums 2009-05-02 06:48:26 UTC (rev 4645) @@ -1 +1,2 @@ -a8e045794665c9fb7486c0faa21e3211 download/libX11-1.2.tar.gz +858e013fd4c37689a2a8d86c8765dab0 download/libX11-1.2.1.tar.gz +667f63d38722e29d6fd36b6648bbb757 download/patch-stdint.diff Added: csw/mgar/pkg/x11/libX11/trunk/files/patch-stdint.diff =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/patch-stdint.diff (rev 0) +++ csw/mgar/pkg/x11/libX11/trunk/files/patch-stdint.diff 2009-05-02 06:48:26 UTC (rev 4645) @@ -0,0 +1,30 @@ +diff -Naur libX11-1.2.1.orig/src/Xxcbint.h libX11-1.2.1.patched/src/Xxcbint.h +--- libX11-1.2.1.orig/src/Xxcbint.h 2008-11-19 07:42:01.000000000 +0100 ++++ libX11-1.2.1.patched/src/Xxcbint.h 2009-05-02 08:10:56.519976514 +0200 +@@ -5,7 +5,11 @@ + #define XXCBINT_H + + #include ++#if defined(__solaris__) ++#include ++#else + #include ++#endif + #include + #include + #include "locking.h" +diff -Naur libX11-1.2.1.orig/src/xcb_io.c libX11-1.2.1.patched/src/xcb_io.c +--- libX11-1.2.1.orig/src/xcb_io.c 2009-02-24 04:29:22.000000000 +0100 ++++ libX11-1.2.1.patched/src/xcb_io.c 2009-05-02 08:27:43.445731862 +0200 +@@ -9,7 +9,11 @@ + + #include + #include ++#if defined(__solaris__) ++#include ++#else + #include ++#endif + #include + #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 Sat May 2 08:57:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 02 May 2009 06:57:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4646] csw/mgar/pkg/x11/renderproto/trunk Message-ID: Revision: 4646 http://gar.svn.sourceforge.net/gar/?rev=4646&view=rev Author: dmichelsen Date: 2009-05-02 06:57:59 +0000 (Sat, 02 May 2009) Log Message: ----------- x11/renderproto: Update to dynamic gspec and license Modified Paths: -------------- csw/mgar/pkg/x11/renderproto/trunk/Makefile csw/mgar/pkg/x11/renderproto/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/x11/renderproto/trunk/files/CSWrenderproto.gspec Modified: csw/mgar/pkg/x11/renderproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/renderproto/trunk/Makefile 2009-05-02 06:48:26 UTC (rev 4645) +++ csw/mgar/pkg/x11/renderproto/trunk/Makefile 2009-05-02 06:57:59 UTC (rev 4646) @@ -5,20 +5,17 @@ DESCRIPTION = Render extension headers from modular X.org define BLURB -This provides the Render extension headers from modular X.org X11 project. + This provides the Render extension headers from modular X.org X11 project. endef MASTER_SITES = $(X11_PROTO_MASTER_SITE) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWrenderproto) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -pre-install: - @ginstall -d $(WORKROOTDIR)/install-$(firstword $(MODULATIONS))$(datadir)/doc/$(GARNAME) - @gcp -fp $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(DISTNAME)/COPYING $(WORKROOTDIR)/install-$(firstword $(MODULATIONS))$(datadir)/doc/$(GARNAME)/License.txt +BUILD64 = 1 +CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk - Modified: csw/mgar/pkg/x11/renderproto/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/renderproto/trunk/checksums 2009-05-02 06:48:26 UTC (rev 4645) +++ csw/mgar/pkg/x11/renderproto/trunk/checksums 2009-05-02 06:57:59 UTC (rev 4646) @@ -1,2 +1 @@ ab8f3e356973d9c99810a8f092db3a2e download/renderproto-0.9.3.tar.gz -06af8b4e2064f0af6d8387feac391e2e download/CSWrenderproto.gspec Deleted: csw/mgar/pkg/x11/renderproto/trunk/files/CSWrenderproto.gspec =================================================================== --- csw/mgar/pkg/x11/renderproto/trunk/files/CSWrenderproto.gspec 2009-05-02 06:48:26 UTC (rev 4645) +++ csw/mgar/pkg/x11/renderproto/trunk/files/CSWrenderproto.gspec 2009-05-02 06:57:59 UTC (rev 4646) @@ -1,7 +0,0 @@ -%var bitname renderproto -%var pkgname CSWrenderproto -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/%{GARNAME}/License.txt 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 Sat May 2 09:06:29 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 02 May 2009 07:06:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[4647] csw/mgar/pkg/x11/xrender/trunk/Makefile Message-ID: Revision: 4647 http://gar.svn.sourceforge.net/gar/?rev=4647&view=rev Author: dmichelsen Date: 2009-05-02 07:06:29 +0000 (Sat, 02 May 2009) Log Message: ----------- x11/libxrender: Update dependencies 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-05-02 06:57:59 UTC (rev 4646) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-05-02 07:06:29 UTC (rev 4647) @@ -19,7 +19,8 @@ PACKAGES = CSWlibxrender CSWrenderdev -REQUIRED_PKGS_CSWrenderdev = CSWlibxrender +PREREQUISITE_PKGS = CSWrenderproto +REQUIRED_PKGS_CSWrenderdev = CSWlibxrender REQUIRED_PKGS_CSWlibxrender = CSWlibx11 SPKG_DESC_CSWlibxrender = $(DESCRIPTION) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Sat May 2 12:24:27 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sat, 02 May 2009 10:24:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4648] csw/mgar/pkg/nrpe/trunk/Makefile Message-ID: Revision: 4648 http://gar.svn.sourceforge.net/gar/?rev=4648&view=rev Author: j_arndt Date: 2009-05-02 10:24:26 +0000 (Sat, 02 May 2009) Log Message: ----------- nrpe: added option --enable-command-args (issue 3646) Modified Paths: -------------- csw/mgar/pkg/nrpe/trunk/Makefile Modified: csw/mgar/pkg/nrpe/trunk/Makefile =================================================================== --- csw/mgar/pkg/nrpe/trunk/Makefile 2009-05-02 07:06:29 UTC (rev 4647) +++ csw/mgar/pkg/nrpe/trunk/Makefile 2009-05-02 10:24:26 UTC (rev 4648) @@ -28,6 +28,7 @@ CONFIGURE_ARGS += --with-ssl-inc=/opt/csw/include CONFIGURE_ARGS += --with-ssl-dir=/opt/csw/bin CONFIGURE_ARGS += --with-kerberos-inc=/opt/csw/include +CONFIGURE_ARGS += --enable-command-args CONFIGURE_ARGS += --prefix=/opt/csw CONFIGURE_ARGS += --exec-prefix=/opt/csw This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat May 2 21:21:41 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 02 May 2009 19:21:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4649] csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Message-ID: Revision: 4649 http://gar.svn.sourceforge.net/gar/?rev=4649&view=rev Author: valholla Date: 2009-05-02 19:21:41 +0000 (Sat, 02 May 2009) Log Message: ----------- fix ada Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-02 10:24:26 UTC (rev 4648) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-02 19:21:41 UTC (rev 4649) @@ -101,17 +101,16 @@ ISAEXEC_FILES += /opt/csw/gcc4/bin/gtnameserv ISAEXEC_FILES += /opt/csw/gcc4/bin/gnative2ascii ISAEXEC_FILES += /opt/csw/gcc4/bin/gnat -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatls -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatname -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatmake -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatclean -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatkr -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatbind -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnat -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatbl -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatchop -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatfind -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatxref -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatprep -ISAEXEC_FILES += /opt/csw/gcc4/bin/i386/gnatlink +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatls +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatname +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatmake +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatclean +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatkr +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatbind +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatbl +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatchop +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatfind +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatxref +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatprep +ISAEXEC_FILES += /opt/csw/gcc4/bin/gnatlink endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:23:41 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:23:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4650] csw/mgar/pkg/libffi/trunk/Makefile Message-ID: Revision: 4650 http://gar.svn.sourceforge.net/gar/?rev=4650&view=rev Author: valholla Date: 2009-05-03 21:23:41 +0000 (Sun, 03 May 2009) Log Message: ----------- checkin Added Paths: ----------- csw/mgar/pkg/libffi/trunk/Makefile Added: csw/mgar/pkg/libffi/trunk/Makefile =================================================================== --- csw/mgar/pkg/libffi/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libffi/trunk/Makefile 2009-05-03 21:23:41 UTC (rev 4650) @@ -0,0 +1,35 @@ +GARNAME = libffi +GARVERSION = 3.0.8 +CATEGORIES = lib + +DESCRIPTION = A portable foreign function interface library +define BLURB + FFI stands for Foreign Function Interface. A foreign function + interface is the popular name for the interface that allows code + written in one language to call code written in another language. + The libffi library really only provides the lowest, machine + dependent layer of a fully featured foreign function interface. + A layer must exist above libffi that handles type conversions for + values passed between the two languages. +endef + +MASTER_SITES = ftp://sourceware.org/pub/libffi/ +SPKG_SOURCEURL = http://sourceware.org/libffi/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWlibffi +CATALOGNAME_CSWlibffi = libffi +SPKG_DESC_CSWlibffi = $(DESCRIPTION) + + +#REQUIRED_PKGS_CSWlibffi += + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +GARCOMPILER = GNU + +CONFIGURE_ARGS = $(DIRPATHS) +TEST_TARGET = check +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 Sun May 3 23:34:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 03 May 2009 21:34:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4651] csw/mgar/pkg/pango/trunk/Makefile Message-ID: Revision: 4651 http://gar.svn.sourceforge.net/gar/?rev=4651&view=rev Author: dmichelsen Date: 2009-05-03 21:34:05 +0000 (Sun, 03 May 2009) Log Message: ----------- pango: Enable 64 bit build Modified Paths: -------------- csw/mgar/pkg/pango/trunk/Makefile Modified: csw/mgar/pkg/pango/trunk/Makefile =================================================================== --- csw/mgar/pkg/pango/trunk/Makefile 2009-05-03 21:23:41 UTC (rev 4650) +++ csw/mgar/pkg/pango/trunk/Makefile 2009-05-03 21:34:05 UTC (rev 4651) @@ -26,6 +26,7 @@ UPSTREAM_MASTER_SITES = http://ftp.gnome.org/pub/gnome/sources/pango/ UFILES_REGEX = (\d+(?:\.\d+)*) +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-x --enable-gtk-doc # CONFIGURE_ARGS += --with-included-modules 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 May 3 23:36:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 03 May 2009 21:36:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4652] csw/mgar/pkg/pango/trunk/Makefile Message-ID: Revision: 4652 http://gar.svn.sourceforge.net/gar/?rev=4652&view=rev Author: dmichelsen Date: 2009-05-03 21:36:25 +0000 (Sun, 03 May 2009) Log Message: ----------- pango: Disable isaexec on all builds Modified Paths: -------------- csw/mgar/pkg/pango/trunk/Makefile Modified: csw/mgar/pkg/pango/trunk/Makefile =================================================================== --- csw/mgar/pkg/pango/trunk/Makefile 2009-05-03 21:34:05 UTC (rev 4651) +++ csw/mgar/pkg/pango/trunk/Makefile 2009-05-03 21:36:25 UTC (rev 4652) @@ -27,6 +27,7 @@ UFILES_REGEX = (\d+(?:\.\d+)*) BUILD64 = 1 +NO_ISAEXEC = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-x --enable-gtk-doc # CONFIGURE_ARGS += --with-included-modules This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:38:52 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:38:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4653] csw/mgar/pkg/libssh2/Makefile Message-ID: Revision: 4653 http://gar.svn.sourceforge.net/gar/?rev=4653&view=rev Author: valholla Date: 2009-05-03 21:38:52 +0000 (Sun, 03 May 2009) Log Message: ----------- checkin Added Paths: ----------- csw/mgar/pkg/libssh2/Makefile Added: csw/mgar/pkg/libssh2/Makefile =================================================================== --- csw/mgar/pkg/libssh2/Makefile (rev 0) +++ csw/mgar/pkg/libssh2/Makefile 2009-05-03 21:38:52 UTC (rev 4653) @@ -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 valholla at users.sourceforge.net Sun May 3 23:44:03 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:44:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4654] csw/mgar/pkg/gnupg_minimal/trunk/ Message-ID: Revision: 4654 http://gar.svn.sourceforge.net/gar/?rev=4654&view=rev Author: valholla Date: 2009-05-03 21:44:03 +0000 (Sun, 03 May 2009) Log Message: ----------- ignores Property Changed: ---------------- csw/mgar/pkg/gnupg_minimal/trunk/ Property changes on: csw/mgar/pkg/gnupg_minimal/trunk ___________________________________________________________________ Added: svn:ignore + . cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:45:59 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:45:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4655] csw/mgar/pkg/libssh2/trunk/ Message-ID: Revision: 4655 http://gar.svn.sourceforge.net/gar/?rev=4655&view=rev Author: valholla Date: 2009-05-03 21:45:58 +0000 (Sun, 03 May 2009) Log Message: ----------- ignores Property Changed: ---------------- csw/mgar/pkg/libssh2/trunk/ Property changes on: csw/mgar/pkg/libssh2/trunk ___________________________________________________________________ Added: svn:ignore + . cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:46:47 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:46:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4656] csw/mgar/pkg/pygobject/trunk/ Message-ID: Revision: 4656 http://gar.svn.sourceforge.net/gar/?rev=4656&view=rev Author: valholla Date: 2009-05-03 21:46:47 +0000 (Sun, 03 May 2009) Log Message: ----------- ignores Property Changed: ---------------- csw/mgar/pkg/pygobject/trunk/ Property changes on: csw/mgar/pkg/pygobject/trunk ___________________________________________________________________ Added: svn:ignore + . cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:47:01 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:47:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[4657] csw/mgar/pkg/pygobject Message-ID: Revision: 4657 http://gar.svn.sourceforge.net/gar/?rev=4657&view=rev Author: valholla Date: 2009-05-03 21:47:01 +0000 (Sun, 03 May 2009) Log Message: ----------- ignores Added Paths: ----------- csw/mgar/pkg/pygobject/branches/ csw/mgar/pkg/pygobject/tags/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:48:01 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:48:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[4658] csw/mgar/pkg/libssh2/trunk/ Message-ID: Revision: 4658 http://gar.svn.sourceforge.net/gar/?rev=4658&view=rev Author: valholla Date: 2009-05-03 21:48:01 +0000 (Sun, 03 May 2009) Log Message: ----------- ignores Property Changed: ---------------- csw/mgar/pkg/libssh2/trunk/ Property changes on: csw/mgar/pkg/libssh2/trunk ___________________________________________________________________ Modified: svn:ignore - . cookies download work + . cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:50:43 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:50:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[4659] csw/mgar/pkg/libssh2/trunk/Makefile Message-ID: Revision: 4659 http://gar.svn.sourceforge.net/gar/?rev=4659&view=rev Author: valholla Date: 2009-05-03 21:50:42 +0000 (Sun, 03 May 2009) Log Message: ----------- checkin Added Paths: ----------- csw/mgar/pkg/libssh2/trunk/Makefile Added: csw/mgar/pkg/libssh2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libssh2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libssh2/trunk/Makefile 2009-05-03 21:50:42 UTC (rev 4659) @@ -0,0 +1,35 @@ +GARNAME = libssh2 +GARVERSION = 1.1 +CATEGORIES = lib + +DESCRIPTION = A Library Implementing the SSH2 Protocol. +define BLURB + libssh2 is a library implementing the SSH2 protocol as defined by + Internet Drafts: SECSH-TRANS, SECSH-USERAUTH, SECSH-CONNECTION, + SECSH-ARCH, SECSH-FILEXFER, SECSH-DHGEX, SECSH-NUMBERS, and + SECSH-PUBLICKEY. +endef + +MASTER_SITES = $(SF_MIRRORS) +SPKG_SOURCEURL = http://www.libssh2.org +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWlibssh2 +CATALOGNAME_CSWlibssh2 = libssh2 +SPKG_DESC_CSWlibssh2 = $(DESCRIPTION) + +REQUIRED_PKGS_CSWlibssh2 = CSWosslrt CSWzlib + +# 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 +TEST_TARGET = check + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-libz +CONFIGURE_ARGS += --with-openssl=/opt/csw + +include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:51:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:51:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[4660] csw/mgar/pkg/libssh2/trunk Message-ID: Revision: 4660 http://gar.svn.sourceforge.net/gar/?rev=4660&view=rev Author: valholla Date: 2009-05-03 21:51:21 +0000 (Sun, 03 May 2009) Log Message: ----------- checkin Added Paths: ----------- csw/mgar/pkg/libssh2/trunk/checksums csw/mgar/pkg/libssh2/trunk/files/ Added: csw/mgar/pkg/libssh2/trunk/checksums =================================================================== --- csw/mgar/pkg/libssh2/trunk/checksums (rev 0) +++ csw/mgar/pkg/libssh2/trunk/checksums 2009-05-03 21:51:21 UTC (rev 4660) @@ -0,0 +1 @@ +f8a3eb9bb814e0a5a2bb76a5423f5129 download/libssh2-1.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sun May 3 23:52:54 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 21:52:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[4661] csw/mgar/pkg/squirrelmail/trunk/ Message-ID: Revision: 4661 http://gar.svn.sourceforge.net/gar/?rev=4661&view=rev Author: valholla Date: 2009-05-03 21:52:54 +0000 (Sun, 03 May 2009) Log Message: ----------- ignores Property Changed: ---------------- csw/mgar/pkg/squirrelmail/trunk/ Property changes on: csw/mgar/pkg/squirrelmail/trunk ___________________________________________________________________ Added: svn:ignore + . cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 00:00:01 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 22:00:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[4662] csw/mgar/pkg Message-ID: Revision: 4662 http://gar.svn.sourceforge.net/gar/?rev=4662&view=rev Author: valholla Date: 2009-05-03 22:00:01 +0000 (Sun, 03 May 2009) Log Message: ----------- checkins Added Paths: ----------- csw/mgar/pkg/clearsilver/trunk/files/rules.mk.diff csw/mgar/pkg/pyorbit/trunk/branches/ csw/mgar/pkg/pyorbit/trunk/tags/ Property Changed: ---------------- csw/mgar/pkg/php5_apc/trunk/ Added: csw/mgar/pkg/clearsilver/trunk/files/rules.mk.diff =================================================================== --- csw/mgar/pkg/clearsilver/trunk/files/rules.mk.diff (rev 0) +++ csw/mgar/pkg/clearsilver/trunk/files/rules.mk.diff 2009-05-03 22:00:01 UTC (rev 4662) @@ -0,0 +1,20 @@ +--- clearsilver-0.10.5/rules.mk.in.orig 2009-02-27 22:01:06.050961776 -0600 ++++ clearsilver-0.10.5/rules.mk.in 2009-02-27 22:02:35.509950994 -0600 +@@ -74,7 +74,7 @@ + CC = @CC@ + MKDIR = mkdir -p + RM = rm -f +-CPP = g++ ++CPP = CC + JAVAC = $(JAVA_PATH)/bin/javac + JAVAH = $(JAVA_PATH)/bin/javah + JAR = $(JAVA_PATH)/bin/jar +@@ -84,7 +84,7 @@ + RUBY = @RUBY@ + + CPPFLAGS = -I$(NEOTONIC_ROOT) @CPPFLAGS@ +-CFLAGS = @CFLAGS@ -Wall $(CPPFLAGS) $(PICFLG) ++CFLAGS = @CFLAGS@ $(CPPFLAGS) $(PICFLG) + OUTPUT_OPTION = -o $@ + LD = $(CC) -o + LDFLAGS = -L$(LIB_DIR) @LDFLAGS@ Property changes on: csw/mgar/pkg/php5_apc/trunk ___________________________________________________________________ Added: svn:ignore + . cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 00:00:57 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 22:00:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[4663] csw/mgar/pkg/fixme Message-ID: Revision: 4663 http://gar.svn.sourceforge.net/gar/?rev=4663&view=rev Author: valholla Date: 2009-05-03 22:00:57 +0000 (Sun, 03 May 2009) Log Message: ----------- checkins Added Paths: ----------- csw/mgar/pkg/fixme/branches/ csw/mgar/pkg/fixme/tags/ csw/mgar/pkg/fixme/trunk/fixlibtool.sh Added: csw/mgar/pkg/fixme/trunk/fixlibtool.sh =================================================================== --- csw/mgar/pkg/fixme/trunk/fixlibtool.sh (rev 0) +++ csw/mgar/pkg/fixme/trunk/fixlibtool.sh 2009-05-03 22:00:57 UTC (rev 4663) @@ -0,0 +1,51 @@ +#!/bin/bash +#################################################### +# +# fixme.sh +# Intended to remove the use of libtool's +# pseudo-libraries for opencsw builds. +# +# Author: Mike Watters mwatters_at_opencsw.org +# Initial Version: 0.1 +# +#################################################### + +umask 0022 +PATH=/opt/csw/bin + +if [ $# -ne 1 ]; then + gecho "USAGE: $(basename $0) WORKSRC" + exit 1 +fi +BASEPATH=$1 + +## Fix Makefiles +for mk in $(gfind ${BASEPATH} -name Makefile -print); do + LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ + gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") + + for file in ${LT_FILES}; do + LIB_NAME=$(ggrep 'dlname=' ${file} | \ + gsed -e "s/.*'\(.*\)'/\1/" \ + -e "s/^lib//" \ + -e "s/\.so.*$//") + fixpath=$(gecho $file |gsed 's/\//\\\//g') + gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new + gmv Makefile.new ${mk} + gchmod +x ${mk} + done +done + +## Fix libtool Script +for lt in $(gfind ${BASEPATH} -name libtool -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new + gmv ${lt}.new ${lt} + gchmod +x ${lt} +done + +for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new + gmv ${LTMAIN}.new ${LTMAIN} + gchmod +x ${LTMAIN} +done + Property changes on: csw/mgar/pkg/fixme/trunk/fixlibtool.sh ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 00:08:17 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sun, 03 May 2009 22:08:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[4664] csw/mgar/pkg/libedit/ Message-ID: Revision: 4664 http://gar.svn.sourceforge.net/gar/?rev=4664&view=rev Author: valholla Date: 2009-05-03 22:08:17 +0000 (Sun, 03 May 2009) Log Message: ----------- del libedit dir Removed Paths: ------------- csw/mgar/pkg/libedit/ 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 May 4 11:07:41 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 04 May 2009 09:07:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4665] csw/mgar/pkg/cpan/libwww-perl/trunk Message-ID: Revision: 4665 http://gar.svn.sourceforge.net/gar/?rev=4665&view=rev Author: bonivart Date: 2009-05-04 09:07:41 +0000 (Mon, 04 May 2009) Log Message: ----------- libwww-perl: update to 5.826 Modified Paths: -------------- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile csw/mgar/pkg/cpan/libwww-perl/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/libwww-perl/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/libwww-perl/trunk/files/CSWpmlibwww.gspec Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-05-03 22:08:17 UTC (rev 4664) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-05-04 09:07:41 UTC (rev 4665) @@ -1,5 +1,5 @@ GARNAME = libwww-perl -GARVERSION = 5.825 +GARVERSION = 5.826 CATEGORIES = cpan AUTHOR = GAAS @@ -11,8 +11,13 @@ used. endef -DISTFILES += $(call admfiles,CSWpmlibwww,) +#DISTFILES += $(call admfiles,CSWpmlibwww,) +DISTFILES += COPYING +CATALOGNAME = pm_libwww +PACKAGES = CSWpmlibwww +ARCHALL = 1 + REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWpmcompresszlib CSWpmhtmlfmt CSWpmmimebase64 EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-05-03 22:08:17 UTC (rev 4664) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-05-04 09:07:41 UTC (rev 4665) @@ -1,2 +1,2 @@ -7f2db1cb966b9260b395fdbc01b09fae download/CSWpmlibwww.gspec -9b383739e58ac8f8234487e62d5c2818 download/libwww-perl-5.825.tar.gz +d6d74a59bf794b8ffc8da8bbf1e4e15a download/COPYING +3f8e1922193b74ffb7d86efdadfbe865 download/libwww-perl-5.826.tar.gz Added: csw/mgar/pkg/cpan/libwww-perl/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/files/COPYING 2009-05-04 09:07:41 UTC (rev 4665) @@ -0,0 +1,7 @@ +COPYRIGHT + + (C) 1995-2009 Gisle Aas. All rights reserved. + (C) 1995 Martijn Koster. All rights reserved. + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/libwww-perl/trunk/files/CSWpmlibwww.gspec =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/files/CSWpmlibwww.gspec 2009-05-03 22:08:17 UTC (rev 4664) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/files/CSWpmlibwww.gspec 2009-05-04 09:07:41 UTC (rev 4665) @@ -1,10 +0,0 @@ -%var bitname pm_libwww -%var pkgname CSWpmlibwww -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -1995-2008 Gisle Aas. All rights reserved. -1995 Martijn Koster. All rights reserved. - -This library 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 valholla at users.sourceforge.net Mon May 4 20:39:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 18:39:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[4666] csw/mgar/pkg/squid/trunk Message-ID: Revision: 4666 http://gar.svn.sourceforge.net/gar/?rev=4666&view=rev Author: valholla Date: 2009-05-04 18:39:16 +0000 (Mon, 04 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile csw/mgar/pkg/squid/trunk/checksums Added Paths: ----------- csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init Removed Paths: ------------- csw/mgar/pkg/squid/trunk/files/CSWsquid.copyright csw/mgar/pkg/squid/trunk/files/CSWsquid.depend csw/mgar/pkg/squid/trunk/files/CSWsquid.gspec csw/mgar/pkg/squid/trunk/files/CSWsquid.prototype csw/mgar/pkg/squid/trunk/files/etc/ Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 09:07:41 UTC (rev 4665) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 18:39:16 UTC (rev 4666) @@ -1,7 +1,7 @@ GARNAME = squid -GARVERSION = 3.0 +GARVERSION = 2.7 CATEGORIES = server -RELEASE = STABLE14 +RELEASE = STABLE6 DISTVERSION = $(GARVERSION).$(RELEASE) DISTNAME = $(GARNAME)-$(DISTVERSION) RELVER = $(shell echo $(GARVERSION) |gsed 's/\(^[0-9]\).*\.[0-9]*/\1/') @@ -13,13 +13,20 @@ bandwith usage. Squid runs on all popular Unix and Windows platforms. endef +PACKAGES = CSWsquid +CATALOGNAME_CSWsquid = squid +SPKG_DESC_CSWsquid = $(DESCRIPTION) + +LD = /opt/csw/bin/gld +export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ DISTFILES = $(DISTNAME).tar.bz2 CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --disable-static CONFIGURE_ARGS += --datadir=$(datadir)/$(GARNAME) CONFIGURE_ARGS += --with-large-files +CONFIGURE_ARGS += --with-gnu-ld=yes +CONFIGURE_ARGS += --with-dl CONFIGURE_ARGS += --enable-large-cache-files CONFIGURE_ARGS += --enable-ssl CONFIGURE_ARGS += --with-openssl=$(prefix) @@ -29,8 +36,8 @@ CONFIGURE_ARGS += --enable-referer-log CONFIGURE_ARGS += --enable-arp-acl CONFIGURE_ARGS += --enable-snmp -#CONFIGURE_ARGS += --enable-auth=basic -#CONFIGURE_ARGS += --enable-basic-auth-helpers=LDAP,SMB,YP,PAM,SASL,NCSA +CONFIGURE_ARGS += --enable-auth=basic +CONFIGURE_ARGS += --enable-basic-auth-helpers=LDAP,SMB,YP,PAM,SASL,NCSA TEST_TARGET = check @@ -43,6 +50,3 @@ cd $(WORKSRC) && $(BUILD_ENV) ./bootstrap.sh @$(MAKECOOKIE) -post-install-modulated: - ( cp -r $(FILEDIR)/etc $(DESTDIR)/etc ) - @$(MAKECOOKIE) Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-04 09:07:41 UTC (rev 4665) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-04 18:39:16 UTC (rev 4666) @@ -1 +1 @@ -7aaff2319d2263404d788a82a10c8633 download/squid-3.0.STABLE14.tar.bz2 +6de3a6a7a56a7ecae092f2d31a04f039 download/squid-2.7.STABLE6.tar.bz2 Deleted: csw/mgar/pkg/squid/trunk/files/CSWsquid.copyright =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.copyright 2009-05-04 09:07:41 UTC (rev 4665) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.copyright 2009-05-04 18:39:16 UTC (rev 4666) @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111, USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) 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 -this service 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 make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. 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. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -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 -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the 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 a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. 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. - - 12. 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 - - Appendix: 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 -convey 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) 19yy - - 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 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, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19yy name of author - Gnomovision 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, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This 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 Library General -Public License instead of this License. Deleted: csw/mgar/pkg/squid/trunk/files/CSWsquid.depend =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.depend 2009-05-04 09:07:41 UTC (rev 4665) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.depend 2009-05-04 18:39:16 UTC (rev 4666) @@ -1,3 +0,0 @@ -P CSWosslrt -P CSWoldaprt -P CSWsasl Deleted: csw/mgar/pkg/squid/trunk/files/CSWsquid.gspec =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.gspec 2009-05-04 09:07:41 UTC (rev 4665) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.gspec 2009-05-04 18:39:16 UTC (rev 4666) @@ -1,4 +0,0 @@ -%var bitname squid -%var pkgname CSWsquid -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/squid/trunk/files/CSWsquid.prototype =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.prototype 2009-05-04 09:07:41 UTC (rev 4665) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.prototype 2009-05-04 18:39:16 UTC (rev 4666) @@ -1,967 +0,0 @@ -i pkginfo=CSWsquid.pkginfo -i copyright=CSWsquid.copyright -i depend=CSWsquid.depend -i preremove=CSWsquid.preremove -i postinstall=CSWsquid.postinstall -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man8 0755 root bin -f none /opt/csw/share/man/man8/squid.8 0644 root bin -f none /opt/csw/share/man/man8/cachemgr.cgi.8 0644 root bin -f none /opt/csw/share/man/man8/squid_ldap_auth.8 0644 root bin -f none /opt/csw/share/man/man8/pam_auth.8 0644 root bin -f none /opt/csw/share/mib.txt 0644 root bin -d none /opt/csw/share/icons 0755 root bin -f none /opt/csw/share/icons/anthony-binhex.gif 0644 root bin -f none /opt/csw/share/icons/anthony-bomb.gif 0644 root bin -f none /opt/csw/share/icons/anthony-box.gif 0644 root bin -f none /opt/csw/share/icons/anthony-box2.gif 0644 root bin -f none /opt/csw/share/icons/anthony-c.gif 0644 root bin -f none /opt/csw/share/icons/anthony-compressed.gif 0644 root bin -f none /opt/csw/share/icons/anthony-dir.gif 0644 root bin -f none /opt/csw/share/icons/anthony-dirup.gif 0644 root bin -f none /opt/csw/share/icons/anthony-dvi.gif 0644 root bin -f none /opt/csw/share/icons/anthony-f.gif 0644 root bin -f none /opt/csw/share/icons/anthony-image.gif 0644 root bin -f none /opt/csw/share/icons/anthony-image2.gif 0644 root bin -f none /opt/csw/share/icons/anthony-layout.gif 0644 root bin -f none /opt/csw/share/icons/anthony-link.gif 0644 root bin -f none /opt/csw/share/icons/anthony-movie.gif 0644 root bin -f none /opt/csw/share/icons/anthony-pdf.gif 0644 root bin -f none /opt/csw/share/icons/anthony-portal.gif 0644 root bin -f none /opt/csw/share/icons/anthony-ps.gif 0644 root bin -f none /opt/csw/share/icons/anthony-quill.gif 0644 root bin -f none /opt/csw/share/icons/anthony-script.gif 0644 root bin -f none /opt/csw/share/icons/anthony-sound.gif 0644 root bin -f none /opt/csw/share/icons/anthony-tar.gif 0644 root bin -f none /opt/csw/share/icons/anthony-tex.gif 0644 root bin -f none /opt/csw/share/icons/anthony-text.gif 0644 root bin -f none /opt/csw/share/icons/anthony-unknown.gif 0644 root bin -f none /opt/csw/share/icons/anthony-xbm.gif 0644 root bin -f none /opt/csw/share/icons/anthony-xpm.gif 0644 root bin -d none /opt/csw/share/errors 0755 root bin -d none /opt/csw/share/errors/Bulgarian 0755 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Bulgarian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Catalan 0755 root bin -f none /opt/csw/share/errors/Catalan/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Catalan/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Czech 0755 root bin -f none /opt/csw/share/errors/Czech/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Czech/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Danish 0755 root bin -f none /opt/csw/share/errors/Danish/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Danish/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Dutch 0755 root bin -f none /opt/csw/share/errors/Dutch/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Dutch/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/English 0755 root bin -f none /opt/csw/share/errors/English/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/English/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/English/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/English/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/English/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/English/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/English/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/English/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/English/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/English/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/English/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/English/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/English/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/English/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/English/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/English/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/English/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/English/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/English/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/English/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/English/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/English/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/English/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Estonian 0755 root bin -f none /opt/csw/share/errors/Estonian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Estonian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Finnish 0755 root bin -f none /opt/csw/share/errors/Finnish/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Finnish/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/French 0755 root bin -f none /opt/csw/share/errors/French/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/French/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/French/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/French/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/French/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/French/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/French/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/French/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/French/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/French/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/French/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/French/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/French/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/French/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/French/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/French/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/French/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/French/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/French/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/French/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/French/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/French/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/French/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/German 0755 root bin -f none /opt/csw/share/errors/German/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/German/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/German/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/German/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/German/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/German/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/German/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/German/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/German/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/German/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/German/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/German/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/German/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/German/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/German/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/German/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/German/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/German/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/German/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/German/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/German/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/German/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/German/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Greek 0755 root bin -f none /opt/csw/share/errors/Greek/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Greek/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Hebrew 0755 root bin -f none /opt/csw/share/errors/Hebrew/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Hebrew/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Hungarian 0755 root bin -f none /opt/csw/share/errors/Hungarian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Hungarian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Italian 0755 root bin -f none /opt/csw/share/errors/Italian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Italian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Japanese 0755 root bin -f none /opt/csw/share/errors/Japanese/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Japanese/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Korean 0755 root bin -f none /opt/csw/share/errors/Korean/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Korean/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Lithuanian 0755 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Lithuanian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Polish 0755 root bin -f none /opt/csw/share/errors/Polish/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Polish/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Portuguese 0755 root bin -f none /opt/csw/share/errors/Portuguese/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Portuguese/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Romanian 0755 root bin -f none /opt/csw/share/errors/Romanian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Romanian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Russian-1251 0755 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Russian-1251/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Russian-koi8-r 0755 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Russian-koi8-r/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Serbian 0755 root bin -f none /opt/csw/share/errors/Serbian/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Serbian/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Simplify_Chinese 0755 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Simplify_Chinese/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Slovak 0755 root bin -f none /opt/csw/share/errors/Slovak/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Slovak/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Spanish 0755 root bin -f none /opt/csw/share/errors/Spanish/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Spanish/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Swedish 0755 root bin -f none /opt/csw/share/errors/Swedish/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Swedish/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Traditional_Chinese 0755 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Traditional_Chinese/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/share/errors/Turkish 0755 root bin -f none /opt/csw/share/errors/Turkish/ERR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_CACHE_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_CACHE_MGR_ACCESS_DENIED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_CANNOT_FORWARD 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_CONNECT_FAIL 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_DNS_FAIL 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FORWARDING_DENIED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_DISABLED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_FAILURE 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_FORBIDDEN 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_NOT_FOUND 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_PUT_CREATED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_PUT_ERROR 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_PUT_MODIFIED 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_FTP_UNAVAILABLE 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_INVALID_REQ 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_INVALID_RESP 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_INVALID_URL 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_LIFETIME_EXP 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_NO_RELAY 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_ONLY_IF_CACHED_MISS 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_READ_ERROR 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_READ_TIMEOUT 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_SHUTTING_DOWN 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_SOCKET_FAILURE 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_TOO_BIG 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_UNSUP_REQ 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_URN_RESOLVE 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_WRITE_ERROR 0644 root bin -f none /opt/csw/share/errors/Turkish/ERR_ZERO_SIZE_OBJECT 0644 root bin -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/RunCache 0755 root bin -f none /opt/csw/bin/squidclient 0755 root bin -d none /opt/csw/sbin 0755 root bin -f none /opt/csw/sbin/squid 0755 root bin -d none /opt/csw/libexec 0755 root bin -f none /opt/csw/libexec/pinger 0755 root bin -f none /opt/csw/libexec/unlinkd 0755 root bin -f none /opt/csw/libexec/cachemgr.cgi 0755 root bin -f none /opt/csw/libexec/squid_ldap_auth 0755 root bin -f none /opt/csw/libexec/smb_auth 0755 root bin -f none /opt/csw/libexec/smb_auth.sh 0755 root bin -f none /opt/csw/libexec/yp_auth 0755 root bin -f none /opt/csw/libexec/pam_auth 0755 root bin -f none /opt/csw/libexec/sasl_auth 0755 root bin -d none /opt/csw/etc 0755 root bin -f none /opt/csw/etc/squid.conf.default 0644 root bin -f none /opt/csw/etc/mime.conf.default 0644 root bin -f none /opt/csw/etc/cachemgr.conf 0644 root bin -d none /opt/csw/var 0755 root bin -d none /opt/csw/var/logs 0755 root bin -f none /etc/init.d/cswsquid 0755 root bin -s none /etc/rc2.d/S99cswsquid=../init.d/cswsquid -s none /etc/rc1.d/K99cswsquid=../init.d/cswsquid -s none /etc/rc0.d/K99cswsquid=../init.d/cswsquid -s none /etc/rcS.d/K99cswsquid=../init.d/cswsquid Added: csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init (rev 0) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init 2009-05-04 18:39:16 UTC (rev 4666) @@ -0,0 +1,23 @@ +#!/sbin/sh + +case "$1" in +'start') + if [ -f /opt/csw/sbin/squid -a -f /opt/csw/etc/squid.conf ]; then + echo 'starting squid server.' + /opt/csw/sbin/squid -D & + fi + exit 0 + ;; +'stop') + if [ -f /opt/csw/sbin/squid -a -f /opt/csw/etc/squid.conf ]; then + echo 'stopping squid server... please wait for squid to cleanup...' + /opt/csw/sbin/squid -k shutdown && sleep 30 + fi + exit 0 + ;; + +*) + echo "Usage: $0 { start | stop }" + exit 1 + ;; +esac This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 22:20:15 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 20:20:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[4667] csw/mgar/pkg/squid/trunk Message-ID: Revision: 4667 http://gar.svn.sourceforge.net/gar/?rev=4667&view=rev Author: valholla Date: 2009-05-04 20:20:15 +0000 (Mon, 04 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove Added Paths: ----------- csw/mgar/pkg/squid/trunk/files/cswsquid Removed Paths: ------------- csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 18:39:16 UTC (rev 4666) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:20:15 UTC (rev 4667) @@ -16,7 +16,10 @@ PACKAGES = CSWsquid CATALOGNAME_CSWsquid = squid SPKG_DESC_CSWsquid = $(DESCRIPTION) +SPKG_CLASSES_CSWsquid = none cswinitsmf +PROTOTYPE_FILTER = awk '$$$$3 ~/\/init.d\/cswsquid$$$$/ { $$$$2 = "cswinitsmf" }' + LD = /opt/csw/bin/gld export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ @@ -43,10 +46,15 @@ include gar/category.mk - SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(RELEASE) pre-configure-modulated: cd $(WORKSRC) && $(BUILD_ENV) ./bootstrap.sh @$(MAKECOOKIE) +post-install-modulated: + ginstall -d $(DESTDIR)/etc/init.d + gcp $(DOWNLOADDIR)/cswsquid $(DESTDIR)/etc/init.d + chmod 0755 $(DESTDIR)/etc/init.d/cswsquid + gmv $(DESTDIR)$(sysconfdir)/squid.conf \ + $(DESTDIR)$(sysconfdir)/squid.conf.CSW Modified: csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall 2009-05-04 18:39:16 UTC (rev 4666) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall 2009-05-04 20:20:15 UTC (rev 4667) @@ -1,12 +1,17 @@ #!/bin/sh # -# Squid-cache postinstall script +# Squid-cache preremove script PATH=/usr/bin:/usr/sbin export PATH +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +SQUID_CONFDIR=${CSW_PREFIX}/etc -if [ -f /opt/csw/etc/squid.conf ]; then - /etc/init.d/cswsquid start +if [ -f ${SQUID_CONFDIR}/squid.conf ]; then + echo 'squid.conf found, Preserving Existing Config!' +else + cp ${SQUID_CONFDIR}/squid.conf.CSW ${SQUID_CONFDIR}/squid.conf + chmod 0644 ${SQUID_CONFDIR}/squid.conf fi exit 0 Modified: csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove 2009-05-04 18:39:16 UTC (rev 4666) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove 2009-05-04 20:20:15 UTC (rev 4667) @@ -4,7 +4,20 @@ PATH=/usr/bin:/usr/sbin export PATH +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +SQUID_CONFDIR=${CSW_PREFIX}/etc -/etc/init.d/cswsquid stop +if [ -x /usr/sbin/svccfg -a -x /usr/sbin/svcadm ]; then + echo 'Stopping squid server and unregistering from smf' + svcadm disable -s svc:application/server/cswsquid:default + svccfg delete svc:application/server/cswsquid:default +else + echo 'Stopping squid server' + if [ -x ${PKG_INSTALL_ROOT}/etc/init.d/cswsquid ]; then + ${PKG_INSTALL_ROOT}/etc/init.d/cswsquid stop + else + pkill -9 squid + fi +fi exit 0 Deleted: csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init 2009-05-04 18:39:16 UTC (rev 4666) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init 2009-05-04 20:20:15 UTC (rev 4667) @@ -1,23 +0,0 @@ -#!/sbin/sh - -case "$1" in -'start') - if [ -f /opt/csw/sbin/squid -a -f /opt/csw/etc/squid.conf ]; then - echo 'starting squid server.' - /opt/csw/sbin/squid -D & - fi - exit 0 - ;; -'stop') - if [ -f /opt/csw/sbin/squid -a -f /opt/csw/etc/squid.conf ]; then - echo 'stopping squid server... please wait for squid to cleanup...' - /opt/csw/sbin/squid -k shutdown && sleep 30 - fi - exit 0 - ;; - -*) - echo "Usage: $0 { start | stop }" - exit 1 - ;; -esac Copied: csw/mgar/pkg/squid/trunk/files/cswsquid (from rev 4666, csw/mgar/pkg/squid/trunk/files/CSWsquid.s8-init) =================================================================== --- csw/mgar/pkg/squid/trunk/files/cswsquid (rev 0) +++ csw/mgar/pkg/squid/trunk/files/cswsquid 2009-05-04 20:20:15 UTC (rev 4667) @@ -0,0 +1,60 @@ +#!/sbin/sh + +PATH=/usr/bin +CSWPREFIX=/opt/csw +CSWETC=${CSWPREFIX}/etc +CSWSBIN=${CSWPREFIX}/sbin +SQUID_DAEMON=${CSWSBIN}/squid +SQUID_CONF=${CSWETC}/squid.conf + +case "$1" in + 'start') + if [ -x ${SQUID_DAEMON} -a -f ${SQUID_CONF} ]; then + if [ -n "`pgrep squid`" ]; then + echo 'squid server is already running' + exit 0 + else + echo 'starting squid server.' + ${SQUID_DAEMON} -D & + exit 0 + fi + else + echo '**** NOTICE ****' + echo 'Problem starting squid server,' + echo 'Please make sure it is properly installed' + echo 'and properly configured.' + exit 1 + fi + ;; + 'stop') + if [ -x ${SQUID_DAEMON} -a -f ${SQUID_CONF} ]; then + if [ -n "`pgrep squid`" ]; then + ## stop gracefully + echo 'stopping squid server... please wait for cleanup...' + ${SQUID_DAEMON} -k shutdown && sleep 30 + if [ -n "`pgrep squid`" ]; then + echo 'squid server still running, killing...' + pkill -9 squid + fi + exit 0 + else + ## Not running + echo 'squid server is already down' + exit 0 + fi + else + echo '**** NOTICE ****' + echo 'Squid server not properly installed' + echo 'Forcing Down!' + pkill -9 squid + exit 1 + fi + ;; + + *) + echo "Usage: $0 { start | stop }" + exit 1 + ;; +esac + +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 22:24:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 20:24:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4668] csw/mgar/pkg/squid/trunk Message-ID: Revision: 4668 http://gar.svn.sourceforge.net/gar/?rev=4668&view=rev Author: valholla Date: 2009-05-04 20:24:25 +0000 (Mon, 04 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile csw/mgar/pkg/squid/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/squid/trunk/TODO Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:20:15 UTC (rev 4667) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:24:25 UTC (rev 4668) @@ -24,6 +24,7 @@ export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ DISTFILES = $(DISTNAME).tar.bz2 +DISTFILES = cswsquid CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --datadir=$(datadir)/$(GARNAME) Deleted: csw/mgar/pkg/squid/trunk/TODO =================================================================== --- csw/mgar/pkg/squid/trunk/TODO 2009-05-04 20:20:15 UTC (rev 4667) +++ csw/mgar/pkg/squid/trunk/TODO 2009-05-04 20:24:25 UTC (rev 4668) @@ -1,8 +0,0 @@ -TODO Squid ----------- - -- Don't always start squid, honor blastwave.conf -- move - share/icons -> share/squid/icons - share/errors -> share/squid/errors -- Use GAR-mechanism for rc* instead of harcoding it in .prototype Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-04 20:20:15 UTC (rev 4667) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-04 20:24:25 UTC (rev 4668) @@ -1 +1 @@ -6de3a6a7a56a7ecae092f2d31a04f039 download/squid-2.7.STABLE6.tar.bz2 +de390549fd75a2e3b867da1cb3becb1c download/cswsquid This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 22:27:13 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 20:27:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4669] csw/mgar/pkg/squid/trunk/Makefile Message-ID: Revision: 4669 http://gar.svn.sourceforge.net/gar/?rev=4669&view=rev Author: valholla Date: 2009-05-04 20:27:13 +0000 (Mon, 04 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:24:25 UTC (rev 4668) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:27:13 UTC (rev 4669) @@ -59,3 +59,5 @@ chmod 0755 $(DESTDIR)/etc/init.d/cswsquid gmv $(DESTDIR)$(sysconfdir)/squid.conf \ $(DESTDIR)$(sysconfdir)/squid.conf.CSW + @$(MAKECOOKIE) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 22:47:57 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 20:47:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[4670] csw/mgar/pkg/squid/trunk/Makefile Message-ID: Revision: 4670 http://gar.svn.sourceforge.net/gar/?rev=4670&view=rev Author: valholla Date: 2009-05-04 20:47:57 +0000 (Mon, 04 May 2009) Log Message: ----------- checkin for package Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:27:13 UTC (rev 4669) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:47:57 UTC (rev 4670) @@ -17,9 +17,9 @@ CATALOGNAME_CSWsquid = squid SPKG_DESC_CSWsquid = $(DESCRIPTION) SPKG_CLASSES_CSWsquid = none cswinitsmf +REQUIRED_PKGS_CSWsquid = CSWoldaprt CSWosslrt CSWsasl CSWcswclassutils +PROTOTYPE_FILTER = awk '$$$$3 ~/\/init.d\/cswsquid$$$$/ { $$$$2 = "cswinitsmf" } { print }' -PROTOTYPE_FILTER = awk '$$$$3 ~/\/init.d\/cswsquid$$$$/ { $$$$2 = "cswinitsmf" }' - LD = /opt/csw/bin/gld export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ @@ -54,8 +54,8 @@ @$(MAKECOOKIE) post-install-modulated: - ginstall -d $(DESTDIR)/etc/init.d - gcp $(DOWNLOADDIR)/cswsquid $(DESTDIR)/etc/init.d + ginstall -d $(DESTDIR)/etc/opt/csw/init.d + gcp $(DOWNLOADDIR)/cswsquid $(DESTDIR)/etc/opt/csw/init.d/ chmod 0755 $(DESTDIR)/etc/init.d/cswsquid gmv $(DESTDIR)$(sysconfdir)/squid.conf \ $(DESTDIR)$(sysconfdir)/squid.conf.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 23:20:49 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 21:20:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[4671] csw/mgar/pkg/squid/trunk/Makefile Message-ID: Revision: 4671 http://gar.svn.sourceforge.net/gar/?rev=4671&view=rev Author: valholla Date: 2009-05-04 21:20:49 +0000 (Mon, 04 May 2009) Log Message: ----------- clean package checkin Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 20:47:57 UTC (rev 4670) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 21:20:49 UTC (rev 4671) @@ -24,7 +24,7 @@ export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ DISTFILES = $(DISTNAME).tar.bz2 -DISTFILES = cswsquid +DISTFILES = CSWsquid.postinstall CSWsquid.preremove cswsquid CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --datadir=$(datadir)/$(GARNAME) @@ -56,7 +56,7 @@ post-install-modulated: ginstall -d $(DESTDIR)/etc/opt/csw/init.d gcp $(DOWNLOADDIR)/cswsquid $(DESTDIR)/etc/opt/csw/init.d/ - chmod 0755 $(DESTDIR)/etc/init.d/cswsquid + chmod 0755 $(DESTDIR)/etc/opt/csw/init.d/cswsquid gmv $(DESTDIR)$(sysconfdir)/squid.conf \ $(DESTDIR)$(sysconfdir)/squid.conf.CSW @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 23:23:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 21:23:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4672] csw/mgar/pkg/squid/trunk/checksums Message-ID: Revision: 4672 http://gar.svn.sourceforge.net/gar/?rev=4672&view=rev Author: valholla Date: 2009-05-04 21:23:09 +0000 (Mon, 04 May 2009) Log Message: ----------- clean package checkin Modified Paths: -------------- csw/mgar/pkg/squid/trunk/checksums Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-04 21:20:49 UTC (rev 4671) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-04 21:23:09 UTC (rev 4672) @@ -1 +1,3 @@ +d9cdae9b6c8f1cd706e7c0cc47d3e17b download/CSWsquid.postinstall +60ca435ff29ff327a3f093949cdab958 download/CSWsquid.preremove de390549fd75a2e3b867da1cb3becb1c download/cswsquid This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 23:31:07 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 21:31:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[4673] csw/mgar/pkg/squid/trunk Message-ID: Revision: 4673 http://gar.svn.sourceforge.net/gar/?rev=4673&view=rev Author: valholla Date: 2009-05-04 21:31:07 +0000 (Mon, 04 May 2009) Log Message: ----------- post-install fixes Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile csw/mgar/pkg/squid/trunk/files/cswsquid Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 21:23:09 UTC (rev 4672) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-04 21:31:07 UTC (rev 4673) @@ -55,6 +55,7 @@ post-install-modulated: ginstall -d $(DESTDIR)/etc/opt/csw/init.d + ginstall -d $(DESTDIR)$(localstatedir)/cache gcp $(DOWNLOADDIR)/cswsquid $(DESTDIR)/etc/opt/csw/init.d/ chmod 0755 $(DESTDIR)/etc/opt/csw/init.d/cswsquid gmv $(DESTDIR)$(sysconfdir)/squid.conf \ Modified: csw/mgar/pkg/squid/trunk/files/cswsquid =================================================================== --- csw/mgar/pkg/squid/trunk/files/cswsquid 2009-05-04 21:23:09 UTC (rev 4672) +++ csw/mgar/pkg/squid/trunk/files/cswsquid 2009-05-04 21:31:07 UTC (rev 4673) @@ -10,7 +10,7 @@ case "$1" in 'start') if [ -x ${SQUID_DAEMON} -a -f ${SQUID_CONF} ]; then - if [ -n "`pgrep squid`" ]; then + if [ -n "`pgrep /squid`" ]; then echo 'squid server is already running' exit 0 else @@ -28,11 +28,11 @@ ;; 'stop') if [ -x ${SQUID_DAEMON} -a -f ${SQUID_CONF} ]; then - if [ -n "`pgrep squid`" ]; then + if [ -n "`pgrep /squid`" ]; then ## stop gracefully echo 'stopping squid server... please wait for cleanup...' ${SQUID_DAEMON} -k shutdown && sleep 30 - if [ -n "`pgrep squid`" ]; then + if [ -n "`pgrep /squid`" ]; then echo 'squid server still running, killing...' pkill -9 squid fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 4 23:32:33 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 21:32:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[4674] csw/mgar/pkg/squid/trunk/checksums Message-ID: Revision: 4674 http://gar.svn.sourceforge.net/gar/?rev=4674&view=rev Author: valholla Date: 2009-05-04 21:32:32 +0000 (Mon, 04 May 2009) Log Message: ----------- checksum changes Modified Paths: -------------- csw/mgar/pkg/squid/trunk/checksums Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-04 21:31:07 UTC (rev 4673) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-04 21:32:32 UTC (rev 4674) @@ -1,3 +1,3 @@ d9cdae9b6c8f1cd706e7c0cc47d3e17b download/CSWsquid.postinstall 60ca435ff29ff327a3f093949cdab958 download/CSWsquid.preremove -de390549fd75a2e3b867da1cb3becb1c download/cswsquid +ad73bb6b95a42b93cfc62cf5762251a1 download/cswsquid This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 00:17:13 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 22:17:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4675] csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall Message-ID: Revision: 4675 http://gar.svn.sourceforge.net/gar/?rev=4675&view=rev Author: valholla Date: 2009-05-04 22:17:13 +0000 (Mon, 04 May 2009) Log Message: ----------- postinstall script changes Modified Paths: -------------- csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall Modified: csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall 2009-05-04 21:32:32 UTC (rev 4674) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall 2009-05-04 22:17:13 UTC (rev 4675) @@ -6,7 +6,10 @@ export PATH CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw SQUID_CONFDIR=${CSW_PREFIX}/etc +SQUID_VARDIR=${CSW_PREFIX}/var +SQUID_SBINDIR=${CSW_PREFIX}/sbin + if [ -f ${SQUID_CONFDIR}/squid.conf ]; then echo 'squid.conf found, Preserving Existing Config!' else @@ -14,4 +17,10 @@ chmod 0644 ${SQUID_CONFDIR}/squid.conf fi +if [ -d ${SQUID_VARDIR}/cache ]; then + chown nobody:nobody ${SQUID_VARDIR}/cache +fi + +${SQUID_SBINDIR}/squid -z + exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 00:19:23 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 22:19:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[4676] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 4676 http://gar.svn.sourceforge.net/gar/?rev=4676&view=rev Author: valholla Date: 2009-05-04 22:19:23 +0000 (Mon, 04 May 2009) Log Message: ----------- remove cookie for strip binaries on reset-installs Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-05-04 22:17:13 UTC (rev 4675) +++ csw/mgar/gar/v2/gar.mk 2009-05-04 22:19:23 UTC (rev 4676) @@ -480,11 +480,13 @@ reset-install: reset-merge $(addprefix reset-install-,$(MODULATIONS)) @rm -f $(foreach M,$(MODULATIONS),$(COOKIEDIR)/install-$M) $(COOKIEDIR)/install $(COOKIEDIR)/post-install + @rm -f $(COOKIEDIR)/strip reset-install-modulated: @$(call _pmod,Reset install state) @rm -rf $(INSTALLISADIR) $(COOKIEDIR)/install-work @rm -f $(foreach C,pre-install-modulated install-modulated post-install-modulated,$(COOKIEDIR)/$C) + @rm -f $(COOKIEDIR)/strip # merge in all isas to the package directory after installation This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 00:30:52 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 04 May 2009 22:30:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4677] csw/mgar/pkg/squid/trunk/checksums Message-ID: Revision: 4677 http://gar.svn.sourceforge.net/gar/?rev=4677&view=rev Author: valholla Date: 2009-05-04 22:30:52 +0000 (Mon, 04 May 2009) Log Message: ----------- checksum changes Modified Paths: -------------- csw/mgar/pkg/squid/trunk/checksums Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-04 22:19:23 UTC (rev 4676) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-04 22:30:52 UTC (rev 4677) @@ -1,3 +1,3 @@ -d9cdae9b6c8f1cd706e7c0cc47d3e17b download/CSWsquid.postinstall +c382084075531222e45669fd8224088e download/CSWsquid.postinstall 60ca435ff29ff327a3f093949cdab958 download/CSWsquid.preremove ad73bb6b95a42b93cfc62cf5762251a1 download/cswsquid This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 02:34:52 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 00:34:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4678] csw/mgar/pkg/squid/trunk Message-ID: Revision: 4678 http://gar.svn.sourceforge.net/gar/?rev=4678&view=rev Author: valholla Date: 2009-05-05 00:34:52 +0000 (Tue, 05 May 2009) Log Message: ----------- postinstall tweak Modified Paths: -------------- csw/mgar/pkg/squid/trunk/checksums csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-04 22:30:52 UTC (rev 4677) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-05 00:34:52 UTC (rev 4678) @@ -1,3 +1,3 @@ -c382084075531222e45669fd8224088e download/CSWsquid.postinstall -60ca435ff29ff327a3f093949cdab958 download/CSWsquid.preremove +121a5d15dc17f580ace367e8bef2ccd7 download/CSWsquid.postinstall +f97bf395c3d2d73a876f9091707126bc download/CSWsquid.preremove ad73bb6b95a42b93cfc62cf5762251a1 download/cswsquid Modified: csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall 2009-05-04 22:30:52 UTC (rev 4677) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.postinstall 2009-05-05 00:34:52 UTC (rev 4678) @@ -3,24 +3,42 @@ # Squid-cache preremove script PATH=/usr/bin:/usr/sbin -export PATH +umask 0022 + CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw SQUID_CONFDIR=${CSW_PREFIX}/etc SQUID_VARDIR=${CSW_PREFIX}/var SQUID_SBINDIR=${CSW_PREFIX}/sbin +USER='' +GRP='' - if [ -f ${SQUID_CONFDIR}/squid.conf ]; then echo 'squid.conf found, Preserving Existing Config!' + USER="`awk '$1 ~ /cache_effective_user/ {print $2}' \ + ${SQUID_CONFDIR}/squid.conf`" + GRP="`awk '$1 ~ /cache_effective_group/ {print $2}' \ + ${SQUID_CONFDIR}/squid.conf`" else cp ${SQUID_CONFDIR}/squid.conf.CSW ${SQUID_CONFDIR}/squid.conf chmod 0644 ${SQUID_CONFDIR}/squid.conf fi -if [ -d ${SQUID_VARDIR}/cache ]; then - chown nobody:nobody ${SQUID_VARDIR}/cache +touch ${SQUID_VARDIR}/logs/access.log +touch ${SQUID_VARDIR}/logs/cache.log +touch ${SQUID_VARDIR}/logs/store.log + +if [ "_x${USER}x_" = "_xx_" ]; then + USER=nobody fi +if [ "_x${GRP}x_" = "_xx_" ]; then + GRP=nobody +fi +chown ${USER}:${GRP} ${SQUID_VARDIR}/logs/access.log +chown ${USER}:${GRP} ${SQUID_VARDIR}/logs/cache.log +chown ${USER}:${GRP} ${SQUID_VARDIR}/logs/store.log +chown ${USER}:${GRP} ${SQUID_VARDIR}/cache + ${SQUID_SBINDIR}/squid -z exit 0 Modified: csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove =================================================================== --- csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove 2009-05-04 22:30:52 UTC (rev 4677) +++ csw/mgar/pkg/squid/trunk/files/CSWsquid.preremove 2009-05-05 00:34:52 UTC (rev 4678) @@ -13,8 +13,8 @@ svccfg delete svc:application/server/cswsquid:default else echo 'Stopping squid server' - if [ -x ${PKG_INSTALL_ROOT}/etc/init.d/cswsquid ]; then - ${PKG_INSTALL_ROOT}/etc/init.d/cswsquid stop + if [ -x ${PKG_INSTALL_ROOT}/etc/opt/csw/init.d/cswsquid ]; then + ${PKG_INSTALL_ROOT}/etc/opt/csw/init.d/cswsquid stop else pkill -9 squid fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 02:49:36 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 00:49:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[4679] csw/mgar/pkg/squid/trunk/Makefile Message-ID: Revision: 4679 http://gar.svn.sourceforge.net/gar/?rev=4679&view=rev Author: valholla Date: 2009-05-05 00:49:36 +0000 (Tue, 05 May 2009) Log Message: ----------- postinstall tweak Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-05 00:34:52 UTC (rev 4678) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-05 00:49:36 UTC (rev 4679) @@ -24,7 +24,7 @@ export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ DISTFILES = $(DISTNAME).tar.bz2 -DISTFILES = CSWsquid.postinstall CSWsquid.preremove cswsquid +DISTFILES += CSWsquid.postinstall CSWsquid.preremove cswsquid CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --datadir=$(datadir)/$(GARNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 02:52:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 00:52:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4680] csw/mgar/pkg/squid/trunk/checksums Message-ID: Revision: 4680 http://gar.svn.sourceforge.net/gar/?rev=4680&view=rev Author: valholla Date: 2009-05-05 00:52:02 +0000 (Tue, 05 May 2009) Log Message: ----------- checksum changes Modified Paths: -------------- csw/mgar/pkg/squid/trunk/checksums Modified: csw/mgar/pkg/squid/trunk/checksums =================================================================== --- csw/mgar/pkg/squid/trunk/checksums 2009-05-05 00:49:36 UTC (rev 4679) +++ csw/mgar/pkg/squid/trunk/checksums 2009-05-05 00:52:02 UTC (rev 4680) @@ -1,3 +1,4 @@ 121a5d15dc17f580ace367e8bef2ccd7 download/CSWsquid.postinstall f97bf395c3d2d73a876f9091707126bc download/CSWsquid.preremove ad73bb6b95a42b93cfc62cf5762251a1 download/cswsquid +6de3a6a7a56a7ecae092f2d31a04f039 download/squid-2.7.STABLE6.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 04:47:37 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 02:47:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4681] csw/mgar/pkg/squid/trunk/Makefile Message-ID: Revision: 4681 http://gar.svn.sourceforge.net/gar/?rev=4681&view=rev Author: valholla Date: 2009-05-05 02:47:36 +0000 (Tue, 05 May 2009) Log Message: ----------- add extra configure options Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-05 00:52:02 UTC (rev 4680) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-05 02:47:36 UTC (rev 4681) @@ -20,28 +20,32 @@ REQUIRED_PKGS_CSWsquid = CSWoldaprt CSWosslrt CSWsasl CSWcswclassutils PROTOTYPE_FILTER = awk '$$$$3 ~/\/init.d\/cswsquid$$$$/ { $$$$2 = "cswinitsmf" } { print }' -LD = /opt/csw/bin/gld -export LD MASTER_SITES = http://www.squid-cache.org/Versions/v$(RELVER)/$(GARVERSION)/ DISTFILES = $(DISTNAME).tar.bz2 DISTFILES += CSWsquid.postinstall CSWsquid.preremove cswsquid CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --datadir=$(datadir)/$(GARNAME) -CONFIGURE_ARGS += --with-large-files -CONFIGURE_ARGS += --with-gnu-ld=yes -CONFIGURE_ARGS += --with-dl +CONFIGURE_ARGS += --enable-arp-acl +CONFIGURE_ARGS += --enable-auth=basic +CONFIGURE_ARGS += --enable-basic-auth-helpers=LDAP,SMB,YP,PAM,SASL,NCSA +CONFIGURE_ARGS += --enable-cache-digests +CONFIGURE_ARGS += --enable-carp +CONFIGURE_ARGS += --enable-delay-pools +CONFIGURE_ARGS += --enable-devpoll +CONFIGURE_ARGS += --enable-forw-via-db +CONFIGURE_ARGS += --enable-htcp +CONFIGURE_ARGS += --enable-icmp CONFIGURE_ARGS += --enable-large-cache-files +CONFIGURE_ARGS += --enable-referer-log +CONFIGURE_ARGS += --enable-removal-policies=heap,lru +CONFIGURE_ARGS += --enable-select +CONFIGURE_ARGS += --enable-snmp CONFIGURE_ARGS += --enable-ssl +CONFIGURE_ARGS += --enable-useragent-log +CONFIGURE_ARGS += --with-dl +CONFIGURE_ARGS += --with-large-files CONFIGURE_ARGS += --with-openssl=$(prefix) -CONFIGURE_ARGS += --enable-icmp -CONFIGURE_ARGS += --enable-delay-pools -CONFIGURE_ARGS += --enable-useragent-log -CONFIGURE_ARGS += --enable-referer-log -CONFIGURE_ARGS += --enable-arp-acl -CONFIGURE_ARGS += --enable-snmp -CONFIGURE_ARGS += --enable-auth=basic -CONFIGURE_ARGS += --enable-basic-auth-helpers=LDAP,SMB,YP,PAM,SASL,NCSA 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 Tue May 5 14:28:05 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Tue, 05 May 2009 12:28:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4682] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 4682 http://gar.svn.sourceforge.net/gar/?rev=4682&view=rev Author: aigoshin Date: 2009-05-05 12:28:05 +0000 (Tue, 05 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/checksums csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall csw/mgar/pkg/nginx/trunk/files/svc-cswnginx Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-05-05 02:47:36 UTC (rev 4681) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-05-05 12:28:05 UTC (rev 4682) @@ -1,8 +1,8 @@ GARNAME = nginx -GARVERSION = 0.7.30 +GARVERSION = $(NGINX_VERSION) CATEGORIES = server -DESCRIPTION = nginx HTTP server and mail proxy 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. Modified: csw/mgar/pkg/nginx/trunk/checksums =================================================================== --- csw/mgar/pkg/nginx/trunk/checksums 2009-05-05 02:47:36 UTC (rev 4681) +++ csw/mgar/pkg/nginx/trunk/checksums 2009-05-05 12:28:05 UTC (rev 4682) @@ -1,7 +1,7 @@ -31d26f66824fd2d3f33ac0b3b9db1532 download/nginx-0.7.30.tar.gz +521cd4c0248aebfdb25df48a11a8cc49 download/CSWnginx.checkinstall 12b5333e18e985b17f8a5465646e9a8a download/CSWnginx.gspec -521cd4c0248aebfdb25df48a11a8cc49 download/CSWnginx.checkinstall -1e505987ba8df7f61f21fc28b926fc5a download/CSWnginx.postinstall +bb404771e330fe98f93cb2d12a808121 download/CSWnginx.postinstall e9178dc33f2d38aab8f118a8f0550ac7 download/CSWnginx.preremove 5c832758a62ee319ea9dfd1829d736eb download/cswnginx.xml -706889f6967b3b327c14aa0ff5c271ab download/svc-cswnginx +15cce6102a2efcf4d4acde9bb71ea6d3 download/nginx-0.6.36.tar.gz +02b720d1ff091b7d2ab005b4db223345 download/svc-cswnginx Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall 2009-05-05 02:47:36 UTC (rev 4681) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.postinstall 2009-05-05 12:28:05 UTC (rev 4682) @@ -7,11 +7,11 @@ MSG="" UPGRADE_NGINX_ERR=0 if [ "$SMF" = "yes" ]; then - CSWNGINX="$BASEDIR/opt/csw/lib/svc/method/svc-cswnginx" + CSWNGINX="/opt/csw/lib/svc/method/svc-cswnginx" else - CSWNGINX="$BASEDIR/etc/init.d/cswnginx" + CSWNGINX="/etc/init.d/cswnginx" fi - if [ -x $CSWNGINX ]; then + if [ -x "${BASEDIR}${CSWNGINX}" ]; then MSG=`$CSWNGINX upgrade` if [ $? -ne 0 ]; then UPGRADE_NGINX_ERR=1 Modified: csw/mgar/pkg/nginx/trunk/files/svc-cswnginx =================================================================== --- csw/mgar/pkg/nginx/trunk/files/svc-cswnginx 2009-05-05 02:47:36 UTC (rev 4681) +++ csw/mgar/pkg/nginx/trunk/files/svc-cswnginx 2009-05-05 12:28:05 UTC (rev 4682) @@ -9,9 +9,10 @@ PIDFILE=${VARRUNX}/nginx.pid PIDFILO=${VARRUNX}/nginx.pid.oldbin -#[ ! -f ${NGINX} ] && exit 255 -#[ ! -f ${CFGFILE} ] && exit 254 +[ ! -f ${NGINX} ] && exit 255 +[ ! -f ${CFGFILE} ] && exit 254 +RETVAL=0 start() { $NGINX @@ -48,49 +49,49 @@ reload() { killpidf -HUP - RETVAL=$? return $RETVAL } restart() { stop start - RETVAL=$? return $RETVAL } rotate() { killpidf -USR1 - RETVAL=$? return $RETVAL } -state() { +status() { if [ -s "$PIDFILE" ]; then FPID=`/bin/cat $PIDFILE` else echo "not running" - return 1 + RETVAL=1 + return $RETVAL fi PIDP=`/bin/ps -o pid= -p $FPID` if [ "$PIDP" = "" ]; then echo "not running" - return 1 + RETVAL=1 + return $RETVAL fi COMM=`/bin/ps -o comm= -p $FPID` if [ "$NGINX" = "$COMM" ]; then echo "running" - return 0 + RETVAL=0 + return $RETVAL else echo "running, but it is not a CSW package" - return 1 + RETVAL=1 + return $RETVAL fi } upgrade() { killpidf -USR2 - RETVAL=$? [ $RETVAL -ne 0 ] && return $RETVAL OLDBINPID=0 for i in 1 2 3 4 5; do @@ -102,31 +103,27 @@ fi done if [ $OLDBINPID -eq 1 ]; then - state >/dev/null - RETVAL=$? + status >/dev/null if [ $RETVAL -eq 0 ]; then killpidf -WINCH $PIDFILO - RETVAL=$? fi - return $RETVAL + else + RETVAL=1 fi - return 1 + return $RETVAL } upgrade_commit() { killpidf -QUIT $PIDFILO - RETVAL=$? return $RETVAL } upgrade_rollback() { killpidf -HUP $PIDFILO - RETVAL=$? if [ $RETVAL -eq 0 ]; then killpidf -QUIT $PIDFILE - RETVAL=$? fi return $RETVAL } @@ -134,50 +131,41 @@ case "$1" in start) - [ ! -d $VARRUNX ] && /bin/mkdir -p $VARRUNX + [ ! -d $VARRUNX ] && /bin/mkdir -p $VARRUNX ||: check - start - RETVAL=$? + [ $RETVAL -eq 0 ] && start ||: ;; stop) stop ;; refresh|reload) check - RETVAL=$? [ $RETVAL -eq 0 ] && reload ||: ;; restart) check - RETVAL=$? [ $RETVAL -eq 0 ] && restart ||: ;; rotate) rotate - RETVAL=$? ;; -state) - state - RETVAL=$? +status) + status ;; upgrade) check - RETVAL=$? [ $RETVAL -eq 0 ] && upgrade ||: ;; upgrade-commit) upgrade_commit - RETVAL=$? ;; upgrade-rollback) upgrade_rollback - RETVAL=$? ;; *) - echo "Usage:" `basename $0` "{start|stop|refresh|reload|restart|rotate|state|upgrade|upgrade-commit|upgrade-rollback}" + echo "Usage:" `basename $0` "{start|stop|refresh|reload|restart|rotate|status|upgrade|upgrade-commit|upgrade-rollback}" 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 dmichelsen at users.sourceforge.net Tue May 5 15:22:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 05 May 2009 13:22:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4683] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 4683 http://gar.svn.sourceforge.net/gar/?rev=4683&view=rev Author: dmichelsen Date: 2009-05-05 13:22:27 +0000 (Tue, 05 May 2009) Log Message: ----------- mGAR v2: Fix PKG_CONFIG_PATH as it was not updated due to environment exportation 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-05-05 12:28:05 UTC (rev 4682) +++ csw/mgar/gar/v2/gar.conf.mk 2009-05-05 13:22:27 UTC (rev 4683) @@ -496,7 +496,9 @@ # This is for foo-config chaos PKG_CONFIG_DIRS ?= $(libpath_install) $(libdir_install) $(EXTRA_PKG_CONFIG_DIRS) -PKG_CONFIG_PATH ?= $(call MAKEPATH,$(foreach D,$(PKG_CONFIG_DIRS),$(abspath $D/$(MM_LIBDIR)/pkgconfig)) $(_CATEGORY_PKG_CONFIG_PATH) $(EXTRA_PKG_CONFIG_PATH)) +ifneq (,$(findstring $(origin PKG_CONFIG_PATH),undefined environment)) +PKG_CONFIG_PATH = $(call MAKEPATH,$(foreach D,$(PKG_CONFIG_DIRS),$(abspath $D/$(MM_LIBDIR)/pkgconfig)) $(_CATEGORY_PKG_CONFIG_PATH) $(EXTRA_PKG_CONFIG_PATH)) +endif # # Mirror Sites 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 May 5 15:24:11 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 05 May 2009 13:24:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[4684] csw/mgar/pkg/x11/libX11/trunk Message-ID: Revision: 4684 http://gar.svn.sourceforge.net/gar/?rev=4684&view=rev Author: dmichelsen Date: 2009-05-05 13:24:11 +0000 (Tue, 05 May 2009) Log Message: ----------- x11/libx11: Add header fix for pango 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/patch-xlib-sentinel.diff Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-05 13:22:27 UTC (rev 4683) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-05 13:24:11 UTC (rev 4684) @@ -12,6 +12,8 @@ MASTER_SITES =http://xorg.freedesktop.org/releases/individual/lib/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PATCHFILES = patch-stdint.diff +# Add workaround for http://bugs.sourcemage.org/show_bug.cgi?id=13476 +PATCHFILES += patch-xlib-sentinel.diff # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz Modified: csw/mgar/pkg/x11/libX11/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/checksums 2009-05-05 13:22:27 UTC (rev 4683) +++ csw/mgar/pkg/x11/libX11/trunk/checksums 2009-05-05 13:24:11 UTC (rev 4684) @@ -1,2 +1,3 @@ 858e013fd4c37689a2a8d86c8765dab0 download/libX11-1.2.1.tar.gz 667f63d38722e29d6fd36b6648bbb757 download/patch-stdint.diff +918353b72ffab3f2cff4a8bcc65e9376 download/patch-xlib-sentinel.diff Added: csw/mgar/pkg/x11/libX11/trunk/files/patch-xlib-sentinel.diff =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/files/patch-xlib-sentinel.diff (rev 0) +++ csw/mgar/pkg/x11/libX11/trunk/files/patch-xlib-sentinel.diff 2009-05-05 13:24:11 UTC (rev 4684) @@ -0,0 +1,18 @@ +diff -Naur libX11-1.2.1.orig/include/X11/Xlib.h libX11-1.2.1.patched/include/X11/Xlib.h +--- libX11-1.2.1.orig/include/X11/Xlib.h 2008-10-07 19:18:17.000000000 +0200 ++++ libX11-1.2.1.patched/include/X11/Xlib.h 2009-05-05 13:49:27.444486000 +0200 +@@ -38,6 +38,14 @@ + + #define XlibSpecificationRelease 6 + ++#if defined(__GNUC__) && (__GNUC__ >= 4) ++# define _X_SENTINEL(x) __attribute__ ((__sentinel__(x))) ++# define _X_ATTRIBUTE_PRINTF(x,y) __attribute__((__format__(__printf__,x,y))) ++#else ++# define _X_SENTINEL(x) ++# define _X_ATTRIBUTE_PRINTF(x,y) ++#endif /* GNUC >= 4 */ ++ + #ifdef USG + #ifndef __TYPES__ + #include /* forgot to protect it... */ 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 May 5 15:27:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 05 May 2009 13:27:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4685] csw/mgar/pkg/x11 Message-ID: Revision: 4685 http://gar.svn.sourceforge.net/gar/?rev=4685&view=rev Author: dmichelsen Date: 2009-05-05 13:27:05 +0000 (Tue, 05 May 2009) Log Message: ----------- x11/libxft: Initial commit Added Paths: ----------- csw/mgar/pkg/x11/libxft/ csw/mgar/pkg/x11/libxft/branches/ csw/mgar/pkg/x11/libxft/tags/ csw/mgar/pkg/x11/libxft/tags/legacy/ csw/mgar/pkg/x11/libxft/trunk/ csw/mgar/pkg/x11/libxft/trunk/Makefile csw/mgar/pkg/x11/libxft/trunk/checksums csw/mgar/pkg/x11/libxft/trunk/files/ Property changes on: csw/mgar/pkg/x11/libxft/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Copied: csw/mgar/pkg/x11/libxft/trunk/Makefile (from rev 4636, csw/mgar/pkg/x11/libXau/trunk/Makefile) =================================================================== --- csw/mgar/pkg/x11/libxft/trunk/Makefile (rev 0) +++ csw/mgar/pkg/x11/libxft/trunk/Makefile 2009-05-05 13:27:05 UTC (rev 4685) @@ -0,0 +1,22 @@ +GARNAME = libXft +GARVERSION = 2.1.13 +CATEGORIES = x11 + +DESCRIPTION = X11 authorisation library +define BLURB +endef + +MASTER_SITES = http://xorg.freedesktop.org/releases/individual/lib/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWlibxft2 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +BUILD64 = 1 +NOISALIST = 1 +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + Added: csw/mgar/pkg/x11/libxft/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/libxft/trunk/checksums (rev 0) +++ csw/mgar/pkg/x11/libxft/trunk/checksums 2009-05-05 13:27:05 UTC (rev 4685) @@ -0,0 +1 @@ +40ebc53da7efd520e528fa7a564863db download/libXft-2.1.13.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 Tue May 5 15:29:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 05 May 2009 13:29:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[4686] csw/mgar/pkg/x11/libxft/trunk/Makefile Message-ID: Revision: 4686 http://gar.svn.sourceforge.net/gar/?rev=4686&view=rev Author: dmichelsen Date: 2009-05-05 13:29:23 +0000 (Tue, 05 May 2009) Log Message: ----------- x11/libxft: Add package dependencies Modified Paths: -------------- csw/mgar/pkg/x11/libxft/trunk/Makefile Modified: csw/mgar/pkg/x11/libxft/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxft/trunk/Makefile 2009-05-05 13:27:05 UTC (rev 4685) +++ csw/mgar/pkg/x11/libxft/trunk/Makefile 2009-05-05 13:29:23 UTC (rev 4686) @@ -11,6 +11,8 @@ PACKAGES = CSWlibxft2 +REQUIRED_PKGS = CSWfconfig CSWftype2 CSWlibx11 CSWlibxrender + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).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 Tue May 5 16:07:29 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 05 May 2009 14:07:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[4687] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: Revision: 4687 http://gar.svn.sourceforge.net/gar/?rev=4687&view=rev Author: dmichelsen Date: 2009-05-05 14:07:29 +0000 (Tue, 05 May 2009) Log Message: ----------- libcairo: Add x11 dirs Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-05 13:29:23 UTC (rev 4686) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-05 14:07:29 UTC (rev 4687) @@ -40,8 +40,12 @@ ARCHALL_CSWlibcairodoc = 1 # Wait for libpixman, libfontconfig and libXrender to be 64 bit -#BUILD64 = 1 +BUILD64 = 1 +EXTRA_INC = $(prefix)/X11/include +EXTRA_LIB = $(prefix)/X11/lib +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-tests --enable-xlib=yes --enable-xlib-xrender=yes --enable-ft=yes --with-x CONFIGURE_ARGS += --enable-png=yes --enable-ps=yes --enable-pdf=yes --enable-svg=yes This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 17:48:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 15:48:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[4688] csw/mgar/pkg Message-ID: Revision: 4688 http://gar.svn.sourceforge.net/gar/?rev=4688&view=rev Author: valholla Date: 2009-05-05 15:48:21 +0000 (Tue, 05 May 2009) Log Message: ----------- initial checkin Added Paths: ----------- csw/mgar/pkg/squidclamav/ csw/mgar/pkg/squidclamav/Makefile csw/mgar/pkg/squidclamav/branches/ csw/mgar/pkg/squidclamav/tags/ csw/mgar/pkg/squidclamav/trunk/ csw/mgar/pkg/squidclamav/trunk/Makefile csw/mgar/pkg/squidclamav/trunk/checksums csw/mgar/pkg/squidclamav/trunk/files/ Added: csw/mgar/pkg/squidclamav/Makefile =================================================================== --- csw/mgar/pkg/squidclamav/Makefile (rev 0) +++ csw/mgar/pkg/squidclamav/Makefile 2009-05-05 15:48:21 UTC (rev 4688) @@ -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 valholla at users.sourceforge.net Tue May 5 17:49:03 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 15:49:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4689] csw/mgar/pkg/squidclamav/trunk/ Message-ID: Revision: 4689 http://gar.svn.sourceforge.net/gar/?rev=4689&view=rev Author: valholla Date: 2009-05-05 15:49:03 +0000 (Tue, 05 May 2009) Log Message: ----------- propset for gar Property Changed: ---------------- csw/mgar/pkg/squidclamav/trunk/ Property changes on: csw/mgar/pkg/squidclamav/trunk ___________________________________________________________________ Added: svn:externals + 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 Tue May 5 18:02:41 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Tue, 05 May 2009 16:02:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4690] csw/mgar/pkg/nginx/trunk/checksums Message-ID: Revision: 4690 http://gar.svn.sourceforge.net/gar/?rev=4690&view=rev Author: aigoshin Date: 2009-05-05 16:02:27 +0000 (Tue, 05 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/checksums Modified: csw/mgar/pkg/nginx/trunk/checksums =================================================================== --- csw/mgar/pkg/nginx/trunk/checksums 2009-05-05 15:49:03 UTC (rev 4689) +++ csw/mgar/pkg/nginx/trunk/checksums 2009-05-05 16:02:27 UTC (rev 4690) @@ -3,5 +3,5 @@ bb404771e330fe98f93cb2d12a808121 download/CSWnginx.postinstall e9178dc33f2d38aab8f118a8f0550ac7 download/CSWnginx.preremove 5c832758a62ee319ea9dfd1829d736eb download/cswnginx.xml -15cce6102a2efcf4d4acde9bb71ea6d3 download/nginx-0.6.36.tar.gz +e8e7f1593198ed066939cf2e548d7d2f download/nginx-0.7.54.tar.gz 02b720d1ff091b7d2ab005b4db223345 download/svc-cswnginx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 18:07:14 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 16:07:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[4691] csw/mgar/pkg/squidclamav/trunk Message-ID: Revision: 4691 http://gar.svn.sourceforge.net/gar/?rev=4691&view=rev Author: valholla Date: 2009-05-05 16:07:14 +0000 (Tue, 05 May 2009) Log Message: ----------- package checkin Modified Paths: -------------- csw/mgar/pkg/squidclamav/trunk/Makefile csw/mgar/pkg/squidclamav/trunk/checksums Modified: csw/mgar/pkg/squidclamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/squidclamav/trunk/Makefile 2009-05-05 16:02:27 UTC (rev 4690) +++ csw/mgar/pkg/squidclamav/trunk/Makefile 2009-05-05 16:07:14 UTC (rev 4691) @@ -0,0 +1,33 @@ +GARNAME = squidclamav +GARVERSION = 4.0 +CATEGORIES = apps + +DESCRIPTION = A Dedicated ClamAV AntiVirus Redirector for Squid +define BLURB + SquidClamAv is a dedicated ClamAV antivirus redirector for Squid. + It can run antivirus checks based on filename regex, + content-type regex, and more. It is easy to install and works + even with heavy Squid access. +endef + +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWsquidclamav +CATALOGNAME_CSWsquidclamav = squidclamav +SPKG_DESC_CSWsquidclamav = $(DESCRIPTION) + + +REQUIRED_PKGS_CSWsquidclamav = CSWcurlrt CSWsquid CSWlibclamav + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + +CONFIGURE_ARGS = $(DIRPATHS) + +EXTRA_LINKER_FLAGS += -lrt -lnsl -lsocket + +TEST_TARGET = check + +include gar/category.mk Modified: csw/mgar/pkg/squidclamav/trunk/checksums =================================================================== --- csw/mgar/pkg/squidclamav/trunk/checksums 2009-05-05 16:02:27 UTC (rev 4690) +++ csw/mgar/pkg/squidclamav/trunk/checksums 2009-05-05 16:07:14 UTC (rev 4691) @@ -0,0 +1 @@ +0a5e2fa8a4270a90235621fce9269949 download/squidclamav-4.0.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 18:09:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 16:09:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4692] csw/mgar/pkg/squidclamav/trunk/ Message-ID: Revision: 4692 http://gar.svn.sourceforge.net/gar/?rev=4692&view=rev Author: valholla Date: 2009-05-05 16:09:09 +0000 (Tue, 05 May 2009) Log Message: ----------- set ignores Property Changed: ---------------- csw/mgar/pkg/squidclamav/trunk/ Property changes on: csw/mgar/pkg/squidclamav/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 18:11:47 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 16:11:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4693] csw/mgar/pkg/squidclamav/trunk/Makefile Message-ID: Revision: 4693 http://gar.svn.sourceforge.net/gar/?rev=4693&view=rev Author: valholla Date: 2009-05-05 16:11:47 +0000 (Tue, 05 May 2009) Log Message: ----------- fix dependencies Modified Paths: -------------- csw/mgar/pkg/squidclamav/trunk/Makefile Modified: csw/mgar/pkg/squidclamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/squidclamav/trunk/Makefile 2009-05-05 16:09:09 UTC (rev 4692) +++ csw/mgar/pkg/squidclamav/trunk/Makefile 2009-05-05 16:11:47 UTC (rev 4693) @@ -18,7 +18,7 @@ SPKG_DESC_CSWsquidclamav = $(DESCRIPTION) -REQUIRED_PKGS_CSWsquidclamav = CSWcurlrt CSWsquid CSWlibclamav +REQUIRED_PKGS_CSWsquidclamav = CSWcurlrt # 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 valholla at users.sourceforge.net Tue May 5 20:07:37 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 18:07:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4694] csw/mgar/pkg/squidclamav/trunk Message-ID: Revision: 4694 http://gar.svn.sourceforge.net/gar/?rev=4694&view=rev Author: valholla Date: 2009-05-05 18:07:37 +0000 (Tue, 05 May 2009) Log Message: ----------- adjusted postinstall Modified Paths: -------------- csw/mgar/pkg/squidclamav/trunk/Makefile csw/mgar/pkg/squidclamav/trunk/checksums Added Paths: ----------- csw/mgar/pkg/squidclamav/trunk/files/CSWsquidclamav.postinstall csw/mgar/pkg/squidclamav/trunk/files/squidclamav.conf.CSW Modified: csw/mgar/pkg/squidclamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/squidclamav/trunk/Makefile 2009-05-05 16:11:47 UTC (rev 4693) +++ csw/mgar/pkg/squidclamav/trunk/Makefile 2009-05-05 18:07:37 UTC (rev 4694) @@ -12,12 +12,13 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += squidclamav.conf.CSW +DISTFILES += CSWsquidclamav.postinstall PACKAGES = CSWsquidclamav CATALOGNAME_CSWsquidclamav = squidclamav SPKG_DESC_CSWsquidclamav = $(DESCRIPTION) - REQUIRED_PKGS_CSWsquidclamav = CSWcurlrt # We define upstream file regex so we can be notifed of @@ -30,4 +31,17 @@ TEST_TARGET = check +EXTRA_DOCFILES = AUTHORS ChangeLog INSTALL NEWS README + +post-install-modulated: + @ginstall -d $(DESTDIR)$(sysconfdir) + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + @ginstall -d $(DESTDIR)$(libexecdir)/cgi-bin + @cp $(DOWNLOADDIR)/squidclamav.conf.CSW $(DESTDIR)$(sysconfdir) + @( for file in $(EXTRA_DOCFILES); do \ + cp $(abspath $(WORKSRC)/$$file) $(DESTDIR)$(docdir)/$(GARNAME); \ + done ) + @cp $(WORKSRC)/clwarn.cgi* $(DESTDIR)$(libexecdir)/cgi-bin + @$(MAKECOOKIE) + include gar/category.mk Modified: csw/mgar/pkg/squidclamav/trunk/checksums =================================================================== --- csw/mgar/pkg/squidclamav/trunk/checksums 2009-05-05 16:11:47 UTC (rev 4693) +++ csw/mgar/pkg/squidclamav/trunk/checksums 2009-05-05 18:07:37 UTC (rev 4694) @@ -1 +1,3 @@ +eec6f1d7c46890ff70ae88f6967736bd download/CSWsquidclamav.postinstall 0a5e2fa8a4270a90235621fce9269949 download/squidclamav-4.0.tar.gz +731fa1fc58327ee9353c9b4c2a8bd404 download/squidclamav.conf.CSW Added: csw/mgar/pkg/squidclamav/trunk/files/CSWsquidclamav.postinstall =================================================================== --- csw/mgar/pkg/squidclamav/trunk/files/CSWsquidclamav.postinstall (rev 0) +++ csw/mgar/pkg/squidclamav/trunk/files/CSWsquidclamav.postinstall 2009-05-05 18:07:37 UTC (rev 4694) @@ -0,0 +1,60 @@ +#!/bin/sh + +PATH=/usr/bin:/usr/sbin +umask 0022 + +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +SQUID_CONFDIR=${CSW_PREFIX}/etc +SQUID_DOCDIR=${CSW_PREFIX}/share/doc +SQUID_VARDIR=${CSW_PREFIX}/var +SQUID_SBINDIR=${CSW_PREFIX}/sbin +USER='' +GRP='' +SQUID_PORT='' + +if [ -f ${SQUID_CONFDIR}/squid.conf ]; then + USER="`awk '$1 ~ /cache_effective_user/ {print $2}' \ + ${SQUID_CONFDIR}/squid.conf`" + GRP="`awk '$1 ~ /cache_effective_group/ {print $2}' \ + ${SQUID_CONFDIR}/squid.conf`" + SQUID_PORT="`awk '$1 ~ /http_port/ {print $2}' \ + ${SQUID_CONFDIR}/squid.conf`" +fi + +if [ "_x${USER}x_" = "_xx_" ]; then + USER=nobody +fi +if [ "_x${GRP}x_" = "_xx_" ]; then + GRP=nobody +fi +if [ "_x${SQUID_PORT}x_" = "_xx_" ]; then + SQUID_PORT=3128 +fi + +perl -i -pe "s|_SQUIDPORT_|${SQUID_PORT}|" ${SQUID_CONFDIR}/squidclamav.conf.CSW + +if [ -f ${SQUID_CONFDIR}/squidclamav.conf ]; then + echo 'Found:squidclamav.conf, Preserving Existing Config' +else + echo 'Creating squidclamav.conf' + cp ${SQUID_CONFDIR}/squidclamav.conf.CSW ${SQUID_CONFDIR}/squidclamav.conf + chmod 0644 ${SQUID_CONFDIR}/squidclamav.conf +fi + +touch ${SQUID_VARDIR}/logs/squidclamav.log +chown ${USER}:${GRP} ${SQUID_VARDIR}/logs/squidclamav.log + +cat << _EOF_ +****************************************************************************** +* NOTICE: +* Please be sure to configure squidclamav +* Configuration File Location: +* ${SQUID_CONFDIR}/squidclamav.conf +* +* Details on Configuration can be found in +* ${SQUID_DOCDIR}/squidclamav/README +* +****************************************************************************** +_EOF_ + +exit 0 Added: csw/mgar/pkg/squidclamav/trunk/files/squidclamav.conf.CSW =================================================================== --- csw/mgar/pkg/squidclamav/trunk/files/squidclamav.conf.CSW (rev 0) +++ csw/mgar/pkg/squidclamav/trunk/files/squidclamav.conf.CSW 2009-05-05 18:07:37 UTC (rev 4694) @@ -0,0 +1,100 @@ +# squidclamav.conf.dist +# +# Lines have the form: +# +# regex|regexi pattern +# +# abort|aborti pattern +# +# content|contenti pattern +# +# abortcontent|abortcontenti pattern +# +# redirect cgi_redirect_url +# +# logfile /path/to/log_file +# +# proxy none +# +# squid_ip 127.0.0.1 +# +# squid_port 3128 +# +# debug 0|1 +# +# force 0|1 +# +# timeout secondes +# +# clamd_ip 127.0.0.1 +# +# clamd_port 3310 +# +# clamd_local /tmp/clamd +# +# stat 0|1 +# +# maxredir 10 +# +# squidguard /usr/local/squidGuard/bin/squidGuard +# +# whitelist this.trustdomain.com +# whitelist .*\.domain\.* +# +# useragent String_to_modify_curl_user_agent +# +# trust_cache 0|1 +# +# Note that the ordering of regex|abort|content|abortcontent|whitelist lines +# in this file is critical. Some pattern can not be reached if a previous +# pattern match. +# +# +# Examples of valid lines: +# +#squid_ip 127.0.0.1 +#squid_port 3128 +#logfile /var/log/squidclamav.log +#redirect http://proxy.domain.com/cgi-bin/clwarn.cgi +#squidguard /usr/local/squidGuard/bin/squidGuard +#debug 0 +#force 1 +#stat 1 +#maxredir 10 +#clamd_local /tmp/clamd +#clamd_ip 192.168.1.5 +#clamd_port 3310 +#timeout 60 +#useragent Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) +#trust_cache 0 +# +#abort ^.*\.pdf$ +#abort ^.*\.js$ +#abort ^.*\.html$ +#abort ^.*\.css$ +#abort ^.*\.xml$ +#abort ^.*\.xsl$ +#abort ^.*\.js$ +#abort ^.*\.html$ +#abort ^.*\.css$ +#abort ^.*\.xml$ +#abort ^.*\.xsl$ +#abort ^.*\.js$ +#abort ^.*\.jsp$ +#abort ^.*\.jsp\?.*$ +#aborti ^.*servlet.*$ +#abort ^.*\.ico$ +#aborti ^.*\.gif$ +#aborti ^.*\.png$ +#aborti ^.*\.jpg$ +#aborti ^.*\.swf$ +#abortcontenti ^.*application\/x-mms-framed.*$ +#abortcontenti ^.*application\/x-javascript.*$ +#content ^.*application\/.*$ +#whitelist www.eicar.org + +squid_port _SQUIDPORT_ +logfile /var/log/squidclamav.log + +# Scan all files +content ^.*\/.*$ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 21:10:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 19:10:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[4695] csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Message-ID: Revision: 4695 http://gar.svn.sourceforge.net/gar/?rev=4695&view=rev Author: valholla Date: 2009-05-05 19:10:16 +0000 (Tue, 05 May 2009) Log Message: ----------- post-install fix Modified Paths: -------------- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 18:07:37 UTC (rev 4694) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 19:10:16 UTC (rev 4695) @@ -16,14 +16,66 @@ echo "updating extension_dir..." perl -i.bak -plne "s,no-debug-non-zts-[0-9]+,$extdir," $PHP_INI + old_list="`sed -ne 's/^extension=\(.*\)\.so/\1/p' $PHP_INI`" + new_pkgs='' + non_pkgs='' + for ext in `echo ${old_list}`; do + if grep "extension=$ext" $PHP_INI.CSW; then + new_pkgs="${new_pkgs} php5_${ext}" + else + non_pkgs="${non_pkgs} ${ext}" + fi + done + cat << _EOT_ ****************************************************************************** -* NOTICE: The existing php.ini file is from an older version of PHP5. The new -* php.ini.CSW is based on php.ini-recommended from the PHP 5.2.1 distribution. +* NOTICE: The existing php.ini file is from an older version of PHP5. * -* Please consider merging any local configuration changes into a copy of the -* most recent CSW configuration file. +* ************* PLEASE READ ************* +* +* Starting with php5-5.2.9,REV=2009.04.29 the CSW php5 suite has been +* broken out into seperate packages for the modules. +* +_EOT_ +if [ -n ${new_pkgs} ]; then + cat << _EOT_ +* ************* PLEASE READ ************* +* +* Your existing config contains the following extensions +* that now have become external packages: +* ${new_pkgs} +* to keep the same functionality as the original install +* install ${new_pkgs} using pkg-get +* +* If you have issues with missing extensions, Please check +* the catalog for the missing extension before filing a bug report +* +_EOT_ +else + cat << _EOT_ +* ************* PLEASE READ ************* +* +* Your existing config does not contain any shared extensions +* that are now packages. If you have issues with missing extensions, +* Please Check the catalog for the missing extension before +* filing a bug report. +* +_EOT_ +fi +if [ -n ${non_pkgs} ]; then + cat << _EOT_ +* ************* PLEASE READ ************* +* +* Your existing config contains the following extensions +* that are not part of CSW build: +* ${non_pkgs} +* +* Please verify they are still working after this upgrade. +* +_EOT_ +fi +cat << _EOT_ ****************************************************************************** ****************************************************************************** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 22:10:47 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 20:10:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4696] csw/mgar/pkg/squid/trunk/Makefile Message-ID: Revision: 4696 http://gar.svn.sourceforge.net/gar/?rev=4696&view=rev Author: valholla Date: 2009-05-05 20:10:47 +0000 (Tue, 05 May 2009) Log Message: ----------- don't force devpoll Modified Paths: -------------- csw/mgar/pkg/squid/trunk/Makefile Modified: csw/mgar/pkg/squid/trunk/Makefile =================================================================== --- csw/mgar/pkg/squid/trunk/Makefile 2009-05-05 19:10:16 UTC (rev 4695) +++ csw/mgar/pkg/squid/trunk/Makefile 2009-05-05 20:10:47 UTC (rev 4696) @@ -32,7 +32,6 @@ CONFIGURE_ARGS += --enable-cache-digests CONFIGURE_ARGS += --enable-carp CONFIGURE_ARGS += --enable-delay-pools -CONFIGURE_ARGS += --enable-devpoll CONFIGURE_ARGS += --enable-forw-via-db CONFIGURE_ARGS += --enable-htcp CONFIGURE_ARGS += --enable-icmp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 22:47:41 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 20:47:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4697] csw/mgar/pkg/php5/trunk/checksums Message-ID: Revision: 4697 http://gar.svn.sourceforge.net/gar/?rev=4697&view=rev Author: valholla Date: 2009-05-05 20:47:40 +0000 (Tue, 05 May 2009) Log Message: ----------- checksum change Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 20:10:47 UTC (rev 4696) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 20:47:40 UTC (rev 4697) @@ -1,11 +1,10 @@ -77076f9a0bab2777c15b84c4c0bd7ba4 download/CSWap2modphp5.depend 632cb357e102e18e04bb5666825a912f download/CSWap2modphp5.postinstall e1381a4ba49e46b2097b76286a1b36fb download/CSWap2modphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWap2modphp5.space 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -8139c9c02a2f62bac64041fdd0e90bf6 download/CSWphp5.postinstall +50ac22e8d8bd961c8bc69635a202a56a download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 23:18:33 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 21:18:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[4698] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4698 http://gar.svn.sourceforge.net/gar/?rev=4698&view=rev Author: valholla Date: 2009-05-05 21:18:33 +0000 (Tue, 05 May 2009) Log Message: ----------- post-install tweak Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 20:47:40 UTC (rev 4697) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 21:18:33 UTC (rev 4698) @@ -4,7 +4,7 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -50ac22e8d8bd961c8bc69635a202a56a download/CSWphp5.postinstall +69cc09afe1d73127e48d0d59b4c20b15 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 20:47:40 UTC (rev 4697) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 21:18:33 UTC (rev 4698) @@ -38,7 +38,7 @@ * broken out into seperate packages for the modules. * _EOT_ -if [ -n ${new_pkgs} ]; then +if [ -n "${new_pkgs}" ]; then cat << _EOT_ * ************* PLEASE READ ************* * @@ -63,7 +63,7 @@ * _EOT_ fi -if [ -n ${non_pkgs} ]; then +if [ -n "${non_pkgs}" ]; then cat << _EOT_ * ************* PLEASE READ ************* * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 23:41:17 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 21:41:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[4699] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4699 http://gar.svn.sourceforge.net/gar/?rev=4699&view=rev Author: valholla Date: 2009-05-05 21:41:17 +0000 (Tue, 05 May 2009) Log Message: ----------- tweak post-install Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 21:18:33 UTC (rev 4698) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 21:41:17 UTC (rev 4699) @@ -4,7 +4,7 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -69cc09afe1d73127e48d0d59b4c20b15 download/CSWphp5.postinstall +f98ec3d799fa183694eec035e9454b64 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 21:18:33 UTC (rev 4698) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 21:41:17 UTC (rev 4699) @@ -44,9 +44,19 @@ * * Your existing config contains the following extensions * that now have become external packages: -* ${new_pkgs} +_EOT_ +cnt=1 +for name in `echo ${non_pkgs}`; do + if [ `expr ${cnt} % 4` -ne 0 ]; then + echo "${name} \c" + else + echo "${name}" + fi + cnt=`expr ${cnt} + 1` +done +cat << _EOT_ * to keep the same functionality as the original install -* install ${new_pkgs} using pkg-get +* install them using pkg-get * * If you have issues with missing extensions, Please check * the catalog for the missing extension before filing a bug report @@ -69,7 +79,17 @@ * * Your existing config contains the following extensions * that are not part of CSW build: -* ${non_pkgs} +_EOT_ +cnt=1 +for name in `echo ${non_pkgs}`; do + if [ `expr ${cnt} % 4` -ne 0 ]; then + echo "${name} \c" + else + echo "${name}" + fi + cnt=`expr ${cnt} + 1` +done +cat << _EOT_ * * Please verify they are still working after this upgrade. * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Tue May 5 23:54:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 21:54:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[4700] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4700 http://gar.svn.sourceforge.net/gar/?rev=4700&view=rev Author: valholla Date: 2009-05-05 21:54:51 +0000 (Tue, 05 May 2009) Log Message: ----------- tweak post-install Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 21:41:17 UTC (rev 4699) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 21:54:51 UTC (rev 4700) @@ -4,7 +4,7 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -f98ec3d799fa183694eec035e9454b64 download/CSWphp5.postinstall +dc7c3434b97077f0915985ea6a6b6454 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 21:41:17 UTC (rev 4699) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 21:54:51 UTC (rev 4700) @@ -44,9 +44,10 @@ * * Your existing config contains the following extensions * that now have become external packages: +* _EOT_ cnt=1 -for name in `echo ${non_pkgs}`; do +for name in `echo ${new_pkgs}`; do if [ `expr ${cnt} % 4` -ne 0 ]; then echo "${name} \c" else @@ -55,8 +56,9 @@ cnt=`expr ${cnt} + 1` done cat << _EOT_ +* * to keep the same functionality as the original install -* install them using pkg-get +* you will need to install them using pkg-get * * If you have issues with missing extensions, Please check * the catalog for the missing extension before filing a bug report This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 00:01:12 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 22:01:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[4701] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4701 http://gar.svn.sourceforge.net/gar/?rev=4701&view=rev Author: valholla Date: 2009-05-05 22:01:12 +0000 (Tue, 05 May 2009) Log Message: ----------- tweak post-install Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 21:54:51 UTC (rev 4700) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 22:01:12 UTC (rev 4701) @@ -4,7 +4,7 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -dc7c3434b97077f0915985ea6a6b6454 download/CSWphp5.postinstall +bc2a45ba7d5f65b8e027f70d4fefce78 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 21:54:51 UTC (rev 4700) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 22:01:12 UTC (rev 4701) @@ -55,6 +55,9 @@ fi cnt=`expr ${cnt} + 1` done +if [ `expr ${cnt} - 1` -ne 4 ]; then + echo +fi cat << _EOT_ * * to keep the same functionality as the original install @@ -91,6 +94,9 @@ fi cnt=`expr ${cnt} + 1` done +if [ `expr ${cnt} - 1` -ne 4 ]; then + echo +fi cat << _EOT_ * * Please verify they are still working after this upgrade. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 00:09:20 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 22:09:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[4702] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4702 http://gar.svn.sourceforge.net/gar/?rev=4702&view=rev Author: valholla Date: 2009-05-05 22:09:20 +0000 (Tue, 05 May 2009) Log Message: ----------- tweak post-install Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 22:01:12 UTC (rev 4701) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 22:09:20 UTC (rev 4702) @@ -4,7 +4,7 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -bc2a45ba7d5f65b8e027f70d4fefce78 download/CSWphp5.postinstall +838488d589349bf4d0cf800e3e60d8a9 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 22:01:12 UTC (rev 4701) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 22:09:20 UTC (rev 4702) @@ -48,14 +48,18 @@ _EOT_ cnt=1 for name in `echo ${new_pkgs}`; do + if [ ${cnt} -eq 1 ]; then + echo "* \c" + fi if [ `expr ${cnt} % 4` -ne 0 ]; then echo "${name} \c" + cnt=`expr ${cnt} + 1` else echo "${name}" + cnt=1 fi - cnt=`expr ${cnt} + 1` done -if [ `expr ${cnt} - 1` -ne 4 ]; then +if [ ${cnt} -ne 1 ]; then echo fi cat << _EOT_ @@ -87,14 +91,18 @@ _EOT_ cnt=1 for name in `echo ${non_pkgs}`; do + if [ ${cnt} -eq 1 ]; then + echo "* \c" + fi if [ `expr ${cnt} % 4` -ne 0 ]; then echo "${name} \c" + cnt=`expr ${cnt} + 1` else echo "${name}" + cnt=1 fi - cnt=`expr ${cnt} + 1` done -if [ `expr ${cnt} - 1` -ne 4 ]; then +if [ ${cnt} -ne 1 ]; then echo fi cat << _EOT_ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 00:16:38 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Tue, 05 May 2009 22:16:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[4703] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4703 http://gar.svn.sourceforge.net/gar/?rev=4703&view=rev Author: valholla Date: 2009-05-05 22:16:38 +0000 (Tue, 05 May 2009) Log Message: ----------- tweak post-install Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-05 22:09:20 UTC (rev 4702) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-05 22:16:38 UTC (rev 4703) @@ -4,7 +4,7 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -838488d589349bf4d0cf800e3e60d8a9 download/CSWphp5.postinstall +41ce1e71884ec05db2ac678c48721a82 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 22:09:20 UTC (rev 4702) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-05 22:16:38 UTC (rev 4703) @@ -88,6 +88,7 @@ * * Your existing config contains the following extensions * that are not part of CSW build: +* _EOT_ cnt=1 for name in `echo ${non_pkgs}`; do This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 02:35:06 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 00:35:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[4704] csw/mgar/pkg/fixme/trunk Message-ID: Revision: 4704 http://gar.svn.sourceforge.net/gar/?rev=4704&view=rev Author: valholla Date: 2009-05-06 00:35:05 +0000 (Wed, 06 May 2009) Log Message: ----------- rename to fixlibtool Added Paths: ----------- csw/mgar/pkg/fixme/trunk/fixlibtool Removed Paths: ------------- csw/mgar/pkg/fixme/trunk/fixlibtool.sh csw/mgar/pkg/fixme/trunk/fixme.sh Added: csw/mgar/pkg/fixme/trunk/fixlibtool =================================================================== --- csw/mgar/pkg/fixme/trunk/fixlibtool (rev 0) +++ csw/mgar/pkg/fixme/trunk/fixlibtool 2009-05-06 00:35:05 UTC (rev 4704) @@ -0,0 +1,51 @@ +#!/bin/bash +#################################################### +# +# fixlibtool +# Intended to remove the use of libtool's +# pseudo-libraries for opencsw builds. +# +# Author: Mike Watters mwatters_at_opencsw.org +# Initial Version: 0.1 +# +#################################################### + +umask 0022 +PATH=/opt/csw/bin + +if [ $# -ne 1 ]; then + gecho "USAGE: $(basename $0) WORKSRC" + exit 1 +fi +BASEPATH=$1 + +## Fix Makefiles +for mk in $(gfind ${BASEPATH} -name Makefile -print); do + LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ + gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") + + for file in ${LT_FILES}; do + LIB_NAME=$(ggrep 'dlname=' ${file} | \ + gsed -e "s/.*'\(.*\)'/\1/" \ + -e "s/^lib//" \ + -e "s/\.so.*$//") + fixpath=$(gecho $file |gsed 's/\//\\\//g') + gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new + gmv Makefile.new ${mk} + gchmod +x ${mk} + done +done + +## Fix libtool Script +for lt in $(gfind ${BASEPATH} -name libtool -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new + gmv ${lt}.new ${lt} + gchmod +x ${lt} +done + +for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new + gmv ${LTMAIN}.new ${LTMAIN} + gchmod +x ${LTMAIN} +done + Property changes on: csw/mgar/pkg/fixme/trunk/fixlibtool ___________________________________________________________________ Added: svn:executable + * Deleted: csw/mgar/pkg/fixme/trunk/fixlibtool.sh =================================================================== --- csw/mgar/pkg/fixme/trunk/fixlibtool.sh 2009-05-05 22:16:38 UTC (rev 4703) +++ csw/mgar/pkg/fixme/trunk/fixlibtool.sh 2009-05-06 00:35:05 UTC (rev 4704) @@ -1,51 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -done - Deleted: csw/mgar/pkg/fixme/trunk/fixme.sh =================================================================== --- csw/mgar/pkg/fixme/trunk/fixme.sh 2009-05-05 22:16:38 UTC (rev 4703) +++ csw/mgar/pkg/fixme/trunk/fixme.sh 2009-05-06 00:35:05 UTC (rev 4704) @@ -1,51 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -done - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 02:37:02 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 00:37:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[4705] csw/mgar/pkg/fixme/ Message-ID: Revision: 4705 http://gar.svn.sourceforge.net/gar/?rev=4705&view=rev Author: valholla Date: 2009-05-06 00:37:02 +0000 (Wed, 06 May 2009) Log Message: ----------- rename to fixlibtool Removed Paths: ------------- csw/mgar/pkg/fixme/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 03:16:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 01:16:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4706] csw/mgar/pkg Message-ID: Revision: 4706 http://gar.svn.sourceforge.net/gar/?rev=4706&view=rev Author: valholla Date: 2009-05-06 01:16:25 +0000 (Wed, 06 May 2009) Log Message: ----------- rename Added Paths: ----------- csw/mgar/pkg/fixlibtool/ csw/mgar/pkg/fixlibtool/trunk/fixlibtool Removed Paths: ------------- csw/mgar/pkg/fixlibtool/trunk/fixlibtool.sh csw/mgar/pkg/fixlibtool/trunk/fixme.sh Copied: csw/mgar/pkg/fixlibtool/trunk/fixlibtool (from rev 4704, csw/mgar/pkg/fixme/trunk/fixlibtool) =================================================================== --- csw/mgar/pkg/fixlibtool/trunk/fixlibtool (rev 0) +++ csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 01:16:25 UTC (rev 4706) @@ -0,0 +1,51 @@ +#!/bin/bash +#################################################### +# +# fixlibtool +# Intended to remove the use of libtool's +# pseudo-libraries for opencsw builds. +# +# Author: Mike Watters mwatters_at_opencsw.org +# Initial Version: 0.1 +# +#################################################### + +umask 0022 +PATH=/opt/csw/bin + +if [ $# -ne 1 ]; then + gecho "USAGE: $(basename $0) WORKSRC" + exit 1 +fi +BASEPATH=$1 + +## Fix Makefiles +for mk in $(gfind ${BASEPATH} -name Makefile -print); do + LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ + gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") + + for file in ${LT_FILES}; do + LIB_NAME=$(ggrep 'dlname=' ${file} | \ + gsed -e "s/.*'\(.*\)'/\1/" \ + -e "s/^lib//" \ + -e "s/\.so.*$//") + fixpath=$(gecho $file |gsed 's/\//\\\//g') + gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new + gmv Makefile.new ${mk} + gchmod +x ${mk} + done +done + +## Fix libtool Script +for lt in $(gfind ${BASEPATH} -name libtool -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new + gmv ${lt}.new ${lt} + gchmod +x ${lt} +done + +for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new + gmv ${LTMAIN}.new ${LTMAIN} + gchmod +x ${LTMAIN} +done + Deleted: csw/mgar/pkg/fixlibtool/trunk/fixlibtool.sh =================================================================== --- csw/mgar/pkg/fixme/trunk/fixlibtool.sh 2009-05-03 22:08:17 UTC (rev 4664) +++ csw/mgar/pkg/fixlibtool/trunk/fixlibtool.sh 2009-05-06 01:16:25 UTC (rev 4706) @@ -1,51 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -done - Deleted: csw/mgar/pkg/fixlibtool/trunk/fixme.sh =================================================================== --- csw/mgar/pkg/fixme/trunk/fixme.sh 2009-05-03 22:08:17 UTC (rev 4664) +++ csw/mgar/pkg/fixlibtool/trunk/fixme.sh 2009-05-06 01:16:25 UTC (rev 4706) @@ -1,51 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -done - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 03:23:45 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 01:23:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[4707] csw/mgar/pkg/fixlibtool/trunk/fixlibtool Message-ID: Revision: 4707 http://gar.svn.sourceforge.net/gar/?rev=4707&view=rev Author: valholla Date: 2009-05-06 01:23:45 +0000 (Wed, 06 May 2009) Log Message: ----------- svn keywords Modified Paths: -------------- csw/mgar/pkg/fixlibtool/trunk/fixlibtool Property Changed: ---------------- csw/mgar/pkg/fixlibtool/trunk/fixlibtool Modified: csw/mgar/pkg/fixlibtool/trunk/fixlibtool =================================================================== --- csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 01:16:25 UTC (rev 4706) +++ csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 01:23:45 UTC (rev 4707) @@ -1,13 +1,24 @@ #!/bin/bash #################################################### # -# fixlibtool +# $URL$ +# $Author$ +# $Date$ +# $Revision$ +# $LastChangedRevision$ +# # Intended to remove the use of libtool's # pseudo-libraries for opencsw builds. # -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 +# Usage: fixlibtool $(WORKSRC) # +# Intened usage: +# DISTFILES += fixlibtool +# post-configure-modulated: +# @(echo "~~~ Fixing Libtool ~~~") +# @$(DOWNLOADDIR)/fixlibtool $(WORKSRC) +# @$(MAKECOOKIE) +# #################################################### umask 0022 @@ -49,3 +60,4 @@ gchmod +x ${LTMAIN} done +exit 0 Property changes on: csw/mgar/pkg/fixlibtool/trunk/fixlibtool ___________________________________________________________________ Added: svn:keywords + URL Author Date Revision LastChangedRevision This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 03:26:59 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 01:26:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4708] csw/mgar/pkg/fixlibtool/trunk/fixlibtool Message-ID: Revision: 4708 http://gar.svn.sourceforge.net/gar/?rev=4708&view=rev Author: valholla Date: 2009-05-06 01:26:59 +0000 (Wed, 06 May 2009) Log Message: ----------- svn keywords Modified Paths: -------------- csw/mgar/pkg/fixlibtool/trunk/fixlibtool Modified: csw/mgar/pkg/fixlibtool/trunk/fixlibtool =================================================================== --- csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 01:23:45 UTC (rev 4707) +++ csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 01:26:59 UTC (rev 4708) @@ -7,6 +7,7 @@ # $Revision$ # $LastChangedRevision$ # +# Author: Mike Watters mwatters_at_opencsw_dot_org # Intended to remove the use of libtool's # pseudo-libraries for opencsw builds. # 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 May 6 10:37:44 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 06 May 2009 08:37:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[4709] csw/mgar/pkg/pixman/trunk Message-ID: Revision: 4709 http://gar.svn.sourceforge.net/gar/?rev=4709&view=rev Author: dmichelsen Date: 2009-05-06 08:37:44 +0000 (Wed, 06 May 2009) Log Message: ----------- pixman: Update to dynamic gspec and 64 bit Modified Paths: -------------- csw/mgar/pkg/pixman/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec csw/mgar/pkg/pixman/trunk/files/license.txt Modified: csw/mgar/pkg/pixman/trunk/Makefile =================================================================== --- csw/mgar/pkg/pixman/trunk/Makefile 2009-05-06 01:26:59 UTC (rev 4708) +++ csw/mgar/pkg/pixman/trunk/Makefile 2009-05-06 08:37:44 UTC (rev 4709) @@ -2,33 +2,24 @@ GARVERSION = 0.15.2 CATEGORIES = lib -DESCRIPTION = The pixel-manipulation library for X and cairo +DESCRIPTION = The pixel-manipulation library for X and cairo define BLURB endef -MASTER_SITES = http://www.cairographics.org/releases/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -# PKGDIST = $(GARNAME)-$(GARVERSION).tar.gz +MASTER_SITES = http://www.cairographics.org/releases/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz # 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) +# Same as from gar/x11/categories/x11/category.mk +EXTRA_CFLAGS = -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION +EXTRA_CXXFLAGS = -xlibmil -xlibmopt -features=tmplife -norunpath -DISTFILES += $(call admfiles,CSWpixman, ) -DISTFILES += license.txt - -#REQUIRED_PKGS_CSWpixman = CSWlibx11 - BUILD64 = 1 +NOISALIST = 1 -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 = $(DIRPATHS) -CONFIGURE_ARGS += --enable-gtk +CONFIGURE_ARGS += --disable-gtk -LICENSE = license.txt - include gar/category.mk Deleted: csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec 2009-05-06 01:26:59 UTC (rev 4708) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixman.gspec 2009-05-06 08:37:44 UTC (rev 4709) @@ -1,6 +0,0 @@ -%var bitname pixman -%var pkgname CSWpixman -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/%{GARNAME} for license information Deleted: csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec =================================================================== --- csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec 2009-05-06 01:26:59 UTC (rev 4708) +++ csw/mgar/pkg/pixman/trunk/files/CSWpixmandevel.gspec 2009-05-06 08:37:44 UTC (rev 4709) @@ -1,6 +0,0 @@ -%var bitname pixman_devel -%var pkgname CSWpixmandevel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/%{GARNAME} for license information Deleted: csw/mgar/pkg/pixman/trunk/files/license.txt =================================================================== --- csw/mgar/pkg/pixman/trunk/files/license.txt 2009-05-06 01:26:59 UTC (rev 4708) +++ csw/mgar/pkg/pixman/trunk/files/license.txt 2009-05-06 08:37:44 UTC (rev 4709) @@ -1,18 +0,0 @@ -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 Red Hat not be used in advertising or -publicity pertaining to distribution of the software without specific, -written prior permission. Red Hat makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without express or implied warranty. - -THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS -SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS 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. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Wed May 6 10:43:47 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Wed, 06 May 2009 08:43:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4710] csw/mgar/pkg/nginx/trunk/files/CSWnginx.checkinstall Message-ID: Revision: 4710 http://gar.svn.sourceforge.net/gar/?rev=4710&view=rev Author: aigoshin Date: 2009-05-06 08:43:47 +0000 (Wed, 06 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/files/CSWnginx.checkinstall Modified: csw/mgar/pkg/nginx/trunk/files/CSWnginx.checkinstall =================================================================== --- csw/mgar/pkg/nginx/trunk/files/CSWnginx.checkinstall 2009-05-06 08:37:44 UTC (rev 4709) +++ csw/mgar/pkg/nginx/trunk/files/CSWnginx.checkinstall 2009-05-06 08:43:47 UTC (rev 4710) @@ -14,7 +14,7 @@ echo "nginx service is in '$STATE' state" if [ "$STATE" = "online" ]; then if [ -x "$BASEDIR/opt/csw/lib/svc/method/svc-cswnginx" ]; then - NXSTATE=`$BASEDIR/opt/csw/lib/svc/method/svc-cswnginx state` + NXSTATE=`$BASEDIR/opt/csw/lib/svc/method/svc-cswnginx status` echo "nginx is $NXSTATE" if [ "$NXSTATE" = "running" ]; then echo "nginx online upgrade is requested" @@ -25,7 +25,7 @@ fi else if [ -x $BASEDIR/etc/init.d/cswnginx ]; then - NXSTATE=`$BASEDIR/etc/init.d/cswnginx state` + NXSTATE=`$BASEDIR/etc/init.d/cswnginx status` echo "nginx is $NXSTATE" if [ "$NXSTATE" = "running" ]; then echo "nginx online upgrade is requested" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Wed May 6 10:53:11 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Wed, 06 May 2009 08:53:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[4711] csw/mgar/pkg/nginx/trunk/checksums Message-ID: Revision: 4711 http://gar.svn.sourceforge.net/gar/?rev=4711&view=rev Author: aigoshin Date: 2009-05-06 08:53:10 +0000 (Wed, 06 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/checksums Modified: csw/mgar/pkg/nginx/trunk/checksums =================================================================== --- csw/mgar/pkg/nginx/trunk/checksums 2009-05-06 08:43:47 UTC (rev 4710) +++ csw/mgar/pkg/nginx/trunk/checksums 2009-05-06 08:53:10 UTC (rev 4711) @@ -1,7 +1,7 @@ -521cd4c0248aebfdb25df48a11a8cc49 download/CSWnginx.checkinstall +bb85ec05a172562e6de38a1e8a64198c download/CSWnginx.checkinstall 12b5333e18e985b17f8a5465646e9a8a download/CSWnginx.gspec bb404771e330fe98f93cb2d12a808121 download/CSWnginx.postinstall e9178dc33f2d38aab8f118a8f0550ac7 download/CSWnginx.preremove 5c832758a62ee319ea9dfd1829d736eb download/cswnginx.xml -e8e7f1593198ed066939cf2e548d7d2f download/nginx-0.7.54.tar.gz +15cce6102a2efcf4d4acde9bb71ea6d3 download/nginx-0.6.36.tar.gz 02b720d1ff091b7d2ab005b4db223345 download/svc-cswnginx 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 May 6 11:01:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 06 May 2009 09:01:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[4712] csw/mgar/pkg/pango/trunk Message-ID: Revision: 4712 http://gar.svn.sourceforge.net/gar/?rev=4712&view=rev Author: dmichelsen Date: 2009-05-06 09:01:23 +0000 (Wed, 06 May 2009) Log Message: ----------- pango: Update to 1.24.2 Modified Paths: -------------- csw/mgar/pkg/pango/trunk/Makefile csw/mgar/pkg/pango/trunk/checksums Modified: csw/mgar/pkg/pango/trunk/Makefile =================================================================== --- csw/mgar/pkg/pango/trunk/Makefile 2009-05-06 08:53:10 UTC (rev 4711) +++ csw/mgar/pkg/pango/trunk/Makefile 2009-05-06 09:01:23 UTC (rev 4712) @@ -1,5 +1,5 @@ GARNAME = libpango -GARVERSION = 1.24.1 +GARVERSION = 1.24.2 CATEGORIES = lib DESCRIPTION = A framework for the layout and rendering of international text @@ -26,6 +26,10 @@ UPSTREAM_MASTER_SITES = http://ftp.gnome.org/pub/gnome/sources/pango/ UFILES_REGEX = (\d+(?:\.\d+)*) +EXTRA_INC = $(prefix)/X11/include +EXTRA_LIB = $(prefix)/X11/lib +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib + BUILD64 = 1 NO_ISAEXEC = 1 CONFIGURE_ARGS = $(DIRPATHS) @@ -34,7 +38,7 @@ PREREQUISITE_PKGS = CSWgtk-doc CSWlibxslt REQUIRED_PKGS_CSWpango = CSWggettextrt CSWglib2 CSWfconfig CSWftype2 -REQUIRED_PKGS_CSWpango += CSWlibcairo CSWlibxft2 CSWlibxrender CSWzlib +REQUIRED_PKGS_CSWpango += CSWlibcairo CSWlibxft2 CSWlibxrender CSWzlib CSWlibx11 REQUIRED_PKGS_CSWpangodevel = CSWpango # Dynamic prototype Modified: csw/mgar/pkg/pango/trunk/checksums =================================================================== --- csw/mgar/pkg/pango/trunk/checksums 2009-05-06 08:53:10 UTC (rev 4711) +++ csw/mgar/pkg/pango/trunk/checksums 2009-05-06 09:01:23 UTC (rev 4712) @@ -1,2 +1,2 @@ 34f5b20f6caf282b2533784fbb1b4395 download/fixme.sh -af0beac1dd1825e241c5728081f16acd download/pango-1.24.1.tar.bz2 +7bc6c884d847cabc613e4c6d663771f5 download/pango-1.24.2.tar.bz2 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 May 6 15:14:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 06 May 2009 13:14:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[4713] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 4713 http://gar.svn.sourceforge.net/gar/?rev=4713&view=rev Author: dmichelsen Date: 2009-05-06 13:14:23 +0000 (Wed, 06 May 2009) Log Message: ----------- mGAR v2: Allow overriding for test targets just like for configure and build Modified Paths: -------------- csw/mgar/gar/v2/gar.lib.mk Modified: csw/mgar/gar/v2/gar.lib.mk =================================================================== --- csw/mgar/gar/v2/gar.lib.mk 2009-05-06 09:01:23 UTC (rev 4712) +++ csw/mgar/gar/v2/gar.lib.mk 2009-05-06 13:14:23 UTC (rev 4713) @@ -547,17 +547,17 @@ # Run tests on pre-built sources test-%/Makefile: @echo " ==> Running make $(TEST_TARGET) in $*" - @$(TEST_ENV) $(MAKE) -C $* $(TEST_ARGS) $(TEST_TARGET) + @$(TEST_ENV) $(MAKE) $(foreach TTT,$(TEST_OVERRIDE_DIRS),$(TTT)="$($(TTT))") -C $* $(TEST_ARGS) $(TEST_TARGET) @$(MAKECOOKIE) test-%/makefile: @echo " ==> Running make $(TEST_TARGET) in $*" - @$(TEST_ENV) $(MAKE) -C $* $(TEST_ARGS) $(TEST_TARGET) + @$(TEST_ENV) $(MAKE) $(foreach TTT,$(TEST_OVERRIDE_DIRS),$(TTT)="$($(TTT))") -C $* $(TEST_ARGS) $(TEST_TARGET) @$(MAKECOOKIE) test-%/GNUmakefile: @echo " ==> Running make $(TEST_TARGET) in $*" - @$(TEST_ENV) $(MAKE) -C $* $(TEST_ARGS) $(TEST_TARGET) + @$(TEST_ENV) $(MAKE) $(foreach TTT,$(TEST_OVERRIDE_DIRS),$(TTT)="$($(TTT))") -C $* $(TEST_ARGS) $(TEST_TARGET) @$(MAKECOOKIE) # Ruby makefiles This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:04:27 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:04:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4714] csw/mgar/pkg/fixlibtool/trunk/fixlibtool Message-ID: Revision: 4714 http://gar.svn.sourceforge.net/gar/?rev=4714&view=rev Author: valholla Date: 2009-05-06 16:04:27 +0000 (Wed, 06 May 2009) Log Message: ----------- backup files before changing them Modified Paths: -------------- csw/mgar/pkg/fixlibtool/trunk/fixlibtool Modified: csw/mgar/pkg/fixlibtool/trunk/fixlibtool =================================================================== --- csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 13:14:23 UTC (rev 4713) +++ csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 16:04:27 UTC (rev 4714) @@ -2,12 +2,11 @@ #################################################### # # $URL$ -# $Author$ # $Date$ # $Revision$ # $LastChangedRevision$ # -# Author: Mike Watters mwatters_at_opencsw_dot_org +# Author: Mike Watters (mwatters~~@~~opencsw.org) # Intended to remove the use of libtool's # pseudo-libraries for opencsw builds. # @@ -33,6 +32,7 @@ ## Fix Makefiles for mk in $(gfind ${BASEPATH} -name Makefile -print); do + gcp ${mk} ${mk}.orig LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") @@ -42,20 +42,22 @@ -e "s/^lib//" \ -e "s/\.so.*$//") fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} + gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >${mk}.new + gmv ${mk}.new ${mk} gchmod +x ${mk} done done ## Fix libtool Script for lt in $(gfind ${BASEPATH} -name libtool -print); do + gcp ${lt} ${lt}.orig gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new gmv ${lt}.new ${lt} gchmod +x ${lt} done for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do + gcp ${LTMAIN} ${LTMAIN}.orig gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new gmv ${LTMAIN}.new ${LTMAIN} gchmod +x ${LTMAIN} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:10:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:10:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[4715] csw/mgar/gar/v2/bin/orig_fixlibtool Message-ID: Revision: 4715 http://gar.svn.sourceforge.net/gar/?rev=4715&view=rev Author: valholla Date: 2009-05-06 16:10:16 +0000 (Wed, 06 May 2009) Log Message: ----------- prep for new fixlibtool Added Paths: ----------- csw/mgar/gar/v2/bin/orig_fixlibtool Added: csw/mgar/gar/v2/bin/orig_fixlibtool =================================================================== --- csw/mgar/gar/v2/bin/orig_fixlibtool (rev 0) +++ csw/mgar/gar/v2/bin/orig_fixlibtool 2009-05-06 16:10:16 UTC (rev 4715) @@ -0,0 +1,23 @@ +#!/bin/ksh +# +# $Id$ +# +# Copyright 2006 Cory Omand +# All rights reserved. Use is subject to license terms. +# +# 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. +# +# fixlibtool - remove build-only settings from libtool .la files +# + +# Remove references to temporary directories +perl -i -plne ' + if (/^dependency_libs/) { + s# -[ILR]\s*/tmp\S+##g; + s# -[ILR]\s*/\S+/ # #g; + } + ' $@ + Property changes on: csw/mgar/gar/v2/bin/orig_fixlibtool ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:10:48 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:10:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[4716] csw/mgar/gar/v2/bin/fixlibtool Message-ID: Revision: 4716 http://gar.svn.sourceforge.net/gar/?rev=4716&view=rev Author: valholla Date: 2009-05-06 16:10:45 +0000 (Wed, 06 May 2009) Log Message: ----------- fixlibtool del Removed Paths: ------------- csw/mgar/gar/v2/bin/fixlibtool Deleted: csw/mgar/gar/v2/bin/fixlibtool =================================================================== --- csw/mgar/gar/v2/bin/fixlibtool 2009-05-06 16:10:16 UTC (rev 4715) +++ csw/mgar/gar/v2/bin/fixlibtool 2009-05-06 16:10:45 UTC (rev 4716) @@ -1,22 +0,0 @@ -#!/bin/ksh -# -# $Id$ -# -# Copyright 2006 Cory Omand -# All rights reserved. Use is subject to license terms. -# -# 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. -# -# fixlibtool - remove build-only settings from libtool .la files -# - -# Remove references to temporary directories -perl -i -plne ' - if (/^dependency_libs/) { - s# -[ILR]\s*/tmp\S+##g; - s# -[ILR]\s*/\S+/ # #g; - } - ' $@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:11:39 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:11:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[4717] csw/mgar/gar/v2/bin/fixlibtool Message-ID: Revision: 4717 http://gar.svn.sourceforge.net/gar/?rev=4717&view=rev Author: valholla Date: 2009-05-06 16:11:36 +0000 (Wed, 06 May 2009) Log Message: ----------- new fixlibtool Added Paths: ----------- csw/mgar/gar/v2/bin/fixlibtool Copied: csw/mgar/gar/v2/bin/fixlibtool (from rev 4714, csw/mgar/pkg/fixlibtool/trunk/fixlibtool) =================================================================== --- csw/mgar/gar/v2/bin/fixlibtool (rev 0) +++ csw/mgar/gar/v2/bin/fixlibtool 2009-05-06 16:11:36 UTC (rev 4717) @@ -0,0 +1,66 @@ +#!/bin/bash +#################################################### +# +# $URL$ +# $Date$ +# $Revision$ +# $LastChangedRevision$ +# +# Author: Mike Watters (mwatters~~@~~opencsw.org) +# Intended to remove the use of libtool's +# pseudo-libraries for opencsw builds. +# +# Usage: fixlibtool $(WORKSRC) +# +# Intened usage: +# DISTFILES += fixlibtool +# post-configure-modulated: +# @(echo "~~~ Fixing Libtool ~~~") +# @$(DOWNLOADDIR)/fixlibtool $(WORKSRC) +# @$(MAKECOOKIE) +# +#################################################### + +umask 0022 +PATH=/opt/csw/bin + +if [ $# -ne 1 ]; then + gecho "USAGE: $(basename $0) WORKSRC" + exit 1 +fi +BASEPATH=$1 + +## Fix Makefiles +for mk in $(gfind ${BASEPATH} -name Makefile -print); do + gcp ${mk} ${mk}.orig + LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ + gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") + + for file in ${LT_FILES}; do + LIB_NAME=$(ggrep 'dlname=' ${file} | \ + gsed -e "s/.*'\(.*\)'/\1/" \ + -e "s/^lib//" \ + -e "s/\.so.*$//") + fixpath=$(gecho $file |gsed 's/\//\\\//g') + gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >${mk}.new + gmv ${mk}.new ${mk} + gchmod +x ${mk} + done +done + +## Fix libtool Script +for lt in $(gfind ${BASEPATH} -name libtool -print); do + gcp ${lt} ${lt}.orig + gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new + gmv ${lt}.new ${lt} + gchmod +x ${lt} +done + +for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do + gcp ${LTMAIN} ${LTMAIN}.orig + gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new + gmv ${LTMAIN}.new ${LTMAIN} + gchmod +x ${LTMAIN} +done + +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:12:52 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:12:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4718] csw/mgar/pkg/fixlibtool/trunk/fixlibtool Message-ID: Revision: 4718 http://gar.svn.sourceforge.net/gar/?rev=4718&view=rev Author: valholla Date: 2009-05-06 16:12:51 +0000 (Wed, 06 May 2009) Log Message: ----------- new fixlibtool Removed Paths: ------------- csw/mgar/pkg/fixlibtool/trunk/fixlibtool Deleted: csw/mgar/pkg/fixlibtool/trunk/fixlibtool =================================================================== --- csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 16:11:36 UTC (rev 4717) +++ csw/mgar/pkg/fixlibtool/trunk/fixlibtool 2009-05-06 16:12:51 UTC (rev 4718) @@ -1,66 +0,0 @@ -#!/bin/bash -#################################################### -# -# $URL$ -# $Date$ -# $Revision$ -# $LastChangedRevision$ -# -# Author: Mike Watters (mwatters~~@~~opencsw.org) -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Usage: fixlibtool $(WORKSRC) -# -# Intened usage: -# DISTFILES += fixlibtool -# post-configure-modulated: -# @(echo "~~~ Fixing Libtool ~~~") -# @$(DOWNLOADDIR)/fixlibtool $(WORKSRC) -# @$(MAKECOOKIE) -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - gcp ${mk} ${mk}.orig - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >${mk}.new - gmv ${mk}.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gcp ${lt} ${lt}.orig - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do - gcp ${LTMAIN} ${LTMAIN}.orig - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -done - -exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:15:09 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:15:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4719] csw/mgar/pkg/fixlibtool/ Message-ID: Revision: 4719 http://gar.svn.sourceforge.net/gar/?rev=4719&view=rev Author: valholla Date: 2009-05-06 16:15:09 +0000 (Wed, 06 May 2009) Log Message: ----------- move to gar Removed Paths: ------------- csw/mgar/pkg/fixlibtool/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 6 18:16:57 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 06 May 2009 16:16:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[4720] csw/mgar/gar/v2 Message-ID: Revision: 4720 http://gar.svn.sourceforge.net/gar/?rev=4720&view=rev Author: valholla Date: 2009-05-06 16:16:56 +0000 (Wed, 06 May 2009) Log Message: ----------- New Variable STRIP_LIBTOOL 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-05-06 16:15:09 UTC (rev 4719) +++ csw/mgar/gar/v2/gar.conf.mk 2009-05-06 16:16:56 UTC (rev 4720) @@ -39,6 +39,9 @@ ftp_proxy ?= export http_proxy ftp_proxy +# Don't strip libtool by default +STRIP_LIBTOOL ?= 0 + # Don't do full-dependency builds by default SKIPDEPEND ?= 1 Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-05-06 16:15:09 UTC (rev 4719) +++ csw/mgar/gar/v2/gar.mk 2009-05-06 16:16:56 UTC (rev 4720) @@ -381,6 +381,7 @@ #CONFIGURE_BUILDDEPS = $(addprefix $(GARDIR)/,$(addsuffix /$(COOKIEROOTDIR)/build.d/install,$(BUILDDEPS))) endif +ifneq ($(STRIP_LIBTOOL),1) configure: pre-configure $(addprefix configure-,$(MODULATIONS)) post-configure @$(DONADA) @@ -388,7 +389,21 @@ $(addprefix srcdep-$(GARDIR)/,$(SOURCEDEPS)) \ pre-configure-modulated pre-configure-$(MODULATION) $(CONFIGURE_TARGETS) post-configure-$(MODULATION) post-configure-modulated @$(DONADA) +else +configure: pre-configure $(addprefix configure-,$(MODULATIONS)) post-configure strip-libtool + @$(DONADA) +configure-modulated: verify-isa patch-modulated $(CONFIGURE_IMGDEPS) $(CONFIGURE_BUILDDEPS) $(CONFIGURE_DEPS) \ + $(addprefix srcdep-$(GARDIR)/,$(SOURCEDEPS)) \ + pre-configure-modulated pre-configure-$(MODULATION) $(CONFIGURE_TARGETS) post-configure-$(MODULATION) post-configure-modulated strip-libtool + @$(DONADA) +endif + +strip-libtool: + @echo '[===== Stripping Libtool =====]' + fixlibtool $(WORKSRC) + @$(DONADA) + .PHONY: reset-configure reset-configure-modulated reconfigure: reset-configure configure This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 7 03:28:45 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 07 May 2009 01:28:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[4721] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4721 http://gar.svn.sourceforge.net/gar/?rev=4721&view=rev Author: valholla Date: 2009-05-07 01:28:45 +0000 (Thu, 07 May 2009) Log Message: ----------- add STRIP_LIBTOOL variable and cgi sapi module Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_apache2/Makefile Removed Paths: ------------- csw/mgar/pkg/php5/trunk/files/fixme.sh Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-06 16:16:56 UTC (rev 4720) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-07 01:28:45 UTC (rev 4721) @@ -65,8 +65,9 @@ EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 -DISTFILES += fixme.sh +STRIP_LIBTOOL = 1 + CONFIGURE_ARGS += --prefix=$(prefix)/php5 CONFIGURE_ARGS += --disable-static CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php5/bin @@ -92,6 +93,7 @@ # Copy over template config files and utility scripts PI_SCRIPTS = install-extras +PI_SCRIPTS += install-ap2modphp5 PI_SCRIPTS += install-modphp5 post-install-modulated: $(PI_SCRIPTS) @@ -110,23 +112,32 @@ @(gfind $(PHP5ROOT)/lib -name "*.a" -exec grm {} \;) @$(MAKECOOKIE) +install-ap2modphp5: + @( echo " ==> Now Building ap2_modphp5 <==" ) + @( if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs2=$(prefix)/apache2/sbin/apxs) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) + @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) + @( strip $(DESTDIR)$(prefix)/apache2/libexec/libphp5.so ) + @( gfind $(DESTDIR)$(prefix)/apache* \ + -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) + @$(MAKECOOKIE) + install-modphp5: @( echo " ==> Now Building mod_php5 <==" ) @( if [ -f $(WORKSRC)/Makefile ]; then \ $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) - @( cd $(WORKSRC) && $(BUILD_ENV) ./configure $(NEW_CONFIGURE_ARGS) ) - @( $(DOWNLOADDIR)/fixme.sh $(WORKSRC) ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs=$(prefix)/apache/bin/apxs) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) @( strip $(DESTDIR)$(prefix)/apache/libexec/libphp5.so ) @( gfind $(DESTDIR)$(prefix)/apache* \ -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) @$(MAKECOOKIE) -post-configure-modulated: - @(echo "~~~ Fixing Libtool ~~~") - @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) - $(DONADA) - EXTFILES = $(shell find extensions/*/files/* -prune -type f) pre-fetch: $(foreach F,$(EXTFILES),$(shell cp $(F) $(DOWNLOADDIR))) Modified: csw/mgar/pkg/php5/trunk/extensions/php5_apache2/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_apache2/Makefile 2009-05-06 16:16:56 UTC (rev 4720) +++ csw/mgar/pkg/php5/trunk/extensions/php5_apache2/Makefile 2009-05-07 01:28:45 UTC (rev 4721) @@ -12,7 +12,6 @@ STRIP_DIRS += $(DESTDIR)$(prefix)/apache2/libexec -CONFIGURE_ARGS += --with-apxs2=$(prefix)/apache2/sbin/apxs - PKGFILES_CSWap2modphp5 = .*/csw/apache2/.* +## This is configured in a post-install from the main Makefile Deleted: csw/mgar/pkg/php5/trunk/files/fixme.sh =================================================================== --- csw/mgar/pkg/php5/trunk/files/fixme.sh 2009-05-06 16:16:56 UTC (rev 4720) +++ csw/mgar/pkg/php5/trunk/files/fixme.sh 2009-05-07 01:28:45 UTC (rev 4721) @@ -1,49 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} -done - -LTMAIN=$(gfind ${BASEPATH} -name ltmain.sh -print) -if [ -f ${LTMAIN} ]; then - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} -fi - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 7 03:49:26 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 07 May 2009 01:49:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[4722] csw/mgar/pkg/php5/trunk/Makefile Message-ID: Revision: 4722 http://gar.svn.sourceforge.net/gar/?rev=4722&view=rev Author: valholla Date: 2009-05-07 01:49:26 +0000 (Thu, 07 May 2009) Log Message: ----------- remove pear.conf from install Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-07 01:28:45 UTC (rev 4721) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-07 01:49:26 UTC (rev 4722) @@ -110,6 +110,7 @@ $(DESTDIR)$(prefix)/apache2/etc/extra @(grm -fr $(DESTDIR)/.[a-z]*) @(gfind $(PHP5ROOT)/lib -name "*.a" -exec grm {} \;) + @(grm -f $(DESTDIR)$(prefix)/php5/etc/pear.conf) @$(MAKECOOKIE) install-ap2modphp5: 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 May 7 14:17:03 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 12:17:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4723] csw/mgar/pkg/cpan/Compress-Zlib/trunk Message-ID: Revision: 4723 http://gar.svn.sourceforge.net/gar/?rev=4723&view=rev Author: bonivart Date: 2009-05-07 12:17:02 +0000 (Thu, 07 May 2009) Log Message: ----------- Compress-Zlib: update to 2.015 Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile csw/mgar/pkg/cpan/Compress-Zlib/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.depend csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.gspec csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/ Property changes on: csw/mgar/pkg/cpan/Compress-Zlib/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-05-07 01:49:26 UTC (rev 4722) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-05-07 12:17:02 UTC (rev 4723) @@ -1,5 +1,5 @@ GARNAME = Compress-Zlib -GARVERSION = 2.004 +GARVERSION = 2.015 CATEGORIES = cpan AUTHOR = PMQS @@ -10,10 +10,24 @@ functionality provided by zlib is available in Compress::Zlib. endef -DISTFILES = $(call admfiles,CSWpmcompresszlib,depend prototype) +#DISTFILES += $(call admfiles,CSWpmlibwww,) +DISTFILES += COPYING +#DISTFILES = $(call admfiles,CSWpmcompresszlib,depend prototype) +CATALOGNAME = pm_compresszlib +PACKAGES = CSWpmcompresszlib +ARCHALL = 1 + +REQUIRED_PKGS = CSWpmiocompresszlib CSWpmcompressrawzlib CSWpmiocompressbase + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + DEPENDS += cpan/Compress-Raw-Zlib DEPENDS += cpan/IO-Compress-Base DEPENDS += cpan/IO-Compress-Zlib +CONFIGURE_ARGS = + +SKIPTEST = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Compress-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/checksums 2009-05-07 01:49:26 UTC (rev 4722) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/checksums 2009-05-07 12:17:02 UTC (rev 4723) @@ -1,4 +1,2 @@ -dc01163b6927dda4b16353b4fe04c0c3 download/CSWpmcompresszlib.gspec -73374517031c86a44d56d865f473eb2d download/CSWpmcompresszlib.depend -b71434787441686b486f848cb55d5c69 download/CSWpmcompresszlib.prototype -ea7837294a3a434c1266c7e9862c4360 download/Compress-Zlib-2.004.tar.gz +1334cbfa08be3947a3a149521242587c download/COPYING +689ba2cc399b019d0bf76a0575c32947 download/Compress-Zlib-2.015.tar.gz Added: csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING 2009-05-07 12:17:02 UTC (rev 4723) @@ -0,0 +1,3 @@ + Copyright (c) 1995-2008 Paul Marquess. All rights reserved. + This program is free software; you can redistribute it + and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.depend =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.depend 2009-05-07 01:49:26 UTC (rev 4722) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.depend 2009-05-07 12:17:02 UTC (rev 4723) @@ -1,3 +0,0 @@ -P CSWpmcomprawzlib pm_comprawzlib - Low-Level Interface to zlib compression library -P CSWpmiocompbase pm_iocompbase - Base Class for IO::Compress modules -P CSWpmiocompzlib pm_iocompzlib - Read and write gzip and zip files/buffers. Deleted: csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.gspec =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.gspec 2009-05-07 01:49:26 UTC (rev 4722) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.gspec 2009-05-07 12:17:02 UTC (rev 4723) @@ -1,8 +0,0 @@ -%var bitname pm_compresszlib -%var pkgname CSWpmcompresszlib -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 1995-2004 Paul Marquess. All rights reserved. -This program is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.prototype =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.prototype 2009-05-07 01:49:26 UTC (rev 4722) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/CSWpmcompresszlib.prototype 2009-05-07 12:17:02 UTC (rev 4723) @@ -1,19 +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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Compress 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Compress/Zlib 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Compress/Zlib/.packlist 0644 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/Compress::Zlib.3perl 0444 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/perl/csw/Compress 0755 root bin -f none /opt/csw/share/perl/csw/Compress/Zlib.pm 0444 root bin -d none /opt/csw/share/perl/csw/auto 0755 root bin -d none /opt/csw/share/perl/csw/auto/Compress 0755 root bin -d none /opt/csw/share/perl/csw/auto/Compress/Zlib 0755 root bin -f none /opt/csw/share/perl/csw/auto/Compress/Zlib/autosplit.ix 0444 root bin 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 May 7 15:28:03 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Thu, 07 May 2009 13:28:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4724] csw/mgar/pkg/nginx/trunk/files/svc-cswnginx Message-ID: Revision: 4724 http://gar.svn.sourceforge.net/gar/?rev=4724&view=rev Author: aigoshin Date: 2009-05-07 13:28:03 +0000 (Thu, 07 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/files/svc-cswnginx Modified: csw/mgar/pkg/nginx/trunk/files/svc-cswnginx =================================================================== --- csw/mgar/pkg/nginx/trunk/files/svc-cswnginx 2009-05-07 12:17:02 UTC (rev 4723) +++ csw/mgar/pkg/nginx/trunk/files/svc-cswnginx 2009-05-07 13:28:03 UTC (rev 4724) @@ -95,8 +95,9 @@ [ $RETVAL -ne 0 ] && return $RETVAL OLDBINPID=0 for i in 1 2 3 4 5; do - if [ -f $PIDFILO ]; then + if [ -s $PIDFILO ]; then OLDBINPID=1 + sleep 2 break else sleep 1 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 May 7 15:45:39 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 13:45:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[4725] csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk Message-ID: Revision: 4725 http://gar.svn.sourceforge.net/gar/?rev=4725&view=rev Author: bonivart Date: 2009-05-07 13:45:39 +0000 (Thu, 07 May 2009) Log Message: ----------- Compress-Raw-Zlib: update to 2.019 Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.depend csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.gspec csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/ Property changes on: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-05-07 13:28:03 UTC (rev 4724) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-05-07 13:45:39 UTC (rev 4725) @@ -1,5 +1,5 @@ GARNAME = Compress-Raw-Zlib -GARVERSION = 2.004 +GARVERSION = 2.019 CATEGORIES = cpan AUTHOR = PMQS @@ -9,11 +9,23 @@ compression library. endef -DISTFILES = $(call admfiles,CSWpmcomprawzlib,depend prototype) +DISTFILES += COPYING +CATALOGNAME = pm_compressrawzlib +PACKAGES = CSWpmcompressrawzlib +ARCHALL = 1 + +REQUIRED_PKGS = CSWzlib + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + +CONFIGURE_ARGS = + +#SKIPTEST = 1 + # Use CSWzlib instead of the dist version -PATCHFILES += cswzlib.diff +#PATCHFILES += cswzlib.diff -#DEPEND += lib/zlib +DEPEND += lib/zlib include gar/category.mk Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-05-07 13:28:03 UTC (rev 4724) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-05-07 13:45:39 UTC (rev 4725) @@ -1,5 +1,2 @@ -1961d25b21a6407ae4c2b7548a34ab9e download/CSWpmcomprawzlib.gspec -4322ee21ea3117bcf0fd1f3f9da66ffb download/CSWpmcomprawzlib.depend -d92ba057b3b8ea592a5ef7d646af26e7 download/CSWpmcomprawzlib.prototype -e5b78784b4e3ec857793cc3fa4e51346 download/Compress-Raw-Zlib-2.004.tar.gz -09d9b21c80fe136c1790bf90ba0ae4bb download/cswzlib.diff +f3f53ce3a53b4a71d94574bdde1364de download/COPYING +cb87f8cfc7c1c032da97c8118cc073be download/Compress-Raw-Zlib-2.019.tar.gz Added: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-05-07 13:45:39 UTC (rev 4725) @@ -0,0 +1,3 @@ +Copyright (c) 2005-2007 Paul Marquess. All rights reserved. +This program is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.depend =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.depend 2009-05-07 13:28:03 UTC (rev 4724) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.depend 2009-05-07 13:45:39 UTC (rev 4725) @@ -1 +0,0 @@ -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.gspec =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.gspec 2009-05-07 13:28:03 UTC (rev 4724) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.gspec 2009-05-07 13:45:39 UTC (rev 4725) @@ -1,7 +0,0 @@ -%var bitname pm_comprawzlib -%var pkgname CSWpmcomprawzlib -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2005-2007 Paul Marquess. All rights reserved. -This program is free software; you can redistribute it -and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.prototype =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.prototype 2009-05-07 13:28:03 UTC (rev 4724) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/CSWpmcomprawzlib.prototype 2009-05-07 13:45:39 UTC (rev 4725) @@ -1,17 +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/Compress 0755 root bin -d none /opt/csw/lib/perl/csw/Compress/Raw 0755 root bin -f none /opt/csw/lib/perl/csw/Compress/Raw/Zlib.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Compress 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Compress/Raw 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Compress/Raw/Zlib 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Compress/Raw/Zlib/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Compress/Raw/Zlib/Zlib.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Compress/Raw/Zlib/Zlib.so 0555 root bin -f none /opt/csw/lib/perl/csw/auto/Compress/Raw/Zlib/autosplit.ix 0444 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/Compress::Raw::Zlib.3perl 0444 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 Thu May 7 15:55:21 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 13:55:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[4726] csw/mgar/pkg/cpan/IO-Compress-Base/trunk Message-ID: Revision: 4726 http://gar.svn.sourceforge.net/gar/?rev=4726&view=rev Author: bonivart Date: 2009-05-07 13:55:21 +0000 (Thu, 07 May 2009) Log Message: ----------- IO-Compress-Base: update to 2.015 Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.depend csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.gspec csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-Compress-Base/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile 2009-05-07 13:45:39 UTC (rev 4725) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile 2009-05-07 13:55:21 UTC (rev 4726) @@ -1,5 +1,5 @@ GARNAME = IO-Compress-Base -GARVERSION = 2.004 +GARVERSION = 2.015 CATEGORIES = cpan AUTHOR = PMQS @@ -9,8 +9,14 @@ purpose if to to be sub-classed by IO::Compress modules. endef -DISTFILES = $(call admfiles,CSWpmiocompbase,depend prototype) +DISTFILES += COPYING -DEPENDS += cpan/Scalar-List-Utils +CATALOGNAME = pm_iocompressbase +PACKAGES = CSWpmiocompressbase +ARCHALL = 1 +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + +CONFIGURE_ARGS = + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums 2009-05-07 13:45:39 UTC (rev 4725) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums 2009-05-07 13:55:21 UTC (rev 4726) @@ -1,4 +1,2 @@ -036bc15f3efac88ebf2fb81770889bf1 download/CSWpmiocompbase.gspec -7934c0cef8bd5362646280de26fee5ae download/CSWpmiocompbase.depend -d3f3598813a503bb7dda3331c6dc5861 download/CSWpmiocompbase.prototype -a48a6185d239985d3a9755a36c2ff659 download/IO-Compress-Base-2.004.tar.gz +f3f53ce3a53b4a71d94574bdde1364de download/COPYING +009813067e40c73c28c23fde8d9abfd5 download/IO-Compress-Base-2.015.tar.gz Added: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-05-07 13:55:21 UTC (rev 4726) @@ -0,0 +1,3 @@ +Copyright (c) 2005-2007 Paul Marquess. All rights reserved. +This program is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.depend =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.depend 2009-05-07 13:45:39 UTC (rev 4725) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.depend 2009-05-07 13:55:21 UTC (rev 4726) @@ -1 +0,0 @@ -P CSWpmscalarlist pm_scalarlistutils - a selection of general-utility list and scalar subroutines. Deleted: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.gspec =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.gspec 2009-05-07 13:45:39 UTC (rev 4725) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.gspec 2009-05-07 13:55:21 UTC (rev 4726) @@ -1,8 +0,0 @@ -%var bitname pm_iocompbase -%var pkgname CSWpmiocompbase -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2005-2007 Paul Marquess. All rights reserved. -This program is free software; you can redistribute it -and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.prototype =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.prototype 2009-05-07 13:45:39 UTC (rev 4725) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/CSWpmiocompbase.prototype 2009-05-07 13:55:21 UTC (rev 4726) @@ -1,27 +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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IO 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IO/Compress 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IO/Compress/Base 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IO/Compress/Base/.packlist 0644 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/File::GlobMapper.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Compress::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::AnyUncompress.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::Base.3perl 0444 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/perl/csw/File 0755 root bin -f none /opt/csw/share/perl/csw/File/GlobMapper.pm 0444 root bin -d none /opt/csw/share/perl/csw/IO 0755 root bin -d none /opt/csw/share/perl/csw/IO/Compress 0755 root bin -d none /opt/csw/share/perl/csw/IO/Compress/Base 0755 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Base/Common.pm 0444 root bin -d none /opt/csw/share/perl/csw/IO/Uncompress 0755 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/AnyUncompress.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/Base.pm 0444 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 Thu May 7 16:05:32 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:05:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[4727] csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk Message-ID: Revision: 4727 http://gar.svn.sourceforge.net/gar/?rev=4727&view=rev Author: bonivart Date: 2009-05-07 14:05:31 +0000 (Thu, 07 May 2009) Log Message: ----------- IO-Compress-Zlib: update to 2.015 Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.gspec csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile 2009-05-07 13:55:21 UTC (rev 4726) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile 2009-05-07 14:05:31 UTC (rev 4727) @@ -1,5 +1,5 @@ GARNAME = IO-Compress-Zlib -GARVERSION = 2.004 +GARVERSION = 2.015 CATEGORIES = cpan AUTHOR = PMQS @@ -9,9 +9,16 @@ 1950, 1951, 1952 (i.e. gzip) and zip files/buffers. endef -DISTFILES = $(call admfiles,CSWpmiocompzlib,prototype) +DISTFILES += COPYING -DEPENDS += cpan/IO-Compress-Base -DEPENDS += cpan/Compress-Raw-Zlib +CATALOGNAME = pm_iocompresszlib +PACKAGES = CSWpmiocompresszlib +ARCHALL = 1 +REQUIRED_PKGS = CSWpmiocompressbase CSWpmcompressrawzlib + +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod + +CONFIGURE_ARGS = + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums 2009-05-07 13:55:21 UTC (rev 4726) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums 2009-05-07 14:05:31 UTC (rev 4727) @@ -1,3 +1,2 @@ -f407a1d6f9685e58a969b1d78f841e7a download/CSWpmiocompzlib.gspec -87a3bb4498b9a6aa82c4400364c6f31c download/CSWpmiocompzlib.prototype -a4c3a1501558d832a62907ae4e08c9d8 download/IO-Compress-Zlib-2.004.tar.gz +f3f53ce3a53b4a71d94574bdde1364de download/COPYING +22f3b677a6f1782713c8451966598d3f download/IO-Compress-Zlib-2.015.tar.gz Added: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-05-07 14:05:31 UTC (rev 4727) @@ -0,0 +1,3 @@ +Copyright (c) 2005-2007 Paul Marquess. All rights reserved. +This program is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.gspec =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.gspec 2009-05-07 13:55:21 UTC (rev 4726) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.gspec 2009-05-07 14:05:31 UTC (rev 4727) @@ -1,8 +0,0 @@ -%var bitname pm_iocompzlib -%var pkgname CSWpmiocompzlib -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2005-2007 Paul Marquess. All rights reserved. -This program is free software; you can redistribute it -and/or modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.prototype =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.prototype 2009-05-07 13:55:21 UTC (rev 4726) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/CSWpmiocompzlib.prototype 2009-05-07 14:05:31 UTC (rev 4727) @@ -1,45 +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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IO/Compress 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IO/Compress/Zlib 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IO/Compress/Zlib/.packlist 0644 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/IO::Compress::Deflate.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Compress::Gzip.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Compress::RawDeflate.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Compress::Zip.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::AnyInflate.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::Gunzip.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::Inflate.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::RawInflate.3perl 0444 root bin -f none /opt/csw/share/man/man3/IO::Uncompress::Unzip.3perl 0444 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/perl/csw/IO/Compress 0755 root bin -d none /opt/csw/share/perl/csw/IO/Compress/Adapter 0755 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Adapter/Deflate.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Adapter/Identity.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Deflate.pm 0444 root bin -d none /opt/csw/share/perl/csw/IO/Compress/Gzip 0755 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Gzip.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Gzip/Constants.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/RawDeflate.pm 0444 root bin -d none /opt/csw/share/perl/csw/IO/Compress/Zip 0755 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Zip.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Zip/Constants.pm 0444 root bin -d none /opt/csw/share/perl/csw/IO/Compress/Zlib 0755 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Zlib/Constants.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Compress/Zlib/Extra.pm 0444 root bin -d none /opt/csw/share/perl/csw/IO/Uncompress 0755 root bin -d none /opt/csw/share/perl/csw/IO/Uncompress/Adapter 0755 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/Adapter/Identity.pm 0555 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/Adapter/Inflate.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/AnyInflate.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/Gunzip.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/Inflate.pm 0444 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/RawInflate.pm 0555 root bin -f none /opt/csw/share/perl/csw/IO/Uncompress/Unzip.pm 0444 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 Thu May 7 16:09:31 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:09:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[4728] csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk Message-ID: Revision: 4728 http://gar.svn.sourceforge.net/gar/?rev=4728&view=rev Author: bonivart Date: 2009-05-07 14:09:31 +0000 (Thu, 07 May 2009) Log Message: ----------- IO-Compress-Zlib: fix license and skip test Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile 2009-05-07 14:05:31 UTC (rev 4727) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile 2009-05-07 14:09:31 UTC (rev 4728) @@ -21,4 +21,6 @@ CONFIGURE_ARGS = +SKIPTEST = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-05-07 14:05:31 UTC (rev 4727) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-05-07 14:09:31 UTC (rev 4728) @@ -1,3 +1,3 @@ -Copyright (c) 2005-2007 Paul Marquess. All rights reserved. +Copyright (c) 2005-2008 Paul Marquess. All rights reserved. This program 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 bonivart at users.sourceforge.net Thu May 7 16:10:37 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:10:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4729] csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums Message-ID: Revision: 4729 http://gar.svn.sourceforge.net/gar/?rev=4729&view=rev Author: bonivart Date: 2009-05-07 14:10:36 +0000 (Thu, 07 May 2009) Log Message: ----------- IO-Compress-Zlib: checksums updated Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums Modified: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums 2009-05-07 14:09:31 UTC (rev 4728) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/checksums 2009-05-07 14:10:36 UTC (rev 4729) @@ -1,2 +1,2 @@ -f3f53ce3a53b4a71d94574bdde1364de download/COPYING +44d05b992e7d98c44fd96b5a6b38d596 download/COPYING 22f3b677a6f1782713c8451966598d3f download/IO-Compress-Zlib-2.015.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 Thu May 7 16:14:30 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:14:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[4730] csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/ COPYING Message-ID: Revision: 4730 http://gar.svn.sourceforge.net/gar/?rev=4730&view=rev Author: bonivart Date: 2009-05-07 14:14:30 +0000 (Thu, 07 May 2009) Log Message: ----------- IO-Compress-Base: update license Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-05-07 14:10:36 UTC (rev 4729) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-05-07 14:14:30 UTC (rev 4730) @@ -1,3 +1,3 @@ -Copyright (c) 2005-2007 Paul Marquess. All rights reserved. +Copyright (c) 2005-2008 Paul Marquess. All rights reserved. This program 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 bonivart at users.sourceforge.net Thu May 7 16:15:33 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:15:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[4731] csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums Message-ID: Revision: 4731 http://gar.svn.sourceforge.net/gar/?rev=4731&view=rev Author: bonivart Date: 2009-05-07 14:15:33 +0000 (Thu, 07 May 2009) Log Message: ----------- IO-Compress-Base: update checksums Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums Modified: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums 2009-05-07 14:14:30 UTC (rev 4730) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/checksums 2009-05-07 14:15:33 UTC (rev 4731) @@ -1,2 +1,2 @@ -f3f53ce3a53b4a71d94574bdde1364de download/COPYING +44d05b992e7d98c44fd96b5a6b38d596 download/COPYING 009813067e40c73c28c23fde8d9abfd5 download/IO-Compress-Base-2.015.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 Thu May 7 16:20:26 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:20:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[4732] csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk Message-ID: Revision: 4732 http://gar.svn.sourceforge.net/gar/?rev=4732&view=rev Author: bonivart Date: 2009-05-07 14:20:26 +0000 (Thu, 07 May 2009) Log Message: ----------- Compress-Raw-Zlib: update license Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-05-07 14:15:33 UTC (rev 4731) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-05-07 14:20:26 UTC (rev 4732) @@ -13,7 +13,6 @@ CATALOGNAME = pm_compressrawzlib PACKAGES = CSWpmcompressrawzlib -ARCHALL = 1 REQUIRED_PKGS = CSWzlib @@ -26,6 +25,4 @@ # Use CSWzlib instead of the dist version #PATCHFILES += cswzlib.diff -DEPEND += lib/zlib - include gar/category.mk Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-05-07 14:15:33 UTC (rev 4731) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-05-07 14:20:26 UTC (rev 4732) @@ -1,2 +1,2 @@ -f3f53ce3a53b4a71d94574bdde1364de download/COPYING +500d953c61746ed6c06968b31681c0db download/COPYING cb87f8cfc7c1c032da97c8118cc073be download/Compress-Raw-Zlib-2.019.tar.gz Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-05-07 14:15:33 UTC (rev 4731) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-05-07 14:20:26 UTC (rev 4732) @@ -1,3 +1,3 @@ -Copyright (c) 2005-2007 Paul Marquess. All rights reserved. +Copyright (c) 2005-2009 Paul Marquess. All rights reserved. This program 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 bonivart at users.sourceforge.net Thu May 7 16:23:34 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 07 May 2009 14:23:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[4733] csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile Message-ID: Revision: 4733 http://gar.svn.sourceforge.net/gar/?rev=4733&view=rev Author: bonivart Date: 2009-05-07 14:23:34 +0000 (Thu, 07 May 2009) Log Message: ----------- Compress-Zlib: clean up Makefile Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile Modified: csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-05-07 14:20:26 UTC (rev 4732) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-05-07 14:23:34 UTC (rev 4733) @@ -10,9 +10,7 @@ functionality provided by zlib is available in Compress::Zlib. endef -#DISTFILES += $(call admfiles,CSWpmlibwww,) DISTFILES += COPYING -#DISTFILES = $(call admfiles,CSWpmcompresszlib,depend prototype) CATALOGNAME = pm_compresszlib PACKAGES = CSWpmcompresszlib 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 May 7 18:38:17 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 16:38:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[4734] csw/mgar/pkg/x11/inputproto/trunk/Makefile Message-ID: Revision: 4734 http://gar.svn.sourceforge.net/gar/?rev=4734&view=rev Author: dmichelsen Date: 2009-05-07 16:38:16 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/inputproto: Add 64 bit pkgconfig Modified Paths: -------------- csw/mgar/pkg/x11/inputproto/trunk/Makefile Modified: csw/mgar/pkg/x11/inputproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/inputproto/trunk/Makefile 2009-05-07 14:23:34 UTC (rev 4733) +++ csw/mgar/pkg/x11/inputproto/trunk/Makefile 2009-05-07 16:38:16 UTC (rev 4734) @@ -14,7 +14,9 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 +REQUIRED_PKGS = CSWx11common + +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 18:40:50 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 16:40:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[4735] csw/mgar/pkg/x11 Message-ID: Revision: 4735 http://gar.svn.sourceforge.net/gar/?rev=4735&view=rev Author: dmichelsen Date: 2009-05-07 16:40:50 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/x11common: Initial commit Added Paths: ----------- csw/mgar/pkg/x11/x11common/ csw/mgar/pkg/x11/x11common/branches/ csw/mgar/pkg/x11/x11common/tags/ csw/mgar/pkg/x11/x11common/trunk/ csw/mgar/pkg/x11/x11common/trunk/Makefile csw/mgar/pkg/x11/x11common/trunk/files/ Property changes on: csw/mgar/pkg/x11/x11common/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/x11/x11common/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/x11common/trunk/Makefile (rev 0) +++ csw/mgar/pkg/x11/x11common/trunk/Makefile 2009-05-07 16:40:50 UTC (rev 4735) @@ -0,0 +1,19 @@ +GARNAME = x11common +GARVERSION = 1.0 +CATEGORIES = x11 + +DESCRIPTION = X11 common directories +define BLURB +endef + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: + ginstall -d $(DESTDIR)$(libdir) + gln -s . $(DESTDIR)$(libdir)/32 + gln -s $(ISA_DEFAULT64) $(DESTDIR)$(libdir)/64 + @$(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 Thu May 7 18:57:30 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 16:57:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[4736] csw/mgar/pkg/x11/kbproto/trunk/Makefile Message-ID: Revision: 4736 http://gar.svn.sourceforge.net/gar/?rev=4736&view=rev Author: dmichelsen Date: 2009-05-07 16:57:30 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/kbproto: Add 64 bit pkgconfig Modified Paths: -------------- csw/mgar/pkg/x11/kbproto/trunk/Makefile Modified: csw/mgar/pkg/x11/kbproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/kbproto/trunk/Makefile 2009-05-07 16:40:50 UTC (rev 4735) +++ csw/mgar/pkg/x11/kbproto/trunk/Makefile 2009-05-07 16:57:30 UTC (rev 4736) @@ -14,7 +14,9 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 +REQUIRED_PKGS = CSWx11common + +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 18:58:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 16:58:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4737] csw/mgar/pkg/x11/renderproto/trunk/Makefile Message-ID: Revision: 4737 http://gar.svn.sourceforge.net/gar/?rev=4737&view=rev Author: dmichelsen Date: 2009-05-07 16:58:59 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/renderproto: Add x11common Modified Paths: -------------- csw/mgar/pkg/x11/renderproto/trunk/Makefile Modified: csw/mgar/pkg/x11/renderproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/renderproto/trunk/Makefile 2009-05-07 16:57:30 UTC (rev 4736) +++ csw/mgar/pkg/x11/renderproto/trunk/Makefile 2009-05-07 16:58:59 UTC (rev 4737) @@ -14,6 +14,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWx11common + BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 May 7 19:00:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 17:00:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4738] csw/mgar/pkg/x11/xcb-proto/trunk/Makefile Message-ID: Revision: 4738 http://gar.svn.sourceforge.net/gar/?rev=4738&view=rev Author: dmichelsen Date: 2009-05-07 17:00:27 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xcb-proto: Add 64 bit pkgconfig Modified Paths: -------------- csw/mgar/pkg/x11/xcb-proto/trunk/Makefile Modified: csw/mgar/pkg/x11/xcb-proto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xcb-proto/trunk/Makefile 2009-05-07 16:58:59 UTC (rev 4737) +++ csw/mgar/pkg/x11/xcb-proto/trunk/Makefile 2009-05-07 17:00:27 UTC (rev 4738) @@ -29,12 +29,14 @@ PACKAGES = CSWxcbproto +PREREQUISITE_PKGS = CSWpython REQUIRED_PKGS = CSWpython +REQUIRED_PKGS += CSWx11common # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 19:19:17 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 17:19:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[4739] csw/mgar/gar/v2/bin/mkpackage Message-ID: Revision: 4739 http://gar.svn.sourceforge.net/gar/?rev=4739&view=rev Author: dmichelsen Date: 2009-05-07 17:19:15 +0000 (Thu, 07 May 2009) Log Message: ----------- mGAR v2: Remove pkgspool forcably, as there may be files with perms 444 causing errors Modified Paths: -------------- csw/mgar/gar/v2/bin/mkpackage Modified: csw/mgar/gar/v2/bin/mkpackage =================================================================== --- csw/mgar/gar/v2/bin/mkpackage 2009-05-07 17:00:27 UTC (rev 4738) +++ csw/mgar/gar/v2/bin/mkpackage 2009-05-07 17:19:15 UTC (rev 4739) @@ -856,7 +856,7 @@ my $specname = $config{specname}; my $existing_pkgspool = catfile $spooldir, $specname; - vexec( "rm -r $existing_pkgspool", "Failed to remove $existing_pkgspool" ) + vexec( "rm -rf $existing_pkgspool", "Failed to remove $existing_pkgspool" ) if -d $existing_pkgspool; } 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 May 7 19:33:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 17:33:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[4740] csw/mgar/pkg/cpan Message-ID: Revision: 4740 http://gar.svn.sourceforge.net/gar/?rev=4740&view=rev Author: dmichelsen Date: 2009-05-07 17:33:38 +0000 (Thu, 07 May 2009) Log Message: ----------- cpan/Text-DoubleMetaphone: Initial checkin Added Paths: ----------- csw/mgar/pkg/cpan/Text-DoubleMetaphone/ csw/mgar/pkg/cpan/Text-DoubleMetaphone/branches/ csw/mgar/pkg/cpan/Text-DoubleMetaphone/tags/ csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/ csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/Makefile csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/checksums csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/Makefile 2009-05-07 17:33:38 UTC (rev 4740) @@ -0,0 +1,13 @@ +GARNAME = Text-DoubleMetaphone +GARVERSION = 0.07 +CATEGORIES = cpan +AUTHOR = MAURICE + +DESCRIPTION = Phonetic encoding of words +define BLURB +endef + +PACKAGES = CSWpmtextdblmetaphon +CATALOGNAME = pm_textdblmetaphone + +include gar/category.mk Added: csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-DoubleMetaphone/trunk/checksums 2009-05-07 17:33:38 UTC (rev 4740) @@ -0,0 +1 @@ +f242744aa1c1af4a1662fefbb01804f1 download/Text-DoubleMetaphone-0.07.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 Thu May 7 19:45:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 17:45:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4741] csw/mgar/pkg/cpan Message-ID: Revision: 4741 http://gar.svn.sourceforge.net/gar/?rev=4741&view=rev Author: dmichelsen Date: 2009-05-07 17:45:27 +0000 (Thu, 07 May 2009) Log Message: ----------- cpan/Text-GenderFromName: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Text-GenderFromName/ csw/mgar/pkg/cpan/Text-GenderFromName/branches/ csw/mgar/pkg/cpan/Text-GenderFromName/tags/ csw/mgar/pkg/cpan/Text-GenderFromName/trunk/ csw/mgar/pkg/cpan/Text-GenderFromName/trunk/Makefile csw/mgar/pkg/cpan/Text-GenderFromName/trunk/checksums csw/mgar/pkg/cpan/Text-GenderFromName/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Text-GenderFromName/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/Text-GenderFromName/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-GenderFromName/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-GenderFromName/trunk/Makefile 2009-05-07 17:45:27 UTC (rev 4741) @@ -0,0 +1,18 @@ +GARNAME = Text-GenderFromName +GARVERSION = 0.32 +CATEGORIES = cpan +AUTHOR = EDALY + +DESCRIPTION = Guess the gender of an American first name +define BLURB +endef + +REQUIRED_PKGS = CSWpmtextdblmetaphon + +PACKAGES = CSWpmtextgendername +CATALOGNAME = pm_textgendername + +ARCHALL = 1 + +include gar/category.mk + Added: csw/mgar/pkg/cpan/Text-GenderFromName/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-GenderFromName/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-GenderFromName/trunk/checksums 2009-05-07 17:45:27 UTC (rev 4741) @@ -0,0 +1 @@ +29d8a682dc72151b8c8da35ffbe4cf2a download/Text-GenderFromName-0.32.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 Thu May 7 20:20:15 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 18:20:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[4742] csw/mgar/pkg/x11/xextproto/trunk/Makefile Message-ID: Revision: 4742 http://gar.svn.sourceforge.net/gar/?rev=4742&view=rev Author: dmichelsen Date: 2009-05-07 18:20:15 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xextproto: Use 64 bit pkgconfig Modified Paths: -------------- csw/mgar/pkg/x11/xextproto/trunk/Makefile Modified: csw/mgar/pkg/x11/xextproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xextproto/trunk/Makefile 2009-05-07 17:45:27 UTC (rev 4741) +++ csw/mgar/pkg/x11/xextproto/trunk/Makefile 2009-05-07 18:20:15 UTC (rev 4742) @@ -14,7 +14,9 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 +REQUIRED_PKGS = CSWx11common + +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 20:55:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 18:55:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[4743] csw/mgar/pkg/x11/xproto/trunk/Makefile Message-ID: Revision: 4743 http://gar.svn.sourceforge.net/gar/?rev=4743&view=rev Author: dmichelsen Date: 2009-05-07 18:55:55 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xproto: Use 64 bit pkgconfig Modified Paths: -------------- csw/mgar/pkg/x11/xproto/trunk/Makefile Modified: csw/mgar/pkg/x11/xproto/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xproto/trunk/Makefile 2009-05-07 18:20:15 UTC (rev 4742) +++ csw/mgar/pkg/x11/xproto/trunk/Makefile 2009-05-07 18:55:55 UTC (rev 4743) @@ -13,7 +13,9 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 +REQUIRED_PKGS = CSWx11common + +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 21:05:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 19:05:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[4744] csw/mgar/pkg/x11/xtrans/trunk/Makefile Message-ID: Revision: 4744 http://gar.svn.sourceforge.net/gar/?rev=4744&view=rev Author: dmichelsen Date: 2009-05-07 19:05:34 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xtrans: Use 64 bit pkgconfig 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-05-07 18:55:55 UTC (rev 4743) +++ csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-05-07 19:05:34 UTC (rev 4744) @@ -14,7 +14,7 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 7 21:25:50 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 07 May 2009 19:25:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[4745] csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Message-ID: Revision: 4745 http://gar.svn.sourceforge.net/gar/?rev=4745&view=rev Author: valholla Date: 2009-05-07 19:25:50 +0000 (Thu, 07 May 2009) Log Message: ----------- fix missing links in /opt/csw/gcc4/lib Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-07 19:05:34 UTC (rev 4744) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-07 19:25:50 UTC (rev 4745) @@ -60,6 +60,7 @@ $(_DBG)(cd $(I386_BASE); /usr/bin/pax -rw -v $(MPREFIX)/share $(PKGROOT)) $(_DBG)(cd $(I386_BASE); /usr/bin/pax -rw -v $(MPREFIX)/lib $(PKGROOT)) $(_DBG)(cd $(I386_BASE); /usr/bin/pax -rw -v $(MPREFIX)/libexec $(PKGROOT)) + $(_DBG)(cd $(PPREFIX)/lib; gln . 32) $(_DBG)$(MAKECOOKIE) merge-amd64-files: @@ -69,6 +70,7 @@ /usr/bin/pax -rw -v $$dir $(PKGROOT); done ) $(_DBG)(cd $(AMD_BASE); /usr/bin/pax -rw -v $(MPREFIX)/lib/amd64 $(PKGROOT)) $(_DBG)(cd $(APREFIX)/bin; /usr/bin/pax -rw -v * $(PPREFIX)/bin/amd64) + $(_DBG)(cd $(PPREFIX)/lib; gln amd64 64) $(_DBG)$(MAKECOOKIE) ifeq ($(shell uname -p), i386) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 7 21:37:48 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 07 May 2009 19:37:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[4746] csw/mgar/pkg/gcc4/trunk/files Message-ID: Revision: 4746 http://gar.svn.sourceforge.net/gar/?rev=4746&view=rev Author: valholla Date: 2009-05-07 19:37:48 +0000 (Thu, 07 May 2009) Log Message: ----------- fix missing links in lib, both sparc and x86 Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk csw/mgar/pkg/gcc4/trunk/files/pkg_scripts.mk Modified: csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-07 19:25:50 UTC (rev 4745) +++ csw/mgar/pkg/gcc4/trunk/files/amd_merge.mk 2009-05-07 19:37:48 UTC (rev 4746) @@ -60,7 +60,6 @@ $(_DBG)(cd $(I386_BASE); /usr/bin/pax -rw -v $(MPREFIX)/share $(PKGROOT)) $(_DBG)(cd $(I386_BASE); /usr/bin/pax -rw -v $(MPREFIX)/lib $(PKGROOT)) $(_DBG)(cd $(I386_BASE); /usr/bin/pax -rw -v $(MPREFIX)/libexec $(PKGROOT)) - $(_DBG)(cd $(PPREFIX)/lib; gln . 32) $(_DBG)$(MAKECOOKIE) merge-amd64-files: @@ -70,7 +69,6 @@ /usr/bin/pax -rw -v $$dir $(PKGROOT); done ) $(_DBG)(cd $(AMD_BASE); /usr/bin/pax -rw -v $(MPREFIX)/lib/amd64 $(PKGROOT)) $(_DBG)(cd $(APREFIX)/bin; /usr/bin/pax -rw -v * $(PPREFIX)/bin/amd64) - $(_DBG)(cd $(PPREFIX)/lib; gln amd64 64) $(_DBG)$(MAKECOOKIE) ifeq ($(shell uname -p), i386) Modified: csw/mgar/pkg/gcc4/trunk/files/pkg_scripts.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/pkg_scripts.mk 2009-05-07 19:25:50 UTC (rev 4745) +++ csw/mgar/pkg/gcc4/trunk/files/pkg_scripts.mk 2009-05-07 19:37:48 UTC (rev 4746) @@ -31,6 +31,12 @@ $(_DBG)( gmv $(PKGROOT)/opt/csw/gcc4/lib/gcc/*/*/adalib/*.so* \ $(PKGROOT)/opt/csw/gcc4/lib/ ) $(_DBG)( gfind $(PKGROOT) -name \*~ -exec grm -f {} \; ) + $(_DBG)( cd $(PKGROOT)/opt/csw/gcc4/lib; gln -s . 32 ) + $(_DBG)(if [ "`uname -p`" = "sparc" ]; then \ + cd $(PKGROOT)/opt/csw/gcc4/lib; gln -s sparcv9 64; \ + else \ + cd $(PKGROOT)/opt/csw/gcc4/lib; gln -s amd64 64; \ + fi ) $(_DBG)$(MAKECOOKIE) test-skip: 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 May 7 21:44:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 19:44:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[4747] csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile Message-ID: Revision: 4747 http://gar.svn.sourceforge.net/gar/?rev=4747&view=rev Author: dmichelsen Date: 2009-05-07 19:44:33 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/libpthreads-stubs: Make 64 bit arch-specific Modified Paths: -------------- csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile Modified: csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile 2009-05-07 19:37:48 UTC (rev 4746) +++ csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile 2009-05-07 19:44:33 UTC (rev 4747) @@ -16,7 +16,6 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz BUILD64 = 1 -ARCHALL = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 22:20:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:20:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4748] csw/mgar/pkg/x11/libX11/trunk/Makefile Message-ID: Revision: 4748 http://gar.svn.sourceforge.net/gar/?rev=4748&view=rev Author: dmichelsen Date: 2009-05-07 20:20:40 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/libX11: Add prerequisites Modified Paths: -------------- csw/mgar/pkg/x11/libX11/trunk/Makefile Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-07 19:44:33 UTC (rev 4747) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-07 20:20:40 UTC (rev 4748) @@ -18,7 +18,7 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PREREQUISITE_PKGS = CSWxextproto CSWxtrans CSWkbproto CSWinputproto +PREREQUISITE_PKGS = CSWxcbproto CSWxextproto CSWxtrans CSWkbproto CSWinputproto CSWlibpthreadstubs PACKAGES = CSWlibx11 CSWlibx11devel 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 May 7 22:30:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:30:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[4749] csw/mgar/pkg/x11/xrender/trunk/Makefile Message-ID: Revision: 4749 http://gar.svn.sourceforge.net/gar/?rev=4749&view=rev Author: dmichelsen Date: 2009-05-07 20:30:33 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xrender: Fix NOISALIST 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-05-07 20:20:40 UTC (rev 4748) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-05-07 20:30:33 UTC (rev 4749) @@ -29,7 +29,7 @@ PKGFILES_CSWrenderdev = $(PKGFILES_DEVEL) BUILD64 = 1 -NOARCHLIST = 1 +NOISALIST = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 Thu May 7 22:32:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:32:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4750] csw/mgar/pkg/x11/xtrans/trunk/Makefile Message-ID: Revision: 4750 http://gar.svn.sourceforge.net/gar/?rev=4750&view=rev Author: dmichelsen Date: 2009-05-07 20:32:59 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xtrans: Add dependency to x11common 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-05-07 20:30:33 UTC (rev 4749) +++ csw/mgar/pkg/x11/xtrans/trunk/Makefile 2009-05-07 20:32:59 UTC (rev 4750) @@ -14,6 +14,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWx11common + BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 May 7 22:34:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:34:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4751] csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile Message-ID: Revision: 4751 http://gar.svn.sourceforge.net/gar/?rev=4751&view=rev Author: dmichelsen Date: 2009-05-07 20:34:05 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/libpthread-stubs: Add dependency to x11common Modified Paths: -------------- csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile Modified: csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile 2009-05-07 20:32:59 UTC (rev 4750) +++ csw/mgar/pkg/x11/libpthread-stubs/trunk/Makefile 2009-05-07 20:34:05 UTC (rev 4751) @@ -15,6 +15,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWx11common + BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) 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 May 7 22:35:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:35:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4752] csw/mgar/pkg/x11/libXau/trunk/Makefile Message-ID: Revision: 4752 http://gar.svn.sourceforge.net/gar/?rev=4752&view=rev Author: dmichelsen Date: 2009-05-07 20:35:59 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/libXau: Add dependency to x11common 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-05-07 20:34:05 UTC (rev 4751) +++ csw/mgar/pkg/x11/libXau/trunk/Makefile 2009-05-07 20:35:59 UTC (rev 4752) @@ -16,6 +16,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS_CSWlibxau = CSWx11common + CATALOGNAME_CSWlibxau = libxau CATALOGNAME_CSWlibxaudevel = libxau_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 Thu May 7 22:37:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:37:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4753] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 4753 http://gar.svn.sourceforge.net/gar/?rev=4753&view=rev Author: dmichelsen Date: 2009-05-07 20:37:47 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/libxcb: Add dependency to x11common Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-07 20:35:59 UTC (rev 4752) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-07 20:37:47 UTC (rev 4753) @@ -30,7 +30,7 @@ PKGFILES_CSWlibxcbdoc = $(PKGFILES_DOC) REQUIRED_PKGS_CSWlibxcbdevel = CSWlibxcb -REQUIRED_PKGS_CSWlibxcb = CSWlibxau +REQUIRED_PKGS_CSWlibxcb = CSWx11common CSWlibxau BUILD64 = 1 NOISALIST = 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 Thu May 7 22:39:42 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:39:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[4754] csw/mgar/pkg/x11/libX11/trunk/Makefile Message-ID: Revision: 4754 http://gar.svn.sourceforge.net/gar/?rev=4754&view=rev Author: dmichelsen Date: 2009-05-07 20:39:42 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/libx11: Add dependency to x11common Modified Paths: -------------- csw/mgar/pkg/x11/libX11/trunk/Makefile Modified: csw/mgar/pkg/x11/libX11/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-07 20:37:47 UTC (rev 4753) +++ csw/mgar/pkg/x11/libX11/trunk/Makefile 2009-05-07 20:39:42 UTC (rev 4754) @@ -30,7 +30,7 @@ PKGFILES_CSWlibx11devel = $(PKGFILES_DEVEL) -REQUIRED_PKGS_CSWlibx11 = CSWlibxcb +REQUIRED_PKGS_CSWlibx11 = CSWx11common CSWlibxcb REQUIRED_PKGS_CSWlibx11devel = CSWlibx11 BUILD64 = 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 Thu May 7 22:41:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 20:41:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[4755] csw/mgar/pkg/x11/xrender/trunk/Makefile Message-ID: Revision: 4755 http://gar.svn.sourceforge.net/gar/?rev=4755&view=rev Author: dmichelsen Date: 2009-05-07 20:41:24 +0000 (Thu, 07 May 2009) Log Message: ----------- x11/xrender: Add dependency to x11common 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-05-07 20:39:42 UTC (rev 4754) +++ csw/mgar/pkg/x11/xrender/trunk/Makefile 2009-05-07 20:41:24 UTC (rev 4755) @@ -21,7 +21,7 @@ PREREQUISITE_PKGS = CSWrenderproto REQUIRED_PKGS_CSWrenderdev = CSWlibxrender -REQUIRED_PKGS_CSWlibxrender = CSWlibx11 +REQUIRED_PKGS_CSWlibxrender = CSWx11common CSWlibx11 SPKG_DESC_CSWlibxrender = $(DESCRIPTION) SPKG_DESC_CSWrenderdev = $(DESCRIPTION) development package 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 May 7 23:09:57 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 21:09:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[4756] csw/mgar/pkg/cpan/Makefile Message-ID: Revision: 4756 http://gar.svn.sourceforge.net/gar/?rev=4756&view=rev Author: dmichelsen Date: 2009-05-07 21:09:57 +0000 (Thu, 07 May 2009) Log Message: ----------- cpan/Makefile: Update newpkg-% template Modified Paths: -------------- csw/mgar/pkg/cpan/Makefile Modified: csw/mgar/pkg/cpan/Makefile =================================================================== --- csw/mgar/pkg/cpan/Makefile 2009-05-07 20:41:24 UTC (rev 4755) +++ csw/mgar/pkg/cpan/Makefile 2009-05-07 21:09:57 UTC (rev 4756) @@ -24,39 +24,29 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = Type-Package"; \ echo "GARVERSION = 1.0"; \ - echo "CATEGORIES = category"; \ + echo "CATEGORIES = cpan"; \ + echo "AUTHOR = MYSELF"; \ echo ""; \ echo "DESCRIPTION = Brief description"; \ echo "define BLURB"; \ echo " Long description"; \ echo "endef"; \ echo ""; \ - echo "MASTER_SITES = "; \ - echo "DISTFILES = $$(GARNAME)-$$(GARVERSION).tar.gz"; \ - echo "DISTFILES += $$(call admfiles,CSWpackage,)"; \ - echo ""; \ - echo "# We define upstream file regex so we can be notifed of new upstream software release"; \ - echo "UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \ - echo ""; \ - echo "# If the url used to check for software update is different of MASTER_SITES, then "; \ - echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; \ - echo "# UPSTREAM_MASTER_SITES = "; \ - echo ""; \ - echo "CONFIGURE_ARGS = $$(DIRPATHS)"; \ - echo ""; \ + echo "PACKAGES = CSWpmmymodule"; \ + echo "CATALOGNAME = pm_mymodule"; \ echo "include gar/category.mk"; \ ) > $*/trunk/Makefile - @svn add $*/trunk/Makefile - @(echo "%var bitname package"; \ - echo "%var pkgname CSWpackage"; \ - echo "%include url file://%{PKGLIB}/csw_dyndepend.gspec";\ - echo "%copyright url file://%{WORKSRC}/LICENSE"; \ - ) > $*/trunk/files/CSWpackage.gspec + @touch $*/trunk/checksums + @svn add $*/trunk/Makefile $*/trunk/checksums @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk - @svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar + @if [ -d ../../gar/v2 ]; then \ + ln -s ../../../../gar/v2 $*/trunk/gar; \ + else \ + svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \ + fi @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 Thu May 7 23:23:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 21:23:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[4757] csw/mgar/pkg/Makefile Message-ID: Revision: 4757 http://gar.svn.sourceforge.net/gar/?rev=4757&view=rev Author: dmichelsen Date: 2009-05-07 21:23:07 +0000 (Thu, 07 May 2009) Log Message: ----------- mGAR v2: Update template for newpkg-% to dynamic gspec and linked gar Modified Paths: -------------- csw/mgar/pkg/Makefile Modified: csw/mgar/pkg/Makefile =================================================================== --- csw/mgar/pkg/Makefile 2009-05-07 21:09:57 UTC (rev 4756) +++ csw/mgar/pkg/Makefile 2009-05-07 21:23:07 UTC (rev 4757) @@ -64,10 +64,9 @@ echo ""; \ echo "MASTER_SITES = "; \ echo "DISTFILES = $$(GARNAME)-$$(GARVERSION).tar.gz"; \ - echo "DISTFILES += $$(call admfiles,CSWpackage,)"; \ echo ""; \ echo "# We define upstream file regex so we can be notifed of new upstream software release"; \ - echo "UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \ + echo "UFILES_REGEX = $$(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \ echo ""; \ echo "# If the url used to check for software update is different of MASTER_SITES, then "; \ echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; \ @@ -77,15 +76,15 @@ echo ""; \ echo "include gar/category.mk"; \ ) > $*/trunk/Makefile - @svn add $*/trunk/Makefile - @(echo "%var bitname package"; \ - echo "%var pkgname CSWpackage"; \ - echo "%include url file://%{PKGLIB}/csw_dyndepend.gspec"; \ - echo "%copyright url file://%{WORKSRC}/LICENSE"; \ - ) > $*/trunk/files/CSWpackage.gspec + @touch $*/trunk/checksums + @svn add $*/trunk/Makefile $*/trunk/checksums @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk - @svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar + @if [ -d ../gar/v2 ]; then \ + ln -s ../../../gar/v2 $*/trunk/gar; \ + else \ + svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \ + fi @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 Thu May 7 23:28:46 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 21:28:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[4758] csw/mgar/pkg Message-ID: Revision: 4758 http://gar.svn.sourceforge.net/gar/?rev=4758&view=rev Author: dmichelsen Date: 2009-05-07 21:28:46 +0000 (Thu, 07 May 2009) Log Message: ----------- openjpeg: Initial commit Added Paths: ----------- csw/mgar/pkg/openjpeg/ csw/mgar/pkg/openjpeg/branches/ csw/mgar/pkg/openjpeg/tags/ csw/mgar/pkg/openjpeg/trunk/ csw/mgar/pkg/openjpeg/trunk/Makefile csw/mgar/pkg/openjpeg/trunk/checksums csw/mgar/pkg/openjpeg/trunk/files/ Property changes on: csw/mgar/pkg/openjpeg/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/openjpeg/trunk/Makefile =================================================================== --- csw/mgar/pkg/openjpeg/trunk/Makefile (rev 0) +++ csw/mgar/pkg/openjpeg/trunk/Makefile 2009-05-07 21:28:46 UTC (rev 4758) @@ -0,0 +1,23 @@ +GARNAME = openjpeg +GARVERSION = 1.3 +CATEGORIES = lib + +DESCRIPTION = Open-source JPEG 2000 codec written in C +define BLURB +endef + +MASTER_SITES = http://www.openjpeg.org/ +DISTFILES = $(GARNAME)_v1_3.tar.gz + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\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 = + +BUILD64 = 1 +NORUNPATH = 1 +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/openjpeg/trunk/checksums =================================================================== --- csw/mgar/pkg/openjpeg/trunk/checksums (rev 0) +++ csw/mgar/pkg/openjpeg/trunk/checksums 2009-05-07 21:28:46 UTC (rev 4758) @@ -0,0 +1 @@ +f9a3ccfa91ac34b589e9bf7577ce8ff9 download/openjpeg_v1_3.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 Thu May 7 23:37:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 07 May 2009 21:37:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[4759] csw/mgar/pkg Message-ID: Revision: 4759 http://gar.svn.sourceforge.net/gar/?rev=4759&view=rev Author: dmichelsen Date: 2009-05-07 21:37:48 +0000 (Thu, 07 May 2009) Log Message: ----------- poppler: Initial commit, unfinished Added Paths: ----------- csw/mgar/pkg/poppler/ csw/mgar/pkg/poppler/branches/ csw/mgar/pkg/poppler/tags/ csw/mgar/pkg/poppler/trunk/ csw/mgar/pkg/poppler/trunk/Makefile csw/mgar/pkg/poppler/trunk/checksums csw/mgar/pkg/poppler/trunk/files/ Property changes on: csw/mgar/pkg/poppler/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/poppler/trunk/Makefile =================================================================== --- csw/mgar/pkg/poppler/trunk/Makefile (rev 0) +++ csw/mgar/pkg/poppler/trunk/Makefile 2009-05-07 21:37:48 UTC (rev 4759) @@ -0,0 +1,28 @@ +GARNAME = poppler +GARVERSION = 0.10.6 +CATEGORIES = lib + +DESCRIPTION = Poppler is a PDF rendering library based on the xpdf-3.0 code base +define BLURB +endef + +MASTER_SITES = http://poppler.freedesktop.org/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\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 = + +BUILD64 = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +REQUIRED_PKGS = CSWfconfig CSWftype2 CSWggettextrt CSWglib2 +REQUIRED_PKGS += CSWjpeg CSWlibxml2 CSWzlib + +SPKG_SOURCEURL = http://poppler.freedesktop.org/ + +include gar/category.mk Added: csw/mgar/pkg/poppler/trunk/checksums =================================================================== --- csw/mgar/pkg/poppler/trunk/checksums (rev 0) +++ csw/mgar/pkg/poppler/trunk/checksums 2009-05-07 21:37:48 UTC (rev 4759) @@ -0,0 +1 @@ +e1a2d98ba5a4199f20d7637a7d79a829 download/poppler-0.10.6.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 8 03:53:46 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 08 May 2009 01:53:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[4760] csw/mgar/pkg/gcc4/trunk/files/package_def.mk Message-ID: Revision: 4760 http://gar.svn.sourceforge.net/gar/?rev=4760&view=rev Author: valholla Date: 2009-05-08 01:53:46 +0000 (Fri, 08 May 2009) Log Message: ----------- last check of required packages Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/files/package_def.mk Modified: csw/mgar/pkg/gcc4/trunk/files/package_def.mk =================================================================== --- csw/mgar/pkg/gcc4/trunk/files/package_def.mk 2009-05-07 21:37:48 UTC (rev 4759) +++ csw/mgar/pkg/gcc4/trunk/files/package_def.mk 2009-05-08 01:53:46 UTC (rev 4760) @@ -60,25 +60,20 @@ SPKG_DESC_CSWgcc4objcrt = GNU Objective C Compiler Run Time ## Define Dependencies -COMMON_REQUIRE = CSWiconv CSWlibgmp CSWlibmpfr CSWggettextrt -REQUIRED_PKGS_CSWgcc4adart = CSWgcc4corert $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4ada = CSWgcc4core CSWgcc4corert -REQUIRED_PKGS_CSWgcc4ada += CSWgcc4adart $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4corert = $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4core = CSWgcc4corert CSWbinutils $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4g++rt = CSWgcc4corert $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4g++ = CSWgcc4core CSWgcc4corert -REQUIRED_PKGS_CSWgcc4g++ += CSWgcc4g++rt $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4gfortranrt = CSWgcc4corert $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4gfortran = CSWgcc4core CSWgcc4corert -REQUIRED_PKGS_CSWgcc4gfortran += CSWgcc4gfortranrt $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4javart = CSWgcc4corert CSWgcc4g++rt $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4java = CSWgcc4core CSWgcc4corert -REQUIRED_PKGS_CSWgcc4java += CSWgcc4javart CSWzlib -REQUIRED_PKGS_CSWgcc4java += CSWgcc4g++ CSWgcc4g++rt $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4objcrt = CSWgcc4corert $(COMMON_REQUIRE) -REQUIRED_PKGS_CSWgcc4objc = CSWgcc4core CSWgcc4corert -REQUIRED_PKGS_CSWgcc4objc += CSWgcc4objcrt $(COMMON_REQUIRE) +REQUIRED_PKGS_CSWgcc4adart = CSWgcc4corert +REQUIRED_PKGS_CSWgcc4ada = CSWgcc4adart CSWiconv CSWlibgmp CSWlibmpfr +REQUIRED_PKGS_CSWgcc4core = CSWgcc4corert CSWbinutils CSWiconv +REQUIRED_PKGS_CSWgcc4core += CSWlibgmp CSWlibmpfr +REQUIRED_PKGS_CSWgcc4g++rt = CSWgcc4corert +REQUIRED_PKGS_CSWgcc4g++ = CSWgcc4g++rt CSWiconv CSWlibgmp CSWlibmpfr +REQUIRED_PKGS_CSWgcc4gfortranrt = CSWgcc4corert +REQUIRED_PKGS_CSWgcc4gfortran = CSWgcc4gfortranrt CSWiconv CSWlibgmp +REQUIRED_PKGS_CSWgcc4gfortran += CSWlibmpfr +REQUIRED_PKGS_CSWgcc4javart = CSWgcc4corert CSWgcc4g++rt +REQUIRED_PKGS_CSWgcc4java = CSWgcc4corert CSWgcc4javart +REQUIRED_PKGS_CSWgcc4java += CSWzlib CSWiconv CSWlibgmp CSWlibmpfr +REQUIRED_PKGS_CSWgcc4objcrt = CSWgcc4corert +REQUIRED_PKGS_CSWgcc4objc = CSWgcc4objcrt CSWiconv CSWlibgmp CSWlibmpfr DISTFILES += CSWgcc4core.space 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 May 8 11:12:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 09:12:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4761] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: Revision: 4761 http://gar.svn.sourceforge.net/gar/?rev=4761&view=rev Author: dmichelsen Date: 2009-05-08 09:12:24 +0000 (Fri, 08 May 2009) Log Message: ----------- libcairo: Add additional required packages Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-08 01:53:46 UTC (rev 4760) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-08 09:12:24 UTC (rev 4761) @@ -28,12 +28,15 @@ PKGFILES_CSWlibcairodoc = $(sharedstatedir)/gtk-doc.* PKGFILES_CSWlibcairodoc += $(docdir)/libcairo_doc/.* +PREREQUISITE_PKGS = CSWrenderdev + REQUIRED_PKGS_CSWlibcairo = CSWfconfig REQUIRED_PKGS_CSWlibcairo += CSWftype2 REQUIRED_PKGS_CSWlibcairo += CSWlibxrender REQUIRED_PKGS_CSWlibcairo += CSWpixman REQUIRED_PKGS_CSWlibcairo += CSWpng REQUIRED_PKGS_CSWlibcairo += CSWzlib +REQUIRED_PKGS_CSWlibcairo += CSWlibrsvg REQUIRED_PKGS_CSWlibcairodevel = CSWlibcairo REQUIRED_PKGS_CSWlibcairodoc = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Fri May 8 17:18:47 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Fri, 08 May 2009 15:18:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4762] csw/mgar/pkg/lftp/trunk Message-ID: Revision: 4762 http://gar.svn.sourceforge.net/gar/?rev=4762&view=rev Author: chninkel Date: 2009-05-08 15:18:47 +0000 (Fri, 08 May 2009) Log Message: ----------- lftp: updated to 3.7.13 Modified Paths: -------------- csw/mgar/pkg/lftp/trunk/Makefile csw/mgar/pkg/lftp/trunk/checksums csw/mgar/pkg/lftp/trunk/files/changelog.CSW Modified: csw/mgar/pkg/lftp/trunk/Makefile =================================================================== --- csw/mgar/pkg/lftp/trunk/Makefile 2009-05-08 09:12:24 UTC (rev 4761) +++ csw/mgar/pkg/lftp/trunk/Makefile 2009-05-08 15:18:47 UTC (rev 4762) @@ -13,7 +13,7 @@ ###### Package information ####### GARNAME = lftp -GARVERSION = 3.7.11 +GARVERSION = 3.7.13 CATEGORIES = net DESCRIPTION = sophisticated command-line ftp/http client Modified: csw/mgar/pkg/lftp/trunk/checksums =================================================================== --- csw/mgar/pkg/lftp/trunk/checksums 2009-05-08 09:12:24 UTC (rev 4761) +++ csw/mgar/pkg/lftp/trunk/checksums 2009-05-08 15:18:47 UTC (rev 4762) @@ -1,3 +1,3 @@ -6fe8793f3ccde1d2f8446d599d8a69a9 download/lftp-3.7.11.tar.gz +960f466cde7b6c4db0612808def9b5d1 download/lftp-3.7.13.tar.gz 5bc881a13c106b1c97f2137ff1755817 download/CSWlftp.prototype -98a4a42313ffba56431306ea49ea0600 download/changelog.CSW +5d17c8ca01bfb9d6cbc280347d11a998 download/changelog.CSW Modified: csw/mgar/pkg/lftp/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-05-08 09:12:24 UTC (rev 4761) +++ csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-05-08 15:18:47 UTC (rev 4762) @@ -1,3 +1,9 @@ +lftp (3.7.13,REV=2009.05.08) unstable + + * New upstream release. + + -- Yann Rouillard Fri, 08 May 2009 17:17:30 +0200 + lftp (3.7.11,REV=2009.03.29) unstable * Now uses cswpreserveconf class from cswclassutils to handle lftp.conf This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 8 18:18:36 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 08 May 2009 16:18:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[4763] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4763 http://gar.svn.sourceforge.net/gar/?rev=4763&view=rev Author: valholla Date: 2009-05-08 16:18:33 +0000 (Fri, 08 May 2009) Log Message: ----------- add fast-cgi and fix post-install bug 3660 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-08 15:18:47 UTC (rev 4762) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-08 16:18:33 UTC (rev 4763) @@ -73,7 +73,6 @@ CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php5/bin CONFIGURE_ARGS += --enable-cli CONFIGURE_ARGS += --enable-fastcgi -CONFIGURE_ARGS += --enable-force-cgi-redirect CONFIGURE_ARGS += --enable-pcntl=shared CONFIGURE_ARGS += --enable-pdo=shared CONFIGURE_ARGS += --with-mm=$(prefix) @@ -93,6 +92,7 @@ # Copy over template config files and utility scripts PI_SCRIPTS = install-extras +PI_SCRIPTS += install-sapi-cgi PI_SCRIPTS += install-ap2modphp5 PI_SCRIPTS += install-modphp5 @@ -139,6 +139,17 @@ -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) @$(MAKECOOKIE) +install-sapi-cgi: + @( echo " ==> Now Building php-cgi <==" ) + @( if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --enable-force-cgi-redirect) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) + @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) + @( strip $(DESTDIR)$(prefix)/php5/bin/php-cgi ) + @$(MAKECOOKIE) + EXTFILES = $(shell find extensions/*/files/* -prune -type f) pre-fetch: $(foreach F,$(EXTFILES),$(shell cp $(F) $(DOWNLOADDIR))) Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-08 15:18:47 UTC (rev 4762) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-08 16:18:33 UTC (rev 4763) @@ -1,7 +1,9 @@ #!/bin/sh +PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin PKG_INSTALL_ROOT=${PKG_INSTALL_ROOT:-'/'} PHP_LIB=$PKG_INSTALL_ROOT/opt/csw/php5/lib +PHP_BIN=$PKG_INSTALL_ROOT/opt/csw/php5/bin PHP_INI=$PHP_LIB/php.ini if [ ! -f $PHP_INI ]; then @@ -9,7 +11,8 @@ else echo "php.ini already exists" - extdir=`ls -d $PHP_LIB/php/extensions/no-debug-non-zts-* | xargs basename` + extdir_ext=`${PHP_BIN}/php -i |grep 'PHP Extension' |awk '{print $NF}'` + extdir="${PHP_LIB}/php/extensions/no-debug-non-zts-${extdir_ext}" curextdir=`perl -lne '/(no-debug-non-zts-[0-9]+)/ && print $1' $PHP_INI` if [ "$extdir" != "$curextdir" ]; then @@ -123,6 +126,16 @@ _EOT_ fi fi +if [ ! -d ${extdir} ]; then + mkdir -p ${extdir} + for dir in `${PHP_BIN}/php -i |grep extension_dir |\ + awk -F'/' '{print $(NF-1), $NF}'`; do + chown -R root:bin ${dir} + chmod -R 0755 ${dir} + installf ${PKGINST} ${dir} + done + installf -f ${PKGINST} +fi echo "PHP5 configuration: $PHP_INI" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 8 19:56:19 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 08 May 2009 17:56:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[4764] csw/mgar/pkg/libffi/trunk Message-ID: Revision: 4764 http://gar.svn.sourceforge.net/gar/?rev=4764&view=rev Author: valholla Date: 2009-05-08 17:56:19 +0000 (Fri, 08 May 2009) Log Message: ----------- add requirements Modified Paths: -------------- csw/mgar/pkg/libffi/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/libffi/trunk/ Property changes on: csw/mgar/pkg/libffi/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Modified: csw/mgar/pkg/libffi/trunk/Makefile =================================================================== --- csw/mgar/pkg/libffi/trunk/Makefile 2009-05-08 16:18:33 UTC (rev 4763) +++ csw/mgar/pkg/libffi/trunk/Makefile 2009-05-08 17:56:19 UTC (rev 4764) @@ -22,14 +22,16 @@ SPKG_DESC_CSWlibffi = $(DESCRIPTION) -#REQUIRED_PKGS_CSWlibffi += +REQUIRED_PKGS_CSWlibffi = CSWgcc4corert # We define upstream file regex so we can be notifed of # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -GARCOMPILER = GNU +GARCOMPILER = GCC4 +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) +TEST_SCRIPTS = TEST_TARGET = check 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 Fri May 8 20:32:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 18:32:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4765] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 4765 http://gar.svn.sourceforge.net/gar/?rev=4765&view=rev Author: dmichelsen Date: 2009-05-08 18:32:52 +0000 (Fri, 08 May 2009) Log Message: ----------- mGAR v2: Fix redundant pathes for runtime linker and pkgconfig 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-05-08 17:56:19 UTC (rev 4764) +++ csw/mgar/gar/v2/gar.conf.mk 2009-05-08 18:32:52 UTC (rev 4765) @@ -448,15 +448,18 @@ # without expansion and needs to be differentiated between 32 and 64 bit, therefore # the links 32 and 64. +# NORUNPATH=1 means do not add any runpath +# NOISALIST=1 means add only direct pathes, no $ISALIST expansions + ifndef NORUNPATH # 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 # be a symlink of the form lib/sparcv8 -> . and lib/i386 -> .). This is most likely -# the case for libraries in $(EXTRA_LIBS) for which no links generated in CSWcommon. -RUNPATH_DIRS ?= $(libpath_install) $(libdir_install) $(EXTRA_LIB) $(EXTRA_RUNPATH_DIRS) +# the case for libraries in $(EXTRA_LIB) for which no links generated in CSWcommon. +RUNPATH_DIRS ?= $(libpath_install) $(filter-out $(libpath_install),$(libdir_install)) $(EXTRA_LIB) $(EXTRA_RUNPATH_DIRS) ifndef NOISALIST -RUNPATH_ISALIST ?= $(libpath_install) $(libdir_install) $(EXTRA_LIB) $(EXTRA_RUNPATH_ISALIST) +RUNPATH_ISALIST ?= $(libpath_install) $(filter-out $(libpath_install),$(libdir_install)) $(EXTRA_LIB) $(EXTRA_RUNPATH_ISALIST) endif # Iterate over all directories in RUNPATH_DIRS, prefix each directory with one @@ -476,21 +479,13 @@ ASFLAGS ?= $(strip $($(GARCOMPILER)_AS_FLAGS) $(_CATEGORY_ASFLAGS) $(EXTRA_ASFLAGS)) OPTFLAGS ?= $(strip $($(GARCOMPILER)_CC_FLAGS) $(_CATEGORY_OPTFLAGS) $(EXTRA_OPTFLAGS)) -GCC3_LD_OPTIONS = -R$(GCC3_CC_HOME)/lib $(EXTRA_GCC3_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) $(EXTRA_LD_OPTIONS) -GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) $(EXTRA_LD_OPTIONS) -SOS11_LD_OPTIONS = $(strip $(EXTRA_SOS11_LD_OPTIONS) $(EXTRA_SOS_LD_OPTIONS) $(EXTRA_LD_OPTIONS)) -SOS12_LD_OPTIONS = $(strip $(EXTRA_SOS12_LD_OPTIONS) $(EXTRA_SOS_LD_OPTIONS) $(EXTRA_LD_OPTIONS)) +GCC3_LD_OPTIONS = -R$(GCC3_CC_HOME)/lib $(EXTRA_GCC3_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) +GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) +SOS11_LD_OPTIONS = $(EXTRA_SOS11_LD_OPTIONS) $(EXTRA_SOS_LD_OPTIONS) +SOS12_LD_OPTIONS = $(EXTRA_SOS12_LD_OPTIONS) $(EXTRA_SOS_LD_OPTIONS) -LD_OPTIONS ?= $($(GARCOMPILER)_LD_OPTIONS) $(RUNPATH_LINKER_FLAGS) +LD_OPTIONS ?= $(strip $($(GARCOMPILER)_LD_OPTIONS) $(RUNPATH_LINKER_FLAGS) $(EXTRA_LD_OPTIONS)) -# LD_OPTIONS considered harmful. Disable for the moment. -#LDOPT_LIBS ?= $(libdir) -#ifdef NOISALIST -#LD_OPTIONS += $(foreach ELIB,$(addsuffix /$(MM_LIBDIR),$(LDOPT_LIBS)) $(EXTRA_LIB),-R$(abspath $(ELIB)/$(MM_LIBDIR))) -#else -#LD_OPTIONS += $(foreach ELIB,$(LDOPT_LIBS) $(EXTRA_LIB),-R$(ELIB)/\$$ISALIST -R$(ELIB)/$(MM_LIBDIR)) -#endif - # 1. Make sure everything works fine for SOS12 # 2. Allow us to use programs we just built. This is a bit complicated, # but we want PATH to be a recursive variable, or 'gmake isaenv' won't work @@ -498,7 +493,7 @@ PATH = $(if $(filter SOS12,$(GARCOMPILER)),$(abspath $(GARBIN)/sos12-wrappers):)$(if $(IGNORE_DESTDIR),,$(abspath $(DESTDIR)$(binpath_install)/$(MM_BINDIR)):$(DESTDIR)$(binpath_install):$(abspath $(DESTDIR)$(sbinpath_install)/$(MM_BINDIR)):$(DESTDIR)$(sbinpath_install):)$(abspath $(binpath_install)/$(MM_BINDIR)):$(binpath_install):$(abspath $(sbinpath_install)/$(MM_BINDIR)):$(sbinpath_install):$(CC_HOME)/bin:$(abspath $(GARBIN)):/usr/bin:/usr/sbin:/usr/java/bin:/usr/ccs/bin:/usr/openwin/bin # This is for foo-config chaos -PKG_CONFIG_DIRS ?= $(libpath_install) $(libdir_install) $(EXTRA_PKG_CONFIG_DIRS) +PKG_CONFIG_DIRS ?= $(libpath_install) $(filter-out $(libpath_install),$(libdir_install)) $(EXTRA_PKG_CONFIG_DIRS) ifneq (,$(findstring $(origin PKG_CONFIG_PATH),undefined environment)) PKG_CONFIG_PATH = $(call MAKEPATH,$(foreach D,$(PKG_CONFIG_DIRS),$(abspath $D/$(MM_LIBDIR)/pkgconfig)) $(_CATEGORY_PKG_CONFIG_PATH) $(EXTRA_PKG_CONFIG_PATH)) endif @@ -566,7 +561,6 @@ COMMON_EXPORTS ?= $(DIRECTORY_EXPORTS) $(COMPILER_EXPORTS) $(GARPKG_EXPORTS) $(EXTRA_COMMON_EXPORTS) $(_CATEGORY_COMMON_EXPORTS) -# LD_OPTIONS = $(LINKER_FLAGS) ifneq ($(LD_OPTIONS),) COMMON_EXPORTS += LD_OPTIONS endif @@ -655,5 +649,6 @@ echo " CXXFLAGS = $(CXXFLAGS)"; \ echo " CPPFLAGS = $(CPPFLAGS)"; \ echo " LDFLAGS = $(LDFLAGS)"; \ + echo " LD_OPTIONS = $(LD_OPTIONS)"; \ echo " ASFLAGS = $(ASFLAGS)"; \ echo " OPTFLAGS = $(OPTFLAGS)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 8 22:42:23 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 08 May 2009 20:42:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[4766] csw/mgar/pkg/php5/trunk/files/CSWphp5.space Message-ID: Revision: 4766 http://gar.svn.sourceforge.net/gar/?rev=4766&view=rev Author: valholla Date: 2009-05-08 20:42:23 +0000 (Fri, 08 May 2009) Log Message: ----------- add space file Added Paths: ----------- csw/mgar/pkg/php5/trunk/files/CSWphp5.space Added: csw/mgar/pkg/php5/trunk/files/CSWphp5.space =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.space (rev 0) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.space 2009-05-08 20:42:23 UTC (rev 4766) @@ -0,0 +1 @@ +php 32 2 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 May 8 22:56:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 20:56:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4767] csw/mgar/pkg Message-ID: Revision: 4767 http://gar.svn.sourceforge.net/gar/?rev=4767&view=rev Author: dmichelsen Date: 2009-05-08 20:56:05 +0000 (Fri, 08 May 2009) Log Message: ----------- xft: Prepare move to libxft2 Added Paths: ----------- csw/mgar/pkg/xft/tags/legacy/ Removed Paths: ------------- csw/mgar/pkg/libxft2/trunk/legacy/ 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 May 8 23:13:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 21:13:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[4768] csw/mgar/pkg/libxft2/ Message-ID: Revision: 4768 http://gar.svn.sourceforge.net/gar/?rev=4768&view=rev Author: dmichelsen Date: 2009-05-08 21:13:34 +0000 (Fri, 08 May 2009) Log Message: ----------- xft: Prepare move to libxft2 Removed Paths: ------------- csw/mgar/pkg/libxft2/ 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 May 8 23:18:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 21:18:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4769] csw/mgar/pkg Message-ID: Revision: 4769 http://gar.svn.sourceforge.net/gar/?rev=4769&view=rev Author: dmichelsen Date: 2009-05-08 21:18:27 +0000 (Fri, 08 May 2009) Log Message: ----------- xft: Move to libxft2 Added Paths: ----------- csw/mgar/pkg/libxft2/ Removed Paths: ------------- csw/mgar/pkg/xft/ 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 May 8 23:37:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 21:37:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[4770] csw/mgar/pkg/libxft2/trunk Message-ID: Revision: 4770 http://gar.svn.sourceforge.net/gar/?rev=4770&view=rev Author: dmichelsen Date: 2009-05-08 21:37:31 +0000 (Fri, 08 May 2009) Log Message: ----------- libxft2: Update to dynamic gspec and 64 bit Modified Paths: -------------- csw/mgar/pkg/libxft2/trunk/Makefile csw/mgar/pkg/libxft2/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.depend csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.gspec csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.prototype csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.depend csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.gspec csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.prototype Property Changed: ---------------- csw/mgar/pkg/libxft2/trunk/ Property changes on: csw/mgar/pkg/libxft2/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/libxft2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxft2/trunk/Makefile 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/Makefile 2009-05-08 21:37:31 UTC (rev 4770) @@ -4,40 +4,38 @@ DESCRIPTION = FreeType-based font drawing library for X define BLURB -Xft provides a client-side font API for X applications, making the FreeType font rasterizer available to X clients. Fontconfig is used for font specification resolution. Where available, the RENDER extension handles glyph drawing; otherwise, the core X protocol is used. + Xft provides a client-side font API for X applications, making the + FreeType font rasterizer available to X clients. Fontconfig is used + for font specification resolution. Where available, the RENDER + extension handles glyph drawing; otherwise, the core X protocol is used. endef -MASTER_SITES =http://xorg.freedesktop.org/releases/individual/lib/ -DISTFILES = libXft-$(GARVERSION).tar.gz -PKGDIST = libXft-$(GARVERSION).tar.gz +MASTER_SITES = http://xorg.freedesktop.org/releases/individual/lib/ +DISTNAME = libXft-$(GARVERSION) +DISTFILES = $(DISTNAME).tar.gz # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = libXft-(\d+(?:\.\d+)*).tar.gz -DISTFILES += CSWlibxft2.gspec CSWlibxft2.prototype CSWlibxft2.depend -DISTFILES += CSWlibxft2dev.gspec CSWlibxft2dev.prototype CSWlibxft2dev.depend -# DISTFILES += $(call admfiles,CSWlibxft2, depend) +PACKAGES = CSWlibxft2 CSWlibxft2dev -CFLAGS += -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION -CXXFLAGS += -xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS += -L/opt/csw/lib -R/opt/csw/lib +REQUIRED_PKGS_CSWlibxft2 = CSWfconfig CSWftype2 CSWlibxrender CSWzlib CSWlibx11 +REQUIRED_PKGS_CSWlibxft2dev = CSWlibxft2 -export CFLAGS CXXFLAGS LDFLAGS +EXTRA_CFLAGS = -xlibmil -errtags=yes -erroff=E_EMPTY_DECLARATION +EXTRA_CXXFLAGS = -xlibmil -xlibmopt -features=tmplife -norunpath -TEST_SCRIPTS = none +EXTRA_INC = $(prefix)/X11/include +EXTRA_LIB = $(prefix)/X11/lib +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib GREP = ggrep -include gar/category.mk +BUILD64 = 1 +CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS = --prefix=/opt/csw --mandir=/opt/csw/share/man +TEST_SCRIPTS = -test-none: - @$(MAKECOOKIE) +PKGFILES_CSWlibxft2dev = $(PKGFILES_DEVEL) -post-extract: - ( mv $(WORKDIR)/libXft-$(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 {}" \; ) +include gar/category.mk Modified: csw/mgar/pkg/libxft2/trunk/checksums =================================================================== --- csw/mgar/pkg/libxft2/trunk/checksums 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/checksums 2009-05-08 21:37:31 UTC (rev 4770) @@ -1,7 +1 @@ 40ebc53da7efd520e528fa7a564863db download/libXft-2.1.13.tar.gz -8818f7c43dffaddf917728416ea3b14f download/CSWlibxft2.gspec -edc5cb1c814f69932be25bf79f6bce0c download/CSWlibxft2.prototype -1736d41103dc842a69fc4698807b058e download/CSWlibxft2.depend -f0f12695f657e87f2e1bb3b37204da15 download/CSWlibxft2dev.gspec -8cfe3fbf184539b7e0bbe94b9f8a44ea download/CSWlibxft2dev.prototype -7e1f39b438aa74669c8607148de92805 download/CSWlibxft2dev.depend Deleted: csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.depend =================================================================== --- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.depend 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.depend 2009-05-08 21:37:31 UTC (rev 4770) @@ -1,4 +0,0 @@ -P CSWfconfig -P CSWftype2 -P CSWlibxrender -P CSWzlib Deleted: csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.gspec =================================================================== --- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.gspec 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.gspec 2009-05-08 21:37:31 UTC (rev 4770) @@ -1,4 +0,0 @@ -%var bitname libxft2 -%var pkgname CSWlibxft2 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.prototype =================================================================== --- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.prototype 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2.prototype 2009-05-08 21:37:31 UTC (rev 4770) @@ -1,16 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/xft-config 0755 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libXft.la 0755 root bin -f none /opt/csw/lib/libXft.so.2.1.13 0755 root bin -s none /opt/csw/lib/libXft.so.2=libXft.so.2.1.13 -s none /opt/csw/lib/libXft.so=libXft.so.2.1.13 -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/xft-config.1 0644 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Xft.3 0644 root bin -i copyright=CSWlibxft2.copyright -i depend=CSWlibxft2.depend -i pkginfo=CSWlibxft2.pkginfo Deleted: csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.depend =================================================================== --- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.depend 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.depend 2009-05-08 21:37:31 UTC (rev 4770) @@ -1 +0,0 @@ -P CSWlibxft2 Deleted: csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.gspec =================================================================== --- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.gspec 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.gspec 2009-05-08 21:37:31 UTC (rev 4770) @@ -1,4 +0,0 @@ -%var bitname libxft2dev -%var pkgname CSWlibxft2dev -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.prototype =================================================================== --- csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.prototype 2009-05-08 21:18:27 UTC (rev 4769) +++ csw/mgar/pkg/libxft2/trunk/files/CSWlibxft2dev.prototype 2009-05-08 21:37:31 UTC (rev 4770) @@ -1,11 +0,0 @@ -d none /opt/csw/include/X11 0755 root bin -d none /opt/csw/include/X11/Xft 0755 root bin -f none /opt/csw/include/X11/Xft/Xft.h 0644 root bin -f none /opt/csw/include/X11/Xft/XftCompat.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libXft.a 0644 root bin -d none /opt/csw/lib/pkgconfig 0755 root bin -f none /opt/csw/lib/pkgconfig/xft.pc 0644 root bin -i copyright=CSWlibxft2dev.copyright -i depend=CSWlibxft2dev.depend -i pkginfo=CSWlibxft2dev.pkginfo 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 May 9 00:08:54 2009 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Fri, 08 May 2009 22:08:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[4771] csw/mgar/pkg/lftp/trunk Message-ID: Revision: 4771 http://gar.svn.sourceforge.net/gar/?rev=4771&view=rev Author: chninkel Date: 2009-05-08 22:08:54 +0000 (Fri, 08 May 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-05-08 21:37:31 UTC (rev 4770) +++ csw/mgar/pkg/lftp/trunk/checksums 2009-05-08 22:08:54 UTC (rev 4771) @@ -1,3 +1,3 @@ 960f466cde7b6c4db0612808def9b5d1 download/lftp-3.7.13.tar.gz 5bc881a13c106b1c97f2137ff1755817 download/CSWlftp.prototype -5d17c8ca01bfb9d6cbc280347d11a998 download/changelog.CSW +31bb98215099006b0142b3d9b5e373d1 download/changelog.CSW Modified: csw/mgar/pkg/lftp/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-05-08 21:37:31 UTC (rev 4770) +++ csw/mgar/pkg/lftp/trunk/files/changelog.CSW 2009-05-08 22:08:54 UTC (rev 4771) @@ -1,8 +1,8 @@ -lftp (3.7.13,REV=2009.05.08) unstable +lftp (3.7.13,REV=2009.05.09) unstable * New upstream release. - -- Yann Rouillard Fri, 08 May 2009 17:17:30 +0200 + -- Yann Rouillard Fri, 09 May 2009 17:17:30 +0200 lftp (3.7.11,REV=2009.03.29) unstable 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 May 9 00:47:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 22:47:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[4772] csw/mgar/pkg/x11 Message-ID: Revision: 4772 http://gar.svn.sourceforge.net/gar/?rev=4772&view=rev Author: dmichelsen Date: 2009-05-08 22:47:31 +0000 (Fri, 08 May 2009) Log Message: ----------- x11/xcb-util: Initial checkin Added Paths: ----------- csw/mgar/pkg/x11/xcb-util/ csw/mgar/pkg/x11/xcb-util/branches/ csw/mgar/pkg/x11/xcb-util/tags/ csw/mgar/pkg/x11/xcb-util/trunk/ csw/mgar/pkg/x11/xcb-util/trunk/Makefile csw/mgar/pkg/x11/xcb-util/trunk/checksums csw/mgar/pkg/x11/xcb-util/trunk/files/ Property changes on: csw/mgar/pkg/x11/xcb-util/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/x11/xcb-util/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/xcb-util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/x11/xcb-util/trunk/Makefile 2009-05-08 22:47:31 UTC (rev 4772) @@ -0,0 +1,30 @@ +GARNAME = xcb-util +GARVERSION = 0.3.4 +CATEGORIES = x11 + +DESCRIPTION = The XCB utility library +define BLURB +endef + +MASTER_SITES = http://xcb.freedesktop.org/dist/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PREREQUISITE_PKGS = CSWgnulinks +REQUIRED_PKGS = CSWlibxcb +PACKAGES = CSWxcbutil + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +CATALOGNAME = xcbutil + +BUILD64 = 1 +NOISALIST = 1 +CONFIGURE_ARGS = $(DIRPATHS) + +#EXTRA_CFLAGS = -D__solaris__ + +include gar/category.mk + +# We need GNU gm4 as m4 +PATH := /opt/csw/gnu:$(PATH) Added: csw/mgar/pkg/x11/xcb-util/trunk/checksums =================================================================== --- csw/mgar/pkg/x11/xcb-util/trunk/checksums (rev 0) +++ csw/mgar/pkg/x11/xcb-util/trunk/checksums 2009-05-08 22:47:31 UTC (rev 4772) @@ -0,0 +1 @@ +47000719ed2a25b8d8a270a59ddaafe6 download/xcb-util-0.3.4.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 Sat May 9 01:09:30 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 23:09:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[4773] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: Revision: 4773 http://gar.svn.sourceforge.net/gar/?rev=4773&view=rev Author: dmichelsen Date: 2009-05-08 23:09:30 +0000 (Fri, 08 May 2009) Log Message: ----------- libcairo: Add xcb Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-08 22:47:31 UTC (rev 4772) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-08 23:09:30 UTC (rev 4773) @@ -37,12 +37,16 @@ REQUIRED_PKGS_CSWlibcairo += CSWpng REQUIRED_PKGS_CSWlibcairo += CSWzlib REQUIRED_PKGS_CSWlibcairo += CSWlibrsvg +REQUIRED_PKGS_CSWlibcairo += CSWexpat +REQUIRED_PKGS_CSWlibcairo += CSWiconv +REQUIRED_PKGS_CSWlibcairo += CSWlibxcb +REQUIRED_PKGS_CSWlibcairo += CSWxcbutil + REQUIRED_PKGS_CSWlibcairodevel = CSWlibcairo REQUIRED_PKGS_CSWlibcairodoc = ARCHALL_CSWlibcairodoc = 1 -# Wait for libpixman, libfontconfig and libXrender to be 64 bit BUILD64 = 1 EXTRA_INC = $(prefix)/X11/include @@ -51,9 +55,7 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-tests --enable-xlib=yes --enable-xlib-xrender=yes --enable-ft=yes --with-x -CONFIGURE_ARGS += --enable-png=yes --enable-ps=yes --enable-pdf=yes --enable-svg=yes +CONFIGURE_ARGS += --enable-png=yes --enable-ps=yes --enable-pdf=yes --enable-svg=yes --enable-xcb=yes CONFIGURE_ARGS += --enable-gtk-doc --enable-test-surfaces=yes 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 Sat May 9 01:10:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 23:10:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[4774] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: Revision: 4774 http://gar.svn.sourceforge.net/gar/?rev=4774&view=rev Author: dmichelsen Date: 2009-05-08 23:10:50 +0000 (Fri, 08 May 2009) Log Message: ----------- libcairo: Add missing dependency Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-08 23:09:30 UTC (rev 4773) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-05-08 23:10:50 UTC (rev 4774) @@ -39,6 +39,7 @@ REQUIRED_PKGS_CSWlibcairo += CSWlibrsvg REQUIRED_PKGS_CSWlibcairo += CSWexpat REQUIRED_PKGS_CSWlibcairo += CSWiconv +REQUIRED_PKGS_CSWlibcairo += CSWlibx11 REQUIRED_PKGS_CSWlibcairo += CSWlibxcb REQUIRED_PKGS_CSWlibcairo += CSWxcbutil 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 May 9 01:25:15 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 23:25:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[4775] csw/mgar/pkg/pango/trunk/Makefile Message-ID: Revision: 4775 http://gar.svn.sourceforge.net/gar/?rev=4775&view=rev Author: dmichelsen Date: 2009-05-08 23:25:15 +0000 (Fri, 08 May 2009) Log Message: ----------- pango: Fix 64 bit x11 libs Modified Paths: -------------- csw/mgar/pkg/pango/trunk/Makefile Modified: csw/mgar/pkg/pango/trunk/Makefile =================================================================== --- csw/mgar/pkg/pango/trunk/Makefile 2009-05-08 23:10:50 UTC (rev 4774) +++ csw/mgar/pkg/pango/trunk/Makefile 2009-05-08 23:25:15 UTC (rev 4775) @@ -20,6 +20,11 @@ CATALOGNAME_CSWpangodevel = libpango_devel CATALOGNAME_CSWpangodoc = libpango_doc +PREREQUISITE_PKGS = CSWgtk-doc CSWlibxslt CSWglib2devel +REQUIRED_PKGS_CSWpango = CSWggettextrt CSWglib2 CSWfconfig CSWftype2 +REQUIRED_PKGS_CSWpango += CSWlibcairo CSWlibxft2 CSWlibxrender CSWzlib CSWlibx11 +REQUIRED_PKGS_CSWpangodevel = CSWpango + SPKG_SOURCEURL = http://www.pango.org/ # We define upstream file regex so we can be notifed of new upstream software release @@ -31,16 +36,13 @@ EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib BUILD64 = 1 -NO_ISAEXEC = 1 -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-x --enable-gtk-doc -# CONFIGURE_ARGS += --with-included-modules +NOISALIST = 1 +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-x --enable-gtk-doc +CONFIGURE_ARGS += --x-include=$(prefix)/X11/include +CONFIGURE_ARGS += --x-libraries=$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) +# CONFIGURE_ARGS += --with-included-modules -PREREQUISITE_PKGS = CSWgtk-doc CSWlibxslt -REQUIRED_PKGS_CSWpango = CSWggettextrt CSWglib2 CSWfconfig CSWftype2 -REQUIRED_PKGS_CSWpango += CSWlibcairo CSWlibxft2 CSWlibxrender CSWzlib CSWlibx11 -REQUIRED_PKGS_CSWpangodevel = CSWpango - # Dynamic prototype PKGFILES_CSWpangodevel = $(PKGFILES_DEVEL) PKGFILES_CSWpangodoc = $(sharedstatedir)/gtk-doc/.* @@ -48,6 +50,8 @@ # Do not execute make test step TEST_SCRIPTS = +EXTRA_MERGE_EXCLUDE_FILES = .*/preload\.1\.gz + include gar/category.mk post-configure-modulated: 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 May 9 01:27:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 08 May 2009 23:27:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4776] csw/mgar/pkg/gtk2/trunk Message-ID: Revision: 4776 http://gar.svn.sourceforge.net/gar/?rev=4776&view=rev Author: dmichelsen Date: 2009-05-08 23:27:27 +0000 (Fri, 08 May 2009) Log Message: ----------- gtk2: Fix 64 bit build Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile csw/mgar/pkg/gtk2/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gtk2/trunk/files/ csw/mgar/pkg/gtk2/trunk/files/fixme.sh Property Changed: ---------------- csw/mgar/pkg/gtk2/trunk/ Property changes on: csw/mgar/pkg/gtk2/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-08 23:25:15 UTC (rev 4775) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-08 23:27:27 UTC (rev 4776) @@ -1,8 +1,8 @@ GARNAME = gtk2 -GARVERSION = 2.4.3 +GARVERSION = 2.16.1 CATEGORIES = lib -DESCRIPTION = A library for creating graphical user interfaces. +DESCRIPTION = GTK+, the multiplatform X11 toolkit for GUI development define BLURB GTK, which stands for the Gimp ToolKit, is a library for creating graphical user interfaces. It is designed to be small and efficient, but still flexible @@ -16,23 +16,36 @@ # # #if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP) -MASTER_SITES = ftp://ftp.gtk.org/pub/gtk/v2.4/ +MASTER_SITES = http://ftp.gnome.org/pub/gnome/sources/gtk+/2.16/ DISTFILES = gtk+-$(GARVERSION).tar.bz2 +DISTFILES += fixme.sh + WORKSRC = $(WORKDIR)/gtk+-$(GARVERSION) -LIBDEPS += lib/atk -LIBDEPS += lib/pango -LIBDEPS += lib/xcursor -LIBDEPS += xtra/hicolor-icon-theme +PREREQUISITE_PKGS = CSWbash +SPKG_SOURCEURL = http://www.gtk.org/ + +EXTRA_INC = $(prefix)/X11/include +EXTRA_LIB = $(prefix)/X11/lib +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib + +BUILD64 = 1 + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-debug=yes -TEST_TARGET = check +#TEST_TARGET = check +# There is a test failing on Xvfb which may or may not be harmful. Disable for now. +TEST_TARGET = +TEST_OVERRIDE_DIRS = SHELL +SHELL = /opt/csw/bin/bash + include gar/category.mk -CFLAGS := -g $(CFLAGS) -CXXFLAGS := -g $(CXXFLAGS) -export CFLAGS CXXFLAGS +post-configure-modulated: + @echo " ==> Fixing libtool files" + @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/gtk2/trunk/checksums =================================================================== --- csw/mgar/pkg/gtk2/trunk/checksums 2009-05-08 23:25:15 UTC (rev 4775) +++ csw/mgar/pkg/gtk2/trunk/checksums 2009-05-08 23:27:27 UTC (rev 4776) @@ -1 +1,2 @@ -debfd0fcef08683c0761f13e1ba2dced download/gtk+-2.4.3.tar.bz2 +34f5b20f6caf282b2533784fbb1b4395 download/fixme.sh +74e35ff3e6e02c960fe2117a4b6b102f download/gtk+-2.16.1.tar.bz2 Copied: csw/mgar/pkg/gtk2/trunk/files/fixme.sh (from rev 4636, csw/mgar/pkg/fixme/trunk/fixme.sh) =================================================================== --- csw/mgar/pkg/gtk2/trunk/files/fixme.sh (rev 0) +++ csw/mgar/pkg/gtk2/trunk/files/fixme.sh 2009-05-08 23:27:27 UTC (rev 4776) @@ -0,0 +1,51 @@ +#!/bin/bash +#################################################### +# +# fixme.sh +# Intended to remove the use of libtool's +# pseudo-libraries for opencsw builds. +# +# Author: Mike Watters mwatters_at_opencsw.org +# Initial Version: 0.1 +# +#################################################### + +umask 0022 +PATH=/opt/csw/bin + +if [ $# -ne 1 ]; then + gecho "USAGE: $(basename $0) WORKSRC" + exit 1 +fi +BASEPATH=$1 + +## Fix Makefiles +for mk in $(gfind ${BASEPATH} -name Makefile -print); do + LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ + gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") + + for file in ${LT_FILES}; do + LIB_NAME=$(ggrep 'dlname=' ${file} | \ + gsed -e "s/.*'\(.*\)'/\1/" \ + -e "s/^lib//" \ + -e "s/\.so.*$//") + fixpath=$(gecho $file |gsed 's/\//\\\//g') + gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new + gmv Makefile.new ${mk} + gchmod +x ${mk} + done +done + +## Fix libtool Script +for lt in $(gfind ${BASEPATH} -name libtool -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new + gmv ${lt}.new ${lt} + gchmod +x ${lt} +done + +for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do + gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new + gmv ${LTMAIN}.new ${LTMAIN} + gchmod +x ${LTMAIN} +done + 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 May 9 02:08:11 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 00:08:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[4777] csw/mgar/pkg/libatk/trunk/ Message-ID: Revision: 4777 http://gar.svn.sourceforge.net/gar/?rev=4777&view=rev Author: dmichelsen Date: 2009-05-09 00:08:11 +0000 (Sat, 09 May 2009) Log Message: ----------- libatk: Move to mGAR v2 Property Changed: ---------------- csw/mgar/pkg/libatk/trunk/ Property changes on: csw/mgar/pkg/libatk/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.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 Sat May 9 02:26:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 00:26:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4778] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 4778 http://gar.svn.sourceforge.net/gar/?rev=4778&view=rev Author: dmichelsen Date: 2009-05-09 00:26:13 +0000 (Sat, 09 May 2009) Log Message: ----------- gtk2: Fix x11 pathes Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-09 00:08:11 UTC (rev 4777) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-09 00:26:13 UTC (rev 4778) @@ -24,6 +24,7 @@ WORKSRC = $(WORKDIR)/gtk+-$(GARVERSION) PREREQUISITE_PKGS = CSWbash +REQUIRED_PKGS = CSWjasper SPKG_SOURCEURL = http://www.gtk.org/ @@ -34,7 +35,8 @@ BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --enable-debug=yes +CONFIGURE_ARGS += --x-include=$(prefix)/X11/include +CONFIGURE_ARGS += --x-libraries=$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) #TEST_TARGET = check # There is a test failing on Xvfb which may or may not be harmful. Disable for now. 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 May 9 02:30:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 00:30:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4779] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 4779 http://gar.svn.sourceforge.net/gar/?rev=4779&view=rev Author: dmichelsen Date: 2009-05-09 00:30:13 +0000 (Sat, 09 May 2009) Log Message: ----------- gtk2 Add required packages Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-09 00:26:13 UTC (rev 4778) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-09 00:30:13 UTC (rev 4779) @@ -24,7 +24,8 @@ WORKSRC = $(WORKDIR)/gtk+-$(GARVERSION) PREREQUISITE_PKGS = CSWbash -REQUIRED_PKGS = CSWjasper +REQUIRED_PKGS = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk +REQUIRED_PKGS += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib SPKG_SOURCEURL = http://www.gtk.org/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat May 9 04:16:13 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 09 May 2009 02:16:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4780] csw/mgar/pkg/php5/trunk/Makefile Message-ID: Revision: 4780 http://gar.svn.sourceforge.net/gar/?rev=4780&view=rev Author: valholla Date: 2009-05-09 02:16:13 +0000 (Sat, 09 May 2009) Log Message: ----------- fix fast-cgi Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-09 00:30:13 UTC (rev 4779) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-09 02:16:13 UTC (rev 4780) @@ -73,6 +73,7 @@ CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php5/bin CONFIGURE_ARGS += --enable-cli CONFIGURE_ARGS += --enable-fastcgi +CONFIGURE_ARGS += --enable-force-cgi-redirect CONFIGURE_ARGS += --enable-pcntl=shared CONFIGURE_ARGS += --enable-pdo=shared CONFIGURE_ARGS += --with-mm=$(prefix) @@ -92,7 +93,6 @@ # Copy over template config files and utility scripts PI_SCRIPTS = install-extras -PI_SCRIPTS += install-sapi-cgi PI_SCRIPTS += install-ap2modphp5 PI_SCRIPTS += install-modphp5 @@ -139,17 +139,6 @@ -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) @$(MAKECOOKIE) -install-sapi-cgi: - @( echo " ==> Now Building php-cgi <==" ) - @( if [ -f $(WORKSRC)/Makefile ]; then \ - $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) - @( cd $(WORKSRC) && $(BUILD_ENV) \ - ./configure $(CONFIGURE_ARGS) --enable-force-cgi-redirect) - @( $(GARBIN)/fixlibtool $(WORKSRC) ) - @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) - @( strip $(DESTDIR)$(prefix)/php5/bin/php-cgi ) - @$(MAKECOOKIE) - EXTFILES = $(shell find extensions/*/files/* -prune -type f) pre-fetch: $(foreach F,$(EXTFILES),$(shell cp $(F) $(DOWNLOADDIR))) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat May 9 04:28:45 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 09 May 2009 02:28:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[4781] csw/mgar/pkg/php5/trunk/checksums Message-ID: Revision: 4781 http://gar.svn.sourceforge.net/gar/?rev=4781&view=rev Author: valholla Date: 2009-05-09 02:28:44 +0000 (Sat, 09 May 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/php5/trunk/checksums Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-09 02:16:13 UTC (rev 4780) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-09 02:28:44 UTC (rev 4781) @@ -4,11 +4,10 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -41ce1e71884ec05db2ac678c48721a82 download/CSWphp5.postinstall +f82303f581e2e4bf11fe3bf10f332163 download/CSWphp5.postinstall 89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff -41ec540885de7c34625768aa1fb9682b download/fixme.sh a71677d80f5cfd1aeb03547dfdeb705a download/httpd-php5.conf.CSW 2206431e47c2075c0b9c4a12de5cf791 download/odbc.diff 230126f76ee6400ccf225bb6a8243532 download/pdopgsql.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 Sat May 9 10:19:16 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 08:19:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[4782] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 4782 http://gar.svn.sourceforge.net/gar/?rev=4782&view=rev Author: dmichelsen Date: 2009-05-09 08:19:16 +0000 (Sat, 09 May 2009) Log Message: ----------- gtk2: Split off devel and doc Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-09 02:28:44 UTC (rev 4781) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-09 08:19:16 UTC (rev 4782) @@ -23,9 +23,16 @@ WORKSRC = $(WORKDIR)/gtk+-$(GARVERSION) +PACKAGES = CSWgtk2 CSWgtk2devel CSWgtk2doc + +CATALOGNAME_CSWgtk2 = gtk2 +CATALOGNAME_CSWgtk2devel = gtk2_devel +CATALOGNAME_CSWgtk2doc = gtk2_doc + PREREQUISITE_PKGS = CSWbash -REQUIRED_PKGS = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk -REQUIRED_PKGS += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib +REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk +REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib +REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 SPKG_SOURCEURL = http://www.gtk.org/ @@ -33,6 +40,8 @@ EXTRA_LIB = $(prefix)/X11/lib EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib +NO_ISAEXEC = 1 +NOISALIST = 1 BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) @@ -46,6 +55,10 @@ TEST_OVERRIDE_DIRS = SHELL SHELL = /opt/csw/bin/bash +PKGFILES_CSWgtk2devel = $(PKGFILES_DEVEL) +PKGFILES_CSWgtk2devel += $(sharedstatedir)/gtk-2.0/demo/.* +PKGFILES_CSWgtk2doc = $(sharedstatedir)/gtk-doc/.* + include gar/category.mk post-configure-modulated: 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 May 9 11:32:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 09:32:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[4783] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 4783 http://gar.svn.sourceforge.net/gar/?rev=4783&view=rev Author: dmichelsen Date: 2009-05-09 09:32:24 +0000 (Sat, 09 May 2009) Log Message: ----------- mGAR v2: Fix typo in revision calculation Modified Paths: -------------- csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-05-09 08:19:16 UTC (rev 4782) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-05-09 09:32:24 UTC (rev 4783) @@ -352,7 +352,7 @@ # URL: https://gar.svn.sf.net/svnroot/gar/csw/mgar/pkg/pcre/trunk define _URL -$(if $(shell if test -x $(SVN); then echo yes; fi),$(shell $(SVN) info . 2>/dev/null | $(GAWK) '$$1 == "URL:" { print $$2 })) +$(if $(shell if test -x $(SVN); then echo yes; fi),$(shell $(SVN) info . 2>/dev/null | $(GAWK) '$$1 == "URL:" { print $$2 }')) endef # XXX: It is possible that a package is flagged as /isaexec, even 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 May 9 11:56:33 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 09:56:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[4784] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 4784 http://gar.svn.sourceforge.net/gar/?rev=4784&view=rev Author: dmichelsen Date: 2009-05-09 09:56:33 +0000 (Sat, 09 May 2009) Log Message: ----------- mGAR v2: Simplify STRIP_LIBTOOL Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-05-09 09:32:24 UTC (rev 4783) +++ csw/mgar/gar/v2/gar.mk 2009-05-09 09:56:33 UTC (rev 4784) @@ -381,28 +381,18 @@ #CONFIGURE_BUILDDEPS = $(addprefix $(GARDIR)/,$(addsuffix /$(COOKIEROOTDIR)/build.d/install,$(BUILDDEPS))) endif -ifneq ($(STRIP_LIBTOOL),1) configure: pre-configure $(addprefix configure-,$(MODULATIONS)) post-configure @$(DONADA) configure-modulated: verify-isa patch-modulated $(CONFIGURE_IMGDEPS) $(CONFIGURE_BUILDDEPS) $(CONFIGURE_DEPS) \ $(addprefix srcdep-$(GARDIR)/,$(SOURCEDEPS)) \ - pre-configure-modulated pre-configure-$(MODULATION) $(CONFIGURE_TARGETS) post-configure-$(MODULATION) post-configure-modulated + pre-configure-modulated pre-configure-$(MODULATION) $(CONFIGURE_TARGETS) post-configure-$(MODULATION) post-configure-modulated $(if $(STRIP_LIBTOOL),strip-libtool) @$(DONADA) -else -configure: pre-configure $(addprefix configure-,$(MODULATIONS)) post-configure strip-libtool - @$(DONADA) -configure-modulated: verify-isa patch-modulated $(CONFIGURE_IMGDEPS) $(CONFIGURE_BUILDDEPS) $(CONFIGURE_DEPS) \ - $(addprefix srcdep-$(GARDIR)/,$(SOURCEDEPS)) \ - pre-configure-modulated pre-configure-$(MODULATION) $(CONFIGURE_TARGETS) post-configure-$(MODULATION) post-configure-modulated strip-libtool - @$(DONADA) -endif - strip-libtool: @echo '[===== Stripping Libtool =====]' fixlibtool $(WORKSRC) - @$(DONADA) + @$(MAKECOOKIE) .PHONY: reset-configure reset-configure-modulated reconfigure: reset-configure configure 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 May 9 17:22:10 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 15:22:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[4785] csw/mgar/pkg/x11/Makefile Message-ID: Revision: 4785 http://gar.svn.sourceforge.net/gar/?rev=4785&view=rev Author: dmichelsen Date: 2009-05-09 15:22:09 +0000 (Sat, 09 May 2009) Log Message: ----------- mGAR v2: Enhance newpkg-% in x11-category Modified Paths: -------------- csw/mgar/pkg/x11/Makefile Modified: csw/mgar/pkg/x11/Makefile =================================================================== --- csw/mgar/pkg/x11/Makefile 2009-05-09 09:56:33 UTC (rev 4784) +++ csw/mgar/pkg/x11/Makefile 2009-05-09 15:22:09 UTC (rev 4785) @@ -35,10 +35,9 @@ echo ""; \ echo "MASTER_SITES = "; \ echo "DISTFILES = $$(GARNAME)-$$(GARVERSION).tar.gz"; \ - echo "DISTFILES += $$(call admfiles,CSWpackage,)"; \ echo ""; \ echo "# We define upstream file regex so we can be notifed of new upstream software release"; \ - echo "UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \ + echo "UFILES_REGEX = $$(GARNAME)-(\d+(?:\.\d+)*).tar.gz"; \ echo ""; \ echo "# If the url used to check for software update is different of MASTER_SITES, then "; \ echo "# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES"; \ @@ -48,15 +47,15 @@ echo ""; \ echo "include gar/category.mk"; \ ) > $*/trunk/Makefile - @svn add $*/trunk/Makefile - @(echo "%var bitname package"; \ - echo "%var pkgname CSWpackage"; \ - echo "%include url file://%{PKGLIB}/csw_dyndepend.gspec";\ - echo "%copyright url file://%{WORKSRC}/LICENSE"; \ - ) > $*/trunk/files/CSWpackage.gspec + @touch $*/trunk/checksums + @svn add $*/trunk/Makefile $*/trunk/checksums @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $*/trunk @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $*/trunk - @svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar + @if [ -d ../../gar/v2 ]; then \ + ln -s ../../../../gar/v2 $*/trunk/gar; \ + else \ + svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \ + fi @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 Sat May 9 17:30:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 09 May 2009 15:30:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[4786] csw/mgar/pkg/pango/trunk Message-ID: Revision: 4786 http://gar.svn.sourceforge.net/gar/?rev=4786&view=rev Author: dmichelsen Date: 2009-05-09 15:30:18 +0000 (Sat, 09 May 2009) Log Message: ----------- pango: Use STRIP_LIBTOOL Modified Paths: -------------- csw/mgar/pkg/pango/trunk/Makefile csw/mgar/pkg/pango/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/pango/trunk/files/fixme.sh Modified: csw/mgar/pkg/pango/trunk/Makefile =================================================================== --- csw/mgar/pkg/pango/trunk/Makefile 2009-05-09 15:22:09 UTC (rev 4785) +++ csw/mgar/pkg/pango/trunk/Makefile 2009-05-09 15:30:18 UTC (rev 4786) @@ -12,8 +12,7 @@ MASTER_SITES = http://ftp.gnome.org/pub/gnome/sources/pango/1.24/ DISTNAME = pango-$(GARVERSION) -DISTFILES = $(DISTNAME).tar.bz2 -DISTFILES += fixme.sh +DISTFILES = $(DISTNAME).tar.bz2 PACKAGES = CSWpango CSWpangodevel CSWpangodoc CATALOGNAME_CSWpango = libpango @@ -43,6 +42,8 @@ CONFIGURE_ARGS += --x-libraries=$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) # CONFIGURE_ARGS += --with-included-modules +STRIP_LIBTOOL = 1 + # Dynamic prototype PKGFILES_CSWpangodevel = $(PKGFILES_DEVEL) PKGFILES_CSWpangodoc = $(sharedstatedir)/gtk-doc/.* @@ -54,9 +55,3 @@ include gar/category.mk -post-configure-modulated: - @echo " ==> Fixing libtool files" - @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) - @$(MAKECOOKIE) - - Modified: csw/mgar/pkg/pango/trunk/checksums =================================================================== --- csw/mgar/pkg/pango/trunk/checksums 2009-05-09 15:22:09 UTC (rev 4785) +++ csw/mgar/pkg/pango/trunk/checksums 2009-05-09 15:30:18 UTC (rev 4786) @@ -1,2 +1 @@ -34f5b20f6caf282b2533784fbb1b4395 download/fixme.sh 7bc6c884d847cabc613e4c6d663771f5 download/pango-1.24.2.tar.bz2 Deleted: csw/mgar/pkg/pango/trunk/files/fixme.sh =================================================================== --- csw/mgar/pkg/pango/trunk/files/fixme.sh 2009-05-09 15:22:09 UTC (rev 4785) +++ csw/mgar/pkg/pango/trunk/files/fixme.sh 2009-05-09 15:30:18 UTC (rev 4786) @@ -1,51 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -for LTMAIN in $(gfind ${BASEPATH} -name ltmain.sh -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -done - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 12:09:56 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 10:09:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[4787] csw/mgar/pkg/socat/trunk Message-ID: Revision: 4787 http://gar.svn.sourceforge.net/gar/?rev=4787&view=rev Author: skayser Date: 2009-05-10 10:09:55 +0000 (Sun, 10 May 2009) Log Message: ----------- socat: removed gcc flags from configure.in to enable AC_TRY_COMPILEs Modified Paths: -------------- csw/mgar/pkg/socat/trunk/checksums csw/mgar/pkg/socat/trunk/files/cc_compile.patch Modified: csw/mgar/pkg/socat/trunk/checksums =================================================================== --- csw/mgar/pkg/socat/trunk/checksums 2009-05-09 15:30:18 UTC (rev 4786) +++ csw/mgar/pkg/socat/trunk/checksums 2009-05-10 10:09:55 UTC (rev 4787) @@ -1,3 +1,2 @@ -82967132b5a8ca4d07e54370fdcb2662 download/socat-1.7.0.0.tar.gz -06fac9e8c6e979e163630163238296d8 download/cc_compile.patch -0f34e654b9a652278fa2fd1b36d51469 download/patch-test.diff +a3a68cabdfd9145aa6570fc4777be45c download/cc_compile.patch +52b0216607e35bdfba247560fb85dd82 download/socat-1.7.1.1.tar.gz Modified: csw/mgar/pkg/socat/trunk/files/cc_compile.patch =================================================================== --- csw/mgar/pkg/socat/trunk/files/cc_compile.patch 2009-05-09 15:30:18 UTC (rev 4786) +++ csw/mgar/pkg/socat/trunk/files/cc_compile.patch 2009-05-10 10:09:55 UTC (rev 4787) @@ -22,3 +22,32 @@ fi export CFLAGS +--- socat-1.7.1.1.orig/configure.in 2009-05-10 11:44:36.045547843 +0200 ++++ socat-1.7.1.1/configure.in 2009-05-10 11:38:07.477274940 +0200 +@@ -84,7 +84,7 @@ + dnl Check for hstrerror prototype + AC_MSG_CHECKING(for hstrerror prototype) + AC_CACHE_VAL(sc_cv_have_prototype_hstrerror, +-[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $CFLAGS1"; ++[CFLAGS1="$CFLAGS"; CFLAGS="-errwarn $CFLAGS1"; + AC_TRY_COMPILE([#include ],[hstrerror();], + [sc_cv_have_prototype_hstrerror=no], + [sc_cv_have_prototype_hstrerror=yes]); +@@ -1296,7 +1296,7 @@ + dnl 5..long, 6..u-long; others not yet supported + define(AC_BASIC_TYPE,[ + AC_CACHE_CHECK(for equivalent simple type of $2, $4, +-[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $CFLAGS1" ++[CFLAGS1="$CFLAGS"; CFLAGS="-errwarn $CFLAGS1" + AC_TRY_COMPILE([$1],[$2 u; short v; &u==&v;], + [$4="1 /* short */"], + [AC_TRY_COMPILE([$1],[$2 u; unsigned short v; &u==&v;], +@@ -1328,7 +1328,7 @@ + dnl arg5: cache variable (might be constructed automatically) + define(AC_TYPEOF_COMPONENT,[ + AC_CACHE_CHECK(for basic type of $2.$3, $5, +-[CFLAGS1="$CFLAGS"; CFLAGS="-Werror -O0 $CFLAGS1" ++[CFLAGS1="$CFLAGS"; CFLAGS="-errwarn $CFLAGS1" + AC_TRY_COMPILE([$1],[$2 u;short v; &u.$3==&v;], + [$5="1 /* short */"], + [AC_TRY_COMPILE([$1],[$2 u; unsigned short v; &u.$3==&v;], This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Sun May 10 12:57:50 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sun, 10 May 2009 10:57:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[4788] csw/mgar/pkg/nginx/trunk/checksums Message-ID: Revision: 4788 http://gar.svn.sourceforge.net/gar/?rev=4788&view=rev Author: aigoshin Date: 2009-05-10 10:57:50 +0000 (Sun, 10 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/checksums Modified: csw/mgar/pkg/nginx/trunk/checksums =================================================================== --- csw/mgar/pkg/nginx/trunk/checksums 2009-05-10 10:09:55 UTC (rev 4787) +++ csw/mgar/pkg/nginx/trunk/checksums 2009-05-10 10:57:50 UTC (rev 4788) @@ -4,4 +4,4 @@ e9178dc33f2d38aab8f118a8f0550ac7 download/CSWnginx.preremove 5c832758a62ee319ea9dfd1829d736eb download/cswnginx.xml 15cce6102a2efcf4d4acde9bb71ea6d3 download/nginx-0.6.36.tar.gz -02b720d1ff091b7d2ab005b4db223345 download/svc-cswnginx +c5b3babbd1261bcb3f3e17494822bb9f download/svc-cswnginx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From aigoshin at users.sourceforge.net Sun May 10 13:36:24 2009 From: aigoshin at users.sourceforge.net (aigoshin at users.sourceforge.net) Date: Sun, 10 May 2009 11:36:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[4789] csw/mgar/pkg/nginx/trunk Message-ID: Revision: 4789 http://gar.svn.sourceforge.net/gar/?rev=4789&view=rev Author: aigoshin Date: 2009-05-10 11:36:24 +0000 (Sun, 10 May 2009) Log Message: ----------- nginx: milestone 3.0 Modified Paths: -------------- csw/mgar/pkg/nginx/trunk/Makefile csw/mgar/pkg/nginx/trunk/checksums Modified: csw/mgar/pkg/nginx/trunk/Makefile =================================================================== --- csw/mgar/pkg/nginx/trunk/Makefile 2009-05-10 10:57:50 UTC (rev 4788) +++ csw/mgar/pkg/nginx/trunk/Makefile 2009-05-10 11:36:24 UTC (rev 4789) @@ -1,5 +1,5 @@ GARNAME = nginx -GARVERSION = $(NGINX_VERSION) +GARVERSION = 0.7.55 CATEGORIES = server DESCRIPTION = HTTP server and mail proxy server @@ -16,7 +16,7 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz -REQUIRED_PKGS = CSWosslrt CSWpcrert CSWzlib +REQUIRED_PKGS = CSWosslrt CSWpcrert CSWzlib EXTRA_BUILD_ISAS_i386 = pentium_pro EXTRA_BUILD_ISAS_sparc = sparcv9 Modified: csw/mgar/pkg/nginx/trunk/checksums =================================================================== --- csw/mgar/pkg/nginx/trunk/checksums 2009-05-10 10:57:50 UTC (rev 4788) +++ csw/mgar/pkg/nginx/trunk/checksums 2009-05-10 11:36:24 UTC (rev 4789) @@ -3,5 +3,5 @@ bb404771e330fe98f93cb2d12a808121 download/CSWnginx.postinstall e9178dc33f2d38aab8f118a8f0550ac7 download/CSWnginx.preremove 5c832758a62ee319ea9dfd1829d736eb download/cswnginx.xml -15cce6102a2efcf4d4acde9bb71ea6d3 download/nginx-0.6.36.tar.gz +2064dc7a1ef082eb584e3a75857853f1 download/nginx-0.7.55.tar.gz c5b3babbd1261bcb3f3e17494822bb9f download/svc-cswnginx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 13:58:31 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 11:58:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[4790] csw/mgar/pkg/socat/trunk Message-ID: Revision: 4790 http://gar.svn.sourceforge.net/gar/?rev=4790&view=rev Author: skayser Date: 2009-05-10 11:58:31 +0000 (Sun, 10 May 2009) Log Message: ----------- socat: version bump, fixed autoconf tests for netinet/ip.h Modified Paths: -------------- csw/mgar/pkg/socat/trunk/Makefile csw/mgar/pkg/socat/trunk/checksums Added Paths: ----------- csw/mgar/pkg/socat/trunk/files/patch-configure-netinetip.diff Modified: csw/mgar/pkg/socat/trunk/Makefile =================================================================== --- csw/mgar/pkg/socat/trunk/Makefile 2009-05-10 11:36:24 UTC (rev 4789) +++ csw/mgar/pkg/socat/trunk/Makefile 2009-05-10 11:58:31 UTC (rev 4790) @@ -1,5 +1,5 @@ GARNAME = socat -GARVERSION = 1.7.0.0 +GARVERSION = 1.7.1.1 CATEGORIES = net DESCRIPTION = Multipurpose relay for bidirectional data transfer @@ -22,9 +22,10 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -# Disable gcc specific options +# Delete or substitute gcc specific options (-Wall, -Werror, -O0) PATCHFILES = cc_compile.patch - +# Amend AC_CHECK_HEADERS check on netinet/ip.h with req. system headers +PATCHFILES += patch-configure-netinetip.diff # Fix some broken tests (pending to push some of it upstream) PATCHFILES += patch-test.diff Modified: csw/mgar/pkg/socat/trunk/checksums =================================================================== --- csw/mgar/pkg/socat/trunk/checksums 2009-05-10 11:36:24 UTC (rev 4789) +++ csw/mgar/pkg/socat/trunk/checksums 2009-05-10 11:58:31 UTC (rev 4790) @@ -1,2 +1,4 @@ a3a68cabdfd9145aa6570fc4777be45c download/cc_compile.patch +76ce5e07c1b8925b33e664accefa1923 download/patch-configure-netinetip.diff +0f34e654b9a652278fa2fd1b36d51469 download/patch-test.diff 52b0216607e35bdfba247560fb85dd82 download/socat-1.7.1.1.tar.gz Added: csw/mgar/pkg/socat/trunk/files/patch-configure-netinetip.diff =================================================================== --- csw/mgar/pkg/socat/trunk/files/patch-configure-netinetip.diff (rev 0) +++ csw/mgar/pkg/socat/trunk/files/patch-configure-netinetip.diff 2009-05-10 11:58:31 UTC (rev 4790) @@ -0,0 +1,17 @@ +--- socat-1.7.1.1/configure.in.orig 2009-05-10 12:24:59.504739652 +0200 ++++ socat-1.7.1.1/configure.in 2009-05-10 12:25:36.909419428 +0200 +@@ -53,7 +53,13 @@ + AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/param.h sys/ioctl.h sys/time.h syslog.h unistd.h) + AC_CHECK_HEADERS(pwd.h grp.h stdint.h sys/types.h sys/poll.h sys/socket.h sys/uio.h sys/stat.h netdb.h sys/un.h) + AC_CHECK_HEADERS(pty.h) +-AC_CHECK_HEADERS(netinet/in.h netinet/in_systm.h netinet/ip.h netinet/tcp.h) ++AC_CHECK_HEADERS(netinet/in.h netinet/in_systm.h) ++AC_CHECK_HEADERS(netinet/ip.h, [], [], [AC_INCLUDES_DEFAULT ++ #if HAVE_NETINET_IN_H && HAVE_NETINET_IN_SYSTM_H ++ #include ++ #include ++ #endif]) # Solaris prerequisites for netinet/ip.h ++AC_CHECK_HEADERS(netinet/tcp.h) + AC_CHECK_HEADERS(netinet6/in6.h) # found on OpenBSD, used for IPV6_* + AC_CHECK_HEADERS(net/if.h, [], [], [AC_INCLUDES_DEFAULT + #if HAVE_SYS_SOCKET_H 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 May 10 17:07:06 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 10 May 2009 15:07:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[4791] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 4791 http://gar.svn.sourceforge.net/gar/?rev=4791&view=rev Author: dmichelsen Date: 2009-05-10 15:07:05 +0000 (Sun, 10 May 2009) Log Message: ----------- x11/libxcb: Add package for documentation Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-10 11:58:31 UTC (rev 4790) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-10 15:07:05 UTC (rev 4791) @@ -11,7 +11,7 @@ MASTER_SITES = http://xcb.freedesktop.org/dist/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -PREREQUISITE_PKGS = CSWlibxaudevel CSWlibpthreadstubs CSWdoxygen CSWpython CSWxcbproto +PREREQUISITE_PKGS = CSWlibxaudevel CSWlibpthreadstubs CSWdoxygen CSWpython CSWxcbproto CSWgraphviz2 REQUIRED_PKGS_CSWlibxcb = CSWlibxau PACKAGES = CSWlibxcb CSWlibxcbdevel CSWlibxcbdoc @@ -40,3 +40,5 @@ include gar/category.mk +PATH := $(PATH):/opt/csw/graphviz2/bin + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 17:31:54 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 15:31:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[4792] csw/mgar/pkg/socat/trunk Message-ID: Revision: 4792 http://gar.svn.sourceforge.net/gar/?rev=4792&view=rev Author: skayser Date: 2009-05-10 15:31:54 +0000 (Sun, 10 May 2009) Log Message: ----------- socat: adjustments to test.sh for IPv6 tests on non-IPv6 systems Modified Paths: -------------- csw/mgar/pkg/socat/trunk/Makefile csw/mgar/pkg/socat/trunk/checksums csw/mgar/pkg/socat/trunk/files/patch-test.diff Added Paths: ----------- csw/mgar/pkg/socat/trunk/files/patch-sycls-utils.diff Modified: csw/mgar/pkg/socat/trunk/Makefile =================================================================== --- csw/mgar/pkg/socat/trunk/Makefile 2009-05-10 15:07:05 UTC (rev 4791) +++ csw/mgar/pkg/socat/trunk/Makefile 2009-05-10 15:31:54 UTC (rev 4792) @@ -4,13 +4,13 @@ DESCRIPTION = Multipurpose relay for bidirectional data transfer define BLURB - socat is a relay for bidirectional data transfer between two independent - data channels. Each of these data channels may be a file, pipe, device - (serial line etc. or a pseudo terminal), a socket (UNIX, IP4, IP6 - raw, - UDP, TCP), an SSL socket, proxy CONNECT connection, a file descriptor - (stdin etc.), the GNU line editor (readline), a program, or a - combination of two of these. These modes include generation of - "listening" sockets, named pipes, and pseudo terminals. + socat is a relay for bidirectional data transfer between two independent + data channels. Each of these data channels may be a file, pipe, device + (serial line etc. or a pseudo terminal), a socket (UNIX, IP4, IP6 - raw, + UDP, TCP), an SSL socket, proxy CONNECT connection, a file descriptor + (stdin etc.), the GNU line editor (readline), a program, or a + combination of two of these. These modes include generation of + "listening" sockets, named pipes, and pseudo terminals. endef MASTER_SITES = http://www.dest-unreach.org/socat/download/ @@ -28,51 +28,44 @@ PATCHFILES += patch-configure-netinetip.diff # Fix some broken tests (pending to push some of it upstream) PATCHFILES += patch-test.diff +# Include utils.h in sycls.c so that setenv() is declared +PATCHFILES += patch-sycls-utils.diff CONFIGURE_ARGS = $(DIRPATHS) -# 250+ tests take a while. Run them manually when packaging a new version +# 250+ tests take a while. Run them manually when packaging a new version. +# To do so, change to $(WORKSRC) after building and execute ./test.sh TEST_SCRIPTS = # When you run the tests on a non IPV6 system you can set HAVENOT_IP6 # to shortcut some tests #TEST_ENV="HAVENOT_IP6=1" +# socat 1.7.1.1: +# -------------- # Running test.sh on a non IPV6 system as root i get: # -# summary: 276 tests; 149 ok, 19 failed, 107 could not be performed +# summary: 282 tests; 145 ok, 8 failed, 129 could not be performed # -# The 19 FAILED ones are +# The 8 FAILED ones are # -# test 123 PTMXWAITSLAVE: test if master pty (ptmx) waits for slave connection -# test 208 UDP4SCM_IP_OPTIONS: UDP4 log ancillary message IP_OPTIONS options -# test 210 UDP4SCM_IP_TTL: UDP4 log ancillary message IP_TTL ttl -# test 215 UDP4SCM_IP_RECVIF: UDP4 log ancillary message IP_RECVIF if -# test 216 UDP4SCM_IP_RECVDSTADDR: UDP4 log ancillary message IP_RECVDSTADDR dstaddr -# test 217 IP4SCM_IP_OPTIONS: IP4 log ancillary message IP_OPTIONS options -# test 219 IP4SCM_IP_TTL: IP4 log ancillary message IP_TTL ttl -# test 224 IP4SCM_IP_RECVIF: IP4 log ancillary message IP_RECVIF if -# test 225 IP4SCM_IP_RECVDSTADDR: IP4 log ancillary message IP_RECVDSTADDR dstaddr +# 126 PTMXWAITSLAVE: test if master pty (ptmx) waits for slave connection +# 214 UDP4SCM_IP_OPTIONS: UDP4 log ancillary message IP_OPTIONS options +# 221 UDP4SCM_IP_RECVIF: UDP4 log ancillary message IP_RECVIF if +# 222 UDP4SCM_IP_RECVDSTADDR: UDP4 log ancillary message IP_RECVDSTADDR dstaddr +# 246 UDP4ENV_IP_OPTIONS: UDP4 ancillary message brings IP_OPTIONS into env +# 248 UDP4ENV_IP_TTL: UDP4 ancillary message brings IP_TTL into environment +# 253 UDP4ENV_IP_IF: UDP4 ancillary message brings IP_IF into environment +# 254 UDP4ENV_IP_DSTADDR: UDP4 ancillary message brings IP_DSTADDR into env # -# test 234 TCP4LISTENENV: TCP4-LISTEN fills environment variables with socket addresses -# test 239 UNIXLISTENENV: UNIX-LISTEN fills environment variables with socket addresses +# Most of them (all of them?) relate to ancillary data. Seems as if there are +# two competing socket libraries on Solaris: 3SOCKET and 3XNET, where only the +# latter handles ancillary data. # -# test 240 UDP4ENV_IP_OPTIONS: UDP4 ancillary message brings IP_OPTIONS into environment -# test 242 UDP4ENV_IP_TTL: UDP4 ancillary message brings IP_TTL into environment -# test 247 UDP4ENV_IP_IF: UDP4 ancillary message brings IP_IF into environment -# test 248 UDP4ENV_IP_DSTADDR: UDP4 ancillary message brings IP_DSTADDR into environment -# test 249 IP4ENV_IP_OPTIONS: IP4 ancillary message brings IP_OPTIONS into environment -# test 251 IP4ENV_IP_TTL: IP4 ancillary message brings IP_TTL into environment -# test 256 IP4ENV_IP_IF: IP4 ancillary message brings IP_IF into environment -# test 257 IP4ENV_IP_DSTADDR: IP4 ancillary message brings IP_DSTADDR into environment -# -# Most of them (all of them?) relate to ancillary data. Seems as if there are two -# competing socket libraries on Solaris: 3SOCKET and 3XNET, where only the latter -# handles ancillary data. -# # http://www.mail-archive.com/networking-discuss at opensolaris.org/msg01146.html # -# 3XNET is only defined when using SUS/XPG4v2 feature macros. socat README suggests +# 3XNET is only defined when using SUS/XPG4v2 feature macros. socat README +# suggests # # EXTRA_CFLAGS = -D_XPG4_2 -D__EXTENSIONS__ # @@ -92,8 +85,8 @@ # # ./test.sh # -# where TESTNAME is one of the uppercase testnames from above (for example PTMXWAITSLAVE). -# +# where TESTNAME is one of the uppercase testnames from above +# (for example PTMXWAITSLAVE). include gar/category.mk Modified: csw/mgar/pkg/socat/trunk/checksums =================================================================== --- csw/mgar/pkg/socat/trunk/checksums 2009-05-10 15:07:05 UTC (rev 4791) +++ csw/mgar/pkg/socat/trunk/checksums 2009-05-10 15:31:54 UTC (rev 4792) @@ -1,4 +1,5 @@ a3a68cabdfd9145aa6570fc4777be45c download/cc_compile.patch 76ce5e07c1b8925b33e664accefa1923 download/patch-configure-netinetip.diff -0f34e654b9a652278fa2fd1b36d51469 download/patch-test.diff +b6863876e1e8deac45015662f04cb683 download/patch-sycls-utils.diff +f8d2e302f66b98b5e2236dee155d32be download/patch-test.diff 52b0216607e35bdfba247560fb85dd82 download/socat-1.7.1.1.tar.gz Added: csw/mgar/pkg/socat/trunk/files/patch-sycls-utils.diff =================================================================== --- csw/mgar/pkg/socat/trunk/files/patch-sycls-utils.diff (rev 0) +++ csw/mgar/pkg/socat/trunk/files/patch-sycls-utils.diff 2009-05-10 15:31:54 UTC (rev 4792) @@ -0,0 +1,10 @@ +--- socat-1.7.1.1.orig/sycls.c 2009-05-10 16:55:51.012555282 +0200 ++++ socat-1.7.1.1/sycls.c 2009-05-10 16:56:21.819201100 +0200 +@@ -18,6 +18,7 @@ + + #include "error.h" + #include "filan.h" ++#include "utils.h" + #include "sysutils.h" + #include "sycls.h" + Modified: csw/mgar/pkg/socat/trunk/files/patch-test.diff =================================================================== --- csw/mgar/pkg/socat/trunk/files/patch-test.diff 2009-05-10 15:07:05 UTC (rev 4791) +++ csw/mgar/pkg/socat/trunk/files/patch-test.diff 2009-05-10 15:31:54 UTC (rev 4792) @@ -1,33 +1,34 @@ -diff --speed-large-files --minimal -Nru socat-1.7.0.0.orig/readline-test.sh socat-1.7.0.0/readline-test.sh ---- socat-1.7.0.0.orig/readline-test.sh 2008-09-22 22:33:30.000000000 +0200 -+++ socat-1.7.0.0/readline-test.sh 2009-03-19 20:57:41.847390097 +0100 +diff -ur socat-1.7.1.1.orig/readline-test.sh socat-1.7.1.1/readline-test.sh +--- socat-1.7.1.1.orig/readline-test.sh 2009-04-02 09:32:48.000000000 +0200 ++++ socat-1.7.1.1/readline-test.sh 2009-05-10 16:36:54.125213675 +0200 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /opt/csw/bin/bash # source: readline-test.sh # Copyright Gerhard Rieger 2003-2008 # Published under the GNU General Public License V.2, see file COPYING -diff --speed-large-files --minimal -Nru socat-1.7.0.0.orig/test.sh socat-1.7.0.0/test.sh ---- socat-1.7.0.0.orig/test.sh 2008-10-14 19:16:32.000000000 +0200 -+++ socat-1.7.0.0/test.sh 2009-03-19 20:57:29.843380940 +0100 +diff -ur socat-1.7.1.1.orig/test.sh socat-1.7.1.1/test.sh +--- socat-1.7.1.1.orig/test.sh 2009-04-02 17:11:28.000000000 +0200 ++++ socat-1.7.1.1/test.sh 2009-05-10 16:36:54.011852555 +0200 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /opt/csw/bin/bash # source: test.sh - # Copyright Gerhard Rieger 2001-2008 + # Copyright Gerhard Rieger 2001-2009 # Published under the GNU General Public License V.2, see file COPYING -@@ -11,6 +11,10 @@ - - #set -vx - -+# /usr/bin/tr doesn't handle the a-z range syntax (needs [a-z]) which -+# is used throughout this script -+alias tr=/usr/xpg4/bin/tr -+ - val_t=0.1 - NUMCOND=true - #NUMCOND="test \$N -gt 70" -@@ -8931,6 +8935,9 @@ +@@ -97,6 +97,11 @@ + chmod a+x cat.sh + CAT=./cat.sh + ;; ++SunOS) ++ # /usr/bin/tr doesn't handle the a-z range syntax (needs [a-z]), use ++ # /usr/xpg4/bin/tr instead ++ alias tr=/usr/xpg4/bin/tr ++ ;; + *) + CAT=cat + ;; +@@ -9059,6 +9064,9 @@ elif [ "$ROOT" = root -a $(id -u) -ne 0 -a "$withroot" -eq 0 ]; then $PRINTF "test $F_n $TEST... ${YELLOW}must be root${NORMAL}\n" $N numCANT=$((numCANT+1)) @@ -37,19 +38,18 @@ else tf="$td/test$N.stdout" te="$td/test$N.stderr" -@@ -9051,6 +9058,11 @@ +@@ -9179,6 +9187,10 @@ elif ! feat=$(testaddrs $FEAT); then - $PRINTF "test $F_n $TEST... ${YELLOW}$(echo $feat |tr a-z A-Z) not available${NORMAL}\n" $N + $PRINTF "test $F_n $TEST... ${YELLOW}$(echo "$feat" |tr a-z A-Z) not available${NORMAL}\n" $N numCANT=$((numCANT+1)) -+ +elif [ "$KEYW" = "TCP6" -o "$KEYW" = "UDP6" -o "$KEYW" = "SCTP6" ] && \ -+ ( ! feat=$(testaddrs ip6) || ! runsip6 >/dev/null ); then ++ ! runsip6 >/dev/null; then + $PRINTF "test $F_n $TEST... ${YELLOW}IP6 not available${NORMAL}\n" $N + numCANT=$((numCANT+1)) else tf="$td/test$N.stdout" te="$td/test$N.stderr" -@@ -9146,6 +9158,9 @@ +@@ -9274,6 +9286,9 @@ elif [ "$ROOT" = root -a $(id -u) -ne 0 -a "$withroot" -eq 0 ]; then $PRINTF "test $F_n $TEST... ${YELLOW}must be root${NORMAL}\n" $N numCANT=$((numCANT+1)) @@ -59,3 +59,16 @@ else tf="$td/test$N.stdout" te="$td/test$N.stderr" +@@ -9427,7 +9442,11 @@ + case "$TESTS" in + *%functions%*|*%generic%*|*%tcp6%*|*%socket%*|*%$NAME%*) + TEST="$NAME: socket connect with TCP/IPv6" +-if ! eval $NUMCOND; then :; else ++if ! eval $NUMCOND; then :; ++elif ! testaddrs tcp ip6 >/dev/null || ! runsip6 >/dev/null; then ++ $PRINTF "test $F_n $TEST... ${YELLOW}TCP6 not available${NORMAL}\n" $N ++ numCANT=$((numCANT+1)) ++else + # start a TCP6-LISTEN process that echoes data, and send test data using + # SOCKET-CONNECT, selecting TCP/IPv6. The sent data should be returned. + tf="$td/test$N.stdout" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 17:55:13 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 15:55:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4793] csw/mgar/pkg/socat/trunk/files/changelog.CSW Message-ID: Revision: 4793 http://gar.svn.sourceforge.net/gar/?rev=4793&view=rev Author: skayser Date: 2009-05-10 15:55:13 +0000 (Sun, 10 May 2009) Log Message: ----------- socat: updated changelog Modified Paths: -------------- csw/mgar/pkg/socat/trunk/files/changelog.CSW Modified: csw/mgar/pkg/socat/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/socat/trunk/files/changelog.CSW 2009-05-10 15:31:54 UTC (rev 4792) +++ csw/mgar/pkg/socat/trunk/files/changelog.CSW 2009-05-10 15:55:13 UTC (rev 4793) @@ -1,5 +1,11 @@ -socat (1.7.0.0,REV=20090320) +socat (1.7.1.1,REV=2009.05.10) + * Updated to 1.7.1.1 (Closes: #3594). + + -- Sebastian Kayser Sun, 10 May 2009 17:47:39 +0200 + +socat (1.7.0.0,REV=2009.03.20) + * Initial package. -- Sebastian Kayser Fri, 20 Mar 2009 11:38:48 +0100 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 May 10 18:06:44 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 10 May 2009 16:06:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[4794] csw/mgar/pkg/x11/libxcb/trunk/Makefile Message-ID: Revision: 4794 http://gar.svn.sourceforge.net/gar/?rev=4794&view=rev Author: dmichelsen Date: 2009-05-10 16:06:44 +0000 (Sun, 10 May 2009) Log Message: ----------- X11/libxcb: Add necessary define for xcb.h or stdint.h will be included Modified Paths: -------------- csw/mgar/pkg/x11/libxcb/trunk/Makefile Modified: csw/mgar/pkg/x11/libxcb/trunk/Makefile =================================================================== --- csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-10 15:55:13 UTC (rev 4793) +++ csw/mgar/pkg/x11/libxcb/trunk/Makefile 2009-05-10 16:06:44 UTC (rev 4794) @@ -42,3 +42,6 @@ PATH := $(PATH):/opt/csw/graphviz2/bin +post-install-modulated: + perl -pi -e 's/^(Cflags:.*)/\1 $(EXTRA_CFLAGS)/' $(DESTDIR)$(libdir)/pkgconfig/xcb.pc + @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 18:07:30 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 16:07:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[4795] csw/mgar/pkg/watch/trunk/files/changelog.CSW Message-ID: Revision: 4795 http://gar.svn.sourceforge.net/gar/?rev=4795&view=rev Author: skayser Date: 2009-05-10 16:07:30 +0000 (Sun, 10 May 2009) Log Message: ----------- watch: added changelog.CSW Added Paths: ----------- csw/mgar/pkg/watch/trunk/files/changelog.CSW Added: csw/mgar/pkg/watch/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/watch/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/watch/trunk/files/changelog.CSW 2009-05-10 16:07:30 UTC (rev 4795) @@ -0,0 +1,5 @@ +watch (0.2.0,REV=2009.05.10) + + * Recompiled with adjusted GAR build system (Closes: #3603). + + -- Sebastian Kayser Sun, 10 May 2009 18:04:57 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 18:14:07 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 16:14:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[4796] csw/mgar/pkg/watch/trunk/Makefile Message-ID: Revision: 4796 http://gar.svn.sourceforge.net/gar/?rev=4796&view=rev Author: skayser Date: 2009-05-10 16:14:07 +0000 (Sun, 10 May 2009) Log Message: ----------- watch: added changelog.CSW Modified Paths: -------------- csw/mgar/pkg/watch/trunk/Makefile Modified: csw/mgar/pkg/watch/trunk/Makefile =================================================================== --- csw/mgar/pkg/watch/trunk/Makefile 2009-05-10 16:07:30 UTC (rev 4795) +++ csw/mgar/pkg/watch/trunk/Makefile 2009-05-10 16:14:07 UTC (rev 4796) @@ -67,9 +67,12 @@ ALL_LDFLAGS="$(LDFLAGS)" watch $(MAKECOOKIE) +install-custom: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) install-custom: @ginstall -d $(DESTDIR)$(bindir) @ginstall -d $(DESTDIR)$(mandir)/man1 + @ginstall -d $(DOCDEST) @ginstall -m 755 $(WORKSRC)/watch $(DESTDIR)$(bindir) - @ginstall -m 644 $(WORKSRC)/watch.1 $(DESTDIR)$(mandir)/man1 + @cp $(WORKSRC)/watch.1 $(DESTDIR)$(mandir)/man1 + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) $(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 18:25:59 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 16:25:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4797] csw/mgar/pkg/pv/trunk Message-ID: Revision: 4797 http://gar.svn.sourceforge.net/gar/?rev=4797&view=rev Author: skayser Date: 2009-05-10 16:25:59 +0000 (Sun, 10 May 2009) Log Message: ----------- pv: added changelog Modified Paths: -------------- csw/mgar/pkg/pv/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/pv/trunk/files/changelog.CSW Modified: csw/mgar/pkg/pv/trunk/Makefile =================================================================== --- csw/mgar/pkg/pv/trunk/Makefile 2009-05-10 16:14:07 UTC (rev 4796) +++ csw/mgar/pkg/pv/trunk/Makefile 2009-05-10 16:25:59 UTC (rev 4797) @@ -35,9 +35,8 @@ include gar/category.mk +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) post-install-modulated: @gunzip $(DESTDIR)$(mandir)/man1/pv.1.gz - @ginstall -d -m 755 $(DESTDIR)$(docdir)/$(GARNAME) - @ginstall -m 644 \ - $(WORKSRC)/doc/NEWS \ - $(DESTDIR)$(docdir)/$(GARNAME) + @ginstall -d -m 755 $(DOCDEST) + @cp $(WORKSRC)/doc/NEWS $(FILEDIR)/changelog.CSW $(DOCDEST) Added: csw/mgar/pkg/pv/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/pv/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/pv/trunk/files/changelog.CSW 2009-05-10 16:25:59 UTC (rev 4797) @@ -0,0 +1,5 @@ +pv (1.1.4,REV=2009.05.10) + + * Recompiled with adjusted GAR build system (Closes: #3573). + + -- Sebastian Kayser Sun, 10 May 2009 18:18:49 +0200 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 18:36:59 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 16:36:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4798] csw/mgar/pkg/proxytunnel/trunk Message-ID: Revision: 4798 http://gar.svn.sourceforge.net/gar/?rev=4798&view=rev Author: skayser Date: 2009-05-10 16:36:58 +0000 (Sun, 10 May 2009) Log Message: ----------- proxytunnel: added changelog.CSW Modified Paths: -------------- csw/mgar/pkg/proxytunnel/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/proxytunnel/trunk/files/changelog.CSW Modified: csw/mgar/pkg/proxytunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/proxytunnel/trunk/Makefile 2009-05-10 16:25:59 UTC (rev 4797) +++ csw/mgar/pkg/proxytunnel/trunk/Makefile 2009-05-10 16:36:58 UTC (rev 4798) @@ -28,3 +28,9 @@ CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/proxytunnel/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/proxytunnel/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/proxytunnel/trunk/files/changelog.CSW 2009-05-10 16:36:58 UTC (rev 4798) @@ -0,0 +1,5 @@ +proxytunnel (1.9.0,REV=2009.05.10) + + * Recompiled with updated GAR build system (Closes: #3572). + + -- Sebastian Kayser Sun, 10 May 2009 18:34:45 +0200 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 May 10 20:20:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 10 May 2009 18:20:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[4799] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 4799 http://gar.svn.sourceforge.net/gar/?rev=4799&view=rev Author: dmichelsen Date: 2009-05-10 18:20:20 +0000 (Sun, 10 May 2009) Log Message: ----------- gtk+: Disable cups for now until 64 bit libs are provided Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-10 16:36:58 UTC (rev 4798) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-05-10 18:20:20 UTC (rev 4799) @@ -47,6 +47,7 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --x-include=$(prefix)/X11/include CONFIGURE_ARGS += --x-libraries=$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) +CONFIGURE_ARGS += --disable-cups #TEST_TARGET = check # There is a test failing on Xvfb which may or may not be harmful. Disable for now. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 20:50:35 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 18:50:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[4800] csw/mgar/pkg/ncdu/trunk Message-ID: Revision: 4800 http://gar.svn.sourceforge.net/gar/?rev=4800&view=rev Author: skayser Date: 2009-05-10 18:50:35 +0000 (Sun, 10 May 2009) Log Message: ----------- ncdu: version bump + related patches, added changelog Modified Paths: -------------- csw/mgar/pkg/ncdu/trunk/Makefile csw/mgar/pkg/ncdu/trunk/checksums Added Paths: ----------- csw/mgar/pkg/ncdu/trunk/files/changelog.CSW csw/mgar/pkg/ncdu/trunk/files/gar-base.diff Modified: csw/mgar/pkg/ncdu/trunk/Makefile =================================================================== --- csw/mgar/pkg/ncdu/trunk/Makefile 2009-05-10 18:20:20 UTC (rev 4799) +++ csw/mgar/pkg/ncdu/trunk/Makefile 2009-05-10 18:50:35 UTC (rev 4800) @@ -1,5 +1,5 @@ GARNAME = ncdu -GARVERSION = 1.4 +GARVERSION = 1.5 CATEGORIES = utils DESCRIPTION = Ncurses version of the famous old 'du' unix @@ -19,8 +19,24 @@ TEST_SCRIPTS = -EXTRA_INC = /opt/csw/include/ncurses +EXTRA_INC = /opt/csw/include/ncursesw CONFIGURE_ARGS = $(DIRPATHS) +# - Autoconf check and replacement for non-POSIX dirfd() +# See http://sf.net/tracker/?func=detail&aid=2789779&group_id=200175&atid=972449 +# - Fix for non-void return in src/delete.c:void delete_process() +# See http://sf.net/tracker/?func=detail&aid=2789781&group_id=200175&atid=972449 +PATCHFILES=gar-base.diff + include gar/category.mk + +pre-configure-modulated: + @cd $(WORKSRC) && autoconf + @$(MAKECOOKIE) + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/ncdu/trunk/checksums =================================================================== --- csw/mgar/pkg/ncdu/trunk/checksums 2009-05-10 18:20:20 UTC (rev 4799) +++ csw/mgar/pkg/ncdu/trunk/checksums 2009-05-10 18:50:35 UTC (rev 4800) @@ -1 +1,2 @@ -07f01579f7c9852033139ae9fa2414c9 download/ncdu-1.4.tar.gz +6596993c949abab8e579c401dbe50089 download/gar-base.diff +90a69cc3b2e9f0324eb14e6ce1df0f22 download/ncdu-1.5.tar.gz Added: csw/mgar/pkg/ncdu/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/ncdu/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/ncdu/trunk/files/changelog.CSW 2009-05-10 18:50:35 UTC (rev 4800) @@ -0,0 +1,5 @@ +ncdu (1.5,REV=2009.05.10) + + * Updated to 1.5 (Closes: #3565). + + -- Sebastian Kayser Sun, 10 May 2009 18:42:27 +0200 Added: csw/mgar/pkg/ncdu/trunk/files/gar-base.diff =================================================================== --- csw/mgar/pkg/ncdu/trunk/files/gar-base.diff (rev 0) +++ csw/mgar/pkg/ncdu/trunk/files/gar-base.diff 2009-05-10 18:50:35 UTC (rev 4800) @@ -0,0 +1,43 @@ +diff --speed-large-files --minimal -Nru ncdu-1.5.orig/src/delete.c ncdu-1.5/src/delete.c +--- ncdu-1.5.orig/src/delete.c 2009-05-02 10:42:17.000000000 +0200 ++++ ncdu-1.5/src/delete.c 2009-05-10 18:57:49.873038400 +0200 +@@ -213,8 +213,10 @@ + /* confirm */ + seloption = 1; + while(state == DS_CONFIRM && !noconfirm) +- if(input_handle(0)) +- return browse_init(root); ++ if(input_handle(0)) { ++ browse_init(root); ++ return; ++ } + + /* chdir */ + if(path_chdir(getpath(root->parent)) < 0) { +diff -ur ncdu-1.5.orig/configure.in ncdu-1.5/configure.in +--- ncdu-1.5.orig/configure.in 2009-05-10 19:38:59.182413272 +0200 ++++ ncdu-1.5/configure.in 2009-05-02 13:09:18.000000000 +0200 +@@ -27,6 +27,9 @@ + [getcwd gettimeofday memset fnmatch chdir rmdir unlink lstat getcwd],[], + AC_MSG_ERROR([required function missing])) + ++# dirfd is a glibc extension and available on Solaris ++AC_CHECK_FUNCS([dirfd]) ++ + AC_OUTPUT([Makefile src/Makefile doc/Makefile]) + + echo "" +diff -ur ncdu-1.5.orig/src/path.h ncdu-1.5/src/path.h +--- ncdu-1.5.orig/src/path.h 2009-05-10 19:38:59.209594590 +0200 ++++ ncdu-1.5/src/path.h 2009-05-02 10:42:17.000000000 +0200 +@@ -44,4 +44,10 @@ + /* works exactly the same as chdir() */ + extern int path_chdir(const char *); + ++#ifndef HAVE_DIRFD ++#if defined(__sun__) || defined(__sun) ++#define dirfd(a) ((a)->dd_fd) ++#endif ++#endif ++ + #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun May 10 21:15:07 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 19:15:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[4801] csw/mgar/pkg/mbuffer/trunk Message-ID: Revision: 4801 http://gar.svn.sourceforge.net/gar/?rev=4801&view=rev Author: skayser Date: 2009-05-10 19:15:07 +0000 (Sun, 10 May 2009) Log Message: ----------- mbuffer: added changelog Modified Paths: -------------- csw/mgar/pkg/mbuffer/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/mbuffer/trunk/files/changelog.CSW Modified: csw/mgar/pkg/mbuffer/trunk/Makefile =================================================================== --- csw/mgar/pkg/mbuffer/trunk/Makefile 2009-05-10 18:50:35 UTC (rev 4800) +++ csw/mgar/pkg/mbuffer/trunk/Makefile 2009-05-10 19:15:07 UTC (rev 4801) @@ -71,5 +71,6 @@ post-install-modulated: DOCDEST = $(DESTDIR)$(docdir)/$(GARNAME) post-install-modulated: @ginstall -d $(DOCDEST) - @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) + @$(foreach DOC,$(DOCS),cp $(WORKSRC)/$(DOC) $(DOCDEST);) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) @$(MAKECOOKIE) Added: csw/mgar/pkg/mbuffer/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/mbuffer/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/mbuffer/trunk/files/changelog.CSW 2009-05-10 19:15:07 UTC (rev 4801) @@ -0,0 +1,5 @@ +mbuffer (20090215,REV=2009.05.10) + + * Recompiled with updated GAR build system (Closes: #3561). + + -- Sebastian Kayser Sun, 10 May 2009 21:07:00 +0200 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 May 11 00:30:37 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 10 May 2009 22:30:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4802] csw/mgar/pkg Message-ID: Revision: 4802 http://gar.svn.sourceforge.net/gar/?rev=4802&view=rev Author: skayser Date: 2009-05-10 22:30:36 +0000 (Sun, 10 May 2009) Log Message: ----------- stunnel: initial commit Added Paths: ----------- csw/mgar/pkg/stunnel/ csw/mgar/pkg/stunnel/branches/ csw/mgar/pkg/stunnel/tags/ csw/mgar/pkg/stunnel/trunk/ csw/mgar/pkg/stunnel/trunk/Makefile csw/mgar/pkg/stunnel/trunk/checksums csw/mgar/pkg/stunnel/trunk/files/ csw/mgar/pkg/stunnel/trunk/files/changelog.CSW csw/mgar/pkg/stunnel/trunk/files/postinstall Property changes on: csw/mgar/pkg/stunnel/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/stunnel/trunk/Makefile =================================================================== --- csw/mgar/pkg/stunnel/trunk/Makefile (rev 0) +++ csw/mgar/pkg/stunnel/trunk/Makefile 2009-05-10 22:30:36 UTC (rev 4802) @@ -0,0 +1,53 @@ +# TODO +# - Remove excessive files from $(docdir) +# - Adjust paths in $(sysconfdir)/stunnel.conf-sample +# - Verify /var/opt/csw/lib/stunnel/dev/zero creation in postinstall +GARNAME = stunnel +GARVERSION = 4.27 +CATEGORIES = net + +DESCRIPTION = Universal SSL Wrapper +define BLURB + Stunnel is a program that allows you to encrypt arbitrary TCP connections + inside SSL (Secure Sockets Layer) available on both Unix and Windows. Stunnel + can allow you to secure non-SSL aware daemons and protocols (like POP, IMAP, + LDAP, etc) by having Stunnel provide the encryption, requiring no changes to + the daemon's code. +endef + +MASTER_SITES = http://www.stunnel.org/download/stunnel/src/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += postinstall + +SPKG_SOURCEURL = http://www.stunnel.org + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-ssl=/opt/csw +#CONFIGURE_ARGS += --with-cert-dir=/opt/csw/ssl/certs/ +CONFIGURE_ARGS += --enable-ipv6 +CONFIGURE_ARGS += --enable-dh +CONFIGURE_ARGS += --localstatedir=/var/opt/csw + +# No test target available +TEST_SCRIPTS = + +include gar/category.mk + +# 1) Suppress prompts for openssl sample cert generation (-batch) +# 2) Disable creation of /dev/zero (needs root privs, moved to postinstall) +pre-build-modulated: + perl -pi -e '\ + s|/bin/openssl|/bin/openssl -batch|; \ + s|^|#| if (m|/dev/zero|);' \ + $(WORKSRC)/tools/Makefile + @$(MAKECOOKIE) + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(WORKSRC)/BUGS $(WORKSRC)/ChangeLog $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/stunnel/trunk/checksums =================================================================== --- csw/mgar/pkg/stunnel/trunk/checksums (rev 0) +++ csw/mgar/pkg/stunnel/trunk/checksums 2009-05-10 22:30:36 UTC (rev 4802) @@ -0,0 +1 @@ +3c655d815576f50046a1c28744b88681 download/stunnel-4.27.tar.gz Added: csw/mgar/pkg/stunnel/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/stunnel/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/stunnel/trunk/files/changelog.CSW 2009-05-10 22:30:36 UTC (rev 4802) @@ -0,0 +1,6 @@ +stunnel (4,27,REV=2009.05.10) + + * Package adopted and updated to 4.27. + * Built with --localstatedir=/var/opt/csw. (Closes: #3029) + + -- Sebastian Kayser Sun, 10 May 2009 22:33:14 +0200 Added: csw/mgar/pkg/stunnel/trunk/files/postinstall =================================================================== --- csw/mgar/pkg/stunnel/trunk/files/postinstall (rev 0) +++ csw/mgar/pkg/stunnel/trunk/files/postinstall 2009-05-10 22:30:36 UTC (rev 4802) @@ -0,0 +1,10 @@ +#!/bin/bash +# +# Create required /dev/zero in chroot directory +# +# Taken from stunnel Makefile. mknod can only be run as root and thus needs +# to be run from postinstall (packaging is done as non-root user). +# +mkdir -p /var/opt/csw/lib/stunnel/dev +mknod /var/opt/csw/lib/stunnel/dev/zero c 13 12 +chmod 666 /var/opt/csw/lib/stunnel/dev/zero 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 May 11 02:42:19 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 11 May 2009 00:42:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[4803] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 4803 http://gar.svn.sourceforge.net/gar/?rev=4803&view=rev Author: bdwalton Date: 2009-05-11 00:42:19 +0000 (Mon, 11 May 2009) Log Message: ----------- 1.6.3 released, drop rc from version; all systems go sparc and x86 Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-05-10 22:30:36 UTC (rev 4802) +++ csw/mgar/pkg/git/trunk/Makefile 2009-05-11 00:42:19 UTC (rev 4803) @@ -1,6 +1,6 @@ GARNAME = git GARVERSION = 1.6.3 -PATCHLEVEL = rc3 +#xPATCHLEVEL = rc3 CATEGORIES = devel # disable tests until next version bump (at the top so it stands out) 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 May 11 02:56:47 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 11 May 2009 00:56:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4804] csw/mgar/pkg/mysql5/trunk/Makefile Message-ID: Revision: 4804 http://gar.svn.sourceforge.net/gar/?rev=4804&view=rev Author: bdwalton Date: 2009-05-11 00:56:47 +0000 (Mon, 11 May 2009) Log Message: ----------- - Switch to sun compiler after determining correct flags. - Enable 64-bit build. - all tests pass in 32-bit. 64-bit still has issues. Modified Paths: -------------- csw/mgar/pkg/mysql5/trunk/Makefile Modified: csw/mgar/pkg/mysql5/trunk/Makefile =================================================================== --- csw/mgar/pkg/mysql5/trunk/Makefile 2009-05-11 00:42:19 UTC (rev 4803) +++ csw/mgar/pkg/mysql5/trunk/Makefile 2009-05-11 00:56:47 UTC (rev 4804) @@ -2,8 +2,6 @@ GARVERSION = 5.1.33 CATEGORIES = server -GARCOMPILER = GCC4 - DISTNAME = mysql-$(GARVERSION) DESCRIPTION = Multithreaded SQL database @@ -34,6 +32,9 @@ # because we alter the prefix. this gets us proper linking as well as # LD_OPTIONS (RPATH) EXTRA_LIB = /opt/csw/lib +EXTRA_INC = /opt/csw/include +EXTRA_CFLAGS = -mt -D_POSIX_C_SOURCE=199506L -D__EXTENSIONS__ +EXTRA_CXXFLAGS = -mt -D_POSIX_C_SOURCE=199506L -D__EXTENSIONS__ # Set ./configure options CONFIGURE_ARGS = $(DIRPATHS) @@ -48,7 +49,9 @@ CONFIGURE_ARGS += --with-ssl=/opt/csw CONFIGURE_ARGS += --with-plugins=max-no-ndb +#TEST_ARGS = test-force + # Enable 64 bits build -# BUILD64 = 1 +BUILD64 = 1 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Mon May 11 05:05:39 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 11 May 2009 03:05:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[4805] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4805 http://gar.svn.sourceforge.net/gar/?rev=4805&view=rev Author: valholla Date: 2009-05-11 03:05:39 +0000 (Mon, 11 May 2009) Log Message: ----------- add legacy dir Added Paths: ----------- csw/mgar/pkg/php4/trunk/legacy/ Property Changed: ---------------- csw/mgar/pkg/php4/trunk/ Property changes on: csw/mgar/pkg/php4/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.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 valholla at users.sourceforge.net Mon May 11 05:07:03 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 11 May 2009 03:07:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4806] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4806 http://gar.svn.sourceforge.net/gar/?rev=4806&view=rev Author: valholla Date: 2009-05-11 03:07:02 +0000 (Mon, 11 May 2009) Log Message: ----------- move old recipe to legacy Added Paths: ----------- csw/mgar/pkg/php4/trunk/legacy/Makefile csw/mgar/pkg/php4/trunk/legacy/files/ Removed Paths: ------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/files/ Deleted: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-11 03:05:39 UTC (rev 4805) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-11 03:07:02 UTC (rev 4806) @@ -1,55 +0,0 @@ -GARNAME = php -GARVERSION = 4.4.2 -CATEGORIES = lang - -DESCRIPTION = A high-level scripting language. -define BLURB - PHP is a widely-used Open Source general-purpose scripting language that is - especially suited for Web development and can be embedded into HTML. Its - syntax draws upon C, Java, and Perl, and is easy to learn. PHP runs on many - different platforms and can be used as a standalone executable or as a module - under a variety of Web servers. It has excellent support for databases, XML, - LDAP, IMAP, Java, various Internet protocols, and general data manipulation, - and is extensible via its powerful API. It is actively developed and supported - by a talented and energetic international team. Numerous Open Source and - commercial PHP-based application packages are available. -endef - -#DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 - -DEPENDS += server/apache2 server/mysql4 - -# Some tests fail (3 of 300) -TEST_SCRIPTS = - -# Configuration -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-apxs2=$(prefix)/apache2/sbin/apxs -CONFIGURE_ARGS += --with-config-file-path=$(prefix)/apache2/etc -CONFIGURE_ARGS += --with-mysql=$(prefix)/mysql4 -CONFIGURE_ARGS += --with-db4=$(prefix)/bdb4 -CONFIGURE_ARGS += --with-gdbm=$(prefix) -CONFIGURE_ARGS += --with-expat-dir=$(prefix) -CONFIGURE_ARGS += --with-gd=$(prefix) -CONFIGURE_ARGS += --with-jpeg-dir=$(prefix) -CONFIGURE_ARGS += --with-png-dir=$(prefix) -CONFIGURE_ARGS += --with-gmp=$(prefix) -CONFIGURE_ARGS += --with-ncurses=$(prefix) -CONFIGURE_ARGS += --disable-static -CONFIGURE_ARGS += --with-ldap -CONFIGURE_ARGS += --enable-sockets -CONFIGURE_ARGS += --with-zlib -CONFIGURE_ARGS += --with-bz2 -CONFIGURE_ARGS += --enable-dba -CONFIGURE_ARGS += --with-dom -CONFIGURE_ARGS += --with-dom-xslt -CONFIGURE_ARGS += --with-dom-exslt -CONFIGURE_ARGS += --with-xmlrpc -CONFIGURE_ARGS += --enable-gd-native-ttf -CONFIGURE_ARGS += --enable-exif - -include gar/category.mk - -post-install: - @cp -f $(WORKSRC)/php.ini-recommended $(sysconfdir)/php.ini - Copied: csw/mgar/pkg/php4/trunk/legacy/Makefile (from rev 4804, csw/mgar/pkg/php4/trunk/Makefile) =================================================================== --- csw/mgar/pkg/php4/trunk/legacy/Makefile (rev 0) +++ csw/mgar/pkg/php4/trunk/legacy/Makefile 2009-05-11 03:07:02 UTC (rev 4806) @@ -0,0 +1,55 @@ +GARNAME = php +GARVERSION = 4.4.2 +CATEGORIES = lang + +DESCRIPTION = A high-level scripting language. +define BLURB + PHP is a widely-used Open Source general-purpose scripting language that is + especially suited for Web development and can be embedded into HTML. Its + syntax draws upon C, Java, and Perl, and is easy to learn. PHP runs on many + different platforms and can be used as a standalone executable or as a module + under a variety of Web servers. It has excellent support for databases, XML, + LDAP, IMAP, Java, various Internet protocols, and general data manipulation, + and is extensible via its powerful API. It is actively developed and supported + by a talented and energetic international team. Numerous Open Source and + commercial PHP-based application packages are available. +endef + +#DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +DEPENDS += server/apache2 server/mysql4 + +# Some tests fail (3 of 300) +TEST_SCRIPTS = + +# Configuration +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-apxs2=$(prefix)/apache2/sbin/apxs +CONFIGURE_ARGS += --with-config-file-path=$(prefix)/apache2/etc +CONFIGURE_ARGS += --with-mysql=$(prefix)/mysql4 +CONFIGURE_ARGS += --with-db4=$(prefix)/bdb4 +CONFIGURE_ARGS += --with-gdbm=$(prefix) +CONFIGURE_ARGS += --with-expat-dir=$(prefix) +CONFIGURE_ARGS += --with-gd=$(prefix) +CONFIGURE_ARGS += --with-jpeg-dir=$(prefix) +CONFIGURE_ARGS += --with-png-dir=$(prefix) +CONFIGURE_ARGS += --with-gmp=$(prefix) +CONFIGURE_ARGS += --with-ncurses=$(prefix) +CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --with-ldap +CONFIGURE_ARGS += --enable-sockets +CONFIGURE_ARGS += --with-zlib +CONFIGURE_ARGS += --with-bz2 +CONFIGURE_ARGS += --enable-dba +CONFIGURE_ARGS += --with-dom +CONFIGURE_ARGS += --with-dom-xslt +CONFIGURE_ARGS += --with-dom-exslt +CONFIGURE_ARGS += --with-xmlrpc +CONFIGURE_ARGS += --enable-gd-native-ttf +CONFIGURE_ARGS += --enable-exif + +include gar/category.mk + +post-install: + @cp -f $(WORKSRC)/php.ini-recommended $(sysconfdir)/php.ini + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Mon May 11 13:46:37 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 11 May 2009 11:46:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4807] csw/mgar/pkg/rrdtool/trunk/Makefile Message-ID: Revision: 4807 http://gar.svn.sourceforge.net/gar/?rev=4807&view=rev Author: idogan23 Date: 2009-05-11 11:46:37 +0000 (Mon, 11 May 2009) Log Message: ----------- rrdtool: small changes to make it work with new pango & cairo Modified Paths: -------------- csw/mgar/pkg/rrdtool/trunk/Makefile Modified: csw/mgar/pkg/rrdtool/trunk/Makefile =================================================================== --- csw/mgar/pkg/rrdtool/trunk/Makefile 2009-05-11 03:07:02 UTC (rev 4806) +++ csw/mgar/pkg/rrdtool/trunk/Makefile 2009-05-11 11:46:37 UTC (rev 4807) @@ -27,6 +27,14 @@ REQUIRED_PKGS += CSWsunmath REQUIRED_PKGS += CSWzlib +EXTRA_INC = $(prefix)/include/cairo +EXTRA_INC += $(prefix)/include/libxml2/libxml +EXTRA_INC += $(prefix)/X11/include + +EXTRA_LIB = $(prefix)/X11/lib + +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-docdir=$(sharedstatedir)/doc/$(GARNAME) CONFIGURE_ARGS += --disable-python This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Mon May 11 13:47:37 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 11 May 2009 11:47:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4808] csw/mgar/pkg/rrdtool/trunk/Makefile Message-ID: Revision: 4808 http://gar.svn.sourceforge.net/gar/?rev=4808&view=rev Author: idogan23 Date: 2009-05-11 11:47:36 +0000 (Mon, 11 May 2009) Log Message: ----------- rrdtool: added dependency to Perl Modified Paths: -------------- csw/mgar/pkg/rrdtool/trunk/Makefile Modified: csw/mgar/pkg/rrdtool/trunk/Makefile =================================================================== --- csw/mgar/pkg/rrdtool/trunk/Makefile 2009-05-11 11:46:37 UTC (rev 4807) +++ csw/mgar/pkg/rrdtool/trunk/Makefile 2009-05-11 11:47:36 UTC (rev 4808) @@ -26,6 +26,7 @@ REQUIRED_PKGS += CSWpng REQUIRED_PKGS += CSWsunmath REQUIRED_PKGS += CSWzlib +REQUIRED_PKGS += CSWperl EXTRA_INC = $(prefix)/include/cairo EXTRA_INC += $(prefix)/include/libxml2/libxml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Mon May 11 13:58:07 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 11 May 2009 11:58:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[4809] csw/mgar/pkg/rrdtool/trunk Message-ID: Revision: 4809 http://gar.svn.sourceforge.net/gar/?rev=4809&view=rev Author: idogan23 Date: 2009-05-11 11:58:07 +0000 (Mon, 11 May 2009) Log Message: ----------- rrdtool: changed libtool handling Modified Paths: -------------- csw/mgar/pkg/rrdtool/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/rrdtool/trunk/files/fixme.sh Modified: csw/mgar/pkg/rrdtool/trunk/Makefile =================================================================== --- csw/mgar/pkg/rrdtool/trunk/Makefile 2009-05-11 11:47:36 UTC (rev 4808) +++ csw/mgar/pkg/rrdtool/trunk/Makefile 2009-05-11 11:58:07 UTC (rev 4809) @@ -12,7 +12,6 @@ MASTER_SITES = http://oss.oetiker.ch/$(GARNAME)/pub/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWrrdtool) -DISTFILES += fixme.sh # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -50,10 +49,7 @@ #BUILD64 = 1 -post-configure-$(MODULATION): - @echo " ==> Fixing Libtool" - @$(DOWNLOADDIR)/fixme.sh $(WORKSRC) - $(DONADA) +STRIP_LIBTOOL = 1 # ugly fix to fix doc path post-install-modulated: Deleted: csw/mgar/pkg/rrdtool/trunk/files/fixme.sh =================================================================== --- csw/mgar/pkg/rrdtool/trunk/files/fixme.sh 2009-05-11 11:47:36 UTC (rev 4808) +++ csw/mgar/pkg/rrdtool/trunk/files/fixme.sh 2009-05-11 11:58:07 UTC (rev 4809) @@ -1,52 +0,0 @@ -#!/bin/bash -#################################################### -# -# fixme.sh -# Intended to remove the use of libtool's -# pseudo-libraries for opencsw builds. -# -# Author: Mike Watters mwatters_at_opencsw.org -# Initial Version: 0.1 -# -#################################################### - -umask 0022 -PATH=/opt/csw/bin - -if [ $# -ne 1 ]; then - gecho "USAGE: $(basename $0) WORKSRC" - exit 1 -fi -BASEPATH=$1 - -## Fix Makefiles -for mk in $(gfind ${BASEPATH} -name Makefile -print); do - LT_FILES=$(ggrep '/opt/csw.*/lib/.*\.la' ${mk} | \ - gsed "s/^.*\(\/opt\/csw.*\/lib\/.*\.la\).*$/\1/") - - for file in ${LT_FILES}; do - LIB_NAME=$(ggrep 'dlname=' ${file} | \ - gsed -e "s/.*'\(.*\)'/\1/" \ - -e "s/^lib//" \ - -e "s/\.so.*$//") - fixpath=$(gecho $file |gsed 's/\//\\\//g') - gsed "s/${fixpath}/-l${LIB_NAME}/g" ${mk} >Makefile.new - gmv Makefile.new ${mk} - gchmod +x ${mk} - done -done - -## Fix libtool Script -for lt in $(gfind ${BASEPATH} -name libtool -print); do - gsed "/for search_ext in .*\.la/s/\.la//" ${lt} >${lt}.new - gmv ${lt}.new ${lt} - gchmod +x ${lt} -done - -LTMAIN=$(gfind ${BASEPATH} -name ltmain.sh -print) -if [ -f ${LTMAIN} ]; then - gsed "/for search_ext in .*\.la/s/\.la//" ${LTMAIN} >${LTMAIN}.new - gmv ${LTMAIN}.new ${LTMAIN} - gchmod +x ${LTMAIN} -fi - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Mon May 11 15:49:50 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Mon, 11 May 2009 13:49:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[4810] csw/mgar/pkg/pango/trunk/files/CSWpango.postinstall Message-ID: Revision: 4810 http://gar.svn.sourceforge.net/gar/?rev=4810&view=rev Author: wbonnet Date: 2009-05-11 13:49:50 +0000 (Mon, 11 May 2009) Log Message: ----------- Add postinstall script Added Paths: ----------- csw/mgar/pkg/pango/trunk/files/CSWpango.postinstall Added: csw/mgar/pkg/pango/trunk/files/CSWpango.postinstall =================================================================== --- csw/mgar/pkg/pango/trunk/files/CSWpango.postinstall (rev 0) +++ csw/mgar/pkg/pango/trunk/files/CSWpango.postinstall 2009-05-11 13:49:50 UTC (rev 4810) @@ -0,0 +1,6 @@ +#!/bin/sh +# + +/opt/csw/bin/pango-querymodules > /opt/csw/etc/pango/pango.modules + +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Mon May 11 22:43:21 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Mon, 11 May 2009 20:43:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[4811] csw/mgar/pkg/firefox/trunk/Makefile Message-ID: Revision: 4811 http://gar.svn.sourceforge.net/gar/?rev=4811&view=rev Author: wbonnet Date: 2009-05-11 20:43:21 +0000 (Mon, 11 May 2009) Log Message: ----------- Update Makefile for 2.0.0.20 Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/Makefile Modified: csw/mgar/pkg/firefox/trunk/Makefile =================================================================== --- csw/mgar/pkg/firefox/trunk/Makefile 2009-05-11 13:49:50 UTC (rev 4810) +++ csw/mgar/pkg/firefox/trunk/Makefile 2009-05-11 20:43:21 UTC (rev 4811) @@ -12,8 +12,9 @@ DISTFILES += $(call admfiles,CSWfirefox, postinstall postremove ) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = (\d+(?:\.\d+)*) MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/$(GARVERSION)/source/ +UPSTREAM_MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/ PERL="/opt/csw/bin/perl" CFLAGS=-xlibmil This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Mon May 11 23:01:44 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Mon, 11 May 2009 21:01:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[4812] csw/mgar/pkg/firefox/trunk/checksums Message-ID: Revision: 4812 http://gar.svn.sourceforge.net/gar/?rev=4812&view=rev Author: wbonnet Date: 2009-05-11 21:01:44 +0000 (Mon, 11 May 2009) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/checksums Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-05-11 20:43:21 UTC (rev 4811) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-05-11 21:01:44 UTC (rev 4812) @@ -1,6 +1,5 @@ -f3718fefd01c8edc007ec0b416a8a7b8 download/firefox-2.0.0.20-source.tar.bz2 35b08b743fae892fc69aed10cdb3a7cf download/CSWfirefox.gspec -e6a5bb96973bba048d61f64c14a6bbc4 download/CSWfirefox.depend f9c7fb69080051172bd7357370731ba3 download/CSWfirefox.postinstall 6ede39c29b3672fb1fc1d8fe397a7863 download/CSWfirefox.postremove ffec5571cbae2a9fae89ba6a3d3f81c5 download/autoconf.mk.in.diff +f3718fefd01c8edc007ec0b416a8a7b8 download/firefox-2.0.0.20-source.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From hson at users.sourceforge.net Tue May 12 00:28:26 2009 From: hson at users.sourceforge.net (hson at users.sourceforge.net) Date: Mon, 11 May 2009 22:28:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[4813] csw/mgar/pkg/gengetopt/trunk Message-ID: Revision: 4813 http://gar.svn.sourceforge.net/gar/?rev=4813&view=rev Author: hson Date: 2009-05-11 22:28:26 +0000 (Mon, 11 May 2009) Log Message: ----------- gengetopt: Update to 2.22.1 Modified Paths: -------------- csw/mgar/pkg/gengetopt/trunk/Makefile csw/mgar/pkg/gengetopt/trunk/checksums Modified: csw/mgar/pkg/gengetopt/trunk/Makefile =================================================================== --- csw/mgar/pkg/gengetopt/trunk/Makefile 2009-05-11 21:01:44 UTC (rev 4812) +++ csw/mgar/pkg/gengetopt/trunk/Makefile 2009-05-11 22:28:26 UTC (rev 4813) @@ -1,5 +1,5 @@ GARNAME = gengetopt -GARVERSION = 2.22 +GARVERSION = 2.22.1 CATEGORIES = utils DESCRIPTION = parses the command line options Modified: csw/mgar/pkg/gengetopt/trunk/checksums =================================================================== --- csw/mgar/pkg/gengetopt/trunk/checksums 2009-05-11 21:01:44 UTC (rev 4812) +++ csw/mgar/pkg/gengetopt/trunk/checksums 2009-05-11 22:28:26 UTC (rev 4813) @@ -1 +1 @@ -346f35c9e0607733b26dcbba9fbbfa8c download/gengetopt-2.22.tar.gz +3877433c69902a26887ad65c1a2d60eb download/gengetopt-2.22.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From hson at users.sourceforge.net Tue May 12 03:10:09 2009 From: hson at users.sourceforge.net (hson at users.sourceforge.net) Date: Tue, 12 May 2009 01:10:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4814] csw/mgar/pkg/exiftool/trunk Message-ID: Revision: 4814 http://gar.svn.sourceforge.net/gar/?rev=4814&view=rev Author: hson Date: 2009-05-12 01:10:09 +0000 (Tue, 12 May 2009) Log Message: ----------- exiftool: Update to 7.75 Modified Paths: -------------- csw/mgar/pkg/exiftool/trunk/Makefile csw/mgar/pkg/exiftool/trunk/checksums Modified: csw/mgar/pkg/exiftool/trunk/Makefile =================================================================== --- csw/mgar/pkg/exiftool/trunk/Makefile 2009-05-11 22:28:26 UTC (rev 4813) +++ csw/mgar/pkg/exiftool/trunk/Makefile 2009-05-12 01:10:09 UTC (rev 4814) @@ -1,5 +1,5 @@ GARNAME = exiftool -GARVERSION = 7.73 +GARVERSION = 7.75 CATEGORIES = cpan DESCRIPTION = Read, Write and Edit Image File Meta Information Modified: csw/mgar/pkg/exiftool/trunk/checksums =================================================================== --- csw/mgar/pkg/exiftool/trunk/checksums 2009-05-11 22:28:26 UTC (rev 4813) +++ csw/mgar/pkg/exiftool/trunk/checksums 2009-05-12 01:10:09 UTC (rev 4814) @@ -1,2 +1,2 @@ -427d0107f6b40b0110757aaefd7cd8c8 download/Image-ExifTool-7.73.tar.gz 13f9aae615a5de5e3c145b374950a75c download/CSWexiftool.gspec +19c85c2619bbf88a1f45bec734a29988 download/Image-ExifTool-7.75.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From hson at users.sourceforge.net Tue May 12 03:28:15 2009 From: hson at users.sourceforge.net (hson at users.sourceforge.net) Date: Tue, 12 May 2009 01:28:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[4815] csw/mgar/pkg/librsvg/trunk Message-ID: Revision: 4815 http://gar.svn.sourceforge.net/gar/?rev=4815&view=rev Author: hson Date: 2009-05-12 01:28:12 +0000 (Tue, 12 May 2009) Log Message: ----------- librsvg: Update to 2.26 Modified Paths: -------------- csw/mgar/pkg/librsvg/trunk/Makefile csw/mgar/pkg/librsvg/trunk/checksums Modified: csw/mgar/pkg/librsvg/trunk/Makefile =================================================================== --- csw/mgar/pkg/librsvg/trunk/Makefile 2009-05-12 01:10:09 UTC (rev 4814) +++ csw/mgar/pkg/librsvg/trunk/Makefile 2009-05-12 01:28:12 UTC (rev 4815) @@ -1,6 +1,6 @@ GARNAME = librsvg -GARVERSION = 2.22 -GARSUBREV = 3 +GARVERSION = 2.26 +GARSUBREV = 0 CATEGORIES = lib DESCRIPTION = Scalable Vector Graphics library @@ -43,18 +43,17 @@ # gtkdoc-rebase doesn't exist PATCHFILES += doc_makefile.patch +LIBS=-lm +EXTRA_COMMON_EXPORTS = LIBS CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-shared=yes --enable-static=no +STRIP_LIBTOOL=1 + TEST_TARGET = check include gar/category.mk -post-configure-modulated: - @(echo "~~~ Fixing Libtool ~~~") - @$(FILEDIR)/fixme.sh $(WORKSRC) - $(DONADA) - post-install-isa-sparcv8: @cp $(FILEDIR)/librsvg-2.so.2.15.90.s $(INSTALLISADIR)/opt/csw/lib/librsvg-2.so.2.15.90 Modified: csw/mgar/pkg/librsvg/trunk/checksums =================================================================== --- csw/mgar/pkg/librsvg/trunk/checksums 2009-05-12 01:10:09 UTC (rev 4814) +++ csw/mgar/pkg/librsvg/trunk/checksums 2009-05-12 01:28:12 UTC (rev 4815) @@ -1,5 +1,5 @@ -c4ec4fdb2b1842e221ca39127e85682d download/librsvg-2.22.3.tar.bz2 +5eddcc7be3ee182c94ee21691720c6aa download/doc_makefile.patch +65dbd726a514fe8b797d26254b8efc1e download/librsvg-2.26.0.tar.bz2 5b0c0387946c3b7ca7feb913de436936 download/pdiff.patch 8a26f6d0d0cf1cfce1a1e0365c6624ce download/perceptualdiff.patch 803a5d10e3e9c9a561b397aade043024 download/test_makefiles.patch -5eddcc7be3ee182c94ee21691720c6aa download/doc_makefile.patch This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From hson at users.sourceforge.net Tue May 12 06:14:16 2009 From: hson at users.sourceforge.net (hson at users.sourceforge.net) Date: Tue, 12 May 2009 04:14:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[4816] csw/mgar/pkg/ImageMagick/trunk Message-ID: Revision: 4816 http://gar.svn.sourceforge.net/gar/?rev=4816&view=rev Author: hson Date: 2009-05-12 04:14:16 +0000 (Tue, 12 May 2009) Log Message: ----------- imagemagick: Update to 6.5.2-4, disable us of openmp Modified Paths: -------------- csw/mgar/pkg/ImageMagick/trunk/Makefile csw/mgar/pkg/ImageMagick/trunk/checksums Modified: csw/mgar/pkg/ImageMagick/trunk/Makefile =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/Makefile 2009-05-12 01:28:12 UTC (rev 4815) +++ csw/mgar/pkg/ImageMagick/trunk/Makefile 2009-05-12 04:14:16 UTC (rev 4816) @@ -1,6 +1,6 @@ GARNAME = imagemagick -GARVERSION = 6.5.1 -GARSUBREV = 1 +GARVERSION = 6.5.2 +GARSUBREV = 4 CATEGORIES = lib DESCRIPTION = A comprehensive package supporting automated and interative manipulation of images @@ -37,10 +37,11 @@ CONFIGURE_ARGS += --with-dps=yes --with-gslib=yes CONFIGURE_ARGS += --x-includes=/usr/openwin/include CONFIGURE_ARGS += --x-libraries=/usr/openwin/lib +CONFIGURE_ARGS += --disable-openmp PATCHFILES += Makefile.patch # Temporary patch until upstream make a more permenent fix -PATCHFILES += djvu.c.diff +#PATCHFILES += djvu.c.diff # Test has to be run *after* install TEST_SCRIPTS = @@ -49,13 +50,10 @@ MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/lib.*\.la EXTRA_MERGE_EXCLUDE_FILES = .*/perllocal.pod +STRIP_LIBTOOL=1 + include gar/category.mk -post-configure-$(MODULATION): - @(echo "~~~ Fixing Libtool ~~~") - @$(FILEDIR)/fixme.sh $(WORKSRC) - @$(MAKECOOKIE) - post-install-isa-sparcv8: @cp $(FILEDIR)/libMagick.so.10.0.4.s $(INSTALLISADIR)$(libdir)/libMagick.so.10.0.4 @cp $(FILEDIR)/libWand.so.10.0.4.s $(INSTALLISADIR)$(libdir)/libWand.so.10.0.4 Modified: csw/mgar/pkg/ImageMagick/trunk/checksums =================================================================== --- csw/mgar/pkg/ImageMagick/trunk/checksums 2009-05-12 01:28:12 UTC (rev 4815) +++ csw/mgar/pkg/ImageMagick/trunk/checksums 2009-05-12 04:14:16 UTC (rev 4816) @@ -1,3 +1,2 @@ -2e5f775ac599ff2548395706fcc7eba0 download/ImageMagick-6.5.1-1.tar.bz2 +ddaa6abdb4a323558382046946beece2 download/ImageMagick-6.5.2-4.tar.bz2 6bd361fe352c7d497d60d8d2cbe7cfd4 download/Makefile.patch -de358462d89bfceb050888cf6b564257 download/djvu.c.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 May 12 10:59:22 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 12 May 2009 08:59:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[4817] csw/mgar/pkg/patch/trunk Message-ID: Revision: 4817 http://gar.svn.sourceforge.net/gar/?rev=4817&view=rev Author: dmichelsen Date: 2009-05-12 08:59:22 +0000 (Tue, 12 May 2009) Log Message: ----------- patch: Update to 2.5.9 Modified Paths: -------------- csw/mgar/pkg/patch/trunk/Makefile csw/mgar/pkg/patch/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/patch/trunk/ Property changes on: csw/mgar/pkg/patch/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/patch/trunk/Makefile =================================================================== --- csw/mgar/pkg/patch/trunk/Makefile 2009-05-12 04:14:16 UTC (rev 4816) +++ csw/mgar/pkg/patch/trunk/Makefile 2009-05-12 08:59:22 UTC (rev 4817) @@ -1,19 +1,22 @@ GARNAME = patch -GARVERSION = 2.5.4 +GARVERSION = 2.5.9 CATEGORIES = utils DESCRIPTION = GNU patch utility define BLURB - The GNU patch utility. + The GNU patch utility. endef MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +PACKAGES = CSWgpatch + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --program-prefix=g INSTALL_OVERRIDE_DIRS = prefix exec_prefix bindir mandir Modified: csw/mgar/pkg/patch/trunk/checksums =================================================================== --- csw/mgar/pkg/patch/trunk/checksums 2009-05-12 04:14:16 UTC (rev 4816) +++ csw/mgar/pkg/patch/trunk/checksums 2009-05-12 08:59:22 UTC (rev 4817) @@ -1 +1 @@ -ee5ae84d115f051d87fcaaef3b4ae782 download/patch-2.5.4.tar.gz +dacfb618082f8d3a2194601193cf8716 download/patch-2.5.9.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue May 12 12:34:38 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 12 May 2009 10:34:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[4818] csw/mgar/pkg/unbound/trunk/Makefile Message-ID: Revision: 4818 http://gar.svn.sourceforge.net/gar/?rev=4818&view=rev Author: idogan23 Date: 2009-05-12 10:34:38 +0000 (Tue, 12 May 2009) Log Message: ----------- unbound: fixed path for the cswusergroup file Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-05-12 08:59:22 UTC (rev 4817) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-05-12 10:34:38 UTC (rev 4818) @@ -18,7 +18,7 @@ GARCOMPILER = GCC4 SPKG_CLASSES = none cswusergroup cswcpsampleconf cswinitsmf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswunbound$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/unbound\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/unbound\/unbound.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswunbound$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWunbound\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/unbound\/unbound.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -38,7 +38,8 @@ post-install-modulated: @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @ginstall -m 755 $(FILEDIR)/cswunbound $(DESTDIR)/etc/opt/csw/init.d/cswunbound - @ginstall -m 755 $(FILEDIR)/cswusergroup $(DESTDIR)/etc/opt/csw/unbound/cswusergroup + @ginstall -m 755 $(DESTDIR)/etc/opt/csw/pkg/CSWunbound + @ginstall -m 755 $(FILEDIR)/cswusergroup $(DESTDIR)/etc/opt/csw/pkg/CSWunbound/cswusergroup @mv $(DESTDIR)/etc/opt/csw/unbound/unbound.conf $(DESTDIR)/etc/opt/csw/unbound/unbound.conf.CSW @chmod 444 $(DESTDIR)/etc/opt/csw/unbound/unbound.conf.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue May 12 14:27:07 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 12 May 2009 12:27:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[4819] csw/mgar/pkg/transmission/trunk Message-ID: Revision: 4819 http://gar.svn.sourceforge.net/gar/?rev=4819&view=rev Author: idogan23 Date: 2009-05-12 12:27:07 +0000 (Tue, 12 May 2009) Log Message: ----------- transmission: update to 1.60 Modified Paths: -------------- csw/mgar/pkg/transmission/trunk/Makefile csw/mgar/pkg/transmission/trunk/checksums Modified: csw/mgar/pkg/transmission/trunk/Makefile =================================================================== --- csw/mgar/pkg/transmission/trunk/Makefile 2009-05-12 10:34:38 UTC (rev 4818) +++ csw/mgar/pkg/transmission/trunk/Makefile 2009-05-12 12:27:07 UTC (rev 4819) @@ -1,5 +1,5 @@ GARNAME = transmission -GARVERSION = 1.42 +GARVERSION = 1.60 CATEGORIES = net DESCRIPTION = Fast, easy, and free multi-platform BitTorrent client @@ -14,8 +14,11 @@ UFILES_REGEX = -(\d+(?:\.\d+)*).tar.bz2 GARCOMPILER = GNU +EXTRA_CFLAGS = -DNO_SYS_QUEUE_H CONFIGURE_ARGS = $(DIRPATHS) +TEST_TARGET = check + include gar/category.mk PATH := /opt/csw/gnu:$(PATH) Modified: csw/mgar/pkg/transmission/trunk/checksums =================================================================== --- csw/mgar/pkg/transmission/trunk/checksums 2009-05-12 10:34:38 UTC (rev 4818) +++ csw/mgar/pkg/transmission/trunk/checksums 2009-05-12 12:27:07 UTC (rev 4819) @@ -1,2 +1,2 @@ -c083bdcb01426466e80ee339bccd9351 download/transmission-1.42.tar.bz2 0b6395df62da35201f8663ceea204f51 download/CSWtransmission.gspec +8b30cf189240f0c50ccd11c618a6906a download/transmission-1.60.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue May 12 14:52:01 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 12 May 2009 12:52:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[4820] csw/mgar/pkg Message-ID: Revision: 4820 http://gar.svn.sourceforge.net/gar/?rev=4820&view=rev Author: idogan23 Date: 2009-05-12 12:52:01 +0000 (Tue, 12 May 2009) Log Message: ----------- ldns: initial commit Added Paths: ----------- csw/mgar/pkg/ldns/ csw/mgar/pkg/ldns/branches/ csw/mgar/pkg/ldns/tags/ csw/mgar/pkg/ldns/trunk/ csw/mgar/pkg/ldns/trunk/Makefile csw/mgar/pkg/ldns/trunk/checksums csw/mgar/pkg/ldns/trunk/files/ csw/mgar/pkg/ldns/trunk/files/doxyparse.diff Property changes on: csw/mgar/pkg/ldns/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/ldns/trunk/Makefile =================================================================== --- csw/mgar/pkg/ldns/trunk/Makefile (rev 0) +++ csw/mgar/pkg/ldns/trunk/Makefile 2009-05-12 12:52:01 UTC (rev 4820) @@ -0,0 +1,38 @@ +GARNAME = ldns +GARVERSION = 1.5.1 +CATEGORIES = lib + +DESCRIPTION = A library for programs conforming to DNS RFCs and drafts +define BLURB + Ldns is a library to simplify implementation of recent DNS RFCs. The goal + is to allow depelopers to easily create software conforming to current RFCs + and experimental software for current Internet drafts. + Because ldns is written in C it should be a lot faster than Perl or other + scripting languages. +endef + +MASTER_SITES = http://www.nlnetlabs.nl/projects/ldns/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += doxyparse.diff + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\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 = http://www.nlnetlabs.nl/downloads/ldns\ + +REGUIRED_PKGS = CSWosslrt +REQUIRED_PKGS += CSWgcc4corert + +PATCHFILES = doxyparse.diff + +GARCOMPILER = GCC4 +BUILD64 = 1 +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-ssl=/opt/csw +CONFIGURE_ARGS += --enable-sha2 + +TEST_TARGET = + +include gar/category.mk Added: csw/mgar/pkg/ldns/trunk/checksums =================================================================== --- csw/mgar/pkg/ldns/trunk/checksums (rev 0) +++ csw/mgar/pkg/ldns/trunk/checksums 2009-05-12 12:52:01 UTC (rev 4820) @@ -0,0 +1,2 @@ +b5516aacfa819947cbfb6d0c34f0c546 download/doxyparse.diff +17f73def98711e1475409d9a8d5d9dcd download/ldns-1.5.1.tar.gz Added: csw/mgar/pkg/ldns/trunk/files/doxyparse.diff =================================================================== --- csw/mgar/pkg/ldns/trunk/files/doxyparse.diff (rev 0) +++ csw/mgar/pkg/ldns/trunk/files/doxyparse.diff 2009-05-12 12:52:01 UTC (rev 4820) @@ -0,0 +1,9 @@ +diff --speed-large-files --minimal -Nru ldns-1.5.1.orig/doc/doxyparse.pl ldns-1.5.1/doc/doxyparse.pl +--- ldns-1.5.1.orig/doc/doxyparse.pl 2008-05-28 10:28:39.000000000 +0200 ++++ ldns-1.5.1/doc/doxyparse.pl 2009-05-12 13:41:55.220351895 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl ++#!/opt/csw/bin/perl + + # Doxygen is usefull for html documentation, but sucks + # in making manual pages. Still tool also parses the .h 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 May 12 16:59:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 12 May 2009 14:59:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[4821] csw/mgar/pkg/bison/trunk Message-ID: Revision: 4821 http://gar.svn.sourceforge.net/gar/?rev=4821&view=rev Author: dmichelsen Date: 2009-05-12 14:59:03 +0000 (Tue, 12 May 2009) Log Message: ----------- bison: Update to 2.4.1 and mGAR v2 Modified Paths: -------------- csw/mgar/pkg/bison/trunk/Makefile csw/mgar/pkg/bison/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/bison/trunk/files/CSWbison.depend csw/mgar/pkg/bison/trunk/files/CSWbison.gspec csw/mgar/pkg/bison/trunk/files/CSWbison.prototype Property Changed: ---------------- csw/mgar/pkg/bison/trunk/ Property changes on: csw/mgar/pkg/bison/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/bison/trunk/Makefile =================================================================== --- csw/mgar/pkg/bison/trunk/Makefile 2009-05-12 12:52:01 UTC (rev 4820) +++ csw/mgar/pkg/bison/trunk/Makefile 2009-05-12 14:59:03 UTC (rev 4821) @@ -1,5 +1,5 @@ GARNAME = bison -GARVERSION = 2.3 +GARVERSION = 2.4.1 CATEGORIES = devel DESCRIPTION = GNU Project parser generator (yacc replacement) @@ -10,19 +10,26 @@ MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWbison,depend prototype) +REQUIRED_PKGS = CSWggettextrt CSWiconv CSWgm4 + +SPKG_SOURCEURL = http://www.gnu.org/software/bison/ + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 TAR_ARGS = +OPT_FLAGS_SOS = -xO1 CONFIGURE_ARGS = $(DIRPATHS) TEST_TARGET = check include gar/category.mk -post-install: +# Must use GNU grep during test +PATH := /opt/csw/gnu:$(PATH) + +post-install-modulated: (cd $(DESTDIR)$(prefix)/bin; \ /usr/ccs/bin/strip bison; \ /usr/ccs/bin/mcs -d bison; \ Modified: csw/mgar/pkg/bison/trunk/checksums =================================================================== --- csw/mgar/pkg/bison/trunk/checksums 2009-05-12 12:52:01 UTC (rev 4820) +++ csw/mgar/pkg/bison/trunk/checksums 2009-05-12 14:59:03 UTC (rev 4821) @@ -1,4 +1 @@ -c18640c6ec31a169d351e3117ecce3ec download/bison-2.3.tar.bz2 -7b97259996330c378c0e6b020fb38094 download/CSWbison.gspec -37e50f9c7a915990ea402e26f48a92eb download/CSWbison.depend -de4fdac31f53df1d06cbc328fbb24b7d download/CSWbison.prototype +84e80a2a192c1a4c02d43fbf2bcc4ca4 download/bison-2.4.1.tar.bz2 Deleted: csw/mgar/pkg/bison/trunk/files/CSWbison.depend =================================================================== --- csw/mgar/pkg/bison/trunk/files/CSWbison.depend 2009-05-12 12:52:01 UTC (rev 4820) +++ csw/mgar/pkg/bison/trunk/files/CSWbison.depend 2009-05-12 14:59:03 UTC (rev 4821) @@ -1,3 +0,0 @@ -P CSWggettext -P CSWiconv -P CSWgm4 Deleted: csw/mgar/pkg/bison/trunk/files/CSWbison.gspec =================================================================== --- csw/mgar/pkg/bison/trunk/files/CSWbison.gspec 2009-05-12 12:52:01 UTC (rev 4820) +++ csw/mgar/pkg/bison/trunk/files/CSWbison.gspec 2009-05-12 14:59:03 UTC (rev 4821) @@ -1,4 +0,0 @@ -%var bitname bison -%var pkgname CSWbison -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{GARDIR}/net/tin/files/LICENSE Deleted: csw/mgar/pkg/bison/trunk/files/CSWbison.prototype =================================================================== --- csw/mgar/pkg/bison/trunk/files/CSWbison.prototype 2009-05-12 12:52:01 UTC (rev 4820) +++ csw/mgar/pkg/bison/trunk/files/CSWbison.prototype 2009-05-12 14:59:03 UTC (rev 4821) @@ -1,118 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/bison 0755 root bin -f none /opt/csw/bin/gyacc 0755 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/liby.a 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/bison-i18n.m4 0644 root bin -d none /opt/csw/share/bison 0755 root bin -f none /opt/csw/share/bison/README 0644 root bin -f none /opt/csw/share/bison/c++.m4 0644 root bin -f none /opt/csw/share/bison/c.m4 0644 root bin -f none /opt/csw/share/bison/glr.c 0644 root bin -f none /opt/csw/share/bison/glr.cc 0644 root bin -f none /opt/csw/share/bison/lalr1.cc 0644 root bin -f none /opt/csw/share/bison/location.cc 0644 root bin -d none /opt/csw/share/bison/m4sugar 0755 root bin -f none /opt/csw/share/bison/m4sugar/m4sugar.m4 0644 root bin -f none /opt/csw/share/bison/yacc.c 0644 root bin -d none /opt/csw/share/info 0755 root bin -f none /opt/csw/share/info/bison.info 0644 root bin -d none /opt/csw/share/locale 0755 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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/da/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/de/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/es/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/et/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/fr/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/ga/LC_MESSAGES/bison.mo 0644 root bin -d none /opt/csw/share/locale/hr 0755 root bin -d none /opt/csw/share/locale/hr/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/hr/LC_MESSAGES/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/hr/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/id/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/it/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/ja/LC_MESSAGES/bison.mo 0644 root bin -d none /opt/csw/share/locale/ms 0755 root bin -d none /opt/csw/share/locale/ms/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/ms/LC_MESSAGES/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/ms/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/nb/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/nl/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/pl/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/pt_BR/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/ro/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/ru/LC_MESSAGES/bison.mo 0644 root bin -d none /opt/csw/share/locale/rw 0755 root bin -d none /opt/csw/share/locale/rw/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/rw/LC_MESSAGES/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/rw/LC_MESSAGES/bison.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/bison-runtime.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/sv/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/tr/LC_MESSAGES/bison.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/bison-runtime.mo 0644 root bin -f none /opt/csw/share/locale/vi/LC_MESSAGES/bison.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/bison-runtime.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/bison.1 0644 root bin -i copyright=CSWbison.copyright -i depend=CSWbison.depend -i pkginfo=CSWbison.pkginfo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue May 12 17:09:18 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 12 May 2009 15:09:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[4822] csw/mgar/pkg/rrdtool/trunk/checksums Message-ID: Revision: 4822 http://gar.svn.sourceforge.net/gar/?rev=4822&view=rev Author: idogan23 Date: 2009-05-12 15:09:18 +0000 (Tue, 12 May 2009) Log Message: ----------- rrdtool: includes a fix for a linker issue on Solaris Modified Paths: -------------- csw/mgar/pkg/rrdtool/trunk/checksums Modified: csw/mgar/pkg/rrdtool/trunk/checksums =================================================================== --- csw/mgar/pkg/rrdtool/trunk/checksums 2009-05-12 14:59:03 UTC (rev 4821) +++ csw/mgar/pkg/rrdtool/trunk/checksums 2009-05-12 15:09:18 UTC (rev 4822) @@ -1,3 +1,2 @@ -e2e0da2a83e58ba2fcefba932a3cbb72 download/rrdtool-1.3.7.tar.gz 48a9b258cf8b4b943dbaf30ea939c315 download/CSWrrdtool.gspec -1c2f1efd982f4f4a1c9d5abd1f8b6501 download/fixme.sh +2d29d1595aecb31838279c17d06da3a4 download/rrdtool-1.3.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue May 12 20:45:00 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 12 May 2009 18:45:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[4823] csw/mgar/pkg/ldns/trunk/Makefile Message-ID: Revision: 4823 http://gar.svn.sourceforge.net/gar/?rev=4823&view=rev Author: idogan23 Date: 2009-05-12 18:45:00 +0000 (Tue, 12 May 2009) Log Message: ----------- ldns: fixed typo Modified Paths: -------------- csw/mgar/pkg/ldns/trunk/Makefile Modified: csw/mgar/pkg/ldns/trunk/Makefile =================================================================== --- csw/mgar/pkg/ldns/trunk/Makefile 2009-05-12 15:09:18 UTC (rev 4822) +++ csw/mgar/pkg/ldns/trunk/Makefile 2009-05-12 18:45:00 UTC (rev 4823) @@ -22,7 +22,7 @@ # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES UPSTREAM_MASTER_SITES = http://www.nlnetlabs.nl/downloads/ldns\ -REGUIRED_PKGS = CSWosslrt +REQUIRED_PKGS = CSWosslrt REQUIRED_PKGS += CSWgcc4corert PATCHFILES = doxyparse.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 May 12 21:44:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 12 May 2009 19:44:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[4824] csw/mgar/pkg/bison/trunk/Makefile Message-ID: Revision: 4824 http://gar.svn.sourceforge.net/gar/?rev=4824&view=rev Author: dmichelsen Date: 2009-05-12 19:44:21 +0000 (Tue, 12 May 2009) Log Message: ----------- bison: Add extra dependencies Modified Paths: -------------- csw/mgar/pkg/bison/trunk/Makefile Modified: csw/mgar/pkg/bison/trunk/Makefile =================================================================== --- csw/mgar/pkg/bison/trunk/Makefile 2009-05-12 18:45:00 UTC (rev 4823) +++ csw/mgar/pkg/bison/trunk/Makefile 2009-05-12 19:44:21 UTC (rev 4824) @@ -11,6 +11,7 @@ MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +PREREQUISITE_PKGS = CSWgnulinks REQUIRED_PKGS = CSWggettextrt CSWiconv CSWgm4 SPKG_SOURCEURL = http://www.gnu.org/software/bison/ @@ -24,6 +25,8 @@ TEST_TARGET = check +EXTRA_MERGE_EXCLUDE_FILES = $(libdir)/charset\.alias + include gar/category.mk # Must use GNU grep during test @@ -34,3 +37,4 @@ /usr/ccs/bin/strip bison; \ /usr/ccs/bin/mcs -d bison; \ mv yacc gyacc) + @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue May 12 22:41:51 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 12 May 2009 20:41:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[4825] csw/mgar/pkg Message-ID: Revision: 4825 http://gar.svn.sourceforge.net/gar/?rev=4825&view=rev Author: idogan23 Date: 2009-05-12 20:41:51 +0000 (Tue, 12 May 2009) Log Message: ----------- drill: initial commit Added Paths: ----------- csw/mgar/pkg/drill/ csw/mgar/pkg/drill/branches/ csw/mgar/pkg/drill/tags/ csw/mgar/pkg/drill/trunk/ csw/mgar/pkg/drill/trunk/Makefile csw/mgar/pkg/drill/trunk/checksums csw/mgar/pkg/drill/trunk/files/ Property changes on: csw/mgar/pkg/drill/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/drill/trunk/Makefile =================================================================== --- csw/mgar/pkg/drill/trunk/Makefile (rev 0) +++ csw/mgar/pkg/drill/trunk/Makefile 2009-05-12 20:41:51 UTC (rev 4825) @@ -0,0 +1,32 @@ +GARNAME = drill +GARVERSION = 1.5.1 +CATEGORIES = utils + +DESCRIPTION = A dig style dnssec aware dns debugging tool +define BLURB + Drill is a tool a la dig from BIND. It was designed with DNSSEC in + mind and should be a useful debugging/query tool for DNSSEC. +endef + +MASTER_SITES = http://www.nlnetlabs.nl/projects/ldns/ +DISTFILES = ldns-$(GARVERSION).tar.gz + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\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 = http://www.nlnetlabs.nl/downloads/ldns/ + +DISTNAME = ldns-$(GARVERSION) +WORKSRC = $(WORKDIR)/$(DISTNAME)/drill + +REQUIRED_PKGS = CSWldns +REQUIRED_PKGS += CSWosslrt + +GARCOMPILER = GCC4 +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-ssl=/opt/csw +CONFIGURE_ARGS += --with-ldns=/opt/csw + +include gar/category.mk Added: csw/mgar/pkg/drill/trunk/checksums =================================================================== --- csw/mgar/pkg/drill/trunk/checksums (rev 0) +++ csw/mgar/pkg/drill/trunk/checksums 2009-05-12 20:41:51 UTC (rev 4825) @@ -0,0 +1 @@ +17f73def98711e1475409d9a8d5d9dcd download/ldns-1.5.1.tar.gz 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 May 12 23:13:48 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 12 May 2009 21:13:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[4826] csw/mgar/pkg/thunderbird/trunk Message-ID: Revision: 4826 http://gar.svn.sourceforge.net/gar/?rev=4826&view=rev Author: wbonnet Date: 2009-05-12 21:13:48 +0000 (Tue, 12 May 2009) Log Message: ----------- Makefile update Remaining work : . Remove version from path Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile csw/mgar/pkg/thunderbird/trunk/checksums Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-05-12 20:41:51 UTC (rev 4825) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-05-12 21:13:48 UTC (rev 4826) @@ -8,14 +8,17 @@ Thunderbird 2 is the next generation release of the award-winning Thunderbird email client from Mozilla. endef -MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/$(GARVERSION)/source/ DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += $(call admfiles,CSWthunderbird, ) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) +MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/$(GARVERSION)/source/ UPSTREAM_MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/ +PACKAGES = CSWthunderbird +CATALOGNAME_CSWthunderbird = thunderbird +SPKG_DESC_CSWthunderbird = $(DESCRIPTION) + CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/thunderbird CFLAGS+= -DG_HAVE_ISO_VARARGS @@ -24,14 +27,40 @@ export PERL CFLAGS CXXFLAGS LDFLAGS -PKGS_REQUIRED_CSWthunderbird = CSWbonobo2 CSWfconfig CSWftype2 CSWgconf2 CSWggettextrt CSWglib2 CSWgnomekeyring CSWgnomevfs2 -PKGS_REQUIRED_CSWthunderbird += CSWgtk2 CSWlibart CSWlibatk CSWlibbonoboui CSWlibcairo CSWlibgnome CSWlibgnomecanvas -PKGS_REQUIRED_CSWthunderbird += CSWlibgnomeui CSWlibidl CSWlibpopt CSWlibxft2 CSWlibxrender CSWorbit2 CSWpango CSWzlib +REQUIRED_PKGS_CSWthunderbird = CSWbonobo2 +REQUIRED_PKGS_CSWthunderbird += CSWfconfig +REQUIRED_PKGS_CSWthunderbird += CSWftype2 +REQUIRED_PKGS_CSWthunderbird += CSWgconf2 +REQUIRED_PKGS_CSWthunderbird += CSWggettextrt +REQUIRED_PKGS_CSWthunderbird += CSWglib2 +REQUIRED_PKGS_CSWthunderbird += CSWgnomekeyring +REQUIRED_PKGS_CSWthunderbird += CSWgnomevfs2 +REQUIRED_PKGS_CSWthunderbird += CSWgtk2 +REQUIRED_PKGS_CSWthunderbird += CSWlibart +REQUIRED_PKGS_CSWthunderbird += CSWlibatk +REQUIRED_PKGS_CSWthunderbird += CSWlibbonoboui +REQUIRED_PKGS_CSWthunderbird += CSWlibcairo +REQUIRED_PKGS_CSWthunderbird += CSWlibgnome +REQUIRED_PKGS_CSWthunderbird += CSWlibgnomecanvas +REQUIRED_PKGS_CSWthunderbird += CSWlibgnomeui +REQUIRED_PKGS_CSWthunderbird += CSWlibidl +REQUIRED_PKGS_CSWthunderbird += CSWlibpopt +REQUIRED_PKGS_CSWthunderbird += CSWlibxft2 +REQUIRED_PKGS_CSWthunderbird += CSWlibxrender +REQUIRED_PKGS_CSWthunderbird += CSWorbit2 +REQUIRED_PKGS_CSWthunderbird += CSWpango +REQUIRED_PKGS_CSWthunderbird += CSWzlib #PATCHFILES = autoconf.mk.in.diff TEST_SCRIPTS = +LICENSE = LICENSE + +# Variable for direct access to working dir +WORK_BUILD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME) +WORK_INSTALL = $(WORKROOTDIR)/install-$(firstword $(MODULATIONS)) + post-extract: @mv $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/mozilla $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME) @$(MAKECOOKIE) @@ -40,20 +69,22 @@ @cp $(FILEDIR)/.mozconfig $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME)/.mozconfig pre-install: - ( if [ ! -d $(DESTDIR)/opt/csw/bin ] ; then mkdir -p $(DESTDIR)/opt/csw/bin ; fi ) - ( cd $(DESTDIR)/opt/csw/bin && rm -f thunderbird && ln -s ../mozilla/thunderbird/bin/thunderbird . ) - ( mkdir -p $(DESTDIR)/opt/csw/share/pixmaps ) -# ( cp $(WORKDIR)/$(DISTNAME)/other-licenses/branding/thunderbird/mozicon128.png $(DESTDIR)/opt/csw/share/pixmaps/thunderbird.png ) - ( mkdir -p $(DESTDIR)/opt/csw/share/applications ) - ( cp $(FILEDIR)/thunderbird.desktop $(DESTDIR)/opt/csw/share/applications/thunderbird.desktop ) - ( mkdir -p $(DESTDIR)/opt/csw/share/gnome/mime-info ) - ( cp $(FILEDIR)/thunderbird.keys $(DESTDIR)/opt/csw/share/gnome/mime-info/thunderbird.keys ) + ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) + ( cd $(WORK_INSTALL)/opt/csw/bin && if [ -L $(GARNAME) ] ; then rm $(GARNAME) ; fi && ln -s ../mozilla/$(GARNAME)/bin/$(GARNAME) . ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) + ( cp $(WORK_BUILD)/other-licenses/branding/thunderbird/content/icon64.png $(WORK_INSTALL)/opt/csw/share/pixmaps/thunderbird.png ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/applications ) + ( cp $(FILEDIR)/thunderbird.desktop $(WORK_INSTALL)/opt/csw/share/applications/thunderbird.desktop ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) + ( cp $(FILEDIR)/thunderbird.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/thunderbird.keys ) post-install: - ( gfind $(DESTDIR)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) -# ( gfind $(DESTDIR)/opt/csw -name chromelist.txt -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORKDIR)/$(DISTNAME)/\_\_g {}.temp > {} && rm {}.temp" \; ) -# ( gfind $(DESTDIR)/opt/csw/mozilla/thunderbird -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORKDIR)/$(DISTNAME)/\_\_g {}.temp > {} && rm {}.temp" \; ) -# ( gfind $(DESTDIR)/opt/csw/mozilla/thunderbird -name "*.jar" -exec bash -c "`pwd`/removeBuildPathFromJar.sh {} `pwd` $(WORKDIR) $(DISTNAME)" \; ) + ( gfind $(WORK_INSTALL)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) + ( mv $(WORK_INSTALL)/opt/csw/mozilla/thunderbird/lib/pkgconfig/thunderbird-nspr.pc $(WORK_INSTALL)/opt/csw/mozilla/thunderbird/lib/pkgconfig/thunderbird-nspr.pc.temp && gsed -e s\_-L$(WORK_INSTALL)/opt/csw/lib\_\_g $(WORK_INSTALL)/opt/csw/mozilla/thunderbird/lib/pkgconfig/thunderbird-nspr.pc.temp > $(WORK_INSTALL)/opt/csw/mozilla/thunderbird/lib/pkgconfig/thunderbird-nspr.pc && rm $(WORK_INSTALL)/opt/csw/mozilla/thunderbird/lib/pkgconfig/thunderbird-nspr.pc.temp ) + ( gfind $(WORK_INSTALL)/opt/csw -name chromelist.txt -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) + ( gfind $(WORK_INSTALL)/opt/csw/mozilla/thunderbird -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) + ( gfind $(WORK_INSTALL)/opt/csw/mozilla/thunderbird -name "*.jar" -exec bash -c "`pwd`/removeBuildPathFromJar.sh {} `pwd` $(WORKDIR) $(DISTNAME)" \; ) +# include the rest of GAR include gar/category.mk Modified: csw/mgar/pkg/thunderbird/trunk/checksums =================================================================== --- csw/mgar/pkg/thunderbird/trunk/checksums 2009-05-12 20:41:51 UTC (rev 4825) +++ csw/mgar/pkg/thunderbird/trunk/checksums 2009-05-12 21:13:48 UTC (rev 4826) @@ -1,2 +1,2 @@ +3a6b0245afd9c4e8b624f2455767574e download/CSWthunderbird.gspec 55e24753a7ccf2fbf0272987dd4bb086 download/thunderbird-2.0.0.21-source.tar.bz2 -3a6b0245afd9c4e8b624f2455767574e download/CSWthunderbird.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 Tue May 12 23:28:54 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 12 May 2009 21:28:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[4827] csw/mgar/pkg/thunderbird/trunk Message-ID: Revision: 4827 http://gar.svn.sourceforge.net/gar/?rev=4827&view=rev Author: wbonnet Date: 2009-05-12 21:28:53 +0000 (Tue, 12 May 2009) Log Message: ----------- Remove version from path Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-05-12 21:13:48 UTC (rev 4826) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-05-12 21:28:53 UTC (rev 4827) @@ -51,7 +51,7 @@ REQUIRED_PKGS_CSWthunderbird += CSWpango REQUIRED_PKGS_CSWthunderbird += CSWzlib -#PATCHFILES = autoconf.mk.in.diff +PATCHFILES = autoconf.mk.in.diff TEST_SCRIPTS = Added: csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff =================================================================== --- csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff (rev 0) +++ csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff 2009-05-12 21:28:53 UTC (rev 4827) @@ -0,0 +1,22 @@ +diff --speed-large-files --minimal -Nru thunderbird.orig/config/autoconf.mk.in thunderbird/config/autoconf.mk.in +--- thunderbird.orig/config/autoconf.mk.in 2006-09-14 14:07:03.000000000 -0400 ++++ thunderbird/config/autoconf.mk.in 2007-02-25 07:21:36.245899000 -0500 +@@ -57,14 +57,14 @@ + prefix = @prefix@ + exec_prefix = @exec_prefix@ + bindir = @bindir@ +-includedir = @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++includedir = @includedir@ + libdir = @libdir@ + datadir = @datadir@ + mandir = @mandir@ +-idldir = @datadir@/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++idldir = @datadir@/idl + +-mozappdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-mredir = $(libdir)/mre/mre-$(MOZ_APP_VERSION) ++mozappdir = $(libdir) ++mredir = $(libdir)/mre + mrelibdir = $(mredir)/lib + + DIST = $(DEPTH)/dist 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 May 12 23:36:51 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Tue, 12 May 2009 21:36:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[4828] csw/mgar/pkg/thunderbird/trunk Message-ID: Revision: 4828 http://gar.svn.sourceforge.net/gar/?rev=4828&view=rev Author: wbonnet Date: 2009-05-12 21:36:50 +0000 (Tue, 12 May 2009) Log Message: ----------- Fix patch file Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/checksums csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff Modified: csw/mgar/pkg/thunderbird/trunk/checksums =================================================================== --- csw/mgar/pkg/thunderbird/trunk/checksums 2009-05-12 21:28:53 UTC (rev 4827) +++ csw/mgar/pkg/thunderbird/trunk/checksums 2009-05-12 21:36:50 UTC (rev 4828) @@ -1,2 +1,2 @@ -3a6b0245afd9c4e8b624f2455767574e download/CSWthunderbird.gspec +73a73d79047dea6be2d222d5b9eeb5f7 download/autoconf.mk.in.diff 55e24753a7ccf2fbf0272987dd4bb086 download/thunderbird-2.0.0.21-source.tar.bz2 Modified: csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff =================================================================== --- csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff 2009-05-12 21:28:53 UTC (rev 4827) +++ csw/mgar/pkg/thunderbird/trunk/files/autoconf.mk.in.diff 2009-05-12 21:36:50 UTC (rev 4828) @@ -2,21 +2,21 @@ --- thunderbird.orig/config/autoconf.mk.in 2006-09-14 14:07:03.000000000 -0400 +++ thunderbird/config/autoconf.mk.in 2007-02-25 07:21:36.245899000 -0500 @@ -57,14 +57,14 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - bindir = @bindir@ --includedir = @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -+includedir = @includedir@ - libdir = @libdir@ - datadir = @datadir@ - mandir = @mandir@ --idldir = @datadir@/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) -+idldir = @datadir@/idl + prefix = @prefix@ + exec_prefix = @exec_prefix@ + bindir = @bindir@ +-includedir = @includedir@/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++includedir = @includedir@ + libdir = @libdir@ + datadir = @datadir@ + mandir = @mandir@ +-idldir = @datadir@/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++idldir = @datadir@/idl --mozappdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) --mredir = $(libdir)/mre/mre-$(MOZ_APP_VERSION) -+mozappdir = $(libdir) -+mredir = $(libdir)/mre - mrelibdir = $(mredir)/lib +-mozappdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-mredir = $(libdir)/mre/mre-$(MOZ_APP_VERSION) ++mozappdir = $(libdir) ++mredir = $(libdir)/mre + mrelibdir = $(mredir)/lib - DIST = $(DEPTH)/dist + DIST = $(DEPTH)/dist This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Wed May 13 11:31:59 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Wed, 13 May 2009 09:31:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[4829] csw/mgar/pkg/pnp/trunk Message-ID: Revision: 4829 http://gar.svn.sourceforge.net/gar/?rev=4829&view=rev Author: j_arndt Date: 2009-05-13 09:31:59 +0000 (Wed, 13 May 2009) Log Message: ----------- pnp: update to 0.4.14, added some patches, corrected start script Modified Paths: -------------- csw/mgar/pkg/pnp/trunk/Makefile csw/mgar/pkg/pnp/trunk/checksums csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype csw/mgar/pkg/pnp/trunk/files/cswpnp csw/mgar/pkg/pnp/trunk/files/makefile.diff Added Paths: ----------- csw/mgar/pkg/pnp/trunk/files/npcd.c.diff csw/mgar/pkg/pnp/trunk/files/npcd.cfg-sample.in.diff csw/mgar/pkg/pnp/trunk/files/npcdmod.c.diff csw/mgar/pkg/pnp/trunk/files/npcdmod.h.diff Removed Paths: ------------- csw/mgar/pkg/pnp/trunk/files/npcd.diff Modified: csw/mgar/pkg/pnp/trunk/Makefile =================================================================== --- csw/mgar/pkg/pnp/trunk/Makefile 2009-05-12 21:36:50 UTC (rev 4828) +++ csw/mgar/pkg/pnp/trunk/Makefile 2009-05-13 09:31:59 UTC (rev 4829) @@ -1,8 +1,8 @@ GARNAME = pnp -GARVERSION = 0.4.13 +GARVERSION = 0.4.14 CATEGORIES = apps -DESCRIPTION = analyzing nagios performance data with RRD databases. +DESCRIPTION = visualization of nagios performance data using RRD databases define BLURB PNP is an addon to nagios which analyzes performance data provided by plugins and stores them automatically into RRD-databases endef @@ -12,10 +12,12 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWpnp, prototype ) DISTFILES += cswpnp -#DISTFILES += cswpnp cswpnp.xml svc-cswpnp PATCHFILES += makefile.diff -PATCHFILES += npcd.diff +PATCHFILES += npcd.c.diff +PATCHFILES += npcdmod.h.diff +PATCHFILES += npcdmod.c.diff +PATCHFILES += npcd.cfg-sample.in.diff # We define upstream file regex so we can be notifed of new upstream software release #UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz @@ -24,17 +26,15 @@ # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES # UPSTREAM_MASTER_SITES = -LDFLAGS += -L/usr/ucblib -LIBS += -lucb +NOISALIST = 1 datadir = /opt/csw/nagios/share/pnp sysconfdir = $(prefix)/nagios/pnp/etc -bindir = $(prefix)/nagios/bin +bindir = $(prefix)/nagios/pnp/bin libexecdir = $(prefix)/libexec/nagios-plugins +localstatedir =$(prefix)/nagios/pnp/var -REQUIRED_PKGS_sparc = SUNWscpux -REQUIRED_PKGS_i386 = SUNWscpu -REQUIRED_PKGS = CSWphp5 CSWphp5gd CSWap2modphp5 CSWrrd $(REQUIRED_PKGS_$(GARCH)) CSWcswclassutils +REQUIRED_PKGS += CSWphp5 CSWphp5gd CSWap2modphp5 CSWrrd CSWcswclassutils SPKG_CLASSES = none cswpreserveconf cswinitsmf #PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswpnp$$$$/ { $$$$2 = "cswinitsmf" } { print }' Modified: csw/mgar/pkg/pnp/trunk/checksums =================================================================== --- csw/mgar/pkg/pnp/trunk/checksums 2009-05-12 21:36:50 UTC (rev 4828) +++ csw/mgar/pkg/pnp/trunk/checksums 2009-05-13 09:31:59 UTC (rev 4829) @@ -1,6 +1,9 @@ -20a96f81edba29dcd21215bde4af8b57 download/pnp-0.4.13.tar.gz +9dbbf08191a258f6798c9516b3821ff0 download/pnp-0.4.14.tar.gz 216b8ed50919642c3fae2a6520724dd3 download/CSWpnp.gspec -c3cee9b1ce8286d553735d2bbde151e0 download/CSWpnp.prototype -40b1d1489a41475ff6cddf441b18316a download/cswpnp -30e8699531bb0249542b3012a00a73b1 download/makefile.diff -b1229d599c2ce12c3aacf0a44e1588d6 download/npcd.diff +fc763dd71049d4c06f10b8898fa3c1bb download/CSWpnp.prototype +fec420cb27af9cbd0daba28f04500f8c download/cswpnp +80c06e6426497ed3fa96c0e77aff613d download/makefile.diff +db6af87968e9b29272d387033f09acba download/npcd.c.diff +65d971cd9983aef7f069c7976424eb99 download/npcdmod.h.diff +8380996936f96669d8abe25dd8faf392 download/npcdmod.c.diff +01c0965ea1bdd26e4f0fdbc51640dfce download/npcd.cfg-sample.in.diff Modified: csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype =================================================================== --- csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype 2009-05-12 21:36:50 UTC (rev 4828) +++ csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype 2009-05-13 09:31:59 UTC (rev 4829) @@ -4,9 +4,9 @@ d none /opt/csw/libexec/nagios-plugins 0755 root bin f none /opt/csw/libexec/nagios-plugins/process_perfdata.pl 0755 root bin d none /opt/csw/nagios 0755 root bin -d none /opt/csw/nagios/bin 0755 nagios nagios -f none /opt/csw/nagios/bin/npcd 0754 nagios nagios -f none /opt/csw/nagios/bin/npcdmod 0754 nagios nagios +d none /opt/csw/nagios/pnp/bin 0755 nagios nagios +f none /opt/csw/nagios/pnp/bin/npcd 0754 nagios nagios +f none /opt/csw/nagios/pnp/bin/npcdmod 0754 nagios nagios d none /opt/csw/nagios/pnp 0755 nagios nagios d none /opt/csw/nagios/pnp/etc 0755 nagios nagios f none /opt/csw/nagios/pnp/etc/background.pdf 0644 nagios nagios Modified: csw/mgar/pkg/pnp/trunk/files/cswpnp =================================================================== --- csw/mgar/pkg/pnp/trunk/files/cswpnp 2009-05-12 21:36:50 UTC (rev 4828) +++ csw/mgar/pkg/pnp/trunk/files/cswpnp 2009-05-13 09:31:59 UTC (rev 4829) @@ -26,7 +26,7 @@ exit $SMF_EXIT_ERR_CONFIG fi -BIN_FILE="/opt/csw/nagios/bin/npcd" +BIN_FILE="/opt/csw/nagios/pnp/bin/npcd" pidfile=`grep '^pid_file' $CONFIG_FILE |awk '{ FS = "=" } {print $2;}'` PNP_USER=`awk '/^user/ { print $NF }' $CONFIG_FILE` @@ -45,7 +45,7 @@ 'start') if [ -f $CONFIG_FILE ]; then - $BIN_FILE -c $CONFIG_FILE -d + $BIN_FILE -d -f $CONFIG_FILE fi ;; Modified: csw/mgar/pkg/pnp/trunk/files/makefile.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/makefile.diff 2009-05-12 21:36:50 UTC (rev 4828) +++ csw/mgar/pkg/pnp/trunk/files/makefile.diff 2009-05-13 09:31:59 UTC (rev 4829) @@ -1,15 +1,6 @@ diff --speed-large-files --minimal -Nru pnp-0.4.13.orig/src/Makefile.in pnp-0.4.13/src/Makefile.in --- pnp-0.4.13.orig/src/Makefile.in 2009-02-19 18:28:41.000000000 +0100 +++ pnp-0.4.13/src/Makefile.in 2009-03-04 20:55:35.296449068 +0100 -@@ -9,7 +9,7 @@ - SRC_INCLUDE=../include - - CC=@CC@ --CFLAGS=@CFLAGS@ @DEFS@ -DNSCORE -+CFLAGS=@CFLAGS@ @DEFS@ -DNSCORE -L/usr/ucblib -R/usr/ucblib -lucb - - # Compiler flags for use with Valgrind - #CFLAGS=-O0 -g -DHAVE_CONFIG_H -DNSCORE @@ -52,7 +52,7 @@ OBJDEPS= @@ -26,7 +17,7 @@ -npcdmod.o: npcdmod.c - $(CC) $(MOD_CFLAGS) $(CFLAGS) -o npcdmod.o npcdmod.c $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) -fPIC +npcdmod: npcdmod.c -+ $(CC) $(MOD_CFLAGS) $(CFLAGS) -o npcdmod npcdmod.c $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) -fPIC ++ $(CC) $(MOD_CFLAGS) $(CFLAGS) -o npcdmod npcdmod.c $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) ############################### # Added: csw/mgar/pkg/pnp/trunk/files/npcd.c.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/npcd.c.diff (rev 0) +++ csw/mgar/pkg/pnp/trunk/files/npcd.c.diff 2009-05-13 09:31:59 UTC (rev 4829) @@ -0,0 +1,103 @@ +diff --speed-large-files --minimal -Nru pnp-0.4.14.orig/src/npcd.c pnp-0.4.14/src/npcd.c +--- pnp-0.4.14.orig/src/npcd.c 2009-05-02 11:25:23.000000000 +0200 ++++ pnp-0.4.14/src/npcd.c 2009-05-10 20:57:26.766575641 +0200 +@@ -56,6 +56,99 @@ + const char *directory = NULL; + const char progname[5] = "npcd"; + ++int ++scandir(const char *dirname, struct dirent *(*namelist[]), ++ int (*select)(const struct dirent *), ++ int (*dcomp)(const struct dirent **, const struct dirent **)) ++{ ++ struct dirent *d, *p, **names = NULL; ++ size_t nitems = 0; ++ size_t arraysz, entlen; ++ struct stat64 stb; ++ DIR *dirp; ++ u_longlong_t tmp_arraysz; ++ ++ if ((dirp = opendir(dirname)) == NULL) ++ return (-1); ++ if (fstat64(dirp->dd_fd, &stb) < 0) ++ goto fail; ++ ++ /* ++ * * estimate the array size by taking the size of the directory file ++ * * and dividing it by a multiple of the minimum size entry. ++ * */ ++ tmp_arraysz = stb.st_size / 24; /* 24 bytes on a 64-bit system */ ++ if (tmp_arraysz > INT_MAX) ++ arraysz = INT_MAX; ++ else ++ arraysz = (size_t)tmp_arraysz; ++ names = malloc(arraysz * sizeof (struct dirent *)); ++ if (names == NULL) ++ goto fail; ++ ++ while ((d = readdir(dirp)) != NULL) { ++ if (select != NULL && !(*select)(d)) ++ continue; /* just selected names */ ++ ++ entlen = d->d_reclen; ++ /* ++ * * Make a minimum size copy of the data ++ * */ ++ p = malloc(entlen); ++ if (p == NULL) ++ goto fail; ++ (void) memcpy(p, d, entlen); ++ /* ++ * * Check to make sure the array has space left and ++ * * realloc the maximum size. ++ * */ ++ if (nitems >= arraysz) { ++ struct dirent **tmp; ++ if (nitems == INT_MAX) { ++ /* overflow */ ++ free(p); ++ errno = EOVERFLOW; ++ goto fail; ++ } ++ arraysz += 512; /* no science here */ ++ tmp = realloc(names, ++ arraysz * sizeof (struct dirent *)); ++ if (tmp == NULL) { ++ free(p); ++ goto fail; ++ } ++ names = tmp; ++ } ++ names[nitems++] = p; ++ } ++ (void) closedir(dirp); ++ if (nitems && dcomp != NULL) ++ qsort(names, nitems, sizeof (struct dirent *), ++ (int(*)(const void *, const void *))dcomp); ++ *namelist = names; ++ ++ return ((int)nitems); ++ ++fail: ++ while (nitems != 0) { ++ free(names[--nitems]); ++ } ++ if (names) ++ free(names); ++ (void) closedir(dirp); ++ return (-1); ++} ++ ++/* ++ * * Alphabetic order comparison routine for those who want it. ++ * */ ++int ++alphasort(const struct dirent **d1, const struct dirent **d2) ++{ ++ return (strcoll((*d1)->d_name, ++ (*d2)->d_name)); ++} ++ + static void start_daemon(const char *log_name, int facility) { + int i; + pid_t pid; Added: csw/mgar/pkg/pnp/trunk/files/npcd.cfg-sample.in.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/npcd.cfg-sample.in.diff (rev 0) +++ csw/mgar/pkg/pnp/trunk/files/npcd.cfg-sample.in.diff 2009-05-13 09:31:59 UTC (rev 4829) @@ -0,0 +1,14 @@ +diff --speed-large-files --minimal -Nru pnp-0.4.14.orig/sample-config/pnp/npcd.cfg-sample.in pnp-0.4.14/sample-config/pnp/npcd.cfg-sample.in +--- pnp-0.4.14.orig/sample-config/pnp/npcd.cfg-sample.in 2009-05-02 11:25:23.000000000 +0200 ++++ pnp-0.4.14/sample-config/pnp/npcd.cfg-sample.in 2009-05-12 18:38:17.625341221 +0200 +@@ -32,8 +32,8 @@ + # log_type = + # + +-#log_type = file +-log_type = syslog ++log_type = file ++#log_type = syslog + + + # log_file - define a path to your logfile Deleted: csw/mgar/pkg/pnp/trunk/files/npcd.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/npcd.diff 2009-05-12 21:36:50 UTC (rev 4828) +++ csw/mgar/pkg/pnp/trunk/files/npcd.diff 2009-05-13 09:31:59 UTC (rev 4829) @@ -1,15 +0,0 @@ -diff --speed-large-files --minimal -Nru pnp-0.4.13.orig/src/npcd.c pnp-0.4.13/src/npcd.c ---- pnp-0.4.13.orig/src/npcd.c 2009-02-19 18:28:41.000000000 +0100 -+++ pnp-0.4.13/src/npcd.c 2009-03-04 20:39:15.803376720 +0100 -@@ -56,6 +56,11 @@ - const char *directory = NULL; - const char progname[5] = "npcd"; - -+int alphasort(const struct dirent **a, const struct dirent **b) -+{ -+ return(strcmp((*a)->d_name, (*b)->d_name)); -+} -+ - static void start_daemon(const char *log_name, int facility) { - int i; - pid_t pid; Added: csw/mgar/pkg/pnp/trunk/files/npcdmod.c.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/npcdmod.c.diff (rev 0) +++ csw/mgar/pkg/pnp/trunk/files/npcdmod.c.diff 2009-05-13 09:31:59 UTC (rev 4829) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru pnp-0.4.14.orig/src/npcdmod.c pnp-0.4.14/src/npcdmod.c +--- pnp-0.4.14.orig/src/npcdmod.c 2009-05-02 11:25:23.000000000 +0200 ++++ pnp-0.4.14/src/npcdmod.c 2009-05-11 08:08:15.406159492 +0200 +@@ -53,6 +53,8 @@ + + void npcdmod_file_roller(); + int npcdmod_handle_data(int, void *); ++int npcdmod_process_module_args(char *); ++int npcdmod_process_config_var(char *); + + /* this function gets called when the module is loaded by the event broker */ + int nebmodule_init(int flags, char *args, nebmodule *handle) { Added: csw/mgar/pkg/pnp/trunk/files/npcdmod.h.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/npcdmod.h.diff (rev 0) +++ csw/mgar/pkg/pnp/trunk/files/npcdmod.h.diff 2009-05-13 09:31:59 UTC (rev 4829) @@ -0,0 +1,9 @@ +diff --speed-large-files --minimal -Nru pnp-0.4.14.orig/include/npcdmod.h pnp-0.4.14/include/npcdmod.h +--- pnp-0.4.14.orig/include/npcdmod.h 2009-05-02 11:25:23.000000000 +0200 ++++ pnp-0.4.14/include/npcdmod.h 2009-05-10 19:54:45.629418467 +0200 +@@ -38,4 +38,4 @@ + char *pnp_mmap_fgets(pnp_mmapfile *); + char *pnp_mmap_fgets_multiline(pnp_mmapfile *); + +-extern pnp_strip(char *); ++extern void pnp_strip(char *); 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 May 13 13:20:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 13 May 2009 11:20:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[4830] csw/mgar/pkg Message-ID: Revision: 4830 http://gar.svn.sourceforge.net/gar/?rev=4830&view=rev Author: dmichelsen Date: 2009-05-13 11:20:07 +0000 (Wed, 13 May 2009) Log Message: ----------- glib: Initial checkin Modified Paths: -------------- csw/mgar/pkg/glib/trunk/Makefile csw/mgar/pkg/glib/trunk/checksums Added Paths: ----------- csw/mgar/pkg/glib/ Modified: csw/mgar/pkg/glib/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib2/trunk/Makefile 2009-05-11 13:49:50 UTC (rev 4810) +++ csw/mgar/pkg/glib/trunk/Makefile 2009-05-13 11:20:07 UTC (rev 4830) @@ -1,17 +1,16 @@ GARNAME = glib -GARVERSION = 2.20.0 +GARVERSION = 1.3.15 CATEGORIES = lib -DESCRIPTION = The GLib library of C routines. +DESCRIPTION = The GLib library of C routines define BLURB GLib is a library containing many useful C routines for things such as trees, - hashes, and lists. GLib was previously distributed with the GTK toolkit, but - has been split off as of the developers' version 1.1.0. + hashes, and lists. endef -PACKAGES = CSWglib2 CSWglib2devel -CATALOGNAME_CSWglib2 = glib2 -CATALOGNAME_CSWglib2devel = glib2_devel +PACKAGES = CSWglib CSWglibdevel +CATALOGNAME_CSWglib2 = glib +CATALOGNAME_CSWglib2devel = glib2devel SPKG_DESC_CSWglib2 = Low level core compatibility library for GTK+ and GNOME SPKG_DESC_CSWglib2devel = Low level core compatibility library for GTK+ and GNOME development @@ -19,28 +18,28 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -PATCHFILES = glib-typedetect.patch -PATCHFILES += checksum-test.patch -PATCHFILES += gsize.patch +#PATCHFILES = glib-typedetect.patch +#PATCHFILES += checksum-test.patch +#PATCHFILES += gsize.patch CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-libiconv=gnu -CONFIGURE_ARGS += --enable-static +CONFIGURE_ARGS += --with-libiconv +#CONFIGURE_ARGS += --enable-static UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 BUILD64 = 1 NO_ISAEXEC = 1 -REQUIRED_PKGS_CSWglib2 = CSWggettextrt CSWiconv -REQUIRED_PKGS_CSWglib2devel = CSWglib2 CSWggettextrt CSWiconv +#REQUIRED_PKGS_CSWglib2 = CSWggettextrt CSWiconv +#REQUIRED_PKGS_CSWglib2devel = CSWglib2 CSWggettextrt CSWiconv TEST_TARGET = check #provided by iconv -MERGE_EXCLUDE_FILES = .*/charset.alias +#MERGE_EXCLUDE_FILES = .*/charset.alias -PKGFILES_CSWglib2 = $(PKGFILES_RT) -PKGFILES_CSWglib2 += /opt/csw/share/locale/.* +#PKGFILES_CSWglib2 = $(PKGFILES_RT) +#PKGFILES_CSWglib2 += /opt/csw/share/locale/.* include gar/category.mk Modified: csw/mgar/pkg/glib/trunk/checksums =================================================================== --- csw/mgar/pkg/glib2/trunk/checksums 2009-05-11 13:49:50 UTC (rev 4810) +++ csw/mgar/pkg/glib/trunk/checksums 2009-05-13 11:20:07 UTC (rev 4830) @@ -1,4 +1 @@ -05188e560dbd8bddd568e24ce10dd003 download/glib-2.20.0.tar.bz2 -8f683820d9ecab1abd9dbe81997ab9eb download/glib-typedetect.patch -f1f3c182f64be06ab57d8b01016af074 download/checksum-test.patch -bb2fb8eef43c995fea6c08563487ace6 download/gsize.patch +a74e88fde5a3d8a47cfe71d8f4f291f2 download/glib-1.3.15.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Wed May 13 13:37:45 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Wed, 13 May 2009 11:37:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[4831] csw/mgar/pkg/drill/trunk/Makefile Message-ID: Revision: 4831 http://gar.svn.sourceforge.net/gar/?rev=4831&view=rev Author: idogan23 Date: 2009-05-13 11:37:45 +0000 (Wed, 13 May 2009) Log Message: ----------- drill: make check/test not supported Modified Paths: -------------- csw/mgar/pkg/drill/trunk/Makefile Modified: csw/mgar/pkg/drill/trunk/Makefile =================================================================== --- csw/mgar/pkg/drill/trunk/Makefile 2009-05-13 11:20:07 UTC (rev 4830) +++ csw/mgar/pkg/drill/trunk/Makefile 2009-05-13 11:37:45 UTC (rev 4831) @@ -29,4 +29,6 @@ CONFIGURE_ARGS += --with-ssl=/opt/csw CONFIGURE_ARGS += --with-ldns=/opt/csw +TEST_TARGET = + 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 May 13 13:56:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 13 May 2009 11:56:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4832] csw/mgar/pkg/unbound/trunk Message-ID: Revision: 4832 http://gar.svn.sourceforge.net/gar/?rev=4832&view=rev Author: dmichelsen Date: 2009-05-13 11:56:52 +0000 (Wed, 13 May 2009) Log Message: ----------- unbound: Add checksums and fix post-install Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/unbound/trunk/checksums Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-05-13 11:37:45 UTC (rev 4831) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-05-13 11:56:52 UTC (rev 4832) @@ -38,9 +38,10 @@ post-install-modulated: @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @ginstall -m 755 $(FILEDIR)/cswunbound $(DESTDIR)/etc/opt/csw/init.d/cswunbound - @ginstall -m 755 $(DESTDIR)/etc/opt/csw/pkg/CSWunbound + @ginstall -d 755 $(DESTDIR)/etc/opt/csw/pkg/CSWunbound @ginstall -m 755 $(FILEDIR)/cswusergroup $(DESTDIR)/etc/opt/csw/pkg/CSWunbound/cswusergroup @mv $(DESTDIR)/etc/opt/csw/unbound/unbound.conf $(DESTDIR)/etc/opt/csw/unbound/unbound.conf.CSW @chmod 444 $(DESTDIR)/etc/opt/csw/unbound/unbound.conf.CSW + @$(MAKECOOKIE) include gar/category.mk Added: csw/mgar/pkg/unbound/trunk/checksums =================================================================== --- csw/mgar/pkg/unbound/trunk/checksums (rev 0) +++ csw/mgar/pkg/unbound/trunk/checksums 2009-05-13 11:56:52 UTC (rev 4832) @@ -0,0 +1,4 @@ +90405f880273db5036c2ebf2e881b998 download/CSWunbound.gspec +75867432e238f5afd48dfe5d138097e9 download/cswunbound +8496de3efbbda65b6145b421e6d1f076 download/cswusergroup +5437f2a1e698d8aa73ba19a60662a654 download/unbound-1.2.1.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 Wed May 13 15:40:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 13 May 2009 13:40:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[4833] csw/mgar/pkg/glib/trunk Message-ID: Revision: 4833 http://gar.svn.sourceforge.net/gar/?rev=4833&view=rev Author: dmichelsen Date: 2009-05-13 13:40:09 +0000 (Wed, 13 May 2009) Log Message: ----------- glib: Downgrade to 1.2.x because all packages depend on the specific shared libs Modified Paths: -------------- csw/mgar/pkg/glib/trunk/Makefile csw/mgar/pkg/glib/trunk/checksums Modified: csw/mgar/pkg/glib/trunk/Makefile =================================================================== --- csw/mgar/pkg/glib/trunk/Makefile 2009-05-13 11:56:52 UTC (rev 4832) +++ csw/mgar/pkg/glib/trunk/Makefile 2009-05-13 13:40:09 UTC (rev 4833) @@ -1,5 +1,7 @@ GARNAME = glib -GARVERSION = 1.3.15 +# Most applications bind to libglib-1.2.so.0, so stick to 1.2.x for the moment +GARVERSION = 1.2.10 +#GARVERSION = 1.3.15 CATEGORIES = lib DESCRIPTION = The GLib library of C routines @@ -8,38 +10,30 @@ hashes, and lists. endef -PACKAGES = CSWglib CSWglibdevel -CATALOGNAME_CSWglib2 = glib -CATALOGNAME_CSWglib2devel = glib2devel -SPKG_DESC_CSWglib2 = Low level core compatibility library for GTK+ and GNOME -SPKG_DESC_CSWglib2devel = Low level core compatibility library for GTK+ and GNOME development +SPKG_DESC_CSWglib2 = Utility library commonly associated with GNOME programs +REQUIRED_PKGS = CSWggettextrt CSWiconv + MASTER_SITES = $(GNOME_MIRROR) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -#PATCHFILES = glib-typedetect.patch -#PATCHFILES += checksum-test.patch -#PATCHFILES += gsize.patch +# glib 1.x doesn't seem to be 64 bit clean +#BUILD64 = 1 +#NO_ISAEXEC = 1 +# Only needed for 1.3.x +#EXTRA_BUILD_EXPORTS = SGML_CATALOG_FILES +#SGML_CATALOG_FILES = $(sysconfdir)/sgml/catalog + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libiconv -#CONFIGURE_ARGS += --enable-static UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -BUILD64 = 1 -NO_ISAEXEC = 1 - -#REQUIRED_PKGS_CSWglib2 = CSWggettextrt CSWiconv -#REQUIRED_PKGS_CSWglib2devel = CSWglib2 CSWggettextrt CSWiconv - TEST_TARGET = check #provided by iconv -#MERGE_EXCLUDE_FILES = .*/charset.alias +MERGE_EXCLUDE_FILES = .*/charset.alias -#PKGFILES_CSWglib2 = $(PKGFILES_RT) -#PKGFILES_CSWglib2 += /opt/csw/share/locale/.* - include gar/category.mk Modified: csw/mgar/pkg/glib/trunk/checksums =================================================================== --- csw/mgar/pkg/glib/trunk/checksums 2009-05-13 11:56:52 UTC (rev 4832) +++ csw/mgar/pkg/glib/trunk/checksums 2009-05-13 13:40:09 UTC (rev 4833) @@ -1 +1 @@ -a74e88fde5a3d8a47cfe71d8f4f291f2 download/glib-1.3.15.tar.bz2 +6fe30dad87c77b91b632def29dd69ef9 download/glib-1.2.10.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 13 16:59:41 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 13 May 2009 14:59:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4834] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4834 http://gar.svn.sourceforge.net/gar/?rev=4834&view=rev Author: valholla Date: 2009-05-13 14:59:41 +0000 (Wed, 13 May 2009) Log Message: ----------- work so far Modified Paths: -------------- csw/mgar/pkg/php4/trunk/checksums Added Paths: ----------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/files/ csw/mgar/pkg/php4/trunk/files/CSWphp4.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4.space csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_disable.sh csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_enable.sh csw/mgar/pkg/php4/trunk/files/pear.conf.CSW csw/mgar/pkg/php4/trunk/files/pgsql.diff csw/mgar/pkg/php4/trunk/files/php.ini.CSW csw/mgar/pkg/php4/trunk/files/phpext Added: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile (rev 0) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-13 14:59:41 UTC (rev 4834) @@ -0,0 +1,91 @@ +GARNAME = php +GARVERSION = 4.4.9 +CATEGORIES = lang + +DESCRIPTION = A high-level scripting language. +define BLURB + PHP is a widely-used Open Source general-purpose scripting language that is + especially suited for Web development and can be embedded into HTML. Its + syntax draws upon C, Java, and Perl, and is easy to learn. PHP runs on many + different platforms and can be used as a standalone executable or as a + module under a variety of Web servers. It has excellent support for + databases, XML, LDAP, IMAP, Java, various Internet protocols, and general + data manipulation, and is extensible via its powerful API. It is actively + developed and supported by a talented and energetic international team. + Numerous Open Source and commercial PHP-based application packages are + available. +endef + +MASTER_SITES = http://us.php.net/distributions/ +SPKG_SOURCEURL = http://www.php.net/downloads.php +DISTFILES += $(GARNAME)-$(GARVERSION).tar.bz2 + +INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) +PHP4ROOT = $(DESTDIR)$(prefix)/php4 + +STRIP_DIRS += $(PHP4ROOT)/lib/php/extensions/*/ +STRIP_DIRS += $(PHP4ROOT)/bin + +PACKAGES = CSWphp4 +CATALOGNAME_CSWphp4 = php4 +SPKG_DESC_CSWphp4 = A High-Level Scripting Languages +REQUIRED_PKGS_CSWphp4 = + +PATCHFILES = pgsql.diff + +EXTRA_LIB += $(prefix)/bdb44/lib +EXTRA_INC += $(prefix)/bdb44/include +EXTRA_CFLAGS = -I$(prefix)/include/ncursesw +CONFIGURE_ARGS += --prefix=$(prefix)/php4 +CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php4/bin + +CONFIGURE_ARGS += --enable-bcmath=shared +CONFIGURE_ARGS += --enable-calendar=shared +CONFIGURE_ARGS += --enable-cgi +CONFIGURE_ARGS += --enable-cli +CONFIGURE_ARGS += --with-curl=shared,$(prefix) +CONFIGURE_ARGS += --with-curlwrappers +CONFIGURE_ARGS += --enable-dba=shared +CONFIGURE_ARGS += --enable-exif +CONFIGURE_ARGS += --enable-fastcgi +CONFIGURE_ARGS += --enable-force-cgi-redirect +CONFIGURE_ARGS += --enable-gd-native-ttf +CONFIGURE_ARGS += --enable-mbregex=shared +CONFIGURE_ARGS += --enable-mbstring=shared +CONFIGURE_ARGS += --enable-mcal=shared +CONFIGURE_ARGS += --enable-sockets +CONFIGURE_ARGS += --with-bz2=shared,$(prefix) +CONFIGURE_ARGS += --with-db4=$(prefix)/bdb44 +CONFIGURE_ARGS += --with-dom-exslt=$(prefix) +CONFIGURE_ARGS += --with-dom-xslt=$(prefix) +CONFIGURE_ARGS += --with-dom=shared,$(prefix) +CONFIGURE_ARGS += --with-expat-dir=$(prefix) +CONFIGURE_ARGS += --with-gd=shared,$(prefix) +CONFIGURE_ARGS += --with-gdbm=$(prefix) +CONFIGURE_ARGS += --with-gettext=shared,$(prefix) +CONFIGURE_ARGS += --with-gmp=shared,$(prefix) +CONFIGURE_ARGS += --with-iconv=shared +CONFIGURE_ARGS += --with-imap-ssl=$(prefix) +CONFIGURE_ARGS += --with-imap=shared,$(prefix) +CONFIGURE_ARGS += --with-jpeg-dir=$(prefix) +CONFIGURE_ARGS += --with-kerberos=$(prefix) +CONFIGURE_ARGS += --with-ldap=shared,$(prefix) +CONFIGURE_ARGS += --with-ldap-sasl=$(prefix) +CONFIGURE_ARGS += --with-mssql=shared,$(prefix) +CONFIGURE_ARGS += --with-mysql=shared,$(prefix) +CONFIGURE_ARGS += --with-ncurses=shared,$(prefix) +CONFIGURE_ARGS += --with-openssl=shared,$(prefix) +CONFIGURE_ARGS += --with-pgsql=shared,$(prefix)/postgresql +CONFIGURE_ARGS += --with-png-dir=$(prefix) +CONFIGURE_ARGS += --with-unixODBC=shared,$(prefix) +CONFIGURE_ARGS += --with-xmlrpc=shared,$(prefix) +CONFIGURE_ARGS += --with-zlib=shared + + +# Disable Tests (report submitted to PHP QA) +SKIPTEST = 1 +ENABLE_CHECK = 0 + +# System Rules/Configuration +include gar/category.mk Modified: csw/mgar/pkg/php4/trunk/checksums =================================================================== --- csw/mgar/pkg/php4/trunk/checksums 2009-05-13 13:40:09 UTC (rev 4833) +++ csw/mgar/pkg/php4/trunk/checksums 2009-05-13 14:59:41 UTC (rev 4834) @@ -1 +1,2 @@ -39013 7731 download/php-4.3.6.tar.bz2 +c7fe7ddb9ff68f6cc47cbdc334e3df62 download/pgsql.diff +2e3b2a0e27f10cb84fd00e5ecd7a1880 download/php-4.4.9.tar.bz2 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4.postinstall 2009-05-13 14:59:41 UTC (rev 4834) @@ -0,0 +1,142 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin +PKG_INSTALL_ROOT=${PKG_INSTALL_ROOT:-'/'} +PHP_LIB=$PKG_INSTALL_ROOT/opt/csw/php4/lib +PHP_BIN=$PKG_INSTALL_ROOT/opt/csw/php4/bin +PHP_INI=$PHP_LIB/php.ini + +if [ ! -f $PHP_INI ]; then + cp -p $PHP_INI.CSW $PHP_INI +else + echo "php.ini already exists" + + extdir_ext=`${PHP_BIN}/php -i |grep 'PHP Extension' |awk '{print $NF}'` + extdir="${PHP_LIB}/php/extensions/no-debug-non-zts-${extdir_ext}" + curextdir=`perl -lne '/(no-debug-non-zts-[0-9]+)/ && print $1' $PHP_INI` + + if [ "$extdir" != "$curextdir" ]; then + echo "updating extension_dir..." + perl -i.bak -plne "s,no-debug-non-zts-[0-9]+,$extdir," $PHP_INI + + old_list="`sed -ne 's/^extension=\(.*\)\.so/\1/p' $PHP_INI`" + new_pkgs='' + non_pkgs='' + for ext in `echo ${old_list}`; do + if grep "extension=$ext" $PHP_INI.CSW; then + new_pkgs="${new_pkgs} php4_${ext}" + else + non_pkgs="${non_pkgs} ${ext}" + fi + done + + cat << _EOT_ + +****************************************************************************** +* NOTICE: The existing php.ini file is from an older version of PHP4. +* +* ************* PLEASE READ ************* +* +* Starting with php4-5.2.9,REV=2009.04.29 the CSW php5 suite has been +* broken out into seperate packages for the modules. +* +_EOT_ +if [ -n "${new_pkgs}" ]; then + cat << _EOT_ +* ************* PLEASE READ ************* +* +* Your existing config contains the following extensions +* that now have become external packages: +* +_EOT_ +cnt=1 +for name in `echo ${new_pkgs}`; do + if [ ${cnt} -eq 1 ]; then + echo "* \c" + fi + if [ `expr ${cnt} % 4` -ne 0 ]; then + echo "${name} \c" + cnt=`expr ${cnt} + 1` + else + echo "${name}" + cnt=1 + fi +done +if [ ${cnt} -ne 1 ]; then + echo +fi +cat << _EOT_ +* +* to keep the same functionality as the original install +* you will need to install them using pkg-get +* +* If you have issues with missing extensions, Please check +* the catalog for the missing extension before filing a bug report +* +_EOT_ +else + cat << _EOT_ +* ************* PLEASE READ ************* +* +* Your existing config does not contain any shared extensions +* that are now packages. If you have issues with missing extensions, +* Please Check the catalog for the missing extension before +* filing a bug report. +* +_EOT_ +fi +if [ -n "${non_pkgs}" ]; then + cat << _EOT_ +* ************* PLEASE READ ************* +* +* Your existing config contains the following extensions +* that are not part of CSW build: +* +_EOT_ +cnt=1 +for name in `echo ${non_pkgs}`; do + if [ ${cnt} -eq 1 ]; then + echo "* \c" + fi + if [ `expr ${cnt} % 4` -ne 0 ]; then + echo "${name} \c" + cnt=`expr ${cnt} + 1` + else + echo "${name}" + cnt=1 + fi +done +if [ ${cnt} -ne 1 ]; then + echo +fi +cat << _EOT_ +* +* Please verify they are still working after this upgrade. +* +_EOT_ +fi +cat << _EOT_ +****************************************************************************** + +****************************************************************************** +* WARNING: Short open tag support in this release of CSWphp4 is DISABLED by +* default. If you rely on short open tag ( tags are recognized. +; NOTE: Using short tags should be avoided when developing applications or +; libraries that are meant for redistribution, or deployment on PHP +; servers which are not under your control, because short tags may not +; be supported on the target server. For portable, redistributable code, +; be sure not to use short tags. +short_open_tag = Off + +; Allow ASP-style <% %> tags. +asp_tags = Off + +; The number of significant digits displayed in floating point numbers. +precision = 14 + +; Enforce year 2000 compliance (will cause problems with non-compliant browsers) +y2k_compliance = On + +; Output buffering allows you to send header lines (including cookies) even +; after you send body content, at the price of slowing PHP's output layer a +; bit. You can enable output buffering during runtime by calling the output +; buffering functions. You can also enable output buffering for all files by +; setting this directive to On. If you wish to limit the size of the buffer +; to a certain size - you can use a maximum number of bytes instead of 'On', as +; a value for this directive (e.g., output_buffering=4096). +output_buffering = 4096 + +; You can redirect all of the output of your scripts to a function. For +; example, if you set output_handler to "mb_output_handler", character +; encoding will be transparently converted to the specified encoding. +; Setting any output handler automatically turns on output buffering. +; Note: People who wrote portable scripts should not depend on this ini +; directive. Instead, explicitly set the output handler using ob_start(). +; Using this ini directive may cause problems unless you know what script +; is doing. +; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler" +; and you cannot use both "ob_gzhandler" and "zlib.output_compression". +; Note: output_handler must be empty if this is set 'On' !!!! +; Instead you must use zlib.output_handler. +;output_handler = + +; Transparent output compression using the zlib library +; Valid values for this option are 'off', 'on', or a specific buffer size +; to be used for compression (default is 4KB) +; Note: Resulting chunk size may vary due to nature of compression. PHP +; outputs chunks that are few hundreds bytes each as a result of +; compression. If you prefer a larger chunk size for better +; performance, enable output_buffering in addition. +; Note: You need to use zlib.output_handler instead of the standard +; output_handler, or otherwise the output will be corrupted. +zlib.output_compression = Off +;zlib.output_compression_level = -1 + +; You cannot specify additional output handlers if zlib.output_compression +; is activated here. This setting does the same as output_handler but in +; a different order. +;zlib.output_handler = + +; Implicit flush tells PHP to tell the output layer to flush itself +; automatically after every output block. This is equivalent to calling the +; PHP function flush() after each and every call to print() or echo() and each +; and every HTML block. Turning this option on has serious performance +; implications and is generally recommended for debugging purposes only. +implicit_flush = Off + +; The unserialize callback function will be called (with the undefined class' +; name as parameter), if the unserializer finds an undefined class +; which should be instantiated. +; A warning appears if the specified function is not defined, or if the +; function doesn't include/implement the missing class. +; So only set this entry, if you really want to implement such a +; callback-function. +unserialize_callback_func= + +; When floats & doubles are serialized store serialize_precision significant +; digits after the floating point. The default value ensures that when floats +; are decoded with unserialize, the data will remain the same. +serialize_precision = 100 + +; Whether to enable the ability to force arguments to be passed by reference +; at function call time. This method is deprecated and is likely to be +; unsupported in future versions of PHP/Zend. The encouraged method of +; specifying which arguments should be passed by reference is in the function +; declaration. You're encouraged to try and turn this option Off and make +; sure your scripts work properly with it in order to ensure they will work +; with future versions of the language (you will receive a warning each time +; you use this feature, and the argument will be passed by value instead of by +; reference). +allow_call_time_pass_reference = Off + +; +; Safe Mode +; +safe_mode = Off + +; By default, Safe Mode does a UID compare check when +; opening files. If you want to relax this to a GID compare, +; then turn on safe_mode_gid. +safe_mode_gid = Off + +; When safe_mode is on, UID/GID checks are bypassed when +; including files from this directory and its subdirectories. +; (directory must also be in include_path or full path must +; be used when including) +safe_mode_include_dir = + +; When safe_mode is on, only executables located in the safe_mode_exec_dir +; will be allowed to be executed via the exec family of functions. +safe_mode_exec_dir = + +; Setting certain environment variables may be a potential security breach. +; This directive contains a comma-delimited list of prefixes. In Safe Mode, +; the user may only alter environment variables whose names begin with the +; prefixes supplied here. By default, users will only be able to set +; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR). +; +; Note: If this directive is empty, PHP will let the user modify ANY +; environment variable! +safe_mode_allowed_env_vars = PHP_ + +; This directive contains a comma-delimited list of environment variables that +; the end user won't be able to change using putenv(). These variables will be +; protected even if safe_mode_allowed_env_vars is set to allow to change them. +safe_mode_protected_env_vars = LD_LIBRARY_PATH + +; open_basedir, if set, limits all file operations to the defined directory +; and below. This directive makes most sense if used in a per-directory +; or per-virtualhost web server configuration file. This directive is +; *NOT* affected by whether Safe Mode is turned On or Off. +;open_basedir = + +; This directive allows you to disable certain functions for security reasons. +; It receives a comma-delimited list of function names. This directive is +; *NOT* affected by whether Safe Mode is turned On or Off. +disable_functions = + +; This directive allows you to disable certain classes for security reasons. +; It receives a comma-delimited list of class names. This directive is +; *NOT* affected by whether Safe Mode is turned On or Off. +disable_classes = + +; Colors for Syntax Highlighting mode. Anything that's acceptable in +; would work. +;highlight.string = #DD0000 +;highlight.comment = #FF9900 +;highlight.keyword = #007700 +;highlight.bg = #FFFFFF +;highlight.default = #0000BB +;highlight.html = #000000 + +; If enabled, the request will be allowed to complete even if the user aborts +; the request. Consider enabling it if executing long request, which may end up +; being interrupted by the user or a browser timing out. +; ignore_user_abort = On + +; Determines the size of the realpath cache to be used by PHP. This value should +; be increased on systems where PHP opens many files to reflect the quantity of +; the file operations performed. +; realpath_cache_size=16k + +; Duration of time, in seconds for which to cache realpath information for a given +; file or directory. For systems with rarely changing files, consider increasing this +; value. +; realpath_cache_ttl=120 + +; +; Misc +; +; Decides whether PHP may expose the fact that it is installed on the server +; (e.g. by adding its signature to the Web server header). It is no security +; threat in any way, but it makes it possible to determine whether you use PHP +; on your server or not. +expose_php = On + + +;;;;;;;;;;;;;;;;;;; +; Resource Limits ; +;;;;;;;;;;;;;;;;;;; + +max_execution_time = 30 ; Maximum execution time of each script, in seconds +max_input_time = 60 ; Maximum amount of time each script may spend parsing request data +memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) + + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Error handling and logging ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; error_reporting is a bit-field. Or each number up to get desired error +; reporting level +; E_ALL - All errors and warnings (doesn't include E_STRICT) +; E_ERROR - fatal run-time errors +; E_RECOVERABLE_ERROR - almost fatal run-time errors +; E_WARNING - run-time warnings (non-fatal errors) +; E_PARSE - compile-time parse errors +; E_NOTICE - run-time notices (these are warnings which often result +; from a bug in your code, but it's possible that it was +; intentional (e.g., using an uninitialized variable and +; relying on the fact it's automatically initialized to an +; empty string) +; E_STRICT - run-time notices, enable to have PHP suggest changes +; to your code which will ensure the best interoperability +; and forward compatibility of your code +; E_CORE_ERROR - fatal errors that occur during PHP's initial startup +; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's +; initial startup +; E_COMPILE_ERROR - fatal compile-time errors +; E_COMPILE_WARNING - compile-time warnings (non-fatal errors) +; E_USER_ERROR - user-generated error message +; E_USER_WARNING - user-generated warning message +; E_USER_NOTICE - user-generated notice message +; +; Examples: +; +; - Show all errors, except for notices and coding standards warnings +; +;error_reporting = E_ALL & ~E_NOTICE +; +; - Show all errors, except for notices +; +;error_reporting = E_ALL & ~E_NOTICE | E_STRICT +; +; - Show only errors +; +;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR +; +; - Show all errors, except coding standards warnings +; +error_reporting = E_ALL + +; Print out errors (as a part of the output). For production web sites, +; you're strongly encouraged to turn this feature off, and use error logging +; instead (see below). Keeping display_errors enabled on a production web site +; may reveal security information to end users, such as file paths on your Web +; server, your database schema or other information. +display_errors = Off + +; Even when display_errors is on, errors that occur during PHP's startup +; sequence are not displayed. It's strongly recommended to keep +; display_startup_errors off, except for when debugging. +display_startup_errors = Off + +; Log errors into a log file (server-specific log, stderr, or error_log (below)) +; As stated above, you're strongly advised to use error logging in place of +; error displaying on production web sites. +log_errors = On + +; Set maximum length of log_errors. In error_log information about the source is +; added. The default is 1024 and 0 allows to not apply any maximum length at all. +log_errors_max_len = 1024 + +; Do not log repeated messages. Repeated errors must occur in same file on same +; line until ignore_repeated_source is set true. +ignore_repeated_errors = Off + +; Ignore source of message when ignoring repeated messages. When this setting +; is On you will not log errors with repeated messages from different files or +; source lines. +ignore_repeated_source = Off + +; If this parameter is set to Off, then memory leaks will not be shown (on +; stdout or in the log). This has only effect in a debug compile, and if +; error reporting includes E_WARNING in the allowed list +report_memleaks = On + +;report_zend_debug = 0 + +; Store the last error/warning message in $php_errormsg (boolean). +track_errors = Off + +; Disable the inclusion of HTML tags in error messages. +; Note: Never use this feature for production boxes. +;html_errors = Off + +; If html_errors is set On PHP produces clickable error messages that direct +; to a page describing the error or function causing the error in detail. +; You can download a copy of the PHP manual from http://www.php.net/docs.php +; and change docref_root to the base URL of your local copy including the +; leading '/'. You must also specify the file extension being used including +; the dot. +; Note: Never use this feature for production boxes. +;docref_root = "/phpmanual/" +;docref_ext = .html + +; String to output before an error message. +;error_prepend_string = "" + +; String to output after an error message. +;error_append_string = "" + +; Log errors to specified file. +;error_log = filename + +; Log errors to syslog (Event Log on NT, not valid in Windows 95). +;error_log = syslog + + +;;;;;;;;;;;;;;;;; +; Data Handling ; +;;;;;;;;;;;;;;;;; +; +; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 + +; The separator used in PHP generated URLs to separate arguments. +; Default is "&". +;arg_separator.output = "&" + +; List of separator(s) used by PHP to parse input URLs into variables. +; Default is "&". +; NOTE: Every character in this directive is considered as separator! +;arg_separator.input = ";&" + +; This directive describes the order in which PHP registers GET, POST, Cookie, +; Environment and Built-in variables (G, P, C, E & S respectively, often +; referred to as EGPCS or GPC). Registration is done from left to right, newer +; values override older values. +variables_order = "GPCS" + +; Whether or not to register the EGPCS variables as global variables. You may +; want to turn this off if you don't want to clutter your scripts' global scope +; with user data. This makes most sense when coupled with track_vars - in which +; case you can access all of the GPC variables through the $HTTP_*_VARS[], +; variables. +; +; You should do your best to write your scripts so that they do not require +; register_globals to be on; Using form variables as globals can easily lead +; to possible security problems, if the code is not very well thought of. +register_globals = Off + +; Whether or not to register the old-style input arrays, HTTP_GET_VARS +; and friends. If you're not using them, it's recommended to turn them off, +; for performance reasons. +register_long_arrays = Off + +; This directive tells PHP whether to declare the argv&argc variables (that +; would contain the GET information). If you don't use these variables, you +; should turn it off for increased performance. +register_argc_argv = Off + +; When enabled, the SERVER and ENV variables are created when they're first +; used (Just In Time) instead of when the script starts. If these variables +; are not used within a script, having this directive on will result in a +; performance gain. The PHP directives register_globals, register_long_arrays, +; and register_argc_argv must be disabled for this directive to have any affect. +auto_globals_jit = On + +; Maximum size of POST data that PHP will accept. +post_max_size = 8M + +; Magic quotes +; + +; Magic quotes for incoming GET/POST/Cookie data. +magic_quotes_gpc = Off + +; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. +magic_quotes_runtime = Off + +; Use Sybase-style magic quotes (escape ' with '' instead of \'). +magic_quotes_sybase = Off + +; Automatically add files before or after any PHP document. +auto_prepend_file = +auto_append_file = + +; As of 4.0b4, PHP always outputs a character encoding by default in +; the Content-type: header. To disable sending of the charset, simply +; set it to be empty. +; +; PHP's built-in default is text/html +default_mimetype = "text/html" +;default_charset = "iso-8859-1" + +; Always populate the $HTTP_RAW_POST_DATA variable. +;always_populate_raw_post_data = On + + +;;;;;;;;;;;;;;;;;;;;;;;;; +; Paths and Directories ; +;;;;;;;;;;;;;;;;;;;;;;;;; + +; UNIX: "/path1:/path2" +;include_path = ".:/php/includes" +; +; Windows: "\path1;\path2" +;include_path = ".;c:\php\includes" + +; The root of the PHP pages, used only if nonempty. +; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root +; if you are running php as a CGI under any web server (other than IIS) +; see documentation for security issues. The alternate is to use the +; cgi.force_redirect configuration below +doc_root = + +; The directory under which PHP opens the script using /~username used only +; if nonempty. +user_dir = + +; Directory in which the loadable extensions (modules) reside. +extension_dir = "PHPEXTDIR" + +; Whether or not to enable the dl() function. The dl() function does NOT work +; properly in multithreaded servers, such as IIS or Zeus, and is automatically +; disabled on them. +enable_dl = On + +; cgi.force_redirect is necessary to provide security running PHP as a CGI under +; most web servers. Left undefined, PHP turns this on by default. You can +; turn it off here AT YOUR OWN RISK +; **You CAN safely turn this off for IIS, in fact, you MUST.** +; cgi.force_redirect = 1 + +; if cgi.nph is enabled it will force cgi to always sent Status: 200 with +; every request. +; cgi.nph = 1 + +; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape +; (iPlanet) web servers, you MAY need to set an environment variable name that PHP +; will look for to know it is OK to continue execution. Setting this variable MAY +; cause security issues, KNOW WHAT YOU ARE DOING FIRST. +; cgi.redirect_status_env = ; + +; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate +; security tokens of the calling client. This allows IIS to define the +; security context that the request runs under. mod_fastcgi under Apache +; does not currently support this feature (03/17/2002) +; Set to 1 if running under IIS. Default is zero. +; fastcgi.impersonate = 1; + +; Disable logging through FastCGI connection +; fastcgi.log = 0 + +; cgi.rfc2616_headers configuration option tells PHP what type of headers to +; use when sending HTTP response code. If it's set 0 PHP sends Status: header that +; is supported by Apache. When this option is set to 1 PHP will send +; RFC2616 compliant header. +; Default is zero. +;cgi.rfc2616_headers = 0 + + +;;;;;;;;;;;;;;;; +; File Uploads ; +;;;;;;;;;;;;;;;; + +; Whether to allow HTTP file uploads. +file_uploads = On + +; Temporary directory for HTTP uploaded files (will use system default if not +; specified). +;upload_tmp_dir = + +; Maximum allowed size for uploaded files. +upload_max_filesize = 2M + + +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; + +; Whether to allow the treatment of URLs (like http:// or ftp://) as files. +allow_url_fopen = On + +; Whether to allow include/require to open URLs (like http:// or ftp://) as files. +allow_url_include = Off + +; Define the anonymous ftp password (your email address) +;from="john at doe.com" + +; Define the User-Agent string +; user_agent="PHP" + +; Default timeout for socket based streams (seconds) +default_socket_timeout = 60 + +; If your scripts have to deal with files from Macintosh systems, +; or you are running on a Mac and need to deal with files from +; unix or win32 systems, setting this flag will cause PHP to +; automatically detect the EOL character in those files so that +; fgets() and file() will work regardless of the source of the file. +; auto_detect_line_endings = Off + + +;;;;;;;;;;;;;;;;;;;;;; +; Dynamic Extensions ; +;;;;;;;;;;;;;;;;;;;;;; +; +; If you wish to have an extension loaded automatically, use the following +; syntax: +; +; extension=modulename.extension +; +; For example, on Windows: +; +; extension=msql.dll +; +; ... or under UNIX: +; +; extension=msql.so +; +; Note that it should be the name of the module only; no directory information +; needs to go here. Specify the location of the extension with the +; extension_dir directive above. + +; CSW Extensions +;extension=bcmath.so +;extension=bz2.so +;extension=calendar.so +;extension=ctype.so +;extension=curl.so +;extension=dba.so +;extension=dbase.so +;extension=dom.so +;extension=exif.so +;extension=ftp.so +;extension=gd.so +;extension=gettext.so +;extension=gmp.so +;extension=hash.so +;extension=iconv.so +;extension=imap.so +;extension=json.so +;extension=ldap.so +;extension=mbstring.so +;extension=mcrypt.so +;extension=mhash.so +;extension=mime_magic.so +;extension=mssql.so +;extension=mysql.so +;extension=mysqli.so +;extension=ncurses.so +;extension=odbc.so +;extension=openssl.so +;extension=pcntl.so +;extension=pdo.so +;extension=pdo_mysql.so +;extension=pdo_odbc.so +;extension=pdo_pgsql.so +;extension=pdo_sqlite.so +;extension=pgsql.so +;extension=posix.so +;extension=pspell.so +;extension=readline.so +;extension=session.so +;extension=shmop.so +;extension=snmp.so +;extension=soap.so +;extension=sockets.so +;extension=sqlite.so +;extension=sysvsem.so +;extension=sysvmsg.so +;extension=sysvshm.so +;extension=tidy.so +;extension=tokenizer.so +;extension=wddx.so +;extension=xmlreader.so +;extension=xmlrpc.so +;extension=xmlwriter.so +;extension=xsl.so +;extension=zip.so + +; Windows Extensions +; Note that ODBC support is built in, so no dll is needed for it. +; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5) +; extension folders as well as the separate PECL DLL download (PHP 5). +; Be sure to appropriately set the extension_dir directive. + +;extension=php_bz2.dll +;extension=php_curl.dll +;extension=php_dba.dll +;extension=php_dbase.dll +;extension=php_exif.dll +;extension=php_fdf.dll +;extension=php_gd2.dll +;extension=php_gettext.dll +;extension=php_gmp.dll +;extension=php_ifx.dll +;extension=php_imap.dll +;extension=php_interbase.dll +;extension=php_ldap.dll +;extension=php_mbstring.dll +;extension=php_mcrypt.dll +;extension=php_mhash.dll +;extension=php_mime_magic.dll +;extension=php_ming.dll +;extension=php_msql.dll +;extension=php_mssql.dll +;extension=php_mysql.dll +;extension=php_mysqli.dll +;extension=php_oci8.dll +;extension=php_openssl.dll +;extension=php_pdo.dll +;extension=php_pdo_firebird.dll +;extension=php_pdo_mssql.dll +;extension=php_pdo_mysql.dll +;extension=php_pdo_oci.dll +;extension=php_pdo_oci8.dll +;extension=php_pdo_odbc.dll +;extension=php_pdo_pgsql.dll +;extension=php_pdo_sqlite.dll +;extension=php_pgsql.dll +;extension=php_pspell.dll +;extension=php_shmop.dll +;extension=php_snmp.dll +;extension=php_soap.dll +;extension=php_sockets.dll +;extension=php_sqlite.dll +;extension=php_sybase_ct.dll +;extension=php_tidy.dll +;extension=php_xmlrpc.dll +;extension=php_xsl.dll +;extension=php_zip.dll + +;;;;;;;;;;;;;;;;;;; +; Module Settings ; +;;;;;;;;;;;;;;;;;;; + +[Date] +; Defines the default timezone used by the date functions +;date.timezone = + +;date.default_latitude = 31.7667 +;date.default_longitude = 35.2333 + +;date.sunrise_zenith = 90.583333 +;date.sunset_zenith = 90.583333 + +[filter] +;filter.default = unsafe_raw +;filter.default_flags = + +[iconv] +;iconv.input_encoding = ISO-8859-1 +;iconv.internal_encoding = ISO-8859-1 +;iconv.output_encoding = ISO-8859-1 + +[sqlite] +;sqlite.assoc_case = 0 + +[xmlrpc] +;xmlrpc_error_number = 0 +;xmlrpc_errors = 0 + +[Pcre] +;pcre.recursion_limit=100000 +;pcre.backtrack_limit=100000 + +[Syslog] +; Whether or not to define the various syslog variables (e.g. $LOG_PID, +; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In +; runtime, you can define these variables by calling define_syslog_variables(). +define_syslog_variables = Off + +[mail function] +; For Win32 only. +SMTP = localhost +smtp_port = 25 + +; For Win32 only. +;sendmail_from = me at example.com + +; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). +sendmail_path = /usr/lib/sendmail -t -i + +; Force the addition of the specified parameters to be passed as extra parameters +; to the sendmail binary. These parameters will always replace the value of +; the 5th parameter to mail(), even in safe mode. +;mail.force_extra_parameters = + +[SQL] +sql.safe_mode = Off + +[ODBC] +;odbc.default_db = Not yet implemented +;odbc.default_user = Not yet implemented +;odbc.default_pw = Not yet implemented + +; Allow or prevent persistent links. +odbc.allow_persistent = On + +; Check that a connection is still valid before reuse. +odbc.check_persistent = On + +; Maximum number of persistent links. -1 means no limit. +odbc.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +odbc.max_links = -1 + +; Handling of LONG fields. Returns number of bytes to variables. 0 means +; passthru. +odbc.defaultlrl = 4096 + +; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. +; See the documentation on odbc_binmode and odbc_longreadlen for an explanation +; of uodbc.defaultlrl and uodbc.defaultbinmode +odbc.defaultbinmode = 1 + +[MySQL] +; Allow or prevent persistent links. +mysql.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +mysql.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +mysql.max_links = -1 + +; Default port number for mysql_connect(). If unset, mysql_connect() will use +; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the +; compile-time value defined MYSQL_PORT (in that order). Win32 will only look +; at MYSQL_PORT. +mysql.default_port = + +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +mysql.default_socket = + +; Default host for mysql_connect() (doesn't apply in safe mode). +mysql.default_host = + +; Default user for mysql_connect() (doesn't apply in safe mode). +mysql.default_user = + +; Default password for mysql_connect() (doesn't apply in safe mode). +; Note that this is generally a *bad* idea to store passwords in this file. +; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password") +; and reveal this password! And of course, any users with read access to this +; file will be able to reveal the password as well. +mysql.default_password = + +; Maximum time (in seconds) for connect timeout. -1 means no limit +mysql.connect_timeout = 60 + +; Trace mode. When trace_mode is active (=On), warnings for table/index scans and +; SQL-Errors will be displayed. +mysql.trace_mode = Off + +[MySQLi] + +; Maximum number of links. -1 means no limit. +mysqli.max_links = -1 + +; Default port number for mysqli_connect(). If unset, mysqli_connect() will use +; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the +; compile-time value defined MYSQL_PORT (in that order). Win32 will only look +; at MYSQL_PORT. +mysqli.default_port = 3306 + +; Default socket name for local MySQL connects. If empty, uses the built-in +; MySQL defaults. +mysqli.default_socket = + +; Default host for mysql_connect() (doesn't apply in safe mode). +mysqli.default_host = + +; Default user for mysql_connect() (doesn't apply in safe mode). +mysqli.default_user = + +; Default password for mysqli_connect() (doesn't apply in safe mode). +; Note that this is generally a *bad* idea to store passwords in this file. +; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") +; and reveal this password! And of course, any users with read access to this +; file will be able to reveal the password as well. +mysqli.default_pw = + +; Allow or prevent reconnect +mysqli.reconnect = Off + +[mSQL] +; Allow or prevent persistent links. +msql.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +msql.max_persistent = -1 + +; Maximum number of links (persistent+non persistent). -1 means no limit. +msql.max_links = -1 + +[OCI8] +; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA) +;oci8.privileged_connect = Off + +; Connection: The maximum number of persistent OCI8 connections per +; process. Using -1 means no limit. +;oci8.max_persistent = -1 + +; Connection: The maximum number of seconds a process is allowed to +; maintain an idle persistent connection. Using -1 means idle +; persistent connections will be maintained forever. +;oci8.persistent_timeout = -1 + +; Connection: The number of seconds that must pass before issuing a +; ping during oci_pconnect() to check the connection validity. When +; set to 0, each oci_pconnect() will cause a ping. Using -1 disables +; pings completely. +;oci8.ping_interval = 60 + +; Tuning: This option enables statement caching, and specifies how +; many statements to cache. Using 0 disables statement caching. +;oci8.statement_cache_size = 20 + +; Tuning: Enables statement prefetching and sets the default number of +; rows that will be fetched automatically after statement execution. +;oci8.default_prefetch = 10 + +; Compatibility. Using On means oci_close() will not close +; oci_connect() and oci_new_connect() connections. +;oci8.old_oci_close_semantics = Off + +[PostgresSQL] +; Allow or prevent persistent links. +pgsql.allow_persistent = On + +; Detect broken persistent links always with pg_pconnect(). +; Auto reset feature requires a little overheads. +pgsql.auto_reset_persistent = Off + +; Maximum number of persistent links. -1 means no limit. +pgsql.max_persistent = -1 + +; Maximum number of links (persistent+non persistent). -1 means no limit. +pgsql.max_links = -1 + +; Ignore PostgreSQL backends Notice message or not. +; Notice message logging require a little overheads. +pgsql.ignore_notice = 0 + +; Log PostgreSQL backends Noitce message or not. +; Unless pgsql.ignore_notice=0, module cannot log notice message. +pgsql.log_notice = 0 + +[Sybase] +; Allow or prevent persistent links. +sybase.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +sybase.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +sybase.max_links = -1 + +;sybase.interface_file = "/usr/sybase/interfaces" + +; Minimum error severity to display. +sybase.min_error_severity = 10 + +; Minimum message severity to display. +sybase.min_message_severity = 10 + +; Compatibility mode with old versions of PHP 3.0. +; If on, this will cause PHP to automatically assign types to results according +; to their Sybase type, instead of treating them all as strings. This +; compatibility mode will probably not stay around forever, so try applying +; whatever necessary changes to your code, and turn it off. +sybase.compatability_mode = Off + +[Sybase-CT] +; Allow or prevent persistent links. +sybct.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +sybct.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +sybct.max_links = -1 + +; Minimum server message severity to display. +sybct.min_server_severity = 10 + +; Minimum client message severity to display. +sybct.min_client_severity = 10 + +[bcmath] +; Number of decimal digits for all bcmath functions. +bcmath.scale = 0 + +[browscap] +;browscap = extra/browscap.ini + +[Informix] +; Default host for ifx_connect() (doesn't apply in safe mode). +ifx.default_host = + +; Default user for ifx_connect() (doesn't apply in safe mode). +ifx.default_user = + +; Default password for ifx_connect() (doesn't apply in safe mode). +ifx.default_password = + +; Allow or prevent persistent links. +ifx.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +ifx.max_persistent = -1 + +; Maximum number of links (persistent + non-persistent). -1 means no limit. +ifx.max_links = -1 + +; If on, select statements return the contents of a text blob instead of its id. +ifx.textasvarchar = 0 + +; If on, select statements return the contents of a byte blob instead of its id. +ifx.byteasvarchar = 0 + +; Trailing blanks are stripped from fixed-length char columns. May help the +; life of Informix SE users. +ifx.charasvarchar = 0 + +; If on, the contents of text and byte blobs are dumped to a file instead of +; keeping them in memory. +ifx.blobinfile = 0 + +; NULL's are returned as empty strings, unless this is set to 1. In that case, +; NULL's are returned as string 'NULL'. +ifx.nullformat = 0 + +[Session] +; Handler used to store/retrieve data. +session.save_handler = files + +; Argument passed to save_handler. In the case of files, this is the path +; where data files are stored. Note: Windows users have to change this +; variable in order to use PHP's session functions. +; +; As of PHP 4.0.1, you can define the path as: +; +; session.save_path = "N;/path" +; +; where N is an integer. Instead of storing all the session files in +; /path, what this will do is use subdirectories N-levels deep, and +; store the session data in those directories. This is useful if you +; or your OS have problems with lots of files in one directory, and is +; a more efficient layout for servers that handle lots of sessions. +; +; NOTE 1: PHP will not create this directory structure automatically. +; You can use the script in the ext/session dir for that purpose. +; NOTE 2: See the section on garbage collection below if you choose to +; use subdirectories for session storage +; +; The file storage module creates files using mode 600 by default. +; You can change that by using +; +; session.save_path = "N;MODE;/path" +; +; where MODE is the octal representation of the mode. Note that this +; does not overwrite the process's umask. +session.save_path = "/tmp" + +; Whether to use cookies. +session.use_cookies = 1 + +;session.cookie_secure = + +; This option enables administrators to make their users invulnerable to +; attacks which involve passing session ids in URLs; defaults to 0. +; session.use_only_cookies = 1 + +; Name of the session (used as cookie name). +session.name = PHPSESSID + +; Initialize session on request startup. +session.auto_start = 0 + +; Lifetime in seconds of cookie or, if 0, until browser is restarted. +session.cookie_lifetime = 0 + +; The path for which the cookie is valid. +session.cookie_path = / + +; The domain for which the cookie is valid. +session.cookie_domain = + +; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript. +session.cookie_httponly = + +; Handler used to serialize data. php is the standard serializer of PHP. +session.serialize_handler = php + +; Define the probability that the 'garbage collection' process is started +; on every session initialization. +; The probability is calculated by using gc_probability/gc_divisor, +; e.g. 1/100 means there is a 1% chance that the GC process starts +; on each request. + +session.gc_probability = 1 +session.gc_divisor = 1000 + +; After this number of seconds, stored data will be seen as 'garbage' and +; cleaned up by the garbage collection process. +session.gc_maxlifetime = 1440 + +; NOTE: If you are using the subdirectory option for storing session files +; (see session.save_path above), then garbage collection does *not* +; happen automatically. You will need to do your own garbage +; collection through a shell script, cron entry, or some other method. +; For example, the following script would is the equivalent of +; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): +; cd /path/to/sessions; find -cmin +24 | xargs rm + +; PHP 4.2 and less have an undocumented feature/bug that allows you to +; to initialize a session variable in the global scope, albeit register_globals +; is disabled. PHP 4.3 and later will warn you, if this feature is used. +; You can disable the feature and the warning separately. At this time, +; the warning is only displayed, if bug_compat_42 is enabled. + +session.bug_compat_42 = 0 +session.bug_compat_warn = 1 + +; Check HTTP Referer to invalidate externally stored URLs containing ids. +; HTTP_REFERER has to contain this substring for the session to be +; considered as valid. +session.referer_check = + +; How many bytes to read from the file. +session.entropy_length = 0 + +; Specified here to create the session id. +session.entropy_file = + +;session.entropy_length = 16 + +;session.entropy_file = /dev/urandom + +; Set to {nocache,private,public,} to determine HTTP caching aspects +; or leave this empty to avoid sending anti-caching headers. +session.cache_limiter = nocache + +; Document expires after n minutes. +session.cache_expire = 180 + +; trans sid support is disabled by default. +; Use of trans sid may risk your users security. +; Use this option with caution. +; - User may send URL contains active session ID +; to other person via. email/irc/etc. +; - URL that contains active session ID may be stored +; in publically accessible computer. +; - User may access your site with the same session ID +; always using URL stored in browser's history or bookmarks. +session.use_trans_sid = 0 + +; Select a hash function +; 0: MD5 (128 bits) +; 1: SHA-1 (160 bits) +session.hash_function = 0 + +; Define how many bits are stored in each character when converting +; the binary hash data to something readable. +; +; 4 bits: 0-9, a-f +; 5 bits: 0-9, a-v +; 6 bits: 0-9, a-z, A-Z, "-", "," +session.hash_bits_per_character = 5 + +; The URL rewriter will look for URLs in a defined set of HTML tags. +; form/fieldset are special; if you include them here, the rewriter will +; add a hidden field with the info which is otherwise appended +; to URLs. If you want XHTML conformity, remove the form entry. +; Note that all valid entries require a "=", even if no value follows. +url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" + +[MSSQL] +; Allow or prevent persistent links. +mssql.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +mssql.max_persistent = -1 + +; Maximum number of links (persistent+non persistent). -1 means no limit. +mssql.max_links = -1 + +; Minimum error severity to display. +mssql.min_error_severity = 10 + +; Minimum message severity to display. +mssql.min_message_severity = 10 + +; Compatibility mode with old versions of PHP 3.0. +mssql.compatability_mode = Off + +; Connect timeout +;mssql.connect_timeout = 5 + +; Query timeout +;mssql.timeout = 60 + +; Valid range 0 - 2147483647. Default = 4096. +;mssql.textlimit = 4096 + +; Valid range 0 - 2147483647. Default = 4096. +;mssql.textsize = 4096 + +; Limits the number of records in each batch. 0 = all records in one batch. +;mssql.batchsize = 0 + +; Specify how datetime and datetim4 columns are returned +; On => Returns data converted to SQL server settings +; Off => Returns values as YYYY-MM-DD hh:mm:ss +;mssql.datetimeconvert = On + +; Use NT authentication when connecting to the server +mssql.secure_connection = Off + +; Specify max number of processes. -1 = library default +; msdlib defaults to 25 +; FreeTDS defaults to 4096 +;mssql.max_procs = -1 + +; Specify client character set. +; If empty or not set the client charset from freetds.comf is used +; This is only used when compiled with FreeTDS +;mssql.charset = "ISO-8859-1" + +[Assertion] +; Assert(expr); active by default. +;assert.active = On + +; Issue a PHP warning for each failed assertion. +;assert.warning = On + +; Don't bail out by default. +;assert.bail = Off + +; User-function to be called if an assertion fails. +;assert.callback = 0 + +; Eval the expression with current error_reporting(). Set to true if you want +; error_reporting(0) around the eval(). +;assert.quiet_eval = 0 + +[COM] +; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs +;com.typelib_file = +; allow Distributed-COM calls +;com.allow_dcom = true +; autoregister constants of a components typlib on com_load() +;com.autoregister_typelib = true +; register constants casesensitive +;com.autoregister_casesensitive = false +; show warnings on duplicate constant registrations +;com.autoregister_verbose = true + +[mbstring] +; language for internal character representation. +;mbstring.language = Japanese + +; internal/script encoding. +; Some encoding cannot work as internal encoding. +; (e.g. SJIS, BIG5, ISO-2022-*) +;mbstring.internal_encoding = EUC-JP + +; http input encoding. +;mbstring.http_input = auto + +; http output encoding. mb_output_handler must be +; registered as output buffer to function +;mbstring.http_output = SJIS + +; enable automatic encoding translation according to +; mbstring.internal_encoding setting. Input chars are +; converted to internal encoding by setting this to On. +; Note: Do _not_ use automatic encoding translation for +; portable libs/applications. +;mbstring.encoding_translation = Off + +; automatic encoding detection order. +; auto means +;mbstring.detect_order = auto + +; substitute_character used when character cannot be converted +; one from another +;mbstring.substitute_character = none; + +; overload(replace) single byte functions by mbstring functions. +; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(), +; etc. Possible values are 0,1,2,4 or combination of them. +; For example, 7 for overload everything. +; 0: No overload +; 1: Overload mail() function +; 2: Overload str*() functions +; 4: Overload ereg*() functions +;mbstring.func_overload = 0 + +; enable strict encoding detection. +;mbstring.strict_encoding = Off + +[FrontBase] +;fbsql.allow_persistent = On +;fbsql.autocommit = On +;fbsql.show_timestamp_decimals = Off +;fbsql.default_database = +;fbsql.default_database_password = +;fbsql.default_host = +;fbsql.default_password = +;fbsql.default_user = "_SYSTEM" +;fbsql.generate_warnings = Off +;fbsql.max_connections = 128 +;fbsql.max_links = 128 +;fbsql.max_persistent = -1 +;fbsql.max_results = 128 + +[gd] +; Tell the jpeg decode to libjpeg warnings and try to create +; a gd image. The warning will then be displayed as notices +; disabled by default +;gd.jpeg_ignore_warning = 0 + +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +;exif.encode_unicode = ISO-8859-15 +;exif.decode_unicode_motorola = UCS-2BE +;exif.decode_unicode_intel = UCS-2LE +;exif.encode_jis = +;exif.decode_jis_motorola = JIS +;exif.decode_jis_intel = JIS + +[Tidy] +; The path to a default tidy configuration file to use when using tidy +;tidy.default_config = /usr/local/lib/php/default.tcfg + +; Should tidy clean and repair output automatically? +; WARNING: Do not use this option if you are generating non-html content +; such as dynamic images +tidy.clean_output = Off + +[soap] +; Enables or disables WSDL caching feature. +soap.wsdl_cache_enabled=1 +; Sets the directory name where SOAP extension will put cache files. +soap.wsdl_cache_dir="/tmp" +; (time to live) Sets the number of second while cached file will be used +; instead of original one. +soap.wsdl_cache_ttl=86400 + +; Local Variables: +; tab-width: 4 +; End: Added: csw/mgar/pkg/php4/trunk/files/phpext =================================================================== --- csw/mgar/pkg/php4/trunk/files/phpext (rev 0) +++ csw/mgar/pkg/php4/trunk/files/phpext 2009-05-13 14:59:41 UTC (rev 4834) @@ -0,0 +1,106 @@ +#!/bin/ksh +# +# phpext - PHP extension manager. +# + +program=${0##*/} + +# Default path to php.ini +php_ini=/opt/csw/php4/lib/php.ini + +# Usage printer +function do_usage { + + # Print short usage + cat << EOT +Usage: $program [-h] [-e|-d|-q] [-i ] ... +EOT + + # Print long usage + if [ "$1" = "long" ]; then + cat << EOT + +Options: + + -e Enable extensions + -d Disable extensions + -q Query mode + -i Path to php.ini (default: $php_ini) + -h Display usage information + extN Extension names + +Examples: + + # Enable the exif and wddx extensions + $program -e exif wddx + + # Disable xsl + $program -d xsl + + # Check whether mbstring is enabled + $program -q mbstring + mbstring_enabled=true + + # Query all extensions from a different php.ini + $program -i /path/to/php.ini -q + +EOT + fi + + exit 1 +} + +# Process command line options +typeset op +while getopts ":hedqi:" opts +do + case ${opts} in + e) op=enable ;; + d) op=disable ;; + i) php_ini=$OPTARG ;; + q) op=query ;; + h) do_usage "long" ;; + \?) do_usage "long" ;; + esac +done + +shift $((${OPTIND} - 1 )) + +if [ "$op" = "enable" ] || [ "$op" = "disable" ] && [ -z "$@" ]; then + print "Error: No extensions specified for action $op" + do_usage +fi + +if [ ! -f $php_ini ]; then + print "Error: Cannot access $php_ini" + do_usage +fi + +# In modes other than query, stream edit the file +typeset perlswitches php_extensions php_op +perlswitches="-lne" +if [ "$op" != "query" ]; then + perlswitches="-i.bak -p $perlswitches" +fi + +# Spawn perl to do the dirty work +export php_extensions="$@" +export php_op=$op +exec perl $perlswitches ' + BEGIN { + use Config; + use vars qw/$grabext $php_op/; + $exts = $ENV{php_extensions} + ? join("|", split(/\s+/, $ENV{php_extensions})) : qr{\S+}; + + $grabext = qr{^(;)?extension=($exts)\.$Config{dlext}\s*$}; + $php_op = $ENV{php_op}; + } + if (my ($disabled, $extname) = $_ =~ $grabext) { + if ($php_op eq "query") { + printf "%s_enabled=%s\n", $extname, ($disabled ? "false" : "true"); + } + elsif ($php_op eq "enable") { s/^;// if $disabled } + elsif ($php_op eq "disable") { s/^/;/ unless $disabled } + }' $php_ini + Property changes on: csw/mgar/pkg/php4/trunk/files/phpext ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 13 18:00:41 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 13 May 2009 16:00:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[4835] csw/mgar/pkg Message-ID: Revision: 4835 http://gar.svn.sourceforge.net/gar/?rev=4835&view=rev Author: valholla Date: 2009-05-13 16:00:40 +0000 (Wed, 13 May 2009) Log Message: ----------- initial checkin Added Paths: ----------- csw/mgar/pkg/libmcal/ csw/mgar/pkg/libmcal/Makefile csw/mgar/pkg/libmcal/branches/ csw/mgar/pkg/libmcal/tags/ csw/mgar/pkg/libmcal/trunk/ csw/mgar/pkg/libmcal/trunk/Makefile csw/mgar/pkg/libmcal/trunk/files/ Added: csw/mgar/pkg/libmcal/Makefile =================================================================== --- csw/mgar/pkg/libmcal/Makefile (rev 0) +++ csw/mgar/pkg/libmcal/Makefile 2009-05-13 16:00:40 UTC (rev 4835) @@ -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) Added: csw/mgar/pkg/libmcal/trunk/Makefile =================================================================== --- csw/mgar/pkg/libmcal/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libmcal/trunk/Makefile 2009-05-13 16:00:40 UTC (rev 4835) @@ -0,0 +1,40 @@ +GARNAME = libmcal +GARVERSION = 0.7 +CATEGORIES = lib + +DESCRIPTION = Modular Calendar Access Library +define BLURB + mcal stands for Modular Calendar Access Library. + libmcal is a C library for accessing calendars. + It's written to be very modular, with pluggable drivers. + One of the main drivers it handles is ICAP. +endef + +SF_PROJ = $(call TOLOWER,$(GARNAME)) +MASTER_SITES = $(SF_MIRRORS) + +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +PACKAGES = CSWlibmcal +CATALOGNAME_CSWlibmcal = libmcal +SPKG_DESC_CSWlibmcal = $(DESCRIPTION) + + +REQUIRED_PKGS_CSWlibmcal = CSWexpat CSWfconfig CSWftype2 CSWiconv + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + +BUILD64 = 1 +NO_ISAEXEC = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +## There are no tests for this +TEST_SCRIPTS = skip + +test-skip: + $(DONADA) + +include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 13 18:01:26 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 13 May 2009 16:01:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[4836] csw/mgar/pkg/libmcal/trunk/ Message-ID: Revision: 4836 http://gar.svn.sourceforge.net/gar/?rev=4836&view=rev Author: valholla Date: 2009-05-13 16:01:26 +0000 (Wed, 13 May 2009) Log Message: ----------- externals Property Changed: ---------------- csw/mgar/pkg/libmcal/trunk/ Property changes on: csw/mgar/pkg/libmcal/trunk ___________________________________________________________________ Added: svn:externals + 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 valholla at users.sourceforge.net Wed May 13 22:20:15 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 13 May 2009 20:20:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[4837] csw/mgar/pkg/libmcal/trunk Message-ID: Revision: 4837 http://gar.svn.sourceforge.net/gar/?rev=4837&view=rev Author: valholla Date: 2009-05-13 20:20:15 +0000 (Wed, 13 May 2009) Log Message: ----------- checkin for package Modified Paths: -------------- csw/mgar/pkg/libmcal/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libmcal/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/libmcal/trunk/ Property changes on: csw/mgar/pkg/libmcal/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Modified: csw/mgar/pkg/libmcal/trunk/Makefile =================================================================== --- csw/mgar/pkg/libmcal/trunk/Makefile 2009-05-13 16:01:26 UTC (rev 4836) +++ csw/mgar/pkg/libmcal/trunk/Makefile 2009-05-13 20:20:15 UTC (rev 4837) @@ -1,6 +1,8 @@ GARNAME = libmcal GARVERSION = 0.7 CATEGORIES = lib +DRIVERNAME = mcaldrivers +DRIVERVERSION = 0.9 DESCRIPTION = Modular Calendar Access Library define BLURB @@ -10,26 +12,28 @@ One of the main drivers it handles is ICAP. endef -SF_PROJ = $(call TOLOWER,$(GARNAME)) MASTER_SITES = $(SF_MIRRORS) -DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +BUILD64 = 1 +NO_ISAEXEC = 1 +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(DRIVERNAME)-$(DRIVERVERSION).tar.gz +DISTNAME = $(GARNAME) PACKAGES = CSWlibmcal CATALOGNAME_CSWlibmcal = libmcal SPKG_DESC_CSWlibmcal = $(DESCRIPTION) +#REQUIRED_PKGS_CSWlibmcal = -REQUIRED_PKGS_CSWlibmcal = CSWexpat CSWfconfig CSWftype2 CSWiconv - # We define upstream file regex so we can be notifed of # new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -BUILD64 = 1 -NO_ISAEXEC = 1 CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-mstore +CONFIGURE_ARGS += --with-icap ## There are no tests for this TEST_SCRIPTS = skip @@ -37,4 +41,26 @@ test-skip: $(DONADA) +post-extract-modulated: + perl -i -pe 's|CC=gcc|CC=$(CC)|' $(WORKSRC)/Makefile.in + perl -i -pe 's|CFLAGS=.*|CFLAGS=$$\\$$(INCLUDE) $(CFLAGS) -xcode=pic32 |' $(WORKSRC)/Makefile.in + perl -i -pne 's|gcc|$$\\$$(CC)|' $(WORKSRC)/Makefile.in + perl -i -pne 's|-shared|-G -xcode=pic32 |' $(WORKSRC)/Makefile.in + perl -i -pne 's|install -m 755 -o 0 -g 0|ginstall -m 0755|' $(WORKSRC)/Makefile.in + perl -i -pne 's|install -m 644 -o 0 -g 0|ginstall -m 0644|' $(WORKSRC)/Makefile.in + perl -i -pne 's|\@prefix\@/lib|\@libdir\@|' $(WORKSRC)/Makefile.in + perl -i -pne 's|\@prefix\@/include|\@includedir\@|' $(WORKSRC)/Makefile.in + # + cd $(WORKDIR); gzip -dc $(abspath $(DOWNLOADDIR)/$(DRIVERNAME)-$(DRIVERVERSION).tar.gz) |tar xf - + cd $(WORKDIR)/mcal-drivers; cp -R * $(abspath $(WORKSRC)) + perl -i -pe 's|CC=gcc|CC=$(CC)|' $(WORKSRC)/mstore/Makefile + perl -i -pe 's|CFLAGS=.*|CFLAGS=$$\\$$(INCLUDE) $(CFLAGS) -xcode=pic32 |' $(WORKSRC)/mstore/Makefile + perl -i -pe 's|ld -r|$$\\$$(CC) $$\\$$(CFLAGS) -G -xcode=pic32 |' $(WORKSRC)/mstore/Makefile + gmake -C $(WORKSRC)/mstore + perl -i -pe 's|CC=gcc|CC=$(CC)|' $(WORKSRC)/icap/Makefile + perl -i -pe 's|CFLAGS=.*|CFLAGS=$$\\$$(INCLUDE) $(CFLAGS) -xcode=pic32 |' $(WORKSRC)/icap/Makefile + perl -i -pe 's|ld -r|$$\\$$(CC) $$\\$$(CFLAGS) -G -xcode=pic32 |' $(WORKSRC)/icap/Makefile + gmake -C $(WORKSRC)/icap + @$(MAKECOOKIE) + include gar/category.mk Added: csw/mgar/pkg/libmcal/trunk/checksums =================================================================== --- csw/mgar/pkg/libmcal/trunk/checksums (rev 0) +++ csw/mgar/pkg/libmcal/trunk/checksums 2009-05-13 20:20:15 UTC (rev 4837) @@ -0,0 +1,2 @@ +8d8f16e59a7e859c1407df3d72052825 download/libmcal-0.7.tar.gz +c8c96f6cd574139b88a13f6084164cfa download/mcaldrivers-0.9.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 13 22:35:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 13 May 2009 20:35:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4838] csw/mgar/pkg/libmcal/trunk/Makefile Message-ID: Revision: 4838 http://gar.svn.sourceforge.net/gar/?rev=4838&view=rev Author: valholla Date: 2009-05-13 20:35:25 +0000 (Wed, 13 May 2009) Log Message: ----------- tweak post-extract-modulated Modified Paths: -------------- csw/mgar/pkg/libmcal/trunk/Makefile Modified: csw/mgar/pkg/libmcal/trunk/Makefile =================================================================== --- csw/mgar/pkg/libmcal/trunk/Makefile 2009-05-13 20:20:15 UTC (rev 4837) +++ csw/mgar/pkg/libmcal/trunk/Makefile 2009-05-13 20:35:25 UTC (rev 4838) @@ -55,11 +55,9 @@ cd $(WORKDIR)/mcal-drivers; cp -R * $(abspath $(WORKSRC)) perl -i -pe 's|CC=gcc|CC=$(CC)|' $(WORKSRC)/mstore/Makefile perl -i -pe 's|CFLAGS=.*|CFLAGS=$$\\$$(INCLUDE) $(CFLAGS) -xcode=pic32 |' $(WORKSRC)/mstore/Makefile - perl -i -pe 's|ld -r|$$\\$$(CC) $$\\$$(CFLAGS) -G -xcode=pic32 |' $(WORKSRC)/mstore/Makefile gmake -C $(WORKSRC)/mstore perl -i -pe 's|CC=gcc|CC=$(CC)|' $(WORKSRC)/icap/Makefile perl -i -pe 's|CFLAGS=.*|CFLAGS=$$\\$$(INCLUDE) $(CFLAGS) -xcode=pic32 |' $(WORKSRC)/icap/Makefile - perl -i -pe 's|ld -r|$$\\$$(CC) $$\\$$(CFLAGS) -G -xcode=pic32 |' $(WORKSRC)/icap/Makefile gmake -C $(WORKSRC)/icap @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Wed May 13 23:09:54 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 13 May 2009 21:09:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[4839] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4839 http://gar.svn.sourceforge.net/gar/?rev=4839&view=rev Author: valholla Date: 2009-05-13 21:09:54 +0000 (Wed, 13 May 2009) Log Message: ----------- checkin Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/checksums csw/mgar/pkg/php4/trunk/files/pgsql.diff Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-13 20:35:25 UTC (rev 4838) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-13 21:09:54 UTC (rev 4839) @@ -53,7 +53,7 @@ CONFIGURE_ARGS += --enable-gd-native-ttf CONFIGURE_ARGS += --enable-mbregex=shared CONFIGURE_ARGS += --enable-mbstring=shared -CONFIGURE_ARGS += --enable-mcal=shared +CONFIGURE_ARGS += --enable-mcal=shared,$(prefix) CONFIGURE_ARGS += --enable-sockets CONFIGURE_ARGS += --with-bz2=shared,$(prefix) CONFIGURE_ARGS += --with-db4=$(prefix)/bdb44 Modified: csw/mgar/pkg/php4/trunk/checksums =================================================================== --- csw/mgar/pkg/php4/trunk/checksums 2009-05-13 20:35:25 UTC (rev 4838) +++ csw/mgar/pkg/php4/trunk/checksums 2009-05-13 21:09:54 UTC (rev 4839) @@ -1,2 +1,2 @@ -c7fe7ddb9ff68f6cc47cbdc334e3df62 download/pgsql.diff +3870a95f52c9637798294243694fdd47 download/pgsql.diff 2e3b2a0e27f10cb84fd00e5ecd7a1880 download/php-4.4.9.tar.bz2 Modified: csw/mgar/pkg/php4/trunk/files/pgsql.diff =================================================================== --- csw/mgar/pkg/php4/trunk/files/pgsql.diff 2009-05-13 20:35:25 UTC (rev 4838) +++ csw/mgar/pkg/php4/trunk/files/pgsql.diff 2009-05-13 21:09:54 UTC (rev 4839) @@ -11,3 +11,16 @@ break; fi done +--- php-4.4.9/configure.o 2009-05-13 10:19:30.843906388 -0500 ++++ php-4.4.9/configure 2009-05-13 10:19:57.853444779 -0500 +@@ -76431,8 +76431,8 @@ + echo $ac_n "checking for pg_config""... $ac_c" 1>&6 + echo "configure:76433: checking for pg_config" >&5 + for i in $PHP_PGSQL $PHP_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do +- if test -x $i/pg_config; then +- PG_CONFIG="$i/pg_config" ++ if test -x $i/pg_config32; then ++ PG_CONFIG="$i/pg_config32" + break; + fi + done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 03:34:39 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 01:34:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[4840] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4840 http://gar.svn.sourceforge.net/gar/?rev=4840&view=rev Author: valholla Date: 2009-05-14 01:34:37 +0000 (Thu, 14 May 2009) Log Message: ----------- compiling cgi Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/files/php.ini.CSW Removed Paths: ------------- csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_disable.sh csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_enable.sh csw/mgar/pkg/php4/trunk/files/pear.conf.CSW csw/mgar/pkg/php4/trunk/files/phpext Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-13 21:09:54 UTC (rev 4839) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 01:34:37 UTC (rev 4840) @@ -53,7 +53,6 @@ CONFIGURE_ARGS += --enable-gd-native-ttf CONFIGURE_ARGS += --enable-mbregex=shared CONFIGURE_ARGS += --enable-mbstring=shared -CONFIGURE_ARGS += --enable-mcal=shared,$(prefix) CONFIGURE_ARGS += --enable-sockets CONFIGURE_ARGS += --with-bz2=shared,$(prefix) CONFIGURE_ARGS += --with-db4=$(prefix)/bdb44 @@ -72,6 +71,7 @@ CONFIGURE_ARGS += --with-kerberos=$(prefix) CONFIGURE_ARGS += --with-ldap=shared,$(prefix) CONFIGURE_ARGS += --with-ldap-sasl=$(prefix) +CONFIGURE_ARGS += --with-mcal=shared,$(prefix) CONFIGURE_ARGS += --with-mssql=shared,$(prefix) CONFIGURE_ARGS += --with-mysql=shared,$(prefix) CONFIGURE_ARGS += --with-ncurses=shared,$(prefix) Deleted: csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_disable.sh =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_disable.sh 2009-05-13 21:09:54 UTC (rev 4839) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_disable.sh 2009-05-14 01:34:37 UTC (rev 4840) @@ -1,39 +0,0 @@ -#!/bin/sh - -CSW_PREFIX=/opt/csw -if [ -n "$PKG_INSTALL_ROOT" ]; then - CSW_PREFIX=${PKG_INSTALL_ROOT}${CSW_PREFIX} -fi - -PHP_INI=$CSW_PREFIX/php4/lib/php.ini -PHP_BIN=$CSW_PREFIX/php4/bin -PHP_EXTMGR=$PHP_BIN/phpext - -if [ -z "$PHPEXT" ]; then - PHPEXT=`echo $PKGINST | sed -e 's,CSWphp4,,' -e 's,\..*,,'` - PHPEXT=${PHPEXT:-${PKGINST}} -fi - -# Bail if php.ini does not exist -if [ ! -f $PHP_INI ]; then - cat << END -Cannot locate $PHP_INI -- Please disable $PHPEXT.so manually -in the appropriate php.ini file using $PHP_EXTMGR - -END - - exit 0 -fi - -$PHP_EXTMGR -i $PHP_INI -d $PHPEXT -if [ $? -ne 0 ]; then - cat << END -Failed to disable $PHPEXT support -- please examine -$PHP_INI and disable the extension manually. -END -else - echo "PHP extension $PHPEXT.so is disabled in $PHP_INI." -fi - -exit 0 - Deleted: csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_enable.sh =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_enable.sh 2009-05-13 21:09:54 UTC (rev 4839) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4_ext_enable.sh 2009-05-14 01:34:37 UTC (rev 4840) @@ -1,39 +0,0 @@ -#!/bin/sh - -CSW_PREFIX=/opt/csw -if [ -n "$PKG_INSTALL_ROOT" ]; then - CSW_PREFIX=${PKG_INSTALL_ROOT}${CSW_PREFIX} -fi - -PHP_INI=$CSW_PREFIX/php4/lib/php.ini -PHP_BIN=$CSW_PREFIX/php4/bin -PHP_EXTMGR=$PHP_BIN/phpext - -if [ -z "$PHPEXT" ]; then - PHPEXT=`echo $PKGINST | sed -e 's,CSWphp4,,' -e 's,\..*,,'` - PHPEXT=${PHPEXT:-${PKGINST}} -fi - -# Bail if php.ini does not exist -if [ ! -f $PHP_INI ]; then - cat << END -Cannot locate $PHP_INI -- Please enable $PHPEXT.so manually -in the appropriate php.ini file using $PHP_EXTMGR - -END - - exit 0 -fi - -$PHP_EXTMGR -i $PHP_INI -e $PHPEXT -if [ $? -ne 0 ]; then - cat << END -Failed to enable $PHPEXT support -- please examine -$PHP_INI and enable the extension manually. -END -else - echo "PHP extension $PHPEXT.so is enabled in $PHP_INI." -fi - -exit 0 - Deleted: csw/mgar/pkg/php4/trunk/files/pear.conf.CSW =================================================================== --- csw/mgar/pkg/php4/trunk/files/pear.conf.CSW 2009-05-13 21:09:54 UTC (rev 4839) +++ csw/mgar/pkg/php4/trunk/files/pear.conf.CSW 2009-05-14 01:34:37 UTC (rev 4840) @@ -1,2 +0,0 @@ -#PEAR_Config 0.9 -a:29:{s:9:"cache_dir";s:15:"/tmp/pear/cache";s:15:"default_channel";s:12:"pear.php.net";s:16:"preferred_mirror";s:12:"pear.php.net";s:13:"remote_config";s:0:"";s:13:"auto_discover";i:0;s:13:"master_server";s:12:"pear.php.net";s:10:"http_proxy";s:0:"";s:7:"php_dir";s:21:"/opt/csw/php4/lib/php";s:7:"ext_dir";s:58:"/opt/csw/php4/lib/php/extensions/no-debug-non-zts-20060613";s:7:"doc_dir";s:25:"/opt/csw/php4/lib/php/doc";s:7:"bin_dir";s:17:"/opt/csw/php4/bin";s:8:"data_dir";s:26:"/opt/csw/php4/lib/php/data";s:7:"cfg_dir";s:25:"/opt/csw/php4/lib/php/cfg";s:7:"www_dir";s:28:"/opt/csw/php4/lib/php/htdocs";s:8:"test_dir";s:26:"/opt/csw/php4/lib/php/test";s:8:"temp_dir";s:14:"/tmp/pear/temp";s:12:"download_dir";s:18:"/tmp/pear/download";s:7:"php_bin";s:21:"/opt/csw/php4/bin/php";s:7:"php_ini";s:0:"";s:8:"username";s:0:"";s:8:"password";s:0:"";s:7:"verbose";i:1;s:15:"preferred_state";s:6:"stable";s:5:"umask";i:18;s:9:"cache_ttl";i:3600;s:8:"sig_type";s:3:"gpg";s:7:"sig_bin";s:16:"/opt /csw/bin/gpg";s:9:"sig_keyid";s:0:"";s:10:"sig_keydir";s:26:"/opt/csw/php4/etc/pearkeys";} Modified: csw/mgar/pkg/php4/trunk/files/php.ini.CSW =================================================================== --- csw/mgar/pkg/php4/trunk/files/php.ini.CSW 2009-05-13 21:09:54 UTC (rev 4839) +++ csw/mgar/pkg/php4/trunk/files/php.ini.CSW 2009-05-14 01:34:37 UTC (rev 4840) @@ -1,7 +1,18 @@ [PHP] +;;;;;;;;;;; +; WARNING ; +;;;;;;;;;;; +; This is the default settings file for new PHP installations. +; By default, PHP installs itself with a configuration suitable for +; development purposes, and *NOT* for production purposes. +; For several security-oriented considerations that should be taken +; before going online with your site, please consult php.ini-recommended +; and http://php.net/manual/en/security.php. + + ;;;;;;;;;;;;;;;;;;; -; About php.ini ; +; About this file ; ;;;;;;;;;;;;;;;;;;; ; This file controls many aspects of PHP's behavior. In order for PHP to ; read it, it must be named 'php.ini'. PHP looks for it in the current @@ -43,72 +54,12 @@ ; If you use constants in your value, and these constants belong to a ; dynamically loaded extension (either a PHP extension or a Zend extension), ; you may only use these constants *after* the line that loads the extension. -; ; -;;;;;;;;;;;;;;;;;;; -; About this file ; -;;;;;;;;;;;;;;;;;;; -; This is the recommended, PHP 5-style version of the php.ini-dist file. It -; sets some non standard settings, that make PHP more efficient, more secure, -; and encourage cleaner coding. -; -; The price is that with these settings, PHP may be incompatible with some -; applications, and sometimes, more difficult to develop with. Using this -; file is warmly recommended for production sites. As all of the changes from -; the standard settings are thoroughly documented, you can go over each one, -; and decide whether you want to use it or not. -; -; For general information about the php.ini file, please consult the php.ini-dist -; file, included in your PHP distribution. -; -; This file is different from the php.ini-dist file in the fact that it features -; different values for several directives, in order to improve performance, while -; possibly breaking compatibility with the standard out-of-the-box behavior of -; PHP. Please make sure you read what's different, and modify your scripts -; accordingly, if you decide to use this file instead. -; -; - register_long_arrays = Off [Performance] -; Disables registration of the older (and deprecated) long predefined array -; variables ($HTTP_*_VARS). Instead, use the superglobals that were -; introduced in PHP 4.1.0 -; - display_errors = Off [Security] -; With this directive set to off, errors that occur during the execution of -; scripts will no longer be displayed as a part of the script output, and thus, -; will no longer be exposed to remote users. With some errors, the error message -; content may expose information about your script, web server, or database -; server that may be exploitable for hacking. Production sites should have this -; directive set to off. -; - log_errors = On [Security] -; This directive complements the above one. Any errors that occur during the -; execution of your script will be logged (typically, to your server's error log, -; but can be configured in several ways). Along with setting display_errors to off, -; this setup gives you the ability to fully understand what may have gone wrong, -; without exposing any sensitive information to remote users. -; - output_buffering = 4096 [Performance] -; Set a 4KB output buffer. Enabling output buffering typically results in less -; writes, and sometimes less packets sent on the wire, which can often lead to -; better performance. The gain this directive actually yields greatly depends -; on which Web server you're working with, and what kind of scripts you're using. -; - register_argc_argv = Off [Performance] -; Disables registration of the somewhat redundant $argv and $argc global -; variables. -; - magic_quotes_gpc = Off [Performance] -; Input data is no longer escaped with slashes so that it can be sent into -; SQL databases without further manipulation. Instead, you should use the -; function addslashes() on each input element you wish to send to a database. -; - variables_order = "GPCS" [Performance] -; The environment variables are not hashed into the $_ENV. To access -; environment variables, you can use getenv() instead. -; - error_reporting = E_ALL [Code Cleanliness, Security(?)] -; By default, PHP suppresses errors of type E_NOTICE. These error messages -; are emitted for non-critical errors, but that could be a symptom of a bigger -; problem. Most notably, this will cause error messages about the use -; of uninitialized variables to be displayed. -; - allow_call_time_pass_reference = Off [Code cleanliness] -; It's not possible to decide to force a variable to be passed by reference -; when calling a function. The PHP 4 style to do this is by making the -; function require the relevant argument by reference. +; All the values in the php.ini-dist file correspond to the builtin +; defaults (that is, if no php.ini is used, or if you delete these lines, +; the builtin defaults will be identical). + ;;;;;;;;;;;;;;;;;;;; ; Language Options ; ;;;;;;;;;;;;;;;;;;;; @@ -116,22 +67,19 @@ ; Enable the PHP scripting language engine under Apache. engine = On -; Enable compatibility mode with Zend Engine 1 (PHP 4.x) -zend.ze1_compatibility_mode = Off - -; Allow the tags are recognized. +; Allow the tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because short tags may not ; be supported on the target server. For portable, redistributable code, ; be sure not to use short tags. -short_open_tag = Off +short_open_tag = On ; Allow ASP-style <% %> tags. asp_tags = Off ; The number of significant digits displayed in floating point numbers. -precision = 14 +precision = 12 ; Enforce year 2000 compliance (will cause problems with non-compliant browsers) y2k_compliance = On @@ -143,7 +91,7 @@ ; setting this directive to On. If you wish to limit the size of the buffer ; to a certain size - you can use a maximum number of bytes instead of 'On', as ; a value for this directive (e.g., output_buffering=4096). -output_buffering = 4096 +output_buffering = Off ; You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character @@ -151,25 +99,22 @@ ; Setting any output handler automatically turns on output buffering. ; Note: People who wrote portable scripts should not depend on this ini ; directive. Instead, explicitly set the output handler using ob_start(). -; Using this ini directive may cause problems unless you know what script +; Using this ini directive may cause problems unless you know what script ; is doing. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler" -; and you cannot use both "ob_gzhandler" and "zlib.output_compression". -; Note: output_handler must be empty if this is set 'On' !!!! -; Instead you must use zlib.output_handler. +; and you cannot use both "ob_gzhandler" and "zlib.output_compression". ;output_handler = ; Transparent output compression using the zlib library ; Valid values for this option are 'off', 'on', or a specific buffer size ; to be used for compression (default is 4KB) -; Note: Resulting chunk size may vary due to nature of compression. PHP -; outputs chunks that are few hundreds bytes each as a result of -; compression. If you prefer a larger chunk size for better +; Note: Resulting chunk size may vary due to nature of compression. PHP +; outputs chunks that are few hundreds bytes each as a result of +; compression. If you prefer a larger chunk size for better ; performance, enable output_buffering in addition. ; Note: You need to use zlib.output_handler instead of the standard ; output_handler, or otherwise the output will be corrupted. zlib.output_compression = Off -;zlib.output_compression_level = -1 ; You cannot specify additional output handlers if zlib.output_compression ; is activated here. This setting does the same as output_handler but in @@ -188,7 +133,7 @@ ; which should be instantiated. ; A warning appears if the specified function is not defined, or if the ; function doesn't include/implement the missing class. -; So only set this entry, if you really want to implement such a +; So only set this entry, if you really want to implement such a ; callback-function. unserialize_callback_func= @@ -206,9 +151,8 @@ ; with future versions of the language (you will receive a warning each time ; you use this feature, and the argument will be passed by value instead of by ; reference). -allow_call_time_pass_reference = Off +allow_call_time_pass_reference = On -; ; Safe Mode ; safe_mode = Off @@ -222,7 +166,7 @@ ; including files from this directory and its subdirectories. ; (directory must also be in include_path or full path must ; be used when including) -safe_mode_include_dir = +safe_mode_include_dir = ; When safe_mode is on, only executables located in the safe_mode_exec_dir ; will be allowed to be executed via the exec family of functions. @@ -260,7 +204,7 @@ disable_classes = ; Colors for Syntax Highlighting mode. Anything that's acceptable in -; would work. +; would work. ;highlight.string = #DD0000 ;highlight.comment = #FF9900 ;highlight.keyword = #007700 @@ -268,21 +212,7 @@ ;highlight.default = #0000BB ;highlight.html = #000000 -; If enabled, the request will be allowed to complete even if the user aborts -; the request. Consider enabling it if executing long request, which may end up -; being interrupted by the user or a browser timing out. -; ignore_user_abort = On -; Determines the size of the realpath cache to be used by PHP. This value should -; be increased on systems where PHP opens many files to reflect the quantity of -; the file operations performed. -; realpath_cache_size=16k - -; Duration of time, in seconds for which to cache realpath information for a given -; file or directory. For systems with rarely changing files, consider increasing this -; value. -; realpath_cache_ttl=120 - ; ; Misc ; @@ -299,18 +229,17 @@ max_execution_time = 30 ; Maximum execution time of each script, in seconds max_input_time = 60 ; Maximum amount of time each script may spend parsing request data -memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) +;max_input_nesting_level = 500 ; Maximum input variable nesting level +memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Error handling and logging ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; error_reporting is a bit-field. Or each number up to get desired error ; reporting level -; E_ALL - All errors and warnings (doesn't include E_STRICT) +; E_ALL - All errors and warnings ; E_ERROR - fatal run-time errors -; E_RECOVERABLE_ERROR - almost fatal run-time errors ; E_WARNING - run-time warnings (non-fatal errors) ; E_PARSE - compile-time parse errors ; E_NOTICE - run-time notices (these are warnings which often result @@ -318,9 +247,6 @@ ; intentional (e.g., using an uninitialized variable and ; relying on the fact it's automatically initialized to an ; empty string) -; E_STRICT - run-time notices, enable to have PHP suggest changes -; to your code which will ensure the best interoperability -; and forward compatibility of your code ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's ; initial startup @@ -332,28 +258,24 @@ ; ; Examples: ; -; - Show all errors, except for notices and coding standards warnings +; - Show all errors, except for notices ; ;error_reporting = E_ALL & ~E_NOTICE ; -; - Show all errors, except for notices -; -;error_reporting = E_ALL & ~E_NOTICE | E_STRICT -; ; - Show only errors ; -;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR +;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; -; - Show all errors, except coding standards warnings +; - Show all errors except for notices ; -error_reporting = E_ALL +error_reporting = E_ALL & ~E_NOTICE ; Print out errors (as a part of the output). For production web sites, ; you're strongly encouraged to turn this feature off, and use error logging ; instead (see below). Keeping display_errors enabled on a production web site ; may reveal security information to end users, such as file paths on your Web ; server, your database schema or other information. -display_errors = Off +display_errors = On ; Even when display_errors is on, errors that occur during PHP's startup ; sequence are not displayed. It's strongly recommended to keep @@ -363,7 +285,7 @@ ; Log errors into a log file (server-specific log, stderr, or error_log (below)) ; As stated above, you're strongly advised to use error logging in place of ; error displaying on production web sites. -log_errors = On +log_errors = Off ; Set maximum length of log_errors. In error_log information about the source is ; added. The default is 1024 and 0 allows to not apply any maximum length at all. @@ -373,35 +295,31 @@ ; line until ignore_repeated_source is set true. ignore_repeated_errors = Off -; Ignore source of message when ignoring repeated messages. When this setting +; Ignore source of message when ignoring repeated messages. When this setting ; is On you will not log errors with repeated messages from different files or -; source lines. +; sourcelines. ignore_repeated_source = Off ; If this parameter is set to Off, then memory leaks will not be shown (on -; stdout or in the log). This has only effect in a debug compile, and if +; stdout or in the log). This has only effect in a debug compile, and if ; error reporting includes E_WARNING in the allowed list report_memleaks = On -;report_zend_debug = 0 - ; Store the last error/warning message in $php_errormsg (boolean). track_errors = Off ; Disable the inclusion of HTML tags in error messages. -; Note: Never use this feature for production boxes. ;html_errors = Off - -; If html_errors is set On PHP produces clickable error messages that direct + +; If html_errors is set On PHP produces clickable error messages that direct ; to a page describing the error or function causing the error in detail. -; You can download a copy of the PHP manual from http://www.php.net/docs.php +; You can download a copy of the PHP manual from http://www.php.net/docs.php ; and change docref_root to the base URL of your local copy including the -; leading '/'. You must also specify the file extension being used including +; leading '/'. You must also specify the file extension being used including ; the dot. -; Note: Never use this feature for production boxes. ;docref_root = "/phpmanual/" ;docref_ext = .html - + ; String to output before an error message. ;error_prepend_string = "" @@ -422,11 +340,11 @@ ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3 ; The separator used in PHP generated URLs to separate arguments. -; Default is "&". +; Default is "&". ;arg_separator.output = "&" ; List of separator(s) used by PHP to parse input URLs into variables. -; Default is "&". +; Default is "&". ; NOTE: Every character in this directive is considered as separator! ;arg_separator.input = ";&" @@ -434,7 +352,7 @@ ; Environment and Built-in variables (G, P, C, E & S respectively, often ; referred to as EGPCS or GPC). Registration is done from left to right, newer ; values override older values. -variables_order = "GPCS" +variables_order = "EGPCS" ; Whether or not to register the EGPCS variables as global variables. You may ; want to turn this off if you don't want to clutter your scripts' global scope @@ -447,34 +365,25 @@ ; to possible security problems, if the code is not very well thought of. register_globals = Off -; Whether or not to register the old-style input arrays, HTTP_GET_VARS -; and friends. If you're not using them, it's recommended to turn them off, -; for performance reasons. -register_long_arrays = Off - ; This directive tells PHP whether to declare the argv&argc variables (that ; would contain the GET information). If you don't use these variables, you ; should turn it off for increased performance. -register_argc_argv = Off +register_argc_argv = On -; When enabled, the SERVER and ENV variables are created when they're first -; used (Just In Time) instead of when the script starts. If these variables -; are not used within a script, having this directive on will result in a -; performance gain. The PHP directives register_globals, register_long_arrays, -; and register_argc_argv must be disabled for this directive to have any affect. -auto_globals_jit = On - ; Maximum size of POST data that PHP will accept. post_max_size = 8M +; This directive is deprecated. Use variables_order instead. +gpc_order = "GPC" + ; Magic quotes ; ; Magic quotes for incoming GET/POST/Cookie data. -magic_quotes_gpc = Off +magic_quotes_gpc = On ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. -magic_quotes_runtime = Off +magic_quotes_runtime = Off ; Use Sybase-style magic quotes (escape ' with '' instead of \'). magic_quotes_sybase = Off @@ -499,7 +408,7 @@ ; Paths and Directories ; ;;;;;;;;;;;;;;;;;;;;;;;;; -; UNIX: "/path1:/path2" +; UNIX: "/path1:/path2" ;include_path = ".:/php/includes" ; ; Windows: "\path1;\path2" @@ -517,7 +426,7 @@ user_dir = ; Directory in which the loadable extensions (modules) reside. -extension_dir = "PHPEXTDIR" +extension_dir = "./" ; Whether or not to enable the dl() function. The dl() function does NOT work ; properly in multithreaded servers, such as IIS or Zeus, and is automatically @@ -534,12 +443,20 @@ ; every request. ; cgi.nph = 1 -; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape +; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP ; will look for to know it is OK to continue execution. Setting this variable MAY ; cause security issues, KNOW WHAT YOU ARE DOING FIRST. ; cgi.redirect_status_env = ; +; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's +; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok +; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting +; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting +; of zero causes PHP to behave as before. Default is zero. You should fix your scripts +; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. +; cgi.fix_pathinfo=0 + ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate ; security tokens of the calling client. This allows IIS to define the ; security context that the request runs under. mod_fastcgi under Apache @@ -555,9 +472,9 @@ ; is supported by Apache. When this option is set to 1 PHP will send ; RFC2616 compliant header. ; Default is zero. -;cgi.rfc2616_headers = 0 +;cgi.rfc2616_headers = 0 + - ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; @@ -580,9 +497,6 @@ ; Whether to allow the treatment of URLs (like http:// or ftp://) as files. allow_url_fopen = On -; Whether to allow include/require to open URLs (like http:// or ftp://) as files. -allow_url_include = Off - ; Define the anonymous ftp password (your email address) ;from="john at doe.com" @@ -617,153 +531,64 @@ ; ; extension=msql.so ; -; Note that it should be the name of the module only; no directory information +; Note that it should be the name of the module only; no directory information ; needs to go here. Specify the location of the extension with the ; extension_dir directive above. -; CSW Extensions -;extension=bcmath.so -;extension=bz2.so -;extension=calendar.so -;extension=ctype.so -;extension=curl.so -;extension=dba.so -;extension=dbase.so -;extension=dom.so -;extension=exif.so -;extension=ftp.so -;extension=gd.so -;extension=gettext.so -;extension=gmp.so -;extension=hash.so -;extension=iconv.so -;extension=imap.so -;extension=json.so -;extension=ldap.so -;extension=mbstring.so -;extension=mcrypt.so -;extension=mhash.so -;extension=mime_magic.so -;extension=mssql.so -;extension=mysql.so -;extension=mysqli.so -;extension=ncurses.so -;extension=odbc.so -;extension=openssl.so -;extension=pcntl.so -;extension=pdo.so -;extension=pdo_mysql.so -;extension=pdo_odbc.so -;extension=pdo_pgsql.so -;extension=pdo_sqlite.so -;extension=pgsql.so -;extension=posix.so -;extension=pspell.so -;extension=readline.so -;extension=session.so -;extension=shmop.so -;extension=snmp.so -;extension=soap.so -;extension=sockets.so -;extension=sqlite.so -;extension=sysvsem.so -;extension=sysvmsg.so -;extension=sysvshm.so -;extension=tidy.so -;extension=tokenizer.so -;extension=wddx.so -;extension=xmlreader.so -;extension=xmlrpc.so -;extension=xmlwriter.so -;extension=xsl.so -;extension=zip.so -; Windows Extensions -; Note that ODBC support is built in, so no dll is needed for it. -; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5) -; extension folders as well as the separate PECL DLL download (PHP 5). -; Be sure to appropriately set the extension_dir directive. - +;Windows Extensions +;Note that MySQL and ODBC support is now built in, so no dll is needed for it. +; +;extension=php_mbstring.dll ;extension=php_bz2.dll +;extension=php_cpdf.dll +;extension=php_crack.dll ;extension=php_curl.dll +;extension=php_db.dll ;extension=php_dba.dll ;extension=php_dbase.dll +;extension=php_dbx.dll +;extension=php_domxml.dll ;extension=php_exif.dll ;extension=php_fdf.dll +;extension=php_filepro.dll ;extension=php_gd2.dll ;extension=php_gettext.dll -;extension=php_gmp.dll +;extension=php_hyperwave.dll +;extension=php_iconv.dll ;extension=php_ifx.dll +;extension=php_iisfunc.dll ;extension=php_imap.dll ;extension=php_interbase.dll +;extension=php_java.dll ;extension=php_ldap.dll -;extension=php_mbstring.dll ;extension=php_mcrypt.dll ;extension=php_mhash.dll ;extension=php_mime_magic.dll ;extension=php_ming.dll -;extension=php_msql.dll ;extension=php_mssql.dll -;extension=php_mysql.dll -;extension=php_mysqli.dll +;extension=php_msql.dll ;extension=php_oci8.dll ;extension=php_openssl.dll -;extension=php_pdo.dll -;extension=php_pdo_firebird.dll -;extension=php_pdo_mssql.dll -;extension=php_pdo_mysql.dll -;extension=php_pdo_oci.dll -;extension=php_pdo_oci8.dll -;extension=php_pdo_odbc.dll -;extension=php_pdo_pgsql.dll -;extension=php_pdo_sqlite.dll +;extension=php_oracle.dll +;extension=php_pdf.dll ;extension=php_pgsql.dll -;extension=php_pspell.dll +;extension=php_printer.dll ;extension=php_shmop.dll ;extension=php_snmp.dll -;extension=php_soap.dll ;extension=php_sockets.dll -;extension=php_sqlite.dll ;extension=php_sybase_ct.dll -;extension=php_tidy.dll +;extension=php_w32api.dll ;extension=php_xmlrpc.dll -;extension=php_xsl.dll +;extension=php_xslt.dll +;extension=php_yaz.dll ;extension=php_zip.dll + ;;;;;;;;;;;;;;;;;;; ; Module Settings ; ;;;;;;;;;;;;;;;;;;; -[Date] -; Defines the default timezone used by the date functions -;date.timezone = - -;date.default_latitude = 31.7667 -;date.default_longitude = 35.2333 - -;date.sunrise_zenith = 90.583333 -;date.sunset_zenith = 90.583333 - -[filter] -;filter.default = unsafe_raw -;filter.default_flags = - -[iconv] -;iconv.input_encoding = ISO-8859-1 -;iconv.internal_encoding = ISO-8859-1 -;iconv.output_encoding = ISO-8859-1 - -[sqlite] -;sqlite.assoc_case = 0 - -[xmlrpc] -;xmlrpc_error_number = 0 -;xmlrpc_errors = 0 - -[Pcre] -;pcre.recursion_limit=100000 -;pcre.backtrack_limit=100000 - [Syslog] ; Whether or not to define the various syslog variables (e.g. $LOG_PID, ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In @@ -779,12 +604,13 @@ ;sendmail_from = me at example.com ; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). -sendmail_path = /usr/lib/sendmail -t -i +;sendmail_path = -; Force the addition of the specified parameters to be passed as extra parameters -; to the sendmail binary. These parameters will always replace the value of -; the 5th parameter to mail(), even in safe mode. -;mail.force_extra_parameters = +[Java] +;java.class.path = .\php_java.jar +;java.home = c:\jdk +;java.library = c:\jdk\jre\bin\hotspot\jvm.dll +;java.library.path = .\ [SQL] sql.safe_mode = Off @@ -804,16 +630,16 @@ odbc.max_persistent = -1 ; Maximum number of links (persistent + non-persistent). -1 means no limit. -odbc.max_links = -1 +odbc.max_links = -1 ; Handling of LONG fields. Returns number of bytes to variables. 0 means ; passthru. -odbc.defaultlrl = 4096 +odbc.defaultlrl = 4096 ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation ; of uodbc.defaultlrl and uodbc.defaultbinmode -odbc.defaultbinmode = 1 +odbc.defaultbinmode = 1 [MySQL] ; Allow or prevent persistent links. @@ -855,37 +681,6 @@ ; SQL-Errors will be displayed. mysql.trace_mode = Off -[MySQLi] - -; Maximum number of links. -1 means no limit. -mysqli.max_links = -1 - -; Default port number for mysqli_connect(). If unset, mysqli_connect() will use -; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the -; compile-time value defined MYSQL_PORT (in that order). Win32 will only look -; at MYSQL_PORT. -mysqli.default_port = 3306 - -; Default socket name for local MySQL connects. If empty, uses the built-in -; MySQL defaults. -mysqli.default_socket = - -; Default host for mysql_connect() (doesn't apply in safe mode). -mysqli.default_host = - -; Default user for mysql_connect() (doesn't apply in safe mode). -mysqli.default_user = - -; Default password for mysqli_connect() (doesn't apply in safe mode). -; Note that this is generally a *bad* idea to store passwords in this file. -; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw") -; and reveal this password! And of course, any users with read access to this -; file will be able to reveal the password as well. -mysqli.default_pw = - -; Allow or prevent reconnect -mysqli.reconnect = Off - [mSQL] ; Allow or prevent persistent links. msql.allow_persistent = On @@ -896,44 +691,12 @@ ; Maximum number of links (persistent+non persistent). -1 means no limit. msql.max_links = -1 -[OCI8] -; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA) -;oci8.privileged_connect = Off - -; Connection: The maximum number of persistent OCI8 connections per -; process. Using -1 means no limit. -;oci8.max_persistent = -1 - -; Connection: The maximum number of seconds a process is allowed to -; maintain an idle persistent connection. Using -1 means idle -; persistent connections will be maintained forever. -;oci8.persistent_timeout = -1 - -; Connection: The number of seconds that must pass before issuing a -; ping during oci_pconnect() to check the connection validity. When -; set to 0, each oci_pconnect() will cause a ping. Using -1 disables -; pings completely. -;oci8.ping_interval = 60 - -; Tuning: This option enables statement caching, and specifies how -; many statements to cache. Using 0 disables statement caching. -;oci8.statement_cache_size = 20 - -; Tuning: Enables statement prefetching and sets the default number of -; rows that will be fetched automatically after statement execution. -;oci8.default_prefetch = 10 - -; Compatibility. Using On means oci_close() will not close -; oci_connect() and oci_new_connect() connections. -;oci8.old_oci_close_semantics = Off - [PostgresSQL] ; Allow or prevent persistent links. pgsql.allow_persistent = On -; Detect broken persistent links always with pg_pconnect(). -; Auto reset feature requires a little overheads. -pgsql.auto_reset_persistent = Off +; Detect broken persistent links always with pg_pconnect(). Need a little overhead. +pgsql.auto_reset_persistent = Off ; Maximum number of persistent links. -1 means no limit. pgsql.max_persistent = -1 @@ -942,7 +705,6 @@ pgsql.max_links = -1 ; Ignore PostgreSQL backends Notice message or not. -; Notice message logging require a little overheads. pgsql.ignore_notice = 0 ; Log PostgreSQL backends Noitce message or not. @@ -967,7 +729,7 @@ ; Minimum message severity to display. sybase.min_message_severity = 10 -; Compatibility mode with old versions of PHP 3.0. +; Compatability mode with old versions of PHP 3.0. ; If on, this will cause PHP to automatically assign types to results according ; to their Sybase type, instead of treating them all as strings. This ; compatibility mode will probably not stay around forever, so try applying @@ -990,6 +752,16 @@ ; Minimum client message severity to display. sybct.min_client_severity = 10 +[dbx] +; returned column names can be converted for compatibility reasons +; possible values for dbx.colnames_case are +; "unchanged" (default, if not set) +; "lowercase" +; "uppercase" +; the recommended default is either upper- or lowercase, but +; unchanged is currently set for backwards compatibility +dbx.colnames_case = "unchanged" + [bcmath] ; Number of decimal digits for all bcmath functions. bcmath.scale = 0 @@ -1039,38 +811,24 @@ session.save_handler = files ; Argument passed to save_handler. In the case of files, this is the path -; where data files are stored. Note: Windows users have to change this +; where data files are stored. Note: Windows users have to change this ; variable in order to use PHP's session functions. -; ; As of PHP 4.0.1, you can define the path as: -; ; session.save_path = "N;/path" -; -; where N is an integer. Instead of storing all the session files in -; /path, what this will do is use subdirectories N-levels deep, and -; store the session data in those directories. This is useful if you -; or your OS have problems with lots of files in one directory, and is +; where N is an integer. Instead of storing all the session files in +; /path, what this will do is use subdirectories N-levels deep, and +; store the session data in those directories. This is useful if you +; or your OS have problems with lots of files in one directory, and is ; a more efficient layout for servers that handle lots of sessions. -; ; NOTE 1: PHP will not create this directory structure automatically. ; You can use the script in the ext/session dir for that purpose. ; NOTE 2: See the section on garbage collection below if you choose to ; use subdirectories for session storage -; -; The file storage module creates files using mode 600 by default. -; You can change that by using -; -; session.save_path = "N;MODE;/path" -; -; where MODE is the octal representation of the mode. Note that this -; does not overwrite the process's umask. -session.save_path = "/tmp" +;session.save_path = /tmp ; Whether to use cookies. session.use_cookies = 1 -;session.cookie_secure = - ; This option enables administrators to make their users invulnerable to ; attacks which involve passing session ids in URLs; defaults to 0. ; session.use_only_cookies = 1 @@ -1090,9 +848,6 @@ ; The domain for which the cookie is valid. session.cookie_domain = -; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript. -session.cookie_httponly = - ; Handler used to serialize data. php is the standard serializer of PHP. session.serialize_handler = php @@ -1103,7 +858,7 @@ ; on each request. session.gc_probability = 1 -session.gc_divisor = 1000 +session.gc_divisor = 100 ; After this number of seconds, stored data will be seen as 'garbage' and ; cleaned up by the garbage collection process. @@ -1111,8 +866,8 @@ ; NOTE: If you are using the subdirectory option for storing session files ; (see session.save_path above), then garbage collection does *not* -; happen automatically. You will need to do your own garbage -; collection through a shell script, cron entry, or some other method. +; happen automatically. You will need to do your own garbage +; collection through a shell script, cron entry, or some other method. ; For example, the following script would is the equivalent of ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): ; cd /path/to/sessions; find -cmin +24 | xargs rm @@ -1123,7 +878,7 @@ ; You can disable the feature and the warning separately. At this time, ; the warning is only displayed, if bug_compat_42 is enabled. -session.bug_compat_42 = 0 +session.bug_compat_42 = 1 session.bug_compat_warn = 1 ; Check HTTP Referer to invalidate externally stored URLs containing ids. @@ -1149,7 +904,7 @@ session.cache_expire = 180 ; trans sid support is disabled by default. -; Use of trans sid may risk your users security. +; Use of trans sid may risk your users security. ; Use this option with caution. ; - User may send URL contains active session ID ; to other person via. email/irc/etc. @@ -1159,25 +914,12 @@ ; always using URL stored in browser's history or bookmarks. session.use_trans_sid = 0 -; Select a hash function -; 0: MD5 (128 bits) -; 1: SHA-1 (160 bits) -session.hash_function = 0 - -; Define how many bits are stored in each character when converting -; the binary hash data to something readable. -; -; 4 bits: 0-9, a-f -; 5 bits: 0-9, a-v -; 6 bits: 0-9, a-z, A-Z, "-", "," -session.hash_bits_per_character = 5 - ; The URL rewriter will look for URLs in a defined set of HTML tags. ; form/fieldset are special; if you include them here, the rewriter will ; add a hidden field with the info which is otherwise appended ; to URLs. If you want XHTML conformity, remove the form entry. ; Note that all valid entries require a "=", even if no value follows. -url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" +url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" [MSSQL] ; Allow or prevent persistent links. @@ -1195,7 +937,7 @@ ; Minimum message severity to display. mssql.min_message_severity = 10 -; Compatibility mode with old versions of PHP 3.0. +; Compatability mode with old versions of PHP 3.0. mssql.compatability_mode = Off ; Connect timeout @@ -1226,11 +968,6 @@ ; FreeTDS defaults to 4096 ;mssql.max_procs = -1 -; Specify client character set. -; If empty or not set the client charset from freetds.comf is used -; This is only used when compiled with FreeTDS -;mssql.charset = "ISO-8859-1" - [Assertion] ; Assert(expr); active by default. ;assert.active = On @@ -1248,18 +985,62 @@ ; error_reporting(0) around the eval(). ;assert.quiet_eval = 0 -[COM] +[Ingres II] +; Allow or prevent persistent links. +ingres.allow_persistent = On + +; Maximum number of persistent links. -1 means no limit. +ingres.max_persistent = -1 + +; Maximum number of links, including persistents. -1 means no limit. +ingres.max_links = -1 + +; Default database (format: [node_id::]dbname[/srv_class]). +ingres.default_database = + +; Default user. +ingres.default_user = + +; Default password. +ingres.default_password = + +[Verisign Payflow Pro] +; Default Payflow Pro server. +pfpro.defaulthost = "test-payflow.verisign.com" + +; Default port to connect to. +pfpro.defaultport = 443 + +; Default timeout in seconds. +pfpro.defaulttimeout = 30 + +; Default proxy IP address (if required). +;pfpro.proxyaddress = + +; Default proxy port. +;pfpro.proxyport = + +; Default proxy logon. +;pfpro.proxylogon = + +; Default proxy password. +;pfpro.proxypassword = + +[com] ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs -;com.typelib_file = +;com.typelib_file = ; allow Distributed-COM calls ;com.allow_dcom = true ; autoregister constants of a components typlib on com_load() ;com.autoregister_typelib = true ; register constants casesensitive ;com.autoregister_casesensitive = false -; show warnings on duplicate constant registrations +; show warnings on duplicate constat registrations ;com.autoregister_verbose = true +[Printer] +;printer.default_printer = "" + [mbstring] ; language for internal character representation. ;mbstring.language = Japanese @@ -1276,7 +1057,7 @@ ; registered as output buffer to function ;mbstring.http_output = SJIS -; enable automatic encoding translation according to +; enable automatic encoding translation according to ; mbstring.internal_encoding setting. Input chars are ; converted to internal encoding by setting this to On. ; Note: Do _not_ use automatic encoding translation for @@ -1284,7 +1065,7 @@ ;mbstring.encoding_translation = Off ; automatic encoding detection order. -; auto means +; auto means ;mbstring.detect_order = auto ; substitute_character used when character cannot be converted @@ -1301,14 +1082,10 @@ ; 4: Overload ereg*() functions ;mbstring.func_overload = 0 -; enable strict encoding detection. -;mbstring.strict_encoding = Off - [FrontBase] ;fbsql.allow_persistent = On ;fbsql.autocommit = On -;fbsql.show_timestamp_decimals = Off -;fbsql.default_database = +;fbsql.default_database = ;fbsql.default_database_password = ;fbsql.default_host = ;fbsql.default_password = @@ -1318,44 +1095,26 @@ ;fbsql.max_links = 128 ;fbsql.max_persistent = -1 ;fbsql.max_results = 128 +;fbsql.batchSize = 1000 -[gd] -; Tell the jpeg decode to libjpeg warnings and try to create -; a gd image. The warning will then be displayed as notices -; disabled by default -;gd.jpeg_ignore_warning = 0 +[Crack] +; Modify the setting below to match the directory location of the cracklib +; dictionary files. Include the base filename, but not the file extension. +; crack.default_dictionary = "c:\php\lib\cracklib_dict" [exif] -; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. ; With mbstring support this will automatically be converted into the encoding -; given by corresponding encode setting. When empty mbstring.internal_encoding -; is used. For the decode settings you can distinguish between motorola and +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and ; intel byte order. A decode setting cannot be empty. ;exif.encode_unicode = ISO-8859-15 ;exif.decode_unicode_motorola = UCS-2BE ;exif.decode_unicode_intel = UCS-2LE -;exif.encode_jis = +;exif.encode_jis = ;exif.decode_jis_motorola = JIS ;exif.decode_jis_intel = JIS -[Tidy] -; The path to a default tidy configuration file to use when using tidy -;tidy.default_config = /usr/local/lib/php/default.tcfg - -; Should tidy clean and repair output automatically? -; WARNING: Do not use this option if you are generating non-html content -; such as dynamic images -tidy.clean_output = Off - -[soap] -; Enables or disables WSDL caching feature. -soap.wsdl_cache_enabled=1 -; Sets the directory name where SOAP extension will put cache files. -soap.wsdl_cache_dir="/tmp" -; (time to live) Sets the number of second while cached file will be used -; instead of original one. -soap.wsdl_cache_ttl=86400 - ; Local Variables: ; tab-width: 4 ; End: Deleted: csw/mgar/pkg/php4/trunk/files/phpext =================================================================== --- csw/mgar/pkg/php4/trunk/files/phpext 2009-05-13 21:09:54 UTC (rev 4839) +++ csw/mgar/pkg/php4/trunk/files/phpext 2009-05-14 01:34:37 UTC (rev 4840) @@ -1,106 +0,0 @@ -#!/bin/ksh -# -# phpext - PHP extension manager. -# - -program=${0##*/} - -# Default path to php.ini -php_ini=/opt/csw/php4/lib/php.ini - -# Usage printer -function do_usage { - - # Print short usage - cat << EOT -Usage: $program [-h] [-e|-d|-q] [-i ] ... -EOT - - # Print long usage - if [ "$1" = "long" ]; then - cat << EOT - -Options: - - -e Enable extensions - -d Disable extensions - -q Query mode - -i Path to php.ini (default: $php_ini) - -h Display usage information - extN Extension names - -Examples: - - # Enable the exif and wddx extensions - $program -e exif wddx - - # Disable xsl - $program -d xsl - - # Check whether mbstring is enabled - $program -q mbstring - mbstring_enabled=true - - # Query all extensions from a different php.ini - $program -i /path/to/php.ini -q - -EOT - fi - - exit 1 -} - -# Process command line options -typeset op -while getopts ":hedqi:" opts -do - case ${opts} in - e) op=enable ;; - d) op=disable ;; - i) php_ini=$OPTARG ;; - q) op=query ;; - h) do_usage "long" ;; - \?) do_usage "long" ;; - esac -done - -shift $((${OPTIND} - 1 )) - -if [ "$op" = "enable" ] || [ "$op" = "disable" ] && [ -z "$@" ]; then - print "Error: No extensions specified for action $op" - do_usage -fi - -if [ ! -f $php_ini ]; then - print "Error: Cannot access $php_ini" - do_usage -fi - -# In modes other than query, stream edit the file -typeset perlswitches php_extensions php_op -perlswitches="-lne" -if [ "$op" != "query" ]; then - perlswitches="-i.bak -p $perlswitches" -fi - -# Spawn perl to do the dirty work -export php_extensions="$@" -export php_op=$op -exec perl $perlswitches ' - BEGIN { - use Config; - use vars qw/$grabext $php_op/; - $exts = $ENV{php_extensions} - ? join("|", split(/\s+/, $ENV{php_extensions})) : qr{\S+}; - - $grabext = qr{^(;)?extension=($exts)\.$Config{dlext}\s*$}; - $php_op = $ENV{php_op}; - } - if (my ($disabled, $extname) = $_ =~ $grabext) { - if ($php_op eq "query") { - printf "%s_enabled=%s\n", $extname, ($disabled ? "false" : "true"); - } - elsif ($php_op eq "enable") { s/^;// if $disabled } - elsif ($php_op eq "disable") { s/^/;/ unless $disabled } - }' $php_ini - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 06:01:52 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 04:01:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[4841] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4841 http://gar.svn.sourceforge.net/gar/?rev=4841&view=rev Author: valholla Date: 2009-05-14 04:01:52 +0000 (Thu, 14 May 2009) Log Message: ----------- working merge Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/checksums csw/mgar/pkg/php4/trunk/files/php.ini.CSW Added Paths: ----------- csw/mgar/pkg/php4/trunk/files/dummy-httpd.conf csw/mgar/pkg/php4/trunk/files/httpd-php4.conf.CSW csw/mgar/pkg/php4/trunk/files/pkgdef.mk Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 01:34:37 UTC (rev 4840) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 04:01:52 UTC (rev 4841) @@ -19,6 +19,9 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php DISTFILES += $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += dummy-httpd.conf +DISTFILES += httpd-php4.conf.CSW +DISTFILES += php.ini.CSW INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) PHP4ROOT = $(DESTDIR)$(prefix)/php4 @@ -82,10 +85,63 @@ CONFIGURE_ARGS += --with-xmlrpc=shared,$(prefix) CONFIGURE_ARGS += --with-zlib=shared - # Disable Tests (report submitted to PHP QA) SKIPTEST = 1 ENABLE_CHECK = 0 -# System Rules/Configuration +PI_SCRIPTS = install-extra +PI_SCRIPTS += install-ap2modphp4 +PI_SCRIPTS += install-modphp4 +PI_SCRIPTS += install-cleanup + +post-install-modulated: $(PI_SCRIPTS) + @$(MAKECOOKIE) + +install-ap2modphp4: + @echo " ==> Now Building ap2_modphp4 <==" + @if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi + @cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs2=$(prefix)/apache2/sbin/apxs + @$(GARBIN)/fixlibtool $(WORKSRC) + @$(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi + @strip $(DESTDIR)$(prefix)/apache2/libexec/libphp4.so + @$(MAKECOOKIE) + +install-modphp4: + @echo " ==> Now Building modphp4 <==" + @if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi + @cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs=$(prefix)/apache/bin/apxs + @$(GARBIN)/fixlibtool $(WORKSRC) + @$(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi + @strip $(DESTDIR)$(prefix)/apache/libexec/libphp4.so + @$(MAKECOOKIE) + +install-extra: + @gmv $(DESTDIR)$(prefix)/php4/etc/pear.conf \ + $(DESTDIR)$(prefix)/php4/etc/pear.conf.CSW + @gsed -i -e s,PHPEXTDIR,$(shell $(PHP4ROOT)/bin/php-config --extension-dir),\ + $(WORKDIR)/php.ini.CSW + @ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra + @ginstall -d $(DESTDIR)$(prefix)/apache/conf + @ginstall -d $(DESTDIR)$(prefix)/php4/lib + @ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php4/lib + @ginstall -m 0644 $(WORKDIR)/httpd-php4.conf.CSW \ + $(DESTDIR)$(prefix)/apache2/etc/extra + @gcp $(DOWNLOADDIR)/dummy-httpd.conf $(DESTDIR)$(prefix)/apache2/etc/httpd.conf + @gcp $(DOWNLOADDIR)/dummy-httpd.conf $(DESTDIR)$(prefix)/apache/conf/httpd.conf + @$(MAKECOOKIE) + +install-cleanup: + @grm -fr $(DESTDIR)/.[a-z]* + @gfind $(DESTDIR) -name \*.a -exec grm -f {} \; + @gfind $(DESTDIR)$(prefix)/apache* \ + -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr + @grm $(DESTDIR)$(prefix)/apache2/etc/httpd.conf* + @$(MAKECOOKIE) + + +include files/pkgdef.mk include gar/category.mk Modified: csw/mgar/pkg/php4/trunk/checksums =================================================================== --- csw/mgar/pkg/php4/trunk/checksums 2009-05-14 01:34:37 UTC (rev 4840) +++ csw/mgar/pkg/php4/trunk/checksums 2009-05-14 04:01:52 UTC (rev 4841) @@ -1,2 +1,5 @@ +93db60a388952ec3b40bb3bb005ff06b download/dummy-httpd.conf +ec1d86518d8b6d5a320ce058f03d9eef download/httpd-php4.conf.CSW 3870a95f52c9637798294243694fdd47 download/pgsql.diff 2e3b2a0e27f10cb84fd00e5ecd7a1880 download/php-4.4.9.tar.bz2 +4450995841c11c22e4369dc425307a4a download/php.ini.CSW Added: csw/mgar/pkg/php4/trunk/files/dummy-httpd.conf =================================================================== --- csw/mgar/pkg/php4/trunk/files/dummy-httpd.conf (rev 0) +++ csw/mgar/pkg/php4/trunk/files/dummy-httpd.conf 2009-05-14 04:01:52 UTC (rev 4841) @@ -0,0 +1,2 @@ + +LoadModule dummy_module libexec/libdummy.so Added: csw/mgar/pkg/php4/trunk/files/httpd-php4.conf.CSW =================================================================== --- csw/mgar/pkg/php4/trunk/files/httpd-php4.conf.CSW (rev 0) +++ csw/mgar/pkg/php4/trunk/files/httpd-php4.conf.CSW 2009-05-14 04:01:52 UTC (rev 4841) @@ -0,0 +1,8 @@ + + + + AddType application/x-httpd-php .php + AddType application/x-httpd-php-source .phps + + + Modified: csw/mgar/pkg/php4/trunk/files/php.ini.CSW =================================================================== --- csw/mgar/pkg/php4/trunk/files/php.ini.CSW 2009-05-14 01:34:37 UTC (rev 4840) +++ csw/mgar/pkg/php4/trunk/files/php.ini.CSW 2009-05-14 04:01:52 UTC (rev 4841) @@ -426,7 +426,7 @@ user_dir = ; Directory in which the loadable extensions (modules) reside. -extension_dir = "./" +extension_dir = PHPEXTDIR ; Whether or not to enable the dl() function. The dl() function does NOT work ; properly in multithreaded servers, such as IIS or Zeus, and is automatically Added: csw/mgar/pkg/php4/trunk/files/pkgdef.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/pkgdef.mk (rev 0) +++ csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-14 04:01:52 UTC (rev 4841) @@ -0,0 +1,2 @@ + +# Package Definition File This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Thu May 14 10:10:38 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Thu, 14 May 2009 08:10:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[4842] csw/mgar/pkg/irssi/trunk Message-ID: Revision: 4842 http://gar.svn.sourceforge.net/gar/?rev=4842&view=rev Author: idogan23 Date: 2009-05-14 08:10:38 +0000 (Thu, 14 May 2009) Log Message: ----------- irssi: put /opt/csw/gnu into the PATH variable Modified Paths: -------------- csw/mgar/pkg/irssi/trunk/Makefile csw/mgar/pkg/irssi/trunk/checksums csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec Removed Paths: ------------- csw/mgar/pkg/irssi/trunk/files/CSWirssi.depend csw/mgar/pkg/irssi/trunk/files/CSWirssi.postinstall Property Changed: ---------------- csw/mgar/pkg/irssi/trunk/ Property changes on: csw/mgar/pkg/irssi/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/irssi/trunk/Makefile =================================================================== --- csw/mgar/pkg/irssi/trunk/Makefile 2009-05-14 04:01:52 UTC (rev 4841) +++ csw/mgar/pkg/irssi/trunk/Makefile 2009-05-14 08:10:38 UTC (rev 4842) @@ -1,5 +1,5 @@ GARNAME = irssi -GARVERSION = 0.8.12 +GARVERSION = 0.8.13 CATEGORIES = apps DESCRIPTION = IRC client with IPv6, proxy, bot, socks and Perl support @@ -13,11 +13,15 @@ MASTER_SITES = http://www.irssi.org/files/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWirssi, postinstall depend) +DISTFILES += $(call admfiles,CSWirssi) +#DISTFILES += $(call admfiles,CSWirssi, postinstall depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +SPKG_CLASSES = none cswcpsampleconf +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/irssi.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-ipv6 CONFIGURE_ARGS += --with-socks @@ -26,7 +30,9 @@ CONFIGURE_ARGS += --with-perl=module CONFIGURE_ARGS += --with-perl-lib=vendor -GARCOMPILER = SUN +REQUIRED_PKGS = CSWglib2 CSWiconv CSWosslrt CSWperl CSWsunmath CSWggettextrt + +GARCOMPILER = GCC4 TEST_TARGET = check # moving configuration file @@ -41,3 +47,4 @@ include gar/category.mk +PATH := /opt/csw/gnu:$(PATH) Modified: csw/mgar/pkg/irssi/trunk/checksums =================================================================== --- csw/mgar/pkg/irssi/trunk/checksums 2009-05-14 04:01:52 UTC (rev 4841) +++ csw/mgar/pkg/irssi/trunk/checksums 2009-05-14 08:10:38 UTC (rev 4842) @@ -1,4 +1,2 @@ -ddf717a430e1c13a272f528c4f529430 download/irssi-0.8.12.tar.gz -9e9bc28744147cae728641badb8b48bc download/CSWirssi.gspec -0adc5863c083931c1014600385c4c4ab download/CSWirssi.postinstall -93f2d39a91f3798000f265fafd1e8954 download/CSWirssi.depend +226f194576895ff3075c164523806d06 download/irssi-0.8.13.tar.gz +981f1b2ee1c132d0f0330724bfe601c3 download/CSWirssi.gspec Deleted: csw/mgar/pkg/irssi/trunk/files/CSWirssi.depend =================================================================== --- csw/mgar/pkg/irssi/trunk/files/CSWirssi.depend 2009-05-14 04:01:52 UTC (rev 4841) +++ csw/mgar/pkg/irssi/trunk/files/CSWirssi.depend 2009-05-14 08:10:38 UTC (rev 4842) @@ -1,7 +0,0 @@ -P CSWcommon -P CSWglib2 -P CSWiconv -P CSWosslrt -P CSWperl -P CSWsunmath -P CSWggettextrt Modified: csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec =================================================================== --- csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec 2009-05-14 04:01:52 UTC (rev 4841) +++ csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec 2009-05-14 08:10:38 UTC (rev 4842) @@ -1,4 +1,4 @@ %var bitname irssi %var pkgname CSWirssi %include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING +%copyright url file://%{WORKSRC\xAD_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/irssi/trunk/files/CSWirssi.postinstall =================================================================== --- csw/mgar/pkg/irssi/trunk/files/CSWirssi.postinstall 2009-05-14 04:01:52 UTC (rev 4841) +++ csw/mgar/pkg/irssi/trunk/files/CSWirssi.postinstall 2009-05-14 08:10:38 UTC (rev 4842) @@ -1,3 +0,0 @@ -if [ ! -f $BASEDIR/opt/csw/etc/irssi.conf ] ; then - cp $BASEDIR/opt/csw/etc/irssi.conf.CSW $BASEDIR/opt/csw/etc/irssi.conf -fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Thu May 14 10:12:02 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Thu, 14 May 2009 08:12:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[4843] csw/mgar/pkg/irssi/trunk/ Message-ID: Revision: 4843 http://gar.svn.sourceforge.net/gar/?rev=4843&view=rev Author: idogan23 Date: 2009-05-14 08:12:02 +0000 (Thu, 14 May 2009) Log Message: ----------- irssi: switched to mGar v2 Property Changed: ---------------- csw/mgar/pkg/irssi/trunk/ Property changes on: csw/mgar/pkg/irssi/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sourceforge.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 idogan23 at users.sourceforge.net Thu May 14 11:48:45 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Thu, 14 May 2009 09:48:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[4844] csw/mgar/pkg/irssi/trunk Message-ID: Revision: 4844 http://gar.svn.sourceforge.net/gar/?rev=4844&view=rev Author: idogan23 Date: 2009-05-14 09:48:45 +0000 (Thu, 14 May 2009) Log Message: ----------- irssi: various cleanups Modified Paths: -------------- csw/mgar/pkg/irssi/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec Modified: csw/mgar/pkg/irssi/trunk/Makefile =================================================================== --- csw/mgar/pkg/irssi/trunk/Makefile 2009-05-14 08:12:02 UTC (rev 4843) +++ csw/mgar/pkg/irssi/trunk/Makefile 2009-05-14 09:48:45 UTC (rev 4844) @@ -13,8 +13,7 @@ MASTER_SITES = http://www.irssi.org/files/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWirssi) -#DISTFILES += $(call admfiles,CSWirssi, postinstall depend) +#DISTFILES += $(call admfiles,CSWirssi) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -30,13 +29,20 @@ CONFIGURE_ARGS += --with-perl=module CONFIGURE_ARGS += --with-perl-lib=vendor -REQUIRED_PKGS = CSWglib2 CSWiconv CSWosslrt CSWperl CSWsunmath CSWggettextrt +EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod -GARCOMPILER = GCC4 +REQUIRED_PKGS = CSWglib2 +REQUIRED_PKGS += CSWiconv +REQUIRED_PKGS += CSWosslrt +REQUIRED_PKGS += CSWperl +REQUIRED_PKGS += CSWsunmath +REQUIRED_PKGS += CSWggettextrt +REQUIRED_PKGS += CSWcswclassutils + TEST_TARGET = check # moving configuration file -post-install: +post-install-modulated: (cd $(DESTDIR)$(prefix)/etc; \ for i in irssi.conf; do \ if [ -r "$$i" ]; then \ @@ -45,6 +51,5 @@ fi \ done) - include gar/category.mk PATH := /opt/csw/gnu:$(PATH) Deleted: csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec =================================================================== --- csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec 2009-05-14 08:12:02 UTC (rev 4843) +++ csw/mgar/pkg/irssi/trunk/files/CSWirssi.gspec 2009-05-14 09:48:45 UTC (rev 4844) @@ -1,4 +0,0 @@ -%var bitname irssi -%var pkgname CSWirssi -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC\xAD_FIRSTMOD}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 18:57:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 16:57:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[4845] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4845 http://gar.svn.sourceforge.net/gar/?rev=4845&view=rev Author: valholla Date: 2009-05-14 16:57:30 +0000 (Thu, 14 May 2009) Log Message: ----------- define dependencies for packages Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/files/pkgdef.mk Added Paths: ----------- csw/mgar/pkg/php4/trunk/files/README-mod_php4_core csw/mgar/pkg/php4/trunk/files/depend.mk csw/mgar/pkg/php4/trunk/files/pkgfiles.mk Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 09:48:45 UTC (rev 4844) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 16:57:30 UTC (rev 4845) @@ -29,11 +29,6 @@ STRIP_DIRS += $(PHP4ROOT)/lib/php/extensions/*/ STRIP_DIRS += $(PHP4ROOT)/bin -PACKAGES = CSWphp4 -CATALOGNAME_CSWphp4 = php4 -SPKG_DESC_CSWphp4 = A High-Level Scripting Languages -REQUIRED_PKGS_CSWphp4 = - PATCHFILES = pgsql.diff EXTRA_LIB += $(prefix)/bdb44/lib @@ -127,7 +122,9 @@ @ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra @ginstall -d $(DESTDIR)$(prefix)/apache/conf @ginstall -d $(DESTDIR)$(prefix)/php4/lib + @ginstall -m 0644 $(WORKDIR)/README-mod_php4_core $(DESTDIR)$(prefix)/php4 @ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php4/lib + @ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php4/lib @ginstall -m 0644 $(WORKDIR)/httpd-php4.conf.CSW \ $(DESTDIR)$(prefix)/apache2/etc/extra @gcp $(DOWNLOADDIR)/dummy-httpd.conf $(DESTDIR)$(prefix)/apache2/etc/httpd.conf @@ -144,4 +141,5 @@ include files/pkgdef.mk +include files/pkgfiles.mk include gar/category.mk Added: csw/mgar/pkg/php4/trunk/files/README-mod_php4_core =================================================================== --- csw/mgar/pkg/php4/trunk/files/README-mod_php4_core (rev 0) +++ csw/mgar/pkg/php4/trunk/files/README-mod_php4_core 2009-05-14 16:57:30 UTC (rev 4845) @@ -0,0 +1,13 @@ +***************************************************************************** +* DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED +* DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED +* DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED +* DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED +***************************************************************************** + +This package has been Depricated and no longer contains any files. + +If you are running Apache 1.3.x please pkg-get -i mod_php4 +If you are running Apache 2.2.x please pkg-get -i ap2_modphp4 + +Thank You! Added: csw/mgar/pkg/php4/trunk/files/depend.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/depend.mk (rev 0) +++ csw/mgar/pkg/php4/trunk/files/depend.mk 2009-05-14 16:57:30 UTC (rev 4845) @@ -0,0 +1,29 @@ +# +# Define Package Dependencies +# + +REQUIRED_PKGS_CSWphp4bcmath = CSWphp4cgi +REQUIRED_PKGS_CSWphp4bz2 = CSWphp4cgi CSWbzip2 +REQUIRED_PKGS_CSWphp4calendar = CSWphp4cgi +REQUIRED_PKGS_CSWphp4cgi = CSWbdb44 CSWexpat +REQUIRED_PKGS_CSWphp4curl = CSWphp4cgi CSWcurlrt CSWlibidn CSWoldaprt CSWosslrt CSWzlib +REQUIRED_PKGS_CSWphp4dba = CSWphp4cgi CSWbdb44 CSWgdbm +REQUIRED_PKGS_CSWphp4domxml = CSWphp4cgi CSWiconv CSWlibxml2 CSWlibxslt CSWzlib +REQUIRED_PKGS_CSWphp4gd = CSWphp4cgi CSWgd CSWjpeg CSWpng CSWzlib +REQUIRED_PKGS_CSWphp4gettext = CSWphp4cgi CSWggettextrt +REQUIRED_PKGS_CSWphp4gmp = CSWphp4cgi CSWlibgmp +REQUIRED_PKGS_CSWphp4iconv = CSWphp4cgi +REQUIRED_PKGS_CSWphp4imap = CSWphp4cgi CSWimaprt CSWkrb5lib CSWosslrt +REQUIRED_PKGS_CSWphp4ldap = CSWphp4cgi CSWoldaprt +REQUIRED_PKGS_CSWphp4mbstring = CSWphp4cgi +REQUIRED_PKGS_CSWphp4mcal = CSWphp4cgi +REQUIRED_PKGS_CSWphp4mssql = CSWphp4cgi CSWfreetds +REQUIRED_PKGS_CSWphp4mysql = CSWphp4cgi CSWmysql5rt +REQUIRED_PKGS_CSWphp4ncurses = CSWphp4cgi CSWncurses +REQUIRED_PKGS_CSWphp4odbc = CSWphp4cgi CSWunixodbc +REQUIRED_PKGS_CSWphp4openssl = CSWphp4cgi CSWkrb5lib CSWosslrt +REQUIRED_PKGS_CSWphp4pgsql = CSWphp4cgi CSWlibpq +REQUIRED_PKGS_CSWphp4zlib = CSWphp4cgi CSWzlib +REQUIRED_PKGS_CSWap2modphp4 = CSWphp4cgi CSWbdb44 CSWexpat CSWap2prefork +REQUIRED_PKGS_CSWmodphp4 = CSWphp4cgi CSWbdb44 CSWexpat CSWapache +REQUIRED_PKGS_CSWmodphp4core = CSWphp4cgi Modified: csw/mgar/pkg/php4/trunk/files/pkgdef.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-14 09:48:45 UTC (rev 4844) +++ csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-14 16:57:30 UTC (rev 4845) @@ -1,2 +1,60 @@ # Package Definition File +PACKAGES = CSWphp4bcmath CSWphp4bz2 CSWphp4calendar CSWphp4cgi CSWphp4curl +PACKAGES += CSWphp4dba CSWphp4domxml CSWphp4gd CSWphp4gettext CSWphp4gmp +PACKAGES += CSWphp4iconv CSWphp4imap CSWphp4ldap CSWphp4mbstring +PACKAGES += CSWphp4mcal CSWphp4mssql CSWphp4mysql CSWphp4ncurses CSWphp4odbc +PACKAGES += CSWphp4openssl CSWphp4pgsql CSWphp4zlib CSWap2modphp4 +PACKAGES += CSWmodphp4 CSWphp + +CATALOGNAME_CSWphp4bcmath = php4_bcmath +SPKG_DESC_CSWphp4bcmath = bcmath extension for php4 +CATALOGNAME_CSWphp4bz2 = php4_bz2 +SPKG_DESC_CSWphp4bz2 = bzip2 extension for php4 +CATALOGNAME_CSWphp4calendar = php4_calendar +SPKG_DESC_CSWphp4calendar = calendar extension for php4 +CATALOGNAME_CSWphp4cgi = php4_cgi +SPKG_DESC_CSWphp4cgi = command line interpreter for the PHP language +CATALOGNAME_CSWphp4curl = php4_curl +SPKG_DESC_CSWphp4curl = curl extension for php4 +CATALOGNAME_CSWphp4dba = php4_dba +SPKG_DESC_CSWphp4dba = dba extension for php4 +CATALOGNAME_CSWphp4domxml = php4_domxml +SPKG_DESC_CSWphp4domxml = domxml extension for php4 +CATALOGNAME_CSWphp4gd = php4_gd +SPKG_DESC_CSWphp4gd = gd extension for php4 +CATALOGNAME_CSWphp4gettext = php4_gettext +SPKG_DESC_CSWphp4gettext = gettext extension for php4 +CATALOGNAME_CSWphp4gmp = php4_gmp +SPKG_DESC_CSWphp4gmp = gmp extension for php4 +CATALOGNAME_CSWphp4iconv = php4_iconv +SPKG_DESC_CSWphp4iconv = iconv extension for php4 +CATALOGNAME_CSWphp4imap = php4_imap +SPKG_DESC_CSWphp4imap = imap extension for php4 +CATALOGNAME_CSWphp4ldap = php4_ldap +SPKG_DESC_CSWphp4ldap = ldap extension for php4 +CATALOGNAME_CSWphp4mbstring = php4_mbstring +SPKG_DESC_CSWphp4mbstring = mbstring extension for php4 +CATALOGNAME_CSWphp4mcal = php4_mcal +SPKG_DESC_CSWphp4mcal = modular calendar extension for php4 +CATALOGNAME_CSWphp4mssql = php4_mssql +SPKG_DESC_CSWphp4mssql = mssql extension for php4 +CATALOGNAME_CSWphp4mysql = php4_mysql +SPKG_DESC_CSWphp4mysql = mysql extension for php4 +CATALOGNAME_CSWphp4ncurses = php4_ncurses +SPKG_DESC_CSWphp4ncurses = ncurses extension for php4 +CATALOGNAME_CSWphp4odbc = php4_odbc +SPKG_DESC_CSWphp4odbc = odbc extension for php4 +CATALOGNAME_CSWphp4openssl = php4_openssl +SPKG_DESC_CSWphp4openssl = openssl extension for php4 +CATALOGNAME_CSWphp4pgsql = php4_pgsql +SPKG_DESC_CSWphp4pgsql = postgresql extension for php4 +CATALOGNAME_CSWphp4zlib = php4_zlib +SPKG_DESC_CSWphp4zlib = zlib extension for php4 +CATALOGNAME_CSWap2modphp4 = ap2_modphp4 +SPKG_DESC_CSWap2modphp4 = PHP 4 - Apache 2.2.x Module +CATALOGNAME_CSWmodphp4 = mod_php4 +SPKG_DESC_CSWmodphp4 = PHP 4 - Apache 1.3.x Module +CATALOGNAME_CSWmodphp4core = mod_php4_core +SPKG_DESC_CSWmodphp4core = Deprecated use mod_php4 or ap2_modphp4 + Added: csw/mgar/pkg/php4/trunk/files/pkgfiles.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/pkgfiles.mk (rev 0) +++ csw/mgar/pkg/php4/trunk/files/pkgfiles.mk 2009-05-14 16:57:30 UTC (rev 4845) @@ -0,0 +1,32 @@ +# +# define the files in each Package +# + +PKGFILES_CSWphp4bcmath = .*/extensions/.*/bcmath.* +PKGFILES_CSWphp4bz2 = .*/extensions/.*/bz2.* +PKGFILES_CSWphp4calendar = .*/extensions/.*/calendar.* +PKGFILES_CSWphp4curl = .*/extensions/.*/curl.* +PKGFILES_CSWphp4dba = .*/extensions/.*/dba.* +PKGFILES_CSWphp4domxml = .*/extensions/.*/domxml.* +PKGFILES_CSWphp4gd = .*/extensions/.*/gd.* +PKGFILES_CSWphp4gettext = .*/extensions/.*/gettext.* +PKGFILES_CSWphp4gmp = .*/extensions/.*/gmp.* +PKGFILES_CSWphp4iconv = .*/extensions/.*/iconv.* +PKGFILES_CSWphp4iconv += .*/include/php/ext/iconv.* +PKGFILES_CSWphp4imap = .*/extensions/.*/imap.* +PKGFILES_CSWphp4ldap = .*/extensions/.*/ldap.* +PKGFILES_CSWphp4mbstring = .*/extensions/.*/mbstring.* +PKGFILES_CSWphp4mbstring += .*/include/php/ext/mbstring.* +PKGFILES_CSWphp4mcal = .*/extensions/.*/mcal.* +PKGFILES_CSWphp4mssql = .*/extensions/.*/mssql.* +PKGFILES_CSWphp4mysql = .*/extensions/.*/mysql.* +PKGFILES_CSWphp4ncurses = .*/extensions/.*/ncurses.* +PKGFILES_CSWphp4odbc = .*/extensions/.*/odbc.* +PKGFILES_CSWphp4openssl = .*/extensions/.*/openssl.* +PKGFILES_CSWphp4pgsql = .*/extensions/.*/pgsql.* +PKGFILES_CSWphp4pgsql += .*/include/php/ext/pgsql.* +PKGFILES_CSWphp4zlib = .*/extensions/.*/zlib.* +PKGFILES_CSWap2modphp4 = .*/apache2/.* +PKGFILES_CSWmodphp4 = .*/apache/.* +PKGFILES_CSWmodphp4core = /opt/csw/php4/README-mod_php4_core +#PKGFILES_CSWphp4cgi catchall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 19:11:32 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 17:11:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[4846] csw/mgar/pkg/php4/trunk/files/php.ini.CSW Message-ID: Revision: 4846 http://gar.svn.sourceforge.net/gar/?rev=4846&view=rev Author: valholla Date: 2009-05-14 17:11:32 +0000 (Thu, 14 May 2009) Log Message: ----------- CSWize php.ini-recommended Modified Paths: -------------- csw/mgar/pkg/php4/trunk/files/php.ini.CSW Modified: csw/mgar/pkg/php4/trunk/files/php.ini.CSW =================================================================== --- csw/mgar/pkg/php4/trunk/files/php.ini.CSW 2009-05-14 16:57:30 UTC (rev 4845) +++ csw/mgar/pkg/php4/trunk/files/php.ini.CSW 2009-05-14 17:11:32 UTC (rev 4846) @@ -1,63 +1,76 @@ [PHP] -;;;;;;;;;;; -; WARNING ; -;;;;;;;;;;; -; This is the default settings file for new PHP installations. -; By default, PHP installs itself with a configuration suitable for -; development purposes, and *NOT* for production purposes. -; For several security-oriented considerations that should be taken -; before going online with your site, please consult php.ini-recommended -; and http://php.net/manual/en/security.php. - - ;;;;;;;;;;;;;;;;;;; ; About this file ; ;;;;;;;;;;;;;;;;;;; -; This file controls many aspects of PHP's behavior. In order for PHP to -; read it, it must be named 'php.ini'. PHP looks for it in the current -; working directory, in the path designated by the environment variable -; PHPRC, and in the path that was defined in compile time (in that order). -; Under Windows, the compile-time path is the Windows directory. The -; path in which the php.ini file is looked for can be overridden using -; the -c argument in command line mode. ; -; The syntax of the file is extremely simple. Whitespace and Lines -; beginning with a semicolon are silently ignored (as you probably guessed). -; Section headers (e.g. [Foo]) are also silently ignored, even though -; they might mean something in the future. +; This is the recommended, PHP 4-style version of the php.ini-dist file. It +; sets some non standard settings, that make PHP more efficient, more secure, +; and encourage cleaner coding. +; The price is that with these settings, PHP may be incompatible with some +; applications, and sometimes, more difficult to develop with. Using this +; file is warmly recommended for production sites. As all of the changes from +; the standard settings are thoroughly documented, you can go over each one, +; and decide whether you want to use it or not. ; -; Directives are specified using the following syntax: -; directive = value -; Directive names are *case sensitive* - foo=bar is different from FOO=bar. +; For general information about the php.ini file, please consult the php.ini-dist +; file, included in your PHP distribution. ; -; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one -; of the INI constants (On, Off, True, False, Yes, No and None) or an expression -; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo"). +; This file is different from the php.ini-dist file in the fact that it features +; different values for several directives, in order to improve performance, while +; possibly breaking compatibility with the standard out-of-the-box behavior of +; PHP 3. Please make sure you read what's different, and modify your scripts +; accordingly, if you decide to use this file instead. ; -; Expressions in the INI file are limited to bitwise operators and parentheses: -; | bitwise OR -; & bitwise AND -; ~ bitwise NOT -; ! boolean NOT -; -; Boolean flags can be turned on using the values 1, On, True or Yes. -; They can be turned off using the values 0, Off, False or No. -; -; An empty string can be denoted by simply not writing anything after the equal -; sign, or by using the None keyword: -; -; foo = ; sets foo to an empty string -; foo = none ; sets foo to an empty string -; foo = "none" ; sets foo to the string 'none' -; -; If you use constants in your value, and these constants belong to a -; dynamically loaded extension (either a PHP extension or a Zend extension), -; you may only use these constants *after* the line that loads the extension. -; -; All the values in the php.ini-dist file correspond to the builtin -; defaults (that is, if no php.ini is used, or if you delete these lines, -; the builtin defaults will be identical). +; - register_globals = Off [Security, Performance] +; Global variables are no longer registered for input data (POST, GET, cookies, +; environment and other server variables). Instead of using $foo, you must use +; you can use $_REQUEST["foo"] (includes any variable that arrives through the +; request, namely, POST, GET and cookie variables), or use one of the specific +; $_GET["foo"], $_POST["foo"], $_COOKIE["foo"] or $_FILES["foo"], depending +; on where the input originates. Also, you can look at the +; import_request_variables() function. +; Note that register_globals is going to be depracated (i.e., turned off by +; default) in the next version of PHP, because it often leads to security bugs. +; Read http://php.net/manual/en/security.registerglobals.php for further +; information. +; - display_errors = Off [Security] +; With this directive set to off, errors that occur during the execution of +; scripts will no longer be displayed as a part of the script output, and thus, +; will no longer be exposed to remote users. With some errors, the error message +; content may expose information about your script, web server, or database +; server that may be exploitable for hacking. Production sites should have this +; directive set to off. +; - log_errors = On [Security] +; This directive complements the above one. Any errors that occur during the +; execution of your script will be logged (typically, to your server's error log, +; but can be configured in several ways). Along with setting display_errors to off, +; this setup gives you the ability to fully understand what may have gone wrong, +; without exposing any sensitive information to remote users. +; - output_buffering = 4096 [Performance] +; Set a 4KB output buffer. Enabling output buffering typically results in less +; writes, and sometimes less packets sent on the wire, which can often lead to +; better performance. The gain this directive actually yields greatly depends +; on which Web server you're working with, and what kind of scripts you're using. +; - register_argc_argv = Off [Performance] +; Disables registration of the somewhat redundant $argv and $argc global +; variables. +; - magic_quotes_gpc = Off [Performance] +; Input data is no longer escaped with slashes so that it can be sent into +; SQL databases without further manipulation. Instead, you should use the +; function addslashes() on each input element you wish to send to a database. +; - variables_order = "GPCS" [Performance] +; The environment variables are not hashed into the $HTTP_ENV_VARS[]. To access +; environment variables, you can use getenv() instead. +; - error_reporting = E_ALL [Code Cleanliness, Security(?)] +; By default, PHP surpresses errors of type E_NOTICE. These error messages +; are emitted for non-critical errors, but that could be a symptom of a bigger +; problem. Most notably, this will cause error messages about the use +; of uninitialized variables to be displayed. +; - allow_call_time_pass_reference = Off [Code cleanliness] +; It's not possible to decide to force a variable to be passed by reference +; when calling a function. The PHP 4 style to do this is by making the +; function require the relevant argument by reference. ;;;;;;;;;;;;;;;;;;;; @@ -79,7 +92,7 @@ asp_tags = Off ; The number of significant digits displayed in floating point numbers. -precision = 12 +precision = 14 ; Enforce year 2000 compliance (will cause problems with non-compliant browsers) y2k_compliance = On @@ -91,7 +104,7 @@ ; setting this directive to On. If you wish to limit the size of the buffer ; to a certain size - you can use a maximum number of bytes instead of 'On', as ; a value for this directive (e.g., output_buffering=4096). -output_buffering = Off +output_buffering = 4096 ; You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character @@ -109,11 +122,11 @@ ; Valid values for this option are 'off', 'on', or a specific buffer size ; to be used for compression (default is 4KB) ; Note: Resulting chunk size may vary due to nature of compression. PHP -; outputs chunks that are few hundreds bytes each as a result of -; compression. If you prefer a larger chunk size for better -; performance, enable output_buffering in addition. -; Note: You need to use zlib.output_handler instead of the standard -; output_handler, or otherwise the output will be corrupted. +; outputs chunks that are few handreds bytes each as a result of compression. +; If you want larger chunk size for better performence, enable output_buffering +; also. +; Note: output_handler must be empty if this is set 'On' !!!! +; Instead you must use zlib.output_handler. zlib.output_compression = Off ; You cannot specify additional output handlers if zlib.output_compression @@ -151,8 +164,9 @@ ; with future versions of the language (you will receive a warning each time ; you use this feature, and the argument will be passed by value instead of by ; reference). -allow_call_time_pass_reference = On +allow_call_time_pass_reference = Off +; ; Safe Mode ; safe_mode = Off @@ -232,6 +246,7 @@ ;max_input_nesting_level = 500 ; Maximum input variable nesting level memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Error handling and logging ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -266,16 +281,16 @@ ; ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR ; -; - Show all errors except for notices +; - Show all errors ; -error_reporting = E_ALL & ~E_NOTICE +error_reporting = E_ALL ; Print out errors (as a part of the output). For production web sites, ; you're strongly encouraged to turn this feature off, and use error logging ; instead (see below). Keeping display_errors enabled on a production web site ; may reveal security information to end users, such as file paths on your Web ; server, your database schema or other information. -display_errors = On +display_errors = Off ; Even when display_errors is on, errors that occur during PHP's startup ; sequence are not displayed. It's strongly recommended to keep @@ -285,7 +300,7 @@ ; Log errors into a log file (server-specific log, stderr, or error_log (below)) ; As stated above, you're strongly advised to use error logging in place of ; error displaying on production web sites. -log_errors = Off +log_errors = On ; Set maximum length of log_errors. In error_log information about the source is ; added. The default is 1024 and 0 allows to not apply any maximum length at all. @@ -310,7 +325,7 @@ ; Disable the inclusion of HTML tags in error messages. ;html_errors = Off - + ; If html_errors is set On PHP produces clickable error messages that direct ; to a page describing the error or function causing the error in detail. ; You can download a copy of the PHP manual from http://www.php.net/docs.php @@ -352,7 +367,7 @@ ; Environment and Built-in variables (G, P, C, E & S respectively, often ; referred to as EGPCS or GPC). Registration is done from left to right, newer ; values override older values. -variables_order = "EGPCS" +variables_order = "GPCS" ; Whether or not to register the EGPCS variables as global variables. You may ; want to turn this off if you don't want to clutter your scripts' global scope @@ -368,7 +383,7 @@ ; This directive tells PHP whether to declare the argv&argc variables (that ; would contain the GET information). If you don't use these variables, you ; should turn it off for increased performance. -register_argc_argv = On +register_argc_argv = Off ; Maximum size of POST data that PHP will accept. post_max_size = 8M @@ -380,7 +395,7 @@ ; ; Magic quotes for incoming GET/POST/Cookie data. -magic_quotes_gpc = On +magic_quotes_gpc = Off ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. magic_quotes_runtime = Off @@ -400,7 +415,7 @@ default_mimetype = "text/html" ;default_charset = "iso-8859-1" -; Always populate the $HTTP_RAW_POST_DATA variable. +; Always populate the $HTTP_RAW_POST_DATA variable. ;always_populate_raw_post_data = On @@ -421,12 +436,12 @@ ; cgi.force_redirect configuration below doc_root = -; The directory under which PHP opens the script using /~username used only +; The directory under which PHP opens the script using /~usernamem used only ; if nonempty. user_dir = ; Directory in which the loadable extensions (modules) reside. -extension_dir = PHPEXTDIR +extension_dir = "PHPEXTDIR" ; Whether or not to enable the dl() function. The dl() function does NOT work ; properly in multithreaded servers, such as IIS or Zeus, and is automatically @@ -455,7 +470,7 @@ ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting ; of zero causes PHP to behave as before. Default is zero. You should fix your scripts ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. -; cgi.fix_pathinfo=0 +; cgi.fix_pathinfo=1 ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate ; security tokens of the calling client. This allows IIS to define the @@ -473,8 +488,8 @@ ; RFC2616 compliant header. ; Default is zero. ;cgi.rfc2616_headers = 0 - + ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; @@ -500,8 +515,8 @@ ; Define the anonymous ftp password (your email address) ;from="john at doe.com" -; Define the User-Agent string -; user_agent="PHP" +; Define the user agent for php to send +;user_agent="PHP" ; Default timeout for socket based streams (seconds) default_socket_timeout = 60 @@ -535,56 +550,29 @@ ; needs to go here. Specify the location of the extension with the ; extension_dir directive above. +; CSW Extensions +;extension=bcmath.so +;extension=bz2.so +;extension=calendar.so +;extension=curl.so +;extension=dba.so +;extension=domxml.so +;extension=gd.so +;extension=gettext.so +;extension=gmp.so +;extension=iconv.so +;extension=imap.so +;extension=ldap.so +;extension=mbstring.so +;extension=mcal.so +;extension=mssql.so +;extension=mysql.so +;extension=ncurses.so +;extension=odbc.so +;extension=openssl.so +;extension=pgsql.so +;extension=zlib.so -;Windows Extensions -;Note that MySQL and ODBC support is now built in, so no dll is needed for it. -; -;extension=php_mbstring.dll -;extension=php_bz2.dll -;extension=php_cpdf.dll -;extension=php_crack.dll -;extension=php_curl.dll -;extension=php_db.dll -;extension=php_dba.dll -;extension=php_dbase.dll -;extension=php_dbx.dll -;extension=php_domxml.dll -;extension=php_exif.dll -;extension=php_fdf.dll -;extension=php_filepro.dll -;extension=php_gd2.dll -;extension=php_gettext.dll -;extension=php_hyperwave.dll -;extension=php_iconv.dll -;extension=php_ifx.dll -;extension=php_iisfunc.dll -;extension=php_imap.dll -;extension=php_interbase.dll -;extension=php_java.dll -;extension=php_ldap.dll -;extension=php_mcrypt.dll -;extension=php_mhash.dll -;extension=php_mime_magic.dll -;extension=php_ming.dll -;extension=php_mssql.dll -;extension=php_msql.dll -;extension=php_oci8.dll -;extension=php_openssl.dll -;extension=php_oracle.dll -;extension=php_pdf.dll -;extension=php_pgsql.dll -;extension=php_printer.dll -;extension=php_shmop.dll -;extension=php_snmp.dll -;extension=php_sockets.dll -;extension=php_sybase_ct.dll -;extension=php_w32api.dll -;extension=php_xmlrpc.dll -;extension=php_xslt.dll -;extension=php_yaz.dll -;extension=php_zip.dll - - ;;;;;;;;;;;;;;;;;;; ; Module Settings ; ;;;;;;;;;;;;;;;;;;; @@ -695,8 +683,9 @@ ; Allow or prevent persistent links. pgsql.allow_persistent = On -; Detect broken persistent links always with pg_pconnect(). Need a little overhead. -pgsql.auto_reset_persistent = Off +; Detect broken persistent links always with pg_pconnect(). +; Auto reset feature requires a little overheads. +pgsql.auto_reset_persistent = Off ; Maximum number of persistent links. -1 means no limit. pgsql.max_persistent = -1 @@ -705,6 +694,7 @@ pgsql.max_links = -1 ; Ignore PostgreSQL backends Notice message or not. +; Notice message logging require a little overheads. pgsql.ignore_notice = 0 ; Log PostgreSQL backends Noitce message or not. @@ -760,7 +750,7 @@ ; "uppercase" ; the recommended default is either upper- or lowercase, but ; unchanged is currently set for backwards compatibility -dbx.colnames_case = "unchanged" +dbx.colnames_case = "lowercase" [bcmath] ; Number of decimal digits for all bcmath functions. @@ -813,23 +803,12 @@ ; Argument passed to save_handler. In the case of files, this is the path ; where data files are stored. Note: Windows users have to change this ; variable in order to use PHP's session functions. -; As of PHP 4.0.1, you can define the path as: -; session.save_path = "N;/path" -; where N is an integer. Instead of storing all the session files in -; /path, what this will do is use subdirectories N-levels deep, and -; store the session data in those directories. This is useful if you -; or your OS have problems with lots of files in one directory, and is -; a more efficient layout for servers that handle lots of sessions. -; NOTE 1: PHP will not create this directory structure automatically. -; You can use the script in the ext/session dir for that purpose. -; NOTE 2: See the section on garbage collection below if you choose to -; use subdirectories for session storage ;session.save_path = /tmp ; Whether to use cookies. session.use_cookies = 1 -; This option enables administrators to make their users invulnerable to +; This option enables administrators to make their users invulnerable to ; attacks which involve passing session ids in URLs; defaults to 0. ; session.use_only_cookies = 1 @@ -858,27 +837,19 @@ ; on each request. session.gc_probability = 1 -session.gc_divisor = 100 +session.gc_divisor = 1000 ; After this number of seconds, stored data will be seen as 'garbage' and ; cleaned up by the garbage collection process. session.gc_maxlifetime = 1440 -; NOTE: If you are using the subdirectory option for storing session files -; (see session.save_path above), then garbage collection does *not* -; happen automatically. You will need to do your own garbage -; collection through a shell script, cron entry, or some other method. -; For example, the following script would is the equivalent of -; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): -; cd /path/to/sessions; find -cmin +24 | xargs rm - ; PHP 4.2 and less have an undocumented feature/bug that allows you to ; to initialize a session variable in the global scope, albeit register_globals ; is disabled. PHP 4.3 and later will warn you, if this feature is used. ; You can disable the feature and the warning separately. At this time, ; the warning is only displayed, if bug_compat_42 is enabled. -session.bug_compat_42 = 1 +session.bug_compat_42 = 0 session.bug_compat_warn = 1 ; Check HTTP Referer to invalidate externally stored URLs containing ids. @@ -896,7 +867,7 @@ ;session.entropy_file = /dev/urandom -; Set to {nocache,private,public,} to determine HTTP caching aspects +; Set to {nocache,private,public,} to determine HTTP caching aspects. ; or leave this empty to avoid sending anti-caching headers. session.cache_limiter = nocache @@ -904,12 +875,12 @@ session.cache_expire = 180 ; trans sid support is disabled by default. -; Use of trans sid may risk your users security. +; Use of trans sid may risk your users security. ; Use this option with caution. ; - User may send URL contains active session ID ; to other person via. email/irc/etc. ; - URL that contains active session ID may be stored -; in publically accessible computer. +; in publically accessible computer. ; - User may access your site with the same session ID ; always using URL stored in browser's history or bookmarks. session.use_trans_sid = 0 @@ -919,7 +890,7 @@ ; add a hidden field with the info which is otherwise appended ; to URLs. If you want XHTML conformity, remove the form entry. ; Note that all valid entries require a "=", even if no value follows. -url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" +url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" [MSSQL] ; Allow or prevent persistent links. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 20:26:56 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 18:26:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[4847] csw/mgar/pkg/php4/trunk/files Message-ID: Revision: 4847 http://gar.svn.sourceforge.net/gar/?rev=4847&view=rev Author: valholla Date: 2009-05-14 18:26:56 +0000 (Thu, 14 May 2009) Log Message: ----------- admin scripts Modified Paths: -------------- csw/mgar/pkg/php4/trunk/files/CSWphp4.postinstall Added Paths: ----------- csw/mgar/pkg/php4/trunk/files/CSWap2modphp4.postinstall csw/mgar/pkg/php4/trunk/files/CSWap2modphp4.preremove csw/mgar/pkg/php4/trunk/files/CSWap2modphp4.space csw/mgar/pkg/php4/trunk/files/CSWmodphp4.postinstall csw/mgar/pkg/php4/trunk/files/CSWmodphp4.preremove csw/mgar/pkg/php4/trunk/files/CSWmodphp4.space csw/mgar/pkg/php4/trunk/files/CSWphp4bcmath.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4bcmath.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4curl.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4curl.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4dba.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4dba.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4gd.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4gd.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4imap.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4imap.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.preremove csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.postinstall csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.preremove Added: csw/mgar/pkg/php4/trunk/files/CSWap2modphp4.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWap2modphp4.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWap2modphp4.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,50 @@ +#!/bin/sh + +CSW_PREFIX=${PKG_INSTALL_ROOT}/opt/csw +AP2_PREFIX=$CSW_PREFIX/apache2 +AP2_BINDIR=$AP2_PREFIX/sbin +AP2_LIBEXEC=$AP2_PREFIX/libexec +AP2_CONFDIR=$AP2_PREFIX/etc +AP2_EXTRADIR=$AP2_CONFDIR/extra +AP2_CONFIG=$AP2_CONFDIR/httpd.conf + +# Enable the PHP module +PKG_INSTALL_ROOT=${PKG_INSTALL_ROOT:-'/'} +chroot $PKG_INSTALL_ROOT \ + $AP2_BINDIR/apxs -S LIBEXECDIR=$AP2_LIBEXEC -e -a -n php4 libphp4.so + +# Configure mod_php4 in httpd.conf +if [ -n "`egrep 'IfModule (mod_php|php_module)' $AP2_CONFIG`" ] +then + echo "Existing mod_php4 configuration detected" +elif [ -n "`egrep '#Include etc/extra/httpd-php4.conf' $AP2_CONFIG`" ]; then + echo "Re-enabling existing config" + perl -i -plne 's,^#(Include etc/extra/httpd-php4.conf),$1,' $AP2_CONFIG +else + echo "Adding Include for extra/http-php4.conf to httpd.conf" + cat << END >> $AP2_CONFIG + +Include etc/extra/httpd-php4.conf +END +fi + +# Copy templates +for file in $AP2_EXTRADIR/httpd-php4.conf +do + if [ ! -f $file ]; then + echo "Creating $file" + cp $file.CSW $file + else + echo "Preserving existing $file" + fi +done + +# Finito +cat <> $AP_CONFIG + +# For PHP support. added by $PKGINST + + + + AddType application/x-httpd-php .php + AddType application/x-httpd-php-source .phps + + + +# If you want "index.php" to be an acceptible directory index, adjust +# DirectoryIndex index.html +# to be +# DirectoryIndex index.html index.php + +CONFIG + +fi + +# Finito +cat < Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4bcmath.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4bcmath.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4bcmath.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=bcmath +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=bz2 +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4bz2.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=bz2 +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=calendar +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4calendar.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=calendar +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4curl.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4curl.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4curl.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=curl +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4curl.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4curl.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4curl.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=curl +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4dba.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4dba.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4dba.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=dba +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4dba.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4dba.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4dba.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=dba +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=domxml +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4domxml.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=domxml +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4gd.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4gd.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4gd.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=gd +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4gd.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4gd.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4gd.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=gd +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=gettext +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4gettext.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=gettext +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=gmp +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4gmp.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=gmp +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=iconv +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4iconv.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=iconv +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4imap.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4imap.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4imap.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=imap +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4imap.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4imap.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4imap.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=imap +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=ldap +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4ldap.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=ldap +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=mbstring +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mbstring.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=mbstring +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=mcal +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mcal.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=mcal +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=mssql +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mssql.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=mssql +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=mysql +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4mysql.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=mysql +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=ncurses +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4ncurses.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=ncurses +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=odbc +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4odbc.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=odbc +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=openssl +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4openssl.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=openssl +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=pgsql +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4pgsql.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=pgsql +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.postinstall =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.postinstall (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.postinstall 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,35 @@ +#!/bin/sh +MODULE_NAME=zlib +PHP_INI=/opt/csw/php4/lib/php.ini + +echo "[===> Running Post Install <===]" +echo " ===> Enabling ${MODULE_NAME} extension" +if grep 'CSW Extensions' ${PHP_INI} >/dev/null 2>&1; then +/bin/true +else +cat << _EOF_ +****************************************************************************** +* WARNING: Could not enable Extension "${MODULE_NAME}" +* You will need to enable it by hand as follows: +* +* open ${PHP_INI} in your favorite text editor +* Add the following line to the file, save, and restart your web server +* extension=${MODULE_NAME}.so +****************************************************************************** +_EOF_ +exit 0 +fi +if grep "extension=${MODULE_NAME}.so" ${PHP_INI} >/dev/null 2>&1; then +perl -i -plne "s|;extension=${MODULE_NAME}.so|extension=${MODULE_NAME}.so|" ${PHP_INI} +else +perl -i -pe "s|.*CSW Extensions|; CSW Extensions\nextension=${MODULE_NAME}.so|" ${PHP_INI} +fi +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Enabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the install +****************************************************************************** +_EOF_ +exit 0 Added: csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.preremove =================================================================== --- csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.preremove (rev 0) +++ csw/mgar/pkg/php4/trunk/files/CSWphp4zlib.preremove 2009-05-14 18:26:56 UTC (rev 4847) @@ -0,0 +1,16 @@ +#!/bin/sh +MODULE_NAME=zlib +#PHP_INI=/opt/csw/php4/lib/php.ini +PHP_INI=php.ini +echo "[===> Running Pre Remove <===]" +echo " ===> Disabling ${MODULE_NAME} extension" +perl -i -plne "s|extension=${MODULE_NAME}.so|;extension=${MODULE_NAME}.so|" ${PHP_INI} +cat << _EOF_ +****************************************************************************** +* NOTICE: Successfully Disabled Extension "${MODULE_NAME}" +* in ${PHP_INI} +* +* You will need to restart your web server to finish the removal +****************************************************************************** +_EOF_ +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Thu May 14 20:28:46 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 14 May 2009 18:28:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[4848] csw/mgar/pkg/pnp/trunk Message-ID: Revision: 4848 http://gar.svn.sourceforge.net/gar/?rev=4848&view=rev Author: j_arndt Date: 2009-05-14 18:28:45 +0000 (Thu, 14 May 2009) Log Message: ----------- pnp: configuration example added, paths corrected Modified Paths: -------------- csw/mgar/pkg/pnp/trunk/Makefile csw/mgar/pkg/pnp/trunk/checksums csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype Added Paths: ----------- csw/mgar/pkg/pnp/trunk/files/nagios_commands.cfg-sample.diff Modified: csw/mgar/pkg/pnp/trunk/Makefile =================================================================== --- csw/mgar/pkg/pnp/trunk/Makefile 2009-05-14 18:26:56 UTC (rev 4847) +++ csw/mgar/pkg/pnp/trunk/Makefile 2009-05-14 18:28:45 UTC (rev 4848) @@ -18,6 +18,7 @@ PATCHFILES += npcdmod.h.diff PATCHFILES += npcdmod.c.diff PATCHFILES += npcd.cfg-sample.in.diff +PATCHFILES += nagios_commands.cfg-sample.diff # We define upstream file regex so we can be notifed of new upstream software release #UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz @@ -58,7 +59,7 @@ include gar/category.mk DATAROOTDIR = $(datadir) -CONTRIBDIR = $(DATAROOTDIR)/contrib +CONTRIBDIR = /opt/csw/nagios/pnp/contrib SYSCONFDIR = $(sysconfdir) LIBEXECDIR = $(libexecdir) BINDIR = $(bindir) @@ -132,6 +133,7 @@ @ginstall -m 644 $(WORKSRC)/sample-config/pnp/check_commands/check_nwstat.cfg-sample $(DESTDIR)$(SYSCONFDIR)/check_commands/check_nwstat.cfg.CSW @ginstall -m 644 $(WORKSRC)/sample-config/pnp/pages/web_traffic.cfg-sample $(DESTDIR)$(SYSCONFDIR)/pages/web_traffic.cfg.CSW @ginstall -m 644 $(WORKSRC)/sample-config/pnp/npcd.cfg-sample $(DESTDIR)$(SYSCONFDIR)/npcd.cfg.CSW + @ginstall -m 644 $(WORKSRC)/sample-config/pnp/nagios_commands.cfg-sample $(DESTDIR)$(SYSCONFDIR)/nagios_commands.cfg-sample @$(MAKECOOKIE) install-contrib-custom: Modified: csw/mgar/pkg/pnp/trunk/checksums =================================================================== --- csw/mgar/pkg/pnp/trunk/checksums 2009-05-14 18:26:56 UTC (rev 4847) +++ csw/mgar/pkg/pnp/trunk/checksums 2009-05-14 18:28:45 UTC (rev 4848) @@ -1,9 +1,10 @@ 9dbbf08191a258f6798c9516b3821ff0 download/pnp-0.4.14.tar.gz 216b8ed50919642c3fae2a6520724dd3 download/CSWpnp.gspec -fc763dd71049d4c06f10b8898fa3c1bb download/CSWpnp.prototype +6e75bd501030cb04740160165f8b9ed8 download/CSWpnp.prototype fec420cb27af9cbd0daba28f04500f8c download/cswpnp 80c06e6426497ed3fa96c0e77aff613d download/makefile.diff db6af87968e9b29272d387033f09acba download/npcd.c.diff 65d971cd9983aef7f069c7976424eb99 download/npcdmod.h.diff 8380996936f96669d8abe25dd8faf392 download/npcdmod.c.diff 01c0965ea1bdd26e4f0fdbc51640dfce download/npcd.cfg-sample.in.diff +8458b6df4844588d578344d97a26dd5e download/nagios_commands.cfg-sample.diff Modified: csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype =================================================================== --- csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype 2009-05-14 18:26:56 UTC (rev 4847) +++ csw/mgar/pkg/pnp/trunk/files/CSWpnp.prototype 2009-05-14 18:28:45 UTC (rev 4848) @@ -17,6 +17,7 @@ d none /opt/csw/nagios/pnp/etc/pages 0755 nagios nagios f cswpreserveconf /opt/csw/nagios/pnp/etc/pages/web_traffic.cfg.CSW 0644 nagios nagios f none /opt/csw/nagios/pnp/etc/pnp4nagios_release 0644 nagios nagios +f none /opt/csw/nagios/pnp/etc/nagios_commands.cfg-sample 0644 nagios nagios f cswpreserveconf /opt/csw/nagios/pnp/etc/process_perfdata.cfg.CSW 0644 nagios nagios f cswpreserveconf /opt/csw/nagios/pnp/etc/rra.cfg.CSW 0644 nagios nagios d none /opt/csw/nagios/pnp/share 0755 nagios nagios @@ -28,12 +29,12 @@ d none /opt/csw/nagios/share/pnp 0755 nagios nagios s none /opt/csw/nagios/pnp/share/html=/opt/csw/nagios/share/pnp f none /opt/csw/nagios/share/pnp/ajax.php 0644 nagios nagios -d none /opt/csw/nagios/share/pnp/contrib 0755 nagios nagios -f none /opt/csw/nagios/share/pnp/contrib/makeserviceextinfo.pl 0644 nagios nagios -d none /opt/csw/nagios/share/pnp/contrib/ssi 0755 nagios nagios -f none /opt/csw/nagios/share/pnp/contrib/ssi/status-header.ssi 0644 nagios nagios -f none /opt/csw/nagios/share/pnp/contrib/verify_pnp_config 0644 nagios nagios -f none /opt/csw/nagios/share/pnp/contrib/verify_pnp_config.txt 0644 nagios nagios +d none /opt/csw/nagios/pnp/contrib 0755 nagios nagios +f none /opt/csw/nagios/pnp/contrib/makeserviceextinfo.pl 0644 nagios nagios +d none /opt/csw/nagios/pnp/contrib/ssi 0755 nagios nagios +f none /opt/csw/nagios/pnp/contrib/ssi/status-header.ssi 0644 nagios nagios +f none /opt/csw/nagios/pnp/contrib/verify_pnp_config 0644 nagios nagios +f none /opt/csw/nagios/pnp/contrib/verify_pnp_config.txt 0644 nagios nagios d none /opt/csw/nagios/share/pnp/images 0755 nagios nagios f none /opt/csw/nagios/share/pnp/images/ack.png 0644 nagios nagios f none /opt/csw/nagios/share/pnp/images/action.gif 0644 nagios nagios Added: csw/mgar/pkg/pnp/trunk/files/nagios_commands.cfg-sample.diff =================================================================== --- csw/mgar/pkg/pnp/trunk/files/nagios_commands.cfg-sample.diff (rev 0) +++ csw/mgar/pkg/pnp/trunk/files/nagios_commands.cfg-sample.diff 2009-05-14 18:28:45 UTC (rev 4848) @@ -0,0 +1,53 @@ +diff --speed-large-files --minimal -Nru pnp-0.4.14.orig/sample-config/pnp/nagios_commands.cfg-sample pnp-0.4.14/sample-config/pnp/nagios_commands.cfg-sample +--- pnp-0.4.14.orig/sample-config/pnp/nagios_commands.cfg-sample 1970-01-01 01:00:00.000000000 +0100 ++++ pnp-0.4.14/sample-config/pnp/nagios_commands.cfg-sample 2009-05-13 20:15:50.819746793 +0200 +@@ -0,0 +1,49 @@ ++# ++# You can append these commands to your commands.cfg and ++# uncomment the lines for the mode, which fits your environment. ++# ++# Please note, that you need to edit your nagios.cfg too, ++# see http://www.pnp4nagios.org/ for more information. ++# ++ ++# ++# default mode ++# ++ ++#define command { ++# command_name process-service-perfdata ++# command_line /opt/csw/bin/perl /opt/csw/libexec/nagios-plugins/process_perfdata.pl ++#} ++ ++#define command { ++# command_name process-host-perfdata ++# command_line /opt/csw/bin/perl /opt/csw/libexec/nagios-plugins/process_perfdata.pl -d HOSTPERFDATA ++#} ++ ++# ++# bulk mode ++# ++ ++#define command{ ++# command_name process-service-perfdata-file ++# command_line /opt/csw/libexec/nagios-plugins/process_perfdata.pl --bulk=/opt/csw/nagios/pnp/var/service-perfdata ++#} ++ ++#define command{ ++# command_name process-host-perfdata-file ++# command_line /opt/csw/libexec/nagios-plugins/process_perfdata.pl --bulk=/opt/csw/nagios/pnp/var/host-perfdata ++# } ++ ++# ++# bulk mode with npcd ++# ++ ++#define command{ ++# command_name process-service-perfdata-file ++# command_line /bin/mv /opt/csw/nagios/pnp/var/service-perfdata /opt/csw/nagios/pnp/var/spool/perfdata/service-perfdata.$TIMET$ ++# } ++ ++#define command{ ++# command_name process-host-perfdata-file ++# command_line /bin/mv /opt/csw/nagios/pnp/var/host-perfdata /opt/csw/nagios/pnp/var/spool/perfdata/host-perfdata.$TIMET$ ++# } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 20:32:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 18:32:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[4849] csw/mgar/pkg/php4/trunk/files/pkgfiles.mk Message-ID: Revision: 4849 http://gar.svn.sourceforge.net/gar/?rev=4849&view=rev Author: valholla Date: 2009-05-14 18:32:25 +0000 (Thu, 14 May 2009) Log Message: ----------- minor change Modified Paths: -------------- csw/mgar/pkg/php4/trunk/files/pkgfiles.mk Modified: csw/mgar/pkg/php4/trunk/files/pkgfiles.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/pkgfiles.mk 2009-05-14 18:28:45 UTC (rev 4848) +++ csw/mgar/pkg/php4/trunk/files/pkgfiles.mk 2009-05-14 18:32:25 UTC (rev 4849) @@ -29,4 +29,5 @@ PKGFILES_CSWap2modphp4 = .*/apache2/.* PKGFILES_CSWmodphp4 = .*/apache/.* PKGFILES_CSWmodphp4core = /opt/csw/php4/README-mod_php4_core +PKGFILES_CSWphp4 = /opt/csw/php4/README-mod_php #PKGFILES_CSWphp4cgi catchall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 20:41:08 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 18:41:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[4850] csw/mgar/pkg/php4/trunk/Makefile Message-ID: Revision: 4850 http://gar.svn.sourceforge.net/gar/?rev=4850&view=rev Author: valholla Date: 2009-05-14 18:41:08 +0000 (Thu, 14 May 2009) Log Message: ----------- move garname to php4 Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 18:32:25 UTC (rev 4849) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 18:41:08 UTC (rev 4850) @@ -1,6 +1,7 @@ -GARNAME = php +GARNAME = php4 GARVERSION = 4.4.9 CATEGORIES = lang +SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') DESCRIPTION = A high-level scripting language. define BLURB @@ -18,7 +19,7 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES += $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 DISTFILES += dummy-httpd.conf DISTFILES += httpd-php4.conf.CSW DISTFILES += php.ini.CSW @@ -123,6 +124,7 @@ @ginstall -d $(DESTDIR)$(prefix)/apache/conf @ginstall -d $(DESTDIR)$(prefix)/php4/lib @ginstall -m 0644 $(WORKDIR)/README-mod_php4_core $(DESTDIR)$(prefix)/php4 + @ginstall -m 0644 $(WORKDIR)/README-mod_php $(DESTDIR)$(prefix)/php4 @ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php4/lib @ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php4/lib @ginstall -m 0644 $(WORKDIR)/httpd-php4.conf.CSW \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 20:41:38 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 18:41:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[4851] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4851 http://gar.svn.sourceforge.net/gar/?rev=4851&view=rev Author: valholla Date: 2009-05-14 18:41:38 +0000 (Thu, 14 May 2009) Log Message: ----------- cleanup old files and rename GARNAME to php5 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/php5/trunk/files/config.diff csw/mgar/pkg/php5/trunk/files/extensions.mk Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-14 18:41:08 UTC (rev 4850) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-14 18:41:38 UTC (rev 4851) @@ -1,6 +1,7 @@ -GARNAME = php +GARNAME = php5 GARVERSION = 5.2.9 CATEGORIES = lang +SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') DESCRIPTION = A high-level scripting language. define BLURB @@ -22,7 +23,7 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES += $(GARNAME)-$(GARVERSION).tar.bz2 +DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) PHP5ROOT = $(DESTDIR)$(prefix)/php5 Deleted: csw/mgar/pkg/php5/trunk/files/config.diff =================================================================== --- csw/mgar/pkg/php5/trunk/files/config.diff 2009-05-14 18:41:08 UTC (rev 4850) +++ csw/mgar/pkg/php5/trunk/files/config.diff 2009-05-14 18:41:38 UTC (rev 4851) @@ -1,132 +0,0 @@ ---- php-5.2.6/configure.orig 2009-03-02 19:48:06.545907523 -0600 -+++ php-5.2.6/configure 2009-03-02 19:44:49.225016959 -0600 -@@ -4714,7 +4714,7 @@ - $APXS -q -S CFLAGS="$APXS_CFLAGS" CFLAGS >/dev/null 2>&1 - - if test "$?" != "0"; then -- APACHE_INSTALL="$APXS -i -a -n php5 $SAPI_SHARED" # Old apxs does not have -S option -+ APACHE_INSTALL="$APXS -i -n php5 $SAPI_SHARED" # Old apxs does not have -S option - else - APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` - if test -z `$APXS -q SYSCONFDIR`; then -@@ -4727,7 +4727,7 @@ - \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ - $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ - -S SYSCONFDIR='$APXS_SYSCONFDIR' \ -- -i -a -n php5 $SAPI_SHARED" -+ -i -n php5 $SAPI_SHARED" - fi - fi - -@@ -5875,7 +5875,7 @@ - \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ - $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ - -S SYSCONFDIR='$APXS_SYSCONFDIR' \ -- -i -a -n php5" -+ -i -n php5" - fi - - case $host_alias in -@@ -6723,7 +6723,7 @@ - \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ - $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ - -S SYSCONFDIR='$APXS_SYSCONFDIR' \ -- -i -a -n php5" -+ -i -n php5" - fi - - case $host_alias in -@@ -7740,7 +7740,7 @@ - $APXS -q -S CFLAGS="$APXS_CFLAGS" CFLAGS >/dev/null 2>&1 - - if test "$?" != "0"; then -- APACHE_HOOKS_INSTALL="$APXS -i -a -n php5 $SAPI_SHARED" # Old apxs does not have -S option -+ APACHE_HOOKS_INSTALL="$APXS -i -n php5 $SAPI_SHARED" # Old apxs does not have -S option - else - APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` - if test -z `$APXS -q SYSCONFDIR`; then -@@ -7753,7 +7753,7 @@ - \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ - $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ - -S SYSCONFDIR='$APXS_SYSCONFDIR' \ -- -i -a -n php5 $SAPI_SHARED" -+ -i -n php5 $SAPI_SHARED" - fi - fi - -@@ -19871,7 +19871,7 @@ - echo $ac_n "(cached) $ac_c" 1>&6 - else - -- for i in $PHP_LIBXML_DIR /usr/local /usr; do -+ for i in $PHP_LIBXML_DIR /opt/csw /usr/local /usr; do - if test -x "$i/bin/xml2-config"; then - ac_cv_php_xml2_config_path="$i/bin/xml2-config" - break -@@ -45789,7 +45789,7 @@ - - if test "$found_iconv" = "no"; then - -- for i in $PHP_ICONV /usr/local /usr; do -+ for i in $PHP_ICONV /opt/csw /usr/local /usr; do - if test -r $i/include/giconv.h; then - cat >> confdefs.h <<\EOF - #define HAVE_GICONV_H 1 -@@ -46270,7 +46270,7 @@ - - if test "$iconv_avail" != "no"; then - if test -z "$ICONV_DIR"; then -- for i in /usr/local /usr; do -+ for i in /opt/csw /usr/local /usr; do - if test -f "$i/include/iconv.h" || test -f "$i/include/giconv.h"; then - PHP_ICONV_PREFIX="$i" - break -@@ -68070,7 +68070,7 @@ - echo $ac_n "checking for unixODBC support""... $ac_c" 1>&6 - echo "configure:68072: checking for unixODBC support" >&5 - if test "$PHP_UNIXODBC" = "yes"; then -- PHP_UNIXODBC=/usr/local -+ PHP_UNIXODBC=/opt/csw - fi - ODBC_INCDIR=$PHP_UNIXODBC/include - ODBC_LIBDIR=$PHP_UNIXODBC/$PHP_LIBDIR -@@ -76646,8 +76646,8 @@ - echo $ac_n "checking for pg_config""... $ac_c" 1>&6 - echo "configure:76648: checking for pg_config" >&5 - for i in $PHP_PDO_PGSQL $PHP_PDO_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do -- if test -x $i/pg_config; then -- PG_CONFIG="$i/pg_config" -+ if test -x $i/pg_config32; then -+ PG_CONFIG="$i/pg_config32" - break; - fi - done -@@ -79427,8 +79427,8 @@ - echo $ac_n "checking for pg_config""... $ac_c" 1>&6 - echo "configure:79429: checking for pg_config" >&5 - for i in $PHP_PGSQL $PHP_PGSQL/bin /usr/local/pgsql/bin /usr/local/bin /usr/bin ""; do -- if test -x $i/pg_config; then -- PG_CONFIG="$i/pg_config" -+ if test -x $i/pg_config32; then -+ PG_CONFIG="$i/pg_config32" - break; - fi - done -@@ -82574,7 +82574,7 @@ - echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-lreadline $LIBS" -+LIBS="-lreadline -lcurses $LIBS" - cat > conftest.$ac_ext <&6 - echo "configure:102617: checking for XMLRPC-EPI in default path" >&5 -- for i in /usr/local /usr; do -+ for i in /opt/csw /usr/local /usr; do - if test -r $i/include/xmlrpc.h; then - XMLRPC_DIR=$i/include - echo "$ac_t""found in $i" 1>&6 Deleted: csw/mgar/pkg/php5/trunk/files/extensions.mk =================================================================== --- csw/mgar/pkg/php5/trunk/files/extensions.mk 2009-05-14 18:41:08 UTC (rev 4850) +++ csw/mgar/pkg/php5/trunk/files/extensions.mk 2009-05-14 18:41:38 UTC (rev 4851) @@ -1,31 +0,0 @@ - -# PHP Extensions -XLIST = bz2 -XLIST += curl -XLIST += dba -XLIST += ftp -XLIST += gd -XLIST += gettext -XLIST += gmp -XLIST += imap -XLIST += ldap -XLIST += mcrypt -XLIST += mhash -XLIST += mssql -XLIST += mysql -XLIST += mysqli -XLIST += odbc -XLIST += pdomysql -XLIST += pdoodbc -XLIST += pdopgsql -XLIST += pdosqlite -XLIST += pgsql -XLIST += pspell -XLIST += readline -XLIST += snmp -XLIST += sqlite -XLIST += wddx -XLIST += xsl - -DISTFILES += $(foreach N,$(XLIST),$(call admfiles,CSWphp5$(N),prototype)) - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 20:42:22 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 18:42:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[4852] csw/mgar/pkg/php4/trunk/files/README-mod_php Message-ID: Revision: 4852 http://gar.svn.sourceforge.net/gar/?rev=4852&view=rev Author: valholla Date: 2009-05-14 18:42:22 +0000 (Thu, 14 May 2009) Log Message: ----------- minor change Added Paths: ----------- csw/mgar/pkg/php4/trunk/files/README-mod_php Added: csw/mgar/pkg/php4/trunk/files/README-mod_php =================================================================== --- csw/mgar/pkg/php4/trunk/files/README-mod_php (rev 0) +++ csw/mgar/pkg/php4/trunk/files/README-mod_php 2009-05-14 18:42:22 UTC (rev 4852) @@ -0,0 +1,9 @@ +***************************************************************************** +* DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED, DEPRICATED +* PHP4 is Depricated, Please consider upgrading to PHP5 +***************************************************************************** + +This is a Meta-Package it only contains this file. +This package depends on all other packages for php4. + +Thank You! This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 20:54:31 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 18:54:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[4853] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4853 http://gar.svn.sourceforge.net/gar/?rev=4853&view=rev Author: valholla Date: 2009-05-14 18:54:31 +0000 (Thu, 14 May 2009) Log Message: ----------- checksum and admin files Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/checksums Added Paths: ----------- csw/mgar/pkg/php4/trunk/files/admfiles.mk Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 18:42:22 UTC (rev 4852) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 18:54:31 UTC (rev 4853) @@ -19,26 +19,21 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 -DISTFILES += dummy-httpd.conf -DISTFILES += httpd-php4.conf.CSW -DISTFILES += php.ini.CSW +DISTFILES = $(SF_PROJ)-$(GARVERSION).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) PHP4ROOT = $(DESTDIR)$(prefix)/php4 - STRIP_DIRS += $(PHP4ROOT)/lib/php/extensions/*/ STRIP_DIRS += $(PHP4ROOT)/bin PATCHFILES = pgsql.diff - EXTRA_LIB += $(prefix)/bdb44/lib EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw + CONFIGURE_ARGS += --prefix=$(prefix)/php4 CONFIGURE_ARGS += --disable-static CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php4/bin - CONFIGURE_ARGS += --enable-bcmath=shared CONFIGURE_ARGS += --enable-calendar=shared CONFIGURE_ARGS += --enable-cgi @@ -141,7 +136,7 @@ @grm $(DESTDIR)$(prefix)/apache2/etc/httpd.conf* @$(MAKECOOKIE) - include files/pkgdef.mk include files/pkgfiles.mk +include files/admfiles.mk include gar/category.mk Modified: csw/mgar/pkg/php4/trunk/checksums =================================================================== --- csw/mgar/pkg/php4/trunk/checksums 2009-05-14 18:42:22 UTC (rev 4852) +++ csw/mgar/pkg/php4/trunk/checksums 2009-05-14 18:54:31 UTC (rev 4853) @@ -1,3 +1,55 @@ +2f2d6b1a009304c95d735255dba530b0 download/CSWap2modphp4.postinstall +2d6d0b03dd17b8ca03e666e99f331322 download/CSWap2modphp4.preremove +0dd379f20ceb32fc77bb3a9bf045097f download/CSWap2modphp4.space +4b39ed880dc873c0008eef302e5f9467 download/CSWmodphp4.postinstall +8924c197b7915385734a765dab961e68 download/CSWmodphp4.preremove +0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp4.space +d4b85eb982eb4a593bacf6024db706a9 download/CSWphp4.postinstall +97d253d03e6aee4df218c0b94f44a175 download/CSWphp4.space +3119c7fb6c454da9e483a54453b39548 download/CSWphp4bcmath.postinstall +a28367bcf2f1dc5513271b4fd5f7db2b download/CSWphp4bcmath.preremove +a5baa2f0261f9d4f45240e32aa931dab download/CSWphp4bz2.postinstall +ed0922061d8b95e2f8cc6604381cc57f download/CSWphp4bz2.preremove +82b8586235f637d239c07eb3bead372e download/CSWphp4calendar.postinstall +0bbeea841afc4d2ea98b641b9f09624a download/CSWphp4calendar.preremove +84aa3d42197c8fb1c6eb000c8684e904 download/CSWphp4curl.postinstall +99f1ea3f414aa4e63e94d9e34069ac7d download/CSWphp4curl.preremove +beb44563abab6725128a796e2507883b download/CSWphp4dba.postinstall +4f3c0524060deba68760c8cd4b101482 download/CSWphp4dba.preremove +391a9204a7b99911207762c29b094a22 download/CSWphp4domxml.postinstall +55a167a6d4d478856423b5f064958e64 download/CSWphp4domxml.preremove +7517719ac38440cb7584b582652fa1fa download/CSWphp4gd.postinstall +926d9b58d6a2d352cf23a5755471e1f0 download/CSWphp4gd.preremove +ba1e62dfb832cd2e369226afc9b759ce download/CSWphp4gettext.postinstall +cb589a4ca4a3311d1ec916eaa53cec5f download/CSWphp4gettext.preremove +1b3cbc1feb3f94e466f149d38857e96d download/CSWphp4gmp.postinstall +153a8bd51ad9019cff0ad77b163e7bd9 download/CSWphp4gmp.preremove +d103fd359ebb421d0a8a41e59394fc8a download/CSWphp4iconv.postinstall +7437f8f082c95420aaee704a3b4f42d0 download/CSWphp4iconv.preremove +b9540869abf433e623d4d6be0e34152a download/CSWphp4imap.postinstall +5db399a3e1bceff000369b4c77727d7b download/CSWphp4imap.preremove +682b390bb4027ca5b9a6554671841c22 download/CSWphp4ldap.postinstall +fba32bef8deaefa3ab7dae5d688144bf download/CSWphp4ldap.preremove +b61dc20076329f48210de4dd31572f6f download/CSWphp4mbstring.postinstall +6359a3754ae562eb9bc1105d7ad2cf82 download/CSWphp4mbstring.preremove +c3074edb714074ca94bb7a222387374c download/CSWphp4mcal.postinstall +2a0014460d320b93fc227acac591d6a0 download/CSWphp4mcal.preremove +ebfe95b3aa54d9eb59d9de54ed71958f download/CSWphp4mssql.postinstall +197ce3cd2bf5316034aaf026b45ae306 download/CSWphp4mssql.preremove +18e7fa4375bcae7cd8df3d40417c5e54 download/CSWphp4mysql.postinstall +c749d159edf7f57bb2271bc6d32e8b34 download/CSWphp4mysql.preremove +61563764c3e8ea86250d60a414c2a08a download/CSWphp4ncurses.postinstall +bd689819276a2c462a32e2c187bb28a2 download/CSWphp4ncurses.preremove +c552f04399c41b8092c2e2874eed5997 download/CSWphp4odbc.postinstall +fd9c43fffd24083e3c665dd066724f44 download/CSWphp4odbc.preremove +76d8e3c627a5185bae8d23b467f0b7e0 download/CSWphp4openssl.postinstall +f8d282b9d62c6d543057c6d8137a6250 download/CSWphp4openssl.preremove +1ac2fda1017a05618aab7b0b6e8f6b45 download/CSWphp4pgsql.postinstall +008f9fe669a5699c40c4415f95d0148a download/CSWphp4pgsql.preremove +7340bac8a1bb91821f664f32e6cc4920 download/CSWphp4zlib.postinstall +77ec27892ad5659e22789dc97c6d5472 download/CSWphp4zlib.preremove +86e8561c50e7272b06336dcdb03f7bea download/README-mod_php +76492b303e12d8d0d8d6c6e1e91d7850 download/README-mod_php4_core 93db60a388952ec3b40bb3bb005ff06b download/dummy-httpd.conf ec1d86518d8b6d5a320ce058f03d9eef download/httpd-php4.conf.CSW 3870a95f52c9637798294243694fdd47 download/pgsql.diff @@ -2,2 +54,2 @@ 2e3b2a0e27f10cb84fd00e5ecd7a1880 download/php-4.4.9.tar.bz2 -4450995841c11c22e4369dc425307a4a download/php.ini.CSW +dfbb642e8600052261b85775d86f82c7 download/php.ini.CSW Added: csw/mgar/pkg/php4/trunk/files/admfiles.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/admfiles.mk (rev 0) +++ csw/mgar/pkg/php4/trunk/files/admfiles.mk 2009-05-14 18:54:31 UTC (rev 4853) @@ -0,0 +1,59 @@ +# +# Define Extra Files for Packages +# + +DISTFILES += CSWap2modphp4.postinstall +DISTFILES += CSWap2modphp4.preremove +DISTFILES += CSWap2modphp4.space +DISTFILES += CSWmodphp4.postinstall +DISTFILES += CSWmodphp4.preremove +DISTFILES += CSWmodphp4.space +DISTFILES += CSWphp4.postinstall +DISTFILES += CSWphp4.space +DISTFILES += CSWphp4bcmath.postinstall +DISTFILES += CSWphp4bcmath.preremove +DISTFILES += CSWphp4bz2.postinstall +DISTFILES += CSWphp4bz2.preremove +DISTFILES += CSWphp4calendar.postinstall +DISTFILES += CSWphp4calendar.preremove +DISTFILES += CSWphp4curl.postinstall +DISTFILES += CSWphp4curl.preremove +DISTFILES += CSWphp4dba.postinstall +DISTFILES += CSWphp4dba.preremove +DISTFILES += CSWphp4domxml.postinstall +DISTFILES += CSWphp4domxml.preremove +DISTFILES += CSWphp4gd.postinstall +DISTFILES += CSWphp4gd.preremove +DISTFILES += CSWphp4gettext.postinstall +DISTFILES += CSWphp4gettext.preremove +DISTFILES += CSWphp4gmp.postinstall +DISTFILES += CSWphp4gmp.preremove +DISTFILES += CSWphp4iconv.postinstall +DISTFILES += CSWphp4iconv.preremove +DISTFILES += CSWphp4imap.postinstall +DISTFILES += CSWphp4imap.preremove +DISTFILES += CSWphp4ldap.postinstall +DISTFILES += CSWphp4ldap.preremove +DISTFILES += CSWphp4mbstring.postinstall +DISTFILES += CSWphp4mbstring.preremove +DISTFILES += CSWphp4mcal.postinstall +DISTFILES += CSWphp4mcal.preremove +DISTFILES += CSWphp4mssql.postinstall +DISTFILES += CSWphp4mssql.preremove +DISTFILES += CSWphp4mysql.postinstall +DISTFILES += CSWphp4mysql.preremove +DISTFILES += CSWphp4ncurses.postinstall +DISTFILES += CSWphp4ncurses.preremove +DISTFILES += CSWphp4odbc.postinstall +DISTFILES += CSWphp4odbc.preremove +DISTFILES += CSWphp4openssl.postinstall +DISTFILES += CSWphp4openssl.preremove +DISTFILES += CSWphp4pgsql.postinstall +DISTFILES += CSWphp4pgsql.preremove +DISTFILES += CSWphp4zlib.postinstall +DISTFILES += CSWphp4zlib.preremove +DISTFILES += README-mod_php +DISTFILES += README-mod_php4_core +DISTFILES += dummy-httpd.conf +DISTFILES += httpd-php4.conf.CSW +DISTFILES += php.ini.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 21:22:37 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 19:22:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4854] csw/mgar/pkg/php4/trunk/Makefile Message-ID: Revision: 4854 http://gar.svn.sourceforge.net/gar/?rev=4854&view=rev Author: valholla Date: 2009-05-14 19:22:37 +0000 (Thu, 14 May 2009) Log Message: ----------- minor tweak Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 18:54:31 UTC (rev 4853) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 19:22:37 UTC (rev 4854) @@ -2,6 +2,7 @@ GARVERSION = 4.4.9 CATEGORIES = lang SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') +DISTNAME = $(SF_PROJ)-$(GARVERSION) DESCRIPTION = A high-level scripting language. define BLURB This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 21:41:00 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 19:41:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[4855] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4855 http://gar.svn.sourceforge.net/gar/?rev=4855&view=rev Author: valholla Date: 2009-05-14 19:41:00 +0000 (Thu, 14 May 2009) Log Message: ----------- move to default location Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_bcmath/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_bz2/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_calendar/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ctype/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_curl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_dbase/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_dom/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_exif/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ftp/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_gd/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_gmp/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_hash/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_iconv/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_imap/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_json/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ldap/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mbstring/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mcrypt/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mhash/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mime_magic/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mssql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mysqli/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ncurses/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_odbc/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_openssl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pcntl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pgsql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_posix/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pspell/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_readline/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_session/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_shmop/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_simplexml/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_snmp/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_soap/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sockets/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sqlite/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sysvmsg/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sysvsem/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sysvshm/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_tidy/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_tokenizer/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_wddx/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xmlreader/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xmlrpc/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xmlwriter/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xsl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_zip/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_zlib/Makefile csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_disable.sh csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_enable.sh csw/mgar/pkg/php5/trunk/files/pear.conf.CSW Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -2,6 +2,7 @@ GARVERSION = 5.2.9 CATEGORIES = lang SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') +DISTNAME = $(SF_PROJ)-$(GARVERSION) DESCRIPTION = A high-level scripting language. define BLURB @@ -17,19 +18,13 @@ available. endef -php5_root = $(DESTDIR)$(prefix)/php5 -php5_bin = $(php5_root)/bin -php5_lib = $(php5_root)/lib - MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) -PHP5ROOT = $(DESTDIR)$(prefix)/php5 -STRIP_DIRS += $(PHP5ROOT)/lib/php/extensions/*/ -STRIP_DIRS += $(PHP5ROOT)/bin +STRIP_DIRS += $(prefix)/lib/php/extensions/*/ # Auxilliary files DISTFILES += php.ini.CSW phpext pear.conf.CSW @@ -46,12 +41,12 @@ REQUIRED_PKGS_CSWphp5 += CSWlibxml2 CSWzlib CSWmysql5rt REQUIRED_PKGS_CSWphp5devel = CSWphp5 -PKGFILES_CSWphp5devel = $(prefix)/php5/bin/php-config -PKGFILES_CSWphp5devel += $(prefix)/php5/bin/phpize -PKGFILES_CSWphp5devel += $(prefix)/php5/bin/peardev -PKGFILES_CSWphp5devel += $(prefix)/php5/include.* -PKGFILES_CSWphp5devel += $(prefix)/php5/lib/php/build/.* -PKGFILES_CSWphp5devel += $(prefix)/php5/man/.* +PKGFILES_CSWphp5devel = $(bindir)/php-config +PKGFILES_CSWphp5devel += $(bindir)/phpize +PKGFILES_CSWphp5devel += $(bindir)/peardev +PKGFILES_CSWphp5devel += $(includedir)/.* +PKGFILES_CSWphp5devel += $(libdir)/php/build/.* +PKGFILES_CSWphp5devel += $(mandir)/.* PATCHFILES += configure.diff PATCHFILES += php-bug-45557-fix.diff @@ -69,9 +64,8 @@ STRIP_LIBTOOL = 1 -CONFIGURE_ARGS += --prefix=$(prefix)/php5 +CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-static -CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php5/bin CONFIGURE_ARGS += --enable-cli CONFIGURE_ARGS += --enable-fastcgi CONFIGURE_ARGS += --enable-force-cgi-redirect @@ -101,17 +95,17 @@ @$(MAKECOOKIE) install-extras: - ginstall -m 0755 $(WORKDIR)/phpext $(DESTDIR)$(prefix)/php5/bin - gsed -i -e s,PHPEXTDIR,$(shell $(PHP5ROOT)/bin/php-config --extension-dir),\ + ginstall -m 0755 $(WORKDIR)/phpext $(DESTDIR)$(bindir) + gsed -i -e s,PHPEXTDIR,$(shell $(bindir)/php-config --extension-dir),\ $(WORKDIR)/php.ini.CSW - ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php5/lib - ginstall -m 0644 $(WORKDIR)/pear.conf.CSW $(DESTDIR)$(prefix)/php5/etc + ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(libdir) + ginstall -m 0644 $(WORKDIR)/pear.conf.CSW $(DESTDIR)$(sysconfdir) ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra ginstall -m 0644 $(WORKDIR)/httpd-php5.conf.CSW \ $(DESTDIR)$(prefix)/apache2/etc/extra @(grm -fr $(DESTDIR)/.[a-z]*) - @(gfind $(PHP5ROOT)/lib -name "*.a" -exec grm {} \;) - @(grm -f $(DESTDIR)$(prefix)/php5/etc/pear.conf) + @(gfind $(libdir) -name "*.a" -exec grm {} \;) + @(grm -f $(DESTDIR)$(sysconfdir)/pear.conf) @$(MAKECOOKIE) install-ap2modphp5: Modified: csw/mgar/pkg/php5/trunk/extensions/php5_bcmath/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_bcmath/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_bcmath/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5bcmath_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling bcmath extension" @@ -56,7 +56,7 @@ define CSWphp5bcmath_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling bcmath extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_bz2/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_bz2/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_bz2/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5bz2_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling bz2 extension" @@ -56,7 +56,7 @@ define CSWphp5bz2_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling bz2 extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_calendar/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_calendar/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_calendar/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5calendar_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling calendar extension" @@ -56,7 +56,7 @@ define CSWphp5calendar_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling calendar extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_ctype/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_ctype/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_ctype/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5ctype_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling ctype extension" @@ -56,7 +56,7 @@ define CSWphp5ctype_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling ctype extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_curl/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_curl/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_curl/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5curl_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling curl extension" @@ -58,7 +58,7 @@ define CSWphp5curl_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling curl extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -17,7 +17,7 @@ define CSWphp5dba_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling dba extension" @@ -60,7 +60,7 @@ define CSWphp5dba_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling dba extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_dbase/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_dbase/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_dbase/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5dbase_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling dbase extension" @@ -56,7 +56,7 @@ define CSWphp5dbase_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling dbase extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_dom/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_dom/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_dom/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5dom_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling dom extension" @@ -57,7 +57,7 @@ define CSWphp5dom_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling dom extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_exif/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_exif/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_exif/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -16,7 +16,7 @@ define CSWphp5exif_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling exif extension" @@ -59,7 +59,7 @@ define CSWphp5exif_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling exif extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_ftp/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_ftp/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_ftp/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5ftp_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling ftp extension" @@ -56,7 +56,7 @@ define CSWphp5ftp_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling ftp extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_gd/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_gd/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_gd/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -24,7 +24,7 @@ define CSWphp5gd_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling gd extension" @@ -67,7 +67,7 @@ define CSWphp5gd_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling gd extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5gettext_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling gettext extension" @@ -56,7 +56,7 @@ define CSWphp5gettext_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling gettext extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_gmp/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_gmp/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_gmp/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5gmp_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling gmp extension" @@ -56,7 +56,7 @@ define CSWphp5gmp_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling gmp extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_hash/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_hash/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_hash/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5hash_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling hash extension" @@ -56,7 +56,7 @@ define CSWphp5hash_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling hash extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_iconv/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_iconv/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_iconv/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -20,7 +20,7 @@ define CSWphp5iconv_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling iconv extension" @@ -63,7 +63,7 @@ define CSWphp5iconv_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling iconv extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_imap/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_imap/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_imap/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5imap_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling imap extension" @@ -58,7 +58,7 @@ define CSWphp5imap_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling imap extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_json/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_json/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_json/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5json_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling json extension" @@ -56,7 +56,7 @@ define CSWphp5json_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling json extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_ldap/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_ldap/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_ldap/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5ldap_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling ldap extension" @@ -58,7 +58,7 @@ define CSWphp5ldap_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling ldap extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mbstring/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mbstring/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mbstring/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5mbstring_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mbstring extension" @@ -58,7 +58,7 @@ define CSWphp5mbstring_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mbstring extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mcrypt/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mcrypt/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mcrypt/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5mcrypt_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mcrypt extension" @@ -56,7 +56,7 @@ define CSWphp5mcrypt_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mcrypt extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mhash/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mhash/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mhash/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5mhash_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mhash extension" @@ -56,7 +56,7 @@ define CSWphp5mhash_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mhash extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mime_magic/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mime_magic/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mime_magic/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5mimemagic_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mime_magic extension" @@ -56,7 +56,7 @@ define CSWphp5mimemagic_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mime_magic extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mssql/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mssql/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mssql/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5mssql_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mssql extension" @@ -56,7 +56,7 @@ define CSWphp5mssql_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mssql extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5mysql_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mysql extension" @@ -56,7 +56,7 @@ define CSWphp5mysql_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mysql extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_mysqli/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_mysqli/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_mysqli/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5mysqli_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling mysqli extension" @@ -56,7 +56,7 @@ define CSWphp5mysqli_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling mysqli extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_ncurses/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_ncurses/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_ncurses/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5ncurses_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling ncurses extension" @@ -56,7 +56,7 @@ define CSWphp5ncurses_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling ncurses extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_odbc/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_odbc/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_odbc/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5odbc_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling odbc extension" @@ -58,7 +58,7 @@ define CSWphp5odbc_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling odbc extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_openssl/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_openssl/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_openssl/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5openssl_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling openssl extension" @@ -56,7 +56,7 @@ define CSWphp5openssl_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling openssl extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pcntl/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pcntl/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pcntl/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5pcntl_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pcntl extension" @@ -56,7 +56,7 @@ define CSWphp5pcntl_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pcntl extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -11,7 +11,7 @@ define CSWphp5pdo_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pdo extension" @@ -54,7 +54,7 @@ define CSWphp5pdo_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pdo extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5pdomysql_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pdo_mysql extension" @@ -57,7 +57,7 @@ define CSWphp5pdomysql_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pdo_mysql extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5pdoodbc_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pdo_odbc extension" @@ -56,7 +56,7 @@ define CSWphp5pdoodbc_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pdo_odbc extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5pdopgsql_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pdo_pgsql extension" @@ -58,7 +58,7 @@ define CSWphp5pdopgsql_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pdo_pgsql extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5pdosqlite_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pdo_sqlite extension" @@ -56,7 +56,7 @@ define CSWphp5pdosqlite_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pdo_sqlite extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pgsql/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pgsql/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pgsql/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5pgsql_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pgsql extension" @@ -58,7 +58,7 @@ define CSWphp5pgsql_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pgsql extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_posix/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_posix/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_posix/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5posix_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling posix extension" @@ -56,7 +56,7 @@ define CSWphp5posix_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling posix extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pspell/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pspell/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pspell/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5pspell_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling pspell extension" @@ -56,7 +56,7 @@ define CSWphp5pspell_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling pspell extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_readline/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_readline/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_readline/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5readline_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling readline extension" @@ -57,7 +57,7 @@ define CSWphp5readline_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling readline extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_session/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_session/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_session/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5session_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling session extension" @@ -56,7 +56,7 @@ define CSWphp5session_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling session extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_shmop/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_shmop/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_shmop/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5shmop_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling shmop extension" @@ -56,7 +56,7 @@ define CSWphp5shmop_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling shmop extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_simplexml/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_simplexml/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_simplexml/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -9,7 +9,7 @@ define CSWphp5simplexml_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling simplexml extension" @@ -52,7 +52,7 @@ define CSWphp5simplexml_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling simplexml extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_snmp/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_snmp/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_snmp/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5snmp_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling snmp extension" @@ -56,7 +56,7 @@ define CSWphp5snmp_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling snmp extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_soap/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_soap/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_soap/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5soap_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling soap extension" @@ -57,7 +57,7 @@ define CSWphp5soap_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling soap extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_sockets/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_sockets/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_sockets/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5sockets_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling sockets extension" @@ -56,7 +56,7 @@ define CSWphp5sockets_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling sockets extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_sqlite/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_sqlite/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_sqlite/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5sqlite_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling sqlite extension" @@ -57,7 +57,7 @@ define CSWphp5sqlite_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling sqlite extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_sysvmsg/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_sysvmsg/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_sysvmsg/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5sysvmsg_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling sysvmsg extension" @@ -56,7 +56,7 @@ define CSWphp5sysvmsg_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling sysvmsg extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_sysvsem/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_sysvsem/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_sysvsem/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5sysvsem_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling sysvsem extension" @@ -56,7 +56,7 @@ define CSWphp5sysvsem_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling sysvsem extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_sysvshm/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_sysvshm/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_sysvshm/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5sysvshm_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling sysvshm extension" @@ -56,7 +56,7 @@ define CSWphp5sysvshm_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling sysvshm extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_tidy/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_tidy/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_tidy/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5tidy_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling tidy extension" @@ -56,7 +56,7 @@ define CSWphp5tidy_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling tidy extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_tokenizer/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_tokenizer/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_tokenizer/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -13,7 +13,7 @@ define CSWphp5tokenizer_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling tokenizer extension" @@ -56,7 +56,7 @@ define CSWphp5tokenizer_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling tokenizer extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_wddx/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_wddx/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_wddx/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -15,7 +15,7 @@ define CSWphp5wddx_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling wddx extension" @@ -58,7 +58,7 @@ define CSWphp5wddx_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling wddx extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -7,7 +7,7 @@ define CSWphp5xml_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling xml extension" @@ -50,7 +50,7 @@ define CSWphp5xml_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling xml extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_xmlreader/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_xmlreader/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_xmlreader/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5xmlreader_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling xmlreader extension" @@ -57,7 +57,7 @@ define CSWphp5xmlreader_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling xmlreader extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_xmlrpc/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_xmlrpc/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_xmlrpc/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -16,7 +16,7 @@ define CSWphp5xmlrpc_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling xmlrpc extension" @@ -59,7 +59,7 @@ define CSWphp5xmlrpc_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling xmlrpc extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_xmlwriter/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_xmlwriter/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_xmlwriter/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5xmlwriter_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling xmlwriter extension" @@ -57,7 +57,7 @@ define CSWphp5xmlwriter_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling xmlwriter extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_xsl/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_xsl/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_xsl/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5xsl_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling xsl extension" @@ -57,7 +57,7 @@ define CSWphp5xsl_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling xsl extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_zip/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_zip/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_zip/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -14,7 +14,7 @@ define CSWphp5zip_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling zip extension" @@ -57,7 +57,7 @@ define CSWphp5zip_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling zip extension" Modified: csw/mgar/pkg/php5/trunk/extensions/php5_zlib/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_zlib/Makefile 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/extensions/php5_zlib/Makefile 2009-05-14 19:41:00 UTC (rev 4855) @@ -6,7 +6,7 @@ define CSWphp5zlib_postinstall #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Post Install <===]" echo " ===> Enabling zlib extension" @@ -49,7 +49,7 @@ define CSWphp5zlib_preremove #!/bin/sh -PHP_INI=/opt/csw/php5/lib/php.ini +PHP_INI=/opt/csw/lib/php.ini echo "[===> Running Pre Remove <===]" echo " ===> Disabling zlib extension" Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall 2009-05-14 19:41:00 UTC (rev 4855) @@ -2,8 +2,8 @@ PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin PKG_INSTALL_ROOT=${PKG_INSTALL_ROOT:-'/'} -PHP_LIB=$PKG_INSTALL_ROOT/opt/csw/php5/lib -PHP_BIN=$PKG_INSTALL_ROOT/opt/csw/php5/bin +PHP_LIB=$PKG_INSTALL_ROOT/opt/csw/lib +PHP_BIN=$PKG_INSTALL_ROOT/opt/csw/bin PHP_INI=$PHP_LIB/php.ini if [ ! -f $PHP_INI ]; then Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_disable.sh =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_disable.sh 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_disable.sh 2009-05-14 19:41:00 UTC (rev 4855) @@ -5,8 +5,8 @@ CSW_PREFIX=${PKG_INSTALL_ROOT}${CSW_PREFIX} fi -PHP_INI=$CSW_PREFIX/php5/lib/php.ini -PHP_BIN=$CSW_PREFIX/php5/bin +PHP_INI=$CSW_PREFIX/lib/php.ini +PHP_BIN=$CSW_PREFIX/bin PHP_EXTMGR=$PHP_BIN/phpext if [ -z "$PHPEXT" ]; then Modified: csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_enable.sh =================================================================== --- csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_enable.sh 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_enable.sh 2009-05-14 19:41:00 UTC (rev 4855) @@ -5,8 +5,8 @@ CSW_PREFIX=${PKG_INSTALL_ROOT}${CSW_PREFIX} fi -PHP_INI=$CSW_PREFIX/php5/lib/php.ini -PHP_BIN=$CSW_PREFIX/php5/bin +PHP_INI=$CSW_PREFIX/lib/php.ini +PHP_BIN=$CSW_PREFIX/bin PHP_EXTMGR=$PHP_BIN/phpext if [ -z "$PHPEXT" ]; then Modified: csw/mgar/pkg/php5/trunk/files/pear.conf.CSW =================================================================== --- csw/mgar/pkg/php5/trunk/files/pear.conf.CSW 2009-05-14 19:22:37 UTC (rev 4854) +++ csw/mgar/pkg/php5/trunk/files/pear.conf.CSW 2009-05-14 19:41:00 UTC (rev 4855) @@ -1,2 +1,2 @@ #PEAR_Config 0.9 -a:29:{s:9:"cache_dir";s:15:"/tmp/pear/cache";s:15:"default_channel";s:12:"pear.php.net";s:16:"preferred_mirror";s:12:"pear.php.net";s:13:"remote_config";s:0:"";s:13:"auto_discover";i:0;s:13:"master_server";s:12:"pear.php.net";s:10:"http_proxy";s:0:"";s:7:"php_dir";s:21:"/opt/csw/php5/lib/php";s:7:"ext_dir";s:58:"/opt/csw/php5/lib/php/extensions/no-debug-non-zts-20060613";s:7:"doc_dir";s:25:"/opt/csw/php5/lib/php/doc";s:7:"bin_dir";s:17:"/opt/csw/php5/bin";s:8:"data_dir";s:26:"/opt/csw/php5/lib/php/data";s:7:"cfg_dir";s:25:"/opt/csw/php5/lib/php/cfg";s:7:"www_dir";s:28:"/opt/csw/php5/lib/php/htdocs";s:8:"test_dir";s:26:"/opt/csw/php5/lib/php/test";s:8:"temp_dir";s:14:"/tmp/pear/temp";s:12:"download_dir";s:18:"/tmp/pear/download";s:7:"php_bin";s:21:"/opt/csw/php5/bin/php";s:7:"php_ini";s:0:"";s:8:"username";s:0:"";s:8:"password";s:0:"";s:7:"verbose";i:1;s:15:"preferred_state";s:6:"stable";s:5:"umask";i:18;s:9:"cache_ttl";i:3600;s:8:"sig_type";s:3:"gpg";s:7:"sig_bin";s:16:"/opt /csw/bin/gpg";s:9:"sig_keyid";s:0:"";s:10:"sig_keydir";s:26:"/opt/csw/php5/etc/pearkeys";} \ No newline at end of file +a:29:{s:9:"cache_dir";s:15:"/tmp/pear/cache";s:15:"default_channel";s:12:"pear.php.net";s:16:"preferred_mirror";s:12:"pear.php.net";s:13:"remote_config";s:0:"";s:13:"auto_discover";i:0;s:13:"master_server";s:12:"pear.php.net";s:10:"http_proxy";s:0:"";s:7:"php_dir";s:21:"/opt/csw/lib/php";s:7:"ext_dir";s:58:"/opt/csw/lib/php/extensions/no-debug-non-zts-20060613";s:7:"doc_dir";s:25:"/opt/csw/lib/php/doc";s:7:"bin_dir";s:17:"/opt/csw/bin";s:8:"data_dir";s:26:"/opt/csw/lib/php/data";s:7:"cfg_dir";s:25:"/opt/csw/lib/php/cfg";s:7:"www_dir";s:28:"/opt/csw/lib/php/htdocs";s:8:"test_dir";s:26:"/opt/csw/lib/php/test";s:8:"temp_dir";s:14:"/tmp/pear/temp";s:12:"download_dir";s:18:"/tmp/pear/download";s:7:"php_bin";s:21:"/opt/csw/bin/php";s:7:"php_ini";s:0:"";s:8:"username";s:0:"";s:8:"password";s:0:"";s:7:"verbose";i:1;s:15:"preferred_state";s:6:"stable";s:5:"umask";i:18;s:9:"cache_ttl";i:3600;s:8:"sig_type";s:3:"gpg";s:7:"sig_bin";s:16:"/opt/csw/bin/gpg";s:9:"sig_keyid";s:0:"";s:10:"si g_keydir";s:26:"/opt/csw/etc/pearkeys";} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 22:17:27 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 20:17:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[4856] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4856 http://gar.svn.sourceforge.net/gar/?rev=4856&view=rev Author: valholla Date: 2009-05-14 20:17:27 +0000 (Thu, 14 May 2009) Log Message: ----------- fix depend file and include in Makefile Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/files/depend.mk Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 19:41:00 UTC (rev 4855) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 20:17:27 UTC (rev 4856) @@ -140,4 +140,5 @@ include files/pkgdef.mk include files/pkgfiles.mk include files/admfiles.mk +include files/depend.mk include gar/category.mk Modified: csw/mgar/pkg/php4/trunk/files/depend.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/depend.mk 2009-05-14 19:41:00 UTC (rev 4855) +++ csw/mgar/pkg/php4/trunk/files/depend.mk 2009-05-14 20:17:27 UTC (rev 4856) @@ -6,7 +6,8 @@ REQUIRED_PKGS_CSWphp4bz2 = CSWphp4cgi CSWbzip2 REQUIRED_PKGS_CSWphp4calendar = CSWphp4cgi REQUIRED_PKGS_CSWphp4cgi = CSWbdb44 CSWexpat -REQUIRED_PKGS_CSWphp4curl = CSWphp4cgi CSWcurlrt CSWlibidn CSWoldaprt CSWosslrt CSWzlib +REQUIRED_PKGS_CSWphp4curl = CSWphp4cgi CSWcurlrt CSWlibidn +REQUIRED_PKGS_CSWphp4curl += CSWoldaprt CSWosslrt CSWzlib REQUIRED_PKGS_CSWphp4dba = CSWphp4cgi CSWbdb44 CSWgdbm REQUIRED_PKGS_CSWphp4domxml = CSWphp4cgi CSWiconv CSWlibxml2 CSWlibxslt CSWzlib REQUIRED_PKGS_CSWphp4gd = CSWphp4cgi CSWgd CSWjpeg CSWpng CSWzlib @@ -26,4 +27,10 @@ REQUIRED_PKGS_CSWphp4zlib = CSWphp4cgi CSWzlib REQUIRED_PKGS_CSWap2modphp4 = CSWphp4cgi CSWbdb44 CSWexpat CSWap2prefork REQUIRED_PKGS_CSWmodphp4 = CSWphp4cgi CSWbdb44 CSWexpat CSWapache -REQUIRED_PKGS_CSWmodphp4core = CSWphp4cgi +REQUIRED_PKGS_CSWmodphp4core = +REQUIRED_PKGS_CSWphp = CSWphp4cgi CSWphp4bcmath CSWphp4bz2 CSWphp4calendar +REQUIRED_PKGS_CSWphp += CSWphp4curl CSWphp4dba CSWphp4domxml CSWphp4gd +REQUIRED_PKGS_CSWphp += CSWphp4gettext CSWphp4gmp CSWphp4iconv CSWphp4imap +REQUIRED_PKGS_CSWphp += CSWphp4ldap CSWphp4mbstring CSWphp4mcal CSWphp4mssql +REQUIRED_PKGS_CSWphp += CSWphp4mysql CSWphp4ncurses CSWphp4odbc CSWphp4openssl +REQUIRED_PKGS_CSWphp += CSWphp4pgsql CSWphp4zlib CSWmodphp4 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Thu May 14 22:36:00 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 14 May 2009 20:36:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[4857] csw/mgar/pkg/php4/trunk/files/pkgdef.mk Message-ID: Revision: 4857 http://gar.svn.sourceforge.net/gar/?rev=4857&view=rev Author: valholla Date: 2009-05-14 20:36:00 +0000 (Thu, 14 May 2009) Log Message: ----------- fix typos Modified Paths: -------------- csw/mgar/pkg/php4/trunk/files/pkgdef.mk Modified: csw/mgar/pkg/php4/trunk/files/pkgdef.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-14 20:17:27 UTC (rev 4856) +++ csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-14 20:36:00 UTC (rev 4857) @@ -5,7 +5,7 @@ PACKAGES += CSWphp4iconv CSWphp4imap CSWphp4ldap CSWphp4mbstring PACKAGES += CSWphp4mcal CSWphp4mssql CSWphp4mysql CSWphp4ncurses CSWphp4odbc PACKAGES += CSWphp4openssl CSWphp4pgsql CSWphp4zlib CSWap2modphp4 -PACKAGES += CSWmodphp4 CSWphp +PACKAGES += CSWmodphp4 CSWphp4 CATALOGNAME_CSWphp4bcmath = php4_bcmath SPKG_DESC_CSWphp4bcmath = bcmath extension for php4 @@ -57,4 +57,5 @@ SPKG_DESC_CSWmodphp4 = PHP 4 - Apache 1.3.x Module CATALOGNAME_CSWmodphp4core = mod_php4_core SPKG_DESC_CSWmodphp4core = Deprecated use mod_php4 or ap2_modphp4 - +CATALOGNAME_CSWphp4 = mod_php +SPKG_DESC_CSWphp4 = Both an apache module and command line interpreter for the PHP language 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 May 14 22:40:01 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 14 May 2009 20:40:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[4858] csw/mgar/pkg Message-ID: Revision: 4858 http://gar.svn.sourceforge.net/gar/?rev=4858&view=rev Author: dmichelsen Date: 2009-05-14 20:40:01 +0000 (Thu, 14 May 2009) Log Message: ----------- cswutils: Initial commit Added Paths: ----------- csw/mgar/pkg/cswutils/ csw/mgar/pkg/cswutils/branches/ csw/mgar/pkg/cswutils/tags/ csw/mgar/pkg/cswutils/trunk/ csw/mgar/pkg/cswutils/trunk/Makefile csw/mgar/pkg/cswutils/trunk/checksums csw/mgar/pkg/cswutils/trunk/files/ csw/mgar/pkg/cswutils/trunk/files/COPYING csw/mgar/pkg/cswutils/trunk/files/checkpkg csw/mgar/pkg/cswutils/trunk/files/checkpkg.8 csw/mgar/pkg/cswutils/trunk/files/cpan2pkg csw/mgar/pkg/cswutils/trunk/files/createpkg csw/mgar/pkg/cswutils/trunk/files/createpkg.8 csw/mgar/pkg/cswutils/trunk/files/stagepkg csw/mgar/pkg/cswutils/trunk/files/stagepkg.8 Property changes on: csw/mgar/pkg/cswutils/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,47 @@ +GARNAME = cswutils +GARVERSION = 1.14.0 +CATEGORIES = utils + +DESCRIPTION = Utilities for CSW maintainers +define BLURB +endef + +MASTER_SITES = +DISTFILES = COPYING +DISTFILES += checkpkg checkpkg.8 +DISTFILES += cpan2pkg +DISTFILES += createpkg createpkg.8 +DISTFILES += stagepkg stagepkg.8 + +REQUIRED_PKGS = CSWtextutils CSWfakeroot CSWperl + +WORKSRC = $(WORKDIR) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +SPKG_SOURCEURL = http://www.opencsw.org/ + +ARCHALL = 1 + +# The package contains 'checkpkg', which checks for bad pathes. Of +# course the bad pathes are inside the package, because it is checked +# for them. So disable the test. +ENABLE_CHECK = 0 + +include gar/category.mk + +install-custom: + @ginstall -d $(DESTDIR)$(bindir) + @ginstall $(WORKSRC)/checkpkg $(DESTDIR)$(bindir) + @ginstall $(WORKSRC)/cpan2pkg $(DESTDIR)$(bindir) + @ginstall $(WORKSRC)/createpkg $(DESTDIR)$(bindir) + @ginstall $(WORKSRC)/stagepkg $(DESTDIR)$(bindir) + @ginstall $(GARDIR)/bin/fixlibtool $(DESTDIR)$(bindir) + @ginstall -d $(DESTDIR)$(mandir)/man8 + @ginstall $(WORKSRC)/checkpkg.8 $(DESTDIR)$(mandir)/man8/ + @ginstall $(WORKSRC)/createpkg.8 $(DESTDIR)$(mandir)/man8/ + @ginstall $(WORKSRC)/stagepkg.8 $(DESTDIR)$(mandir)/man8/ + @$(MAKECOOKIE) Added: csw/mgar/pkg/cswutils/trunk/checksums =================================================================== --- csw/mgar/pkg/cswutils/trunk/checksums (rev 0) +++ csw/mgar/pkg/cswutils/trunk/checksums 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,8 @@ +091b12575ebc0e45cf8c3d8b43d8b638 download/COPYING +7e5a50f1db3b6688c58da693f9ac408e download/checkpkg +6ec3b6597e04714430987ccc199db3c4 download/checkpkg.8 +9a637f6546cc50974159a987302d91c0 download/cpan2pkg +2349d876bada6ee1bf025e576ec2c465 download/createpkg +a605598f30195f9ab1b29fc3944d3b31 download/createpkg.8 +cd4496ee27bf86d5c8bc656c9c5974be download/stagepkg +8908a0a898aa07a7a928b2b8bd8384f0 download/stagepkg.8 Added: csw/mgar/pkg/cswutils/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/COPYING 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,4 @@ +These script(s) are utility scripts used by people who package software +for opencsw.org's Solaris "Community SoftWare" (CSW) effort. +The scripts may be copied free of charge, but may be of limited use +to other folks. Added: csw/mgar/pkg/cswutils/trunk/files/checkpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/checkpkg (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,586 @@ +#!/bin/ksh -p + +# checkpkg 2.6 +# This script examines a package that has been put together +# for submittal to the CSW archive at opencsw.org +# +# It examines it for compliance with the packaging standards at +# http://www.opencsw.org/standards/ +# It DOES NOT CATCH EVERYTHING. However, the package will be +# tested with this script before acceptance, so you may as well +# save yourself some time, and run the script yourself! +# +# Be sure to occasionally do a "pkg-get update cswutils" so that +# you know you are tracking the most current version. +# + + +PATH=$PATH:/usr/sbin + +LOCAL_ARCH=`uname -p` + + +# always print out a warning message. (to stderr) +# exit script, if quit_on_warn set + + +cleanup(){ + if [[ -d "$EXTRACTDIR" ]] ; then + rm -rf $EXTRACTDIR + fi + if [[ "$TMPARCHIVE" != "" ]] ; then + rm $TMPARCHIVE + fi +} + +warnmsg(){ + print WARNING: $* >/dev/fd/2 + if [[ "$quit_on_warn" != "" ]] ; then + cleanup + exit 1 + fi +} + +# Print error message, and quit program. +errmsg(){ + print ERROR: $* >/dev/fd/2 + cleanup + exit 1 +} + +if [[ "$1" == "-e" ]] ; then + quit_on_warn=1; + shift +fi +if [[ "$1" == "-h" ]] ; then + print 'Usage: checkpkg [-e] pkg1 [pkg2 ....]' + print ' -e = "exit on warnings"' + shift +fi + +for f in "$@" +do + + + +if [[ ! -f $f ]] ; then + print ERROR: $f does not exist + exit 1 +fi + + +case $f in + cswutils-*) + : + ;; + *) + print Examining $f + + print Looking for bad strings... + + # XPG4 grep has some kind of magical "ignore ELF header" power. + # but... not on sol8, just sol10? + # and so does /bin/grep. but NOT /bin/egrep??? + # + # Need to rewrite this whole thing to also + # check for badly set RUNPATHs. sigh. + # + for badpath in /export/medusa /opt/build ; do + GREP=/bin/grep gzgrep "$badpath" $f + if [[ $? -eq 0 ]] ; then + print "" + print ERROR: build-machine paths found in file $f + print '($badpath)' + exit 1 + fi + done +esac + +print Extracting files for more detailed inspection... + +file $f |sed 's/^.*://' |grep gzip >/dev/null +if [ $? -eq 0 ] ; then + TMPARCHIVE=/tmp/`basename $f` + if [[ -f $TMPARCHIVE ]] ; then + print ERROR: $TMPARCHIVE already exists + + fi + gzcat $f >$TMPARCHIVE || exit 1 + f=$TMPARCHIVE +fi + +pkgname=`nawk 'NR == 2 {print $1; exit;}' $f` + +EXTRACTDIR=/tmp/checkpkg.$$ + +if [ -d $EXTRACTDIR ] ; then + print ERROR: $EXTRACTDIR already exists + exit 1 +fi + +mkdir $EXTRACTDIR + +TMPFILE=$EXTRACTDIR/pkginfo + + + +dd if=$f skip=1 | (cd $EXTRACTDIR; cpio -ivd $pkgname/pkginfo) +if [[ $? -ne 0 ]] ; then + print ERROR: could not extract $f + rm -rf $EXTRACTDIR $TMPARCHIVE + exit 1 +fi + +mv $EXTRACTDIR/$pkgname/pkginfo $EXTRACTDIR ; rmdir $EXTRACTDIR/$pkgname + +software=`sed -n 's/^NAME=\([^ -]*\) -.*$/\1/p' $TMPFILE` +version=`sed -n 's/^VERSION=//p' $TMPFILE` +desc=`sed -n 's/^DESC=//p' $TMPFILE` +email=`sed -n 's/^EMAIL=//p' $TMPFILE` +maintname=`sed -n 's/^VENDOR=.*for CSW by //p' $TMPFILE` +hotline=`sed -n 's/^HOTLINE=//p' $TMPFILE` +basedir=`sed -n 's/^BASEDIR=//p' $TMPFILE` +pkgarch=`sed -n 's/^ARCH=//p' $TMPFILE|head -1` + +case $software in + *[A-Z]*) + echo ERROR: $software must be all lowercase + exit 1 + ;; +esac + +case `basename $f` in + ${software}-${version}-*) + # file name looks okay + ;; + ${software}-*) + print ERROR: filename missing full version field $version + rm -rf $EXTRACTDIR $TMPARCHIVE + exit 1 + ;; + *) + print ERROR: filename should start with $software-$version- + rm -rf $EXTRACTDIR $TMPARCHIVE + exit 1 +esac + + + +if [ "$maintname" = "" ] ; then + # the old format, in the DESC field + maintname=`sed -n 's/^DESC=.*for CSW by //p' $TMPFILE` + + # Since the DESC field has been coopted, take + # description from second half of NAME field now. + desc=`sed -n 's/^NAME=[^ -]* - //p' $TMPFILE` +else + if [ "$desc" = "" ] ; then + desc=`sed -n 's/^NAME=[^ -]* - //p' $TMPFILE` + fi +fi + +rm $TMPFILE + +# strip out '' chars, because it interferes with mysql +desc=`print $desc | sed "s/'//g"` + + +print Info for pkg $pkgname + +print software= "'$software'" +print arch= "'$pkgarch'" +print desc="'$desc'" +print pkgname="'$pkgname'" +print version="'$version'" +print maintainer name="'$maintname'" +print maint email="'$email'" +print hotline="'$hotline'" +if [ "$basedir" != "" ] ; then + print basedir="'$basedir'" +fi + +if [[ ${#software} -gt 20 ]] ; then errmsg $f: software name greater than 20 chars ; fi +if [[ ${#pkgname} -gt 20 ]] ; then errmsg $f: pkg name greater than 20 chars; fi + +if [ "$software" = "" ] ; then errmsg $f: software field not set properly in NAME ; fi +if [ "$pkgname" = "" ] ; then errmsg $f: pkgname field blank ; fi +if [ "$desc" = "" ] ; then errmsg $f: no description in either NAME or DESC field ; fi +if [ ${#desc} -gt 100 ] ; then errmsg $f: description greater than 100 chars ; fi +if [ "$version" = "" ] ; then errmsg $f: VERSION field blank ; fi +if [ "$maintname" = "" ] ; then errmsg $f: maintainer name not detected. Fill out VENDOR field properly ; fi +if [ "$email" = "" ] ; then errmsg $f: EMAIL field blank ; fi +if [ "$hotline" = "" ] ; then errmsg $f: HOTLINE field blank ; fi + + +case $version in + *-*) + print ERROR: VERSION field not allowed to have '"-"' in it + exit 1 + ;; + *,REV=20[01][0-9].[0-9][0-9].[0-9][0-9]*) + : + ;; + *) + print ERROR: no REV=YYYY.MM.DD field in VERSION + exit 1 + ;; +esac + +case $pkgarch in + sparc|i386|all) + ;; + sparc.*|i386.*) + ;; + + *) + print ERROR: non-standard ARCH def in package: $pkgarch + rm -rf $EXTRACTDIR $TMPARCHIVE + exit 1 +esac + +goodarch=yes +case $f in + *${LOCAL_ARCH}*) + + ;; + *) + print NOTE: pkg must be for arch $LOCAL_ARCH to check dynamic libs + goodarch=no + ;; +esac + + +#if [ "$goodarch" = "no" ] ; then +# # neutral architechture. cant check libraries for it. +# print "" +# rm -rf $EXTRACTDIR $TMPARCHIVE +# exit 0 +#fi + + +# This function exists, because pkgtrans is BROKEN!! +# It leaves a directory in /var/tmp/aaXXXXXXX, even after clean quit +# SO, emulate pkgtrans behaviour, for "pkgtrans src destdir pkgname" +# Except that we ignore pkgname arg, and just do first one we find. +# and we are a bit hacky about how we do things. +pkgtrans(){ + if [[ ! -d $2 ]] ; then + print ERROR: $2 is not a directory >/dev/fd/2 + return 1 + fi + hdrblks=`(dd if=$1 skip=1 2>/dev/null| cpio -i -t >/dev/null) 2>&1 | + nawk '{print $1; exit;}'` + + ## print initial hdrblks=$hdrblks + + hdrblks=$(($hdrblks + 1)) + mkdir $2/$3 || return 1 + + dd if=$1 skip=$hdrblks 2>/dev/null | (cd $2/$3 ; cpio -ivdm) + # on fail, SOMETIMES cpio returns 1, but sometimes it returns 0!! + if [[ ! -d $2/$3/install ]] ; then + print retrying extract with different archive offset... + # no, I cant tell in advance why/when the prev fails + hdrblks=$(($hdrblks + 1)) + dd if=$1 skip=$hdrblks 2>/dev/null| (cd $2/$3 ; cpio -ivdm) + fi +} + +print "" +print Extracing pkg for examination of files... +pkgtrans $f $EXTRACTDIR $pkgname + + +############################################################# +# We now have the package expanded, in "directory" form, in +# $EXTRACTDIR/$pkgname +# Now do some extended error checking on it. +# This is similar to Debians "Lintian" phase for packages. + +/usr/sbin/pkgchk -d $EXTRACTDIR $pkgname || errmsg "Package failed integrity check" + +print "/usr/sbin/pkgchk passed." + + +######################################## +# Check for some common errors +if [[ $pkgname != "CSWcommon" ]] ; then + + if [[ $LOGNAME != "root" ]] ; then + nawk '$6 == "'$LOGNAME'" {print; exit 1}' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 1 ]] ; then + print ERROR: files owned by $LOGNAME in prototype file + rm -rf $EXTRACTDIR $TMPARCHIVE + exit 1 + fi + fi + + egrep 'd none /opt ' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg You should not have an entry for /opt in your prototype file + fi + egrep 'd none [^ ]* 06' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg You must have execute permission set on directories + fi + egrep '/opt/csw/man|d none man' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg /opt/csw/man should not have a directory entry in prototype + fi + egrep '/opt/csw/doc|d none doc' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg /opt/csw/doc should not have a directory entry in prototype + fi + egrep '/opt/csw/info|d none info' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg /opt/csw/info should not have a directory entry in prototype + fi + egrep 'lib/charset.alias' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + warnmsg Only CSWiconv should have lib/charset.alias in it + fi + egrep 'share/locale/locale.alias' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + warnmsg Only CSWcommon should have share/locale/locale.alias in it + fi + fgrep '? ? ?' $EXTRACTDIR/$pkgname/pkgmap | + egrep '[/]opt[/]csw' + if [[ $? -eq 0 ]] ; then + errmsg "You should only use '? ? ?' for non-csw paths. Use appropriate explicit perms/ownership instead" + fi + # this is like "installed package info". It is acceptible + # to update it in a postinstall script, but not have it + # directly in the pkgmap. A "e" entry might be acceptible though. + egrep ' f .*/perllocal.pod' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg perllocal.pod should be removed from prototype file + fi +fi +# special case. sigh. +if [[ $pkgname != "CSWtexinfo" ]] ; then + egrep '/opt/csw/share/info/dir[ ]|none share/info/dir[ ]' $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + errmsg /opt/csw/share/info/dir should only be in CSWtexinfo + rm -rf $EXTRACTDIR $TMPARCHIVE + exit 1 + fi +fi +######################################### +# find all executables and dynamic libs,and list their filenames. +listbinaries() { + if [ ! -d $1 ] ; then + print errmsg $1 not a directory + rm -rf $EXTRACTDIR + exit 1 + fi + + find $1 -print | xargs file |grep ELF |nawk -F: '{print $1}' +} + +# Kinda a hardcode for one special package that cant be +# detected by normal lib dependancies. +checkforclasses () { + typeset local=no + classlist=`sed -n 's/CLASSES=//p' $EXTRACTDIR/$pkgname/pkginfo` + for c in $classlist ; do + case $c in + csw*) + local=yes + ;; + esac + done + if [[ "$local" != "yes" ]] ; then + return 0; + fi + if grep CSWcswclassutils $EXTRACTDIR/$pkgname/install/depend >/dev/null + then + return 0; + fi + echo ERROR: package uses a csw CLASS but missing dependancy on CSWcswclassutils + return 1 +} + + +# pass in name of dynamic object, and specific catalog file. +# Will attempt "best match" heuristics appropriate for CSW dependancy file +# and print out result. +# We will always print out either ONE package, or NOTHING +findlibincat() { + # important to use same grep as we did looking through pkgmap + grep "[/=]$1[ =]" $2 | + nawk ' + $2 == "f" || $2 == "l" {pkg=$NF;next} + # Give 'real' files priority over symlinks + {if(pkg==""){pkg=$NF}; + next } + END {print pkg} + ' + + #old simple (inadequate) way: + # grep /$1 $2 | + # nawk '{print $NF}' |sort -u +} + +#################################################################### +# Auto-dependancy checking section.... +# strategy currently: identify all ELF object files to elflist. +# Then identify all dependancies to "liblist" +# THEEEN go searching through SVR4 pkg "contents" file for PKG matches +# to those libraries. +# (but give priority to lib dependancies satisfied by current PKG itself) +# Final output is saved to file "libpkgs" +###################################################################### +sparccheck=""; sparcwarning="" +if [[ "$pkgarch" = "sparc" ]] ; then + if [[ -d $EXTRACTDIR/$pkgname/root/opt/csw/bin ]] ; then + sparccheck=$EXTRACTDIR/$pkgname/root/opt/csw/bin + elif [[ -d $EXTRACTDIR/$pkgname/reloc/bin ]] ; then + sparccheck=$EXTRACTDIR/$pkgname/reloc/bin + fi + if [[ "$sparccheck" != "" ]] ; then + (cd $sparccheck && file *) | grep 'ELF.*V8+' + if [[ $? = 0 ]] ; then + sparcwarning="WARNING: found binaries in normal bin dir that are V8+" + fi + fi +fi +if [[ "$goodarch" = "yes" ]] ; then + # man ld.so.1 for more info on this hack + export LD_NOAUXFLTR=1 + + listbinaries $EXTRACTDIR/$pkgname >$EXTRACTDIR/elflist + # have to do this for ldd to work. arrg. + if [ -s "$EXTRACTDIR/elflist" ] ; then + chmod 0755 `cat $EXTRACTDIR/elflist` + + #cat $EXTRACTDIR/elflist| xargs ldd 2>/dev/null |fgrep '.so' | + # sed 's:^.*=>[^/]*::' | nawk '{print $1}' |sort -u >$EXTRACTDIR/liblist + + cat $EXTRACTDIR/elflist| xargs dump -Lv |nawk '$2=="NEEDED"{print $3}' | + sort -u | egrep -v $EXTRACTDIR >$EXTRACTDIR/liblist + + print libraries used are: + cat $EXTRACTDIR/liblist + else + print No dynamic libraries in the package + fi +fi + +#If these dont exist, it is Bad. +touch $EXTRACTDIR/liblist $EXTRACTDIR/libpkgs + +if [[ -f $EXTRACTDIR/$pkgname/install/depend ]] ; then + print + print "Examining 'depend' file" + cat $EXTRACTDIR/$pkgname/install/depend + print "" +else + # They may have forgotten to create/add in a depend file + # Remind people what the package depends on + # print "Analysing dynamic dependancies, if any" + touch $EXTRACTDIR/$pkgname/install/depend +fi + +# sanity check against "depends on self" +nawk '$2=="'$pkgname'" {exit 1}' $EXTRACTDIR/$pkgname/install/depend +if [[ $? -ne 0 ]] ; then + print ERROR: $pkgname references self in depend file + exit 1 +fi + +nawk '$1=="P" {print $2}' $EXTRACTDIR/$pkgname/install/depend | + sort >$EXTRACTDIR/deppkgs +for dep in `cat $EXTRACTDIR/deppkgs` +do + pkginfo $dep || errmsg Invalid package $dep specified. Check of $f fails +done + + #strategy update: poorly grep for all possible matches against our liblist, + # and save in "shortcswcatalog". and now "shortsuncatalog" too. + # in theory, slower for small pkgs, but should be faster for pkgs + # with lots of shared libs. + # + + +if test -s $EXTRACTDIR/liblist ; then + print Building index from SVR4 installed packages database... + print '(May take a while)' + #It's noticably faster (30%) this way, than the second way, at least on a + # multiproc box. + grep CSW /var/sadm/install/contents |nawk '$2 ~ /^[fsl]$/ {print}' | + fgrep -f $EXTRACTDIR/liblist >$EXTRACTDIR/shortcswcatalog + grep SUNW /var/sadm/install/contents |nawk '$2 ~ /^[fsl]$/ {print}' | + egrep -v 'SUNWbcp|SUNWowbcp|SUNWucb' | + fgrep -f $EXTRACTDIR/liblist >$EXTRACTDIR/shortsuncatalog + + #nawk '$2 ~ /^[fsl]$/ && $NF ~ /^CSW/ {print}' /var/sadm/install/contents | + # fgrep -f $EXTRACTDIR/liblist >$EXTRACTDIR/shortcswcatalog + #nawk '$2 ~ /^[fsl]$/ && $NF ~ /^SUNW/ {print}' /var/sadm/install/contents | + # egrep -v 'SUNWbcp|SUNWowbcp|SUNWucb' | + # fgrep -f $EXTRACTDIR/liblist >$EXTRACTDIR/shortsuncatalog + + + print Cross-referencing indexes... +fi + + +# DEBUG: should we weed out libs already covered by pkg dependancy list? +# that would be to handle things like libgcc_s.so.1 that are in both +# CSWgcc3rt and CSWgcc4rt but in different dirs + +for lib in `cat $EXTRACTDIR/liblist` ; do + grep "[/=]$lib[ =]" $EXTRACTDIR/$pkgname/pkgmap + if [[ $? -eq 0 ]] ; then + echo $lib provided by package itself + continue + fi + + # We want to give priority to CSW packages. + # This is one way; force ONLY parsing CSW pkgs first. + # Then search SUNW pkgs only if nothing else + libpkg=`findlibincat $lib $EXTRACTDIR/shortcswcatalog` + + if [[ -z "$libpkg" ]] ; then + libpkg=`findlibincat $lib $EXTRACTDIR/shortsuncatalog` + fi + if [[ -z "$libpkg" ]] ; then + errmsg cannot find package for $lib + else + print $libpkg >>$EXTRACTDIR/libpkgs + print " found $libpkg for $lib" + fi +done + +sort -u $EXTRACTDIR/libpkgs >$EXTRACTDIR/libpkgs.x +mv $EXTRACTDIR/libpkgs.x $EXTRACTDIR/libpkgs + +diff $EXTRACTDIR/deppkgs $EXTRACTDIR/libpkgs >/dev/null +if [[ $? -ne 0 ]] ; then + print SUGGESTION: you may want to add some or all of the following as depends: + print ' (Feel free to ignore SUNW or SPRO packages)' + diff $EXTRACTDIR/deppkgs $EXTRACTDIR/libpkgs | fgrep '>' +fi + +checkforclasses + +if [[ "$basedir" != "" ]] ; then + print + if [[ -f $EXTRACTDIR/elflist ]] ; then + print "Checking relocation ability..." + xargs strings < $EXTRACTDIR/elflist| grep /opt/csw + if [[ $? -eq 0 ]] ; then + errmsg package build as relocatable, but binaries have hardcoded /opt/csw paths in them + else + print trivial check passed + fi + else + echo No relocation check done for non-binary relocatable package. + fi +fi + +cleanup + + +print "$sparcwarning" + +done Property changes on: csw/mgar/pkg/cswutils/trunk/files/checkpkg ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/cswutils/trunk/files/checkpkg.8 =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/checkpkg.8 (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/checkpkg.8 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,20 @@ +.TH checkpkg 8 "Jan 9, 2002" "CSW maintainers" +.SH NAME +\fBcheckpkg\fP +\- CSW utility program to check a package for standards compliance +.SH SYNOPSIS +.br +\fBcheckpkg pkg-file-name\fP + +.SH DESCRIPTION +\fBcheckpkg\fP +should always be used by CSW package maintainers to check a package +before submitting it. You may call it either on a plain .pkg file, or a + .pkg.gz file + +.SH SEE ALSO +\fBstagepkg\fP(8),\fBcreatepkg\fP(8) +.SH AUTHORS +Philip Brown +.SH BUGS +Cannot cover every possible standards issue Added: csw/mgar/pkg/cswutils/trunk/files/cpan2pkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/cpan2pkg (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/cpan2pkg 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,780 @@ +#!/opt/csw/bin/perl +# Version 1.11 10/14/07 +# +# Depends on gmake, csutils, pm_yaml, pm_htmltree, and pm_libwww +# +# This script will take a CPAN module as an argument and convert it into a +# SysV package sutable for opencsw.org. It will do this by downloading the +# module from CPAN, examining the modules's listed dependancies, and +# recursivelly build them. If a dependacy is a perl core module, or already +# has a package on opencsw of the same or higer version, it will not be +# rebuilt. If a package file (e.g. -,REV=*.tar.gz) exists +# in the directory wher you run this script, it is assumed that the package +# is already built and it will not be re-built. +# + +use strict; +use warnings; + +use CPAN; +use File::Copy; +use File::Spec; +use YAML qw(LoadFile); +use Cwd; +use LWP::UserAgent; +use HTTP::Request::Common; +use HTML::TreeBuilder; +use File::Path; +use File::Temp qw(:POSIX); +use Getopt::Long; + +# +# Global constants. +# +our $pgm = $0; +our $cswdir = '/opt/csw'; +our $makecmd = "$cswdir/bin/gmake"; +our $maxsoftnmlen = 20; +our $bwurl = 'http://www.opencsw.org'; +our $bwfsearch = '/filesearch.php'; +our @msearchpath = ( # Perl module search path + "/opt/csw/lib/perl/csw", + "/opt/csw/share/perl/csw", + "/opt/csw/lib/perl/site_perl", + "/opt/csw/share/perl/site_perl" +); +our $cwd = getcwd(); +our $verbose; +our $email; +our $owner; +our $logfile; + +our $http_proxy; +our $ftp_proxy; + +our $version = "1.11"; + +sub usage { + + print STDERR "$pgm: Error, @_\n" if( @_ ); + print STDERR <<_UEND; + Usage: $pgm ... + Required options: + -o|--owner - Package maintainer name + -e|--email
- Package maintainer E-mail address + Optional options: + -h|--help - Prints this message. + -v|--verbose - do not redirect output from commands + -V|--version - Prints the version number ($version) + -H|--http_proxy - HTTP Proxy to use (e.g. http://proxy:8080) + -F|--ftp_proxy - FTP Proxy to use (e.g. http://proxy:8080) + -n|--nooverwrite [] + Do not overwrite the build directory, but do + everything else. If no module is specified, do not + overwrite any build directories. Can be specified as + many times as necessary. Allows you to modify the + build directory and re-build. + -F|--nooverwritefile + Same as --nooverwrite, but reads the module names from + a file. Can only be specified once. + + Where is a standard CPAN module name with an + optional comma seperated version number. For example: + + Email::Send + + and + + Email::Send,2.185 + + are both valid command line arguments. +_UEND + exit 1; +} + + +# +# These three routines are used to capture the output of sub processes and +# perl routines (such as CPAN::Module::get) into a log file. If the command +# completes successfuly, the log file is thrown away. If the command fails, +# the log file is printed along with an error message by calling fail. +# +sub logoutput { + + if( ! $verbose ) { + + $logfile = tmpnam(); + open( OLDOUT, '>&STDOUT' ); + open( OLDERR, '>&STDERR' ); + open( STDOUT, "> $logfile" ); + open( STDERR, "> $logfile" ); + + } + + +} + +sub endlog { + + if( ! $verbose ) { + + # Reference fh to silence warning + select( OLDERR ); select( OLDOUT ); + + # Restore output. + select( STDOUT); + close( STDOUT ); + open( STDOUT, ">&OLDOUT" ); + close( STDERR ); + open( STDERR, ">&OLDERR" ); + + rmtree( $logfile ); + + } + +} + +sub fail { + + if( ! $verbose ) { + + close( STDOUT ); + open( STDOUT, ">&OLDOUT" ); + close( STDERR ); + open( STDERR, ">&OLDERR" ); + open( LOG, "< $logfile" ) or + die "$pgm: Error, @_ - can't open log\n"; + print foreach ; + close( LOG ); + rmtree( $logfile ); + + } + + die "\n$pgm: Error, @_\n"; + +} + + +# +# See if a given perl module is contained in a package. If the +# module is on opencsw and it's version is as good or better than requested, +# return the opencsw package name. +# +# We have to be carefull because some of the data is corrupt. Some package +# links reutned when searching by file point to no-existant packages. Make +# sure the package is valid before returning. +# +# Takes three strings as argument: +# modname - the perl module name as in "Package::Module". +# ver - the required module version number. +# bver - the version number found at the CPAN site. This may be the +# version of a CPAN bundle which may not match the module version. +# +sub findBWpkg ( $$$ ) { + + my ($modname, $ver, $bver) = @_; + + my $ua = LWP::UserAgent->new; + $ua->proxy( 'http' => $http_proxy ) if $http_proxy; + $ua->proxy( 'ftp' => $ftp_proxy ) if $ftp_proxy; + + # + # Query for the module in each of the locations in which it might be + # installed. + # + my $tbl; + foreach my $path (@msearchpath) { + + # + # Find all packages containing our module by querying the BW + # site. + # + my $file = $modname; + $file =~ s'::'/'g; + $file = $path . "/" . $file . '.pm'; # Anchor query string. + my $res = $ua->request( POST $bwurl . $bwfsearch, + [ + filename => $file, + matchtype => 'exact', + searchfiles => 'Search Files' + ] + ); + die "can not query opencsw.org" unless $res->is_success; + + # + # Now parse the returned HTML page. + # + my $tree = HTML::TreeBuilder->new; + $tree->parse( $res->as_string ); + $tree->eof(); + + # + # Get the first table and extract the links to package info + # pages. We must make sure these are links to vaild packages. + # + my $tbltree = $tree->find( 'table' ) or next; + foreach my $link (@{$tbltree->extract_links()}) { + + # + # Follow the link and make sure it conatains a table. + # + $res = $ua->request( GET $bwurl . $link->[0] ); + die "can not query opencsw.org" + unless $res->is_success; + $tree->delete; + + $tree = HTML::TreeBuilder->new; + $tree->parse( $res->as_string ); + $tree->eof(); + + $tbl = ($tree->look_down('_tag','table'))[0] and last; + + } + + last if( defined($tbl) ); # Found a good package table! + + } + return unless $tbl; # No table with package info found. + + # + # The pakage name and version are in the first table. Extract + # them by position. + # + my @rows = $tbl->look_down( '_tag', 'tr' ); + + # package name is in fifth row + my $name = (($rows[4]->look_down('_tag', 'td'))[1]->content_list)[0]; + $name =~ s/\s//g; # Strip white space + + # version is in second row + my $bwver = (($rows[1]->look_down('_tag', 'td'))[1]->content_list)[0]; + $bwver =~ s/,REV=.*$//; + $bwver =~ s/\s//g; # Strip white space + + # + # If the BW version is less than the module version and CPAN version + # (bundle version), return failure. + # + if( ($bwver lt $ver) and ($bwver lt $bver) ) { + print "WARNNING: opencsw package $name is out of date\n"; + return; + } + + print "Found existing opencsw package $name for $modname module\n"; + return $name; # Success! + +} + +# +# See if a module is a perl core module by looking where it is installed. +# Takes a CPAN::Module reference as argument. +# +sub is_perl_core( $ ) { + my( $mod ) = @_; + + my $instfile = $mod->inst_file() or return; + return unless( $instfile =~ m'^/opt/csw/(lib|share)/perl/[0-9\.]+/' ); + return 1; + +} + +# +# See if a given BW package name is uniq. This routine will try to query for +# the package name on the BW web site. +# +# Takes a single string as argument. This can be either the software name +# (e.g. pm_expect) or the package name (e.g. CSWpmexpect). +# +sub is_uniq ( $ ) { + + my ($pkgname) = @_; + + + my $ua = LWP::UserAgent->new; + $ua->proxy( 'http' => $http_proxy ) if $http_proxy; + $ua->proxy( 'ftp' => $ftp_proxy ) if $ftp_proxy; + + # + # See if the "show all files" query returns anything for our package. + # + my $res = $ua->request( POST $bwurl . $bwfsearch, + [ + pkgname => $pkgname, + showfiles => 'Show Files' + ] + ); + die "could not query opencsw packages" unless $res->is_success; + + # + # Now parse the returned HTML page. + # + my $tree = HTML::TreeBuilder->new; + $tree->parse( $res->as_string ); + $tree->eof(); + $tree->objectify_text(); + + # + # If we do not find a match, return success, otherwise failure. + # + $tree->look_down( 'text', qr/NO MATCH/ ) and return 1; + return; + +} + +# +# This routine will build a SysV pakage including a dependancy file. It will +# take care that the package name meets the restrictions imposed by checkpkg. +# If the output file that would have been generated for this package already +# exists in the working directory, the package is assumed to be already built +# and nothing is done. This routine assumes that the source has already been +# downloaded and unpacked into the working directory (the directory where the +# script was launched). +# +# This routine takes five arguments: +# modname - the perl module name as in "Package::Module". +# moddir - the directory where the source code was unpacked. +# uid - the authors uid as returned by CPAN::Module->userid() +# bwdeps - an array reference to a list of BW package names on which +# the given module depends. +# pkgver - a string with the version number of the package. +# +sub bldpkg ( $$$\@$ ) { + my ($modname, $moddir, $uid, $bwdeps, $pkgver) = @_; + + # Construct software and package names. + my $pkgname = "pm_" . lc( $modname ); $pkgname =~ s/:://g; + my $pkgfile = "CSWpm" . lc( $modname ); $pkgfile =~ s/:://g; + + # + # If the package/software names are too long, truncate them and make + # sure they are still uniq. + # + if( length($pkgname) > $maxsoftnmlen ) { + + $pkgname = substr( $pkgname, 0, $maxsoftnmlen ); + die "can not make uniq name for $modname" + unless is_uniq( $pkgname ); + } + if( length($pkgfile) > $maxsoftnmlen ) { + + $pkgfile = substr( $pkgfile, 0, $maxsoftnmlen ); + die "can not make uniq name for $modname" + unless is_uniq( $pkgfile ); + } + + + # + # Do not rebuild the package if one already exists. + # + my @found = <$cwd/$pkgname-$pkgver,REV=*.pkg.gz>; + if( @found ge 1 ) { + print "Package for $modname already built, skipping\n"; + return $pkgfile; + } + + # + # Create the make file. + # + chdir( $moddir ) or die "Can not find module directory $moddir\n"; + if( -f "Makefile.PL" ) { + logoutput(); + system( "perl Makefile.PL INSTALLDIRS=vendor" ) == 0 + or fail "Can not create Makefile for $modname"; + endlog(); + } else { + logoutput(); + system( "perl Build.PL installdirs=vendor" ) == 0 + or fail "Can not create Makefile for $modname"; + endlog(); + } + + # + # Build everything but do not install yet. + # + logoutput(); + system( "$makecmd" ) == 0 or fail "Can not build $modname"; + + # + # Stage the products. + # + my $stage = $moddir . "/cswstage"; + my $stagecmd = "MAKE=$makecmd $cswdir/bin/stagepkg -a" . + " DESTDIR=$stage" . + " install" + ; + system( $stagecmd ) == 0 or fail "Could not stage $modname"; + endlog(); + + # + # Fix up the .packlist file (strip out the stageing directory). + # + my $pkfile = $stage . "$cswdir/lib/perl/csw/auto/" . $modname + . "/.packlist"; + $pkfile =~ s'::'/'g; + open( PKFILE, "< $pkfile" ) or die "can not find $pkfile"; + my @pklist = map {s/$stage//; $_} ; + close( PKFILE ); + open( PKFILE, "> $pkfile" ) or die "can not update $pkfile"; + print PKFILE @pklist; + close( PKFILE ); + + # + # Copy in the license if one is present. + # + if( -f 'LICENSE' ) { + copy( 'LICENSE', $stage . '/copyright' ); + } else { + open( COPY, "> $stage/copyright" ) and close COPY; + } + + chdir( $stage ); + + # + # Generate a prototype file. + # + my $filter = qr/( opt| var|perllocal.pod| copyright| prototype) /; + my @proto = map {s'none 'none /'; s' [^ ]+ [^ ]+$' root bin'; $_ . "\n"} + grep {!/$filter/} + `find . | /usr/bin/pkgproto` + ; + die "Can not run pkgproto" if( $? != 0 ); + open( PROTO, '> prototype' ); + print PROTO "i copyright\n"; + print PROTO "i depend\n"; + print PROTO "i pkginfo\n"; + print PROTO @proto; + close PROTO; + + # + # Generate dependancy file. + # + open( DEPFILE, '> depend' ); + print DEPFILE "P\t" . $_ . "\n" foreach( @$bwdeps ); + print DEPFILE "P\tCSWperl\n"; # Perl modules depend on perl! + close DEPFILE; + + # + # Generate pkginfo file. + # + my $url = "http://search.cpan.org/~$uid/$modname-$pkgver"; + $url =~ s/::/-/g; + my ($sec,$min,$hour,$mday,$mon,$year) = localtime; + my $verstr = $pkgver . ",REV=" . (1900 + $year) . "." . $mon . "." + . $mday; + open( INFO, '> pkginfo' ); + print INFO "PKG=$pkgfile\n"; + print INFO "NAME=$pkgname - perl $modname module\n"; + print INFO "VERSION=" . $verstr . "\n"; + print INFO "CATEGORY=application\n"; + print INFO "VENDOR=$url packaged for CSW by $owner\n"; + print INFO "HOTLINE=http://www.opencsw.org/bugtrack/\n"; + print INFO "EMAIL=$email\n"; + close INFO; + + # + # Create package and copy it to the working directory. + # + my $arch = `uname -p`; chomp( $arch ); + my $osver = `uname -r`; chomp( $osver ); + my $outfile = $pkgname . "-" . $verstr . "-SunOS" . $osver . + "-" . $arch . "-CSW.pkg"; + + # + # Build the package file. We can not use createpkg because it calls + # checkpkg which requires the depenencies to already be installed. + # + my $spooldir = "$cwd" . "/" . $pkgfile; + rmtree( $spooldir ) if( -f $spooldir ); + logoutput(); + system( "pkgmk -o -r . -a $arch -f prototype -d $cwd" ) == 0 + or fail "could not create package for $modname"; + system( "pkgtrans $cwd $cwd/$outfile $pkgfile" ) == 0 + or fail "could not convert $modname package to stream format"; + system( "gzip -f $cwd/$outfile" ) == 0 + or fail "could not gzip $modname package"; + endlog(); + rmtree( $spooldir ); + + return $pkgfile; #Sucess! +} + +# +# This routine queries the CPAN site fore a given perl module, downloads +# it's source code, builds it, and creates a package. This routine will also +# recursively build packages for all the module's listed dependancies. All +# this is accomplished by calling the previous routines. +# +# If a module is a core perl module and it is not out of date, the module is +# skipped. If a moulde is already packaged and listed on the BW site and is +# up to date, it will not be rebuilt (though it will be used for dependancies). +# The source code and build directory for the module will be placed in the +# working directory (the directory where this script was invoked) as will the +# final package file. +# +# This routine takes five paramates: +# ndldall - a flag to indicate no CPAN source files are to be downloaded +# and more importantly, the previous build directory is not to +# be overwritten. +# ndld - a hash containing the names of modules that should not be +# downloaded as above. +# modname - the perl module name as in "Package::Module". +# ver - a string with the minimum acceptable version number for the +# given module. +# deptree - a hash in which the module disposition and dependacy hash +# will be written. This can be used to print a summary of +# what happend. +# +sub pmtopkg ( $\%$$\% ); # Avoid warning because of recursive call. +sub pmtopkg ( $\%$$\% ) { + + my ($ndldall, $nodnld, $modname, $ver, $deptree) = @_; + + $ver = "" if( !defined $ver ); + + # + # If the module is perl, check the running perl version. + # + if( $modname eq "perl" ) { + die "$modname requires perl version $ver" if( $^V < $ver ); + $deptree->{$modname}{$ver} = ["perl OK",{}]; + return; + } + + # + # Look up the CPAN module. + # + my $mod = (CPAN::Shell->expand("Module", ($modname)))[0]; + die "can not locate CPAN module $modname" unless( $mod ); + logoutput(); + my $instver = $mod->inst_version(); + my $fname = $mod->cpan_file(); + endlog(); + + # + # If CPAN substituted a bundle for our module, we need to use the + # bundle version number when searching for the module on BW. + # Extract the (possibly new) version number from the CPAN file name. + # + $fname =~ m'.*/[^/]+-([0-9\.]+)\.tar\.gz'; + my $bver = $1; + + # + # If this is a perl core module and it is not out of date, skip it. + # + if( is_perl_core($mod) && defined($ver) && defined($instver) && + ($ver le $instver) + ) { + print "Skiping core module $modname\n"; + $deptree->{$modname}{$ver} = ["core module OK",{}]; + return; + } + + # + # If a BW package is found and it is not a core package, return it. + # + my $bwpkg = findBWpkg( $modname, $ver, $bver ); + if( $bwpkg ) { + $deptree->{$modname}{$ver} = ["Existing BW package $bwpkg OK",{}]; + return $bwpkg; + } + + # + # Download the source from CPAN and unpack it in the CPAN build dir. + # + logoutput(); + if( $ndldall || $nodnld->{$modname} ) { + print OLDOUT "Skipping download of $modname\n"; + } else { + $mod->get(); + } + my $cfile = $CPAN::Config->{keep_source_where} . + "/authors/id/" . + $fname; + ; + fail( "can not download $modname from CPAN" ) if( ! -f $cfile ); + if( !($ndldall || $nodnld->{$modname}) ) { + system( "cd $cwd; gunzip -c $cfile | tar -xvf -" ) == 0 + or fail "can not unpack $cfile"; + } + endlog(); + + # + # If we picked up a bundle, change to the bundle name. Extract the + # (possibly new) module name from the CPAN file name. + # + $fname =~ m'.*/([^/]+)-[0-9\.]+\.tar\.gz'; + my $nmodname = $1; + $nmodname =~ s/-/::/g; + + # + # Get the directory name where the source was unpacked. + # + my $chome = $CPAN::Config->{cpan_home}; + $fname =~ m'.*/([^/]+-[0-9\.]+)\.tar\.gz'; + my $moddir = $cwd . "/" . $1; + + # + # Get the modules $nmodname requires from the YAML meta data. Get it + # as a reference to a hash of module => "version". + # + my $metafile = $moddir . "/META.yml"; + my $meta_data; + $meta_data = LoadFile( $metafile ) + or die "Can not load dependancies for $nmodname"; + my $req = $meta_data->{requires}; + + # + # Recursively make (or look up) pakages for each dependancy and save + # them for when we build the package. + # + my ($bwdep, @deps); + foreach( keys %$req ) { + $bwdep = pmtopkg($ndldall, %$nodnld, $_, $req->{$_}, %$deptree) + and push @deps, $bwdep; + } + + # + # Build the package. + # + my $depname = bldpkg( $nmodname, $moddir, $mod->userid(), @deps, $meta_data->{version} ) + or die "can not build package for $nmodname\n"; + + # + # Copy the original source file to our orginal working directory. + # + my ($vol, $dir, $file); + ($vol, $dir, $file) = File::Spec->splitpath( $cfile ); + $file = $cwd . '/' . $file; + copy( $cfile , $file ) or die "Could not copy $cfile to $file: $!"; + + chdir( $cwd ); # Go back to where we were. + + $deptree->{$modname}{$ver} = ["New BW package for $nmodname!",$req]; + + # Return our new package name + return $depname +} + +# +# A little routine to print out a summary of what was done. This routine will +# recursively traverse the deptree structure built up in pmtopkg. At each node +# it will print out the disposition message, and recursively decend each listed +# dependacy tree. +# +# This routien takes four parameters: +# modname - the perl module name as in "Package::Module". +# ver - a string with the minimum version number for the given module. +# indent - a string of spaces used to do indentation at each level. +# deptree - a referecne to the hash built up in pmtopkg. Each entry +# in the hash is an array containing a disposition string, and +# a reference to a hash of dependancies (mod::name => version). +# +sub disposition ( $$$\% ); +sub disposition ( $$$\% ) { + my ($modname, $ver, $indent, $deptree) = @_; + + $ver = "" if( !defined $ver ); + + my $dispo = $deptree->{$modname}{$ver}[0]; + print "$indent$modname $ver - $dispo\n" if( $dispo ); + my $deps = $deptree->{$modname}{$ver}[1]; + + $indent = sprintf( "%s ", $indent ); + foreach( keys %$deps ) { + disposition( $_, $deps->{$_}, $indent, %$deptree ); + } +} + +my $ndldfile; +my @ndld; +my $ndldall; +my $help; +my $vflag; +my %deptree; + +# +# Parse the command line options. +# +Getopt::Long::Configure( 'prefix_pattern=(--|-)' ); +Getopt::Long::Configure( 'no_auto_abbrev' ); +Getopt::Long::Configure( 'no_ignore_case_always' ); +GetOptions( + "verbose|v" => \$verbose, + "version|V" => \$vflag, + "help|h" => \$help, + "owner|o=s" => \$owner, + "email|e=s" => \$email, + "http_proxy|H=s" => \$http_proxy, + "ftp_proxy|F=s" => \$ftp_proxy, + "nooverwritefile|f=s" => \$ndldfile, + "nooverwrite|n:s" => sub { if($_[1]){push @ndld, $_[1]} else {$ndldall = 1} } +); + +usage if( $help ); +if( $vflag ) { + print "Version: $version\n"; + exit 0; +} + +# +# Verify sanity of options. +# +usage "must specify module names " unless( @ARGV ); +usage "maintainer E-mail address required" unless( $email ); +usage "maintainer name required" unless( $owner ); + +if( $ndldfile ) { + + usage "bad no download file name $ndldfile" unless( -f $ndldfile ); + open( NDLD, "< $ndldfile" ); + push @ndld, map {chomp($_); $_} ; + close( NDLD ); + +} + +my %ndldmods; +$ndldmods{$_} = 1 foreach( @ndld ); + +# +# Pick up proxies from /etc/opt/csw/pkg-get.conf if it exists. +# +my $cfgfile = "$cswdir/etc/pkg-get.conf"; +if( -f $cfgfile ) { + + open( CFG, "< $cfgfile" ); + my %vars = + map { m/([^=]+)=(.*)/; ($1, $2) } + grep { /=/ } map { s/#.*//; $_ } + ; + + # + # Only pick up proxies if they were not already specified. + # + if( !defined($http_proxy) && defined($vars{http_proxy}) ) { + $http_proxy = $vars{http_proxy}; + } + if( !defined($ftp_proxy) && defined($vars{ftp_proxy}) ) { + $ftp_proxy = $vars{ftp_proxy}; + } + +} + +# +# Build the packages for each module. +# +my @modlist = @ARGV; +foreach( @modlist ) { + + $_ =~ /^([^,]+),?(.*)/; #Extract mod name and version number + pmtopkg( $ndldall, %ndldmods, $1, $2, %deptree ); + +} +print "\nModule Disposition Summary:\n\n"; +foreach( @modlist ) { + + $_ =~ /^([^,]+),?(.*)/; #Extract mod name and version number + disposition( $1, $2, "", %deptree ); + +} + +exit 0; Property changes on: csw/mgar/pkg/cswutils/trunk/files/cpan2pkg ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/cswutils/trunk/files/createpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/createpkg (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,134 @@ +#!/bin/ksh -p + +# createpkg 1.6 +# This script actually builds the package.. once you have already +# put together the pkginfo and prototype file. +# See the makeproto script for a way to make a prototype file. + + +if [[ "$FAKEROOTKEY" != "" ]] ; then + print ERROR: do not run createpkg under a fakeroot shell + # This is mainly because we unset LD_LIBRARY_PATH lower down, + # which would break fakeroot anyway + exit 1 +fi + +#This is only relevant for an absolute-path package +ROOTDIR=/ +if [[ "$1" = "-r" ]] ; then + ROOTDIR="$2" + mode=absolute + shift + shift +fi + +#This is only relevant for a relative-path package +INSTALLBASEDIR=/opt/csw +if [[ "$1" = "-b" ]] ; then + INSTALLBASEDIR="$2" + mode=relative + shift + shift +fi + +if [[ $# -ne 0 ]] ; then + case $1 in + *=*) + print Taking "'extra'" args, as variable assignments for pkgmk + ;; + *) + print ERROR: unrecognized args: $* + print read the manpage + exit 1 + ;; + esac + +fi + +ARCH=`sed -n 's/^ARCH=//p' pkginfo` +if [[ "$ARCH" != "all" ]] ; then + ARCH=`uname -p` +fi + +die() +{ + print ERROR: $* + exit 1 +} + +# check if we have multiple prototype files, vs a single unified prototype file +if [[ -f prototype.$ARCH ]] ; then + PROTO=prototype.$ARCH +else + PROTO=prototype +fi + +grep 'i copyright' $PROTO || die need copyright in $PROTO +grep 'root other' $PROTO && die fix $PROTO file +grep 'csw/man' $PROTO && die fix csw/man entry in $PROTO file +grep 'none man' $PROTO && die fix csw/man entry in $PROTO file +grep 'csw/info' $PROTO && die fix csw/info entry in $PROTO file +grep 'none info' $PROTO && die fix csw/info entry in $PROTO file +grep 'csw/doc' $PROTO && die fix csw/doc entry in $PROTO file +grep 'none doc' $PROTO && die fix csw/doc entry in $PROTO file + +grep 'Replace this file' copyright && die fix copyright file + +if [[ "$mode" = "" ]] ; then + grep /opt/csw $PROTO >/dev/null + if [[ $? -eq 0 ]] ; then + mode=absolute + else + mode=relative + fi +fi + +PKG=`sed -n 's/^PKG=//p' pkginfo` +PKGREV=`sed -n 's/^VERSION=//p' pkginfo` +SOFTNAME=`sed -n 's/^NAME=//p' pkginfo|awk '{print $1}'` + +case $SOFTNAME in + *[A-Z]*) + echo ERROR: $SOFTNAME must be all lowercase + exit 1 + ;; +esac + +PKGFILE=$SOFTNAME-$PKGREV-SunOS`uname -r`-$ARCH-CSW.pkg + +if [ "$PKGREV" = "" -o "$SOFTNAME" = "" ] ; then + echo ERROR: need VERSION and NAME defined properly in pkginfo + exit 1 +fi + +if [[ "$mode" = "absolute" ]] ; then + pkgmk -r $ROOTDIR -a $ARCH -f $PROTO "$@" +else + pkgmk -b $INSTALLBASEDIR -a $ARCH -f $PROTO BASEDIR=/opt/csw "$@" +fi + +if [[ $? -ne 0 ]] ; then die package creation failed ; fi + +pkgtrans -s /var/spool/pkg `pwd`/$PKGFILE $PKG + +print Conversion complete. Cleaning up in /var/spool/pkg + +rm -r /var/spool/pkg/$PKG + +print "" +print Running checkpkg on pkgfile +LD_LIBRARY_PATH='' checkpkg $PKGFILE +if [[ $? -ne 0 ]] ; then + print ERROR: failed check. + exit 1 +fi + +if [[ "$mode" = "absolute" ]] ; then + print packaging of files under $ROOTDIR complete +else + print packaging of files under $INSTALLBASEDIR complete +fi + +echo gzipping pkgfile +gzip $PKGFILE + Property changes on: csw/mgar/pkg/cswutils/trunk/files/createpkg ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/cswutils/trunk/files/createpkg.8 =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/createpkg.8 (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/createpkg.8 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,50 @@ +.TH createpkg 8 "Jan 9, 2002" "CSW maintainers" +.SH NAME +\fBcreatepkg\fP +\- CSW utility to put together a pkg file +.SH SYNOPSIS +.br +\fBcreatepkg [-r rootdir] [-b basedir]\fP + +.SH DESCRIPTION +\fBcreatepkg\fP +is a convenience tool to automate the final steps needed to create +a pkg file. It assumes you have done all compiling, and "staging", for the +contents of the package already. +It will convert the binaries into a single .pkg.gz file, and +run checkpkg on it to check for common errors in packaging. + +You must have already created a prototype file, a copyright file, +and a pkginfo file. If you need one, you must also have created a depend file, +and added an entry into pkginfo for it. + +It is assumed that you will follow a proceedure similar to the +following: + + [untar software.tar.gz for building] + [configure and build the software] + stagepkg + mkdir $HOME/pkg/software + cp COPYING $HOME/pkg/software/copyright + cp cswstage/prototype $HOME/pkg/software/prototype + cd $HOME/pkg/software + [create pkginfo file] + [create depend file, if neccessary, and adjust prototype] + createpkg -b {/full/path/to/builddir}/cswstage/opt/csw + +If you need to make an absolute-path package, you would instead use + + createpkg -r {/full/path/to/builddir}/cswstage + +.SH ADVANCED TECHNIQUES + +createpkg (and pkgmk) normally assume you have a 'prototype' file +in the current directory. However, if you need to have slightly different +contents for sparc vs x86, createpkg will check for a prototype.{sparc|i386} +file, and use the ARCH specific version, if present. + +.SH SEE ALSO +\fBcheckpkg\fP(8) +\fBstagepkg\fP(8) +.SH AUTHORS +Philip Brown Added: csw/mgar/pkg/cswutils/trunk/files/stagepkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/stagepkg (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/stagepkg 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,191 @@ +#!/bin/ksh -p + +# stagepkg 1.13 + +# This script is for CSW maintainers to be able to more easily +# do builds of a package, on the build machines, without +# having root privileges. +# It does some very generic package prototype generation. +# For more custom jobs, you are encouraged to either copy this +# script to your own location, with tweaks, +# or ask a sysadmin to chown the target directories to you, +# for purposes of doing a tweak/build/install/test cycle more easily. +# + +MAKE=${MAKE:-make} +# Note: This MUST BE AN ABSOLUTE PATH!!! +DESTTOP=$PWD/cswstage + + + + +PATH=$PATH:/usr/ccs/bin # paranoia is always good + + +setupstage(){ + # We make a bunch of softlinks, so that programs that + # normally install to top-level directories, instead + # install to where WE want them to install, + # without having to modify their makefiles. + mkdir -p $DESTTOP/opt/csw/share $DESTTOP/opt/csw/lib + mkdir -p $DESTTOP/opt/csw/bin $DESTTOP/opt/csw/sbin + mkdir $DESTTOP/opt/csw/share/doc + mkdir $DESTTOP/opt/csw/share/info + mkdir $DESTTOP/opt/csw/share/locale + mkdir $DESTTOP/opt/csw/share/man + ln -s share/man $DESTTOP/opt/csw/man + ln -s share/doc $DESTTOP/opt/csw/doc + ln -s share/info $DESTTOP/opt/csw/info + ln -s ../share/locale $DESTTOP/opt/csw/lib/locale +} + + +# Assume we are in top-level of source tree. +# Create virtual csw tree +# Do the "make install" to tree +# Clean up unneeded directories after install +# Generate prototype file +install_and_proto(){ + + SHELL=ksh + + echo $MAKE + echo $S_MAKEARGS + echo $DESTTOP + echo $FAKEROOT + + # look up primary group name + PGROUP=`/usr/xpg4/bin/id -n -g` + + + cat >build_script.$$</dev/null + rmdir share bin sbin lib 2>/dev/null + + (print 'i pkginfo'; print 'i copyright' ;print 'i depend' ; pkgproto . )>/tmp/proto.$$ + cd ../.. + # this sed works around bug in fakeroot on x86 + # It forces root.bin owner/group for files that default to normal user + sed "s/${LOGNAME} ${PGROUP}$/root bin/" /tmp/proto.$$ >prototype + rm /tmp/proto.$$ + cd .. +EOF + $FAKEROOT ksh ./build_script.$$ + #echo take a look at ./build_script.$$ + rm build_script.$$ + +} + +if [[ "$1" = "-a" ]] ; then + print Option -a detected + print Will create absolute-path package + absolute=1 + shift +fi + +if [[ "$1" = "-m" ]] ; then + print Option -m detected + print Will run as '"me"', $(/usr/xpg4/bin/id -n -u) + nofakeroot=1 + shift +fi + +if [[ -d $DESTTOP ]] ; then + print removing old staging area + rm -fr $DESTTOP +fi + +print creating staging area $DESTTOP +setupstage + +if [[ $# -gt 0 ]] ; then + S_MAKEARGS="$@" +else + S_MAKEARGS="DESTDIR=$DESTTOP install" +fi +print using make arguments of "$S_MAKEARGS" + +export S_MAKEARGS + + +if [[ $USER != "root" ]] && [[ $nofakeroot -ne 1 ]] ; then + FAKEROOT=fakeroot + print will use fakeroot to do install +fi + +install_and_proto + +### Now need to figure out if package is REAALLY relocatable. +# If there is anything with a hardcoded 'csw' in it, then it +# cannot be relocatable + +print "" +print Checking for relocatable capability... + +if [[ $absolute -eq 0 ]] ; then + find $DESTTOP -type f | xargs strings | grep csw + if [[ $? -eq 0 ]] ; then + print WARNING: MUST make an absolute package + absolute=1 + fi +fi + +if [[ $absolute -ne 0 ]] ; then + cd $DESTTOP + sed 's: none : none /opt/csw/:' prototype >prototype.new + mv prototype.new prototype + print Updated prototype file to use absolute paths + cd .. +fi + +print "" +print Stripping executables... + + +find $DESTTOP | xargs file | grep 'not stripped' | + awk -F: '{print $1}' |xargs /usr/ccs/bin/strip + + + +print prototype file is now in $DESTTOP/prototype + +if [[ $absolute -eq 0 ]] ; then + print If you dont already have a prototype file, you should copy + print $DESTTOP/prototype + print to where you keep your pkginfo file, and edit it as appropriate. Next, + print ' cd ~/pkgs/[software] ' + print You should then do EITHER + print " createpkg -b $DESTTOP/opt/csw" + print OR if you want to do things the hard way + print " pkgmk -b $DESTTOP/opt/csw \ " + print " -f $DESTTOP/prototype \ " + print " BASEDIR=/opt/csw" + print " [and then all the other cleanup type stuff by hand]" +else + print If you dont already have a prototype file, you should copy + print $DESTTOP/prototype + print to where you keep your pkginfo file, and edit it as appropriate. Next, + print ' cd ~/pkgs/[software] ' + print You should then do EITHER + print " createpkg -r $DESTTOP" + print OR if you want to do things the hard way + print " pkgmk -r $DESTTOP \ " + print " -f $DESTTOP/prototype " + print " [and then all the other cleanup type stuff by hand]" +fi Property changes on: csw/mgar/pkg/cswutils/trunk/files/stagepkg ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/cswutils/trunk/files/stagepkg.8 =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/stagepkg.8 (rev 0) +++ csw/mgar/pkg/cswutils/trunk/files/stagepkg.8 2009-05-14 20:40:01 UTC (rev 4858) @@ -0,0 +1,85 @@ +.TH stagepkg 8 "Feb 8, 2003" "CSW maintainers" +.SH NAME +\fBstagepkg\fP +\- CSW utility program to 'make install' to a staging area +.SH SYNOPSIS +.br +\fBstagepkg [-a] [-m] [make flags] \fP + +.SH OPTIONS +-a Absolute package + +-m Run as "me". Do not try to use fakeroot or chown + +.SH DESCRIPTION +\fBstagepkg\fP +is used to create a virtual layout of /opt/csw, under +$PWD/cswstage, +for purposes of installing software, before making a package out of it. +\fBstagepkg\fP will automatically create certain links like man -> share/man +to ensure that software gets installed to the proper place. + +After installing the binaries to the staging tree, \fBstagepkg\fP will +then attempt to determine if a package can be a relocatable one, or whether +it needs to be an absolute-path one. You can force an absolute-path package +with the -a option. + +It is then up to you to look over the generated prototype file, fix it up +as neccessary, and then call pkgmk with the appropriate options. +(Or use \fBcreatepkg\fP(8) instead of pkgmk) + +\fBstagepkg\fP will transparently use \fBfakeroot\fP to do the install, +unless you already are root, or use the -m option. + +Note that this script \fBis not suitable\fP for multiarchitecture packages. +That is to say, if you wish to provide binaries for sparcv8, sparcv8+, +and sparcv9, you will have to script something yourself. +However, it may still be useful to run the script once for the "base" package, +and then manually tweak the staging area and prototype file to match. + +By default, \fBstagepkg\fP will use standard Solaris make. If you wish +to use gnu make, set your MAKE environment variable. For example, + +.LP +MAKE=gmake stagepkg + + +By default, \fBstagepkg\fP assumes that the target software Makefiles respect +DESTDIR=/some/path to alter the virtual root destination. If you need to +specify some other make varible, call stagepkg as if it were the make command +directly. EG: + +.LP +stagepkg BUILD_TOP=$PWD/cswstage install + + +Since it is common to need to remake the package due to minor pkginfo changes, +or dependancy changes, without any changes to the actual binaries, +you are encouraged to keep your cswstage directory around, until you +put together the next update for the software you maintain. + +.SH DUMMY RUN + +Even if you can't, or don't want to, use stagepkg to do the "make install" +stage, it is still advisable for you to use it in a dummy run, so that it +makes the normal directory tree with special symbolic links for you, +under cswstage. You will then have to create and fix up your own prototype file. + +To do a dummy run, you can call it with any variable that would be passed to +"make". For example: + +.LP +stagepkg FAKEVAR=dummy + + +.SH SEE ALSO +\fBcheckpkg\fP(8), +\fBcreatepkg\fP(8), +\fBfakeroot\fP(1) +.br +http://www.opencsw.org/standards/ + +.SH AUTHORS +Philip Brown +.SH BUGS +Cannot cover every possible package configuration issue automatically This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 15 02:19:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 15 May 2009 00:19:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[4859] csw/mgar/pkg/php4/trunk Message-ID: Revision: 4859 http://gar.svn.sourceforge.net/gar/?rev=4859&view=rev Author: valholla Date: 2009-05-15 00:19:30 +0000 (Fri, 15 May 2009) Log Message: ----------- make 2 pkgs archall Modified Paths: -------------- csw/mgar/pkg/php4/trunk/Makefile csw/mgar/pkg/php4/trunk/files/pkgdef.mk Modified: csw/mgar/pkg/php4/trunk/Makefile =================================================================== --- csw/mgar/pkg/php4/trunk/Makefile 2009-05-14 20:40:01 UTC (rev 4858) +++ csw/mgar/pkg/php4/trunk/Makefile 2009-05-15 00:19:30 UTC (rev 4859) @@ -20,7 +20,7 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES = $(SF_PROJ)-$(GARVERSION).tar.bz2 +DISTFILES = $(DISTNAME).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) PHP4ROOT = $(DESTDIR)$(prefix)/php4 Modified: csw/mgar/pkg/php4/trunk/files/pkgdef.mk =================================================================== --- csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-14 20:40:01 UTC (rev 4858) +++ csw/mgar/pkg/php4/trunk/files/pkgdef.mk 2009-05-15 00:19:30 UTC (rev 4859) @@ -5,7 +5,7 @@ PACKAGES += CSWphp4iconv CSWphp4imap CSWphp4ldap CSWphp4mbstring PACKAGES += CSWphp4mcal CSWphp4mssql CSWphp4mysql CSWphp4ncurses CSWphp4odbc PACKAGES += CSWphp4openssl CSWphp4pgsql CSWphp4zlib CSWap2modphp4 -PACKAGES += CSWmodphp4 CSWphp4 +PACKAGES += CSWmodphp4 CSWmodphp4core CSWphp4 CATALOGNAME_CSWphp4bcmath = php4_bcmath SPKG_DESC_CSWphp4bcmath = bcmath extension for php4 @@ -59,3 +59,5 @@ SPKG_DESC_CSWmodphp4core = Deprecated use mod_php4 or ap2_modphp4 CATALOGNAME_CSWphp4 = mod_php SPKG_DESC_CSWphp4 = Both an apache module and command line interpreter for the PHP language +ARCHALL_CSWphp4 = 1 +ARCHALL_CSWmodphp4core = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 15 05:30:23 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 15 May 2009 03:30:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[4860] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4860 http://gar.svn.sourceforge.net/gar/?rev=4860&view=rev Author: valholla Date: 2009-05-15 03:30:22 +0000 (Fri, 15 May 2009) Log Message: ----------- checkins Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile Added Paths: ----------- csw/mgar/pkg/php5/trunk/Makefile.Orig csw/mgar/pkg/php5/trunk/Makefile.default-dirs Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-15 00:19:30 UTC (rev 4859) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-15 03:30:22 UTC (rev 4860) @@ -1,8 +1,8 @@ -GARNAME = php5 -GARVERSION = 5.2.9 -CATEGORIES = lang -SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') -DISTNAME = $(SF_PROJ)-$(GARVERSION) +GARNAME = php5 +GARVERSION = 5.2.9 +CATEGORIES = lang +SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') +DISTNAME = $(SF_PROJ)-$(GARVERSION) DESCRIPTION = A high-level scripting language. define BLURB @@ -21,9 +21,7 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 - INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) - STRIP_DIRS += $(prefix)/lib/php/extensions/*/ # Auxilliary files @@ -31,7 +29,6 @@ DISTFILES += CSWphp5_ext_enable.sh CSWphp5_ext_disable.sh PACKAGES = CSWphp5 CSWphp5devel - CATALOGNAME_CSWphp5 = php5 SPKG_DESC_CSWphp5 = A High-Level Scripting Languages DISTFILES += CSWphp5.postinstall @@ -64,13 +61,13 @@ STRIP_LIBTOOL = 1 -CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS = --prefix=$(prefix) +CONFIGURE_ARGS += --with-exec-dir=$(prefix)/bin CONFIGURE_ARGS += --disable-static CONFIGURE_ARGS += --enable-cli CONFIGURE_ARGS += --enable-fastcgi CONFIGURE_ARGS += --enable-force-cgi-redirect CONFIGURE_ARGS += --enable-pcntl=shared -CONFIGURE_ARGS += --enable-pdo=shared CONFIGURE_ARGS += --with-mm=$(prefix) CONFIGURE_ARGS += --enable-magic-quotes CONFIGURE_ARGS += --enable-spl=shared @@ -96,15 +93,15 @@ install-extras: ginstall -m 0755 $(WORKDIR)/phpext $(DESTDIR)$(bindir) - gsed -i -e s,PHPEXTDIR,$(shell $(bindir)/php-config --extension-dir),\ + gsed -i -e s,PHPEXTDIR,$(shell $(DESTDIR)$(bindir)/php-config --extension-dir),\ $(WORKDIR)/php.ini.CSW ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(libdir) ginstall -m 0644 $(WORKDIR)/pear.conf.CSW $(DESTDIR)$(sysconfdir) ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra ginstall -m 0644 $(WORKDIR)/httpd-php5.conf.CSW \ $(DESTDIR)$(prefix)/apache2/etc/extra - @(grm -fr $(DESTDIR)/.[a-z]*) - @(gfind $(libdir) -name "*.a" -exec grm {} \;) + #@(grm -fr $(DESTDIR)/.[a-z]*) + @(gfind $(DESTDIR)/$(libdir) -name "*.a" -exec grm {} \;) @(grm -f $(DESTDIR)$(sysconfdir)/pear.conf) @$(MAKECOOKIE) Added: csw/mgar/pkg/php5/trunk/Makefile.Orig =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.Orig (rev 0) +++ csw/mgar/pkg/php5/trunk/Makefile.Orig 2009-05-15 03:30:22 UTC (rev 4860) @@ -0,0 +1,148 @@ +GARNAME = php5 +GARVERSION = 5.2.9 +CATEGORIES = lang +SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') + +DESCRIPTION = A high-level scripting language. +define BLURB + PHP is a widely-used Open Source general-purpose scripting language that is + especially suited for Web development and can be embedded into HTML. Its + syntax draws upon C, Java, and Perl, and is easy to learn. PHP runs on many + different platforms and can be used as a standalone executable or as a + module under a variety of Web servers. It has excellent support for + databases, XML, LDAP, IMAP, Java, various Internet protocols, and general + data manipulation, and is extensible via its powerful API. It is actively + developed and supported by a talented and energetic international team. + Numerous Open Source and commercial PHP-based application packages are + available. +endef + +php5_root = $(DESTDIR)$(prefix)/php5 +php5_bin = $(php5_root)/bin +php5_lib = $(php5_root)/lib + +MASTER_SITES = http://us.php.net/distributions/ +SPKG_SOURCEURL = http://www.php.net/downloads.php +DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 + +INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) +PHP5ROOT = $(DESTDIR)$(prefix)/php5 + +STRIP_DIRS += $(PHP5ROOT)/lib/php/extensions/*/ +STRIP_DIRS += $(PHP5ROOT)/bin + +# Auxilliary files +DISTFILES += php.ini.CSW phpext pear.conf.CSW +DISTFILES += CSWphp5_ext_enable.sh CSWphp5_ext_disable.sh + +PACKAGES = CSWphp5 CSWphp5devel + +CATALOGNAME_CSWphp5 = php5 +SPKG_DESC_CSWphp5 = A High-Level Scripting Languages +DISTFILES += CSWphp5.postinstall +CATALOGNAME_CSWphp5devel = php5_devel +SPKG_DESC_CSWphp5devel = Development files for php5 +REQUIRED_PKGS_CSWphp5 = CSWexpat CSWggettextrt CSWiconv +REQUIRED_PKGS_CSWphp5 += CSWlibxml2 CSWzlib CSWmysql5rt +REQUIRED_PKGS_CSWphp5devel = CSWphp5 + +PKGFILES_CSWphp5devel = $(prefix)/php5/bin/php-config +PKGFILES_CSWphp5devel += $(prefix)/php5/bin/phpize +PKGFILES_CSWphp5devel += $(prefix)/php5/bin/peardev +PKGFILES_CSWphp5devel += $(prefix)/php5/include.* +PKGFILES_CSWphp5devel += $(prefix)/php5/lib/php/build/.* +PKGFILES_CSWphp5devel += $(prefix)/php5/man/.* + +PATCHFILES += configure.diff +PATCHFILES += php-bug-45557-fix.diff + +# PHP Extensions +EXTDIRLIST = $(shell ls -d extensions/*) +include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) + +# BerkeleyDB +EXTRA_LIB += $(prefix)/bdb44/lib +EXTRA_INC += $(prefix)/bdb44/include +EXTRA_CFLAGS = -I$(prefix)/include/ncursesw + +NOISALIST = 1 + +STRIP_LIBTOOL = 1 + +CONFIGURE_ARGS += --prefix=$(prefix)/php5 +CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --with-exec-dir=$(prefix)/php5/bin +CONFIGURE_ARGS += --enable-cli +CONFIGURE_ARGS += --enable-fastcgi +CONFIGURE_ARGS += --enable-force-cgi-redirect +CONFIGURE_ARGS += --enable-pcntl=shared +CONFIGURE_ARGS += --enable-pdo=shared +CONFIGURE_ARGS += --with-mm=$(prefix) +CONFIGURE_ARGS += --enable-magic-quotes +CONFIGURE_ARGS += --enable-spl=shared +CONFIGURE_ARGS += --with-pcre-regex +CONFIGURE_ARGS += --with-pear=shared + +# Disable Tests (report submitted to PHP QA) +SKIPTEST = 1 +ENABLE_CHECK = 0 + +# Rebuild Configure Args to build mod_php5 +NEW_CONFIGURE_ARGS = $(shell echo $(CONFIGURE_ARGS) |sed -e 's/apxs2/apxs/' \ + -e 's/apache2\/sbin\/apxs/apache\/bin\/apxs/') + +# Copy over template config files and utility scripts + +PI_SCRIPTS = install-extras +PI_SCRIPTS += install-ap2modphp5 +PI_SCRIPTS += install-modphp5 + +post-install-modulated: $(PI_SCRIPTS) + @$(MAKECOOKIE) + +install-extras: + ginstall -m 0755 $(WORKDIR)/phpext $(DESTDIR)$(prefix)/php5/bin + gsed -i -e s,PHPEXTDIR,$(shell $(PHP5ROOT)/bin/php-config --extension-dir),\ + $(WORKDIR)/php.ini.CSW + ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(prefix)/php5/lib + ginstall -m 0644 $(WORKDIR)/pear.conf.CSW $(DESTDIR)$(prefix)/php5/etc + ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra + ginstall -m 0644 $(WORKDIR)/httpd-php5.conf.CSW \ + $(DESTDIR)$(prefix)/apache2/etc/extra + @(grm -fr $(DESTDIR)/.[a-z]*) + @(gfind $(PHP5ROOT)/lib -name "*.a" -exec grm {} \;) + @(grm -f $(DESTDIR)$(prefix)/php5/etc/pear.conf) + @$(MAKECOOKIE) + +install-ap2modphp5: + @( echo " ==> Now Building ap2_modphp5 <==" ) + @( if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs2=$(prefix)/apache2/sbin/apxs) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) + @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) + @( strip $(DESTDIR)$(prefix)/apache2/libexec/libphp5.so ) + @( gfind $(DESTDIR)$(prefix)/apache* \ + -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) + @$(MAKECOOKIE) + +install-modphp5: + @( echo " ==> Now Building mod_php5 <==" ) + @( if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs=$(prefix)/apache/bin/apxs) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) + @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) + @( strip $(DESTDIR)$(prefix)/apache/libexec/libphp5.so ) + @( gfind $(DESTDIR)$(prefix)/apache* \ + -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) + @$(MAKECOOKIE) + +EXTFILES = $(shell find extensions/*/files/* -prune -type f) +pre-fetch: + $(foreach F,$(EXTFILES),$(shell cp $(F) $(DOWNLOADDIR))) + +# System Rules/Configuration +include gar/category.mk Added: csw/mgar/pkg/php5/trunk/Makefile.default-dirs =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.default-dirs (rev 0) +++ csw/mgar/pkg/php5/trunk/Makefile.default-dirs 2009-05-15 03:30:22 UTC (rev 4860) @@ -0,0 +1,139 @@ +GARNAME = php5 +GARVERSION = 5.2.9 +CATEGORIES = lang +SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') +DISTNAME = $(SF_PROJ)-$(GARVERSION) + +DESCRIPTION = A high-level scripting language. +define BLURB + PHP is a widely-used Open Source general-purpose scripting language that is + especially suited for Web development and can be embedded into HTML. Its + syntax draws upon C, Java, and Perl, and is easy to learn. PHP runs on many + different platforms and can be used as a standalone executable or as a + module under a variety of Web servers. It has excellent support for + databases, XML, LDAP, IMAP, Java, various Internet protocols, and general + data manipulation, and is extensible via its powerful API. It is actively + developed and supported by a talented and energetic international team. + Numerous Open Source and commercial PHP-based application packages are + available. +endef + +MASTER_SITES = http://us.php.net/distributions/ +SPKG_SOURCEURL = http://www.php.net/downloads.php +DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 +INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) +STRIP_DIRS += $(prefix)/lib/php/extensions/*/ + +# Auxilliary files +DISTFILES += php.ini.CSW phpext pear.conf.CSW +DISTFILES += CSWphp5_ext_enable.sh CSWphp5_ext_disable.sh + +PACKAGES = CSWphp5 CSWphp5devel +CATALOGNAME_CSWphp5 = php5 +SPKG_DESC_CSWphp5 = A High-Level Scripting Languages +DISTFILES += CSWphp5.postinstall +CATALOGNAME_CSWphp5devel = php5_devel +SPKG_DESC_CSWphp5devel = Development files for php5 +REQUIRED_PKGS_CSWphp5 = CSWexpat CSWggettextrt CSWiconv +REQUIRED_PKGS_CSWphp5 += CSWlibxml2 CSWzlib CSWmysql5rt +REQUIRED_PKGS_CSWphp5devel = CSWphp5 + +PKGFILES_CSWphp5devel = $(bindir)/php-config +PKGFILES_CSWphp5devel += $(bindir)/phpize +PKGFILES_CSWphp5devel += $(bindir)/peardev +PKGFILES_CSWphp5devel += $(includedir)/.* +PKGFILES_CSWphp5devel += $(libdir)/php/build/.* +PKGFILES_CSWphp5devel += $(mandir)/.* + +PATCHFILES += configure.diff +PATCHFILES += php-bug-45557-fix.diff + +# PHP Extensions +EXTDIRLIST = $(shell ls -d extensions/*) +include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) + +# BerkeleyDB +EXTRA_LIB += $(prefix)/bdb44/lib +EXTRA_INC += $(prefix)/bdb44/include +EXTRA_CFLAGS = -I$(prefix)/include/ncursesw + +NOISALIST = 1 + +STRIP_LIBTOOL = 1 + +CONFIGURE_ARGS = --prefix=$(prefix) +CONFIGURE_ARGS += --with-exec-dir=$(prefix)/bin +CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --enable-cli +CONFIGURE_ARGS += --enable-fastcgi +CONFIGURE_ARGS += --enable-force-cgi-redirect +CONFIGURE_ARGS += --enable-pcntl=shared +CONFIGURE_ARGS += --with-mm=$(prefix) +CONFIGURE_ARGS += --enable-magic-quotes +CONFIGURE_ARGS += --enable-spl=shared +CONFIGURE_ARGS += --with-pcre-regex +CONFIGURE_ARGS += --with-pear=shared + +# Disable Tests (report submitted to PHP QA) +SKIPTEST = 1 +ENABLE_CHECK = 0 + +# Rebuild Configure Args to build mod_php5 +NEW_CONFIGURE_ARGS = $(shell echo $(CONFIGURE_ARGS) |sed -e 's/apxs2/apxs/' \ + -e 's/apache2\/sbin\/apxs/apache\/bin\/apxs/') + +# Copy over template config files and utility scripts + +PI_SCRIPTS = install-extras +PI_SCRIPTS += install-ap2modphp5 +PI_SCRIPTS += install-modphp5 + +post-install-modulated: $(PI_SCRIPTS) + @$(MAKECOOKIE) + +install-extras: + ginstall -m 0755 $(WORKDIR)/phpext $(DESTDIR)$(bindir) + gsed -i -e s,PHPEXTDIR,$(shell $(DESTDIR)$(bindir)/php-config --extension-dir),\ + $(WORKDIR)/php.ini.CSW + ginstall -m 0644 $(WORKDIR)/php.ini.CSW $(DESTDIR)$(libdir) + ginstall -m 0644 $(WORKDIR)/pear.conf.CSW $(DESTDIR)$(sysconfdir) + ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra + ginstall -m 0644 $(WORKDIR)/httpd-php5.conf.CSW \ + $(DESTDIR)$(prefix)/apache2/etc/extra + #@(grm -fr $(DESTDIR)/.[a-z]*) + @(gfind $(DESTDIR)/$(libdir) -name "*.a" -exec grm {} \;) + @(grm -f $(DESTDIR)$(sysconfdir)/pear.conf) + @$(MAKECOOKIE) + +install-ap2modphp5: + @( echo " ==> Now Building ap2_modphp5 <==" ) + @( if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs2=$(prefix)/apache2/sbin/apxs) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) + @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) + @( strip $(DESTDIR)$(prefix)/apache2/libexec/libphp5.so ) + @( gfind $(DESTDIR)$(prefix)/apache* \ + -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) + @$(MAKECOOKIE) + +install-modphp5: + @( echo " ==> Now Building mod_php5 <==" ) + @( if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) + @( cd $(WORKSRC) && $(BUILD_ENV) \ + ./configure $(CONFIGURE_ARGS) --with-apxs=$(prefix)/apache/bin/apxs) + @( $(GARBIN)/fixlibtool $(WORKSRC) ) + @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) + @( strip $(DESTDIR)$(prefix)/apache/libexec/libphp5.so ) + @( gfind $(DESTDIR)$(prefix)/apache* \ + -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) + @$(MAKECOOKIE) + +EXTFILES = $(shell find extensions/*/files/* -prune -type f) +pre-fetch: + $(foreach F,$(EXTFILES),$(shell cp $(F) $(DOWNLOADDIR))) + +# System Rules/Configuration +include gar/category.mk Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-05-15 00:19:30 UTC (rev 4859) +++ csw/mgar/pkg/php5/trunk/checksums 2009-05-15 03:30:22 UTC (rev 4860) @@ -4,14 +4,14 @@ 5f0046fe1b3f8e2228fdb165bdbbe73a download/CSWmodphp5.postinstall 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space -f82303f581e2e4bf11fe3bf10f332163 download/CSWphp5.postinstall -89e79becc9d7698c5c561581f2b098bc download/CSWphp5_ext_disable.sh -de56d3571f4484284d106af158bffc38 download/CSWphp5_ext_enable.sh +09fe57944fadf7cf5769d1070cf9cc90 download/CSWphp5.postinstall +4265ed6459d99f5cbe8eae29bf5c0b71 download/CSWphp5_ext_disable.sh +139abbf5e4b843dba93b1c51978038ba download/CSWphp5_ext_enable.sh ab08e2ba62667bf13fa236099e433e84 download/configure.diff a71677d80f5cfd1aeb03547dfdeb705a download/httpd-php5.conf.CSW 2206431e47c2075c0b9c4a12de5cf791 download/odbc.diff 230126f76ee6400ccf225bb6a8243532 download/pdopgsql.diff -d4c93751890b989c5a7b04acb5845fd9 download/pear.conf.CSW +04b5f14d8e02b59105e8dad2ead08995 download/pear.conf.CSW 13db46097c9686302bebf160e2d26ed2 download/pgsql.diff 280d6cda7f72a4fc6de42fda21ac2db7 download/php-5.2.9.tar.bz2 a450a46ce0ea9fd0c0abe432e750a873 download/php-bug-45557-fix.diff Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile 2009-05-15 00:19:30 UTC (rev 4859) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile 2009-05-15 03:30:22 UTC (rev 4860) @@ -6,6 +6,8 @@ SPKG_DESC_CSWphp5pdo = A database access abstraction module for PHP applications REQUIRED_PKGS_CSWphp5pdo = CSWphp5 +CONFIGURE_ARGS += --enable-pdo=shared + PKGFILES_CSWphp5pdo = .*/lib/php/extensions/.*/pdo\.so* define CSWphp5pdo_postinstall Modified: csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile 2009-05-15 00:19:30 UTC (rev 4859) +++ csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile 2009-05-15 03:30:22 UTC (rev 4860) @@ -6,7 +6,7 @@ SPKG_DESC_CSWphp5pdosqlite = A Sqlite specific database access abstraction module for PHP applications REQUIRED_PKGS_CSWphp5pdosqlite = CSWphp5 CSWphp5pdo -CONFIGURE_ARGS += --with-pdo-sqlite=shared +CONFIGURE_ARGS += --with-pdo-sqlite=shared,$(prefix) PKGFILES_CSWphp5pdosqlite = .*/lib/php/extensions/.*/pdo_sqlite.* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 15 05:38:55 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 15 May 2009 03:38:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[4861] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4861 http://gar.svn.sourceforge.net/gar/?rev=4861&view=rev Author: valholla Date: 2009-05-15 03:38:55 +0000 (Fri, 15 May 2009) Log Message: ----------- tweak distname Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/Makefile.Orig Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-15 03:30:22 UTC (rev 4860) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-15 03:38:55 UTC (rev 4861) @@ -20,7 +20,7 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 +DISTFILES += $(DISTNAME).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) STRIP_DIRS += $(prefix)/lib/php/extensions/*/ Modified: csw/mgar/pkg/php5/trunk/Makefile.Orig =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.Orig 2009-05-15 03:30:22 UTC (rev 4860) +++ csw/mgar/pkg/php5/trunk/Makefile.Orig 2009-05-15 03:38:55 UTC (rev 4861) @@ -2,6 +2,7 @@ GARVERSION = 5.2.9 CATEGORIES = lang SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') +DISTNAME = $(SF_PROJ)-$(GARVERSION) DESCRIPTION = A high-level scripting language. define BLURB @@ -23,7 +24,7 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES += $(SF_PROJ)-$(GARVERSION).tar.bz2 +DISTFILES += $(DISTNAME).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) PHP5ROOT = $(DESTDIR)$(prefix)/php5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Fri May 15 06:00:11 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Fri, 15 May 2009 04:00:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[4862] csw/mgar/pkg/subversion/trunk Message-ID: Revision: 4862 http://gar.svn.sourceforge.net/gar/?rev=4862&view=rev Author: rthurner Date: 2009-05-15 04:00:10 +0000 (Fri, 15 May 2009) Log Message: ----------- upgrade to svn-1.6.2 Modified Paths: -------------- csw/mgar/pkg/subversion/trunk/Makefile csw/mgar/pkg/subversion/trunk/checksums Modified: csw/mgar/pkg/subversion/trunk/Makefile =================================================================== --- csw/mgar/pkg/subversion/trunk/Makefile 2009-05-15 03:38:55 UTC (rev 4861) +++ csw/mgar/pkg/subversion/trunk/Makefile 2009-05-15 04:00:10 UTC (rev 4862) @@ -1,5 +1,5 @@ GARNAME = subversion -DISTVERSION = 1.6.1 +DISTVERSION = 1.6.2 GARVERSION = $(subst -,,$(DISTVERSION)) CATEGORIES = utils Modified: csw/mgar/pkg/subversion/trunk/checksums =================================================================== --- csw/mgar/pkg/subversion/trunk/checksums 2009-05-15 03:38:55 UTC (rev 4861) +++ csw/mgar/pkg/subversion/trunk/checksums 2009-05-15 04:00:10 UTC (rev 4862) @@ -4,6 +4,6 @@ 41ec540885de7c34625768aa1fb9682b download/fixme.sh f107831ad0c702ff32e51df6a207237b download/httpd-svn.conf.CSW f0aa58c145ae99f8e4d72499ab826169 download/javahl_headers_for_nested_classes.diff -95708b96b920faeffca017f43ec96777 download/subversion-1.6.1.tar.bz2 +ebb1cecd313533ca0876f9bfc86bd5d9 download/subversion-1.6.2.tar.bz2 f7d05c59656dcf01fb844295c9912f78 download/subversion161.diff 1b532d3055708a97771f5cd959983628 download/svn_access.conf.CSW 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 May 15 08:59:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 15 May 2009 06:59:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[4863] csw/mgar/pkg/cswutils/trunk/Makefile Message-ID: Revision: 4863 http://gar.svn.sourceforge.net/gar/?rev=4863&view=rev Author: dmichelsen Date: 2009-05-15 06:59:19 +0000 (Fri, 15 May 2009) Log Message: ----------- cswutils: Add dependencies to needed Perl modules, fixes #2730 Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2009-05-15 04:00:10 UTC (rev 4862) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2009-05-15 06:59:19 UTC (rev 4863) @@ -14,6 +14,7 @@ DISTFILES += stagepkg stagepkg.8 REQUIRED_PKGS = CSWtextutils CSWfakeroot CSWperl +REQUIRED_PKGS += CSWpmyaml CSWpmlibwww CSWpmhtmltree WORKSRC = $(WORKDIR) 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 May 15 11:25:51 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 09:25:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[4864] csw/mgar/pkg/cpan Message-ID: Revision: 4864 http://gar.svn.sourceforge.net/gar/?rev=4864&view=rev Author: skayser Date: 2009-05-15 09:25:50 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/Time-Format: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Time-Format/ csw/mgar/pkg/cpan/Time-Format/branches/ csw/mgar/pkg/cpan/Time-Format/tags/ csw/mgar/pkg/cpan/Time-Format/trunk/ csw/mgar/pkg/cpan/Time-Format/trunk/Makefile csw/mgar/pkg/cpan/Time-Format/trunk/checksums csw/mgar/pkg/cpan/Time-Format/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Time-Format/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/Time-Format/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-Format/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Time-Format/trunk/Makefile 2009-05-15 09:25:50 UTC (rev 4864) @@ -0,0 +1,16 @@ +GARNAME = Time-Format +GARVERSION = 1.09 +CATEGORIES = cpan +AUTHOR = ROODE + +DESCRIPTION = Easy-to-use date/time formatting +define BLURB + Time::Format provides a very easy way to format dates and times. The + formatting functions are tied to hash variables, so they can be used inside + strings as well as in ordinary expressions. The formatting codes used are + meant to be easy to remember, use, and read. +endef + +PACKAGES = CSWpmtimeformat +CATALOGNAME = pm_timeformat +include gar/category.mk Added: csw/mgar/pkg/cpan/Time-Format/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Time-Format/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Time-Format/trunk/checksums 2009-05-15 09:25:50 UTC (rev 4864) @@ -0,0 +1 @@ +c0edfd94d8f4cb814dee7bdf7e9ed61f download/Time-Format-1.09.tar.gz 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 May 15 12:10:22 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 10:10:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[4865] csw/mgar/pkg/cpan/List-MoreUtils/trunk/ Message-ID: Revision: 4865 http://gar.svn.sourceforge.net/gar/?rev=4865&view=rev Author: skayser Date: 2009-05-15 10:10:21 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/List-MoreUtils: switch to mgar v2 Property Changed: ---------------- csw/mgar/pkg/cpan/List-MoreUtils/trunk/ Property changes on: csw/mgar/pkg/cpan/List-MoreUtils/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.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 Fri May 15 12:37:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 15 May 2009 10:37:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[4866] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 4866 http://gar.svn.sourceforge.net/gar/?rev=4866&view=rev Author: dmichelsen Date: 2009-05-15 10:37:46 +0000 (Fri, 15 May 2009) Log Message: ----------- mGAR v2: Add support for CSW classutils Modified Paths: -------------- csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-05-15 10:10:21 UTC (rev 4865) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-05-15 10:37:46 UTC (rev 4866) @@ -116,10 +116,16 @@ # Handle cswclassutils # - prepend cswpreserveconf if it is not already in SPKG_CLASSES -SPKG_CLASSES := $(if $(PRESERVECONF),$(if $(filter cswpreserveconf,$(SPKG_CLASSES)),,cswpreserveconf)) $(SPKG_CLASSES) +SPKG_CLASSES += $(if $(SAMPLECONF),$(if $(filter cswsampleconf,$(SPKG_CLASSES)),,cswsampleconf)) +SPKG_CLASSES += $(if $(PRESERVECONF),$(if $(filter cswpreserveconf,$(SPKG_CLASSES)),,cswpreserveconf)) +SPKG_CLASSES += $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) # - set class for all config files -ifneq ($(PRESERVECONF),) -_CSWCLASS_FILTER = | perl -ane '$(foreach CONF,$(PRESERVECONF),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(CONF)$$) );)print join(" ", at F),"\n";' +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF),) +_CSWCLASS_FILTER = | perl -ane '\ + $(foreach FILE,$(SAMPLECONF),$$F[1] = "cswsampleconf" if ( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(PRESERVECONF),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(INITMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ + print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils endif 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 May 15 13:16:05 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 11:16:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4867] csw/mgar/pkg/cpan/List-MoreUtils/trunk Message-ID: Revision: 4867 http://gar.svn.sourceforge.net/gar/?rev=4867&view=rev Author: skayser Date: 2009-05-15 11:16:05 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/List-MoreUtils: completed switch to mgar v2 Modified Paths: -------------- csw/mgar/pkg/cpan/List-MoreUtils/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.gspec csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.prototype Modified: csw/mgar/pkg/cpan/List-MoreUtils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/List-MoreUtils/trunk/Makefile 2009-05-15 10:37:46 UTC (rev 4866) +++ csw/mgar/pkg/cpan/List-MoreUtils/trunk/Makefile 2009-05-15 11:16:05 UTC (rev 4867) @@ -9,7 +9,11 @@ lists which is not going to go into List::Util. endef -DISTFILES += $(call admfiles,CSWpmlistmoreut,prototype) +PACKAGES = CSWpmlistmoreutils +CATALOGNAME = pm_listmoreutils include gar/category.mk +pre-merge-modulated: + @cd $(WORKSRC) && sed -n '/^Copyright/,$$p' README > COPYING + @$(MAKECOOKIE) Deleted: csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.gspec =================================================================== --- csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.gspec 2009-05-15 10:37:46 UTC (rev 4866) +++ csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.gspec 2009-05-15 11:16:05 UTC (rev 4867) @@ -1,9 +0,0 @@ -%var bitname pm_listmoreut -%var pkgname CSWpmlistmoreut -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 2004-2006 by Tassilo von Parseval - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself, either Perl version 5.8.4 or, -at your option, any later version of Perl 5 you may have available. Deleted: csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.prototype =================================================================== --- csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.prototype 2009-05-15 10:37:46 UTC (rev 4866) +++ csw/mgar/pkg/cpan/List-MoreUtils/trunk/files/CSWpmlistmoreut.prototype 2009-05-15 11:16:05 UTC (rev 4867) @@ -1,15 +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/List 0755 root bin -f none /opt/csw/lib/perl/csw/List/MoreUtils.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/List 0755 root bin -d none /opt/csw/lib/perl/csw/auto/List/MoreUtils 0755 root bin -f none /opt/csw/lib/perl/csw/auto/List/MoreUtils/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/List/MoreUtils/MoreUtils.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/List/MoreUtils/MoreUtils.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/List::MoreUtils.3perl 0444 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 May 15 13:35:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 15 May 2009 11:35:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[4868] csw/mgar/pkg/gar/trunk Message-ID: Revision: 4868 http://gar.svn.sourceforge.net/gar/?rev=4868&view=rev Author: dmichelsen Date: 2009-05-15 11:35:32 +0000 (Fri, 15 May 2009) Log Message: ----------- gar: Use dynamic gspec Modified Paths: -------------- csw/mgar/pkg/gar/trunk/Makefile csw/mgar/pkg/gar/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/gar/trunk/files/CSWgar-v1.gspec csw/mgar/pkg/gar/trunk/files/CSWgar-v2.gspec csw/mgar/pkg/gar/trunk/files/CSWgar.gspec Property Changed: ---------------- csw/mgar/pkg/gar/trunk/ Property changes on: csw/mgar/pkg/gar/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 gar-base https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 gar-base https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar Modified: csw/mgar/pkg/gar/trunk/Makefile =================================================================== --- csw/mgar/pkg/gar/trunk/Makefile 2009-05-15 11:16:05 UTC (rev 4867) +++ csw/mgar/pkg/gar/trunk/Makefile 2009-05-15 11:35:32 UTC (rev 4868) @@ -8,15 +8,14 @@ # No master sites, we already have GAR in the repository MASTER_SITES = -DISTFILES = $(call admfiles,CSWgar,) -DISTFILES += $(call admfiles,CSWgar-v1,) -DISTFILES += $(call admfiles,CSWgar-v2,) -DISTFILES += garit +DISTFILES = garit WORKSRC = $(WORKDIR) SPKG_SOURCEURL = http://gar.sourceforge.net +PACKAGES = CSWgar CSWgar-v1 CSWgar-v2 + SPKG_DESC_CSWgar = The mGAR package build system SPKG_DESC_CSWgar-v1 = The mGAR v1 system files SPKG_DESC_CSWgar-v2 = The mGAR v2 system files @@ -25,10 +24,14 @@ REQUIRED_PKGS_CSWgar-v1 = CSWgar REQUIRED_PKGS_CSWgar-v2 = CSWgar +SPKG_VERSION_CSWgar = $(shell svnversion) +SPKG_VERSION_CSWgar-v1 = $(shell svnversion $(CURDIR)/gar-base/v1) +SPKG_VERSION_CSWgar-v2 = $(shell svnversion $(CURDIR)/gar-base/v2) + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = TEST_SCRIPTS = -INSTALL_SCRIPTS = custom +INSTALL_SCRIPTS = gar PKGFILES_CSWgar-v1 = $(prefix)/src/gar/v1/.* PKGFILES_CSWgar-v2 = $(prefix)/src/gar/v2/.* @@ -38,7 +41,7 @@ include gar/category.mk -install-custom: +install-gar: @echo " ==> Installing $(GARNAME)" rm -f $(DESTIR)$(bindir)/garit Modified: csw/mgar/pkg/gar/trunk/checksums =================================================================== --- csw/mgar/pkg/gar/trunk/checksums 2009-05-15 11:16:05 UTC (rev 4867) +++ csw/mgar/pkg/gar/trunk/checksums 2009-05-15 11:35:32 UTC (rev 4868) @@ -1,4 +1,4 @@ ce15d9d2f3f7c2807b385142097446f6 download/CSWgar.gspec 972eef3a1dd23345e20df9d7b34ccf85 download/CSWgar-v1.gspec 8d0f9e54dfd9dc49147343ab5eef546d download/CSWgar-v2.gspec -3505c7f06c435fd0b34e9addd5b4da2a download/garit +43510d4dec1534ee26db599597b53668 download/garit Deleted: csw/mgar/pkg/gar/trunk/files/CSWgar-v1.gspec =================================================================== --- csw/mgar/pkg/gar/trunk/files/CSWgar-v1.gspec 2009-05-15 11:16:05 UTC (rev 4867) +++ csw/mgar/pkg/gar/trunk/files/CSWgar-v1.gspec 2009-05-15 11:35:32 UTC (rev 4868) @@ -1,5 +0,0 @@ -%var bitname gar_v1 -%var pkgname CSWgar-v1 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -This software is released under GPL. Deleted: csw/mgar/pkg/gar/trunk/files/CSWgar-v2.gspec =================================================================== --- csw/mgar/pkg/gar/trunk/files/CSWgar-v2.gspec 2009-05-15 11:16:05 UTC (rev 4867) +++ csw/mgar/pkg/gar/trunk/files/CSWgar-v2.gspec 2009-05-15 11:35:32 UTC (rev 4868) @@ -1,5 +0,0 @@ -%var bitname gar_v2 -%var pkgname CSWgar-v2 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -This software is released under GPL. Deleted: csw/mgar/pkg/gar/trunk/files/CSWgar.gspec =================================================================== --- csw/mgar/pkg/gar/trunk/files/CSWgar.gspec 2009-05-15 11:16:05 UTC (rev 4867) +++ csw/mgar/pkg/gar/trunk/files/CSWgar.gspec 2009-05-15 11:35:32 UTC (rev 4868) @@ -1,5 +0,0 @@ -%var bitname gar -%var pkgname CSWgar -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -This software is released under GPL. 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 May 15 13:59:36 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 11:59:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[4869] csw/mgar/pkg/cpan Message-ID: Revision: 4869 http://gar.svn.sourceforge.net/gar/?rev=4869&view=rev Author: skayser Date: 2009-05-15 11:59:36 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/DateTime-Locale: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Locale/ csw/mgar/pkg/cpan/DateTime-Locale/branches/ csw/mgar/pkg/cpan/DateTime-Locale/tags/ csw/mgar/pkg/cpan/DateTime-Locale/trunk/ csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Locale/trunk/checksums csw/mgar/pkg/cpan/DateTime-Locale/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Locale/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2009-05-15 11:59:36 UTC (rev 4869) @@ -0,0 +1,19 @@ +GARNAME = DateTime-Locale +GARVERSION = 0.42 +CATEGORIES = cpan +AUTHOR = DROLSKY + +DESCRIPTION = Localization support for DateTime.pm +define BLURB + DateTime::Locale is primarily a factory for the various locale subclasses. + It also provides some functions for getting information on all the available + locales. +endef + +PACKAGES = CSWpmdatetimelocale +CATALOGNAME = pm_datetimelocale + +include gar/category.mk + +LICENSE = LICENSE + Added: csw/mgar/pkg/cpan/DateTime-Locale/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Locale/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Locale/trunk/checksums 2009-05-15 11:59:36 UTC (rev 4869) @@ -0,0 +1 @@ +2f40350ef1c697f1bc402220824f6a7a download/DateTime-Locale-0.42.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 Fri May 15 13:59:46 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 15 May 2009 11:59:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[4870] csw/mgar/pkg/gar/trunk Message-ID: Revision: 4870 http://gar.svn.sourceforge.net/gar/?rev=4870&view=rev Author: dmichelsen Date: 2009-05-15 11:59:46 +0000 (Fri, 15 May 2009) Log Message: ----------- gar: Use regular svn checkout instead special links to make package more regular Modified Paths: -------------- csw/mgar/pkg/gar/trunk/Makefile csw/mgar/pkg/gar/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/gar/trunk/ Property changes on: csw/mgar/pkg/gar/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 gar-base https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/gar/trunk/Makefile =================================================================== --- csw/mgar/pkg/gar/trunk/Makefile 2009-05-15 11:59:36 UTC (rev 4869) +++ csw/mgar/pkg/gar/trunk/Makefile 2009-05-15 11:59:46 UTC (rev 4870) @@ -7,15 +7,23 @@ endef # No master sites, we already have GAR in the repository -MASTER_SITES = -DISTFILES = garit +MASTER_SITES = svn-http://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/ +SVNHTTP_CO_ARGS = --no-auth-cache +DISTFILES = v1 v2 +NOCHECKSUM = v1 v2 +DISTFILES += garit + WORKSRC = $(WORKDIR) -SPKG_SOURCEURL = http://gar.sourceforge.net +SPKG_SOURCEURL = http://gar.opencsw.org PACKAGES = CSWgar CSWgar-v1 CSWgar-v2 +CATALOGNAME_CSWgar = gar +CATALOGNAME_CSWgar-v1 = gar_v1 +CATALOGNAME_CSWgar-v2 = gar_v2 + SPKG_DESC_CSWgar = The mGAR package build system SPKG_DESC_CSWgar-v1 = The mGAR v1 system files SPKG_DESC_CSWgar-v2 = The mGAR v2 system files @@ -25,8 +33,8 @@ REQUIRED_PKGS_CSWgar-v2 = CSWgar SPKG_VERSION_CSWgar = $(shell svnversion) -SPKG_VERSION_CSWgar-v1 = $(shell svnversion $(CURDIR)/gar-base/v1) -SPKG_VERSION_CSWgar-v2 = $(shell svnversion $(CURDIR)/gar-base/v2) +SPKG_VERSION_CSWgar-v1 = $(shell svnversion $(WORKSRC)/v1) +SPKG_VERSION_CSWgar-v2 = $(shell svnversion $(WORKSRC)/v2) CONFIGURE_SCRIPTS = BUILD_SCRIPTS = @@ -48,4 +56,4 @@ ginstall -d $(DESTDIR)$(bindir) ginstall $(WORKSRC)/garit $(DESTDIR)$(bindir)/garit ginstall -d $(DESTDIR)$(prefix)/src/gar - cd $(CURDIR)/gar-base && pax -r -w -v -s ,.*/\.svn.*,, . $(DESTDIR)$(prefix)/src/gar + cd $(WORKSRC) && pax -r -w -v -s ,.*/\.svn.*,, v1 v2 $(DESTDIR)$(prefix)/src/gar Modified: csw/mgar/pkg/gar/trunk/checksums =================================================================== --- csw/mgar/pkg/gar/trunk/checksums 2009-05-15 11:59:36 UTC (rev 4869) +++ csw/mgar/pkg/gar/trunk/checksums 2009-05-15 11:59:46 UTC (rev 4870) @@ -1,4 +1 @@ -ce15d9d2f3f7c2807b385142097446f6 download/CSWgar.gspec -972eef3a1dd23345e20df9d7b34ccf85 download/CSWgar-v1.gspec -8d0f9e54dfd9dc49147343ab5eef546d download/CSWgar-v2.gspec 43510d4dec1534ee26db599597b53668 download/garit 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 May 15 14:23:13 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 12:23:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[4871] csw/mgar/pkg/cpan Message-ID: Revision: 4871 http://gar.svn.sourceforge.net/gar/?rev=4871&view=rev Author: skayser Date: 2009-05-15 12:23:13 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/Class-Singleton: inital commit Added Paths: ----------- csw/mgar/pkg/cpan/Class-Singleton/ csw/mgar/pkg/cpan/Class-Singleton/branches/ csw/mgar/pkg/cpan/Class-Singleton/tags/ csw/mgar/pkg/cpan/Class-Singleton/trunk/ csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile csw/mgar/pkg/cpan/Class-Singleton/trunk/checksums csw/mgar/pkg/cpan/Class-Singleton/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Class-Singleton/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile 2009-05-15 12:23:13 UTC (rev 4871) @@ -0,0 +1,28 @@ +GARNAME = Class-Singleton +GARVERSION = 1.4 +CATEGORIES = cpan +AUTHOR = ABW + +DESCRIPTION = Implementation of a "Singleton" class +define BLURB + This is the Class::Singleton module. A Singleton describes an object + class that can have only one instance in any system. An example of a + Singleton might be a print spooler or system registry. This module + implements a Singleton class from which other classes can be derived. By + itself, the Class::Singleton module does very little other than manage + the instantiation of a single object. In deriving a class from + Class::Singleton, your module will inherit the Singleton instantiation + method and can implement whatever specific functionality is + required. +endef + +PACKAGES = CSWpmclasssingleton +CATALOGNAME = pm_classsingleton + +ARCHALL = 1 + +include gar/category.mk + +pre-merge-modulated: + @cd $(WORKSRC) && sed -n '/^Copyright/,$$p' README > COPYING + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Class-Singleton/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Singleton/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Class-Singleton/trunk/checksums 2009-05-15 12:23:13 UTC (rev 4871) @@ -0,0 +1 @@ +a18b108ab97e2107cbbe816d2b3e2ee3 download/Class-Singleton-1.4.tar.gz 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 May 15 14:32:33 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 12:32:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[4872] csw/mgar/pkg/cpan/Params-Validate/trunk Message-ID: Revision: 4872 http://gar.svn.sourceforge.net/gar/?rev=4872&view=rev Author: skayser Date: 2009-05-15 12:32:33 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/Params-Validate: switched to mgar v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Params-Validate/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/Params-Validate/trunk/files/CSWpmprmsvldt.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Params-Validate/trunk/ Property changes on: csw/mgar/pkg/cpan/Params-Validate/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/cpan/Params-Validate/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Params-Validate/trunk/Makefile 2009-05-15 12:23:13 UTC (rev 4871) +++ csw/mgar/pkg/cpan/Params-Validate/trunk/Makefile 2009-05-15 12:32:33 UTC (rev 4872) @@ -11,6 +11,9 @@ unspecified additional parameters were passed in. endef -DISTFILES += $(call admfiles,CSWpmprmsvldt,) +PACKAGES = CSWpmparamsvalidate +CATALOGNAME = pm_paramsvalidate include gar/category.mk + +LICENSE = LICENSE Deleted: csw/mgar/pkg/cpan/Params-Validate/trunk/files/CSWpmprmsvldt.gspec =================================================================== --- csw/mgar/pkg/cpan/Params-Validate/trunk/files/CSWpmprmsvldt.gspec 2009-05-15 12:23:13 UTC (rev 4871) +++ csw/mgar/pkg/cpan/Params-Validate/trunk/files/CSWpmprmsvldt.gspec 2009-05-15 12:32:33 UTC (rev 4872) @@ -1,4 +0,0 @@ -%var bitname pm_prmsvldt -%var pkgname CSWpmprmsvldt -%include url file://%{PKGLIB}/csw_cpan.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 skayser at users.sourceforge.net Fri May 15 14:34:37 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 12:34:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[4873] csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile Message-ID: Revision: 4873 http://gar.svn.sourceforge.net/gar/?rev=4873&view=rev Author: skayser Date: 2009-05-15 12:34:33 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/DateTime-Locale: updated dependencies Modified Paths: -------------- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile Modified: csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2009-05-15 12:32:33 UTC (rev 4872) +++ csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2009-05-15 12:34:33 UTC (rev 4873) @@ -13,6 +13,8 @@ PACKAGES = CSWpmdatetimelocale CATALOGNAME = pm_datetimelocale +REQUIRED_PKGS = CSWpmlistmoreutils + include gar/category.mk LICENSE = 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 May 15 14:40:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 15 May 2009 12:40:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[4874] csw/mgar/pkg/gar/trunk/Makefile Message-ID: Revision: 4874 http://gar.svn.sourceforge.net/gar/?rev=4874&view=rev Author: dmichelsen Date: 2009-05-15 12:40:05 +0000 (Fri, 15 May 2009) Log Message: ----------- gar: Fix branch versioning Modified Paths: -------------- csw/mgar/pkg/gar/trunk/Makefile Modified: csw/mgar/pkg/gar/trunk/Makefile =================================================================== --- csw/mgar/pkg/gar/trunk/Makefile 2009-05-15 12:34:33 UTC (rev 4873) +++ csw/mgar/pkg/gar/trunk/Makefile 2009-05-15 12:40:05 UTC (rev 4874) @@ -24,18 +24,18 @@ CATALOGNAME_CSWgar-v1 = gar_v1 CATALOGNAME_CSWgar-v2 = gar_v2 +REQUIRED_PKGS_CSWgar = $(PREREQUISITE_BASE_PKGS) CSWsvn +REQUIRED_PKGS_CSWgar-v1 = CSWgar +REQUIRED_PKGS_CSWgar-v2 = CSWgar + SPKG_DESC_CSWgar = The mGAR package build system SPKG_DESC_CSWgar-v1 = The mGAR v1 system files SPKG_DESC_CSWgar-v2 = The mGAR v2 system files -REQUIRED_PKGS_CSWgar = $(PREREQUISITE_BASE_PKGS) CSWsvn -REQUIRED_PKGS_CSWgar-v1 = CSWgar -REQUIRED_PKGS_CSWgar-v2 = CSWgar +SPKG_VERSION_CSWgar = $(call _REVISION) +SPKG_VERSION_CSWgar-v1 = $(shell svnversion $(DOWNLOADDIR)/v1) +SPKG_VERSION_CSWgar-v2 = $(shell svnversion $(DOWNLOADDIR)/v2) -SPKG_VERSION_CSWgar = $(shell svnversion) -SPKG_VERSION_CSWgar-v1 = $(shell svnversion $(WORKSRC)/v1) -SPKG_VERSION_CSWgar-v2 = $(shell svnversion $(WORKSRC)/v2) - CONFIGURE_SCRIPTS = BUILD_SCRIPTS = TEST_SCRIPTS = 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 May 15 14:44:53 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 12:44:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[4875] csw/mgar/pkg/cpan Message-ID: Revision: 4875 http://gar.svn.sourceforge.net/gar/?rev=4875&view=rev Author: skayser Date: 2009-05-15 12:44:49 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/DateTime-TimeZone: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-TimeZone/ csw/mgar/pkg/cpan/DateTime-TimeZone/branches/ csw/mgar/pkg/cpan/DateTime-TimeZone/tags/ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-TimeZone/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile 2009-05-15 12:44:49 UTC (rev 4875) @@ -0,0 +1,24 @@ +GARNAME = DateTime-TimeZone +GARVERSION = 0.90 +CATEGORIES = cpan +AUTHOR = DROLSKY + +DESCRIPTION = Time zone object base class and factory +define BLURB + This class is the base class for all time zone objects. A time zone is + represented internally as a set of observances, each of which describes + the offset from GMT for a given time period. Note that without the + DateTime.pm module, this module does not do much. It's primary interface + is through a DateTime object, and most users will not need to directly + use DateTime::TimeZone methods. +endef + +PACKAGES = CSWpmdatetimetimezone +CATALOGNAME = pm_datetimetimezone + +REQUIRED_PKGS = CSWpmclasssingleton +REQUIRED_PKGS += CSWpmparamsvalidate + +include gar/category.mk + +LICENSE = LICENSE Added: csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums 2009-05-15 12:44:49 UTC (rev 4875) @@ -0,0 +1 @@ +d0efeaf9d52e51b727fbd927e3348e58 download/DateTime-TimeZone-0.90.tar.gz 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 May 15 14:51:11 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 12:51:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[4876] csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile Message-ID: Revision: 4876 http://gar.svn.sourceforge.net/gar/?rev=4876&view=rev Author: skayser Date: 2009-05-15 12:51:11 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/DateTime-TimeZone: ARCHALL = 1 Modified Paths: -------------- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile Modified: csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile 2009-05-15 12:44:49 UTC (rev 4875) +++ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile 2009-05-15 12:51:11 UTC (rev 4876) @@ -15,6 +15,7 @@ PACKAGES = CSWpmdatetimetimezone CATALOGNAME = pm_datetimetimezone +ARCHALL = 1 REQUIRED_PKGS = CSWpmclasssingleton REQUIRED_PKGS += CSWpmparamsvalidate 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 May 15 14:52:39 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 12:52:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[4877] csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile Message-ID: Revision: 4877 http://gar.svn.sourceforge.net/gar/?rev=4877&view=rev Author: skayser Date: 2009-05-15 12:52:39 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/DateTime-Locale: ARCHALL = 1 Modified Paths: -------------- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile Modified: csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2009-05-15 12:51:11 UTC (rev 4876) +++ csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2009-05-15 12:52:39 UTC (rev 4877) @@ -12,6 +12,7 @@ PACKAGES = CSWpmdatetimelocale CATALOGNAME = pm_datetimelocale +ARCHALL = 1 REQUIRED_PKGS = CSWpmlistmoreutils 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 May 15 15:06:44 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 15 May 2009 13:06:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[4878] csw/mgar/pkg/cpan Message-ID: Revision: 4878 http://gar.svn.sourceforge.net/gar/?rev=4878&view=rev Author: skayser Date: 2009-05-15 13:06:43 +0000 (Fri, 15 May 2009) Log Message: ----------- cpan/DateTime: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime/ csw/mgar/pkg/cpan/DateTime/branches/ csw/mgar/pkg/cpan/DateTime/tags/ csw/mgar/pkg/cpan/DateTime/trunk/ csw/mgar/pkg/cpan/DateTime/trunk/Makefile csw/mgar/pkg/cpan/DateTime/trunk/checksums csw/mgar/pkg/cpan/DateTime/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/cpan/DateTime/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime/trunk/Makefile 2009-05-15 13:06:43 UTC (rev 4878) @@ -0,0 +1,23 @@ +GARNAME = DateTime +GARVERSION = 0.50 +CATEGORIES = cpan +AUTHOR = DROLSKY + +DESCRIPTION = A date and time object +define BLURB + DateTime is a class for the representation of date/time combinations, and is + part of the Perl DateTime project. For details on this project please see + http://datetime.perl.org/. The DateTime site has a FAQ which may help answer + many "how do I do X?" questions. The FAQ is at http://datetime.perl.org/?FAQ. +endef + +PACKAGES = CSWpmdatetime +CATALOGNAME = pm_datetime +ARCHALL = 1 + +REQUIRED_PKGS = CSWpmdatetimetimezone +REQUIRED_PKGS += CSWpmdatetimelocale + +include gar/category.mk + +LICENSE = LICENSE Added: csw/mgar/pkg/cpan/DateTime/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime/trunk/checksums 2009-05-15 13:06:43 UTC (rev 4878) @@ -0,0 +1 @@ +d7cf8bdbb3e55dda31f8bbea6cafad2f download/DateTime-0.50.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Fri May 15 16:11:31 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 15 May 2009 14:11:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[4879] csw/mgar/pkg/php5/trunk Message-ID: Revision: 4879 http://gar.svn.sourceforge.net/gar/?rev=4879&view=rev Author: valholla Date: 2009-05-15 14:11:26 +0000 (Fri, 15 May 2009) Log Message: ----------- adminfiles pkgroot independent Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/Makefile.Orig csw/mgar/pkg/php5/trunk/Makefile.default-dirs csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/extensions/php5_bcmath/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_bz2/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_calendar/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ctype/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_curl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_dbase/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_dom/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_exif/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ftp/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_gd/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_gettext/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_gmp/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_hash/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_iconv/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_imap/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_json/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ldap/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mbstring/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mcrypt/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mhash/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mime_magic/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mssql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mysql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_mysqli/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_ncurses/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_odbc/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_openssl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pcntl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdo/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdomysql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdoodbc/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdopgsql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pdosqlite/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pgsql/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_posix/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_pspell/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_readline/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_session/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_shmop/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_simplexml/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_snmp/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_soap/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sockets/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sqlite/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sysvmsg/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sysvsem/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_sysvshm/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_tidy/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_tokenizer/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_wddx/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xml/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xmlreader/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xmlrpc/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xmlwriter/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_xsl/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_zip/Makefile csw/mgar/pkg/php5/trunk/extensions/php5_zlib/Makefile csw/mgar/pkg/php5/trunk/files/CSWphp5.postinstall csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_disable.sh csw/mgar/pkg/php5/trunk/files/CSWphp5_ext_enable.sh csw/mgar/pkg/php5/trunk/files/phpext Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-05-15 13:06:43 UTC (rev 4878) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-05-15 14:11:26 UTC (rev 4879) @@ -20,18 +20,17 @@ MASTER_SITES = http://us.php.net/distributions/ SPKG_SOURCEURL = http://www.php.net/downloads.php -DISTFILES += $(DISTNAME).tar.bz2 INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) -STRIP_DIRS += $(prefix)/lib/php/extensions/*/ +STRIP_DIRS += $(DESTDIR)$(prefix)/lib/php/extensions/*/ -# Auxilliary files +DISTFILES += $(DISTNAME).tar.bz2 DISTFILES += php.ini.CSW phpext pear.conf.CSW DISTFILES += CSWphp5_ext_enable.sh CSWphp5_ext_disable.sh +DISTFILES += CSWphp5.postinstall PACKAGES = CSWphp5 CSWphp5devel CATALOGNAME_CSWphp5 = php5 SPKG_DESC_CSWphp5 = A High-Level Scripting Languages -DISTFILES += CSWphp5.postinstall CATALOGNAME_CSWphp5devel = php5_devel SPKG_DESC_CSWphp5devel = Development files for php5 REQUIRED_PKGS_CSWphp5 = CSWexpat CSWggettextrt CSWiconv @@ -52,22 +51,19 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -# BerkeleyDB EXTRA_LIB += $(prefix)/bdb44/lib EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 - STRIP_LIBTOOL = 1 -CONFIGURE_ARGS = --prefix=$(prefix) +CONFIGURE_ARGS += --prefix=$(prefix) +CONFIGURE_ARGS += --disable-static CONFIGURE_ARGS += --with-exec-dir=$(prefix)/bin -CONFIGURE_ARGS += --disable-static CONFIGURE_ARGS += --enable-cli CONFIGURE_ARGS += --enable-fastcgi CONFIGURE_ARGS += --enable-force-cgi-redirect -CONFIGURE_ARGS += --enable-pcntl=shared CONFIGURE_ARGS += --with-mm=$(prefix) CONFIGURE_ARGS += --enable-magic-quotes CONFIGURE_ARGS += --enable-spl=shared @@ -78,15 +74,10 @@ SKIPTEST = 1 ENABLE_CHECK = 0 -# Rebuild Configure Args to build mod_php5 -NEW_CONFIGURE_ARGS = $(shell echo $(CONFIGURE_ARGS) |sed -e 's/apxs2/apxs/' \ - -e 's/apache2\/sbin\/apxs/apache\/bin\/apxs/') - -# Copy over template config files and utility scripts - PI_SCRIPTS = install-extras PI_SCRIPTS += install-ap2modphp5 PI_SCRIPTS += install-modphp5 +PI_SCRIPTS += install-cleanup post-install-modulated: $(PI_SCRIPTS) @$(MAKECOOKIE) @@ -100,40 +91,49 @@ ginstall -d $(DESTDIR)$(prefix)/apache2/etc/extra ginstall -m 0644 $(WORKDIR)/httpd-php5.conf.CSW \ $(DESTDIR)$(prefix)/apache2/etc/extra - #@(grm -fr $(DESTDIR)/.[a-z]*) - @(gfind $(DESTDIR)/$(libdir) -name "*.a" -exec grm {} \;) - @(grm -f $(DESTDIR)$(sysconfdir)/pear.conf) @$(MAKECOOKIE) install-ap2modphp5: - @( echo " ==> Now Building ap2_modphp5 <==" ) - @( if [ -f $(WORKSRC)/Makefile ]; then \ - $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi ) - @( cd $(WORKSRC) && $(BUILD_ENV) \ - ./configure $(CONFIGURE_ARGS) --with-apxs2=$(prefix)/apache2/sbin/apxs) - @( $(GARBIN)/fixlibtool $(WORKSRC) ) - @( $(BUILD_ENV) $(INSTALL_ENV) gmake -C $(WORKSRC) install-sapi ) - @( strip $(DESTDIR)$(prefix)/apache2/libexec/libphp5.so ) - @( gfind $(DESTDIR)$(prefix)/apache* \ - -mindepth 1 -type d | egrep -v "etc|libexec" | xargs grm -fr ) + @echo " ==> Now Building ap2_modphp5 <==" + @if [ -f $(WORKSRC)/Makefile ]; then \ + $(BUILD_ENV) gmake -C $(WORKSRC) distclean; fi + cd $(W