From valholla at users.sourceforge.net Sat Aug 1 00:00:12 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 31 Jul 2009 22:00:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5792] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5792 http://gar.svn.sourceforge.net/gar/?rev=5792&view=rev Author: valholla Date: 2009-07-31 22:00:12 +0000 (Fri, 31 Jul 2009) Log Message: ----------- tweak class Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/i.cswosrel Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-07-31 21:49:52 UTC (rev 5791) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-07-31 22:00:12 UTC (rev 5792) @@ -7,7 +7,7 @@ 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW 2592f7d191867c1d1c63ff16d818dcb5 download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW -7dc344aba21959d231c158c30b9c0c96 download/i.cswosrel +6e6f156034cac51c706c1b1484155d8a download/i.cswosrel d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz Modified: csw/mgar/pkg/sendmail/trunk/files/i.cswosrel =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-07-31 21:49:52 UTC (rev 5791) +++ csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-07-31 22:00:12 UTC (rev 5792) @@ -8,7 +8,7 @@ while read src dest do - FILEOSREL="`echo ${dest} |sed 's/.*\(sol[0-9]*\).*//'`" + FILEOSREL="`echo ${dest} |sed 's/.*\(sol[0-9]*\).*/\1/'`" if [ "_x${MYOSREL}x_" = "_x${FILEOSREL}x_" ]; then # Keep pkgadd happy by copying the file as defined /usr/bin/cp $src $dest || exit 2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 1 09:57:02 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 01 Aug 2009 07:57:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[5793] csw/mgar/pkg/sendmail/branches/mwatters/ Message-ID: Revision: 5793 http://gar.svn.sourceforge.net/gar/?rev=5793&view=rev Author: wahwah Date: 2009-08-01 07:56:59 +0000 (Sat, 01 Aug 2009) Log Message: ----------- sendmail: branches/mwatters, setting svn:externals to match the SSL cert Property Changed: ---------------- csw/mgar/pkg/sendmail/branches/mwatters/ Property changes on: csw/mgar/pkg/sendmail/branches/mwatters ___________________________________________________________________ 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 wahwah at users.sourceforge.net Sat Aug 1 10:41:20 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 01 Aug 2009 08:41:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5794] csw/mgar/pkg/template/trunk/Makefile Message-ID: Revision: 5794 http://gar.svn.sourceforge.net/gar/?rev=5794&view=rev Author: wahwah Date: 2009-08-01 08:41:19 +0000 (Sat, 01 Aug 2009) Log Message: ----------- template: Added comments with common settings, based on http://sourceforge.net/apps/trac/gar/wiki/Building%20for%20multiple%20ISAs Modified Paths: -------------- csw/mgar/pkg/template/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/template/trunk/Makefile Modified: csw/mgar/pkg/template/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-01 07:56:59 UTC (rev 5793) +++ csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:41:19 UTC (rev 5794) @@ -1,24 +1,156 @@ # Copyright 2009 OpenCSW # Distributed under the terms of the GNU General Public License v2 -# $Id$ +# $Header$ +## This file contains comments to guide you through various GAR settings. +## Please remove unnecessary comments before committing your code to the code +## repository. The comments to remove are marked with double hashes. +## +## For more information, please see: +## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference + GARNAME = mypkg GARVERSION = 1.0 + +## The category that your software fits in. This is not a descriptive field, but +## influences the build process. Depending on the CATEGORIES setting, different +## Makefiles are included from gar/categories/ in your trunk directory, which +## adjust the build settings for the respective category. +## +## Possible settings are: +## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, +## xfce, xorg, xtra CATEGORIES = lib -DESCRIPTION = This is a useful library +## A one-line description of the package, which will appear in the pkginfo. +DESCRIPTION = + +## A longer description of the package. This is only for descriptive purposes +## inside the Makefile and is not used elsewhere. define BLURB - It does stuff with things + endef +## Whitespace-separated list of URLs to download the source package from. +## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). MASTER_SITES = + +## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the +## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge +## project name of the software you wish to download. +# SF_PROJ = + +# A list of space separated patch filenames from files/ that are to be applied +# to the extracted software before the ./configure stage. Patches need to be +# included in the DISTFILES variable as well. +# PATCHFILES = + +## Whitespace-separated list of files which comprise this build. mGAR will look +## for the files in the $(FILEDIR) (trunk/files) directory and on the +## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -# We define upstream file regex so we can be notifed of new upstream software release +## Set to 1 to mark the package as architecture-independent. +# ARCHALL = 0 + +## A list of files / patterns that should be excluded from the package. Amends +## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which +## contains things like libtool .la files and files with a leading ~. +# EXTRA_MERGE_EXCLUDE_FILES = + +## A list of space separated package names that should be marked as +## incompatible with the current package. This will go into the depend file. +## When a user has one of the incompatible packages installed and installs +## your package, he will be prompted that the incompatible package must be +## removed. He will however not be prevented to install your package without +## removing the conflicting package first. +# INCOMPATIBLE_PKGS = + +# The name of the license file that should be included in your package. Defaults +# to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details +# on including and displaying licenses. +# LICENSE = + +## A list of space separated package names that should be produced from your +## Makefile. This is used when a software has different components that can be +## packaged and used individually (think runtime libraries, client tools, server +## files, development headers). You don't need to set this when you just want to +## produce one package. +## +## When you set this variable to include more than one package, you also need to +## set PKGFILES_CSWpkgname for each package (except for the first one in your +## $(PACKAGES) list) to define which files go into each package. The first +## package from $(PACKAGES) one will hold all files that are not matched by +## PKGFILES_ for other packages. +# PACKAGES = + +## If specified, GAR feeds the almost-final package prototype file to +## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. +## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used +## to prepare the prototype file for use with cswclassutils (see +## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, +## you will rarely have to use this. A still valid use case would be to change +## the file permissions of a file to be set-UID. +## See http://wiki.opencsw.org/cswclassutils-package for common usage information +# PROTOTYPE_FILTER = + +## A list of runtime package dependencies in the form of CSWfoo. +# REQUIRED_PKGS = + +## When using non-empty $(PACKAGES): +# REQUIRED_PKGS_CSWpkgname = +# SPKG_DESC_CSWpkgname = +# PKGFILES_CSWpkgname = + +## Upstream URL that should show up in the VENDOR field as well as on +## http://opencsw.org/packages/. +# SPKG_SOURCEURL = + +## A list of space separated directories where objects should be stripped in +## addition to the bin/ and sbin/ directories. +# STRIP_DIRS = + +## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +## Define a custom target for the configure phase. When you set this, the target +## that will be used instead of configure: target, is named +## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile +## after including gar/gar.include.mk. If you want to skip the configure phase +## completely (for example when your software doesn't need to be compiled) assign +## this variable an empty value. The procedure works for configure, build, +## install and test steps. +# CONFIGURE_SCRIPTS = +# BUILD_SCRIPTS = +# INSTALL_SCRIPTS = +# TEST_SCRIPTS = + +## Compilation settings + +## The build directory. +# WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) + +## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this +## for example, if you need to override Makefile variables. +# BUILD_ARGS = + +## Arguments passed to the ./configure script. CONFIGURE_ARGS = $(DIRPATHS) +# BUILD64 = +# CONFIGURE_ENV = +# EXTRA_CFLAGS = +# EXTRA_LDFLAGS = +# EXTRA_INC = +# EXTRA_LIB = +# GARFLAVOR = +# INSTALL_ARGS = +# OPT_FLAGS_SOS = -xO3 +# OPT_FLAGS_GCC = -O2 -pipe + +## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. +# GARCOMPILER = SOS11 + # Remove the following rules and uncomment the # include before building. all: .DEFAULT Property changes on: csw/mgar/pkg/template/trunk/Makefile ___________________________________________________________________ Modified: svn:keywords - Id + Header This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 1 10:56:44 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 01 Aug 2009 08:56:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5795] csw/mgar/pkg/template/trunk/Makefile Message-ID: Revision: 5795 http://gar.svn.sourceforge.net/gar/?rev=5795&view=rev Author: wahwah Date: 2009-08-01 08:56:44 +0000 (Sat, 01 Aug 2009) Log Message: ----------- template: Subversion doesn't support the 'Header' keyword, changing to 'Id' Modified Paths: -------------- csw/mgar/pkg/template/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/template/trunk/Makefile Modified: csw/mgar/pkg/template/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:41:19 UTC (rev 5794) +++ csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:56:44 UTC (rev 5795) @@ -1,6 +1,6 @@ # Copyright 2009 OpenCSW # Distributed under the terms of the GNU General Public License v2 -# $Header$ +# $Id$ ## This file contains comments to guide you through various GAR settings. ## Please remove unnecessary comments before committing your code to the code Property changes on: csw/mgar/pkg/template/trunk/Makefile ___________________________________________________________________ Modified: svn:keywords - Header + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Aug 1 14:49:48 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 01 Aug 2009 12:49:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5796] csw/mgar/gar/v2 Message-ID: Revision: 5796 http://gar.svn.sourceforge.net/gar/?rev=5796&view=rev Author: bdwalton Date: 2009-08-01 12:49:48 +0000 (Sat, 01 Aug 2009) Log Message: ----------- GAR: Add COMPILE_ELISP to allow for automatic handling of .elc compilation Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk csw/mgar/gar/v2/gar.lib.mk csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/gar/v2/gar.conf.mk 2009-08-01 12:49:48 UTC (rev 5796) @@ -31,6 +31,8 @@ MANIFEST_FILE ?= manifest LOGDIR ?= log +ELISP_DIRS ?= $(datadir)/emacs/site-lisp $(EXTRA_ELISP_DIRS) + GIT_PROXY_SCRIPT ?= $(abspath $(GARBIN))/gitproxy GIT_DEFAULT_TRACK = +refs/heads/master:refs/remotes/origin/master Modified: csw/mgar/gar/v2/gar.lib.mk =================================================================== --- csw/mgar/gar/v2/gar.lib.mk 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-01 12:49:48 UTC (rev 5796) @@ -730,6 +730,19 @@ gfind $(DESTDIR) -type f -iname *.[1-8] -size +2 -print | \ gxargs -r gzip --force +compile-elisp: + @(for d in $(ELISP_DIRS); do \ + echo " ===> Compiling .el files in $$d"; \ + cd $(PKGROOT)/$$d; \ + for f in `find . -name "*el"`; do \ + bf=`basename $$f`; \ + bd=`dirname $$f`; \ + cd $$bd; \ + emacs -L $(PKGROOT)/$$d -L $(PKGROOT)/$$d/$$bd $(EXTRA_EMACS_ARGS) -batch -f batch-byte-compile "$$bf"; \ + cd $(PKGROOT)/$$d; \ + done; \ + done) + include $(addprefix $(GARDIR)/,$(EXTRA_LIBS)) # Mmm, yesssss. cookies my preciousssss! Mmm, yes downloads it Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/gar/v2/gar.mk 2009-08-01 12:49:48 UTC (rev 5796) @@ -598,7 +598,7 @@ _PAX_ARGS = $(_INC_EXT_RULE) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) # The basic merge merges the compiles for all ISAs on the current architecture -merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(NOSOURCEPACKAGE),,merge-src) post-merge +merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(COMPILE_ELISP),compile-elisp) $(if $(NOSOURCEPACKAGE),,merge-src) post-merge @$(DONADA) # This merges the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 1 15:13:47 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 01 Aug 2009 13:13:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5797] csw/mgar/pkg/mod_wsgi/trunk/Makefile Message-ID: Revision: 5797 http://gar.svn.sourceforge.net/gar/?rev=5797&view=rev Author: rthurner Date: 2009-08-01 13:13:47 +0000 (Sat, 01 Aug 2009) Log Message: ----------- ap2_modwsgi - only depend on python runtime Modified Paths: -------------- csw/mgar/pkg/mod_wsgi/trunk/Makefile Modified: csw/mgar/pkg/mod_wsgi/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_wsgi/trunk/Makefile 2009-08-01 12:49:48 UTC (rev 5796) +++ csw/mgar/pkg/mod_wsgi/trunk/Makefile 2009-08-01 13:13:47 UTC (rev 5797) @@ -13,7 +13,7 @@ PACKAGES = CSWap2modwsgi -REQUIRED_PKGS_CSWap2modwsgi = CSWap2prefork CSWpython +REQUIRED_PKGS_CSWap2modwsgi = CSWap2prefork CSWpython-rt CATALOGNAME_CSWap2modwsgi = ap2_modwsgi SPKG_DESC_CSWap2modwsgi = an Apache/Python WSGI adapter module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 1 15:23:59 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 01 Aug 2009 13:23:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5798] csw/mgar/pkg/mod_wsgi/trunk/ Message-ID: Revision: 5798 http://gar.svn.sourceforge.net/gar/?rev=5798&view=rev Author: rthurner Date: 2009-08-01 13:23:59 +0000 (Sat, 01 Aug 2009) Log Message: ----------- mod_wsgi: set to gar v2 parallel build Property Changed: ---------------- csw/mgar/pkg/mod_wsgi/trunk/ Property changes on: csw/mgar/pkg/mod_wsgi/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2-pbuild This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Aug 1 17:42:58 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 01 Aug 2009 15:42:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5799] csw/mgar/pkg/phpmode/tags/release-1.5.0, REV=2009.07. 28/ Message-ID: Revision: 5799 http://gar.svn.sourceforge.net/gar/?rev=5799&view=rev Author: bdwalton Date: 2009-08-01 15:42:58 +0000 (Sat, 01 Aug 2009) Log Message: ----------- Tagging the release code for 1.5.0,REVER=2009.07.28 Added Paths: ----------- csw/mgar/pkg/phpmode/tags/release-1.5.0,REV=2009.07.28/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Aug 1 17:43:44 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 01 Aug 2009 15:43:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5800] csw/mgar/pkg/phpmode/trunk/Makefile Message-ID: Revision: 5800 http://gar.svn.sourceforge.net/gar/?rev=5800&view=rev Author: bdwalton Date: 2009-08-01 15:43:44 +0000 (Sat, 01 Aug 2009) Log Message: ----------- php_mode: take advantage of COMPILE_ELISP Modified Paths: -------------- csw/mgar/pkg/phpmode/trunk/Makefile Modified: csw/mgar/pkg/phpmode/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpmode/trunk/Makefile 2009-08-01 15:42:58 UTC (rev 5799) +++ csw/mgar/pkg/phpmode/trunk/Makefile 2009-08-01 15:43:44 UTC (rev 5800) @@ -37,6 +37,8 @@ INSTALL_SCRIPTS = TEST_SCRIPTS = +COMPILE_ELISP = 1 + include gar/category.mk LISPDIR = $(datadir)/emacs/site-lisp @@ -49,9 +51,8 @@ post-install-modulated: @echo "Installing required files..." - ( gmkdir -p $(DESTDIR)/$(LISPDIR) $(DESTDIR)/$(INFODIR); \ - emacs -batch -f batch-byte-compile $(WORKSRC)/php-mode.el; \ - cp $(WORKSRC)/php-mode.el* $(DESTDIR)$(LISPDIR); \ + @( gmkdir -p $(DESTDIR)/$(LISPDIR) $(DESTDIR)/$(INFODIR); \ + cp $(WORKSRC)/php-mode.el $(DESTDIR)$(LISPDIR); \ chmod -x $(DESTDIR)$(LISPDIR)/*; \ cp $(WORKSRC)/*info $(DESTDIR)/$(INFODIR) ) - @$(MAKECOOKIE) \ No newline at end of file + @$(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 Sat Aug 1 20:18:42 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 18:18:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5801] csw/mgar/pkg/php5/trunk Message-ID: Revision: 5801 http://gar.svn.sourceforge.net/gar/?rev=5801&view=rev Author: valholla Date: 2009-08-01 18:18:42 +0000 (Sat, 01 Aug 2009) Log Message: ----------- fix for db47 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/Makefile.cswdir csw/mgar/pkg/php5/trunk/Makefile.php5dir csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile csw/mgar/pkg/php5/trunk/files/configure.diff Added Paths: ----------- csw/mgar/pkg/php5/trunk/files/pear.conf.CSW Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 18:18:42 UTC (rev 5801) @@ -1,5 +1,5 @@ GARNAME = php5 -GARVERSION = 5.2.9 +GARVERSION = 5.2.10 CATEGORIES = lang SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') DISTNAME = $(SF_PROJ)-$(GARVERSION) @@ -19,11 +19,12 @@ endef MASTER_SITES = http://us.php.net/distributions/ -SPKG_SOURCEURL = http://www.php.net/downloads.php +SPKG_SOURCEURL = http://www.php.net/ INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) +STRIP_DIRS += $(shell $(call _get_php_prefix,$(DESTDIR))/bin/php-config --extension-dir)/*/ DISTFILES += $(DISTNAME).tar.bz2 -DISTFILES += php.ini.CSW phpext CSWphp5.postinstall +DISTFILES += php.ini.CSW phpext pear.conf.CSW CSWphp5.postinstall PACKAGES = CSWphp5 CSWphp5devel @@ -61,8 +62,6 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 Modified: csw/mgar/pkg/php5/trunk/Makefile.cswdir =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.cswdir 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/Makefile.cswdir 2009-08-01 18:18:42 UTC (rev 5801) @@ -19,7 +19,7 @@ endef MASTER_SITES = http://us.php.net/distributions/ -SPKG_SOURCEURL = http://www.php.net/downloads.php +SPKG_SOURCEURL = http://www.php.net/ INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) STRIP_DIRS += $(shell $(call _get_php_prefix,$(DESTDIR))/bin/php-config --extension-dir)/*/ @@ -62,8 +62,6 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 Modified: csw/mgar/pkg/php5/trunk/Makefile.php5dir =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.php5dir 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/Makefile.php5dir 2009-08-01 18:18:42 UTC (rev 5801) @@ -19,7 +19,7 @@ endef MASTER_SITES = http://us.php.net/distributions/ -SPKG_SOURCEURL = http://www.php.net/downloads.php +SPKG_SOURCEURL = http://www.php.net/ INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) STRIP_DIRS += $(shell $(call _get_php_prefix,$(DESTDIR))/bin/php-config --extension-dir)/*/ @@ -62,8 +62,6 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/checksums 2009-08-01 18:18:42 UTC (rev 5801) @@ -5,12 +5,13 @@ 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space 98c6458b20eca91982b67c80a0554586 download/CSWphp5.postinstall -ab08e2ba62667bf13fa236099e433e84 download/configure.diff +91060cc7c31aa917d88cd537d3d5bb42 download/configure.diff a71677d80f5cfd1aeb03547dfdeb705a download/httpd-php5.conf.CSW 2206431e47c2075c0b9c4a12de5cf791 download/odbc.diff 230126f76ee6400ccf225bb6a8243532 download/pdopgsql.diff +d4c93751890b989c5a7b04acb5845fd9 download/pear.conf.CSW 13db46097c9686302bebf160e2d26ed2 download/pgsql.diff -280d6cda7f72a4fc6de42fda21ac2db7 download/php-5.2.9.tar.bz2 +15c7b5a87f57332d6fc683528e28247b download/php-5.2.10.tar.bz2 a450a46ce0ea9fd0c0abe432e750a873 download/php-bug-45557-fix.diff 670b8fbf4cf9105d72f22dbf4b1e29cd download/php.ini.CSW 6251f3adcefc6ffa61d6339ac6b2d1eb download/phpext Modified: csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile 2009-08-01 18:18:42 UTC (rev 5801) @@ -4,12 +4,12 @@ CATALOGNAME_CSWphp5dba = php5_dba SPKG_DESC_CSWphp5dba = dba Extention for PHP5 -REQUIRED_PKGS_CSWphp5dba = CSWphp5 CSWbdb44 CSWgdbm +REQUIRED_PKGS_CSWphp5dba = CSWphp5 CSWbdb CSWgdbm CONFIGURE_ARGS += --enable-dba=shared CONFIGURE_ARGS += --with-ndbm CONFIGURE_ARGS += --with-gdbm=$(prefix) -CONFIGURE_ARGS += --with-db4=$(prefix)/bdb44 +CONFIGURE_ARGS += --with-db4=$(prefix) PKGFILES_CSWphp5dba = .*/lib/php/extensions/.*/dba\.so Modified: csw/mgar/pkg/php5/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/php5/trunk/files/configure.diff 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/files/configure.diff 2009-08-01 18:18:42 UTC (rev 5801) @@ -1,6 +1,6 @@ ---- php-5.2.9/configure~ 2009-02-25 09:39:40.000000000 -0600 -+++ php-5.2.9/configure 2009-03-13 20:43:49.996093631 -0500 -@@ -4744,7 +4744,7 @@ +--- php-5.2.10/configure.o 2009-06-23 13:56:57.118204433 -0500 ++++ php-5.2.10/configure 2009-06-23 14:01:59.104988013 -0500 +@@ -4776,7 +4776,7 @@ $APXS -q -S CFLAGS="$APXS_CFLAGS" CFLAGS >/dev/null 2>&1 if test "$?" != "0"; then @@ -9,7 +9,7 @@ else APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` if test -z `$APXS -q SYSCONFDIR`; then -@@ -4757,7 +4757,7 @@ +@@ -4789,7 +4789,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -18,7 +18,7 @@ fi fi -@@ -5905,7 +5905,7 @@ +@@ -5937,7 +5937,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -27,7 +27,7 @@ fi case $host_alias in -@@ -6753,7 +6753,7 @@ +@@ -6785,7 +6785,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -36,7 +36,7 @@ fi case $host_alias in -@@ -7770,7 +7770,7 @@ +@@ -7802,7 +7802,7 @@ $APXS -q -S CFLAGS="$APXS_CFLAGS" CFLAGS >/dev/null 2>&1 if test "$?" != "0"; then @@ -45,7 +45,7 @@ else APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` if test -z `$APXS -q SYSCONFDIR`; then -@@ -7783,7 +7783,7 @@ +@@ -7815,7 +7815,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -54,26 +54,8 @@ fi fi -@@ -19951,7 +19951,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 -@@ -46061,7 +46061,7 @@ +@@ -46657,7 +46657,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 -@@ -46542,7 +46542,7 @@ - if test "$iconv_avail" != "no"; then if test -z "$ICONV_DIR"; then - for i in /usr/local /usr; do @@ -81,18 +63,18 @@ if test -f "$i/include/iconv.h" || test -f "$i/include/giconv.h"; then PHP_ICONV_PREFIX="$i" break -@@ -68556,7 +68556,7 @@ +@@ -68725,7 +68725,7 @@ echo $ac_n "checking for unixODBC support""... $ac_c" 1>&6 - echo "configure:68558: checking for unixODBC support" >&5 + echo "configure:68727: 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 -@@ -77195,8 +77195,8 @@ +@@ -77388,8 +77388,8 @@ echo $ac_n "checking for pg_config""... $ac_c" 1>&6 - echo "configure:77197: checking for pg_config" >&5 + echo "configure:77390: 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" @@ -101,9 +83,9 @@ break; fi done -@@ -80000,8 +80000,8 @@ +@@ -80202,8 +80202,8 @@ echo $ac_n "checking for pg_config""... $ac_c" 1>&6 - echo "configure:80002: checking for pg_config" >&5 + echo "configure:80204: 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" @@ -112,19 +94,19 @@ break; fi done -@@ -83215,7 +83215,7 @@ +@@ -83426,7 +83426,7 @@ echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" -LIBS="-lreadline $LIBS" -+LIBS="-lreadline -lcurses $LIBS" ++LIBS="-lreadline -lcurses $LIBS" cat > conftest.$ac_ext <&6 - echo "configure:103443: checking for XMLRPC-EPI in default path" >&5 + echo "configure:103478: 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 Added: csw/mgar/pkg/php5/trunk/files/pear.conf.CSW =================================================================== --- csw/mgar/pkg/php5/trunk/files/pear.conf.CSW (rev 0) +++ csw/mgar/pkg/php5/trunk/files/pear.conf.CSW 2009-08-01 18:18:42 UTC (rev 5801) @@ -0,0 +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 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 Aug 1 21:30:58 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 19:30:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5802] csw/mgar/pkg/php5/trunk/Makefile Message-ID: Revision: 5802 http://gar.svn.sourceforge.net/gar/?rev=5802&view=rev Author: valholla Date: 2009-08-01 19:30:55 +0000 (Sat, 01 Aug 2009) Log Message: ----------- fix depends Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 18:18:42 UTC (rev 5801) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 19:30:55 UTC (rev 5802) @@ -32,8 +32,9 @@ SPKG_DESC_CSWphp5 = A High-Level Scripting Languages 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_CSWphp5 = CSWexpat CSWggettextrt CSWiconv CSWpng CSWsqlite +REQUIRED_PKGS_CSWphp5 += CSWlibxml2 CSWzlib CSWmysql5rt CSWxpm CSWt1lib +REQUIRED_PKGS_CSWphp5 += CSWftype2 CSWgd CSWjpeg CSWlibmm REQUIRED_PKGS_CSWphp5devel = CSWphp5 PKGFILES_CSWphp5devel = $(bindir)/php-config 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 Aug 1 22:36:19 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 20:36:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5803] csw/mgar/pkg/subversion/trunk/Makefile Message-ID: Revision: 5803 http://gar.svn.sourceforge.net/gar/?rev=5803&view=rev Author: valholla Date: 2009-08-01 20:36:19 +0000 (Sat, 01 Aug 2009) Log Message: ----------- fix last part of bug 3792 libsvn_ra_dav-1.so.0 missing Modified Paths: -------------- csw/mgar/pkg/subversion/trunk/Makefile Modified: csw/mgar/pkg/subversion/trunk/Makefile =================================================================== --- csw/mgar/pkg/subversion/trunk/Makefile 2009-08-01 19:30:55 UTC (rev 5802) +++ csw/mgar/pkg/subversion/trunk/Makefile 2009-08-01 20:36:19 UTC (rev 5803) @@ -21,10 +21,8 @@ # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -EXTRA_LIB = $(prefix)/bdb44/lib $(SVNLIB) -EXTRA_LIB += $(prefix)/apache2/lib -EXTRA_INC = $(prefix)/bdb44/include -EXTRA_INC += $(prefix)/apache2/include +EXTRA_LIB = $(SVNLIB) $(prefix)/apache2/lib +EXTRA_INC = $(prefix)/apache2/include WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) @@ -34,7 +32,7 @@ SPKG_DESC_CSWsvn = Version control rethought CATALOGNAME_CSWsvn = subversion -REQUIRED_PKGS_CSWsvn = CSWapache2rt CSWbdb44 CSWexpat CSWggettextrt +REQUIRED_PKGS_CSWsvn = CSWapache2rt CSWbdb CSWexpat CSWggettextrt REQUIRED_PKGS_CSWsvn += CSWiconv CSWkrb5lib CSWlibnet CSWneon CSWoldaprt REQUIRED_PKGS_CSWsvn += CSWosslrt CSWsasl CSWzlib CSWsqlite3rt SPKG_DESC_CSWsvn-devel = Subversion Development Support @@ -46,19 +44,19 @@ SPKG_DESC_CSWjavasvn = Subversion Java Language Binding CATALOGNAME_CSWjavasvn = javasvn REQUIRED_PKGS_CSWjavasvn = CSWsvn CSWapache2rt CSWneon CSWoldaprt -REQUIRED_PKGS_CSWjavasvn += CSWbdb44 CSWexpat CSWggettextrt CSWiconv +REQUIRED_PKGS_CSWjavasvn += CSWbdb CSWexpat CSWggettextrt CSWiconv SPKG_DESC_CSWpmsvn = Subversion Perl Language Binding CATALOGNAME_CSWpmsvn = pm_subversion -REQUIRED_PKGS_CSWpmsvn = CSWsvn CSWperl CSWapache2rt CSWbdb44 CSWexpat +REQUIRED_PKGS_CSWpmsvn = CSWsvn CSWperl CSWapache2rt CSWbdb CSWexpat REQUIRED_PKGS_CSWpmsvn += CSWggettextrt CSWiconv CSWoldaprt SPKG_DESC_CSWpysvn = Subversion Python Language Binding CATALOGNAME_CSWpysvn = pysvn -REQUIRED_PKGS_CSWpysvn = CSWsvn CSWpython CSWapache2rt CSWbdb44 CSWexpat +REQUIRED_PKGS_CSWpysvn = CSWsvn CSWpython CSWapache2rt CSWbdb CSWexpat REQUIRED_PKGS_CSWpysvn += CSWggettextrt CSWiconv CSWoldaprt SPKG_DESC_CSWrbsvn = Subversion Ruby Language Binding CATALOGNAME_CSWrbsvn = rbsvn REQUIRED_PKGS_CSWrbsvn = CSWsvn CSWruby CSWiconv CSWoldaprt -REQUIRED_PKGS_CSWrbsvn += CSWapache2rt CSWbdb44 CSWexpat CSWggettextrt +REQUIRED_PKGS_CSWrbsvn += CSWapache2rt CSWbdb CSWexpat CSWggettextrt PKGFILES_CSWsvn-devel = $(PKGFILES_DEVEL) PKGFILES_CSWap2svn = $(prefix)/apache2.* @@ -91,7 +89,7 @@ NOISALIST = 1 LDFLAGS = -R/opt/csw/lib -L/opt/csw/lib -R/opt/csw/apache2/lib -LDFLAGS += -L/opt/csw/apache2/lib -L$(SVNLIB) -lintl -liconv +LDFLAGS += -L/opt/csw/apache2/lib -L$(SVNLIB) -lintl -liconv export LDFLAGS EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc @@ -102,6 +100,7 @@ CONFIGURE_ARGS = $(DIRPATHS) --libdir=$(SVNLIB) --libexecdir=$(SVNLIB) CONFIGURE_ARGS += --disable-mod-activation CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --with-berkeley-db=db.h:/opt/csw/include:/opt/csw/lib:db-4.7 CONFIGURE_ARGS += --enable-javahl CONFIGURE_ARGS += --with-apr=$(prefix)/apache2/bin/apr-config CONFIGURE_ARGS += --with-apr-util=$(prefix)/apache2/bin/apu-config @@ -124,6 +123,7 @@ BINDING_TARGETS = $(foreach LANG,$(BINDING_LANGS),svn-$(LANG)) PI_DEPENDS = install-extras +PI_DEPENDS += fix-ra_dav PI_DEPENDS += $(BINDING_TARGETS) PI_DEPENDS += copy-templates PI_DEPENDS += fix-install @@ -166,6 +166,16 @@ $(DESTDIR)$(prefix)/apache2/etc $(MAKECOOKIE) +fix-ra_dav: + @# libsvn_ra_dav-1* has been renamed to libsvn_ra_neon-1* + @# in the new versions of subversion, + @# we need to link for backward compatability + @(gln -s $(DESTDIR)$(libdir)/libsvn_ra_neon-1.so.0.0.0 \ + $(DESTDIR)$(libdir)/libsvn_ra_dav-1.so.0) + @(gln -s $(DESTDIR)$(libdir)/libsvn_ra_neon-1.so.0.0.0 \ + $(DESTDIR)$(libdir)/libsvn_ra_dav-1.so) + @$(MAKECOOKIE) + install-extras: @(ginstall -d $(DESTDIR)$(docdir)/subversion/tools) @(ginstall -d $(DESTDIR)$(docdir)/subversion/contrib) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 1 23:10:10 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 01 Aug 2009 21:10:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5804] csw/mgar/pkg/mercurial/trunk Message-ID: Revision: 5804 http://gar.svn.sourceforge.net/gar/?rev=5804&view=rev Author: rthurner Date: 2009-08-01 21:10:10 +0000 (Sat, 01 Aug 2009) Log Message: ----------- remove mercurial common as it broke serving with mod_wsgi Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-01 20:36:19 UTC (rev 5803) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-01 21:10:10 UTC (rev 5804) @@ -9,23 +9,14 @@ MASTER_SITES = http://selenic.com/mercurial/release/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWmercurial,changelog.CSW) -DISTFILES += $(call admfiles,CSWmercurial-common,) SPKG_DESC_CSWmercurial = Mercurial -SPKG_DESC_CSWmercurial_common = Mercurial, common files REQUIRED_PKGS_CSWmercurial = CSWpython # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PKGFILES_CSWmercurial-common = $(PKGFILES_DOC) -PKGFILES_CSWmercurial-common += /opt/csw/share/man/.* -PKGFILES_CSWmercurial-common += /opt/csw/lib/python/site-packages/mercurial/templates/.* - -#PKGFILES_CSWmercurial = /opt/csw/bin -# $(prefix)/.* - CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py # Some tests fail, but manual inspection of the failures show no significant failures. @@ -36,26 +27,3 @@ include gar/category.mk -pre-install-modulated: - mkdir -p $(DESTDIR)/opt/csw/share/man/man1 - mkdir -p $(DESTDIR)/opt/csw/share/man/man5 - mkdir -p $(DESTDIR)/opt/csw/share/doc/mercurial - cp $(WORKDIR)/$(DISTNAME)/doc/*.1 $(DESTDIR)/opt/csw/share/man/man1 - cp $(WORKDIR)/$(DISTNAME)/doc/*.5 $(DESTDIR)/opt/csw/share/man/man5 - cp -r $(WORKDIR)/$(DISTNAME)/contrib $(DESTDIR)/opt/csw/share/doc/mercurial - cp -r $(WORKDIR)/$(DISTNAME)/*.cgi $(DESTDIR)/opt/csw/share/doc/mercurial - rm -rf \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/macosx \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/*rpm* \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/*spec* \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/win32 - -post-install-modulated: - cp $(WORKDIR)/CSWmercurial.changelog.CSW $(DESTDIR)/opt/csw/share/doc/mercurial/changelog.CSW - ( cd $(DESTDIR) && find . -type f | xargs grep '#!.*python$$' ) | cut -f 1 -d: | while read file; do\ - sed '1c\ -#!/opt/csw/bin/python' $(DESTDIR)/$$file > $(WORKDIR)/tmp; \ - mv $(WORKDIR)/tmp $(DESTDIR)/$$file; \ - done - -#PATH := /opt/csw/bin:$(PATH) Deleted: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec =================================================================== --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec 2009-08-01 20:36:19 UTC (rev 5803) +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec 2009-08-01 21:10:10 UTC (rev 5804) @@ -1,7 +0,0 @@ -%var bitname mercurial_common -%var pkgname CSWmercurial-common -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/mercurial-common/LICENSE for license information - 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 Aug 2 00:25:17 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 22:25:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5805] csw/mgar/pkg/python/trunk/Makefile Message-ID: Revision: 5805 http://gar.svn.sourceforge.net/gar/?rev=5805&view=rev Author: valholla Date: 2009-08-01 22:25:17 +0000 (Sat, 01 Aug 2009) Log Message: ----------- split python-test and distutils to seperate packages repacake against berkeleydb 4.7 Modified Paths: -------------- csw/mgar/pkg/python/trunk/Makefile Modified: csw/mgar/pkg/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/python/trunk/Makefile 2009-08-01 21:10:10 UTC (rev 5804) +++ csw/mgar/pkg/python/trunk/Makefile 2009-08-01 22:25:17 UTC (rev 5805) @@ -71,7 +71,7 @@ # use prototype filters to set the class PROTOTYPE_FILTER = awk '$$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' -PACKAGES = CSWidle CSWpython CSWpydistutils CSWpython-devel CSWpython-rt CSWpython-tk +PACKAGES = CSWidle CSWpython CSWpydistutils CSWpython-devel CSWpython-rt CSWpython-tk CSWpython-test PKGFILES_CSWidle = $(libdir)/.*/idlelib/.* PKGFILES_CSWidle += $(bindir)/idle @@ -81,6 +81,7 @@ PKGFILES_CSWpython-rt += $(libdir)/.*libpython.* PKGFILES_CSWpython-tk = $(libdir)/.*/lib-tk/.* PKGFILES_CSWpython-tk += $(libdir)/.*/lib-dynload/_tkinter.so.* +PKGFILES_CSWpython-test = $(libdir)/python/test/.* ENABLE_CHECK = 0 @@ -92,6 +93,7 @@ REQUIRED_PKGS_CSWpython-tk += CSWpython-rt CSWcswclassutils REQUIRED_PKGS_CSWpydistutils = CSWpython CSWcswclassutils REQUIRED_PKGS_CSWpython-devel = CSWpython CSWcswclassutils +REQUIRED_PKGS_CSWpython-test = CSWpython CSWcswclassutils CATALOGNAME_CSWpydistutils = pydistutils CATALOGNAME_CSWidle = idle @@ -99,6 +101,7 @@ CATALOGNAME_CSWpython-devel = python_devel CATALOGNAME_CSWpython-rt = python_rt CATALOGNAME_CSWpython-tk = python_tk +CATALOGNAME_CSWpython-test = python_test SPKG_DESC_CSWidle = Python IDE SPKG_DESC_CSWdistutils = Python Distutils makes modules and extensions easily available @@ -106,9 +109,9 @@ SPKG_DESC_CSWpython-devel = Development Files for Python SPKG_DESC_CSWpython-rt = Python Runtime Libraries SPKG_DESC_CSWpython-tk = Python Tk Interface (TkInter) +SPKG_DESC_CSWpython-test = Python Test modules POST_INST_SCR = add-depricated-libs -POST_INST_SCR += remove-compiled-py post-install-modulated: $(POST_INST_SCR) @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 10:17:07 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 08:17:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5806] csw/mgar/pkg Message-ID: Revision: 5806 http://gar.svn.sourceforge.net/gar/?rev=5806&view=rev Author: wahwah Date: 2009-08-02 08:17:07 +0000 (Sun, 02 Aug 2009) Log Message: ----------- libsndfile: Initial commit Modified Paths: -------------- csw/mgar/pkg/libsndfile/trunk/Makefile csw/mgar/pkg/libsndfile/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libsndfile/ Modified: csw/mgar/pkg/libsndfile/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/pkg/libsndfile/trunk/Makefile 2009-08-02 08:17:07 UTC (rev 5806) @@ -2,159 +2,49 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## -## For more information, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference +GARNAME = libsndfile +GARVERSION = 1.0.20 -GARNAME = mypkg -GARVERSION = 1.0 - -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra CATEGORIES = lib -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = +DESCRIPTION = a C library for reading and writing files containing sampled sound -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. define BLURB - -endef + Libsndfile is a C library for reading and writing files containing sampled + sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one + standard library interface. It is released in source code format under the Gnu + Lesser General Public License. -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = + The library was written to compile and run on a Linux system but should + compile and run on just about any Unix (including MacOSX). It can also be + compiled and run on Win32 systems using the Microsoft compiler and MacOS (OS9 + and earlier) using the Metrowerks compiler. There are directions for compiling + libsndfile on these platforms in the Win32 and MacOS directories of the source + code distribution. -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -# SF_PROJ = + It was designed to handle both little-endian (such as WAV) and big-endian + (such as AIFF) data, and to compile and run correctly on little-endian (such + as Intel and DEC/Compaq Alpha) processor systems as well as big-endian + processor systems such as Motorola 68k, Power PC, MIPS and Sparc. Hopefully + the design of the library will also make it easy to extend for reading and + writing new sound file formats. +endef -# A list of space separated patch filenames from files/ that are to be applied -# to the extracted software before the ./configure stage. Patches need to be -# included in the DISTFILES variable as well. -# PATCHFILES = +MASTER_SITES = http://www.mega-nerd.com/libsndfile/ -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## Set to 1 to mark the package as architecture-independent. -# ARCHALL = 0 +REQUIRED_PKGS = CSWvorbis CSWflac CSWlibogg +PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -# EXTRA_MERGE_EXCLUDE_FILES = +SPKG_SOURCEURL = http://www.mega-nerd.com/libsndfile/ -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -# INCOMPATIBLE_PKGS = - -# The name of the license file that should be included in your package. Defaults -# to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -# on including and displaying licenses. -# LICENSE = - -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -# PACKAGES = - -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -# PROTOTYPE_FILTER = - -## A list of runtime package dependencies in the form of CSWfoo. -# REQUIRED_PKGS = - -## When using non-empty $(PACKAGES): -# REQUIRED_PKGS_CSWpkgname = -# SPKG_DESC_CSWpkgname = -# PKGFILES_CSWpkgname = - -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -# SPKG_SOURCEURL = - -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -# STRIP_DIRS = - -## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -# CONFIGURE_SCRIPTS = -# BUILD_SCRIPTS = -# INSTALL_SCRIPTS = -# TEST_SCRIPTS = - -## Compilation settings - -## The build directory. -# WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) - -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -# BUILD_ARGS = - -## Arguments passed to the ./configure script. +TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) -# BUILD64 = -# CONFIGURE_ENV = -# EXTRA_CFLAGS = -# EXTRA_LDFLAGS = -# EXTRA_INC = -# EXTRA_LIB = -# GARFLAVOR = -# INSTALL_ARGS = -# OPT_FLAGS_SOS = -xO3 -# OPT_FLAGS_GCC = -O2 -pipe +EXTRA_CFLAGS = -features=extensions +EXTRA_CXXFLAGS = -features=extensions -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -# GARCOMPILER = SOS11 - -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +include gar/category.mk Modified: csw/mgar/pkg/libsndfile/trunk/checksums =================================================================== --- csw/mgar/pkg/template/trunk/checksums 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/pkg/libsndfile/trunk/checksums 2009-08-02 08:17:07 UTC (rev 5806) @@ -0,0 +1 @@ +e0553e12c7a467af44693e95e2eac668 download/libsndfile-1.0.20.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sun Aug 2 10:53:11 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sun, 02 Aug 2009 08:53:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5807] csw/mgar/pkg/mercurial/trunk/Makefile Message-ID: Revision: 5807 http://gar.svn.sourceforge.net/gar/?rev=5807&view=rev Author: rthurner Date: 2009-08-02 08:53:10 +0000 (Sun, 02 Aug 2009) Log Message: ----------- mercurial: only require python-rt instead of python Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-02 08:17:07 UTC (rev 5806) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-02 08:53:10 UTC (rev 5807) @@ -12,7 +12,7 @@ SPKG_DESC_CSWmercurial = Mercurial -REQUIRED_PKGS_CSWmercurial = CSWpython +REQUIRED_PKGS_CSWmercurial = CSWpython-rt # 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 j_arndt at users.sourceforge.net Sun Aug 2 11:09:25 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:09:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5808] csw/mgar/pkg/munin/trunk Message-ID: Revision: 5808 http://gar.svn.sourceforge.net/gar/?rev=5808&view=rev Author: j_arndt Date: 2009-08-02 09:09:25 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: ownerships of some files corrected Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 08:53:10 UTC (rev 5807) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 09:09:25 UTC (rev 5808) @@ -1,6 +1,6 @@ 39296b9aff25a2518394811796ef7ae6 download/CSWmuninmaster.postinstall -bd055e305e9cc70994014917225d3777 download/CSWmuninmaster.prototype -f7dd6a31454b6a40273d8932488234a1 download/CSWmuninnode.prototype +f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype +6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW 59409f4b412953283c3df4546fd4886c download/apache-munin-cgi.conf.CSW e701d132ba0b6f3dcc90190860f5aa6b download/apache-munin.conf.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-02 08:53:10 UTC (rev 5807) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-02 09:09:25 UTC (rev 5808) @@ -1,6 +1,6 @@ -d none /etc/opt/csw/munin 0755 munin munin -d none /etc/opt/csw/munin/apache 0755 munin munin -f cswpreserveconf /etc/opt/csw/munin/munin.conf.CSW 0644 munin munin +d none /etc/opt/csw/munin 0755 root bin +d none /etc/opt/csw/munin/apache 0755 root bin +f cswpreserveconf /etc/opt/csw/munin/munin.conf.CSW 0644 root bin f none /opt/csw/bin/munin-check 0755 root bin f none /opt/csw/bin/munin-cron 0755 root bin f none /opt/csw/libexec/munin/VeraMono.ttf 0755 root bin Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype 2009-08-02 08:53:10 UTC (rev 5807) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype 2009-08-02 09:09:25 UTC (rev 5808) @@ -1,7 +1,7 @@ -d none /etc/opt/csw/munin 0755 munin munin -f cswpreserveconf /etc/opt/csw/munin/munin-node.conf.CSW 0644 munin munin -d none /etc/opt/csw/munin/plugin-conf.d 0755 munin munin -d none /etc/opt/csw/munin/plugins 0755 munin munin +d none /etc/opt/csw/munin 0755 root bin +f cswpreserveconf /etc/opt/csw/munin/munin-node.conf.CSW 0644 root bin +d none /etc/opt/csw/munin/plugin-conf.d 0755 root bin +d none /etc/opt/csw/munin/plugins 0755 root bin f none /opt/csw/bin/munindoc 0755 root bin d none /opt/csw/libexec/munin/plugins 0755 root bin f none /opt/csw/libexec/munin/plugins/amavis 0755 root bin 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 Sun Aug 2 11:42:38 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:42:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5809] csw/mgar/pkg/munin/trunk Message-ID: Revision: 5809 http://gar.svn.sourceforge.net/gar/?rev=5809&view=rev Author: j_arndt Date: 2009-08-02 09:42:38 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: perl shebang in some files changed, so it will be set via configure Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/munindoc.in.diff Added Paths: ----------- csw/mgar/pkg/munin/trunk/files/perlpath.diff Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 09:09:25 UTC (rev 5808) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 09:42:38 UTC (rev 5809) @@ -27,6 +27,7 @@ PATCHFILES += munin-graph.in.diff # use monospace instead of VeraMono.ttf PATCHFILES += munin-update.in.diff # http://munin.projects.linpro.no/ticket/699 PATCHFILES += munindoc.in.diff # PATH to perl set to /opt/csw/bin/perl +PATCHFILES += perlpath.diff # shebang changed to #!@@PERL@@ -w # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 09:09:25 UTC (rev 5808) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 09:42:38 UTC (rev 5809) @@ -12,5 +12,6 @@ 4688659429fbebf8cafcc8eb8a1ee870 download/munin-update.in.diff 737e3e3d2f68015dfb4e857909cde7da download/munin.conf.in.diff e3a58e582407981d4f5c5aed59cbfc47 download/munin_1.3.4.tar.gz -29e1278999379aa7108d3050c0b9d227 download/munindoc.in.diff +8e21ff70a126779e33dd6457839184de download/munindoc.in.diff +d1623381c74f05a174aa4704896ef5b6 download/perlpath.diff 43db53191eaae75be35b3548a993c31e download/sunos_memory.in.diff Modified: csw/mgar/pkg/munin/trunk/files/munindoc.in.diff =================================================================== --- csw/mgar/pkg/munin/trunk/files/munindoc.in.diff 2009-08-02 09:09:25 UTC (rev 5808) +++ csw/mgar/pkg/munin/trunk/files/munindoc.in.diff 2009-08-02 09:42:38 UTC (rev 5809) @@ -1,9 +1,9 @@ diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/munindoc.in munin-1.3.4/node/munindoc.in --- munin-1.3.4.orig/node/munindoc.in 2008-03-08 02:42:39.000000000 +0100 -+++ munin-1.3.4/node/munindoc.in 2009-07-20 20:00:51.639195515 +0200 ++++ munin-1.3.4/node/munindoc.in 2009-08-02 11:31:16.881795848 +0200 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w -+#!/opt/csw/bin/perl -w ++#!@@PERL@@ -w # -*- perl -*- # # This script provides the basis for a plugin documentation system for Added: csw/mgar/pkg/munin/trunk/files/perlpath.diff =================================================================== --- csw/mgar/pkg/munin/trunk/files/perlpath.diff (rev 0) +++ csw/mgar/pkg/munin/trunk/files/perlpath.diff 2009-08-02 09:42:38 UTC (rev 5809) @@ -0,0 +1,26 @@ +diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/node.d/exim_mailstats.in munin-1.3.4/node/node.d/exim_mailstats.in +--- munin-1.3.4.orig/node/node.d/exim_mailstats.in 2008-03-08 02:42:39.000000000 +0100 ++++ munin-1.3.4/node/node.d/exim_mailstats.in 2009-08-02 11:26:39.040437174 +0200 +@@ -1,4 +1,3 @@ +-#!/usr/bin/perl -w + #!@@PERL@@ -w + # -*- perl -*- + +diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/node.d/lpstat.in munin-1.3.4/node/node.d/lpstat.in +--- munin-1.3.4.orig/node/node.d/lpstat.in 2008-03-08 02:42:39.000000000 +0100 ++++ munin-1.3.4/node/node.d/lpstat.in 2009-08-02 11:26:48.080049173 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl ++#!@@PERL@@ -w + ############################################################################# + # # + # This script was initially developed by Anstat Pty Ltd for internal use # +diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/node.d/snmp__cpuload.in munin-1.3.4/node/node.d/snmp__cpuload.in +--- munin-1.3.4.orig/node/node.d/snmp__cpuload.in 2008-03-08 02:42:39.000000000 +0100 ++++ munin-1.3.4/node/node.d/snmp__cpuload.in 2009-08-02 11:26:57.614639171 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl -w ++#!@@PERL@@ -w + # + # Copyright (C) 2006 Lars Strand + # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 11:53:24 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:53:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5810] csw/mgar/pkg/template/trunk/Makefile Message-ID: Revision: 5810 http://gar.svn.sourceforge.net/gar/?rev=5810&view=rev Author: wahwah Date: 2009-08-02 09:53:24 +0000 (Sun, 02 Aug 2009) Log Message: ----------- template: Formatted to allow automatic purging of documentation comments Modified Paths: -------------- csw/mgar/pkg/template/trunk/Makefile Modified: csw/mgar/pkg/template/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-02 09:42:38 UTC (rev 5809) +++ csw/mgar/pkg/template/trunk/Makefile 2009-08-02 09:53:24 UTC (rev 5810) @@ -5,13 +5,15 @@ ## This file contains comments to guide you through various GAR settings. ## Please remove unnecessary comments before committing your code to the code ## repository. The comments to remove are marked with double hashes. +## If you want to remove them all in-place, use: +## gsed -i -e '/^##/d' Makefile ## -## For more information, please see: +## For more information about GAR variables, please see: ## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference - +## GARNAME = mypkg GARVERSION = 1.0 - +## ## The category that your software fits in. This is not a descriptive field, but ## influences the build process. Depending on the CATEGORIES setting, different ## Makefiles are included from gar/categories/ in your trunk directory, which @@ -21,56 +23,67 @@ ## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, ## xfce, xorg, xtra CATEGORIES = lib - +## ## A one-line description of the package, which will appear in the pkginfo. DESCRIPTION = - +## ## A longer description of the package. This is only for descriptive purposes ## inside the Makefile and is not used elsewhere. define BLURB endef - +## +## Upstream URL that should show up in the VENDOR field as well as on +## http://opencsw.org/packages/. +SPKG_SOURCEURL = +## ## Whitespace-separated list of URLs to download the source package from. ## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). MASTER_SITES = - +## ## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the ## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge ## project name of the software you wish to download. -# SF_PROJ = - -# A list of space separated patch filenames from files/ that are to be applied -# to the extracted software before the ./configure stage. Patches need to be -# included in the DISTFILES variable as well. -# PATCHFILES = - +## SF_PROJ = +## +## A list of space separated patch filenames from files/ that are to be applied +## to the extracted software before the ./configure stage. Patches need to be +## included in the DISTFILES variable as well. +## PATCHFILES = +## ## Whitespace-separated list of files which comprise this build. mGAR will look ## for the files in the $(FILEDIR) (trunk/files) directory and on the ## $(MASTER_SITES). 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 +## +## Catalog name is the name to be used with pkg{-get,util} -i . +## It is different from the system package name, which by convention is CSWpkgname. +## CATALOGNAME = +## ## Set to 1 to mark the package as architecture-independent. -# ARCHALL = 0 - +## ARCHALL = 0 +## ## A list of files / patterns that should be excluded from the package. Amends ## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which ## contains things like libtool .la files and files with a leading ~. -# EXTRA_MERGE_EXCLUDE_FILES = - +## EXTRA_MERGE_EXCLUDE_FILES = +## ## A list of space separated package names that should be marked as ## incompatible with the current package. This will go into the depend file. ## When a user has one of the incompatible packages installed and installs ## your package, he will be prompted that the incompatible package must be ## removed. He will however not be prevented to install your package without ## removing the conflicting package first. -# INCOMPATIBLE_PKGS = - -# The name of the license file that should be included in your package. Defaults -# to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -# on including and displaying licenses. -# LICENSE = - +## INCOMPATIBLE_PKGS = +## +## The name of the license file that should be included in your package. Defaults +## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details +## on including and displaying licenses. +## LICENSE = +## ## A list of space separated package names that should be produced from your ## Makefile. This is used when a software has different components that can be ## packaged and used individually (think runtime libraries, client tools, server @@ -82,8 +95,8 @@ ## $(PACKAGES) list) to define which files go into each package. The first ## package from $(PACKAGES) one will hold all files that are not matched by ## PKGFILES_ for other packages. -# PACKAGES = - +## PACKAGES = +## ## If specified, GAR feeds the almost-final package prototype file to ## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. ## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used @@ -92,27 +105,36 @@ ## you will rarely have to use this. A still valid use case would be to change ## the file permissions of a file to be set-UID. ## See http://wiki.opencsw.org/cswclassutils-package for common usage information -# PROTOTYPE_FILTER = - +## PROTOTYPE_FILTER = +## +## cswclassutils settings +## +## A list of action classes. Possible values are: +## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf +## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, +## you need to add CSWcswclassutils to REQUIRED_PKGS. +## SPKG_CLASSES = none +## Simplified settings for classes: +## PRESERVECONF = +## SAMPLECONF = +## INITSMF = +## USERGROUP = ## A list of runtime package dependencies in the form of CSWfoo. -# REQUIRED_PKGS = - +## REQUIRED_PKGS = +## +## A list of packages necessary to build this package +## PREREQUISITE_PKGS = $(REQUIRED_PKGS) +## ## When using non-empty $(PACKAGES): -# REQUIRED_PKGS_CSWpkgname = -# SPKG_DESC_CSWpkgname = -# PKGFILES_CSWpkgname = - -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -# SPKG_SOURCEURL = - +## REQUIRED_PKGS_CSWpkgname = +## SPKG_DESC_CSWpkgname = +## PKGFILES_CSWpkgname = +## CATALOGNAME_CSWpkgname = +## ## A list of space separated directories where objects should be stripped in ## addition to the bin/ and sbin/ directories. -# STRIP_DIRS = - -## We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz - +## STRIP_DIRS = +## ## Define a custom target for the configure phase. When you set this, the target ## that will be used instead of configure: target, is named ## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile @@ -120,37 +142,37 @@ ## completely (for example when your software doesn't need to be compiled) assign ## this variable an empty value. The procedure works for configure, build, ## install and test steps. -# CONFIGURE_SCRIPTS = -# BUILD_SCRIPTS = -# INSTALL_SCRIPTS = -# TEST_SCRIPTS = - +## CONFIGURE_SCRIPTS = +## BUILD_SCRIPTS = +## INSTALL_SCRIPTS = +## TEST_SCRIPTS = +## ## Compilation settings - +## ## The build directory. -# WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) - +## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) +## ## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this ## for example, if you need to override Makefile variables. -# BUILD_ARGS = - +## BUILD_ARGS = +## ## Arguments passed to the ./configure script. CONFIGURE_ARGS = $(DIRPATHS) - -# BUILD64 = -# CONFIGURE_ENV = -# EXTRA_CFLAGS = -# EXTRA_LDFLAGS = -# EXTRA_INC = -# EXTRA_LIB = -# GARFLAVOR = -# INSTALL_ARGS = -# OPT_FLAGS_SOS = -xO3 -# OPT_FLAGS_GCC = -O2 -pipe - +## +## BUILD64 = +## CONFIGURE_ENV = +## EXTRA_CFLAGS = +## EXTRA_LDFLAGS = +## EXTRA_INC = +## EXTRA_LIB = +## GARFLAVOR = +## INSTALL_ARGS = +## OPT_FLAGS_SOS = -xO3 +## OPT_FLAGS_GCC = -O2 -pipe +## ## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -# GARCOMPILER = SOS11 - +## GARCOMPILER = SOS11 +## # Remove the following rules and uncomment the # include before building. all: .DEFAULT This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 11:58:56 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:58:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5811] csw/mgar/pkg/munin/Makefile Message-ID: Revision: 5811 http://gar.svn.sourceforge.net/gar/?rev=5811&view=rev Author: wahwah Date: 2009-08-02 09:58:56 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: Adding package-level Makefile Added Paths: ----------- csw/mgar/pkg/munin/Makefile Copied: csw/mgar/pkg/munin/Makefile (from rev 5810, csw/mgar/pkg/template/Makefile) =================================================================== --- csw/mgar/pkg/munin/Makefile (rev 0) +++ csw/mgar/pkg/munin/Makefile 2009-08-02 09:58:56 UTC (rev 5811) @@ -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 j_arndt at users.sourceforge.net Sun Aug 2 12:03:53 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 10:03:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5812] csw/mgar/pkg/munin/trunk/files/CSWmuninmaster. postinstall Message-ID: Revision: 5812 http://gar.svn.sourceforge.net/gar/?rev=5812&view=rev Author: j_arndt Date: 2009-08-02 10:03:52 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: added install instructions into postinstall script Modified Paths: -------------- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 09:58:56 UTC (rev 5811) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 10:03:52 UTC (rev 5812) @@ -2,8 +2,28 @@ passwd -N munin -echo -echo "Please append the following line to the crontab of the user 'munin':" -echo -echo " 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron" -echo +cat << EOF +# +# +# + +To get Munin running, please follow these steps: + +(1) Append the following line to the crontab of the user 'munin':" + + 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron" + +(2) Edit the Apache configuration for Munin: + "Normal" mode: /etc/opt/csw/munin/apache/apache.conf + CGI mode: /etc/opt/csw/munin/apache/apache-munin-cgi.conf + + (These files should work by default) + +(3) Add the following line to your Apache configuration + + "Normal" mode: Include /etc/opt/csw/munin/apache.conf + CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf + +# +# +# 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 Sun Aug 2 12:05:09 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 10:05:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5813] csw/mgar/pkg/munin/trunk/checksums Message-ID: Revision: 5813 http://gar.svn.sourceforge.net/gar/?rev=5813&view=rev Author: j_arndt Date: 2009-08-02 10:05:09 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: checksum update Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 10:03:52 UTC (rev 5812) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 10:05:09 UTC (rev 5813) @@ -1,4 +1,4 @@ -39296b9aff25a2518394811796ef7ae6 download/CSWmuninmaster.postinstall +ab8fa725c6744f069ace2cdcb5c5b81b download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 12:50:52 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 10:50:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5814] csw/mgar/pkg/libmad Message-ID: Revision: 5814 http://gar.svn.sourceforge.net/gar/?rev=5814&view=rev Author: wahwah Date: 2009-08-02 10:50:52 +0000 (Sun, 02 Aug 2009) Log Message: ----------- libmad: Moving trunk/legacy to tags/legacy Added Paths: ----------- csw/mgar/pkg/libmad/tags/ Removed Paths: ------------- csw/mgar/pkg/libmad/trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 13:43:49 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 11:43:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5815] csw/mgar/pkg/speex/trunk/Makefile Message-ID: Revision: 5815 http://gar.svn.sourceforge.net/gar/?rev=5815&view=rev Author: wahwah Date: 2009-08-02 11:43:49 +0000 (Sun, 02 Aug 2009) Log Message: ----------- speex: Added a required package: CSWlibogg Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/speex/trunk/Makefile Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-02 10:50:52 UTC (rev 5814) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-02 11:43:49 UTC (rev 5815) @@ -1,3 +1,7 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = speex GARVERSION = 1.2rc1 CATEGORIES = lib @@ -11,13 +15,17 @@ PACKAGES = CSWspeex CATALOGNAME = libspeex +REQUIRED_PKGS = CSWlibogg +PREREQUISITE_PKGS = $(REQUIRED_PKGS) SPKG_SOURCEURL = http://www.speex.org/ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -BUILD64 = 1 +# 64-bit doesn't build on x86. +# BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) +TEST_SCRIPTS = include gar/category.mk Property changes on: csw/mgar/pkg/speex/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 2 14:35:21 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 12:35:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5816] csw/mgar/pkg/cpan/BerkeleyDB/trunk Message-ID: Revision: 5816 http://gar.svn.sourceforge.net/gar/?rev=5816&view=rev Author: idogan23 Date: 2009-08-02 12:35:20 +0000 (Sun, 02 Aug 2009) Log Message: ----------- BerkeleyDB: switched to mGar v2 Modified Paths: -------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/ Property changes on: csw/mgar/pkg/cpan/BerkeleyDB/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/BerkeleyDB/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 11:43:49 UTC (rev 5815) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 12:35:20 UTC (rev 5816) @@ -1,5 +1,5 @@ GARNAME = BerkeleyDB -GARVERSION = 0.38 +GARVERSION = 0.39 CATEGORIES = cpan AUTHOR = PMQS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 2 14:41:22 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 12:41:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[5817] csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums Message-ID: Revision: 5817 http://gar.svn.sourceforge.net/gar/?rev=5817&view=rev Author: idogan23 Date: 2009-08-02 12:41:22 +0000 (Sun, 02 Aug 2009) Log Message: ----------- BerkeleyDB: bump version to 0.3.9 Modified Paths: -------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums Modified: csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 12:35:20 UTC (rev 5816) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 12:41:22 UTC (rev 5817) @@ -1,2 +1,2 @@ +da4cff937216a147162a6df76cae8096 download/BerkeleyDB-0.39.tar.gz 0fbfe55149dc106b82c7c38fdd3601b8 download/CSWpmberkeleydb.gspec -33a0c1a9d566a3f5fc71601a165d8335 download/BerkeleyDB-0.38.tar.gz 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 Sun Aug 2 17:43:49 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 15:43:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5818] csw/mgar/pkg/munin/trunk Message-ID: Revision: 5818 http://gar.svn.sourceforge.net/gar/?rev=5818&view=rev Author: j_arndt Date: 2009-08-02 15:43:49 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: corrected typos, added dependency to CSWpmdbi Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 12:41:22 UTC (rev 5817) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 15:43:49 UTC (rev 5818) @@ -47,7 +47,7 @@ REQUIRED_PKGS_CSWmuninmaster = CSWpmhtmltmpl CSWpmdatemanip CSWpmmd5 CSWrrd CSWapache2 REQUIRED_PKGS_CSWmuninmaster = CSWcswclassutils -REQUIRED_PKGS_CSWmuninnode = CSWpmnetsnmp CSWpmnetserver CSWperl CSWtop CSWcswclassutils +REQUIRED_PKGS_CSWmuninnode = CSWpmdbi CSWpmnetsnmp CSWpmnetserver CSWperl CSWtop CSWcswclassutils SPKG_CLASSES_CSWmuninmaster = none cswusergroup cswpreserveconf ugfiles SPKG_CLASSES_CSWmuninnode = none cswusergroup ugfiles cswpreserveconf cswinitsmf Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 12:41:22 UTC (rev 5817) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 15:43:49 UTC (rev 5818) @@ -1,4 +1,4 @@ -ab8fa725c6744f069ace2cdcb5c5b81b download/CSWmuninmaster.postinstall +cfe000894b343d2f36f41195b1ac2365 download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 12:41:22 UTC (rev 5817) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 15:43:49 UTC (rev 5818) @@ -24,6 +24,10 @@ "Normal" mode: Include /etc/opt/csw/munin/apache.conf CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf +(4) Add the user your webserver is running under (nobody for Apache) to + the group "munin" + # # # +EOF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 2 18:11:07 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 16:11:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5819] csw/mgar/pkg/cpan/BerkeleyDB/trunk Message-ID: Revision: 5819 http://gar.svn.sourceforge.net/gar/?rev=5819&view=rev Author: idogan23 Date: 2009-08-02 16:11:06 +0000 (Sun, 02 Aug 2009) Log Message: ----------- BerkeleyDB: linked against Berkeley DB 4,7 & some smaller packaging changes Modified Paths: -------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff Removed Paths: ------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec Modified: csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 16:11:06 UTC (rev 5819) @@ -8,6 +8,13 @@ Includes BerkeleyDB, BerkeleyDB::Btree, BerkeleyDB::Hash endef -DISTFILES += $(call admfiles,CSWpmberkeleydb,) +PACKAGES = CSWpmberkeleydb +CATALOGNAME = pm_berkeleydb +DISTFILES += CSWpmberkeleydb.config.in.diff + +PATCHFILES = CSWpmberkeleydb.config.in.diff + +REQUIRED_PKGS += CSWbdb + include gar/category.mk Modified: csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 16:11:06 UTC (rev 5819) @@ -1,2 +1,2 @@ da4cff937216a147162a6df76cae8096 download/BerkeleyDB-0.39.tar.gz -0fbfe55149dc106b82c7c38fdd3601b8 download/CSWpmberkeleydb.gspec +bd611cd1c09f11bde779fc0b3e5adf97 download/CSWpmberkeleydb.config.in.diff Added: csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff (rev 0) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff 2009-08-02 16:11:06 UTC (rev 5819) @@ -0,0 +1,29 @@ +diff --speed-large-files --minimal -Nru BerkeleyDB-0.39.orig/config.in BerkeleyDB-0.39/config.in +--- BerkeleyDB-0.39.orig/config.in 2009-06-06 20:04:31.000000000 +0200 ++++ BerkeleyDB-0.39/config.in 2009-08-02 17:41:37.220435289 +0200 +@@ -9,7 +9,7 @@ + + #INCLUDE = /usr/local/include + #INCLUDE = ../.. +-INCLUDE = /usr/local/BerkeleyDB/include ++INCLUDE = /opt/csw/include + + # 2. Where is libdb? + # +@@ -18,7 +18,7 @@ + + #LIB = /usr/local/lib + #LIB = ../.. +-LIB = /usr/local/BerkeleyDB/lib ++LIB = /opt/csw/lib + + # 3. Is the library called libdb? + # +@@ -40,6 +40,6 @@ + # below (by removing the leading #) and edit the line to use the name + # you have picked. + +-#DBNAME = -ldb-3.0 ++DBNAME = -ldb-4.7 + + # end of file config.in Deleted: csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend 2009-08-02 16:11:06 UTC (rev 5819) @@ -1 +0,0 @@ -P CSWbdb44 Deleted: csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec 2009-08-02 16:11:06 UTC (rev 5819) @@ -1,8 +0,0 @@ -%var bitname pm_berkeleydb -%var pkgname CSWpmberkeleydb -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 1997-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 idogan23 at users.sourceforge.net Sun Aug 2 20:52:10 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 18:52:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5820] csw/mgar/pkg/amavisd-new/trunk/ Message-ID: Revision: 5820 http://gar.svn.sourceforge.net/gar/?rev=5820&view=rev Author: idogan23 Date: 2009-08-02 18:52:09 +0000 (Sun, 02 Aug 2009) Log Message: ----------- amavisd_new: switched to mGar v2 Property Changed: ---------------- csw/mgar/pkg/amavisd-new/trunk/ Property changes on: csw/mgar/pkg/amavisd-new/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 idogan23 at users.sourceforge.net Sun Aug 2 22:38:28 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 20:38:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[5821] csw/mgar/pkg/amavisd-new/trunk Message-ID: Revision: 5821 http://gar.svn.sourceforge.net/gar/?rev=5821&view=rev Author: idogan23 Date: 2009-08-02 20:38:27 +0000 (Sun, 02 Aug 2009) Log Message: ----------- amavisd_new: switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/amavisd-new/trunk/Makefile csw/mgar/pkg/amavisd-new/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec Modified: csw/mgar/pkg/amavisd-new/trunk/Makefile =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-02 20:38:27 UTC (rev 5821) @@ -7,13 +7,37 @@ amavisd-new is a performance-enhanced daemonized version of amavis-perl endef +PACKAGES = CSWamavisdnew +CATALOGNAME = amavisd_new +ARCHALL = 1 + MASTER_SITES = http://www.ijs.si/software/amavisd/#download DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWamavisdnew, depend postinstall preinstall prototype) +DISTFILES += CSWamavisdnew.postinstall +DISTFILES += CSWamavisdnew.preinstall +DISTFILES += CSWamavisdnew.prototype +#DISTFILES += $(call admfiles,CSWamavisdnew, postinstall preinstall prototype) + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS += CSWperl +REQUIRED_PKGS += CSWcswclassutils +REQUIRED_PKGS += CSWpmiostringy +REQUIRED_PKGS += CSWpmnetserver +REQUIRED_PKGS += CSWpmmailtools +REQUIRED_PKGS += CSWpmmimetools +REQUIRED_PKGS += CSWpmcompresszlib +REQUIRED_PKGS += CSWpmarchivetar +REQUIRED_PKGS += CSWpmarchivezip +REQUIRED_PKGS += CSWspamassassin +REQUIRED_PKGS += CSWpmberkeleydb +REQUIRED_PKGS += CSWpmconverttnef +REQUIRED_PKGS += CSWpmconvertuulib +REQUIRED_PKGS += CSWpmmaildkim +REQUIRED_PKGS += CSWpmunixsyslog + PATCHFILES += amavisd-agent.diff PATCHFILES += amavisd-nanny.diff PATCHFILES += amavisd-release.diff @@ -29,10 +53,19 @@ INSTALL_SCRIPTS = custom AMAVISBIN=amavisd-agent amavisd-nanny amavisd-release p0f-analyzer.pl +AMAVISBIN += amavisd-nanny +AMAVISBIN += amavisd-release +AMAVISBIN += p0f-analyzer.pl + AMAVISSBIN=amavisd-new -AMAVISDOC=LDAP.schema README_FILES RELEASE_NOTES AAAREADME.first \ - amavisd.conf-default amavisd.conf-sample +AMAVISDOC=LDAP.schema +AMAVISDOC += README_FILES +AMAVISDOC += RELEASE_NOTES +AMAVISDOC += AAAREADME.first +AMAVISDOC += amavisd.conf-default +AMAVISDOC += amavisd.conf-sample + install-custom: echo " ==> Installing $(GARNAME)" ginstall -d $(DESTDIR)$(prefix)/etc Modified: csw/mgar/pkg/amavisd-new/trunk/checksums =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-02 20:38:27 UTC (rev 5821) @@ -1,11 +1,9 @@ -02b0bd38b40258841c60479603dc6842 download/amavisd-new-2.6.3.tar.gz -979fd28f16513f660912311c3566786d download/CSWamavisdnew.gspec -1a54bc6b9d92afadc704c394cb93fa00 download/CSWamavisdnew.depend 65f66fb3036b7949057733aa99cff724 download/CSWamavisdnew.postinstall 171767585ab6662c0cbedae26e9baa2c download/CSWamavisdnew.preinstall 631e33b02eb813b9f3f13db03b5c12eb download/CSWamavisdnew.prototype b9cafe6715bc2703ac9411f24f248cd3 download/amavisd-agent.diff 3e81998c8b933129870e3cab68d40261 download/amavisd-nanny.diff +02b0bd38b40258841c60479603dc6842 download/amavisd-new-2.6.3.tar.gz f218d10e5280940268a3ffaa125a00ae download/amavisd-release.diff 9c3d4118cf3837e559a6026d6b89b377 download/amavisd.conf.diff 071af9fb79ee5e9d045905043fea2b96 download/amavisd.diff Deleted: csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend 2009-08-02 20:38:27 UTC (rev 5821) @@ -1,15 +0,0 @@ -P CSWperl -P CSWcswclassutils -P CSWpmunixsyslog -P CSWpmiostringy -P CSWpmnetserver -P CSWpmmailtools -P CSWpmmimetools -P CSWpmcompresszlib -P CSWpmarchivetar -P CSWpmarchivezip -P CSWspamassassin -P CSWpmberkeleydb -P CSWpmconverttnef -P CSWpmconvertuulib -P CSWpmmaildkim Deleted: csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec 2009-08-02 20:38:27 UTC (rev 5821) @@ -1,5 +0,0 @@ -%var bitname amavisd_new -%var pkgname CSWamavisdnew -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 23:12:07 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 21:12:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5822] csw/mgar/pkg/cfg2html/ Message-ID: Revision: 5822 http://gar.svn.sourceforge.net/gar/?rev=5822&view=rev Author: wahwah Date: 2009-08-02 21:12:04 +0000 (Sun, 02 Aug 2009) Log Message: ----------- cfg2html: Copying the template Added Paths: ----------- csw/mgar/pkg/cfg2html/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 23:21:46 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 21:21:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5823] csw/mgar/pkg/cfg2html/trunk Message-ID: Revision: 5823 http://gar.svn.sourceforge.net/gar/?rev=5823&view=rev Author: wahwah Date: 2009-08-02 21:21:20 +0000 (Sun, 02 Aug 2009) Log Message: ----------- cfg2html: The build file. I have no idea if it's correct. Modified Paths: -------------- csw/mgar/pkg/cfg2html/trunk/Makefile csw/mgar/pkg/cfg2html/trunk/checksums Modified: csw/mgar/pkg/cfg2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:12:04 UTC (rev 5822) +++ csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:21:20 UTC (rev 5823) @@ -2,181 +2,35 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra -CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +GARNAME = cfg2html +GARVERSION = 1.14r1.8 +CATEGORIES = utils +DESCRIPTION = Configuration documentation generator define BLURB - endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://tech.groups.yahoo.com/group/cfg2html/ +MASTER_SITES = http://tech.groups.yahoo.com/group/cfg2html/files/sun/ +DISTFILES = $(GARNAME)-sun_$(GARVERSION).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = cfg2html +TEST_SCRIPTS = +WORKSRC = $(WORKDIR)/$(GARNAME) -#include gar/category.mk +install-cfg2html: + ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/plugins + ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/doc + (\ + cd $(WORKSRC); \ + for d in plugins doc html; do \ + ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/$${d}; \ + for f in plugins/*; do \ + ginstall $${f} $(DESTDIR)$(datadir)/$(GARNAME)/$${d}; \ + done; \ + done; \ + ) + ginstall -d $(DESTDIR)$(bindir) + ginstall -m 0755 $(WORKSRC)/cfg2html_sun.sh $(DESTDIR)$(bindir) + +include gar/category.mk Modified: csw/mgar/pkg/cfg2html/trunk/checksums =================================================================== --- csw/mgar/pkg/cfg2html/trunk/checksums 2009-08-02 21:12:04 UTC (rev 5822) +++ csw/mgar/pkg/cfg2html/trunk/checksums 2009-08-02 21:21:20 UTC (rev 5823) @@ -0,0 +1 @@ +26d4b796d0ae7203ce8ed6697ec88020 download/cfg2html-sun_1.14r1.8.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 23:24:58 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 21:24:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5824] csw/mgar/pkg/cfg2html/trunk/Makefile Message-ID: Revision: 5824 http://gar.svn.sourceforge.net/gar/?rev=5824&view=rev Author: wahwah Date: 2009-08-02 21:24:56 +0000 (Sun, 02 Aug 2009) Log Message: ----------- cfg2html: ARCHALL = 1 Modified Paths: -------------- csw/mgar/pkg/cfg2html/trunk/Makefile Modified: csw/mgar/pkg/cfg2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:21:20 UTC (rev 5823) +++ csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:24:56 UTC (rev 5824) @@ -17,6 +17,7 @@ INSTALL_SCRIPTS = cfg2html TEST_SCRIPTS = WORKSRC = $(WORKDIR)/$(GARNAME) +ARCHALL = 1 install-cfg2html: ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/plugins 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 Aug 3 09:49:53 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 03 Aug 2009 07:49:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5825] csw/mgar/pkg/amavisd-new/trunk Message-ID: Revision: 5825 http://gar.svn.sourceforge.net/gar/?rev=5825&view=rev Author: idogan23 Date: 2009-08-03 07:49:53 +0000 (Mon, 03 Aug 2009) Log Message: ----------- amavisd_new: changed Paths to the db_* utils in postinstall Modified Paths: -------------- csw/mgar/pkg/amavisd-new/trunk/checksums csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall Modified: csw/mgar/pkg/amavisd-new/trunk/checksums =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-02 21:24:56 UTC (rev 5824) +++ csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-03 07:49:53 UTC (rev 5825) @@ -1,4 +1,4 @@ -65f66fb3036b7949057733aa99cff724 download/CSWamavisdnew.postinstall +2df80947353821e6e94fcad09a1bb3da download/CSWamavisdnew.postinstall 171767585ab6662c0cbedae26e9baa2c download/CSWamavisdnew.preinstall 631e33b02eb813b9f3f13db03b5c12eb download/CSWamavisdnew.prototype b9cafe6715bc2703ac9411f24f248cd3 download/amavisd-agent.diff Modified: csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall 2009-08-02 21:24:56 UTC (rev 5824) +++ csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall 2009-08-03 07:49:53 UTC (rev 5825) @@ -17,29 +17,25 @@ echo "Running db_verify (before upgrade) on $DB_HOME" >>$installlog for each_db in `ls *.db` do - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 done # Update the database environment to the new value echo "Running db_recover on $DB_HOME" >>$installlog - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_recover -h $DB_HOME >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_recover -h $DB_HOME >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_recover -h $DB_HOME >>$installlog 2>&1 # Upgrade each file. This does nothing if no upgrade is needed. echo "Running db_upgrade on $DB_HOME" >>$installlog for each_db in `ls *.db` do - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_upgrade -h $DB_HOME $each_db >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_upgrade -h $DB_HOME $each_db >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_upgrade -h $DB_HOME $each_db >>$installlog 2>&1 done # Verify each file echo "Running db_verify (after upgrade) on $DB_HOME" >>$installlog for each_db in `ls *.db` do - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 done fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 3 10:36:43 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 03 Aug 2009 08:36:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[5826] csw/mgar/pkg/flac/trunk Message-ID: Revision: 5826 http://gar.svn.sourceforge.net/gar/?rev=5826&view=rev Author: dmichelsen Date: 2009-08-03 08:36:42 +0000 (Mon, 03 Aug 2009) Log Message: ----------- flac: Include legacy libs libFLAC.so.4 from 1.0.4, fixing #3791 Modified Paths: -------------- csw/mgar/pkg/flac/trunk/Makefile csw/mgar/pkg/flac/trunk/checksums Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 07:49:53 UTC (rev 5825) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 08:36:42 UTC (rev 5826) @@ -4,11 +4,13 @@ EXTRA_MODULATORS = GARVERSION # Version 1.1.2 is the last to contain libflac.so.7 where most of the binaries depend on -MODULATIONS_GARVERSION = 1.1.2 1.2.1 +MODULATIONS_GARVERSION = 1.0.4 1.1.2 1.2.1 # There was no 64 bit legacy version. Do not provide it as new binaries should # link against the new version. -SKIP_MODULATIONS = isa-sparcv9-garversion-1.1.2 +SKIP_MODULATIONS = isa-sparcv9-garversion-1.0.4 +SKIP_MODULATIONS += isa-amd64-garversion-1.0.4 +SKIP_MODULATIONS += isa-sparcv9-garversion-1.1.2 SKIP_MODULATIONS += isa-amd64-garversion-1.1.2 DESCRIPTION = Free lossless audio codec @@ -58,6 +60,9 @@ BUILD64 = 1 +# For 1.0.4 +EXTRA_LINKER_FLAGS = -liconv + NODIRPATHS = --includedir CPPFLAGS = @@ -71,6 +76,11 @@ TEST_TARGET = check +MERGE_SCRIPTS_isa-i386-garversion-1.0.4 = copy-only +MERGE_DIRS_isa-i386-garversion-1.0.4 = $(libdir) +MERGE_SCRIPTS_isa-amd64-garversion-1.0.4 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-1.0.4 = $(libdir) + MERGE_SCRIPTS_isa-i386-garversion-1.1.2 = copy-only MERGE_DIRS_isa-i386-garversion-1.1.2 = $(libdir) MERGE_SCRIPTS_isa-amd64-garversion-1.1.2 = copy-relocated-only @@ -80,6 +90,11 @@ MERGE_SCRIPTS_isa-amd64-garversion-1.2.1 = copy-relocated-only MERGE_DIRS_isa-amd64-garversion-1.2.1 = $(bindir) $(sbindir) $(libexecdir) $(libdir) +MERGE_SCRIPTS_isa-sparcv8-garversion-1.0.4 = copy-only +MERGE_DIRS_isa-sparcv8-garversion-1.0.4 = $(libdir) +MERGE_SCRIPTS_isa-sparcv9-garversion-1.0.4 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-1.0.4 = $(libdir) + MERGE_SCRIPTS_isa-sparcv8-garversion-1.1.2 = copy-only MERGE_DIRS_isa-sparcv8-garversion-1.1.2 = $(libdir) MERGE_SCRIPTS_isa-sparcv9-garversion-1.1.2 = copy-relocated-only @@ -97,10 +112,18 @@ CXX := $(abspath ./bin/CC) PATH := ./bin:$(PATH):/usr/ccs/bin +post-patch-isa-i386-garversion-1.0.4: + perl -pi -e "s/-O3 //g" $(WORKSRC)/configure + $(MAKECOOKIE) + post-patch-isa-i386-garversion-1.1.2: perl -pi -e "s/-O2 //g" $(WORKSRC)/configure $(MAKECOOKIE) +post-patch-isa-sparcv8-garversion-1.0.4: + perl -pi -e "s/-O3 //g" $(WORKSRC)/configure + $(MAKECOOKIE) + post-patch-isa-sparcv8-garversion-1.1.2: perl -pi -e "s/-O2 //g" $(WORKSRC)/configure $(MAKECOOKIE) Modified: csw/mgar/pkg/flac/trunk/checksums =================================================================== --- csw/mgar/pkg/flac/trunk/checksums 2009-08-03 07:49:53 UTC (rev 5825) +++ csw/mgar/pkg/flac/trunk/checksums 2009-08-03 08:36:42 UTC (rev 5826) @@ -1,3 +1,4 @@ +b1523e6ad8ef85d1df5b18f20a8cfad6 download/flac-1.0.4.tar.gz 2bfc127cdda02834d0491ab531a20960 download/flac-1.1.2.tar.gz 153c8b15a54da428d1f0fadc756c22c7 download/flac-1.2.1.tar.gz c9e9052e1d1238a21ac6c4ab263d2b7f download/libtool-64bit.patch This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 3 10:39:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 03 Aug 2009 08:39:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5827] csw/mgar/pkg/flac/trunk/Makefile Message-ID: Revision: 5827 http://gar.svn.sourceforge.net/gar/?rev=5827&view=rev Author: dmichelsen Date: 2009-08-03 08:39:35 +0000 (Mon, 03 Aug 2009) Log Message: ----------- flac: Add missing requirements Modified Paths: -------------- csw/mgar/pkg/flac/trunk/Makefile Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 08:36:42 UTC (rev 5826) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 08:39:35 UTC (rev 5827) @@ -44,7 +44,7 @@ CATALOGNAME_CSWxmmsflac = xmms_flac REQUIRED_PKGS_CSWflac = CSWiconv CSWlibogg -REQUIRED_PKGS_CSWxmmsflac = CSWglib CSWgtk CSWxmms CSWflac +REQUIRED_PKGS_CSWxmmsflac = CSWglib CSWgtk CSWxmms CSWflac CSWiconv CSWlibogg SPKG_DESC_CSWflac = Free lossless audio codec SPKG_DESC_CSWxmmsflac = FLAC plugin for XMMS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 3 15:45:06 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 13:45:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5828] csw/mgar/pkg/libatomic_ops/ Message-ID: Revision: 5828 http://gar.svn.sourceforge.net/gar/?rev=5828&view=rev Author: wahwah Date: 2009-08-03 13:45:06 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libatomic-ops: Copying the template Added Paths: ----------- csw/mgar/pkg/libatomic_ops/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 3 15:53:33 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 13:53:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5829] csw/mgar/pkg/libatomic_ops/trunk Message-ID: Revision: 5829 http://gar.svn.sourceforge.net/gar/?rev=5829&view=rev Author: wahwah Date: 2009-08-03 13:53:33 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libatomic_ops: Initial build Modified Paths: -------------- csw/mgar/pkg/libatomic_ops/trunk/Makefile csw/mgar/pkg/libatomic_ops/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch Modified: csw/mgar/pkg/libatomic_ops/trunk/Makefile =================================================================== --- csw/mgar/pkg/libatomic_ops/trunk/Makefile 2009-08-03 13:45:06 UTC (rev 5828) +++ csw/mgar/pkg/libatomic_ops/trunk/Makefile 2009-08-03 13:53:33 UTC (rev 5829) @@ -2,181 +2,19 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = libatomic-ops +GARVERSION = 1.2 CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = Portable library for atomic operations define BLURB - endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://www.hpl.hp.com/research/linux/atomic_ops/ +MASTER_SITES = http://ftp.de.debian.org/debian/pool/main/liba/libatomic-ops/ +PATCHFILES = solaris-$(GARVERSION).patch +DISTFILES = $(GARNAME)_$(GARVERSION).orig.tar.gz $(PATCHFILES) UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. +CATALOGNAME = libatomic_ops +TEST_SCRIPTS = +WORKSRC = $(WORKDIR)/$(CATALOGNAME)-$(GARVERSION) CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +include gar/category.mk Modified: csw/mgar/pkg/libatomic_ops/trunk/checksums =================================================================== --- csw/mgar/pkg/libatomic_ops/trunk/checksums 2009-08-03 13:45:06 UTC (rev 5828) +++ csw/mgar/pkg/libatomic_ops/trunk/checksums 2009-08-03 13:53:33 UTC (rev 5829) @@ -0,0 +1,3 @@ +1b65e48271c81e3fa2d7a9a69bab7504 download/libatomic-ops_1.2.orig.tar.gz +fca04d6cd324073bc97a57480aa80d12 download/solaris-1.2.patch + Added: csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch =================================================================== --- csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch (rev 0) +++ csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch 2009-08-03 13:53:33 UTC (rev 5829) @@ -0,0 +1,61 @@ +diff --git a/src/atomic_ops.h b/src/atomic_ops.h +index c23f30b..084ce91 100755 +--- a/src/atomic_ops.h ++++ b/src/atomic_ops.h +@@ -245,6 +245,12 @@ + # define AO_CAN_EMUL_CAS + #endif + ++#if !defined(__GNUC__) && defined(__sun) && !defined(sparc) \ ++ && !defined(__sparc) ++# include "atomic_ops/sysdeps/sunc/x86.h" ++# define AO_CAN_EMUL_CAS ++#endif ++ + #if defined(_MSC_VER) + # if _M_IX86 >= 400 + # include "atomic_ops/sysdeps/msftc/x86.h" +diff --git a/src/atomic_ops/sysdeps/sunc/x86.h b/src/atomic_ops/sysdeps/sunc/x86.h +new file mode 100644 +index 0000000..3578722 +--- /dev/null ++++ b/src/atomic_ops/sysdeps/sunc/x86.h +@@ -0,0 +1,38 @@ ++/* ++ * Copyright (c) 2004 Hewlett-Packard Development Company, L.P. ++ * ++ * Permission is hereby granted, free of charge, to any person obtaining a copy ++ * of this software and associated documentation files (the "Software"), to deal ++ * in the Software without restriction, including without limitation the rights ++ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ++ * copies of the Software, and to permit persons to whom the Software is ++ * furnished to do so, subject to the following conditions: ++ * ++ * The above copyright notice and this permission notice shall be included in ++ * all copies or substantial portions of the Software. ++ * ++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ++ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ++ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ++ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ++ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE ++ * SOFTWARE. ++ */ ++ ++#include "../all_atomic_load_store.h" ++ ++/* Real SPARC code uses TSO: */ ++#include "../ordered_except_wr.h" ++ ++/* Test_and_set location is just a byte. */ ++#include "../test_and_set_t_is_char.h" ++ ++extern AO_TS_VAL_t ++AO_test_and_set_full(volatile AO_TS_t *addr); ++/* Implemented in separate .S file, for now. */ ++ ++#define AO_HAVE_test_and_set_full ++ ++/* FIXME: Like the gcc version, this needs to be extended for V8 */ ++/* and V9. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 16:05:18 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 14:05:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5830] csw/mgar/pkg/trac/trunk Message-ID: Revision: 5830 http://gar.svn.sourceforge.net/gar/?rev=5830&view=rev Author: rthurner Date: 2009-08-03 14:05:18 +0000 (Mon, 03 Aug 2009) Log Message: ----------- trac: upgrade version to 0.11.5 Modified Paths: -------------- csw/mgar/pkg/trac/trunk/Makefile csw/mgar/pkg/trac/trunk/checksums Modified: csw/mgar/pkg/trac/trunk/Makefile =================================================================== --- csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 13:53:33 UTC (rev 5829) +++ csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 14:05:18 UTC (rev 5830) @@ -1,5 +1,5 @@ GARNAME = Trac -GARVERSION = 0.11.4 +GARVERSION = 0.11.5 CATEGORIES = apps DESCRIPTION = Integrated SCM and Project Management Modified: csw/mgar/pkg/trac/trunk/checksums =================================================================== --- csw/mgar/pkg/trac/trunk/checksums 2009-08-03 13:53:33 UTC (rev 5829) +++ csw/mgar/pkg/trac/trunk/checksums 2009-08-03 14:05:18 UTC (rev 5830) @@ -1 +1 @@ -a765087b22661cf4aa1520518cddecae download/Trac-0.11.4.tar.gz +c8042490096a49478580fd599ad26322 download/Trac-0.11.5.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 Mon Aug 3 16:28:58 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 03 Aug 2009 14:28:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5831] csw/mgar/pkg/clamav/trunk/Makefile Message-ID: Revision: 5831 http://gar.svn.sourceforge.net/gar/?rev=5831&view=rev Author: bonivart Date: 2009-08-03 14:28:58 +0000 (Mon, 03 Aug 2009) Log Message: ----------- clamav: fix missing dep in libclamav Modified Paths: -------------- csw/mgar/pkg/clamav/trunk/Makefile Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2009-08-03 14:05:18 UTC (rev 5830) +++ csw/mgar/pkg/clamav/trunk/Makefile 2009-08-03 14:28:58 UTC (rev 5831) @@ -25,7 +25,7 @@ SPKG_DESC_CSWlibclamav = $(DESCRIPTION) Library REQUIRED_PKGS_CSWclamav = CSWlibclamav CSWzlib CSWbzip2 CSWiconv CSWcswclassutils CSWncurses CSWlibtoolrt -REQUIRED_PKGS_CSWlibclamav = CSWzlib CSWbzip2 CSWiconv +REQUIRED_PKGS_CSWlibclamav = CSWzlib CSWbzip2 CSWiconv CSWlibtoolrt # 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 wahwah at users.sourceforge.net Mon Aug 3 17:27:08 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 15:27:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5832] csw/mgar/pkg/clamav/Makefile Message-ID: Revision: 5832 http://gar.svn.sourceforge.net/gar/?rev=5832&view=rev Author: wahwah Date: 2009-08-03 15:27:08 +0000 (Mon, 03 Aug 2009) Log Message: ----------- clamav: Creating the package-level Makefile Added Paths: ----------- csw/mgar/pkg/clamav/Makefile Copied: csw/mgar/pkg/clamav/Makefile (from rev 5831, csw/mgar/pkg/template/Makefile) =================================================================== --- csw/mgar/pkg/clamav/Makefile (rev 0) +++ csw/mgar/pkg/clamav/Makefile 2009-08-03 15:27:08 UTC (rev 5832) @@ -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 rthurner at users.sourceforge.net Mon Aug 3 17:48:03 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 15:48:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5833] csw/mgar/pkg Message-ID: Revision: 5833 http://gar.svn.sourceforge.net/gar/?rev=5833&view=rev Author: rthurner Date: 2009-08-03 15:48:03 +0000 (Mon, 03 Aug 2009) Log Message: ----------- bazaar: first checkin, still gives compile errors Added Paths: ----------- csw/mgar/pkg/bazaar/ csw/mgar/pkg/bazaar/branches/ csw/mgar/pkg/bazaar/tags/ csw/mgar/pkg/bazaar/trunk/ csw/mgar/pkg/bazaar/trunk/Makefile csw/mgar/pkg/bazaar/trunk/checksums csw/mgar/pkg/bazaar/trunk/files/ Property changes on: csw/mgar/pkg/bazaar/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/bazaar/trunk/Makefile =================================================================== --- csw/mgar/pkg/bazaar/trunk/Makefile (rev 0) +++ csw/mgar/pkg/bazaar/trunk/Makefile 2009-08-03 15:48:03 UTC (rev 5833) @@ -0,0 +1,27 @@ +GARNAME = bzr +GARVERSION = 1.17 +CATEGORIES = devel + +DESCRIPTION = Bazaar is a distributed version control system. +define BLURB + Bazaar is a slow distributed version control system that + "Just Works". While other systems require you to adapt to + their model of working, Bazaar adapts to the way you want + to work, and you can try it out in five minutes. +endef + +MASTER_SITES = http://launchpad.net/bzr/1.17/1.17/+download/ +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 + +REQUIRED_PKGS += CSWcswclassutils + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = $(WORKSRC)/setup.py +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/setup.py +INSTALL_ARGS = --root=$(DESTDIR) + +include gar/category.mk Added: csw/mgar/pkg/bazaar/trunk/checksums =================================================================== --- csw/mgar/pkg/bazaar/trunk/checksums (rev 0) +++ csw/mgar/pkg/bazaar/trunk/checksums 2009-08-03 15:48:03 UTC (rev 5833) @@ -0,0 +1 @@ +d772508e60b47a1641fa487c5cf7e08e download/bzr-1.17.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 18:03:05 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 16:03:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[5834] csw/mgar/pkg/trac/trunk/Makefile Message-ID: Revision: 5834 http://gar.svn.sourceforge.net/gar/?rev=5834&view=rev Author: rthurner Date: 2009-08-03 16:03:04 +0000 (Mon, 03 Aug 2009) Log Message: ----------- trac: update package dependencies, remove clearsilver, pysqlite2, add genshi Modified Paths: -------------- csw/mgar/pkg/trac/trunk/Makefile Modified: csw/mgar/pkg/trac/trunk/Makefile =================================================================== --- csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 15:48:03 UTC (rev 5833) +++ csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 16:03:04 UTC (rev 5834) @@ -15,9 +15,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PACKAGES = CSWtrac -REQUIRED_PKGS_CSWtrac = CSWpycs CSWpydocutils -REQUIRED_PKGS_CSWtrac += CSWpysetuptools CSWpysqlite2 CSWpysvn -REQUIRED_PKGS_CSWtrac += CSWpython +REQUIRED_PKGS_CSWtrac = CSWpysetuptools CSWpysvn CSWgenshi +REQUIRED_PKGS_CSWtrac += CSWpython-rt CATALOGNAME_CSWtrac = trac SPKG_DESC_CSWtrac = Integrated SCM and Project Management This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 18:33:37 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 16:33:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[5835] csw/mgar/pkg/memcached/trunk/ Message-ID: Revision: 5835 http://gar.svn.sourceforge.net/gar/?rev=5835&view=rev Author: rthurner Date: 2009-08-03 16:33:13 +0000 (Mon, 03 Aug 2009) Log Message: ----------- memchached: change to mgar v2 Property Changed: ---------------- csw/mgar/pkg/memcached/trunk/ Property changes on: csw/mgar/pkg/memcached/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 wahwah at users.sourceforge.net Mon Aug 3 18:55:25 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 16:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5836] csw/mgar/pkg/libsamplerate/trunk Message-ID: Revision: 5836 http://gar.svn.sourceforge.net/gar/?rev=5836&view=rev Author: wahwah Date: 2009-08-03 16:55:23 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libsamplerate: mGAR v2 Modified Paths: -------------- csw/mgar/pkg/libsamplerate/trunk/Makefile csw/mgar/pkg/libsamplerate/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/libsamplerate/trunk/ csw/mgar/pkg/libsamplerate/trunk/Makefile Property changes on: csw/mgar/pkg/libsamplerate/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/libsamplerate/trunk/Makefile =================================================================== --- csw/mgar/pkg/libsamplerate/trunk/Makefile 2009-08-03 16:33:13 UTC (rev 5835) +++ csw/mgar/pkg/libsamplerate/trunk/Makefile 2009-08-03 16:55:23 UTC (rev 5836) @@ -1,5 +1,9 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = libsamplerate -GARVERSION = 0.1.2 +GARVERSION = 0.1.7 CATEGORIES = lib DESCRIPTION = Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio @@ -11,14 +15,14 @@ with time for speeding up and slowing down effects. endef -MASTER_SITES = http://www.mega-nerd.com/SRC +MASTER_SITES = http://www.mega-nerd.com/SRC/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibsamplerate,prototype depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PATCHFILES += $(notdir $(wildcard $(FILEDIR)/*.patch)) +REQUIRED_PKGS = CSWlibsndfile +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-static Property changes on: csw/mgar/pkg/libsamplerate/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: csw/mgar/pkg/libsamplerate/trunk/checksums =================================================================== --- csw/mgar/pkg/libsamplerate/trunk/checksums 2009-08-03 16:33:13 UTC (rev 5835) +++ csw/mgar/pkg/libsamplerate/trunk/checksums 2009-08-03 16:55:23 UTC (rev 5836) @@ -1,5 +1,2 @@ -06861c2c6b8e5273c9b80cf736b9fd0e download/libsamplerate-0.1.2.tar.gz -447f7681075c08ba00efe07945251936 download/CSWlibsamplerate.gspec -ee7bfe7b3dcfb0a2ea102bea8ac896e6 download/CSWlibsamplerate.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWlibsamplerate.depend 5f136a391374030efc9027f336a9dcfc download/CSWlibsamplerate.patch +ad093e60ec44f0a60de8e29983ddbc0f download/libsamplerate-0.1.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 19:06:57 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 17:06:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5837] csw/mgar/pkg/bazaar/trunk/Makefile Message-ID: Revision: 5837 http://gar.svn.sourceforge.net/gar/?rev=5837&view=rev Author: rthurner Date: 2009-08-03 17:06:56 +0000 (Mon, 03 Aug 2009) Log Message: ----------- bazaar: introduce patchrev to copy with launchpad download structure Modified Paths: -------------- csw/mgar/pkg/bazaar/trunk/Makefile Modified: csw/mgar/pkg/bazaar/trunk/Makefile =================================================================== --- csw/mgar/pkg/bazaar/trunk/Makefile 2009-08-03 16:55:23 UTC (rev 5836) +++ csw/mgar/pkg/bazaar/trunk/Makefile 2009-08-03 17:06:56 UTC (rev 5837) @@ -1,5 +1,6 @@ GARNAME = bzr GARVERSION = 1.17 +#PATCHREV = .1 CATEGORIES = devel DESCRIPTION = Bazaar is a distributed version control system. @@ -10,11 +11,11 @@ to work, and you can try it out in five minutes. endef -MASTER_SITES = http://launchpad.net/bzr/1.17/1.17/+download/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +MASTER_SITES = http://launchpad.net/bzr/$(GARVERSION)/$(GARVERSION)$(PATHREV)/+download/ +DISTFILES = $(GARNAME)-$(GARVERSION)$(PATHREV).tar.gz # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(GARNAME)$(PATHREV)-(\d+(?:\.\d+)*).tar.gz REQUIRED_PKGS += CSWcswclassutils This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 19:29:19 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 17:29:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5838] csw/mgar/pkg/libevent/trunk Message-ID: Revision: 5838 http://gar.svn.sourceforge.net/gar/?rev=5838&view=rev Author: rthurner Date: 2009-08-03 17:29:19 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libevent: upgrade to libevent-1.4.12 and mgar-v2 Modified Paths: -------------- csw/mgar/pkg/libevent/trunk/Makefile csw/mgar/pkg/libevent/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/libevent/trunk/ Property changes on: csw/mgar/pkg/libevent/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/libevent/trunk/Makefile =================================================================== --- csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:06:56 UTC (rev 5837) +++ csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:29:19 UTC (rev 5838) @@ -1,7 +1,7 @@ GARNAME = libevent -GARVERSION = 1.3 -PATCHREV = e -DISTVERSION = $(GARVERSION)$(PATCHREV) +GARVERSION = 1.4 +PATCHREV = .12 +DISTVERSION = $(GARVERSION)$(PATCHREV)-stable CATEGORIES = lib DESCRIPTION = event notification library @@ -14,31 +14,23 @@ MASTER_SITES = http://www.monkey.org/~provos/ DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibevent,depend prototype) -DISTFILES += $(call admfiles,CSWlibevent-devel,depend prototype) +#DISTFILES += $(call admfiles,CSWlibevent,depend prototype) +#DISTFILES += $(call admfiles,CSWlibevent-devel,depend prototype) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*)-stable.tar.gz -GARCOMPILER = GNU - -# Adjust test.sh shell -PATCHFILES += testsh.diff - -# We have no stdint.h -PATCHFILES += stdint.diff - WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-rtsig +#CONFIGURE_ARGS = $(DIRPATHS) +#CONFIGURE_ARGS += --with-rtsig TEST_TARGET = verify include gar/category.mk -LIBS += -lresolv -lnsl -export LIBS +#LIBS += -lresolv -lnsl +#export LIBS -SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHREV) +#SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHREV) Modified: csw/mgar/pkg/libevent/trunk/checksums =================================================================== --- csw/mgar/pkg/libevent/trunk/checksums 2009-08-03 17:06:56 UTC (rev 5837) +++ csw/mgar/pkg/libevent/trunk/checksums 2009-08-03 17:29:19 UTC (rev 5838) @@ -1,9 +1 @@ -8553ad0f8a35d8d96ae0c69c387e06d3 download/libevent-1.3e.tar.gz -8ea347baf835300219bd88bf73cb2c3f download/CSWlibevent.gspec -10c44d698c6a436c29ff72457a06310f download/CSWlibevent.depend -2274a4bc7557437a88cd3b64de5eece7 download/CSWlibevent.prototype -649dd486e8c26791bbf4b44280bd4e55 download/CSWlibevent-devel.gspec -fb52e1653adbc7d07e97a42dac3bcfee download/CSWlibevent-devel.depend -759d85644ee08b729fc05e471dedaa8c download/CSWlibevent-devel.prototype -efedb74c9c031929d5138c22ac2630d8 download/testsh.diff -a76d6e6d3d07d85f25ac389c441a12f4 download/stdint.diff +77b0d8b9885496871bb083165b35ba11 download/libevent-1.4.12-stable.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 19:52:11 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 17:52:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5839] csw/mgar/pkg/libevent/trunk/Makefile Message-ID: Revision: 5839 http://gar.svn.sourceforge.net/gar/?rev=5839&view=rev Author: rthurner Date: 2009-08-03 17:52:11 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libevent: remove patchrev special treating, rtsig got removed upstream Modified Paths: -------------- csw/mgar/pkg/libevent/trunk/Makefile Modified: csw/mgar/pkg/libevent/trunk/Makefile =================================================================== --- csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:29:19 UTC (rev 5838) +++ csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:52:11 UTC (rev 5839) @@ -1,7 +1,6 @@ GARNAME = libevent -GARVERSION = 1.4 -PATCHREV = .12 -DISTVERSION = $(GARVERSION)$(PATCHREV)-stable +GARVERSION = 1.4.12 +DISTVERSION = $(GARVERSION)-stable CATEGORIES = lib DESCRIPTION = event notification library @@ -22,9 +21,6 @@ WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) -#CONFIGURE_ARGS = $(DIRPATHS) -#CONFIGURE_ARGS += --with-rtsig - TEST_TARGET = verify include gar/category.mk @@ -32,5 +28,3 @@ #LIBS += -lresolv -lnsl #export LIBS -#SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHREV) - 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 Aug 4 10:55:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 04 Aug 2009 08:55:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[5840] csw/mgar/pkg/patchutils/trunk Message-ID: Revision: 5840 http://gar.svn.sourceforge.net/gar/?rev=5840&view=rev Author: dmichelsen Date: 2009-08-04 08:55:04 +0000 (Tue, 04 Aug 2009) Log Message: ----------- patchutils: Enhanced test cases, still not working 100% Modified Paths: -------------- csw/mgar/pkg/patchutils/trunk/Makefile csw/mgar/pkg/patchutils/trunk/checksums Added Paths: ----------- csw/mgar/pkg/patchutils/trunk/files/ csw/mgar/pkg/patchutils/trunk/files/gendiff Modified: csw/mgar/pkg/patchutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-03 17:52:11 UTC (rev 5839) +++ csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-04 08:55:04 UTC (rev 5840) @@ -10,10 +10,13 @@ MASTER_SITES = http://cyberelk.net/tim/data/patchutils/stable/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +# gendiff is needed for the tests +DISTFILES += gendiff + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -PREREQUISITE_PKGS = CSWgnulinks CSWbash +PREREQUISITE_PKGS = CSWgnulinks CSWbash CSWdiffutils SPKG_SOURCEURL = http://cyberelk.net/tim/software/patchutils/ @@ -21,10 +24,19 @@ TEST_TARGET = check +# gendiff is still not found, but the results look otherwise pretty good. +# Ignore for now. +SKIPTEST ?= 1 + include gar/category.mk +# WORKDIR is for gendiff, which is needed for tests but missing on Solaris +PATH := /opt/csw/gnu:$(WORKDIR):$(PATH) + # /bin/bash is too old post-configure-modulated: - find . -type f | fgrep -v fgrep -v .in | \ + find $(WORKSRC) -type f | grep -v '\.in$$' | grep /tests/ | \ xargs perl -pi -e 's,#!/bin/bash,#!/opt/csw/bin/bash,' + find $(WORKSRC) -type f | fgrep -v .in | fgrep tests | \ + xargs perl -pi -e 's,/bin/sh,/opt/csw/bin/bash,' @$(MAKECOOKIE) Modified: csw/mgar/pkg/patchutils/trunk/checksums =================================================================== --- csw/mgar/pkg/patchutils/trunk/checksums 2009-08-03 17:52:11 UTC (rev 5839) +++ csw/mgar/pkg/patchutils/trunk/checksums 2009-08-04 08:55:04 UTC (rev 5840) @@ -1 +1,2 @@ +b68be92ed1e8b917c9ac27833ee1b803 download/gendiff 3fd9bca58a429fbbb1c2126f1b72aa23 download/patchutils-0.3.1.tar.bz2 Added: csw/mgar/pkg/patchutils/trunk/files/gendiff =================================================================== --- csw/mgar/pkg/patchutils/trunk/files/gendiff (rev 0) +++ csw/mgar/pkg/patchutils/trunk/files/gendiff 2009-08-04 08:55:04 UTC (rev 5840) @@ -0,0 +1,21 @@ +#!/opt/csw/bin/bash +# $Owl: Owl/packages/rpm/gendiff,v 1.2 2005/11/16 13:31:51 solar Exp $ + +if [ $# -ne 2 ]; then + echo "Usage: ${0##*/} DIRECTORY DIFF-SUFFIX" >&2 + exit 1 +fi + +find "$1" \( -name "*$2" -o -name ".*$2" \) -print | +while read OP; do + NP="${OP%$2}" + NN="${NP##*/}" + U=-u + [ "$NN" = "ChangeLog" ] && U=-U0 + case "${NN##*.}" in + c|cc|C|cpp) + U=-up + ;; + esac + /opt/csw/bin/gdiff $U "$OP" "$NP" +done Property changes on: csw/mgar/pkg/patchutils/trunk/files/gendiff ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Tue Aug 4 11:35:51 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Tue, 04 Aug 2009 09:35:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5841] csw/mgar/pkg/libevent/trunk/Makefile Message-ID: Revision: 5841 http://gar.svn.sourceforge.net/gar/?rev=5841&view=rev Author: rthurner Date: 2009-08-04 09:35:51 +0000 (Tue, 04 Aug 2009) Log Message: ----------- libevent: make it again install in /opt/csw Modified Paths: -------------- csw/mgar/pkg/libevent/trunk/Makefile Modified: csw/mgar/pkg/libevent/trunk/Makefile =================================================================== --- csw/mgar/pkg/libevent/trunk/Makefile 2009-08-04 08:55:04 UTC (rev 5840) +++ csw/mgar/pkg/libevent/trunk/Makefile 2009-08-04 09:35:51 UTC (rev 5841) @@ -21,6 +21,8 @@ WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) +CONFIGURE_ARGS = $(DIRPATHS) + TEST_TARGET = verify 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 Tue Aug 4 11:38:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 04 Aug 2009 09:38:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5842] csw/mgar/pkg/patchutils/trunk Message-ID: Revision: 5842 http://gar.svn.sourceforge.net/gar/?rev=5842&view=rev Author: dmichelsen Date: 2009-08-04 09:38:48 +0000 (Tue, 04 Aug 2009) Log Message: ----------- patchutils: Force use of csw bash and perl Modified Paths: -------------- csw/mgar/pkg/patchutils/trunk/Makefile csw/mgar/pkg/patchutils/trunk/checksums Added Paths: ----------- csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff Modified: csw/mgar/pkg/patchutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-04 09:35:51 UTC (rev 5841) +++ csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-04 09:38:48 UTC (rev 5842) @@ -13,11 +13,15 @@ # gendiff is needed for the tests DISTFILES += gendiff +PATCHFILES = patch-use-csw-bash.diff + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 PREREQUISITE_PKGS = CSWgnulinks CSWbash CSWdiffutils +REQUIRED_PKGS = CSWbash CSWperl + SPKG_SOURCEURL = http://cyberelk.net/tim/software/patchutils/ CONFIGURE_ARGS = $(DIRPATHS) @@ -36,7 +40,5 @@ # /bin/bash is too old post-configure-modulated: find $(WORKSRC) -type f | grep -v '\.in$$' | grep /tests/ | \ - xargs perl -pi -e 's,#!/bin/bash,#!/opt/csw/bin/bash,' - find $(WORKSRC) -type f | fgrep -v .in | fgrep tests | \ - xargs perl -pi -e 's,/bin/sh,/opt/csw/bin/bash,' + xargs perl -pi.orig -e 's,/bin/sh,/opt/csw/bin/bash,' @$(MAKECOOKIE) Modified: csw/mgar/pkg/patchutils/trunk/checksums =================================================================== --- csw/mgar/pkg/patchutils/trunk/checksums 2009-08-04 09:35:51 UTC (rev 5841) +++ csw/mgar/pkg/patchutils/trunk/checksums 2009-08-04 09:38:48 UTC (rev 5842) @@ -1,2 +1,3 @@ b68be92ed1e8b917c9ac27833ee1b803 download/gendiff +e104b1464e33eb61f6b7cdf2ce9a89a5 download/patch-use-csw-bash.diff 3fd9bca58a429fbbb1c2126f1b72aa23 download/patchutils-0.3.1.tar.bz2 Added: csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff =================================================================== --- csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff (rev 0) +++ csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff 2009-08-04 09:38:48 UTC (rev 5842) @@ -0,0 +1,45 @@ +diff -Naur patchutils-0.3.1.orig/editdiff.in patchutils-0.3.1.patched/editdiff.in +--- patchutils-0.3.1.orig/editdiff.in 2008-06-11 12:01:28.000000000 +0200 ++++ patchutils-0.3.1.patched/editdiff.in 2009-08-04 11:32:58.435884523 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + # + # editdiff - simple wrapper around rediff + # Copyright (C) 2001-2002 Tim Waugh +diff -Naur patchutils-0.3.1.orig/espdiff.in patchutils-0.3.1.patched/espdiff.in +--- patchutils-0.3.1.orig/espdiff.in 2008-06-11 12:01:28.000000000 +0200 ++++ patchutils-0.3.1.patched/espdiff.in 2009-08-04 11:33:03.660183257 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + # + # espdiff - do whatever it was you wanted + # Copyright (C) 2003 Tim Waugh +diff -Naur patchutils-0.3.1.orig/move-to-front patchutils-0.3.1.patched/move-to-front +--- patchutils-0.3.1.orig/move-to-front 2008-06-11 12:01:28.000000000 +0200 ++++ patchutils-0.3.1.patched/move-to-front 2009-08-04 11:33:39.577510591 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + if [ "$#" -eq 0 ] || [ "x$1" == "x--help" ] + then + echo "usage: move-to-front [PATCHES..] PATCH" +diff -Naur patchutils-0.3.1.orig/tests/combine2/run-test patchutils-0.3.1.patched/tests/combine2/run-test +--- patchutils-0.3.1.orig/tests/combine2/run-test 2008-07-02 13:11:08.000000000 +0200 ++++ patchutils-0.3.1.patched/tests/combine2/run-test 2009-08-04 11:33:42.536530871 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + + # This is a combinediff(1) testcase. + +diff -Naur patchutils-0.3.1.orig/tests/combine3/run-test patchutils-0.3.1.patched/tests/combine3/run-test +--- patchutils-0.3.1.orig/tests/combine3/run-test 2008-07-02 13:11:08.000000000 +0200 ++++ patchutils-0.3.1.patched/tests/combine3/run-test 2009-08-04 11:33:45.008706797 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + + # This is a combinediff(1) testcase. + 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 Aug 4 14:19:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 04 Aug 2009 12:19:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5843] csw/mgar/pkg/flac/trunk Message-ID: Revision: 5843 http://gar.svn.sourceforge.net/gar/?rev=5843&view=rev Author: dmichelsen Date: 2009-08-04 12:19:23 +0000 (Tue, 04 Aug 2009) Log Message: ----------- flac: Add patches for x86 assembly Modified Paths: -------------- csw/mgar/pkg/flac/trunk/Makefile csw/mgar/pkg/flac/trunk/checksums Added Paths: ----------- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-08-04 09:38:48 UTC (rev 5842) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-08-04 12:19:23 UTC (rev 5843) @@ -34,15 +34,18 @@ PATCHFILES_isa-sparcv8-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch PATCHFILES_isa-sparcv9-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch -PATCHFILES_isa-i386-garversion-1.1.2 = libtool-64bit.patch +PATCHFILES_isa-i386-garversion-1.0.4 = strip-nasm-1.0.4.patch +PATCHFILES_isa-i386-garversion-1.1.2 = strip-nasm-1.1.2.patch libtool-64bit.patch PATCHFILES_isa-amd64-garversion-1.1.2 = libtool-64bit.patch -PATCHFILES_isa-i386-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch +PATCHFILES_isa-i386-garversion-1.2.1 = strip-nasm-1.2.1.patch libtool-64bit.patch no-stdint.patch PATCHFILES_isa-amd64-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch PACKAGES = CSWflac CSWxmmsflac CATALOGNAME_CSWflac = libflac CATALOGNAME_CSWxmmsflac = xmms_flac +PREREQUISITE_PKGS = CSWbash CSWnasm + REQUIRED_PKGS_CSWflac = CSWiconv CSWlibogg REQUIRED_PKGS_CSWxmmsflac = CSWglib CSWgtk CSWxmms CSWflac CSWiconv CSWlibogg Modified: csw/mgar/pkg/flac/trunk/checksums =================================================================== --- csw/mgar/pkg/flac/trunk/checksums 2009-08-04 09:38:48 UTC (rev 5842) +++ csw/mgar/pkg/flac/trunk/checksums 2009-08-04 12:19:23 UTC (rev 5843) @@ -3,3 +3,6 @@ 153c8b15a54da428d1f0fadc756c22c7 download/flac-1.2.1.tar.gz c9e9052e1d1238a21ac6c4ab263d2b7f download/libtool-64bit.patch e3144fad8810ceaca718adb6f09dc8fa download/no-stdint.patch +03e0502642d568b5b004f69328485720 download/strip-nasm-1.0.4.patch +394225d96661019d32cc0ebfdad3d377 download/strip-nasm-1.1.2.patch +64e7f447c2ca09ec041e6740a209291d download/strip-nasm-1.2.1.patch Added: csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch =================================================================== --- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch (rev 0) +++ csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch 2009-08-04 12:19:23 UTC (rev 5843) @@ -0,0 +1,32 @@ +diff -Naur flac-1.0.4.orig/src/libFLAC/ia32/Makefile.in flac-1.0.4.patched/src/libFLAC/ia32/Makefile.in +--- flac-1.0.4.orig/src/libFLAC/ia32/Makefile.in 2002-09-25 06:53:37.000000000 +0200 ++++ flac-1.0.4.patched/src/libFLAC/ia32/Makefile.in 2009-08-03 11:12:29.197650544 +0200 +@@ -134,7 +134,7 @@ + + SUFFIXES = .nasm .lo + +-STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh ++STRIP_FPIC = /opt/csw/bin/bash $(top_srcdir)/strip_fPIC.sh + + noinst_LTLIBRARIES = libFLAC-asm.la + libFLAC_asm_la_SOURCES = \ +diff -Naur flac-1.0.4.orig/strip_fPIC.sh flac-1.0.4.patched/strip_fPIC.sh +--- flac-1.0.4.orig/strip_fPIC.sh 2002-08-26 21:21:52.000000000 +0200 ++++ flac-1.0.4.patched/strip_fPIC.sh 2009-08-03 11:12:00.031237509 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/opt/csw/bin/bash + # + # libtool assumes that the compiler can handle the -fPIC flag + # This isn't always true (for example, nasm can't handle it) +@@ -6,8 +6,10 @@ + while [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then ++ if [ "$1" != "-KPIC" ]; then + command="$command $1" + fi ++ fi + fi + shift + done Added: csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch =================================================================== --- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch (rev 0) +++ csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch 2009-08-04 12:19:23 UTC (rev 5843) @@ -0,0 +1,34 @@ +diff -Naur flac-1.1.2.orig/src/libFLAC/ia32/Makefile.in flac-1.1.2.patched/src/libFLAC/ia32/Makefile.in +--- flac-1.1.2.orig/src/libFLAC/ia32/Makefile.in 2005-02-05 03:23:38.000000000 +0100 ++++ flac-1.1.2.patched/src/libFLAC/ia32/Makefile.in 2009-08-04 09:37:40.159783125 +0200 +@@ -253,7 +253,7 @@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + SUFFIXES = .nasm .lo +-STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh ++STRIP_NON_ASM = /opt/csw/bin/bash $(top_srcdir)/strip_non_asm_libtool_args.sh + noinst_LTLIBRARIES = libFLAC-asm.la + libFLAC_asm_la_SOURCES = \ + cpu_asm.nasm \ +diff -Naur flac-1.1.2.orig/strip_non_asm_libtool_args.sh flac-1.1.2.patched/strip_non_asm_libtool_args.sh +--- flac-1.1.2.orig/strip_non_asm_libtool_args.sh 2004-07-29 08:52:52.000000000 +0200 ++++ flac-1.1.2.patched/strip_non_asm_libtool_args.sh 2009-08-04 09:38:06.129792997 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/opt/csw/bin/bash + # + # libtool assumes that the compiler can handle the -fPIC flag. + # This isn't always true (for example, nasm can't handle it). +@@ -8,10 +8,12 @@ + while [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then ++ if [ "$1" != "-KPIC" ]; then + if [ "$1" != "-fno-common" ]; then + command="$command $1" + fi + fi ++ fi + fi + shift + done Added: csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch =================================================================== --- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch (rev 0) +++ csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch 2009-08-04 12:19:23 UTC (rev 5843) @@ -0,0 +1,34 @@ +diff -Naur flac-1.2.1.orig/src/libFLAC/ia32/Makefile.in flac-1.2.1.patched/src/libFLAC/ia32/Makefile.in +--- flac-1.2.1.orig/src/libFLAC/ia32/Makefile.in 2007-09-16 22:05:12.000000000 +0200 ++++ flac-1.2.1.patched/src/libFLAC/ia32/Makefile.in 2009-08-04 13:31:07.693331268 +0200 +@@ -234,7 +234,7 @@ + + SUFFIXES = .nasm .lo + +-STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh ++STRIP_NON_ASM = /opt/csw/bin/bash $(top_srcdir)/strip_non_asm_libtool_args.sh + + noinst_LTLIBRARIES = libFLAC-asm.la + libFLAC_asm_la_SOURCES = \ +diff -Naur flac-1.2.1.orig/strip_non_asm_libtool_args.sh flac-1.2.1.patched/strip_non_asm_libtool_args.sh +--- flac-1.2.1.orig/strip_non_asm_libtool_args.sh 2004-07-29 08:43:23.000000000 +0200 ++++ flac-1.2.1.patched/strip_non_asm_libtool_args.sh 2009-08-04 13:30:46.782902121 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/opt/csw/bin/bash + # + # libtool assumes that the compiler can handle the -fPIC flag. + # This isn't always true (for example, nasm can't handle it). +@@ -8,10 +8,12 @@ + while [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then ++ if [ "$1" != "-KPIC" ]; then + if [ "$1" != "-fno-common" ]; then + command="$command $1" + fi + fi ++ fi + fi + shift + done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Tue Aug 4 16:08:36 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Tue, 04 Aug 2009 14:08:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5844] csw/mgar/pkg/libserf/trunk/Makefile Message-ID: Revision: 5844 http://gar.svn.sourceforge.net/gar/?rev=5844&view=rev Author: rthurner Date: 2009-08-04 14:08:35 +0000 (Tue, 04 Aug 2009) Log Message: ----------- libserf: add references, except CSWbdb, as this is an error which will be fixed with apr-1.3.7 Modified Paths: -------------- csw/mgar/pkg/libserf/trunk/Makefile Modified: csw/mgar/pkg/libserf/trunk/Makefile =================================================================== --- csw/mgar/pkg/libserf/trunk/Makefile 2009-08-04 12:19:23 UTC (rev 5843) +++ csw/mgar/pkg/libserf/trunk/Makefile 2009-08-04 14:08:35 UTC (rev 5844) @@ -15,15 +15,11 @@ MASTER_SITES = http://serf.googlecode.com/files/ DISTFILES = $(DISTNAME).tar.bz2 +REQUIRED_PKGS_CSWlibserf = CSWapache2rt CSWexpat CSWiconv CSWoldaprt CSWosslrt CSWzlib + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(DISTNAME)-(\d+(?:\.\d+)*).tar.bz2 -# If the url used to check for software update is different of MASTER_SITES, then -# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES -# UPSTREAM_MASTER_SITES = - -DEPENDS = server/apache2rt - CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-apr=$(prefix)/apache2/bin/apr-config CONFIGURE_ARGS += --with-apr-util=$(prefix)/apache2/bin/apu-config @@ -31,7 +27,7 @@ TEST_TARGET = check include gar/category.mk -EXTRA_LDFLAGS = -R/opt/csw/bdb44/lib +#EXTRA_LDFLAGS = -R/opt/csw/bdb44/lib APR_LIBTOOL = $(shell /opt/csw/apache2/bin/apr-config --apr-libtool) post-configure-modulated: gcp $(APR_LIBTOOL) $(WORKSRC) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Tue Aug 4 17:12:45 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:12:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5845] csw/mgar/pkg/cpan Message-ID: Revision: 5845 http://gar.svn.sourceforge.net/gar/?rev=5845&view=rev Author: skayser Date: 2009-08-04 15:12:45 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Net-NIS: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Net-NIS/ csw/mgar/pkg/cpan/Net-NIS/branches/ csw/mgar/pkg/cpan/Net-NIS/tags/ csw/mgar/pkg/cpan/Net-NIS/trunk/ csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile csw/mgar/pkg/cpan/Net-NIS/trunk/checksums csw/mgar/pkg/cpan/Net-NIS/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Net-NIS/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/Net-NIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile 2009-08-04 15:12:45 UTC (rev 5845) @@ -0,0 +1,13 @@ +GARNAME = Net-NIS +GARVERSION = 0.43 +CATEGORIES = cpan +AUTHOR = ESM + +DESCRIPTION = Interface to Sun's Network Information Service +define BLURB + Long description +endef + +PACKAGES = CSWpmnetnis +CATALOGNAME = pm_netnis +include gar/category.mk Added: csw/mgar/pkg/cpan/Net-NIS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/checksums 2009-08-04 15:12:45 UTC (rev 5845) @@ -0,0 +1 @@ +c0f7a0784f1b3b078c423207d40f49ea download/Net-NIS-0.43.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 Tue Aug 4 17:26:56 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:26:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5846] csw/mgar/pkg/cpan/Net-NIS/trunk Message-ID: Revision: 5846 http://gar.svn.sourceforge.net/gar/?rev=5846&view=rev Author: skayser Date: 2009-08-04 15:26:56 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Net-NIS: Add changelog, add dep to SUNWnisu for ypcat Modified Paths: -------------- csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW Modified: csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile 2009-08-04 15:12:45 UTC (rev 5845) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile 2009-08-04 15:26:56 UTC (rev 5846) @@ -10,4 +10,13 @@ PACKAGES = CSWpmnetnis CATALOGNAME = pm_netnis + +REQUIRED_PKGS = SUNWnisu + include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW 2009-08-04 15:26:56 UTC (rev 5846) @@ -0,0 +1,5 @@ +pm_netnis (0.43,REV=2009.08.04) + + * Initial release. + + -- Sebastian Kayser Tue, 4 Aug 2009 17:22:29 +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 Tue Aug 4 17:44:33 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:44:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5847] csw/mgar/pkg/cpan Message-ID: Revision: 5847 http://gar.svn.sourceforge.net/gar/?rev=5847&view=rev Author: skayser Date: 2009-08-04 15:44:33 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Apache2-AuthzNIS: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Apache2-AuthzNIS/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/branches/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/tags/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/cpan/Apache2-AuthzNIS/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/Apache2-AuthzNIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile 2009-08-04 15:44:33 UTC (rev 5847) @@ -0,0 +1,23 @@ +GARNAME = Apache2-AuthzNIS +GARVERSION = 0.13 +CATEGORIES = cpan +AUTHOR = ITEAHAUS + +DESCRIPTION = mod_perl2 NIS Group Authorization module +define BLURB + Long description +endef + +PACKAGES = CSWpmap2authznis +CATALOGNAME = pm_ap2authznis +ARCHALL = 1 + +REQUIRED_PKGS = CSWpmnetnis + +include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums 2009-08-04 15:44:33 UTC (rev 5847) @@ -0,0 +1 @@ +109e4f89077788ce0ad256be37d0f1fc download/Apache2-AuthzNIS-0.13.tar.gz Added: csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW 2009-08-04 15:44:33 UTC (rev 5847) @@ -0,0 +1,5 @@ +pm_ap2authznis (0.13,REV=2009.08.04) + + * Initial release. + + -- Sebastian Kayser Tue, 4 Aug 2009 17:38:19 +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 Tue Aug 4 17:53:46 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:53:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5848] csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile Message-ID: Revision: 5848 http://gar.svn.sourceforge.net/gar/?rev=5848&view=rev Author: skayser Date: 2009-08-04 15:53:46 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Apache2-AuthzNIS: added dep on ap2_modperl Modified Paths: -------------- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile Modified: csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile 2009-08-04 15:44:33 UTC (rev 5847) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile 2009-08-04 15:53:46 UTC (rev 5848) @@ -12,7 +12,7 @@ CATALOGNAME = pm_ap2authznis ARCHALL = 1 -REQUIRED_PKGS = CSWpmnetnis +REQUIRED_PKGS = CSWpmnetnis CSWap2_modperl include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From ellson at users.sourceforge.net Tue Aug 4 19:41:18 2009 From: ellson at users.sourceforge.net (ellson at users.sourceforge.net) Date: Tue, 04 Aug 2009 17:41:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5849] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: Revision: 5849 http://gar.svn.sourceforge.net/gar/?rev=5849&view=rev Author: ellson Date: 2009-08-04 17:41:18 +0000 (Tue, 04 Aug 2009) Log Message: ----------- update to cairo-1.8.8 Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-08-04 15:53:46 UTC (rev 5848) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-08-04 17:41:18 UTC (rev 5849) @@ -1,5 +1,5 @@ GARNAME = libcairo -GARVERSION = 1.8.6 +GARVERSION = 1.8.8 CATEGORIES = lib DESCRIPTION = The Cairo 2D Graphics Library This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From ellson at users.sourceforge.net Tue Aug 4 19:45:47 2009 From: ellson at users.sourceforge.net (ellson at users.sourceforge.net) Date: Tue, 04 Aug 2009 17:45:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5850] csw/mgar/pkg/libcairo/trunk/checksums Message-ID: Revision: 5850 http://gar.svn.sourceforge.net/gar/?rev=5850&view=rev Author: ellson Date: 2009-08-04 17:45:41 +0000 (Tue, 04 Aug 2009) Log Message: ----------- update checksums for cairo-1.8.8 Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/checksums Modified: csw/mgar/pkg/libcairo/trunk/checksums =================================================================== --- csw/mgar/pkg/libcairo/trunk/checksums 2009-08-04 17:41:18 UTC (rev 5849) +++ csw/mgar/pkg/libcairo/trunk/checksums 2009-08-04 17:45:41 UTC (rev 5850) @@ -1,4 +1 @@ -4e64139ef6f668df24450f3b81dd0771 download/cairo-1.8.6.tar.gz -f3fb20251979667412e927160a5bcf78 download/CSWlibcairo.gspec -09a9ca79e382ac8cce6a7bce757a362e download/CSWlibcairodevel.gspec -8e110a0776ce7b62c01d4d721d2cc7b7 download/CSWlibcairodoc.gspec +d3e1a1035ae563812d4dd44a74fb0dd0 download/cairo-1.8.8.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 Aug 4 21:13:08 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 04 Aug 2009 19:13:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5851] csw/mgar/pkg/unbound/trunk Message-ID: Revision: 5851 http://gar.svn.sourceforge.net/gar/?rev=5851&view=rev Author: idogan23 Date: 2009-08-04 19:13:07 +0000 (Tue, 04 Aug 2009) Log Message: ----------- unbound: bump version to 1.3.3 Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile csw/mgar/pkg/unbound/trunk/checksums Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 17:45:41 UTC (rev 5850) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:13:07 UTC (rev 5851) @@ -1,5 +1,5 @@ GARNAME = unbound -GARVERSION = 1.3.2 +GARVERSION = 1.3.3 CATEGORIES = server DESCRIPTION = A validating, recursive, and caching DNS resolver Modified: csw/mgar/pkg/unbound/trunk/checksums =================================================================== --- csw/mgar/pkg/unbound/trunk/checksums 2009-08-04 17:45:41 UTC (rev 5850) +++ csw/mgar/pkg/unbound/trunk/checksums 2009-08-04 19:13:07 UTC (rev 5851) @@ -1,4 +1,4 @@ 90405f880273db5036c2ebf2e881b998 download/CSWunbound.gspec 75867432e238f5afd48dfe5d138097e9 download/cswunbound 601effee1051487655f66790762b66fd download/cswusergroup -1aa735c95cff3d8bdec39b54ced7dd3d download/unbound-1.3.2.tar.gz +f6b2b2c375288dfd2a03c4a36676221e download/unbound-1.3.3.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 Aug 4 21:29:12 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 04 Aug 2009 19:29:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5852] csw/mgar/pkg/unbound/trunk Message-ID: Revision: 5852 http://gar.svn.sourceforge.net/gar/?rev=5852&view=rev Author: idogan23 Date: 2009-08-04 19:29:12 +0000 (Tue, 04 Aug 2009) Log Message: ----------- unbound: removed gspec file Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:13:07 UTC (rev 5851) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:29:12 UTC (rev 5852) @@ -9,9 +9,13 @@ a server, but are linked into an application) are easily possible. endef +TEST_SCRIPTS = +PACKAGES = CSWunbound +CATALOGNAME = unbound +LICENSE = LICENSE + MASTER_SITES = http://unbound.net/downloads/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWunbound) DISTFILES += cswunbound DISTFILES += cswusergroup Deleted: csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec =================================================================== --- csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec 2009-08-04 19:13:07 UTC (rev 5851) +++ csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec 2009-08-04 19:29:12 UTC (rev 5852) @@ -1,4 +0,0 @@ -%var bitname unbound -%var pkgname CSWunbound -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue Aug 4 21:56:06 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 04 Aug 2009 19:56:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5853] csw/mgar/pkg/unbound/trunk/Makefile Message-ID: Revision: 5853 http://gar.svn.sourceforge.net/gar/?rev=5853&view=rev Author: idogan23 Date: 2009-08-04 19:56:06 +0000 (Tue, 04 Aug 2009) Log Message: ----------- unbound: oups, forgot something to remove Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:29:12 UTC (rev 5852) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:56:06 UTC (rev 5853) @@ -9,7 +9,6 @@ a server, but are linked into an application) are easily possible. endef -TEST_SCRIPTS = PACKAGES = CSWunbound CATALOGNAME = unbound LICENSE = LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Aug 5 11:01:25 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 09:01:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5854] csw/mgar/pkg/perl/trunk Message-ID: Revision: 5854 http://gar.svn.sourceforge.net/gar/?rev=5854&view=rev Author: bonivart Date: 2009-08-05 09:01:24 +0000 (Wed, 05 Aug 2009) Log Message: ----------- perl: use bdb47 and update some core modules including Storable Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile csw/mgar/pkg/perl/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/perl/trunk/ Property changes on: csw/mgar/pkg/perl/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 Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-04 19:56:06 UTC (rev 5853) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 09:01:24 UTC (rev 5854) @@ -1,5 +1,5 @@ GARNAME = perl -GARVERSION = 5.10.0 +GARVERSION = 5.8.8 CATEGORIES = lang DESCRIPTION = A high-level, general-purpose programming language @@ -12,47 +12,47 @@ libraries. endef -#MASTER_SITES = http://search.cpan.org/CPAN/authors/id/N/NW/NWCLARK/ -#SPKG_SOURCEURL = http://search.cpan.org/~nwclark/perl/ MASTER_SITES = http://www.cpan.org/src/ SPKG_SOURCEURL = http://www.cpan.org/src DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -#DISTFILES += $(call admfiles,CSWperl,depend prototype) -#DISTFILES += $(call admfiles,CSWperldoc,depend prototype) PACKAGES = CSWperl CSWperldoc ARCHALL_CSWperldoc = 1 -REQUIRED_PKGS_CSWperl = CSWbdb44 CSWgdbm +#REQUIRED_PKGS_CSWperl = CSWbdb44 CSWgdbm +REQUIRED_PKGS_CSWperl = CSWbdb CSWgdbm REQUIRED_PKGS_CSWperldoc = CSWperl -PKGFILES_CSWperldoc = $(PKGFILES_DOC) - # Core module updates -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/K/KW/KWILLIAMS/ -#CORE_UPDATES += PathTools-3.25 -#CORE_OBSOLETE += Cwd.pm File/Spec* auto/Cwd +MASTER_SITES += $(CPAN_FIRST_MIRROR)/S/SM/SMUELLER/ +CORE_UPDATES += PathTools-3.30 +CORE_OBSOLETE += Cwd.pm File/Spec* auto/Cwd -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/L/LD/LDS/ -#CORE_UPDATES += CGI.pm-3.29 -#CORE_OBSOLETE += CGI* +MASTER_SITES += $(CPAN_FIRST_MIRROR)/L/LD/LDS/ +CORE_UPDATES += CGI.pm-3.44 +CORE_OBSOLETE += CGI* -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ -#CORE_UPDATES += Test-Simple-0.72 -#CORE_OBSOLETE += Test/Builder* Test/More.pm Test/Simple.pm Test/Tutorial.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ +CORE_UPDATES += Test-Simple-0.92 +CORE_OBSOLETE += Test/Builder* Test/More.pm Test/Simple.pm Test/Tutorial.pm -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/T/TJ/TJENNESS/ -#CORE_UPDATES += File-Temp-0.18 -#CORE_OBSOLETE += File/Temp.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/T/TJ/TJENNESS/ +CORE_UPDATES += File-Temp-0.22 +CORE_OBSOLETE += File/Temp.pm -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/G/GB/GBARR/ -#CORE_UPDATES += IO-1.2301 -#CORE_OBSOLETE += IO/Socket* IO/IO* IO/Socket.pm IO/Select.pm IO/Seekable.pm IO/Poll.pm IO/Pipe.pm IO/Handle.pm IO/File.pm IO/Dir.pm IO.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/G/GB/GBARR/ +CORE_UPDATES += IO-1.25 +CORE_OBSOLETE += IO/Socket* IO/IO* IO/Socket.pm IO/Select.pm IO/Seekable.pm IO/Poll.pm IO/Pipe.pm IO/Handle.pm IO/File.pm IO/Dir.pm IO.pm -#DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) +MASTER_SITES += $(CPAN_FIRST_MIRROR)/A/AM/AMS/ +CORE_UPDATES += Storable-2.20 +CORE_OBSOLETE += Storable/* Storable.pm +DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) + # Dependencies -LIBDEPS += lib/bdb44 +#LIBDEPS += lib/bdb44 +LIBDEPS += lib/bdb47 LIBDEPS += lib/gdbm # Custom configure @@ -64,7 +64,9 @@ INC_COMPAT = $(foreach REV,$(PL_PATCH),$(PL_MAJOR).$(REV)) # Force use of db-4.4 -PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.4 -ldl -lm -lpthread -lc +#PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.4 -ldl -lm -lpthread -lc +# Force use of db-4.7 +PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.7 -ldl -lm -lpthread -lc -lperl # Configuration flags CONFIGURE_ARGS += -Darchlib=$(libdir)/perl/$(GARVERSION) @@ -99,12 +101,16 @@ CONFIGURE_ARGS += -Dvendorlib=$(datadir)/perl/csw CONFIGURE_ARGS += -Dvendorprefix=$(prefix) CONFIGURE_ARGS += -Dlibs="$(PERL_LIBS)" -CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/bdb44/lib /opt/csw/lib" +#CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/bdb44/lib /opt/csw/lib" +CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/lib" CONFIGURE_ARGS += -Dsed=$(bindir)/gsed -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include +#EXTRA_LIB += $(prefix)/bdb44/lib +#EXTRA_INC += $(prefix)/bdb44/include +EXTRA_MERGE_EXCLUDE_FILES = perllocal.pod +PKGFILES_CSWperldoc = $(PKGFILES_DOC) + # Tests take a long time TEST_SCRIPTS = @@ -131,6 +137,18 @@ ln -s libperl.so.$(GARVERSION) libperl.so.$(LIB_MINOR) ; \ ln -s libperl.so.$(GARVERSION) libperl.so ) @$(MAKECOOKIE) +# echo YOUAREHERE +# ( cd $(DESTDIR)$(libdir)/perl/$(GARVERSION)/${TARGET}/CORE ; \ +# chmod 755 libperl.so.$(GARVERSION) ; \ +# rm libperl.so.$(LIB_MINOR) libperl.so ; \ +# ln -s libperl.so.$(GARVERSION) libperl.so.$(LIB_MINOR) ; \ +# ln -s libperl.so.$(GARVERSION) libperl.so ) +# ( cd $(DESTDIR)$(libdir)/perl/$(GARVERSION)/${TARGET} ; \ +# rm libperl* ; \ +# ln -s CORE/libperl.so.$(GARVERSION) libperl.so.$(GARVERSION) ; \ +# ln -s CORE/libperl.so.$(GARVERSION) libperl.so.$(LIB_MINOR) ; \ +# ln -s CORE/libperl.so.$(GARVERSION) libperl.so ) +# $(MAKECOOKIE) # Remove build paths from Config POST_TARGETS += perlconf @@ -156,5 +174,8 @@ @$(MAKECOOKIE) # Invoke post-install targets -post-install: $(POST_TARGETS) +#post-install: $(POST_TARGETS) +post-install-modulated: $(POST_TARGETS) + echo $(DESTDIR) + @rm $(DESTDIR)/opt/csw/lib/perl/5.8.8/perllocal.pod @$(MAKECOOKIE) Modified: csw/mgar/pkg/perl/trunk/checksums =================================================================== --- csw/mgar/pkg/perl/trunk/checksums 2009-08-04 19:56:06 UTC (rev 5853) +++ csw/mgar/pkg/perl/trunk/checksums 2009-08-05 09:01:24 UTC (rev 5854) @@ -1,7 +1,7 @@ -563e035ff1c5b010e539add95a61d219 download/CSWperl.depend -c89c0ccbc325f496da5c21c581d4a156 download/CSWperl.gspec -54aef7ec0bbc9b121e026ffafcd7bb69 download/CSWperl.prototype -fd19c6295f6211062d4e4cdd93bc3278 download/CSWperldoc.depend -a3592ece1e424b77e0ea21153da7d817 download/CSWperldoc.gspec -aa50ae7a4f2dfc64c217b2d5b763be8d download/CSWperldoc.prototype -d2c39b002ebfd2c3c5dba589365c5a71 download/perl-5.10.0.tar.gz +d1b217a7a2463d5543d25490ff1b3d14 download/CGI.pm-3.44.tar.gz +a7e93cf2015881ded1f22b5b2d0cb391 download/File-Temp-0.22.tar.gz +b88aaf2bb7437725b11e9eb48dfb6c93 download/IO-1.25.tar.gz +18a72d6a66bb62ce9bbb422dfa41181a download/PathTools-3.30.tar.gz +2ba3f963daf86c1172cd7bbbd47891be download/Storable-2.20.tar.gz +eaafa92c9a21c4290dd9d0752bb744b0 download/Test-Simple-0.92.tar.gz +b8c118d4360846829beb30b02a6b91a7 download/perl-5.8.8.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 Wed Aug 5 13:12:29 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 11:12:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[5855] csw/mgar/pkg/bind/branches Message-ID: Revision: 5855 http://gar.svn.sourceforge.net/gar/?rev=5855&view=rev Author: bonivart Date: 2009-08-05 11:12:29 +0000 (Wed, 05 Aug 2009) Log Message: ----------- bind: commit stable branch with 9.4.3-P3 Modified Paths: -------------- csw/mgar/pkg/bind/branches/stable/checksums Added Paths: ----------- csw/mgar/pkg/bind/branches/stable/ csw/mgar/pkg/bind/branches/stable/Makefile Removed Paths: ------------- csw/mgar/pkg/bind/branches/stable/Makefile Deleted: csw/mgar/pkg/bind/branches/stable/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-07-31 08:12:00 UTC (rev 5762) +++ csw/mgar/pkg/bind/branches/stable/Makefile 2009-08-05 11:12:29 UTC (rev 5855) @@ -1,92 +0,0 @@ -GARNAME = bind -GARVERSION = 9.6.1 -RELEASE = P1 -DISTVERSION = $(GARVERSION)-$(RELEASE) -DISTNAME = $(GARNAME)-$(DISTVERSION) -WORKSRC = $(WORKDIR)/$(DISTNAME) -CATEGORIES = net - -DESCRIPTION = ISC BIND DNS reference implementation -define BLURB - BIND is open-source software that implements the Domain Name System (DNS) - protocols for the Internet. It is a reference implementation of those - protocols, but it is also production-grade software, suitable for use in - high-volume and high-reliability applications. -endef - -MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)-$(RELEASE)/ -DISTFILES = $(GARNAME)-$(GARVERSION)-$(RELEASE).tar.gz -#MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)/ -#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz - -PACKAGES = CSWbind CSWbinddevel CSWlibbind CSWbindutils - -CATALOGNAME_CSWbinddevel = bind_devel -CATALOGNAME_CSWbindutils = bind_utils - -ARCHALL_CSWbinddevel = 1 - -LICENSE = COPYRIGHT - -SPKG_DESC_CSWbind = ISC BIND DNS main package -SPKG_DESC_CSWbinddevel = ISC BIND DNS development package -SPKG_DESC_CSWlibbind = ISC BIND DNS library package -SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package - -REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils -REQUIRED_PKGS_CSWbinddevel = CSWbind -REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib -REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt - -# We define upstream file regex so we can be notifed of new upstream software release -UPSTREAM_MASTER_SITES = http://ftp.isc.org/isc/bind9/ -UFILES_REGEX = (\d+(?:\.\d+)*) - -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-libtool -CONFIGURE_ARGS += --with-openssl=/opt/csw -CONFIGURE_ARGS += --enable-threads -CONFIGURE_ARGS += --enable-largefile -CONFIGURE_ARGS += --sysconfdir=/etc/opt/csw -CONFIGURE_ARGS += --localstatedir=/var/opt/csw/named - -EXTRA_MERGE_EXCLUDE_FILES = .*~ $(libdir)/.*\.a $(libdir)/.*\.la - -PKGFILES_CSWbinddevel = $(PKGFILES_DEVEL) -PKGFILES_CSWlibbind = $(libdir)/.* -PKGFILES_CSWbindutils = $(bindir)/.* - -# checkpkg can't handle split packages -ENABLE_CHECK = 0 - -INSTALL_SCRIPTS = custom - -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~ /\/init.d\/cswnamed$$$$/ { $$$$2 = "cswinitsmf" } \ - $$$$3 ~ /\/named.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ - $$$$3 ~ /\/var\/opt\/csw\/named/ { $$$$5 = "named" ; $$$$2 = "ugfiles" } \ - $$$$3 ~ /\/CSWbind\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } \ - { print }' - -SPKG_SOURCEURL = http://www.isc.org/software/bind -SPKG_CLASSES_CSWbind = none cswusergroup cswugfiles cswcpsampleconf cswinitsmf - -include gar/category.mk - -SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) - -DOCLIST = README.CSW db.127.0.0 db.localhost named.conf named.root rndc.key - -install-custom: - @echo " ==> Installing $(GARNAME) (custom)" - @ginstall -d $(DESTDIR)/etc/opt/csw/init.d - @cp $(FILEDIR)/CSWbind.cswnamed $(DESTDIR)/etc/opt/csw/init.d/cswnamed - @cp $(FILEDIR)/CSWbind.named.conf.CSW $(DESTDIR)/etc/opt/csw/named.conf.CSW - @ginstall -d $(DESTDIR)/opt/csw/etc/CSWbind - @cp $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/CSWbind/ - @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) - @$(foreach DOC,$(DOCLIST),cp $(FILEDIR)/$(DOC) $(DESTDIR)$(docdir)/$(GARNAME);) - ( cd $(WORKSRC) ; \ - gmake DESTDIR=$(DESTDIR) install ) - @touch $(DESTDIR)/var/opt/csw/named/named.pid - @$(MAKECOOKIE) Copied: csw/mgar/pkg/bind/branches/stable/Makefile (from rev 5782, csw/mgar/pkg/bind/trunk/Makefile) =================================================================== --- csw/mgar/pkg/bind/branches/stable/Makefile (rev 0) +++ csw/mgar/pkg/bind/branches/stable/Makefile 2009-08-05 11:12:29 UTC (rev 5855) @@ -0,0 +1,93 @@ +GARNAME = bind +GARVERSION = 9.4.3 +RELEASE = P3 +DISTVERSION = $(GARVERSION)-$(RELEASE) +DISTNAME = $(GARNAME)-$(DISTVERSION) +WORKSRC = $(WORKDIR)/$(DISTNAME) +CATEGORIES = net + +DESCRIPTION = ISC BIND DNS reference implementation +define BLURB + BIND is open-source software that implements the Domain Name System (DNS) + protocols for the Internet. It is a reference implementation of those + protocols, but it is also production-grade software, suitable for use in + high-volume and high-reliability applications. +endef + +MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)-$(RELEASE)/ +DISTFILES = $(GARNAME)-$(GARVERSION)-$(RELEASE).tar.gz +#MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)/ +#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWbind CSWbinddevel CSWlibbind CSWbindutils + +CATALOGNAME_CSWbinddevel = bind_devel +CATALOGNAME_CSWbindutils = bind_utils + +ARCHALL_CSWbinddevel = 1 + +LICENSE = COPYRIGHT + +SPKG_DESC_CSWbind = ISC BIND DNS main package +SPKG_DESC_CSWbinddevel = ISC BIND DNS development package +SPKG_DESC_CSWlibbind = ISC BIND DNS library package +SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package + +REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils +REQUIRED_PKGS_CSWbinddevel = CSWbind +REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib +REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = http://ftp.isc.org/isc/bind9/ +UFILES_REGEX = (\d+(?:\.\d+)*) + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-libtool +CONFIGURE_ARGS += --with-openssl=/opt/csw +CONFIGURE_ARGS += --enable-threads +CONFIGURE_ARGS += --enable-largefile +CONFIGURE_ARGS += --sysconfdir=/etc/opt/csw +CONFIGURE_ARGS += --localstatedir=/var/opt/csw/named + +EXTRA_MERGE_EXCLUDE_FILES = .*~ $(libdir)/.*\.a $(libdir)/.*\.la + +PKGFILES_CSWbinddevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibbind = $(libdir)/.* +PKGFILES_CSWbindutils = $(bindir)/.* + +# checkpkg can't handle split packages +ENABLE_CHECK = 0 + +INSTALL_SCRIPTS = custom + +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~ /\/init.d\/cswnamed$$$$/ { $$$$2 = "cswinitsmf" } \ + $$$$3 ~ /\/named.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ + $$$$3 ~ /\/var\/opt\/csw\/named/ { $$$$5 = "named" ; $$$$2 = "ugfiles" } \ + $$$$3 ~ /\/CSWbind\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } \ + { print }' + +SPKG_SOURCEURL = http://www.isc.org/software/bind +SPKG_CLASSES_CSWbind = none cswusergroup ugfiles cswcpsampleconf cswinitsmf + +include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + +DOCLIST = README.CSW db.127.0.0 db.localhost named.conf named.root rndc.key + +install-custom: + @echo " ==> Installing $(GARNAME) (custom)" + @ginstall -d $(DESTDIR)/etc/opt/csw/init.d + @cp $(FILEDIR)/CSWbind.cswnamed $(DESTDIR)/etc/opt/csw/init.d/cswnamed + @cp $(FILEDIR)/CSWbind.named.conf.CSW $(DESTDIR)/etc/opt/csw/named.conf.CSW + @ginstall -d $(DESTDIR)/opt/csw/etc/CSWbind + @cp $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/CSWbind/ + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + @$(foreach DOC,$(DOCLIST),cp $(FILEDIR)/$(DOC) $(DESTDIR)$(docdir)/$(GARNAME);) + ( cd $(WORKSRC) ; \ + gmake DESTDIR=$(DESTDIR) install ) + @ginstall -d $(DESTDIR)/var/opt/csw/named + @touch $(DESTDIR)/var/opt/csw/named/named.pid + @$(MAKECOOKIE) Modified: csw/mgar/pkg/bind/branches/stable/checksums =================================================================== --- csw/mgar/pkg/bind/trunk/checksums 2009-07-31 08:12:00 UTC (rev 5762) +++ csw/mgar/pkg/bind/branches/stable/checksums 2009-08-05 11:12:29 UTC (rev 5855) @@ -1 +1 @@ -e6ce3b355c4e6bf5d66ef100f555da3f download/bind-9.6.1-P1.tar.gz +ed357d3d18dcfa97723f91d9219caa8c download/bind-9.4.3-P3.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 Wed Aug 5 14:24:48 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 12:24:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5856] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 5856 http://gar.svn.sourceforge.net/gar/?rev=5856&view=rev Author: bonivart Date: 2009-08-05 12:24:48 +0000 (Wed, 05 Aug 2009) Log Message: ----------- perl: fix Makefile Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 11:12:29 UTC (rev 5855) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 12:24:48 UTC (rev 5856) @@ -108,8 +108,8 @@ #EXTRA_LIB += $(prefix)/bdb44/lib #EXTRA_INC += $(prefix)/bdb44/include -EXTRA_MERGE_EXCLUDE_FILES = perllocal.pod -PKGFILES_CSWperldoc = $(PKGFILES_DOC) +EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod +PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* # Tests take a long time TEST_SCRIPTS = @@ -176,6 +176,4 @@ # Invoke post-install targets #post-install: $(POST_TARGETS) post-install-modulated: $(POST_TARGETS) - echo $(DESTDIR) - @rm $(DESTDIR)/opt/csw/lib/perl/5.8.8/perllocal.pod @$(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 Wed Aug 5 16:18:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:18:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5857] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 5857 http://gar.svn.sourceforge.net/gar/?rev=5857&view=rev Author: dmichelsen Date: 2009-08-05 14:18:26 +0000 (Wed, 05 Aug 2009) Log Message: ----------- mGAR v2: Use grep instead of egrep to allow matching of e.g. gtk+ without special meaning of '+' 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-08-05 12:24:48 UTC (rev 5856) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-05 14:18:26 UTC (rev 5857) @@ -141,7 +141,7 @@ # error out if it mentions the file without an "OK". checksum-%: $(CHECKSUM_FILE) @echo " ==> Running checksum on $*" - @if gegrep -- '/$*$$' $(CHECKSUM_FILE); then \ + @if ggrep -- '/$*$$' $(CHECKSUM_FILE); then \ if LC_ALL="C" LANG="C" gmd5sum -c $(CHECKSUM_FILE) 2>&1 | \ ggrep -- '$*' | ggrep -v ':[ ]\+OK'; then \ echo '(!!!) $* failed checksum test!' 1>&2; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Aug 5 16:19:58 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:19:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5858] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 5858 http://gar.svn.sourceforge.net/gar/?rev=5858&view=rev Author: bonivart Date: 2009-08-05 14:19:58 +0000 (Wed, 05 Aug 2009) Log Message: ----------- perl: add license Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 14:18:26 UTC (rev 5857) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 14:19:58 UTC (rev 5858) @@ -23,6 +23,8 @@ REQUIRED_PKGS_CSWperl = CSWbdb CSWgdbm REQUIRED_PKGS_CSWperldoc = CSWperl +LICENSE = Copying + # Core module updates MASTER_SITES += $(CPAN_FIRST_MIRROR)/S/SM/SMUELLER/ CORE_UPDATES += PathTools-3.30 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 Aug 5 16:29:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:29:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5859] csw/mgar/pkg/gtk2/trunk Message-ID: Revision: 5859 http://gar.svn.sourceforge.net/gar/?rev=5859&view=rev Author: dmichelsen Date: 2009-08-05 14:29:07 +0000 (Wed, 05 Aug 2009) Log Message: ----------- gtk2: Fix postinstall to only execute 32 bit binaries on 32 bit kernels Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/checksums csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall Modified: csw/mgar/pkg/gtk2/trunk/checksums =================================================================== --- csw/mgar/pkg/gtk2/trunk/checksums 2009-08-05 14:19:58 UTC (rev 5858) +++ csw/mgar/pkg/gtk2/trunk/checksums 2009-08-05 14:29:07 UTC (rev 5859) @@ -1,3 +1,3 @@ -44b74e3b782135f33cc8a1c5e8f97614 download/CSWgtk2.postinstall +7ff4fdcaa073afc764af7106c0ba441c download/CSWgtk2.postinstall 34f5b20f6caf282b2533784fbb1b4395 download/fixme.sh 8d1ea0b9b0400224d25b0cc2750b438d download/gtk+-2.16.5.tar.bz2 Modified: csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall =================================================================== --- csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall 2009-08-05 14:19:58 UTC (rev 5858) +++ csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall 2009-08-05 14:29:07 UTC (rev 5859) @@ -10,11 +10,13 @@ chroot "${PKG_ROOT_DIR}" /opt/csw/bin/gdk-pixbuf-query-loaders >"${PKG_ROOT_DIR}"/opt/csw/etc/gtk-2.0/gdk-pixbuf.loaders && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/gtk-2.0/gdk-pixbuf.loaders f 0644 root bin test -x ${PKG_ROOT_DIR}/opt/csw/bin/sparcv9/gdk-pixbuf-query-loaders && \ +test -x /usr/bin/isainfo && [ "`/usr/bin/isainfo -b`" = 64 ] && mkdir -p "${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0 && chroot "${PKG_ROOT_DIR}" /opt/csw/bin/sparcv9/gdk-pixbuf-query-loaders >"${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0/gdk-pixbuf.loaders && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/64/gtk-2.0 d 0755 root bin && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/64/gtk-2.0/gdk-pixbuf.loaders f 0644 root bin test -x ${PKG_ROOT_DIR}/opt/csw/bin/amd64/gdk-pixbuf-query-loaders && \ +test -x /usr/bin/isainfo && [ "`/usr/bin/isainfo -b`" = 64 ] && mkdir -p "${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0 && chroot "${PKG_ROOT_DIR}" /opt/csw/bin/amd64/gdk-pixbuf-query-loaders >"${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0/gdk-pixbuf.loaders && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/64/gtk-2.0 d 0755 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 Wed Aug 5 16:44:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:44:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5860] csw/mgar/pkg Message-ID: Revision: 5860 http://gar.svn.sourceforge.net/gar/?rev=5860&view=rev Author: dmichelsen Date: 2009-08-05 14:44:55 +0000 (Wed, 05 Aug 2009) Log Message: ----------- gail: Make package a stub to gtk2, as the contents is now included in the main project Added Paths: ----------- csw/mgar/pkg/gail/branches/ csw/mgar/pkg/gail/tags/ csw/mgar/pkg/gail/tags/legacy/ csw/mgar/pkg/gail/tags/libgail_gnome-legacy/ csw/mgar/pkg/gail/trunk/Makefile csw/mgar/pkg/gail/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/gail/trunk/legacy/ csw/mgar/pkg/libgail_gnome/ Property Changed: ---------------- csw/mgar/pkg/gail/trunk/ Property changes on: csw/mgar/pkg/gail/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/gail/trunk/Makefile =================================================================== --- csw/mgar/pkg/gail/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gail/trunk/Makefile 2009-08-05 14:44:55 UTC (rev 5860) @@ -0,0 +1,21 @@ +GARNAME = gail +GARVERSION = 1.21.5.1 +CATEGORIES = lib + +DESCRIPTION = Accessibility support for GTK+ and libgnomecanvas (stub, now in CSWgtk2) +define BLURB + This is a stub. The gail library has been included in the main gtk2 project and is + distributed from there. +endef + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = +TEST_SCRIPTS = + +ENABLE_CHECK = 0 + +ARCHALL = 1 +REQUIRED_PKGS = CSWgtk2 + +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 Aug 5 16:46:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:46:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5861] csw/mgar/pkg Message-ID: Revision: 5861 http://gar.svn.sourceforge.net/gar/?rev=5861&view=rev Author: dmichelsen Date: 2009-08-05 14:46:52 +0000 (Wed, 05 Aug 2009) Log Message: ----------- libgail_gnome: Remake toplevel package as this is in fact different from gail Added Paths: ----------- csw/mgar/pkg/libgail_gnome/ csw/mgar/pkg/libgail_gnome/branches/ csw/mgar/pkg/libgail_gnome/tags/ csw/mgar/pkg/libgail_gnome/tags/legacy/ csw/mgar/pkg/libgail_gnome/trunk/ Removed Paths: ------------- csw/mgar/pkg/gail/tags/libgail_gnome-legacy/ 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 Aug 5 19:33:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:33:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5862] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5862 http://gar.svn.sourceforge.net/gar/?rev=5862&view=rev Author: valholla Date: 2009-08-05 17:33:25 +0000 (Wed, 05 Aug 2009) Log Message: ----------- tweaks for custom classes Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/sendmail/trunk/files/i.cswosrel Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 14:46:52 UTC (rev 5861) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:33:25 UTC (rev 5862) @@ -16,7 +16,8 @@ DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 i.cswosrel +DISTFILES += cswsendmail site.config.m4 CSWsendmail.i.sol8 +DISTFILES += CSWsendmail.i.sol9 CSWsendmail.i.sol10 DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) @@ -37,11 +38,14 @@ SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel PROTOTYPE_FILTER = awk \ '$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ - $$$$3 ~/sol8\./ { $$$$2 = "cswosrel" } \ - $$$$3 ~/sol9\./ { $$$$2 = "cswosrel" } \ - $$$$3 ~/sol10\./ { $$$$2 = "cswosrel" } \ + $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ + $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ + $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print }' +PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") +PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") +PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* @@ -100,7 +104,6 @@ ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d ginstall -d $(DESTDIR)$(sysconfdir)/mail - ginstall -d $(DESTDIR)/usr/sadm/install/scripts @# install the libraries @( for file in $(LIBFILES) ; do \ @@ -151,7 +154,6 @@ done ) ( mv $(DESTDIR)$(sysconfdir)/mail/sm-client.st.CSW \ $(DESTDIR)/var/opt/csw/spool/clientmqueue/ ) - cp $(DOWNLOADDIR)/i.cswosrel $(DESTDIR)/usr/sadm/install/scripts/ @$(MAKECOOKIE) merge-OS: Deleted: csw/mgar/pkg/sendmail/trunk/files/i.cswosrel =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-08-05 14:46:52 UTC (rev 5861) +++ csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-08-05 17:33:25 UTC (rev 5862) @@ -1,22 +0,0 @@ -#!/bin/sh -# -# Move the OS version specific files to the base directory. -# - -MYOSREL="sol`/sbin/uname -r |sed 's/5\.//'`" -echo "Installing class for ${MYOSREL}." - -while read src dest -do - FILEOSREL="`echo ${dest} |sed 's/.*\(sol[0-9]*\).*/\1/'`" - if [ "_x${MYOSREL}x_" = "_x${FILEOSREL}x_" ]; then - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2=`echo $dest | sed "s/${MYOSREL}.//g"` || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - fi -done -exit 0 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 5 19:35:14 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:35:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5863] csw/mgar/pkg/myodbc3/ Message-ID: Revision: 5863 http://gar.svn.sourceforge.net/gar/?rev=5863&view=rev Author: wahwah Date: 2009-08-05 17:35:14 +0000 (Wed, 05 Aug 2009) Log Message: ----------- myodbc3: Copying the template Added Paths: ----------- csw/mgar/pkg/myodbc3/ 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 Aug 5 19:35:17 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:35:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5864] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 5864 http://gar.svn.sourceforge.net/gar/?rev=5864&view=rev Author: valholla Date: 2009-08-05 17:35:16 +0000 (Wed, 05 Aug 2009) Log Message: ----------- update checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:35:14 UTC (rev 5863) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:35:16 UTC (rev 5864) @@ -1,3 +1,6 @@ +27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 +24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 +b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space @@ -7,7 +10,6 @@ 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW 2592f7d191867c1d1c63ff16d818dcb5 download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW -6e6f156034cac51c706c1b1484155d8a download/i.cswosrel d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.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 Aug 5 19:37:33 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:37:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5865] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 5865 http://gar.svn.sourceforge.net/gar/?rev=5865&view=rev Author: valholla Date: 2009-08-05 17:37:32 +0000 (Wed, 05 Aug 2009) Log Message: ----------- tweaks for PROTOTYPE_FILTER Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:35:16 UTC (rev 5864) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:37:32 UTC (rev 5865) @@ -43,9 +43,9 @@ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print }' -PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") -PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") -PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") +PROTOTYPE_FILTER += fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8" +PROTOTYPE_FILTER += fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9" +PROTOTYPE_FILTER += fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10" PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* 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 Aug 5 19:47:11 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:47:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5866] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5866 http://gar.svn.sourceforge.net/gar/?rev=5866&view=rev Author: valholla Date: 2009-08-05 17:47:11 +0000 (Wed, 05 Aug 2009) Log Message: ----------- rename class scripts Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums Added Paths: ----------- csw/mgar/pkg/sendmail/trunk/files/i.sol10 csw/mgar/pkg/sendmail/trunk/files/i.sol8 csw/mgar/pkg/sendmail/trunk/files/i.sol9 Removed Paths: ------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:47:11 UTC (rev 5866) @@ -16,8 +16,7 @@ DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 CSWsendmail.i.sol8 -DISTFILES += CSWsendmail.i.sol9 CSWsendmail.i.sol10 +DISTFILES += cswsendmail site.config.m4 i.sol8 i.sol9 i.sol10 DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) @@ -36,16 +35,16 @@ REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils ARCHALL_CSWsendmailcommon = 1 SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel -PROTOTYPE_FILTER = awk \ +PROTOTYPE_FILTER = (awk \ '$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ - { print }' -PROTOTYPE_FILTER += fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8" -PROTOTYPE_FILTER += fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9" -PROTOTYPE_FILTER += fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10" + { print }') +PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") +PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") +PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,6 +1,3 @@ -27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 -24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 -b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Deleted: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol10 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol10 2009-08-05 17:47:11 UTC (rev 5866) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol8 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol8 2009-08-05 17:47:11 UTC (rev 5866) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol9 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol9 2009-08-05 17:47:11 UTC (rev 5866) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Wed Aug 5 22:48:57 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Wed, 05 Aug 2009 20:48:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5867] csw/mgar/pkg/ruby/trunk/Makefile Message-ID: Revision: 5867 http://gar.svn.sourceforge.net/gar/?rev=5867&view=rev Author: bdwalton Date: 2009-08-05 20:48:56 +0000 (Wed, 05 Aug 2009) Log Message: ----------- ruby: use COMPILE_ELISP; update extra lib path (for rubydev); dbd dep change Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-08-05 17:47:11 UTC (rev 5866) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-08-05 20:48:56 UTC (rev 5867) @@ -5,7 +5,7 @@ CATEGORIES = lang # disable test scripts (all passed with 1.8.7p174) -TEST_SCRIPTS = +# TEST_SCRIPTS = PREREQUISITE_PKGS = CSWbdb3 CSWgdbm CSWgfile CSWiconv CSWncurses CSWossldevel PREREQUISITE_PKGS += CSWreadline CSWzlib @@ -18,7 +18,7 @@ LICENSE = COPYING -REQUIRED_PKGS_CSWruby = CSWbdb3 CSWgdbm CSWiconv CSWgcc4corert +REQUIRED_PKGS_CSWruby = CSWbdb CSWgdbm CSWiconv CSWgcc4corert REQUIRED_PKGS_CSWruby += CSWncurses CSWosslrt CSWreadline CSWzlib REQUIRED_PKGS_CSWrubydoc = CSWruby @@ -80,7 +80,7 @@ # This is for rbconfig.rb: without this, modules built may not get a proper # setting. -EXTRA_LDFLAGS = -R /opt/csw/gcc4/lib +EXTRA_LDFLAGS = -R $(abspath /opt/csw/gcc4/lib/$(MM_LIBDIR)) CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-pthread @@ -102,6 +102,8 @@ # We want libruby-static.a to ship. mkmf tests for various things using it. MERGE_EXCLUDE_STATICLIBS = +COMPILE_ELISP = 1 + include gar/category.mk SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) @@ -115,10 +117,7 @@ rubymode: @echo " ===> Installing and Compilingn ruby-mode elisp" @(mkdir -p $(RMDIR); \ - cp $(WORKSRC)/misc/*el $(RMDIR); \ - for f in $(RMDIR)/*; do \ - emacs -L $(RMDIR) -batch -f batch-byte-compile "$$f"; \ - done) + cp $(WORKSRC)/misc/*el $(RMDIR)) # Fix up rbconfig rbconfig: 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 Aug 5 23:23:22 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 21:23:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[5868] csw/mgar/pkg/bind/branches/stable-9.4.3p3/ Message-ID: Revision: 5868 http://gar.svn.sourceforge.net/gar/?rev=5868&view=rev Author: dmichelsen Date: 2009-08-05 21:23:21 +0000 (Wed, 05 Aug 2009) Log Message: ----------- bind: Make new branch from old trunk at 2425 (stable) for security fix Added Paths: ----------- csw/mgar/pkg/bind/branches/stable-9.4.3p3/ 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 Aug 6 11:13:16 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 09:13:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[5869] csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk Message-ID: Revision: 5869 http://gar.svn.sourceforge.net/gar/?rev=5869&view=rev Author: dmichelsen Date: 2009-08-06 09:13:16 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/ExtUtils-ParseXS: Update to 2.2002 Modified Paths: -------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-ParseXS/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/ExtUtils-ParseXS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-06 09:13:16 UTC (rev 5869) @@ -1,9 +1,9 @@ GARNAME = ExtUtils-ParseXS -GARVERSION = 2.18 +GARVERSION = 2.2002 CATEGORIES = cpan -AUTHOR = KWILLIAMS +AUTHOR = DAGOLDEN -DESCRIPTION = converts Perl XS code into C code +DESCRIPTION = Converts Perl XS code into C code define BLURB ExtUtils::ParseXS will compile XS code into C code by embedding the constructs necessary to let C functions manipulate Perl values and creates @@ -12,8 +12,11 @@ values. endef -DISTFILES += $(call admfiles,CSWpmextutparsexs,prototype) +PACKAGES = CSWpmextutparsexs +CATALOGNAME = pm_extutparsexs -BUILDDEPS += cpan/ExtUtils-CBuilder +ARCHALL = 1 +SPKG_VERSION = 2.20.02 + include gar/category.mk Modified: csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums 2009-08-06 09:13:16 UTC (rev 5869) @@ -1,3 +1 @@ -be577bd5c1781cda0700bf5dfe862a05 download/CSWpmextutparsexs.gspec -d250fa7b2c0c9d4c1c8ae23228e200b6 download/CSWpmextutparsexs.prototype -473a59a9a4b9887137dab156e5312ff7 download/ExtUtils-ParseXS-2.18.tar.gz +96446b90880defc2200a8acfb9a6dfb8 download/ExtUtils-ParseXS-2.2002.tar.gz Deleted: csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec 2009-08-06 09:13:16 UTC (rev 5869) @@ -1,9 +0,0 @@ -%var bitname pm_extutparsexs -%var pkgname CSWpmextutparsexs -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2002-2003 Ken Williams. 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/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype 2009-08-06 09:13:16 UTC (rev 5869) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/ExtUtils 0755 root bin -d none /opt/csw/lib/perl/csw/auto/ExtUtils/ParseXS 0755 root bin -f none /opt/csw/lib/perl/csw/auto/ExtUtils/ParseXS/.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/man1 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/ExtUtils::ParseXS.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/ExtUtils 0755 root bin -f none /opt/csw/share/perl/csw/ExtUtils/ParseXS.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/xsubpp 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 Thu Aug 6 12:04:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 10:04:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5870] csw/mgar/pkg/openldap/trunk Message-ID: Revision: 5870 http://gar.svn.sourceforge.net/gar/?rev=5870&view=rev Author: dmichelsen Date: 2009-08-06 10:04:08 +0000 (Thu, 06 Aug 2009) Log Message: ----------- openldap: Update to 2.4.17 Modified Paths: -------------- csw/mgar/pkg/openldap/trunk/Makefile csw/mgar/pkg/openldap/trunk/checksums Modified: csw/mgar/pkg/openldap/trunk/Makefile =================================================================== --- csw/mgar/pkg/openldap/trunk/Makefile 2009-08-06 09:13:16 UTC (rev 5869) +++ csw/mgar/pkg/openldap/trunk/Makefile 2009-08-06 10:04:08 UTC (rev 5870) @@ -1,5 +1,5 @@ GARNAME = openldap -GARVERSION = 2.4.16 +GARVERSION = 2.4.17 CATEGORIES = server DESCRIPTION = Open source implementation of the Lightweight Directory Access Protocol Modified: csw/mgar/pkg/openldap/trunk/checksums =================================================================== --- csw/mgar/pkg/openldap/trunk/checksums 2009-08-06 09:13:16 UTC (rev 5869) +++ csw/mgar/pkg/openldap/trunk/checksums 2009-08-06 10:04:08 UTC (rev 5870) @@ -1,7 +1,7 @@ 2f6e6a8c9c3497f1c0c9d52ea2d1dafa download/CSWoldap.gspec 892dba5f625755be024c30ea0055fd55 download/README.CSW c50f5c4040139b6cf57fcc08abffbee7 download/cswopenldap -ed5b86e9d2b372d10edfe3bb59fee165 download/openldap-2.4.16.tgz +5e82103780f8cfc2b2fbd0f77c47c158 download/openldap-2.4.17.tgz 0e57547ad2b5fedca9f0bd4beaddfe39 download/openldap.xml ab2ac7519b092ce8d16124c5270bfec0 download/openldaprc d3dee9018137c39f357859b652e3a67c download/patch-oldap-2.4.16-ntlm.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 Thu Aug 6 13:41:57 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 11:41:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5871] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 5871 http://gar.svn.sourceforge.net/gar/?rev=5871&view=rev Author: dmichelsen Date: 2009-08-06 11:41:57 +0000 (Thu, 06 Aug 2009) Log Message: ----------- gtk2: Added missing dependencies after the bug report from Nicolai Schwindt Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 10:04:08 UTC (rev 5870) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 11:41:57 UTC (rev 5871) @@ -37,6 +37,7 @@ PREREQUISITE_PKGS = CSWbash REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib +REQUIRED_PKGS_CSWgtk2 += CSWlibgsf CSWlibcroco REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 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 dmichelsen at users.sourceforge.net Thu Aug 6 13:54:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 11:54:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5872] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 5872 http://gar.svn.sourceforge.net/gar/?rev=5872&view=rev Author: dmichelsen Date: 2009-08-06 11:54:13 +0000 (Thu, 06 Aug 2009) Log Message: ----------- gtk2: Added missing dependencies to devel package Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 11:41:57 UTC (rev 5871) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 11:54:13 UTC (rev 5872) @@ -38,7 +38,8 @@ REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib REQUIRED_PKGS_CSWgtk2 += CSWlibgsf CSWlibcroco -REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 +REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 CSWglib2devel +REQUIRED_PKGS_CSWgtk2devel += CSWlibcairodevel CSWlibx11devel CSWlibxrenderdevel CSWpangodevel 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 dmichelsen at users.sourceforge.net Thu Aug 6 15:07:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 13:07:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5873] csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk Message-ID: Revision: 5873 http://gar.svn.sourceforge.net/gar/?rev=5873&view=rev Author: dmichelsen Date: 2009-08-06 13:07:36 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/ExtUtils-CBuilder: Update to 0.2603 Modified Paths: -------------- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.depend csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-CBuilder/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/ExtUtils-CBuilder/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/Makefile 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/Makefile 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,9 +1,9 @@ GARNAME = ExtUtils-CBuilder -GARVERSION = 0.18 +GARVERSION = 0.2603 CATEGORIES = cpan -AUTHOR = KWILLIAMS +AUTHOR = DAGOLDEN -DESCRIPTION = compile and link C code for Perl modules +DESCRIPTION = Compile and link C code for Perl modules define BLURB This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was @@ -13,6 +13,11 @@ goal! endef -DISTFILES += $(call admfiles,CSWpmextutcbuilder,depend prototype) +PACKAGES = CSWpmextutcbuilder +CATALOGNAME = pm_extutcbuilder +ARCHALL = 1 + +SPKG_VERSION = 0.26.03 + include gar/category.mk Modified: csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,4 +1 @@ -805af062ba7f0d73fbce8eeb5c397d06 download/CSWpmextutcbuilder.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmextutcbuilder.depend -b3535f585e375332384424c0bba7e5e5 download/CSWpmextutcbuilder.prototype -d119f0c6c12787a8d5b255208c3c74c5 download/ExtUtils-CBuilder-0.18.tar.gz +1da23b2771380f66033a233a9503f247 download/ExtUtils-CBuilder-0.2603.tar.gz Deleted: csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,9 +0,0 @@ -%var bitname pm_extutcbuilder -%var pkgname CSWpmextutcbuilder -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2003-2005 Ken Williams. 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/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,26 +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/ExtUtils 0755 root bin -d none /opt/csw/lib/perl/csw/auto/ExtUtils/CBuilder 0755 root bin -f none /opt/csw/lib/perl/csw/auto/ExtUtils/CBuilder/.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/ExtUtils::CBuilder.3perl 0444 root bin -f none /opt/csw/share/man/man3/ExtUtils::CBuilder::Platform::Windows.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/ExtUtils 0755 root bin -d none /opt/csw/share/perl/csw/ExtUtils/CBuilder 0755 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Base.pm 0444 root bin -d none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform 0755 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/Unix.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/VMS.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/Windows.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/aix.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/cygwin.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/darwin.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/os2.pm 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 Thu Aug 6 15:08:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 13:08:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[5874] csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile Message-ID: Revision: 5874 http://gar.svn.sourceforge.net/gar/?rev=5874&view=rev Author: dmichelsen Date: 2009-08-06 13:08:39 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/ExtUtils-ParseXS: Add missing dependency Modified Paths: -------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile Modified: csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-06 13:07:36 UTC (rev 5873) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-06 13:08:39 UTC (rev 5874) @@ -17,6 +17,8 @@ ARCHALL = 1 +REQUIRED_PKGS = CSWpmextutcbuilder + SPKG_VERSION = 2.20.02 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 Aug 6 15:20:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 13:20:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5875] csw/mgar/pkg/cpan/Module-Pluggable/trunk Message-ID: Revision: 5875 http://gar.svn.sourceforge.net/gar/?rev=5875&view=rev Author: dmichelsen Date: 2009-08-06 13:20:07 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Module-Pluggable: Update to 3.9 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Pluggable/trunk/Makefile csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.depend csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Module-Pluggable/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-Pluggable/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/Module-Pluggable/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/Makefile 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/Makefile 2009-08-06 13:20:07 UTC (rev 5875) @@ -1,17 +1,20 @@ GARNAME = Module-Pluggable -GARVERSION = 3.5 +GARVERSION = 3.9 CATEGORIES = cpan AUTHOR = SIMONW -DESCRIPTION = automatically give your module the ability to have plugins +DESCRIPTION = Automatically give your module the ability to have plugins define BLURB - Provides a simple but, hopefully, extensible way of having 'plugins' for - your module. Obviously this isn't going to be the be all and end all of - solutions but it works for me. Essentially all it does is export a method - into your namespace that looks through a search path for .pm files and turn - those into class names. Optionally it instantiates those classes for you. + Provides a simple but, hopefully, extensible way of having 'plugins' for + your module. Obviously this isn't going to be the be all and end all of + solutions but it works for me. Essentially all it does is export a method + into your namespace that looks through a search path for .pm files and turn + those into class names. Optionally it instantiates those classes for you. endef -DISTFILES += $(call admfiles,CSWpmmoduleplug,depend prototype) +PACKAGES = CSWpmmoduleplug +CATALOGNAME = pm_moduleplug +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums 2009-08-06 13:20:07 UTC (rev 5875) @@ -1,4 +1 @@ -c764bb310619f7c4843a2dd032512e1e download/CSWpmmoduleplug.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmmoduleplug.depend -167a3d4807a5ae8d8881a327316c1fea download/CSWpmmoduleplug.prototype -c5a57fc2ca1736bf3c6422a424a1ebeb download/Module-Pluggable-3.5.tar.gz +e2410a59c917f44c1de9a816f0492985 download/Module-Pluggable-3.9.tar.gz Deleted: csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec 2009-08-06 13:20:07 UTC (rev 5875) @@ -1,8 +0,0 @@ -%var bitname pm_moduleplug -%var pkgname CSWpmmoduleplug -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright, 2003 Simon Wistow -Distributed under the same terms as Perl itself. - Deleted: csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype 2009-08-06 13:20:07 UTC (rev 5875) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/Pluggable 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/Pluggable/.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/Module::Pluggable.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/Module 0755 root bin -f none /opt/csw/share/perl/csw/Module/Pluggable.pm 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 Thu Aug 6 16:01:06 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:01:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5876] csw/mgar/pkg/cpan Message-ID: Revision: 5876 http://gar.svn.sourceforge.net/gar/?rev=5876&view=rev Author: dmichelsen Date: 2009-08-06 14:01:06 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Algorithm-Depedency: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Algorithm-Depedency/ csw/mgar/pkg/cpan/Algorithm-Depedency/branches/ csw/mgar/pkg/cpan/Algorithm-Depedency/tags/ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Algorithm-Depedency/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/Algorithm-Depedency/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile 2009-08-06 14:01:06 UTC (rev 5876) @@ -0,0 +1,20 @@ +GARNAME = Algorithm-Dependency +GARVERSION = 1.110 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Base class for implementing various dependency trees +define BLURB + Algorithm::Dependency is a framework for creating simple read-only + dependency heirachies, where you have a set of items that rely on other + items in the set, and require actions on them as well. +endef + +PACKAGES = CSWpmalgorithmdep +CATALOGNAME = pm_algorithmdep + +REQUIRED_PKGS = CSWpmtestclassapi CSWpmparamsutil + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums 2009-08-06 14:01:06 UTC (rev 5876) @@ -0,0 +1 @@ +dc1dab2ac44c315caa092397423b1429 download/Algorithm-Dependency-1.110.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 Aug 6 16:05:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:05:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[5877] csw/mgar/pkg Message-ID: Revision: 5877 http://gar.svn.sourceforge.net/gar/?rev=5877&view=rev Author: dmichelsen Date: 2009-08-06 14:05:31 +0000 (Thu, 06 Aug 2009) Log Message: ----------- libmcrypt: Initial commit, strangely the tests fail Added Paths: ----------- csw/mgar/pkg/libmcrypt/ csw/mgar/pkg/libmcrypt/branches/ csw/mgar/pkg/libmcrypt/tags/ csw/mgar/pkg/libmcrypt/trunk/ csw/mgar/pkg/libmcrypt/trunk/Makefile csw/mgar/pkg/libmcrypt/trunk/checksums csw/mgar/pkg/libmcrypt/trunk/files/ Property changes on: csw/mgar/pkg/libmcrypt/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/libmcrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libmcrypt/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libmcrypt/trunk/Makefile 2009-08-06 14:05:31 UTC (rev 5877) @@ -0,0 +1,29 @@ +GARNAME = libmcrypt +GARVERSION = 2.5.8 +CATEGORIES = lib + +DESCRIPTION = GPL replacement for Unix crypt that supports a wide range of algorithms and modes +define BLURB + mcrypt, and the accompanying libmcrypt, are intended to be replacements for the old + Unix crypt, except that they are under the GPL and support an ever-wider range of + algorithms and modes +endef + +SF_PROJ = mcrypt +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +# 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) +CONFIGURE_ARGS += --with-included-algos=cast-128,gost,rijndael-128,twofish,arcfour,cast-256,loki97,rijndael-192,saferplus,wake,blowfish-compat,des,rijndael-256,serpent,xtea,blowfish,enigma,rc2,tripledes + +TEST_TARGET = check + +include gar/category.mk + +PATH := $(PATH):/opt/csw/gcc4/bin Added: csw/mgar/pkg/libmcrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/libmcrypt/trunk/checksums (rev 0) +++ csw/mgar/pkg/libmcrypt/trunk/checksums 2009-08-06 14:05:31 UTC (rev 5877) @@ -0,0 +1 @@ +c4f491dd411a09e9de3b8702ea6f73eb download/libmcrypt-2.5.8.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 Thu Aug 6 16:06:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:06:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5878] csw/mgar/pkg/cpan Message-ID: Revision: 5878 http://gar.svn.sourceforge.net/gar/?rev=5878&view=rev Author: dmichelsen Date: 2009-08-06 14:06:30 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Params-Util: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Params-Util/ csw/mgar/pkg/cpan/Params-Util/branches/ csw/mgar/pkg/cpan/Params-Util/tags/ csw/mgar/pkg/cpan/Params-Util/trunk/ csw/mgar/pkg/cpan/Params-Util/trunk/Makefile csw/mgar/pkg/cpan/Params-Util/trunk/checksums csw/mgar/pkg/cpan/Params-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Params-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/cpan/Params-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Params-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Params-Util/trunk/Makefile 2009-08-06 14:06:30 UTC (rev 5878) @@ -0,0 +1,15 @@ +GARNAME = Params-Util +GARVERSION = 1.00 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Simple, compact and correct param-checking functions +define BLURB + "Params::Util" provides a basic set of importable functions that makes + checking parameters a hell of a lot easier +endef + +PACKAGES = CSWpmparamsutil +CATALOGNAME = pm_paramsutil + +include gar/category.mk Added: csw/mgar/pkg/cpan/Params-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Params-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Params-Util/trunk/checksums 2009-08-06 14:06:30 UTC (rev 5878) @@ -0,0 +1 @@ +827ba4b8bed00e718cea60321129be41 download/Params-Util-1.00.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 Aug 6 16:27:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:27:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5879] csw/mgar/pkg/cpan Message-ID: Revision: 5879 http://gar.svn.sourceforge.net/gar/?rev=5879&view=rev Author: dmichelsen Date: 2009-08-06 14:27:31 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Test-ClassAPI: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-ClassAPI/ csw/mgar/pkg/cpan/Test-ClassAPI/branches/ csw/mgar/pkg/cpan/Test-ClassAPI/tags/ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums csw/mgar/pkg/cpan/Test-ClassAPI/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-ClassAPI/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/Test-ClassAPI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile 2009-08-06 14:27:31 UTC (rev 5879) @@ -0,0 +1,25 @@ +GARNAME = Test-ClassAPI +GARVERSION = 1.06 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Provides basic first-pass API testing for large class trees +define BLURB + For many APIs with large numbers of classes, it can be very useful to be + able to do a quick once-over to make sure that classes, methods, and + inheritance is correct, before doing more comprehensive testing. This + module aims to provide such a capability. +endef + +PACKAGES = CSWpmtestclassapi +CATALOGNAME = pm_testclassapi + +#Warning: prerequisite Class::Inspector 1.12 not found. +#Warning: prerequisite Config::Tiny 2.00 not found. +#Warning: prerequisite ExtUtils::MakeMaker 6.42 not found. We have 6.30. +#Warning: prerequisite Params::Util 1.00 not found. + + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums 2009-08-06 14:27:31 UTC (rev 5879) @@ -0,0 +1 @@ +ee31a9e1ecedcf720a9e89461a83442e download/Test-ClassAPI-1.06.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 Aug 6 16:30:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:30:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5880] csw/mgar/pkg/cpan/Class-Inspector/trunk Message-ID: Revision: 5880 http://gar.svn.sourceforge.net/gar/?rev=5880&view=rev Author: dmichelsen Date: 2009-08-06 14:30:58 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Class-Inspector: Update to 1.24 Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Inspector/trunk/Makefile csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Class-Inspector/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-Inspector/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/Class-Inspector/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Inspector/trunk/Makefile 2009-08-06 14:27:31 UTC (rev 5879) +++ csw/mgar/pkg/cpan/Class-Inspector/trunk/Makefile 2009-08-06 14:30:58 UTC (rev 5880) @@ -1,9 +1,9 @@ GARNAME = Class-Inspector -GARVERSION = 1.16 +GARVERSION = 1.24 CATEGORIES = cpan AUTHOR = ADAMK -DESCRIPTION = provides information about classes +DESCRIPTION = Get information about a class and its structure define BLURB Class::Inspector allows you to get information about a loaded class. Most or all of this information can be found in other ways, but they arn't always @@ -12,6 +12,11 @@ easier, more friendly interface to this information. endef -DISTFILES += CSWpmclassinspector.gspec +LICENSE = LICENSE +PACKAGES = CSWpmclassinspector +CATALOGNAME = pm_classinspector + +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums 2009-08-06 14:27:31 UTC (rev 5879) +++ csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums 2009-08-06 14:30:58 UTC (rev 5880) @@ -1,2 +1 @@ -24c3c2fc100a273ec6411cb6eafec756 download/CSWpmclassinspector.gspec -46eeeeb5a5df0da03f4e53229f7ed360 download/Class-Inspector-1.16.tar.gz +609189b49f64d329a6e413e0a6d8724a download/Class-Inspector-1.24.tar.gz Deleted: csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec 2009-08-06 14:27:31 UTC (rev 5879) +++ csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec 2009-08-06 14:30:58 UTC (rev 5880) @@ -1,5 +0,0 @@ -%var bitname pm_classinspector -%var pkgname CSWpmclassinspector -%var arch all -%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 dmichelsen at users.sourceforge.net Thu Aug 6 16:37:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:37:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5881] csw/mgar/pkg/cpan/Unix-Syslog/trunk Message-ID: Revision: 5881 http://gar.svn.sourceforge.net/gar/?rev=5881&view=rev Author: dmichelsen Date: 2009-08-06 14:37:26 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Unix-Syslog: Update to 1.0 Modified Paths: -------------- csw/mgar/pkg/cpan/Unix-Syslog/trunk/Makefile csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Unix-Syslog/trunk/ Property changes on: csw/mgar/pkg/cpan/Unix-Syslog/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/Unix-Syslog/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Unix-Syslog/trunk/Makefile 2009-08-06 14:30:58 UTC (rev 5880) +++ csw/mgar/pkg/cpan/Unix-Syslog/trunk/Makefile 2009-08-06 14:37:26 UTC (rev 5881) @@ -1,5 +1,5 @@ GARNAME = Unix-Syslog -GARVERSION = 0.100 +GARVERSION = 1.0 CATEGORIES = cpan AUTHOR = MHARNISCH @@ -11,6 +11,9 @@ use this module right away. endef -DISTFILES += CSWpmunixsyslog.gspec +LICENSE = Artistic +PACKAGES = CSWpmunixsyslog +CATALOGNAME = pm_unixsyslog + include gar/category.mk Modified: csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums 2009-08-06 14:30:58 UTC (rev 5880) +++ csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums 2009-08-06 14:37:26 UTC (rev 5881) @@ -1,2 +1 @@ -9c761449e034c578084ed9d424cd5a83 download/CSWpmunixsyslog.gspec -655d2e04a043b3e92d1bb47caf8e8a3b download/Unix-Syslog-0.100.tar.gz +a9a30a08a575d210090230df446578e9 download/Unix-Syslog-1.0.tar.gz Deleted: csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec =================================================================== --- csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec 2009-08-06 14:30:58 UTC (rev 5880) +++ csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec 2009-08-06 14:37:26 UTC (rev 5881) @@ -1,9 +0,0 @@ -%var bitname pm_unixsyslog -%var pkgname CSWpmunixsyslog -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 1999,2000,2001,2002 Marcus Harnisch - -This program is free software; you can redistribute it and/or modify -it under the terms of the Artistic License. A copy of the license (see -file Artistic in this directory) must be included in the 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 Aug 6 16:43:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:43:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[5882] csw/mgar/pkg/cpan/Sub-Uplevel/trunk Message-ID: Revision: 5882 http://gar.svn.sourceforge.net/gar/?rev=5882&view=rev Author: dmichelsen Date: 2009-08-06 14:43:38 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Sub-Uplevel: Update to 0.2002 Modified Paths: -------------- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/Makefile csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/ Property changes on: csw/mgar/pkg/cpan/Sub-Uplevel/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/Sub-Uplevel/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/Makefile 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/Makefile 2009-08-06 14:43:38 UTC (rev 5882) @@ -1,15 +1,22 @@ GARNAME = Sub-Uplevel -GARVERSION = 0.09 +GARVERSION = 0.2002 CATEGORIES = cpan -AUTHOR = MSCHWERN +AUTHOR = DAGOLDEN -DESCRIPTION = apparently run a function in a higher stack frame +DESCRIPTION = Apparently run a function in a higher stack frame define BLURB Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. THIS IS NOT THE SORT OF THING YOU WANT TO DO EVERYDAY endef -DISTFILES += $(call admfiles,CSWpmsubuplevel,prototype) +LICENSE = LICENSE +PACKAGES = CSWpmsubuplevel +CATALOGNAME = pm_subuplevel + +ARCHALL = 1 + +SPKG_VERSION = 0.20.02 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums 2009-08-06 14:43:38 UTC (rev 5882) @@ -1,3 +1 @@ -a2c4c4c2423490b96dbc0964784b9f36 download/CSWpmsubuplevel.gspec -4c3899f2d7b040524afe938ba5d8e9c3 download/CSWpmsubuplevel.prototype -eb09cb38cd7a9b7bc9d3e85e61fe09dd download/Sub-Uplevel-0.09.tar.gz +509aedd3b680aea2c7a2fc67b9d5b007 download/Sub-Uplevel-0.2002.tar.gz Deleted: csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec 2009-08-06 14:43:38 UTC (rev 5882) @@ -1,9 +0,0 @@ -%var bitname pm_subuplevel -%var pkgname CSWpmsubuplevel -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright by Michael G Schwern - -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/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype 2009-08-06 14:43:38 UTC (rev 5882) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Sub 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Sub/Uplevel 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Sub/Uplevel/.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/Sub::Uplevel.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/Sub 0755 root bin -f none /opt/csw/share/perl/csw/Sub/Uplevel.pm 0444 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bensons at users.sourceforge.net Thu Aug 6 16:49:24 2009 From: bensons at users.sourceforge.net (bensons at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:49:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5883] csw/mgar/pkg/xpdf/trunk/Makefile Message-ID: Revision: 5883 http://gar.svn.sourceforge.net/gar/?rev=5883&view=rev Author: bensons Date: 2009-08-06 14:49:19 +0000 (Thu, 06 Aug 2009) Log Message: ----------- xpdf: added revision into package name, bug 3809 Modified Paths: -------------- csw/mgar/pkg/xpdf/trunk/Makefile Modified: csw/mgar/pkg/xpdf/trunk/Makefile =================================================================== --- csw/mgar/pkg/xpdf/trunk/Makefile 2009-08-06 14:43:38 UTC (rev 5882) +++ csw/mgar/pkg/xpdf/trunk/Makefile 2009-08-06 14:49:19 UTC (rev 5883) @@ -1,6 +1,7 @@ GARNAME = xpdf GARVERSION = 3.02 CATEGORIES = utils +RELEASE = rev=p3 DESCRIPTION = Open source viewer for Portable Document Format (PDF) files define BLURB @@ -40,6 +41,7 @@ TEST_SCRIPTS = include gar/category.mk +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(RELEASE) pre-build-modulated: @cp files/xpdfrc ${WORKSRC}/doc/sample-xpdfrc 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 Aug 6 17:00:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:00:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5884] csw/mgar/pkg/cpan/GD/trunk Message-ID: Revision: 5884 http://gar.svn.sourceforge.net/gar/?rev=5884&view=rev Author: dmichelsen Date: 2009-08-06 15:00:21 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/GD: Update to 2.44 Modified Paths: -------------- csw/mgar/pkg/cpan/GD/trunk/Makefile csw/mgar/pkg/cpan/GD/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/GD/trunk/ Property changes on: csw/mgar/pkg/cpan/GD/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/GD/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/GD/trunk/Makefile 2009-08-06 14:49:19 UTC (rev 5883) +++ csw/mgar/pkg/cpan/GD/trunk/Makefile 2009-08-06 15:00:21 UTC (rev 5884) @@ -1,31 +1,29 @@ GARNAME = GD -GARVERSION = 2.35 +GARVERSION = 2.44 CATEGORIES = cpan AUTHOR = LDS -DESCRIPTION = interface to Gd Graphics Library +DESCRIPTION = Interface to GD Graphics Library define BLURB GD.pm is a Perl interface to Thomas Boutell\'s gd graphics library (version 2.01 or higher; see below). GD allows you to create color drawings using a large number of graphics primitives, and emit the drawings as PNG files. endef -# The GD test gives strange results on test 10. Visual -# inspection shows the images to be identical, but the -# created data is smaller than the regression data. -# Skip test 10 for now. -#PATCHFILES = gdtest.diff +PACKAGES = CSWpmgd +CATALOGNAME = pm_gd -DISTFILES += CSWpmgd.gspec CSWpmgd.depend +REQUIRED_PKGS = CSWftype2 CSWgd CSWiconv CSWjpeg CSWpng +REQUIRED_PKGS += CSWxpm CSWzlib CSWfconfig -DEPENDS += lib/gd +CONFIGURE_ARGS = lib_gd_path $(libdir) +CONFIGURE_ARGS += lib_ft_path $(libdir) +CONFIGURE_ARGS += lib_png_path $(libdir) +CONFIGURE_ARGS += lib_jpeg_path $(libdir) +CONFIGURE_ARGS += lib_xpm_path $(libdir) +CONFIGURE_ARGS += lib_zlib_path $(libdir) -CONFIGURE_ARGS = -options "JPEG,FT,XPM" -CONFIGURE_ARGS += -lib_gd_path $(libdir) -CONFIGURE_ARGS += -lib_ft_path $(libdir) -CONFIGURE_ARGS += -lib_png_path $(libdir) -CONFIGURE_ARGS += -lib_jpeg_path $(libdir) -CONFIGURE_ARGS += -lib_xpm_path $(libdir) -CONFIGURE_ARGS += -lib_zlib_path $(libdir) +# Don't use hardcoded -Wformat=0 +BUILD_OVERRIDE_DIRS = CCFLAGS include gar/category.mk Modified: csw/mgar/pkg/cpan/GD/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/GD/trunk/checksums 2009-08-06 14:49:19 UTC (rev 5883) +++ csw/mgar/pkg/cpan/GD/trunk/checksums 2009-08-06 15:00:21 UTC (rev 5884) @@ -1,3 +1 @@ -e378d4e1775235a405f4ecd3a8e97bdc download/CSWpmgd.gspec -882cfc02f0fd6a7892b45bc34a8a9755 download/CSWpmgd.depend -dfc3e16e85a17aab7ee1029fbe307fca download/GD-2.35.tar.gz +9b9a4d78a5af0616a96264b0aa354859 download/GD-2.44.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 Aug 6 17:07:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:07:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5885] csw/mgar/pkg/cpan/Clone/trunk Message-ID: Revision: 5885 http://gar.svn.sourceforge.net/gar/?rev=5885&view=rev Author: dmichelsen Date: 2009-08-06 15:07:08 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Clone: Update to 0.31 Modified Paths: -------------- csw/mgar/pkg/cpan/Clone/trunk/Makefile csw/mgar/pkg/cpan/Clone/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.depend csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Clone/trunk/ Property changes on: csw/mgar/pkg/cpan/Clone/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/Clone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/Makefile 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/Makefile 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,15 +1,16 @@ GARNAME = Clone -GARVERSION = 0.22 +GARVERSION = 0.31 CATEGORIES = cpan AUTHOR = RDF -DESCRIPTION = recursively copy Perl datatypes +DESCRIPTION = Recursively copy Perl datatypes define BLURB This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. endef -DISTFILES = $(call admfiles,CSWpmclone,depend prototype) +PACKAGES = CSWpmclone +CATALOGNAME = pm_clone include gar/category.mk Modified: csw/mgar/pkg/cpan/Clone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/checksums 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/checksums 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,4 +1 @@ -8800e24fa1a5cccd40b78a6ad3d30ab3 download/CSWpmclone.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmclone.depend -da2a0ff0fa5bef6998158d7c70783eb2 download/CSWpmclone.prototype -f70af2c46fbb60acc4388908bfd37c2f download/Clone-0.22.tar.gz +65f34e7280d7b7dfb72ab6224e5767f5 download/Clone-0.31.tar.gz Deleted: csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,10 +0,0 @@ -%var bitname pm_clone -%var pkgname CSWpmclone -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Ray Finch, rdf at cpan.org - -Copyright 2001 Ray Finch. - -This module is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,14 +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 -f none /opt/csw/lib/perl/csw/Clone.pm 0555 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Clone 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/Clone.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/Clone.so 0555 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/autosplit.ix 0444 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Clone.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 Thu Aug 6 17:12:11 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:12:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5886] csw/mgar/pkg/cpan/IO-Tty/trunk Message-ID: Revision: 5886 http://gar.svn.sourceforge.net/gar/?rev=5886&view=rev Author: dmichelsen Date: 2009-08-06 15:12:10 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IO-Tty: Update to 1.08 Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Tty/trunk/Makefile csw/mgar/pkg/cpan/IO-Tty/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Tty/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-Tty/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-Tty/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Tty/trunk/Makefile 2009-08-06 15:07:08 UTC (rev 5885) +++ csw/mgar/pkg/cpan/IO-Tty/trunk/Makefile 2009-08-06 15:12:10 UTC (rev 5886) @@ -1,9 +1,9 @@ GARNAME = IO-Tty -GARVERSION = 1.07 +GARVERSION = 1.08 CATEGORIES = cpan AUTHOR = RGIERSIG -DESCRIPTION = pseudo TTY object class +DESCRIPTION = Low-level allocate a pseudo-Tty, import constants define BLURB IO::Pty provides an interface to allow the creation of a pseudo tty. endef Modified: csw/mgar/pkg/cpan/IO-Tty/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Tty/trunk/checksums 2009-08-06 15:07:08 UTC (rev 5885) +++ csw/mgar/pkg/cpan/IO-Tty/trunk/checksums 2009-08-06 15:12:10 UTC (rev 5886) @@ -1 +1 @@ -2a54e49b60a4092e93af5b8073ec5325 download/IO-Tty-1.07.tar.gz +e99d819a6f8c11ae105b770cc508a4fc download/IO-Tty-1.08.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 Aug 6 17:21:49 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:21:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5887] csw/mgar/pkg/cpan/Convert-ASN1/trunk Message-ID: Revision: 5887 http://gar.svn.sourceforge.net/gar/?rev=5887&view=rev Author: dmichelsen Date: 2009-08-06 15:21:49 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Convert-ASN1: Update to 0.22 Modified Paths: -------------- csw/mgar/pkg/cpan/Convert-ASN1/trunk/Makefile csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Convert-ASN1/trunk/ Property changes on: csw/mgar/pkg/cpan/Convert-ASN1/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/Convert-ASN1/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Convert-ASN1/trunk/Makefile 2009-08-06 15:12:10 UTC (rev 5886) +++ csw/mgar/pkg/cpan/Convert-ASN1/trunk/Makefile 2009-08-06 15:21:49 UTC (rev 5887) @@ -1,5 +1,5 @@ GARNAME = Convert-ASN1 -GARVERSION = 0.21 +GARVERSION = 0.22 CATEGORIES = cpan AUTHOR = GBARR @@ -8,6 +8,9 @@ Convert::ASN1 encodes and decodes ASN.1 data structures using BER/DER rules. endef -DISTFILES += CSWpmconvertasn1.gspec +PACKAGES = CSWpmconvertasn1 +CATALOGNAME = pm_convertasn1 +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums 2009-08-06 15:12:10 UTC (rev 5886) +++ csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums 2009-08-06 15:21:49 UTC (rev 5887) @@ -1,2 +1 @@ -428e87b921884af147a63175e6660660 download/CSWpmconvertasn1.gspec -6f5c45724db1b09911e489275d19d0f5 download/Convert-ASN1-0.21.tar.gz +64a555e44adc79d92072b9fc7a6779c4 download/Convert-ASN1-0.22.tar.gz Deleted: csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec =================================================================== --- csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec 2009-08-06 15:12:10 UTC (rev 5886) +++ csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec 2009-08-06 15:21:49 UTC (rev 5887) @@ -1,8 +0,0 @@ -%var bitname pm_convertasn1 -%var pkgname CSWpmconvertasn1 -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2000-2002 Graham Barr . 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 dmichelsen at users.sourceforge.net Thu Aug 6 17:26:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:26:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5888] csw/mgar/pkg/cpan/URI/trunk Message-ID: Revision: 5888 http://gar.svn.sourceforge.net/gar/?rev=5888&view=rev Author: dmichelsen Date: 2009-08-06 15:26:41 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/URI: Update to 1.38 Modified Paths: -------------- csw/mgar/pkg/cpan/URI/trunk/Makefile csw/mgar/pkg/cpan/URI/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.depend csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/URI/trunk/ Property changes on: csw/mgar/pkg/cpan/URI/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/URI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/Makefile 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/Makefile 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,5 +1,5 @@ GARNAME = URI -GARVERSION = 1.35 +GARVERSION = 1.38 CATEGORIES = cpan AUTHOR = GAAS @@ -10,6 +10,9 @@ updated by RFC 2732). endef -DISTFILES += $(call admfiles,CSWpmuri,depend prototype) +PACKAGES = CSWpmuri +CATALOGNAME = pm_uri +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/URI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/checksums 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/checksums 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,4 +1 @@ -cc8e50e16c0153c52d2ac89833b3973a download/CSWpmuri.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmuri.depend -e522252bffc0d185ded6fdbe492e66ee download/CSWpmuri.prototype -1a933b1114c41a25587ee59ba8376f7c download/URI-1.35.tar.gz +35fba2715eb8ac56e8e30244ae69ff65 download/URI-1.38.tar.gz Deleted: csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,10 +0,0 @@ -%var bitname pm_uri -%var pkgname CSWpmuri -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1998-2003 Gisle Aas. -Copyright 1998 Graham Barr. - -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/URI/trunk/files/CSWpmuri.prototype =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.prototype 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.prototype 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,73 +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/URI 0755 root bin -f none /opt/csw/lib/perl/csw/auto/URI/.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/URI.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::Escape.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::Heuristic.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::QueryParam.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::Split.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::URL.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::WithBase.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::data.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::file.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::ldap.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/URI 0755 root bin -f none /opt/csw/share/perl/csw/URI.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/Escape.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/Heuristic.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/QueryParam.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/Split.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/URL.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/WithBase.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_foreign.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_generic.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_ldap.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_login.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_query.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_segment.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_server.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_userpass.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/data.pm 0444 root bin -d none /opt/csw/share/perl/csw/URI/file 0755 root bin -f none /opt/csw/share/perl/csw/URI/file.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/FAT.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Mac.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/OS2.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/QNX.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Unix.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Win32.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ftp.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/gopher.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/http.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/https.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ldap.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ldapi.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ldaps.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/mailto.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/mms.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/news.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/nntp.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/pop.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rlogin.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rsync.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rtsp.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rtspu.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/sip.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/sips.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/snews.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ssh.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/telnet.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/tn3270.pm 0444 root bin -d none /opt/csw/share/perl/csw/URI/urn 0755 root bin -f none /opt/csw/share/perl/csw/URI/urn.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/urn/isbn.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/urn/oid.pm 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 Thu Aug 6 17:39:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:39:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5889] csw/mgar/pkg/cpan/YAML/trunk Message-ID: Revision: 5889 http://gar.svn.sourceforge.net/gar/?rev=5889&view=rev Author: dmichelsen Date: 2009-08-06 15:39:55 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/YAML: Update to 0.68 Modified Paths: -------------- csw/mgar/pkg/cpan/YAML/trunk/Makefile csw/mgar/pkg/cpan/YAML/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype csw/mgar/pkg/cpan/YAML/trunk/files/build.diff Property Changed: ---------------- csw/mgar/pkg/cpan/YAML/trunk/ Property changes on: csw/mgar/pkg/cpan/YAML/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/YAML/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/Makefile 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/Makefile 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,5 +1,5 @@ GARNAME = YAML -GARVERSION = 0.62 +GARVERSION = 0.68 CATEGORIES = cpan AUTHOR = INGY @@ -11,9 +11,9 @@ structures of most modern programming languages. (Including Perl!!!) endef -DISTFILES = $(call admfiles,CSWpmyaml,prototype) +PACKAGES = CSWpmyaml +CATALOGNAME = pm_yaml -# Don't ask questions -PATCHFILES += build.diff +ARCHALL = 1 include gar/category.mk Modified: csw/mgar/pkg/cpan/YAML/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/checksums 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/checksums 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,4 +1 @@ -f9c10a9ddce8142990ce6a4be87746cc download/CSWpmyaml.gspec -29a2a8f422bec60ce149dfd3df6166c5 download/CSWpmyaml.prototype -4be042a043ec520074b0ab6f7ca0bded download/YAML-0.62.tar.gz -eba57d037eaa792332717d5c2d0cdeaa download/build.diff +4b4255360bb885acdba05314daa9129a download/YAML-0.68.tar.gz Deleted: csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,11 +0,0 @@ -%var bitname pm_yaml -%var pkgname CSWpmyaml -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2001, 2002. Brian Ingerson. All rights reserved. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See L Deleted: csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,43 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/ysh 0555 root bin -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/YAML 0755 root bin -f none /opt/csw/lib/perl/csw/auto/YAML/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/ysh.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Test::YAML.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Dumper.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Dumper::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Error.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Loader.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Loader::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Marshall.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Node.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Tag.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Types.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/Test 0755 root bin -f none /opt/csw/share/perl/csw/Test/YAML.pm 0444 root bin -d none /opt/csw/share/perl/csw/YAML 0755 root bin -f none /opt/csw/share/perl/csw/YAML.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Base.pm 0444 root bin -d none /opt/csw/share/perl/csw/YAML/Dumper 0755 root bin -f none /opt/csw/share/perl/csw/YAML/Dumper.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Dumper/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Error.pm 0444 root bin -d none /opt/csw/share/perl/csw/YAML/Loader 0755 root bin -f none /opt/csw/share/perl/csw/YAML/Loader.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Loader/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Marshall.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Node.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Tag.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Types.pm 0444 root bin Deleted: csw/mgar/pkg/cpan/YAML/trunk/files/build.diff =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/files/build.diff 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/files/build.diff 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,37 +0,0 @@ -diff --speed-large-files --minimal -Nru YAML-0.62.orig/Makefile.PL YAML-0.62/Makefile.PL ---- YAML-0.62.orig/Makefile.PL 2006-07-01 01:07:33.000000000 -0400 -+++ YAML-0.62/Makefile.PL 2006-09-03 00:33:34.848059000 -0400 -@@ -1,19 +1,19 @@ - use inc::Module::Install; - --print << '_'; -- --*** WARNING *** -- --This release breaks compatibility with versions earlier than version 0.60 of --YAML::Syck and YAML.pm when serializing blessed references. -- --See the COMPATIBILITY file for more information. -- --_ -- --if (!is_admin()) { -- exit() unless prompt("Continue installing YAML.pm?", 'y') =~ /^y/i; --} -+#print << '_'; -+# -+#*** WARNING *** -+# -+#This release breaks compatibility with versions earlier than version 0.60 of -+#YAML::Syck and YAML.pm when serializing blessed references. -+# -+#See the COMPATIBILITY file for more information. -+# -+#_ -+# -+#if (!is_admin()) { -+# exit() unless prompt("Continue installing YAML.pm?", 'y') =~ /^y/i; -+#} - - name 'YAML'; - all_from 'lib/YAML.pm'; 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 Aug 6 17:48:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:48:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5891] csw/mgar/pkg/cpan/Data-Hierarchy/trunk Message-ID: Revision: 5891 http://gar.svn.sourceforge.net/gar/?rev=5891&view=rev Author: dmichelsen Date: 2009-08-06 15:48:31 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Data-Hierarchy: Update to 0.34 Modified Paths: -------------- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/Makefile csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/ Property changes on: csw/mgar/pkg/cpan/Data-Hierarchy/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/Data-Hierarchy/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/Makefile 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/Makefile 2009-08-06 15:48:31 UTC (rev 5891) @@ -3,14 +3,18 @@ CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = handle data in a hierarchical structure +DESCRIPTION = Handle data in a hierarchical structure define BLURB Data::Hierarchy provides a simple interface for manipulating inheritable data attached to a hierarchical environment (like filesystem). endef -DISTFILES = $(call admfiles,CSWpmdatahier,depend prototype) +PREREQUISITE_PKGS = CSWpmtstexcept +REQUIRED_PKGS = CSWpmclone -DEPENDS += cpan/Clone +PACKAGES = CSWpmdatahier +CATALOGNAME = pm_datahier +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums 2009-08-06 15:48:31 UTC (rev 5891) @@ -1,4 +1 @@ -bbc37700201d31afc63e57b3550ffa9c download/CSWpmdatahier.gspec -864132ac1b0a042e9772b1138a92acc4 download/CSWpmdatahier.depend -2898337080f4535ca6e8d762b15332d3 download/CSWpmdatahier.prototype f4ac04c7f676cbfff9bbd1be118d4c66 download/Data-Hierarchy-0.34.tar.gz Deleted: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend 2009-08-06 15:48:31 UTC (rev 5891) @@ -1 +0,0 @@ -P CSWpmclone pm_clone - recursively copy Perl datatypes Deleted: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec 2009-08-06 15:48:31 UTC (rev 5891) @@ -1,11 +0,0 @@ -%var bitname pm_datahier -%var pkgname CSWpmdatahier -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003-2004 by Chia-liang Kao clkao at clkao.org. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype 2009-08-06 15:48:31 UTC (rev 5891) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Data 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Data/Hierarchy 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Data/Hierarchy/.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/Data::Hierarchy.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/Data 0755 root bin -f none /opt/csw/share/perl/csw/Data/Hierarchy.pm 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 Thu Aug 6 17:46:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:46:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5890] csw/mgar/pkg/cpan/Test-Exception/trunk Message-ID: Revision: 5890 http://gar.svn.sourceforge.net/gar/?rev=5890&view=rev Author: dmichelsen Date: 2009-08-06 15:46:23 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Test-Exception: Update to 0.27 Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Exception/trunk/Makefile csw/mgar/pkg/cpan/Test-Exception/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/Test-Exception/trunk/ Property changes on: csw/mgar/pkg/cpan/Test-Exception/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/Test-Exception/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Exception/trunk/Makefile 2009-08-06 15:39:55 UTC (rev 5889) +++ csw/mgar/pkg/cpan/Test-Exception/trunk/Makefile 2009-08-06 15:46:23 UTC (rev 5890) @@ -1,17 +1,20 @@ GARNAME = Test-Exception -GARVERSION = 0.25 +GARVERSION = 0.27 CATEGORIES = cpan AUTHOR = ADIE -DESCRIPTION = test functions for exception based code +DESCRIPTION = Test functions for exception based code define BLURB This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. endef -DISTFILES += CSWpmtstexcept.gspec CSWpmtstexcept.depend +REQUIRED_PKGS = CSWpmsubuplevel -DEPENDS += cpan/Sub-Uplevel +PACKAGES = CSWpmtstexcept +CATALOGNAME = pm_tstexcept +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Test-Exception/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Exception/trunk/checksums 2009-08-06 15:39:55 UTC (rev 5889) +++ csw/mgar/pkg/cpan/Test-Exception/trunk/checksums 2009-08-06 15:46:23 UTC (rev 5890) @@ -1,3 +1 @@ -e958af76f90686e8c2b22b842bf15b65 download/CSWpmtstexcept.gspec -4a0e503bd8df2d291acf8f111dc92bb0 download/CSWpmtstexcept.depend -aaef654ff2239008e8827ece592f7a0a download/Test-Exception-0.25.tar.gz +dd9383e0bb207c7b0a04d6ba990a5909 download/Test-Exception-0.27.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bensons at users.sourceforge.net Thu Aug 6 18:11:11 2009 From: bensons at users.sourceforge.net (bensons at users.sourceforge.net) Date: Thu, 06 Aug 2009 16:11:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5892] csw/mgar/pkg/openvpn/trunk Message-ID: Revision: 5892 http://gar.svn.sourceforge.net/gar/?rev=5892&view=rev Author: bensons Date: 2009-08-06 16:11:06 +0000 (Thu, 06 Aug 2009) Log Message: ----------- openvpn: initial commit for GARv2 Modified Paths: -------------- csw/mgar/pkg/openvpn/trunk/Makefile csw/mgar/pkg/openvpn/trunk/checksums Added Paths: ----------- csw/mgar/pkg/openvpn/trunk/files/cswopenvpn csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c Removed Paths: ------------- csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype csw/mgar/pkg/openvpn/trunk/files/etc/ Modified: csw/mgar/pkg/openvpn/trunk/Makefile =================================================================== --- csw/mgar/pkg/openvpn/trunk/Makefile 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/Makefile 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,5 +1,5 @@ GARNAME = openvpn -GARVERSION = 2.0.7 +GARVERSION = 2.0.9 CATEGORIES = server DESCRIPTION = secure IP tunnel daemon @@ -7,21 +7,40 @@ OpenVPN is a full-featured SSL VPN solution which can accomodate a wide range of configurations, including remote access, site-to-site VPNs, WiFi security, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls endef +# master files MASTER_SITES = http://openvpn.net/release/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWopenvpn, prototype ) +# we require +REQUIRED_PKGS = CSWosslrt CSWlzo + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz CONFIGURE_ARGS = --prefix=$(prefix) --mandir=/opt/csw/share/man +PATCHFILES = patch.openvpn-2.0.9.tun.c -TEST_SCRIPTS = +# use classes for install/removal +PRESERVECONF = $(sysconfdir)/$(GARNAME)/$(GARNAME).conf.CSW +INITSMF = /etc/opt/csw/init.d/cswopenvpn +# no build tests +SKIPTEST = 1 + include gar/category.mk -post-install: - ( cp -r $(WORKSRC)/../../../files/etc $(DESTDIR)/etc ) - ( mkdir -p $(DESTDIR)/etc/csw/easy-rsa ) - ( cp -r $(WORKSRC)/easy-rsa $(DESTDIR)/etc/csw/easy-rsa ) +post-install-modulated: + @echo "Installing sample files" + @ginstall -d -m 755 $(DESTDIR)$(docdir)/$(GARNAME) + @cp -pr $(WORKSRC)/easy-rsa $(DESTDIR)$(docdir)/$(GARNAME) + @cp -pr $(WORKSRC)/sample-scripts $(DESTDIR)$(docdir)/$(GARNAME) + @cp -pr $(WORKSRC)/sample-config-files $(DESTDIR)$(docdir)/$(GARNAME) + @echo "Installing $(GARNAME).conf.CSW" + @ginstall -d -m 755 $(DESTDIR)$(sysconfdir)/$(GARNAME) + @cp -pr $(WORKSRC)/sample-config-files/server.conf \ + $(DESTDIR)$(sysconfdir)/$(GARNAME)/$(GARNAME).conf.CSW + @echo "Installing start/stop script" + @ginstall -d -m 755 $(DESTDIR)/etc/opt/csw/init.d + @ginstall -m 755 $(FILEDIR)/cswopenvpn \ + $(DESTDIR)/etc/opt/csw/init.d/cswopenvpn @$(MAKECOOKIE) Modified: csw/mgar/pkg/openvpn/trunk/checksums =================================================================== --- csw/mgar/pkg/openvpn/trunk/checksums 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/checksums 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,3 +1,2 @@ -93528233f1f6d02fc18e2c00f82e0aca download/openvpn-2.0.7.tar.gz -c3b9c93937349f371ca49b897d752ff0 download/CSWopenvpn.gspec -735806001ebc39ad07dcb1d557bf36a3 download/CSWopenvpn.prototype +60745008b90b7dbe25fe8337c550fec6 download/openvpn-2.0.9.tar.gz +1c9565b3212299c029821f1753138972 download/patch.openvpn-2.0.9.tun.c Deleted: csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,4 +0,0 @@ -%var bitname openvpn -%var pkgname CSWopenvpn -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,51 +0,0 @@ -d none /opt/csw/sbin 0755 root bin -f none /opt/csw/sbin/openvpn 0755 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/man8 0755 root bin -f none /opt/csw/share/man/man8/openvpn.8 0644 root bin -i copyright=CSWopenvpn.copyright -i depend=CSWopenvpn.depend -i pkginfo=CSWopenvpn.pkginfo -d none /etc 0755 root bin -d none /etc/init.d 0755 root bin -f none /etc/init.d/cswopenvpn 0755 root bin -s none /etc/rc0.d/K16cswopenvpn=../init.d/cswopenvpn -s none /etc/rc1.d/K16cswopenvpn=../init.d/cswopenvpn -s none /etc/rc2.d/S60cswopenvpn=../init.d/cswopenvpn -s none /etc/rcS.d/K16cswopenvpn=../init.d/cswopenvpn -d none /etc/csw 0755 root bin -d none /etc/csw/openvpn 0700 root bin -f none /etc/csw/openvpn/openvpn.conf.CSW 0644 root bin -d none /etc/csw/openvpn/easy-rsa 0700 root bin -f none /etc/csw/openvpn/easy-rsa/vars 0644 root bin -f none /etc/csw/openvpn/easy-rsa/list-crl 0755 root bin -f none /etc/csw/openvpn/easy-rsa/clean-all 0755 root bin -f none /etc/csw/openvpn/easy-rsa/openssl.cnf 0644 root bin -f none /etc/csw/openvpn/easy-rsa/sign-req 0755 root bin -f none /etc/csw/openvpn/easy-rsa/README 0644 root bin -d none /etc/csw/openvpn/easy-rsa/Windows 0755 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/clean-all.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-key-server.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/vars.bat.sample 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-key-pkcs12.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/README.txt 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-key.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/revoke-full.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/init-config.bat 0744 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/index.txt.start 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-ca.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-dh.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/serial.start 0644 root bin -f none /etc/csw/openvpn/easy-rsa/build-key-pkcs12 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-key-server 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-key-pass 0755 root bin -f none /etc/csw/openvpn/easy-rsa/revoke-full 0755 root bin -f none /etc/csw/openvpn/easy-rsa/make-crl 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-req-pass 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-key 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-req 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-ca 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-dh 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-inter 0755 root bin -f none /etc/csw/openvpn/easy-rsa/revoke-crt 0755 root bin Added: csw/mgar/pkg/openvpn/trunk/files/cswopenvpn =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/cswopenvpn (rev 0) +++ csw/mgar/pkg/openvpn/trunk/files/cswopenvpn 2009-08-06 16:11:06 UTC (rev 5892) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Start/Stop script for CSW OpenVPN daemon +# +# Multiple openvpd daemon processes are possible, but this script will +# only handle the first one. +# AUTOENABLE no +OPENVPN_CONF=/opt/csw/etc/openvpn/openvpn.conf +PATH=/opt/csw/bin:$PATH +OPENVPN_DAEMON=/opt/csw/sbin/openvpn + +case $1 in +'start') + if [ -f $OPENVPN_CONF ]; then + printf "Starting OpenVPN daemon..." + $OPENVPN_DAEMON --config $OPENVPN_CONF --daemon + printf "DONE \n" + fi + ;; +'stop') + pkill -TERM openvpn && printf "OpenVPN daemon stopped\n" + ;; +*) + echo "Usage: $0 { start | stop }" + exit 1 + ;; +esac Added: csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c (rev 0) +++ csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c 2009-08-06 16:11:06 UTC (rev 5892) @@ -0,0 +1,213 @@ +--- openvpn-2.0.9/tun.c Wed Apr 5 15:29:24 2006 ++++ 207/openvpn/tun.c Wed May 20 23:10:36 2009 +@@ -30,6 +30,12 @@ + * from VTun by Maxim Krasnyansky . + */ + ++/* ++ * Modified by: Kazuyoshi ++ * Modified for supporting tap device for Solaris ++ * $Date: 2009/05/20 14:10:36 $, $Revision: 1.10.2.1 $ ++ */ ++ + #ifdef WIN32 + #include "config-win32.h" + #else +@@ -49,6 +55,7 @@ + + #ifdef TARGET_SOLARIS + static void solaris_error_close (struct tuntap *tt, const struct env_set *es, const char *actual); ++#include + #endif + + bool +@@ -629,7 +636,12 @@ + ); + } + else +- no_tap_ifconfig (); ++ openvpn_snprintf (command_line, sizeof (command_line), ++ IFCONFIG_PATH " %s %s netmask %s broadcast + up", ++ actual, ++ ifconfig_local, ++ ifconfig_remote_netmask ++ ); + + msg (M_INFO, "%s", command_line); + if (!system_check (command_line, es, 0, "Solaris ifconfig phase-2 failed")) +@@ -1186,14 +1198,17 @@ + void + open_tun (const char *dev, const char *dev_type, const char *dev_node, bool ipv6, struct tuntap *tt) + { +- int if_fd, muxid, ppa = -1; +- struct ifreq ifr; ++ int if_fd, ip_muxid, arp_muxid, arp_fd, ppa = -1; ++ struct lifreq ifr; + const char *ptr; +- const char *ip_node; ++ const char *ip_node, *arp_node; + const char *dev_tuntap_type; + int link_type; + bool is_tun; ++ struct strioctl strioc_if, strioc_ppa; + ++ memset(&ifr, 0x0, sizeof(ifr)); ++ + ipv6_support (ipv6, false, tt); + + if (tt->type == DEV_TYPE_NULL) +@@ -1213,9 +1228,10 @@ + } + else if (tt->type == DEV_TYPE_TAP) + { +- ip_node = "/dev/ip"; ++ ip_node = "/dev/udp"; + if (!dev_node) + dev_node = "/dev/tap"; ++ arp_node = dev_node; + dev_tuntap_type = "tap"; + link_type = I_PLINK; /* was: I_LINK */ + is_tun = false; +@@ -1242,7 +1258,11 @@ + msg (M_ERR, "Can't open %s", dev_node); + + /* Assign a new PPA and get its unit number. */ +- if ((ppa = ioctl (tt->fd, TUNNEWPPA, ppa)) < 0) ++ strioc_ppa.ic_cmd = TUNNEWPPA; ++ strioc_ppa.ic_timout = 0; ++ strioc_ppa.ic_len = sizeof(ppa); ++ strioc_ppa.ic_dp = (char *)&ppa; ++ if ((ppa = ioctl (tt->fd, I_STR, &strioc_ppa)) < 0) + msg (M_ERR, "Can't assign new interface"); + + if ((if_fd = open (dev_node, O_RDWR, 0)) < 0) +@@ -1251,27 +1271,85 @@ + if (ioctl (if_fd, I_PUSH, "ip") < 0) + msg (M_ERR, "Can't push IP module"); + +- /* Assign ppa according to the unit number returned by tun device */ +- if (ioctl (if_fd, IF_UNITSEL, (char *) &ppa) < 0) +- msg (M_ERR, "Can't set PPA %d", ppa); ++ if (tt->type == DEV_TYPE_TUN) ++ { ++ /* Assign ppa according to the unit number returned by tun device */ ++ if (ioctl (if_fd, IF_UNITSEL, (char *) &ppa) < 0) ++ msg (M_ERR, "Can't set PPA %d", ppa); ++ } + +- if ((muxid = ioctl (tt->ip_fd, link_type, if_fd)) < 0) +- msg (M_ERR, "Can't link %s device to IP", dev_tuntap_type); +- +- close (if_fd); +- + tt->actual_name = (char *) malloc (32); + check_malloc_return (tt->actual_name); + + openvpn_snprintf (tt->actual_name, 32, "%s%d", dev_tuntap_type, ppa); + ++ if (tt->type == DEV_TYPE_TAP) ++ { ++ if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0) ++ msg (M_ERR, "Can't get flags\n"); ++ strncpynt (ifr.lifr_name, tt->actual_name, sizeof (ifr.lifr_name)); ++ ifr.lifr_ppa = ppa; ++ /* Assign ppa according to the unit number returned by tun device */ ++ if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0) ++ msg (M_ERR, "Can't set PPA %d", ppa); ++ if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0) ++ msg (M_ERR, "Can't get flags\n"); ++ /* Push arp module to if_fd */ ++ if (ioctl (if_fd, I_PUSH, "arp") < 0) ++ msg (M_ERR, "Can't push ARP module"); ++ ++ /* Pop any modules on the stream */ ++ while (true) ++ { ++ if (ioctl (tt->ip_fd, I_POP, NULL) < 0) ++ break; ++ } ++ /* Push arp module to ip_fd */ ++ if (ioctl (tt->ip_fd, I_PUSH, "arp") < 0) ++ msg (M_ERR, "Can't push ARP module\n"); ++ ++ /* Open arp_fd */ ++ if ((arp_fd = open (arp_node, O_RDWR, 0)) < 0) ++ msg (M_ERR, "Can't open %s\n", arp_node); ++ /* Push arp module to arp_fd */ ++ if (ioctl (arp_fd, I_PUSH, "arp") < 0) ++ msg (M_ERR, "Can't push ARP module\n"); ++ ++ /* Set ifname to arp */ ++ strioc_if.ic_cmd = SIOCSLIFNAME; ++ strioc_if.ic_timout = 0; ++ strioc_if.ic_len = sizeof(ifr); ++ strioc_if.ic_dp = (char *)𝔦 ++ if (ioctl(arp_fd, I_STR, &strioc_if) < 0){ ++ msg (M_ERR, "Can't set ifname to arp\n"); ++ } ++ } ++ ++ if ((ip_muxid = ioctl (tt->ip_fd, link_type, if_fd)) < 0) ++ msg (M_ERR, "Can't link %s device to IP", dev_tuntap_type); ++ ++ if (tt->type == DEV_TYPE_TAP) { ++ if ((arp_muxid = ioctl (tt->ip_fd, link_type, arp_fd)) < 0) ++ msg (M_ERR, "Can't link %s device to ARP", dev_tuntap_type); ++ close (arp_fd); ++ } ++ ++ close (if_fd); ++ + CLEAR (ifr); +- strncpynt (ifr.ifr_name, tt->actual_name, sizeof (ifr.ifr_name)); +- ifr.ifr_ip_muxid = muxid; ++ strncpynt (ifr.lifr_name, tt->actual_name, sizeof (ifr.lifr_name)); ++ ifr.lifr_ip_muxid = ip_muxid; ++ if (tt->type == DEV_TYPE_TAP) { ++ ifr.lifr_arp_muxid = arp_muxid; ++ } + +- if (ioctl (tt->ip_fd, SIOCSIFMUXID, &ifr) < 0) ++ if (ioctl (tt->ip_fd, SIOCSLIFMUXID, &ifr) < 0) + { +- ioctl (tt->ip_fd, I_PUNLINK, muxid); ++ if (tt->type == DEV_TYPE_TAP) ++ { ++ ioctl (tt->ip_fd, I_PUNLINK , arp_muxid); ++ } ++ ioctl (tt->ip_fd, I_PUNLINK, ip_muxid); + msg (M_ERR, "Can't set multiplexor id"); + } + +@@ -1289,19 +1367,25 @@ + { + if (tt->ip_fd >= 0) + { +- struct ifreq ifr; ++ struct lifreq ifr; + CLEAR (ifr); +- strncpynt (ifr.ifr_name, tt->actual_name, sizeof (ifr.ifr_name)); ++ strncpynt (ifr.lifr_name, tt->actual_name, sizeof (ifr.lifr_name)); + +- if (ioctl (tt->ip_fd, SIOCGIFFLAGS, &ifr) < 0) ++ if (ioctl (tt->ip_fd, SIOCGLIFFLAGS, &ifr) < 0) + msg (M_WARN | M_ERRNO, "Can't get iface flags"); + +- if (ioctl (tt->ip_fd, SIOCGIFMUXID, &ifr) < 0) ++ if (ioctl (tt->ip_fd, SIOCGLIFMUXID, &ifr) < 0) + msg (M_WARN | M_ERRNO, "Can't get multiplexor id"); + +- if (ioctl (tt->ip_fd, I_PUNLINK, ifr.ifr_ip_muxid) < 0) +- msg (M_WARN | M_ERRNO, "Can't unlink interface"); ++ if (tt->type == DEV_TYPE_TAP) ++ { ++ if (ioctl (tt->ip_fd, I_PUNLINK, ifr.lifr_arp_muxid) < 0) ++ msg (M_WARN | M_ERRNO, "Can't unlink interface(arp)"); ++ } + ++ if (ioctl (tt->ip_fd, I_PUNLINK, ifr.lifr_ip_muxid) < 0) ++ msg (M_WARN | M_ERRNO, "Can't unlink interface(ip)"); ++ + close (tt->ip_fd); + tt->ip_fd = -1; + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Aug 6 20:09:35 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:09:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5893] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 5893 http://gar.svn.sourceforge.net/gar/?rev=5893&view=rev Author: bdwalton Date: 2009-08-06 18:09:35 +0000 (Thu, 06 Aug 2009) Log Message: ----------- mGAR: use $(MM_LIBDIR) no $ISALIST in RPATH when gcc4 is used 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-08-06 16:11:06 UTC (rev 5892) +++ csw/mgar/gar/v2/gar.conf.mk 2009-08-06 18:09:35 UTC (rev 5893) @@ -479,7 +479,7 @@ 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) -GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib/\$$ISALIST $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) +GCC4_LD_OPTIONS = -R$(abspath $(GCC4_CC_HOME)/lib/$(MM_LIBDIR)) $(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) 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 Aug 6 20:36:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:36:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5894] csw/mgar/pkg Message-ID: Revision: 5894 http://gar.svn.sourceforge.net/gar/?rev=5894&view=rev Author: dmichelsen Date: 2009-08-06 18:36:56 +0000 (Thu, 06 Aug 2009) Log Message: ----------- libid3tag: Initial commit Added Paths: ----------- csw/mgar/pkg/libid3tag/ csw/mgar/pkg/libid3tag/branches/ csw/mgar/pkg/libid3tag/tags/ csw/mgar/pkg/libid3tag/trunk/ csw/mgar/pkg/libid3tag/trunk/Makefile csw/mgar/pkg/libid3tag/trunk/checksums csw/mgar/pkg/libid3tag/trunk/files/ Property changes on: csw/mgar/pkg/libid3tag/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/libid3tag/trunk/Makefile =================================================================== --- csw/mgar/pkg/libid3tag/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/Makefile 2009-08-06 18:36:56 UTC (rev 5894) @@ -0,0 +1,30 @@ +GARNAME = libid3tag +GARVERSION = 0.15.1 +REV = b +CATEGORIES = lib + +DESCRIPTION = A library for reading and (eventually) writing ID3 tags +define BLURB +endef + +SF_PROJ = mad +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION)$(REV).tar.gz + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION)$(REV) + +REQUIRED_PKGS = CSWzlib + +BUILD64 = 1 +NOISALIST = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk + +SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) Added: csw/mgar/pkg/libid3tag/trunk/checksums =================================================================== --- csw/mgar/pkg/libid3tag/trunk/checksums (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/checksums 2009-08-06 18:36:56 UTC (rev 5894) @@ -0,0 +1 @@ +e5808ad997ba32c498803822078748c3 download/libid3tag-0.15.1b.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 Aug 6 20:58:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:58:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5895] csw/mgar/pkg Message-ID: Revision: 5895 http://gar.svn.sourceforge.net/gar/?rev=5895&view=rev Author: dmichelsen Date: 2009-08-06 18:58:40 +0000 (Thu, 06 Aug 2009) Log Message: ----------- libspf2: Initial commit Added Paths: ----------- csw/mgar/pkg/libspf2/ csw/mgar/pkg/libspf2/branches/ csw/mgar/pkg/libspf2/tags/ csw/mgar/pkg/libspf2/trunk/ csw/mgar/pkg/libspf2/trunk/Makefile csw/mgar/pkg/libspf2/trunk/checksums csw/mgar/pkg/libspf2/trunk/files/ Property changes on: csw/mgar/pkg/libspf2/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/libspf2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libspf2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libspf2/trunk/Makefile 2009-08-06 18:58:40 UTC (rev 5895) @@ -0,0 +1,24 @@ +GARNAME = libspf2 +GARVERSION = 1.2.9 +CATEGORIES = lib + +DESCRIPTION = Library that implements Sender Policy Framework +define BLURB + libspf2 implements the Sender Policy Framework, a part of the SPF/SRS protocol pair. + libspf2 is a library which allows email systems such as Sendmail, Postfix, Exim, + Zmailer and MS Exchange to check SPF records and make sure that the email is authorized + by the domain name that it is coming from. This prevents email forgery, commonly used + by spammers, scammers and email viruses/worms. +endef + +MASTER_SITES = http://www.libspf2.org/spf/ +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_SOURCEURL = http://www.libspf2.org + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/libspf2/trunk/checksums =================================================================== --- csw/mgar/pkg/libspf2/trunk/checksums (rev 0) +++ csw/mgar/pkg/libspf2/trunk/checksums 2009-08-06 18:58:40 UTC (rev 5895) @@ -0,0 +1 @@ +3305df4d1b13ca964d80b23bb5e4e2b6 download/libspf2-1.2.9.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 Aug 6 20:58:50 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:58:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5896] csw/mgar/pkg/cpan/IO-Zlib/trunk Message-ID: Revision: 5896 http://gar.svn.sourceforge.net/gar/?rev=5896&view=rev Author: dmichelsen Date: 2009-08-06 18:58:50 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IO-Zlib: Update to 1.10 Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Zlib/trunk/Makefile csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Zlib/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-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-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/Makefile 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/Makefile 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,5 +1,5 @@ GARNAME = IO-Zlib -GARVERSION = 1.05 +GARVERSION = 1.10 CATEGORIES = cpan AUTHOR = TOMHUGHES @@ -10,8 +10,11 @@ IO::Handle interface. endef -DISTFILES += $(call admfiles,CSWpmiozlib,depend prototype) +REQUIRED_PKGS = CSWpmcompresszlib -DEPENDS += cpan/Compress-Zlib +PACKAGES = CSWpmiozlib +CATALOGNAME = pm_iozlib +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,4 +1 @@ -3da3bf2f5f6109d43c8de52f1d28aa4a download/CSWpmiozlib.gspec -b3caddca6e99172389ea538097bf25fd download/CSWpmiozlib.depend -e12e7d55c10c7d4228f1c21f5d631ac8 download/CSWpmiozlib.prototype -06ca28954fc92cbee67c807cc6d7f599 download/IO-Zlib-1.05.tar.gz +078a9387009b928068f70759e61bd08f download/IO-Zlib-1.10.tar.gz Deleted: csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend 2009-08-06 18:58:50 UTC (rev 5896) @@ -1 +0,0 @@ -P CSWpmcompresszlib pm_compresszlib - Interface to zlib compression library Deleted: csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,9 +0,0 @@ -%var bitname pm_iozlib -%var pkgname CSWpmiozlib -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) Tom Hughes . - -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-Zlib/trunk/files/CSWpmiozlib.prototype =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.prototype 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.prototype 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,17 +0,0 @@ -d none /opt/csw/bin 0755 root bin -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/Zlib 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IO/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/man1 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/IO::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/IO 0755 root bin -f none /opt/csw/share/perl/csw/IO/Zlib.pm 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 Thu Aug 6 21:18:57 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:18:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5897] csw/mgar/pkg/cpan Message-ID: Revision: 5897 http://gar.svn.sourceforge.net/gar/?rev=5897&view=rev Author: dmichelsen Date: 2009-08-06 19:18:57 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Compress-Raw-Bzip2: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Compress-Raw-Bzip2/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/branches/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/tags/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/Makefile csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Compress-Raw-Bzip2/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/Compress-Raw-Bzip2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/Makefile 2009-08-06 19:18:57 UTC (rev 5897) @@ -0,0 +1,15 @@ +GARNAME = Compress-Raw-Bzip2 +GARVERSION = 2.020 +CATEGORIES = cpan +AUTHOR = PMQS + +DESCRIPTION = Provides the interface to the bzip2 library +define BLURB + Compress-Raw-Bzip2 provides the interface to the bzip2 library for the modules + IO::Compress::Bzip2 and IO::Compress::Bunzip2. +endef + +PACKAGES = CSWpmcompressrawbz2 +CATALOGNAME = pm_compressrawbz2 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums 2009-08-06 19:18:57 UTC (rev 5897) @@ -0,0 +1 @@ +50f85a3ecab19fa6d2ca18b8f990f219 download/Compress-Raw-Bzip2-2.020.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 Aug 6 21:25:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:25:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5898] csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk Message-ID: Revision: 5898 http://gar.svn.sourceforge.net/gar/?rev=5898&view=rev Author: dmichelsen Date: 2009-08-06 19:25:48 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Compress-Raw-Zlib: Update to 2.020 and prepare for IO-Compress unification Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,5 +1,5 @@ GARNAME = Compress-Raw-Zlib -GARVERSION = 2.019 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS @@ -9,20 +9,9 @@ compression library. endef -DISTFILES += COPYING +REQUIRED_PKGS = CSWzlib CATALOGNAME = pm_compressrawzlib PACKAGES = CSWpmcompressrawzlib -REQUIRED_PKGS = CSWzlib - -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -CONFIGURE_ARGS = - -#SKIPTEST = 1 - -# Use CSWzlib instead of the dist version -#PATCHFILES += cswzlib.diff - include gar/category.mk Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,2 +1 @@ -500d953c61746ed6c06968b31681c0db download/COPYING -cb87f8cfc7c1c032da97c8118cc073be download/Compress-Raw-Zlib-2.019.tar.gz +d0f6baff3d38b6076a14778004345db3 download/Compress-Raw-Zlib-2.020.tar.gz Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,3 +0,0 @@ -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. Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,16 +0,0 @@ -diff --speed-large-files --minimal -Nru Compress-Raw-Zlib-2.004.orig/config.in Compress-Raw-Zlib-2.004/config.in ---- Compress-Raw-Zlib-2.004.orig/config.in 2006-06-26 15:38:21.000000000 -0400 -+++ Compress-Raw-Zlib-2.004/config.in 2007-03-12 19:01:49.668718000 -0400 -@@ -16,9 +16,9 @@ - # Setting the Gzip OS Code - # - --BUILD_ZLIB = True --INCLUDE = ./zlib-src --LIB = ./zlib-src -+BUILD_ZLIB = False -+INCLUDE = /opt/csw/include -+LIB = /opt/csw/lib - - OLD_ZLIB = False - GZIP_OS_CODE = AUTO_DETECT 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 Aug 6 21:34:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:34:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5899] csw/mgar/pkg/cpan Message-ID: Revision: 5899 http://gar.svn.sourceforge.net/gar/?rev=5899&view=rev Author: dmichelsen Date: 2009-08-06 19:34:51 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IO-Compress: Initial commit, wait for release of Compress-Raw-* Added Paths: ----------- csw/mgar/pkg/cpan/IO-Compress/ csw/mgar/pkg/cpan/IO-Compress/branches/ csw/mgar/pkg/cpan/IO-Compress/tags/ csw/mgar/pkg/cpan/IO-Compress/trunk/ csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile csw/mgar/pkg/cpan/IO-Compress/trunk/checksums csw/mgar/pkg/cpan/IO-Compress/trunk/files/ Property changes on: csw/mgar/pkg/cpan/IO-Compress/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/IO-Compress/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile 2009-08-06 19:34:51 UTC (rev 5899) @@ -0,0 +1,30 @@ +GARNAME = IO-Compress +GARVERSION = 2.020 +CATEGORIES = cpan +AUTHOR = PMQS + +DESCRIPTION = A Perl interface to allow reading and writing of compressed data +define BLURB + This distribution provides a Perl interface to allow reading and writing of + compressed data created with the zlib and bzip2 libraries. + + IO-Compress supports reading and writing of bzip2, RFC 1950, RFC + 1951, RFC 1952 (i.e. gzip) and zip files/buffers. + + The following modules used to be distributed separately, but are now + included with the IO-Compress distribution. + + Compress-Zlib + IO-Compress-Zlib + IO-Compress-Bzip2 + IO-Compress-Base + +endef + +REQUIRED_PKGS = CSWpmcompressrawzlib +REQUIRED_PKGS += CSWpmcompressrawbz2 + +PACKAGES = CSWpmiocompress +CATALOGNAME = pm_iocompress + +include gar/category.mk Added: csw/mgar/pkg/cpan/IO-Compress/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Compress/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/IO-Compress/trunk/checksums 2009-08-06 19:34:51 UTC (rev 5899) @@ -0,0 +1 @@ +2cf377fb8d2ac2d28473f65768f1d179 download/IO-Compress-2.020.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 Aug 6 21:49:14 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:49:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5900] csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile Message-ID: Revision: 5900 http://gar.svn.sourceforge.net/gar/?rev=5900&view=rev Author: dmichelsen Date: 2009-08-06 19:49:14 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Algorithm-Depedency: Update requirements Modified Paths: -------------- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile Modified: csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile 2009-08-06 19:34:51 UTC (rev 5899) +++ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile 2009-08-06 19:49:14 UTC (rev 5900) @@ -13,7 +13,8 @@ PACKAGES = CSWpmalgorithmdep CATALOGNAME = pm_algorithmdep -REQUIRED_PKGS = CSWpmtestclassapi CSWpmparamsutil +PREREQUISITE_PKGS = CSWpmtestclassapi +REQUIRED_PKGS = CSWpmparamsutil ARCHALL = 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 Aug 6 21:52:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:52:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5901] csw/mgar/pkg/cpan/Digest-SHA1/trunk Message-ID: Revision: 5901 http://gar.svn.sourceforge.net/gar/?rev=5901&view=rev Author: dmichelsen Date: 2009-08-06 19:52:50 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Digest-SHA1: Update to 2.12 Modified Paths: -------------- csw/mgar/pkg/cpan/Digest-SHA1/trunk/Makefile csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.depend csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff Property Changed: ---------------- csw/mgar/pkg/cpan/Digest-SHA1/trunk/ Property changes on: csw/mgar/pkg/cpan/Digest-SHA1/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/Digest-SHA1/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/Makefile 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/Makefile 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,9 +1,9 @@ GARNAME = Digest-SHA1 -GARVERSION = 2.11 +GARVERSION = 2.12 CATEGORIES = cpan AUTHOR = GAAS -DESCRIPTION = interface to the SHA-1 Algorithm +DESCRIPTION = Interface to the SHA-1 Algorithm define BLURB The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message @@ -11,9 +11,7 @@ "message digest" of the input. endef -DISTFILES = $(call admfiles,CSWpmdigestsha1,depend prototype) +PACKAGES = CSWpmdigestsha1 +CATALOGNAME = pm_digestsha1 -# Missing alias for reset -> new -PATCHFILES = reset.diff - include gar/category.mk Modified: csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,5 +1 @@ -baa49ee03a0deeabcef18312e0f09eff download/CSWpmdigestsha1.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmdigestsha1.depend -b82b0858b497a79c25d1170ded064aae download/CSWpmdigestsha1.prototype -2449bfe21d6589c96eebf94dae24df6b download/Digest-SHA1-2.11.tar.gz -c6c6ac19fc84da3d077e891dd54a008c download/reset.diff +eeb0292868801a202bd7ead87b291374 download/Digest-SHA1-2.12.tar.gz Deleted: csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,9 +0,0 @@ -%var bitname pm_digestsha1 -%var pkgname CSWpmdigestsha1 -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1999-2003 Gisle Aas. -Copyright 1997 Uwe Hollerbach. - -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/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype 2009-08-06 19:52:50 UTC (rev 5901) @@ -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/Digest 0755 root bin -f none /opt/csw/lib/perl/csw/Digest/SHA1.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Digest 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Digest/SHA1 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Digest/SHA1/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Digest/SHA1/SHA1.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Digest/SHA1/SHA1.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/Digest::SHA1.3perl 0444 root bin Deleted: csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,12 +0,0 @@ -diff --speed-large-files --minimal -Nru Digest-SHA1-2.07.orig/SHA1.pm Digest-SHA1-2.07/SHA1.pm ---- Digest-SHA1-2.07.orig/SHA1.pm 2003-12-05 05:17:59.000000000 -0800 -+++ Digest-SHA1-2.07/SHA1.pm 2004-01-07 12:24:32.689505000 -0800 -@@ -23,6 +23,8 @@ - - Digest::SHA1->bootstrap($VERSION); - -+*reset = \&new; -+ - 1; - __END__ - 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 Aug 6 22:00:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 20:00:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5902] csw/mgar/pkg/cpan/IPC-ShareLite/trunk Message-ID: Revision: 5902 http://gar.svn.sourceforge.net/gar/?rev=5902&view=rev Author: dmichelsen Date: 2009-08-06 20:00:34 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IPC-ShareLite: Update to 0.17 Modified Paths: -------------- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/Makefile csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/ Property changes on: csw/mgar/pkg/cpan/IPC-ShareLite/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/IPC-ShareLite/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/Makefile 2009-08-06 19:52:50 UTC (rev 5901) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/Makefile 2009-08-06 20:00:34 UTC (rev 5902) @@ -1,18 +1,16 @@ GARNAME = IPC-ShareLite -GARVERSION = 0.09 +GARVERSION = 0.17 CATEGORIES = cpan -AUTHOR = MAURICE +AUTHOR = ANDYA -DESCRIPTION = light-weight interface to shared memory +DESCRIPTION = Lightweight interface to shared memory define BLURB IPC::ShareLite provides a simple interface to shared memory, allowing data to be efficiently communicated between processes. Your operating system must support SysV IPC (shared memory and semaphores) in order to use this module. endef -DISTFILES += CSWpmipcshrlite.gspec +PACKAGES = CSWpmipcshrlite +CATALOGNAME = pm_ipcshrlite -# Don't ask questions... -PATCHFILES = config.diff - include gar/category.mk Modified: csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums 2009-08-06 19:52:50 UTC (rev 5901) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums 2009-08-06 20:00:34 UTC (rev 5902) @@ -1,3 +1 @@ -21cecd39a7061bf6d68cc4a2afdd1934 download/CSWpmipcshrlite.gspec -3942a55cfc5e6d3b612a46cc1a9515b9 download/IPC-ShareLite-0.09.tar.gz -8c8e27d02dbafc977737ee59ef2b2fab download/config.diff +54c7aa08dc065b6c946c48491d33450d download/IPC-ShareLite-0.17.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 Aug 6 22:00:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 20:00:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5903] csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files Message-ID: Revision: 5903 http://gar.svn.sourceforge.net/gar/?rev=5903&view=rev Author: dmichelsen Date: 2009-08-06 20:00:55 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IPC-ShareLite: Remove unneded files Removed Paths: ------------- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff Deleted: csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec 2009-08-06 20:00:34 UTC (rev 5902) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec 2009-08-06 20:00:55 UTC (rev 5903) @@ -1,9 +0,0 @@ -%var bitname pm_ipcsharelite -%var pkgname CSWpmipcsharelite -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1998-2002, Maurice Aubrey Emaurice at hevanet.comE. -All rights reserved. - -This module is free software; you may redistribute it and/or -modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff 2009-08-06 20:00:34 UTC (rev 5902) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff 2009-08-06 20:00:55 UTC (rev 5903) @@ -1,10 +0,0 @@ ---- IPC-ShareLite-0.09.orig/Makefile.PL 2000-04-14 02:23:54.000000000 -0700 -+++ IPC-ShareLite-0.09/Makefile.PL 2004-05-10 18:33:04.086335068 -0700 -@@ -1,6 +1,6 @@ - use ExtUtils::MakeMaker; - --system('./Configure'); -+system('./Configure -des'); - - # See lib/ExtUtils/MakeMaker.pm for details of how to influence - # the contents of the Makefile that is written. 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 Aug 6 22:07:10 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 20:07:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5904] csw/mgar/pkg/cpan/Class-Container/trunk Message-ID: Revision: 5904 http://gar.svn.sourceforge.net/gar/?rev=5904&view=rev Author: dmichelsen Date: 2009-08-06 20:07:10 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Class-Container: Update to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Container/trunk/Makefile csw/mgar/pkg/cpan/Class-Container/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Class-Container/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-Container/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/Class-Container/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/Makefile 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/Makefile 2009-08-06 20:07:10 UTC (rev 5904) @@ -3,7 +3,7 @@ CATEGORIES = cpan AUTHOR = KWILLIAMS -DESCRIPTION = glues object frameworks together transparently +DESCRIPTION = Glues object frameworks together transparently define BLURB This class facilitates building frameworks of several classes that inter-operate. It was first designed and built for HTML::Mason, in which the @@ -13,8 +13,11 @@ any of these objects. endef -DISTFILES += CSWpmclscontainer.gspec CSWpmclscontainer.depend +REQUIRED_PKGS = CSWpmprmsvldt -DEPENDS += cpan/Params-Validate +PACKAGES = CSWpmclscontainer +CATALOGNAME = pm_clscontainer +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Container/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/checksums 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/checksums 2009-08-06 20:07:10 UTC (rev 5904) @@ -1,3 +1 @@ -1f416cd1e13c3f0dc8c422e0b5e514c5 download/CSWpmclscontainer.gspec -ff62c458deb89dbaec4bc61c2582bc4d download/CSWpmclscontainer.depend 6896bdb4464b96ad638e22b0400acbc9 download/Class-Container-0.12.tar.gz Deleted: csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend 2009-08-06 20:07:10 UTC (rev 5904) @@ -1 +0,0 @@ -P CSWpmprmsvldt pm_prmsvldt - validate method/function parameters Deleted: csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec 2009-08-06 20:07:10 UTC (rev 5904) @@ -1,7 +0,0 @@ -%var bitname pm_clscontainer -%var pkgname CSWpmclscontainer -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -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 Fri Aug 7 10:37:08 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 07 Aug 2009 08:37:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5905] csw/mgar/pkg/bind/trunk/Makefile Message-ID: Revision: 5905 http://gar.svn.sourceforge.net/gar/?rev=5905&view=rev Author: bonivart Date: 2009-08-07 08:37:07 +0000 (Fri, 07 Aug 2009) Log Message: ----------- bind: add deps Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-08-06 20:07:10 UTC (rev 5904) +++ csw/mgar/pkg/bind/trunk/Makefile 2009-08-07 08:37:07 UTC (rev 5905) @@ -33,10 +33,10 @@ SPKG_DESC_CSWlibbind = ISC BIND DNS library package SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package -REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils +REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils CSWiconv CSWlibxml2 CSWosslrt CSWzlib REQUIRED_PKGS_CSWbinddevel = CSWbind REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib -REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt +REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt CSWzlib # We define upstream file regex so we can be notifed of new upstream software release UPSTREAM_MASTER_SITES = http://ftp.isc.org/isc/bind9/ 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 Aug 7 11:36:01 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 09:36:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[5906] csw/mgar/pkg/sysstat/trunk Message-ID: Revision: 5906 http://gar.svn.sourceforge.net/gar/?rev=5906&view=rev Author: dmichelsen Date: 2009-08-07 09:36:01 +0000 (Fri, 07 Aug 2009) Log Message: ----------- sysstat: Update to 20090805 Modified Paths: -------------- csw/mgar/pkg/sysstat/trunk/Makefile csw/mgar/pkg/sysstat/trunk/checksums Modified: csw/mgar/pkg/sysstat/trunk/Makefile =================================================================== --- csw/mgar/pkg/sysstat/trunk/Makefile 2009-08-07 08:37:07 UTC (rev 5905) +++ csw/mgar/pkg/sysstat/trunk/Makefile 2009-08-07 09:36:01 UTC (rev 5906) @@ -1,5 +1,5 @@ GARNAME = sysstat -GARVERSION = 20090614 +GARVERSION = 20090805 CATEGORIES = utils DESCRIPTION = Key system statistics at a glance Modified: csw/mgar/pkg/sysstat/trunk/checksums =================================================================== --- csw/mgar/pkg/sysstat/trunk/checksums 2009-08-07 08:37:07 UTC (rev 5905) +++ csw/mgar/pkg/sysstat/trunk/checksums 2009-08-07 09:36:01 UTC (rev 5906) @@ -1,2 +1,2 @@ 7a7f0f67bb68484b56375d4a922fb63f download/patch-onlyisaexec-sysstatd.diff -1493623cb49e625559a6259399db77f7 download/sysstat-20090614.tgz +a188538c719f3b1ee1e994268ee779e0 download/sysstat-20090805.tgz 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 Aug 7 12:51:44 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 10:51:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5907] csw/mgar/pkg/libid3tag/trunk Message-ID: Revision: 5907 http://gar.svn.sourceforge.net/gar/?rev=5907&view=rev Author: dmichelsen Date: 2009-08-07 10:51:43 +0000 (Fri, 07 Aug 2009) Log Message: ----------- libid3tag: Add missing pkgconfig-files Modified Paths: -------------- csw/mgar/pkg/libid3tag/trunk/Makefile csw/mgar/pkg/libid3tag/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 Modified: csw/mgar/pkg/libid3tag/trunk/Makefile =================================================================== --- csw/mgar/pkg/libid3tag/trunk/Makefile 2009-08-07 09:36:01 UTC (rev 5906) +++ csw/mgar/pkg/libid3tag/trunk/Makefile 2009-08-07 10:51:43 UTC (rev 5907) @@ -10,6 +10,7 @@ SF_PROJ = mad MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION)$(REV).tar.gz +DISTFILES += id3tag.pc-32 id3tag.pc-64 # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -28,3 +29,8 @@ include gar/category.mk SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) + +post-install-modulated: + @ginstall -d $(DESTDIR)$(libdir)/pkgconfig + @ginstall $(WORKDIR)/id3tag.pc-$(MEMORYMODEL) $(DESTDIR)$(libdir)/pkgconfig/id3tag.pc + @$(MAKECOOKIE) Modified: csw/mgar/pkg/libid3tag/trunk/checksums =================================================================== --- csw/mgar/pkg/libid3tag/trunk/checksums 2009-08-07 09:36:01 UTC (rev 5906) +++ csw/mgar/pkg/libid3tag/trunk/checksums 2009-08-07 10:51:43 UTC (rev 5907) @@ -1 +1,3 @@ +148eb152412f97dd0d77ccc838d53dd7 download/id3tag.pc-32 +c5a760c189e54e0d73b39f87cee4944a download/id3tag.pc-64 e5808ad997ba32c498803822078748c3 download/libid3tag-0.15.1b.tar.gz Added: csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 =================================================================== --- csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 2009-08-07 10:51:43 UTC (rev 5907) @@ -0,0 +1,11 @@ +prefix=/opt/csw +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: id3tag +Description: ID3 tag reading library +Requires: +Version: 0.15.1b +Libs: -L${libdir} -lid3tag -lz +Cflags: -I${includedir} Added: csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 =================================================================== --- csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 2009-08-07 10:51:43 UTC (rev 5907) @@ -0,0 +1,11 @@ +prefix=/opt/csw +exec_prefix=${prefix} +libdir=${exec_prefix}/lib/64 +includedir=${prefix}/include + +Name: id3tag +Description: ID3 tag reading library +Requires: +Version: 0.15.1b +Libs: -L${libdir} -lid3tag -lz +Cflags: -I${includedir} 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 Aug 7 13:03:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:03:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5908] csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile Message-ID: Revision: 5908 http://gar.svn.sourceforge.net/gar/?rev=5908&view=rev Author: dmichelsen Date: 2009-08-07 11:03:23 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/IO-Compress: Make package ARCHALL Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile Modified: csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile 2009-08-07 10:51:43 UTC (rev 5907) +++ csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile 2009-08-07 11:03:23 UTC (rev 5908) @@ -27,4 +27,6 @@ PACKAGES = CSWpmiocompress CATALOGNAME = pm_iocompress +ARCHALL = 1 + 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 Aug 7 13:24:01 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:24:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[5909] csw/mgar/pkg/cpan/Compress-Zlib/trunk Message-ID: Revision: 5909 http://gar.svn.sourceforge.net/gar/?rev=5909&view=rev Author: dmichelsen Date: 2009-08-07 11:24:00 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Compress-Zlib: Convert to stub as functionality has been moved to CSWpmiocompress Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-08-07 11:03:23 UTC (rev 5908) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-08-07 11:24:00 UTC (rev 5909) @@ -1,31 +1,25 @@ GARNAME = Compress-Zlib -GARVERSION = 2.015 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS -DESCRIPTION = Interface to zlib compression library +DESCRIPTION = This is a stub, the contents has been integrated into CSWpmiocompress define BLURB - The Compress::Zlib module provides a Perl interface to the zlib compression - library (see /AUTHOR for details about where to get zlib). Most of the - functionality provided by zlib is available in Compress::Zlib. endef -DISTFILES += COPYING +# This is a stub, the contents has been integrated into CSWpmiocompress +MODDIST = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = +REQUIRED_PKGS = CSWpmiocompress + 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 Deleted: csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING 2009-08-07 11:03:23 UTC (rev 5908) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING 2009-08-07 11:24:00 UTC (rev 5909) @@ -1,3 +0,0 @@ - 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. 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 Aug 7 13:28:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:28:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5910] csw/mgar/pkg/cpan/IO-Compress-Base/trunk Message-ID: Revision: 5910 http://gar.svn.sourceforge.net/gar/?rev=5910&view=rev Author: dmichelsen Date: 2009-08-07 11:28:09 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/IO-Compress-Base: Convert to stub as functionality has been moved to CSWpmiocompress Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile 2009-08-07 11:24:00 UTC (rev 5909) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile 2009-08-07 11:28:09 UTC (rev 5910) @@ -1,22 +1,24 @@ GARNAME = IO-Compress-Base -GARVERSION = 2.015 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS -DESCRIPTION = Base Class for IO::Compress modules +DESCRIPTION = This is a stub, the contents has been integrated into CSWpmiocompress define BLURB - This module is not intended for direct use in application code. Its sole - purpose if to to be sub-classed by IO::Compress modules. endef -DISTFILES += COPYING +# This is a stub, the contents has been integrated into CSWpmiocompress +MODDIST = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = +REQUIRED_PKGS = CSWpmiocompress + CATALOGNAME = pm_iocompressbase PACKAGES = CSWpmiocompressbase + ARCHALL = 1 -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -CONFIGURE_ARGS = - include gar/category.mk Deleted: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-08-07 11:24:00 UTC (rev 5909) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-08-07 11:28:09 UTC (rev 5910) @@ -1,3 +0,0 @@ -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 dmichelsen at users.sourceforge.net Fri Aug 7 13:31:00 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:31:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5911] csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk Message-ID: Revision: 5911 http://gar.svn.sourceforge.net/gar/?rev=5911&view=rev Author: dmichelsen Date: 2009-08-07 11:31:00 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/IO-Compress-Zlib: Convert to stub as functionality has been moved to CSWpmiocompress Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile Removed Paths: ------------- 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-08-07 11:28:09 UTC (rev 5910) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile 2009-08-07 11:31:00 UTC (rev 5911) @@ -1,26 +1,24 @@ GARNAME = IO-Compress-Zlib -GARVERSION = 2.015 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS -DESCRIPTION = Read and write gzip and zip files/buffers. +DESCRIPTION = This is a stub, the contents has been integrated into CSWpmiocompress define BLURB - This module provides a Perl interface to allow reading and writing of RFC - 1950, 1951, 1952 (i.e. gzip) and zip files/buffers. endef -DISTFILES += COPYING +# This is a stub, the contents has been integrated into CSWpmiocompress +MODDIST = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = +REQUIRED_PKGS = CSWpmiocompress + CATALOGNAME = pm_iocompresszlib PACKAGES = CSWpmiocompresszlib + ARCHALL = 1 -REQUIRED_PKGS = CSWpmiocompressbase CSWpmcompressrawzlib - -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -CONFIGURE_ARGS = - -SKIPTEST = 1 - include gar/category.mk Deleted: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-08-07 11:28:09 UTC (rev 5910) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-08-07 11:31:00 UTC (rev 5911) @@ -1,3 +0,0 @@ -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 dmichelsen at users.sourceforge.net Fri Aug 7 14:44:30 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 12:44:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[5912] csw/mgar/pkg/curl/trunk Message-ID: Revision: 5912 http://gar.svn.sourceforge.net/gar/?rev=5912&view=rev Author: dmichelsen Date: 2009-08-07 12:44:29 +0000 (Fri, 07 Aug 2009) Log Message: ----------- curl: Update to 7.19.5 and enhance merge phase Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 11:31:00 UTC (rev 5911) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 12:44:29 UTC (rev 5912) @@ -1,5 +1,5 @@ GARNAME = curl -GARVERSION = 7.19.4 +GARVERSION = 7.19.5 CATEGORIES = net DESCRIPTION = Command line tool and library for client-side URL transfers. @@ -43,31 +43,32 @@ SKIPTEST = 1 +EXTRA_PAX_ARGS_32 = -s ",^\.$(includedir)/curl/curlbuild.h$$,.$(includedir)/curl/curlbuild-32.h,p" +EXTRA_PAX_ARGS_64 = -s ",^\.$(includedir)/curl/curlbuild.h$$,.$(includedir)/curl/curlbuild-64.h,p" +EXTRA_PAX_ARGS_isa-sparcv8 = $(EXTRA_PAX_ARGS_32) +EXTRA_PAX_ARGS_isa-sparcv9 = $(EXTRA_PAX_ARGS_64) +EXTRA_PAX_ARGS_isa-i386 = $(EXTRA_PAX_ARGS_32) +EXTRA_PAX_ARGS_isa-amd64 = $(EXTRA_PAX_ARGS_64) + PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) PKGFILES_CSWcurlrt = $(PKGFILES_RT) include gar/category.mk post-install-isa-sparcv8: - @cp $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 - @cp $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) - @mv $(INSTALLISADIR)/opt/csw/include/curl/curlbuild.h $(INSTALLISADIR)/opt/csw/include/curl/curlbuild-32.h - @cp $(FILEDIR)/curlbuild.h $(INSTALLISADIR)/opt/csw/include/curl/curlbuild.h - $(DONADA) + @ginstall $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)$(libdir)/libcurl.so.3.0.0 + @ginstall $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)$(libdir)/libcurl.so.2.0.2 + @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 + @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)/libcurl.so.2 + @$(MAKECOOKIE) -post-install-isa-sparcv9: - @mv $(INSTALLISADIR)/opt/csw/include/curl/curlbuild.h $(INSTALLISADIR)/opt/csw/include/curl/curlbuild-64.h - $(DONADA) - -post-merge-isa-sparcv9: - @cp $(INSTALLISADIR)/opt/csw/include/curl/curlbuild-64.h $(PKGROOT)/opt/csw/include/curl/curlbuild-64.h - $(DONADA) - post-install-isa-i386: @cp $(FILEDIR)/libcurl.so.3.0.0.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 @cp $(FILEDIR)/libcurl.so.2.0.2.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) - $(DONADA) + @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 + @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)libcurl.so.2 + @$(MAKECOOKIE) + +post-merge: + ginstall $(FILEDIR)/curlbuild.h $(PKGROOT)$(includedir)/curl/curlbuild.h + @$(MAKECOOKIE) Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-08-07 11:31:00 UTC (rev 5911) +++ csw/mgar/pkg/curl/trunk/checksums 2009-08-07 12:44:29 UTC (rev 5912) @@ -1,6 +1,6 @@ -2734167c1e5f7ce6be99b75d2d371d85 download/curl-7.19.4.tar.bz2 -b63de55fb90feba487b1fd21e751d248 download/libcurl.so.3.0.0.s +426d161661dce70c8ea9ad8f553363a3 download/curl-7.19.5.tar.bz2 +5aebb27149d80000d1107b58d65b551b download/curlbuild.h +a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i b46b41659b805013740eeb76e759af4b download/libcurl.so.2.0.2.s 30e826ef67b6ce799b32154250014dd9 download/libcurl.so.3.0.0.i -a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i -5aebb27149d80000d1107b58d65b551b download/curlbuild.h +b63de55fb90feba487b1fd21e751d248 download/libcurl.so.3.0.0.s 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 Aug 7 15:08:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:08:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5913] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 5913 http://gar.svn.sourceforge.net/gar/?rev=5913&view=rev Author: dmichelsen Date: 2009-08-07 13:08:59 +0000 (Fri, 07 Aug 2009) Log Message: ----------- mGAR v2: Add missing removal of cookie on reset-install- Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-07 12:44:29 UTC (rev 5912) +++ csw/mgar/gar/v2/gar.mk 2009-08-07 13:08:59 UTC (rev 5913) @@ -492,6 +492,7 @@ @rm -rf $(INSTALLISADIR) $(COOKIEDIR)/install-work @rm -f $(foreach C,pre-install-modulated install-modulated post-install-modulated,$(COOKIEDIR)/$C) @rm -f $(COOKIEDIR)/strip + @rm -f $(COOKIEROOTDIR)/global/install-$(MODULATION) # 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 dmichelsen at users.sourceforge.net Fri Aug 7 15:25:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:25:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5914] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 5914 http://gar.svn.sourceforge.net/gar/?rev=5914&view=rev Author: dmichelsen Date: 2009-08-07 13:25:41 +0000 (Fri, 07 Aug 2009) Log Message: ----------- mGAR v2: Remove more cookies from reset-install- Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-07 13:08:59 UTC (rev 5913) +++ csw/mgar/gar/v2/gar.mk 2009-08-07 13:25:41 UTC (rev 5914) @@ -491,6 +491,7 @@ @$(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)/pre-install-$(MODULATION) $(COOKIEDIR)/post-install-$(MODULATION) @rm -f $(COOKIEDIR)/strip @rm -f $(COOKIEROOTDIR)/global/install-$(MODULATION) 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 Aug 7 15:30:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:30:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5915] csw/mgar/pkg/curl/trunk/Makefile Message-ID: Revision: 5915 http://gar.svn.sourceforge.net/gar/?rev=5915&view=rev Author: dmichelsen Date: 2009-08-07 13:30:12 +0000 (Fri, 07 Aug 2009) Log Message: ----------- curl: Some cosmetics Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 13:25:41 UTC (rev 5914) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 13:30:12 UTC (rev 5915) @@ -26,17 +26,17 @@ CATALOGNAME_CSWcurlrt = curlrt CATALOGNAME_CSWcurldevel = curldevel -# Upstream check seem to interfere with build on 8s? -#UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +SPKG_SOURCEURL = http://curl.haxx.se -LIBDEPS += lib/openssl +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + CONFIGURE_ARGS = $(DIRPATHS) --with-ssl #Can't build amd64 until openldap has an amd64 build (Mantis 3028) #BUILD64 = 1 EXTRA_BUILD_ISAS_sparc = sparcv9 -REQUIRED_PKGS_CSWcurl = CSWiconv CSWlibidn CSWlibnet CSWoldaprt CSWosslrt +REQUIRED_PKGS_CSWcurl = CSWiconv CSWlibidn CSWlibnet CSWoldaprt CSWosslrt REQUIRED_PKGS_CSWcurl += CSWsasl CSWzlib CSWcurlrt REQUIRED_PKGS_CSWcurlrt = CSWlibidn CSWlibnet CSWoldaprt CSWosslrt CSWzlib CSWsasl REQUIRED_PKGS_CSWcurldevel = CSWcurlrt @@ -47,26 +47,26 @@ EXTRA_PAX_ARGS_64 = -s ",^\.$(includedir)/curl/curlbuild.h$$,.$(includedir)/curl/curlbuild-64.h,p" EXTRA_PAX_ARGS_isa-sparcv8 = $(EXTRA_PAX_ARGS_32) EXTRA_PAX_ARGS_isa-sparcv9 = $(EXTRA_PAX_ARGS_64) -EXTRA_PAX_ARGS_isa-i386 = $(EXTRA_PAX_ARGS_32) -EXTRA_PAX_ARGS_isa-amd64 = $(EXTRA_PAX_ARGS_64) +EXTRA_PAX_ARGS_isa-i386 = $(EXTRA_PAX_ARGS_32) +EXTRA_PAX_ARGS_isa-amd64 = $(EXTRA_PAX_ARGS_64) -PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) -PKGFILES_CSWcurlrt = $(PKGFILES_RT) +PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) +PKGFILES_CSWcurlrt = $(PKGFILES_RT) include gar/category.mk post-install-isa-sparcv8: - @ginstall $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)$(libdir)/libcurl.so.3.0.0 - @ginstall $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)$(libdir)/libcurl.so.2.0.2 - @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 - @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)/libcurl.so.2 + ginstall $(FILEDIR)/libcurl.so.3.0.0.s $(DESTDIR)$(libdir)/libcurl.so.3.0.0 + ginstall $(FILEDIR)/libcurl.so.2.0.2.s $(DESTDIR)$(libdir)/libcurl.so.2.0.2 + ln -s libcurl.so.3.0.0 $(DESTDIR)$(libdir)/libcurl.so.3 + ln -s libcurl.so.2.0.2 $(DESTDIR)$(libdir)/libcurl.so.2 @$(MAKECOOKIE) post-install-isa-i386: - @cp $(FILEDIR)/libcurl.so.3.0.0.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 - @cp $(FILEDIR)/libcurl.so.2.0.2.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 - @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 - @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)libcurl.so.2 + cp $(FILEDIR)/libcurl.so.3.0.0.i $(DESTDIR)$(libdir)/libcurl.so.3.0.0 + cp $(FILEDIR)/libcurl.so.2.0.2.i $(DESTDIR)$(libdir)/libcurl.so.2.0.2 + ln -s libcurl.so.3.0.0 $(DESTDIR)$(libdir)/libcurl.so.3 + ln -s libcurl.so.2.0.2 $(DESTDIR)$(libdir)/libcurl.so.2 @$(MAKECOOKIE) post-merge: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Fri Aug 7 15:46:55 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:46:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5916] csw/mgar/pkg/perl/trunk Message-ID: Revision: 5916 http://gar.svn.sourceforge.net/gar/?rev=5916&view=rev Author: bonivart Date: 2009-08-07 13:46:54 +0000 (Fri, 07 Aug 2009) Log Message: ----------- perl: some fixes Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile csw/mgar/pkg/perl/trunk/checksums Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-07 13:30:12 UTC (rev 5915) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-07 13:46:54 UTC (rev 5916) @@ -19,7 +19,6 @@ PACKAGES = CSWperl CSWperldoc ARCHALL_CSWperldoc = 1 -#REQUIRED_PKGS_CSWperl = CSWbdb44 CSWgdbm REQUIRED_PKGS_CSWperl = CSWbdb CSWgdbm REQUIRED_PKGS_CSWperldoc = CSWperl @@ -50,10 +49,13 @@ CORE_UPDATES += Storable-2.20 CORE_OBSOLETE += Storable/* Storable.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ +CORE_UPDATES += ExtUtils-MakeMaker-6.54 +CORE_OBSOLETE += ExtUtils/* + DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) # Dependencies -#LIBDEPS += lib/bdb44 LIBDEPS += lib/bdb47 LIBDEPS += lib/gdbm @@ -61,12 +63,10 @@ CONFIGURE_SCRIPTS = perl # Compatable with all prior patch revs -PL_MAJOR = 5.10 -PL_PATCH = 0 +PL_MAJOR = 5.8 +PL_PATCH = 0 2 4 6 7 INC_COMPAT = $(foreach REV,$(PL_PATCH),$(PL_MAJOR).$(REV)) -# Force use of db-4.4 -#PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.4 -ldl -lm -lpthread -lc # Force use of db-4.7 PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.7 -ldl -lm -lpthread -lc -lperl @@ -103,13 +103,15 @@ CONFIGURE_ARGS += -Dvendorlib=$(datadir)/perl/csw CONFIGURE_ARGS += -Dvendorprefix=$(prefix) CONFIGURE_ARGS += -Dlibs="$(PERL_LIBS)" -#CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/bdb44/lib /opt/csw/lib" CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/lib" CONFIGURE_ARGS += -Dsed=$(bindir)/gsed #EXTRA_LIB += $(prefix)/bdb44/lib #EXTRA_INC += $(prefix)/bdb44/include +#EXTRA_LDFLAGS = -lperl +EXTRA_LDFLAGS = -L/opt/csw/lib/libperl.so + EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* @@ -176,6 +178,5 @@ @$(MAKECOOKIE) # Invoke post-install targets -#post-install: $(POST_TARGETS) post-install-modulated: $(POST_TARGETS) @$(MAKECOOKIE) Modified: csw/mgar/pkg/perl/trunk/checksums =================================================================== --- csw/mgar/pkg/perl/trunk/checksums 2009-08-07 13:30:12 UTC (rev 5915) +++ csw/mgar/pkg/perl/trunk/checksums 2009-08-07 13:46:54 UTC (rev 5916) @@ -1,4 +1,5 @@ d1b217a7a2463d5543d25490ff1b3d14 download/CGI.pm-3.44.tar.gz +003c04b33e8c8eed693f5001fe52b647 download/ExtUtils-MakeMaker-6.54.tar.gz a7e93cf2015881ded1f22b5b2d0cb391 download/File-Temp-0.22.tar.gz b88aaf2bb7437725b11e9eb48dfb6c93 download/IO-1.25.tar.gz 18a72d6a66bb62ce9bbb422dfa41181a download/PathTools-3.30.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 Aug 7 15:52:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:52:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5917] csw/mgar/pkg/cpan/Chart/trunk Message-ID: Revision: 5917 http://gar.svn.sourceforge.net/gar/?rev=5917&view=rev Author: dmichelsen Date: 2009-08-07 13:52:17 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Chart: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Chart/trunk/Makefile csw/mgar/pkg/cpan/Chart/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Chart/trunk/ Property changes on: csw/mgar/pkg/cpan/Chart/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/Chart/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/Makefile 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/Makefile 2009-08-07 13:52:17 UTC (rev 5917) @@ -3,15 +3,18 @@ CATEGORIES = cpan AUTHOR = CHARTGRP -DESCRIPTION = Charting library based on GD. +DESCRIPTION = A series of charting modules based on GD define BLURB GD extensions for drawing various chart types, such as Composite, Error Bar and Pareto. endef -DISTFILES += $(call admfiles,CSWpmchart,depend prototype) +REQUIRED_PKGS = CSWpmgd -DEPENDS += cpan/GD +PACKAGES = CSWpmchart +CATALOGNAME = pm_chart +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Chart/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/checksums 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/checksums 2009-08-07 13:52:17 UTC (rev 5917) @@ -1,4 +1 @@ -48cd5ceae716bf90eab2d3100b606ef4 download/CSWpmchart.gspec -f76e63f2366b8648783c87e98dda7e19 download/CSWpmchart.depend -e967db2277b546a936d48b3b8fe441ba download/CSWpmchart.prototype 5e7a80badfb8bf6e29b21879689bcc2f download/Chart-2.4.1.tar.gz Deleted: csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend 2009-08-07 13:52:17 UTC (rev 5917) @@ -1 +0,0 @@ -P CSWpmgd pm_gd - interface to Gd Graphics Library Deleted: csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec 2009-08-07 13:52:17 UTC (rev 5917) @@ -1,9 +0,0 @@ -%var bitname pm_chart -%var pkgname CSWpmchart -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright(c) 1997-1998 David Bonner, 1999 Peter Clark, 2001 Chart-Group at BKG. -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/Chart/trunk/files/CSWpmchart.prototype =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.prototype 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.prototype 2009-08-07 13:52:17 UTC (rev 5917) @@ -1,28 +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/Chart 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Chart/.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/Chart.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/Chart 0755 root bin -f none /opt/csw/share/perl/csw/Chart.pod 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Bars.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Composite.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Direction.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/ErrorBars.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/HorizontalBars.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/Lines.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/LinesPoints.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Mountain.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Pareto.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/Pie.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/Points.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Split.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/StackedBars.pm 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 Aug 7 15:56:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:56:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5918] csw/mgar/pkg/cpan/Devel-StackTrace/trunk Message-ID: Revision: 5918 http://gar.svn.sourceforge.net/gar/?rev=5918&view=rev Author: dmichelsen Date: 2009-08-07 13:56:20 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Devel-StackTrace: Update to 1.22 Modified Paths: -------------- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/Makefile csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/ Property changes on: csw/mgar/pkg/cpan/Devel-StackTrace/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/Devel-StackTrace/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/Makefile 2009-08-07 13:52:17 UTC (rev 5917) +++ csw/mgar/pkg/cpan/Devel-StackTrace/trunk/Makefile 2009-08-07 13:56:20 UTC (rev 5918) @@ -1,9 +1,9 @@ GARNAME = Devel-StackTrace -GARVERSION = 1.13 +GARVERSION = 1.22 CATEGORIES = cpan AUTHOR = DROLSKY -DESCRIPTION = stack trace and stack trace frame objects +DESCRIPTION = Stack trace and stack trace frame objects define BLURB The Devel::StackTrace module contains two classes, Devel::StackTrace and Devel::StackTraceFrame. The goal of this object is to encapsulate the @@ -11,6 +11,9 @@ providing a simple interface to this data. endef -DISTFILES += CSWpmdevstacktrace.gspec +PACKAGES = CSWpmdevstacktrace +CATALOGNAME = pm_devstacktrace +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums 2009-08-07 13:52:17 UTC (rev 5917) +++ csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums 2009-08-07 13:56:20 UTC (rev 5918) @@ -1,2 +1 @@ -07063a84d09efc2e351d4fdb95f13e7d download/CSWpmdevstacktrace.gspec -35d85c3f2c91c1de389b13436659551a download/Devel-StackTrace-1.13.tar.gz +e114310258a893ac3454fb0b36a57166 download/Devel-StackTrace-1.22.tar.gz Deleted: csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec =================================================================== --- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec 2009-08-07 13:52:17 UTC (rev 5917) +++ csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec 2009-08-07 13:56:20 UTC (rev 5918) @@ -1,5 +0,0 @@ -%var bitname pm_template -%var pkgname CSWpmtempl -%var arch all -%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 dmichelsen at users.sourceforge.net Fri Aug 7 16:04:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 14:04:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5919] csw/mgar/pkg/cpan/Class-ReturnValue/trunk Message-ID: Revision: 5919 http://gar.svn.sourceforge.net/gar/?rev=5919&view=rev Author: dmichelsen Date: 2009-08-07 14:04:52 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Class-ReturnValue: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/Makefile csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-ReturnValue/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/Class-ReturnValue/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/Makefile 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/Makefile 2009-08-07 14:04:52 UTC (rev 5919) @@ -1,18 +1,21 @@ GARNAME = Class-ReturnValue -GARVERSION = 0.53 +GARVERSION = 0.55 CATEGORIES = cpan AUTHOR = JESSE -DESCRIPTION = a return-value object. +DESCRIPTION = Treat a return value as boolean, array or object define BLURB Class::ReturnValue is a return value object that can allow code calling your routine to expect: a boolean value (did it fail) or a list (what are the return values) endef -DISTFILES += CSWpmclassretval.gspec CSWpmclassretval.depend +PREREQUISITE_PKGS = CSWpmtestinline +REQUIRED_PKGS = CSWpmdevstacktrace -DEPENDS += cpan/Devel-StackTrace -BUILDDEPS += cpan/Test-Inline +PACKAGES = CSWpmclassretval +CATALOGNAME = pm_classretval +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums 2009-08-07 14:04:52 UTC (rev 5919) @@ -1,3 +1 @@ -fa0c8d92b0fc74271004e253db591459 download/CSWpmclassretval.gspec -5fc76583a190c7b769aad7dce84b2048 download/CSWpmclassretval.depend -6db549139d16eb042f0128ff5aefe2f0 download/Class-ReturnValue-0.53.tar.gz +047fbbcfd90d5c399a1feba55781329e download/Class-ReturnValue-0.55.tar.gz Deleted: csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend 2009-08-07 14:04:52 UTC (rev 5919) @@ -1 +0,0 @@ -P CSWpmtempl pm_template - stack trace and stack trace frame objects Deleted: csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec 2009-08-07 14:04:52 UTC (rev 5919) @@ -1,8 +0,0 @@ -%var bitname pm_classretval -%var pkgname CSWpmclassretval -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2002, Jesse Vincent -You may use, modify, fold, spindle or mutilate this module under -the same terms as perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Aug 7 16:12:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 14:12:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[5920] csw/mgar/pkg/cpan/Convert-BinHex/trunk Message-ID: Revision: 5920 http://gar.svn.sourceforge.net/gar/?rev=5920&view=rev Author: dmichelsen Date: 2009-08-07 14:12:04 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Convert-BinHex: Move to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Convert-BinHex/trunk/Makefile csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Convert-BinHex/trunk/ Property changes on: csw/mgar/pkg/cpan/Convert-BinHex/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/Convert-BinHex/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/Makefile 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/Makefile 2009-08-07 14:12:04 UTC (rev 5920) @@ -3,7 +3,7 @@ CATEGORIES = cpan AUTHOR = ERYQ -DESCRIPTION = extract data from Macintosh BinHex files +DESCRIPTION = Perl module to extract data from Macintosh BinHex files define BLURB BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data @@ -11,6 +11,9 @@ into into binary data. endef -DISTFILES += $(call admfiles,CSWpmconvertbinhex,prototype) +PACKAGES = CSWpmconvertbinhex +CATALOGNAME = pm_convertbinhex +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums 2009-08-07 14:12:04 UTC (rev 5920) @@ -1,3 +1 @@ -9979e45b26ac9d0a14dc25c3197f1695 download/CSWpmconvertbinhex.gspec -5f589e015b25f16864c2973dc8465c6f download/CSWpmconvertbinhex.prototype ba70ad1772abac6270078f28197a7961 download/Convert-BinHex-1.119.tar.gz Deleted: csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec 2009-08-07 14:12:04 UTC (rev 5920) @@ -1,5 +0,0 @@ -%var bitname pm_convertbinhex -%var pkgname CSWpmconvertbinhex -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype 2009-08-07 14:12:04 UTC (rev 5920) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Convert 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Convert/BinHex 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Convert/BinHex/.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/Convert::BinHex.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/Convert 0755 root bin -f none /opt/csw/share/perl/csw/Convert/BinHex.pm 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 Aug 7 22:11:58 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 20:11:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5921] csw/mgar/pkg/cpan/Devel-Symdump/trunk Message-ID: Revision: 5921 http://gar.svn.sourceforge.net/gar/?rev=5921&view=rev Author: dmichelsen Date: 2009-08-07 20:11:57 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Devel-Symdump: Update to 2.08 Modified Paths: -------------- csw/mgar/pkg/cpan/Devel-Symdump/trunk/Makefile csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.depend csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Devel-Symdump/trunk/ Property changes on: csw/mgar/pkg/cpan/Devel-Symdump/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/Devel-Symdump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/Makefile 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/Makefile 2009-08-07 20:11:57 UTC (rev 5921) @@ -1,13 +1,16 @@ GARNAME = Devel-Symdump -GARVERSION = 2.07 +GARVERSION = 2.08 CATEGORIES = cpan AUTHOR = ANDK -DESCRIPTION = dump symbol names or the symbol table +DESCRIPTION = Dump symbol names or the symbol table define BLURB This little package serves to access the symbol table of perl. endef -DISTFILES += $(call admfiles,CSWpmdevelsymdump,depend prototype) +PACKAGES = CSWpmdevelsymdump +CATALOGNAME = pm_develsymdump +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums 2009-08-07 20:11:57 UTC (rev 5921) @@ -1,4 +1 @@ -5cce3d2bd4b7f841eb4052e5a8418706 download/CSWpmdevelsymdump.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmdevelsymdump.depend -518d3521e26e137d86972ba45e4ed0cd download/CSWpmdevelsymdump.prototype -4c7dfb240687cf0105ca7e81d07781bf download/Devel-Symdump-2.07.tar.gz +68e3a2f2f989bff295ee63aed5a2a1e5 download/Devel-Symdump-2.08.tar.gz Deleted: csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec 2009-08-07 20:11:57 UTC (rev 5921) @@ -1,7 +0,0 @@ -%var bitname pm_develsymdump -%var pkgname CSWpmdevelsymdump -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This package is Copyright (C) 1994-2000 by Andreas K\xF6nig. It may be -copied, used and redistributed under the same terms as perl itself. Deleted: csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype 2009-08-07 20:11:57 UTC (rev 5921) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Devel 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Devel/Symdump 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Devel/Symdump/.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/Devel::Symdump.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/Devel 0755 root bin -d none /opt/csw/share/perl/csw/Devel/Symdump 0755 root bin -f none /opt/csw/share/perl/csw/Devel/Symdump.pm 0444 root bin -f none /opt/csw/share/perl/csw/Devel/Symdump/Export.pm 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 Aug 7 22:13:19 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 20:13:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5922] csw/mgar/pkg/cpan Message-ID: Revision: 5922 http://gar.svn.sourceforge.net/gar/?rev=5922&view=rev Author: dmichelsen Date: 2009-08-07 20:13:19 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Capitalization: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Capitalization/ csw/mgar/pkg/cpan/Capitalization/branches/ csw/mgar/pkg/cpan/Capitalization/tags/ csw/mgar/pkg/cpan/Capitalization/trunk/ csw/mgar/pkg/cpan/Capitalization/trunk/Makefile csw/mgar/pkg/cpan/Capitalization/trunk/checksums csw/mgar/pkg/cpan/Capitalization/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Capitalization/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/Capitalization/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Capitalization/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Capitalization/trunk/Makefile 2009-08-07 20:13:19 UTC (rev 5922) @@ -0,0 +1,17 @@ +GARNAME = capitalization +GARVERSION = 0.03 +CATEGORIES = cpan +AUTHOR = MIYAGAWA + +DESCRIPTION = No capitalization on method names +define BLURB +endef + +REQUIRED_PKGS = CSWpmdevelsymdump + +PACKAGES = CSWpmcapitalization +CATALOGNAME = pm_capitalization + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Capitalization/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Capitalization/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Capitalization/trunk/checksums 2009-08-07 20:13:19 UTC (rev 5922) @@ -0,0 +1 @@ +94998b37b4f86bd2e5738ab3a8fb4e7c download/capitalization-0.03.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 Aug 7 23:23:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 21:23:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5923] csw/mgar/pkg/cswutils/trunk Message-ID: Revision: 5923 http://gar.svn.sourceforge.net/gar/?rev=5923&view=rev Author: dmichelsen Date: 2009-08-07 21:23:03 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cswutils: Fix issue #2869 according to James patch Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/checksums csw/mgar/pkg/cswutils/trunk/files/checkpkg csw/mgar/pkg/cswutils/trunk/files/createpkg Modified: csw/mgar/pkg/cswutils/trunk/checksums =================================================================== --- csw/mgar/pkg/cswutils/trunk/checksums 2009-08-07 20:13:19 UTC (rev 5922) +++ csw/mgar/pkg/cswutils/trunk/checksums 2009-08-07 21:23:03 UTC (rev 5923) @@ -1,8 +1,8 @@ 091b12575ebc0e45cf8c3d8b43d8b638 download/COPYING -94fc299b1be5cc4c20f92721ef43573b download/checkpkg +30b6598a4453e3ce0c1fabeede5eb5f8 download/checkpkg 6ec3b6597e04714430987ccc199db3c4 download/checkpkg.8 9a637f6546cc50974159a987302d91c0 download/cpan2pkg -44e944a12a8691068de0c95e1052a922 download/createpkg +93b6a811d303ce3be0050c5a7b3c8e69 download/createpkg a605598f30195f9ab1b29fc3944d3b31 download/createpkg.8 cd4496ee27bf86d5c8bc656c9c5974be download/stagepkg 8908a0a898aa07a7a928b2b8bd8384f0 download/stagepkg.8 Modified: csw/mgar/pkg/cswutils/trunk/files/checkpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-08-07 20:13:19 UTC (rev 5922) +++ csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-08-07 21:23:03 UTC (rev 5923) @@ -145,12 +145,15 @@ basedir=`sed -n 's/^BASEDIR=//p' $TMPFILE` pkgarch=`sed -n 's/^ARCH=//p' $TMPFILE|head -1` -case $software in - *[A-Z]*) +isLower(){ + typeset -l LOWER=$1 + [ "$LOWER" = "$1" ] +} + +if ! isLower $software ; then echo ERROR: $software must be all lowercase exit 1 - ;; -esac +fi case `basename $f` in ${software}-${version}-*) Modified: csw/mgar/pkg/cswutils/trunk/files/createpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-08-07 20:13:19 UTC (rev 5922) +++ csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-08-07 21:23:03 UTC (rev 5923) @@ -87,12 +87,15 @@ PKGREV=`sed -n 's/^VERSION=//p' pkginfo` SOFTNAME=`sed -n 's/^NAME=//p' pkginfo|awk '{print $1}'` -case $SOFTNAME in - *[A-Z]*) +isLower(){ + typeset -l LOWER=$1 + [ "$LOWER" = "$1" ] +} + +if ! isLower $SOFTWARE ; then echo ERROR: $SOFTNAME must be all lowercase exit 1 - ;; -esac +fi PKGFILE=$SOFTNAME-$PKGREV-SunOS`uname -r`-$ARCH-CSW.pkg This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Fri Aug 7 23:35:23 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Fri, 07 Aug 2009 21:35:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5924] csw/mgar/pkg/amavisd-new/trunk/Makefile Message-ID: Revision: 5924 http://gar.svn.sourceforge.net/gar/?rev=5924&view=rev Author: idogan23 Date: 2009-08-07 21:35:23 +0000 (Fri, 07 Aug 2009) Log Message: ----------- amavisd_new: changed dependency to CSWiocompress Modified Paths: -------------- csw/mgar/pkg/amavisd-new/trunk/Makefile Modified: csw/mgar/pkg/amavisd-new/trunk/Makefile =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-07 21:23:03 UTC (rev 5923) +++ csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-07 21:35:23 UTC (rev 5924) @@ -28,7 +28,7 @@ REQUIRED_PKGS += CSWpmnetserver REQUIRED_PKGS += CSWpmmailtools REQUIRED_PKGS += CSWpmmimetools -REQUIRED_PKGS += CSWpmcompresszlib +REQUIRED_PKGS += CSWiocompress REQUIRED_PKGS += CSWpmarchivetar REQUIRED_PKGS += CSWpmarchivezip REQUIRED_PKGS += CSWspamassassin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 8 00:05:26 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 07 Aug 2009 22:05:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5925] csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW Message-ID: Revision: 5925 http://gar.svn.sourceforge.net/gar/?rev=5925&view=rev Author: skayser Date: 2009-08-07 22:05:22 +0000 (Fri, 07 Aug 2009) Log Message: ----------- tcpdrop: updated changelog Modified Paths: -------------- csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW Modified: csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW 2009-08-07 21:35:23 UTC (rev 5924) +++ csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW 2009-08-07 22:05:22 UTC (rev 5925) @@ -1,5 +1,5 @@ -tcpdrop (1.4,REV=2009.07.16) +tcpdrop (1.4,REV=2009.08.08) * Initial release. - -- Sebastian Kayser Thu, 16 Jul 2009 16:26:31 +0200 + -- Sebastian Kayser Sat, 8 Aug 2009 00:04:40 +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 Sat Aug 8 00:11:18 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 07 Aug 2009 22:11:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5926] csw/mgar/pkg/tcpdrop/trunk/Makefile Message-ID: Revision: 5926 http://gar.svn.sourceforge.net/gar/?rev=5926&view=rev Author: skayser Date: 2009-08-07 22:11:18 +0000 (Fri, 07 Aug 2009) Log Message: ----------- tcpdrop: tcpdrop rather belongs to sbin Modified Paths: -------------- csw/mgar/pkg/tcpdrop/trunk/Makefile Modified: csw/mgar/pkg/tcpdrop/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcpdrop/trunk/Makefile 2009-08-07 22:05:22 UTC (rev 5925) +++ csw/mgar/pkg/tcpdrop/trunk/Makefile 2009-08-07 22:11:18 UTC (rev 5926) @@ -27,5 +27,5 @@ mkdir -p $(DOCDEST) cp $(FILEDIR)/changelog.CSW $(WORKSRC)/README $(DOCDEST) cp $(WORKSRC)/OPENSOLARIS.LICENSE $(DOCDEST)/CDDL - ginstall -Dm 755 $(WORKSRC)/tcpdrop $(DESTDIR)$(bindir)/tcpdrop + ginstall -Dm 755 $(WORKSRC)/tcpdrop $(DESTDIR)$(sbindir)/tcpdrop @$(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 Sat Aug 8 01:38:51 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 07 Aug 2009 23:38:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5927] csw/mgar/pkg/cpan/Module-CoreList/trunk Message-ID: Revision: 5927 http://gar.svn.sourceforge.net/gar/?rev=5927&view=rev Author: skayser Date: 2009-08-07 23:38:50 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Module-CoreList: switch to mGAR v2, version bump to 2.17 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-CoreList/trunk/Makefile csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.depend csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Module-CoreList/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-CoreList/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/Module-CoreList/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/Makefile 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/Makefile 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,5 +1,5 @@ GARNAME = Module-CoreList -GARVERSION = 2.09 +GARVERSION = 2.17 CATEGORIES = cpan AUTHOR = RGARCIA @@ -8,6 +8,14 @@ What modules shipped with versions of Perl endef -DISTFILES += $(call admfiles,CSWpmmodcorelist,depend prototype) +PACKAGES = CSWpmmodcorelist +CATALOGNAME = pm_modcorelist +ARCHALL = 1 include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,4 +1 @@ -e790ec92da6c2ea54d3d12fc69c9b0f4 download/CSWpmmodcorelist.gspec -882cfc02f0fd6a7892b45bc34a8a9755 download/CSWpmmodcorelist.depend -dac92f5bc4dcc8df7289ac0cf98adfb4 download/CSWpmmodcorelist.prototype -3a295781238521a100587748945506a5 download/Module-CoreList-2.09.tar.gz +a006aa836dcc584acfbf3422df62f739 download/Module-CoreList-2.17.tar.gz Deleted: csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,9 +0,0 @@ -%var bitname pm_modcorelist -%var pkgname CSWpmmodcorelist -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 2002-2006 Richard Clamp. All Rights Reserved. - -This module is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,19 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/corelist 0555 root bin -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/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/CoreList 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/CoreList/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/corelist.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Module::CoreList.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/Module 0755 root bin -f none /opt/csw/share/perl/csw/Module/CoreList.pm 0444 root bin Added: csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW 2009-08-07 23:38:50 UTC (rev 5927) @@ -0,0 +1,5 @@ +pm_modcorelist (2.17,REV=2009.08.08) + + * Adopted and updated to 2.17 + + -- Sebastian Kayser Sat, 8 Aug 2009 01:35:45 +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 Sat Aug 8 02:04:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:04:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5928] csw/mgar/pkg/cpan/Module-Loaded/trunk Message-ID: Revision: 5928 http://gar.svn.sourceforge.net/gar/?rev=5928&view=rev Author: skayser Date: 2009-08-08 00:04:06 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Module-Loaded: switched to mGAR v2, version bump to 0.02 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Loaded/trunk/Makefile csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW Property Changed: ---------------- csw/mgar/pkg/cpan/Module-Loaded/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-Loaded/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/Module-Loaded/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/Makefile 2009-08-07 23:38:50 UTC (rev 5927) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/Makefile 2009-08-08 00:04:06 UTC (rev 5928) @@ -1,5 +1,5 @@ GARNAME = Module-Loaded -GARVERSION = 0.01 +GARVERSION = 0.02 CATEGORIES = cpan AUTHOR = KANE @@ -13,6 +13,14 @@ unloaded. endef -DISTFILES += $(call admfiles,CSWpmmodloaded,prototype) +PACKAGES = CSWpmmodloaded +CATALOGNAME = pm_modloaded +ARCHALL = 1 include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums 2009-08-07 23:38:50 UTC (rev 5927) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums 2009-08-08 00:04:06 UTC (rev 5928) @@ -1,3 +1 @@ -4c210ff5701cf2960f169f928e715f70 download/CSWpmmodloaded.gspec -7f8a1917ae4e9e78a025fd5f0764c656 download/CSWpmmodloaded.prototype -bf2830c75b4ce78ebeee7f5ed074ea2a download/Module-Loaded-0.01.tar.gz +cbd3a9721287cdfc630f6db650a74469 download/Module-Loaded-0.02.tar.gz Added: csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW 2009-08-08 00:04:06 UTC (rev 5928) @@ -0,0 +1,5 @@ +pm_modloaded (0.02,REV=2009.08.08) + + * Adopted and updated to 0.02. + + -- Sebastian Kayser Sat, 8 Aug 2009 02:00:38 +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 Sat Aug 8 02:09:55 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:09:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5929] csw/mgar/pkg/cpan/Module-Loaded/trunk/files Message-ID: Revision: 5929 http://gar.svn.sourceforge.net/gar/?rev=5929&view=rev Author: skayser Date: 2009-08-08 00:09:55 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Module-Loaded: deleted gspec/prototype Removed Paths: ------------- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype Deleted: csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec 2009-08-08 00:04:06 UTC (rev 5928) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec 2009-08-08 00:09:55 UTC (rev 5929) @@ -1,10 +0,0 @@ -%var bitname pm_modloaded -%var pkgname CSWpmmodloaded -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2005 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype 2009-08-08 00:04:06 UTC (rev 5928) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype 2009-08-08 00:09:55 UTC (rev 5929) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/Loaded 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/Loaded/.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/Module::Loaded.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/Module 0755 root bin -f none /opt/csw/share/perl/csw/Module/Loaded.pm 0444 root 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 Sat Aug 8 02:41:44 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:41:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5930] csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk Message-ID: Revision: 5930 http://gar.svn.sourceforge.net/gar/?rev=5930&view=rev Author: skayser Date: 2009-08-08 00:41:44 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Locale-Maketext-Simple: switched to mGAR v2, version bump to 0.18 Modified Paths: -------------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/Makefile csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/ Property changes on: csw/mgar/pkg/cpan/Locale-Maketext-Simple/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/Locale-Maketext-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/Makefile 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/Makefile 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,16 +1,31 @@ +# Locale-Maketext-Simple 0.19 lacks Makefile.PL +# Locale-Maketext-Simple 0.20 requires higher MakeMaker rev than we have +# Warning: prerequisite ExtUtils::MakeMaker 6.42 not found. We have 6.30. +# GARNAME = Locale-Maketext-Simple -GARVERSION = 0.16 +GARVERSION = 0.18 CATEGORIES = cpan -AUTHOR = AUTRIJUS +AUTHOR = $(AUTHOR_$(GARVERSION)) +AUTHOR_0.18 = AUDREYT +AUTHOR_0.19 = JESSE +AUTHOR_0.20 = JESSE -DESCRIPTION = simple interface to Locale::Maketext::Lexicon +DESCRIPTION = Simple interface to Locale::Maketext::Lexicon define BLURB This module is a simple wrapper around Locale::Maketext::Lexicon, designed to alleviate the need of creating Language Classes for module authors. endef -DISTFILES = $(call admfiles,CSWpmlclemktxtsimple,depend prototype) +PACKAGES = CSWpmlclemktxtsimple +CATALOGNAME = pm_lclemktxtsimple +ARCHALL = 1 -DEPENDS += cpan/Locale-Maketext-Lexicon +REQUIRED_PKGS = CSWpmlclemktxtlex include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,4 +1 @@ -dca64bd31396619cc431382b83be5c34 download/CSWpmlclemktxtsimple.gspec -7f7bbb166fc021406c83272eea46cbd2 download/CSWpmlclemktxtsimple.depend -f1cc83e95fa3ef7a9f50e6cb4659bd3e download/CSWpmlclemktxtsimple.prototype -d6dd0e79802f30d0eef723ec23021f60 download/Locale-Maketext-Simple-0.16.tar.gz +51cc6dc109bf49cca063f3baa2cfd9e6 download/Locale-Maketext-Simple-0.18.tar.gz Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend 2009-08-08 00:41:44 UTC (rev 5930) @@ -1 +0,0 @@ -P CSWpmlclemktxtlex pm_lclemktxtlex - use other catalog formats in Maketext Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,11 +0,0 @@ -%var bitname pm_lclemktxtsimple -%var pkgname CSWpmlclemktxtsimple -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003, 2004 by Autrijus Tang . - -All rights reserved. You can redistribute and/or modify -this bundle under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,19 +0,0 @@ -d none /opt/csw/bin 0755 root bin -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/Locale 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Simple 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Simple/.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/man1 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Simple.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/Locale 0755 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext 0755 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Simple.pm 0444 root bin Added: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW 2009-08-08 00:41:44 UTC (rev 5930) @@ -0,0 +1,5 @@ +pm_lclemktxtsimple (0.20,REV=2009.08.08) + + * Adopted and updated to 0.18 + + -- Sebastian Kayser Sat, 8 Aug 2009 02:17:02 +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 Sat Aug 8 02:51:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:51:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5931] csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk Message-ID: Revision: 5931 http://gar.svn.sourceforge.net/gar/?rev=5931&view=rev Author: skayser Date: 2009-08-08 00:51:16 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Locale-Maketext-Lexicon: switched to mGAR v2, version bump to 0.77 Modified Paths: -------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.depend csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/ Property changes on: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/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/Locale-Maketext-Lexicon/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,14 +1,22 @@ GARNAME = Locale-Maketext-Lexicon -GARVERSION = 0.62 +GARVERSION = 0.77 CATEGORIES = cpan -AUTHOR = AUTRIJUS +AUTHOR = DRTECH -DESCRIPTION = use other catalog formats in Maketext +DESCRIPTION = Use other catalog formats in Maketext define BLURB This module provides lexicon-handling modules to read from other localization formats, such as Gettext, Msgcat, and so on. endef -DISTFILES = $(call admfiles,CSWpmlclemktxtlex,depend prototype) +PACKAGES = CSWpmlclemktxtlex +CATALOGNAME = pm_lclemktxtlex +ARCHALL = 1 include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,4 +1 @@ -9e5184d97ddaed8a8970b5b0c218301f download/CSWpmlclemktxtlex.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmlclemktxtlex.depend -5af9ea517938a51ec08fc3ba629d233b download/CSWpmlclemktxtlex.prototype -989642c1a83ddc7f1337d77422ee40cf download/Locale-Maketext-Lexicon-0.62.tar.gz +622dada722fb6db0e49e453c843af83c download/Locale-Maketext-Lexicon-0.77.tar.gz Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,11 +0,0 @@ -%var bitname pm_lclemktxtlex -%var pkgname CSWpmlclemktxtlex -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2002, 2003, 2004 by Autrijus Tang . - -All rights reserved. You can redistribute and/or modify -this bundle under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,34 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/xgettext.pl 0555 root bin -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/Locale 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Lexicon 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Lexicon/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/xgettext.pl.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Extract.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Auto.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Gettext.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Msgcat.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Tie.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/Locale 0755 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext 0755 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext/Extract 0755 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Extract.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Extract/Run.pm 0444 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon 0755 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Auto.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Gettext.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Msgcat.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Tie.pm 0444 root 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 Sat Aug 8 02:52:50 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:52:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5932] csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/ files/changelog.CSW Message-ID: Revision: 5932 http://gar.svn.sourceforge.net/gar/?rev=5932&view=rev Author: skayser Date: 2009-08-08 00:52:50 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Locale-Maketext-Lexicon: switched to mGAR v2, version bump to 0.77 Added Paths: ----------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW Added: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW 2009-08-08 00:52:50 UTC (rev 5932) @@ -0,0 +1,5 @@ +pm_lclemktxtlex (0.77,REV=2009.08.08) + + * Adopted and updated to 0.77 + + -- Sebastian Kayser Sat, 8 Aug 2009 02:47:16 +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 Sat Aug 8 03:09:36 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 01:09:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5933] csw/mgar/pkg/cpan/Params-Check/trunk Message-ID: Revision: 5933 http://gar.svn.sourceforge.net/gar/?rev=5933&view=rev Author: skayser Date: 2009-08-08 01:09:36 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Params-Check: switched to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Params-Check/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Params-Check/trunk/ Property changes on: csw/mgar/pkg/cpan/Params-Check/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-Check/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/Makefile 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/Makefile 2009-08-08 01:09:36 UTC (rev 5933) @@ -10,8 +10,16 @@ must be named. endef -DISTFILES += $(call admfiles,CSWpmprmscheck,depend prototype) +PACKAGES = CSWpmprmscheck +CATALOGNAME = pm_prmscheck +ARCHALL = 1 -DEPENDS += cpan/Locale-Maketext-Simple +REQUIRED_PKGS = CSWpmlclemktxtsimple include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Deleted: csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend 2009-08-08 01:09:36 UTC (rev 5933) @@ -1 +0,0 @@ -P CSWpmlclemktxtsimple pm_lclemktxtsimple - simple interface to Locale::Maketext::Lexicon Deleted: csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec 2009-08-08 01:09:36 UTC (rev 5933) @@ -1,10 +0,0 @@ -%var bitname pm_prmscheck -%var pkgname CSWpmprmscheck -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype 2009-08-08 01:09:36 UTC (rev 5933) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Params 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Params/Check 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Params/Check/.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/Params::Check.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/Params 0755 root bin -f none /opt/csw/share/perl/csw/Params/Check.pm 0444 root bin Added: csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW 2009-08-08 01:09:36 UTC (rev 5933) @@ -0,0 +1,5 @@ +pm_prmscheck (0.26,REV=2009.08.08) + + * Adopted and rebuilt using mGAR v2. + + -- Sebastian Kayser Sat, 8 Aug 2009 03:05:22 +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 Sat Aug 8 03:30:52 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 01:30:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5934] csw/mgar/pkg/cpan Message-ID: Revision: 5934 http://gar.svn.sourceforge.net/gar/?rev=5934&view=rev Author: skayser Date: 2009-08-08 01:30:50 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Parse-CPAN-Meta: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Parse-CPAN-Meta/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/branches/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/tags/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/Makefile csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/cpan/Parse-CPAN-Meta/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/Parse-CPAN-Meta/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/Makefile 2009-08-08 01:30:50 UTC (rev 5934) @@ -0,0 +1,21 @@ +GARNAME = Parse-CPAN-Meta +GARVERSION = 1.40 +CATEGORIES = cpan +AUTHOR = SMUELLER + +DESCRIPTION = Parse META.yml and other similar CPAN metadata files +define BLURB + Long description +endef + +PACKAGES = CSWpmparsecpanmeta +CATALOGNAME = pm_parsecpanmeta +ARCHALL = 1 + +include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums 2009-08-08 01:30:50 UTC (rev 5934) @@ -0,0 +1 @@ +13038b57d3f253f8851323ba9db0b1a1 download/Parse-CPAN-Meta-1.40.tar.gz Added: csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW 2009-08-08 01:30:50 UTC (rev 5934) @@ -0,0 +1,5 @@ +pm_parsecpanmeta (1.40,REV=2009.08.08) + + * Initial release. + + -- Sebastian Kayser Sat, 8 Aug 2009 03:27:15 +0200 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 Aug 8 03:47:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 01:47:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5935] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5935 http://gar.svn.sourceforge.net/gar/?rev=5935&view=rev Author: valholla Date: 2009-08-08 01:47:50 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fixes for class files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums Added Paths: ----------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Removed Paths: ------------- csw/mgar/pkg/sendmail/trunk/files/i.sol10 csw/mgar/pkg/sendmail/trunk/files/i.sol8 csw/mgar/pkg/sendmail/trunk/files/i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-08 01:47:50 UTC (rev 5935) @@ -9,14 +9,17 @@ INSTALLISADIR = $(WORKROOTDIR)/install-$(GAROSREL)-$(MODULATION) WORKDIR = $(WORKROOTDIR)/build-$(GAROSREL)-$(MODULATION) +WORKDIR_FIRSTMOD = $(WORKROOTDIR)/build-$(GAROSREL)-$(firstword $(MODULATIONS)) COOKIEDIR = $(COOKIEROOTDIR)/$(GAROSREL)-$(MODULATION) MASTER_SITES = ftp://ftp.sendmail.org/pub/sendmail/ +MY_CLASSES = CSWsendmail.i.sol8 CSWsendmail.i.sol9 CSWsendmail.i.sol10 + DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 i.sol8 i.sol9 i.sol10 +DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) @@ -35,16 +38,20 @@ REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils ARCHALL_CSWsendmailcommon = 1 SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel -PROTOTYPE_FILTER = (awk \ - '$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ + +PROTOTYPE_FILTER = awk \ + '$$$$2 ~/i.sol8/ { next } \ + $$$$2 ~/i.sol9/ { next } \ + $$$$2 ~/i.sol10/ { next } \ + $$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ - { print }') -PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") -PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") -PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") + { print } \ + END { { print "i i.sol8=CSWsendmail.i.sol8" } \ + { print "i i.sol9=CSWsendmail.i.sol9" } \ + { print "i i.sol10=CSWsendmail.i.sol10" } } ' PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* @@ -56,16 +63,16 @@ # patch away GNUism PATCHFILES = patch-CC-M.m4 -CONFIGURE_SCRIPTS = custom -BUILD_SCRIPTS = custom -TEST_SCRIPTS = custom -INSTALL_SCRIPTS = custom +CONFIGURE_SCRIPTS = custom +BUILD_SCRIPTS = custom +TEST_SCRIPTS = custom +INSTALL_SCRIPTS = custom EXTRA_MERGE_SCRIPTS = OS include gar/category.mk ADMSCRIPTS = preremove preinstall space depend i.sol8 i.sol9 i.sol10 -SOLVER = sol$(shell uname -r |sed 's/5\.//') +SOLVER = sol$(shell uname -r |sed 's/5\.//') PLATFORM = $(shell if [ `uname -i` = "i86pc" ] ; then echo i86pc ; else echo sun4 ; fi ) OBJDIR = $(WORKDIR)/$(DISTNAME)/obj.SunOS.$(GAROSREL).$(PLATFORM) LIBFILES = sendmail/sendmail mail.local/mail.local smrsh/smrsh rmail/rmail Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,3 +1,6 @@ +27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 +24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 +b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-08 01:47:50 UTC (rev 5935) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-08 01:47:50 UTC (rev 5935) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-08 01:47:50 UTC (rev 5935) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol10 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol10 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol8 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol8 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol9 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol9 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 8 04:12:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:12:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5936] csw/mgar/pkg/cpan/IPC-Cmd/trunk Message-ID: Revision: 5936 http://gar.svn.sourceforge.net/gar/?rev=5936&view=rev Author: skayser Date: 2009-08-08 02:12:20 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/IPC-Cmd: switched to mGAR v2, version bump to 0.46 Modified Paths: -------------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/Makefile csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/ Property changes on: csw/mgar/pkg/cpan/IPC-Cmd/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/IPC-Cmd/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/Makefile 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/Makefile 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,5 +1,5 @@ GARNAME = IPC-Cmd -GARVERSION = 0.36 +GARVERSION = 0.46 CATEGORIES = cpan AUTHOR = KANE @@ -9,11 +9,16 @@ independent but have them still work. endef -DISTFILES += $(call admfiles,CSWpmipccmd,depend prototype) +PACKAGES = CSWpmipccmd +CATALOGNAME = pm_ipccmd +ARCHALL = 1 -DEPENDS += cpan/Params-Check -DEPENDS += cpan/Module-Load-Conditional -DEPENDS += cpan/Locale-Maketext-Simple -DEPENDS += cpan/IPC-Run +REQUIRED_PKGS = CSWpmlclemktxtsimple CSWpmmodloadcond CSWpmprmscheck include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,4 +1 @@ -2d51ca48e5315eb900b656a00734864e download/CSWpmipccmd.gspec -37058b1448f8d0426fc6e3819f75a0ef download/CSWpmipccmd.depend -f3a7041bd33a6a0fbfd59c57af4956a9 download/CSWpmipccmd.prototype -56c6a27022ba5ebc2701364313f751b9 download/IPC-Cmd-0.36.tar.gz +0e35c075e6a4a4d097ead72e7c3b96f0 download/IPC-Cmd-0.46.tar.gz Deleted: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,3 +0,0 @@ -P CSWpmlclemktxtsimple pm_lclemktxtsimple - simple interface to Locale::Maketext::Lexicon -P CSWpmmodloadcond pm_modloadcond - Query module informationand load at runtime -P CSWpmprmscheck pm_prmscheck - A generic input parsing/checking mechanism. Deleted: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,10 +0,0 @@ -%var bitname pm_ipccmd -%var pkgname CSWpmipccmd -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,14 +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/IPC/Cmd 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IPC/Cmd/.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/IPC::Cmd.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/IPC 0755 root bin -f none /opt/csw/share/perl/csw/IPC/Cmd.pm 0444 root bin Added: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW 2009-08-08 02:12:20 UTC (rev 5936) @@ -0,0 +1,5 @@ +pm_ipccmd (0.46,REV=2009.08.08) + + * Adopted and updated to 0.46 + + -- Sebastian Kayser Sat, 8 Aug 2009 03:14:26 +0200 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 Aug 8 04:24:35 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:24:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5937] csw/mgar/pkg/sudo/trunk Message-ID: Revision: 5937 http://gar.svn.sourceforge.net/gar/?rev=5937&view=rev Author: valholla Date: 2009-08-08 02:24:35 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update to 1.7.2p1 Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile csw/mgar/pkg/sudo/trunk/checksums Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:12:20 UTC (rev 5936) +++ csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:24:35 UTC (rev 5937) @@ -1,7 +1,11 @@ GARNAME = sudo -GARVERSION = 1.7.1 +GARVERSION = 1.7.2 CATEGORIES = utils +RELEASE = p1 +DISTVERSION = $(GARVERSION)$(RELEASE) +DISTNAME = $(GARNAME)-$(DISTVERSION) + DESCRIPTION = Provides limited super user privileges define BLURB Sudo (superuser do) allows a system administrator to give certain users (or @@ -11,7 +15,7 @@ endef MASTER_SITES = ftp://ftp.sudo.ws/pub/sudo/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz PATCHFILES = install.diff # We define upstream file regex so we can be notifed of new @@ -20,7 +24,6 @@ PACKAGES = CSWsudo CSWsudo-common -BUILD64 = 1 CATALOGNAME_CSWsudo = sudo SPKG_DESC_CSWsudo = $(DESCRIPTION) SPKG_SOURCEURL_CSWsudo = http://www.sudo.ws @@ -38,6 +41,7 @@ CONFIGURE_ARGS += --with-logging=both CONFIGURE_ARGS += --with-ignore-dot CONFIGURE_ARGS += --with-env-editor +CONFIGURE_ARGS += --with-project TEST_TARGET = check FIXCONFIG_DIRS = $(DESTDIR)$(libexecdir) @@ -58,3 +62,6 @@ @( cd $(PKGROOT)$(bindir); \ gfind . -type f -name sudo\* -exec gchmod 4755 {} \; ) @$(MAKECOOKIE) + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + Modified: csw/mgar/pkg/sudo/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo/trunk/checksums 2009-08-08 02:12:20 UTC (rev 5936) +++ csw/mgar/pkg/sudo/trunk/checksums 2009-08-08 02:24:35 UTC (rev 5937) @@ -1,3 +1,3 @@ 955d99eda1432c7b7e00d98b91e35a79 download/CSWsudo-common.postinstall 157b2e5e38ca54eb36e0364706bd0292 download/install.diff -af672524b2c854a67612bf4c743f58b8 download/sudo-1.7.1.tar.gz +4449d466a774f5ce401c9c0e3866c026 download/sudo-1.7.2p1.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 Sat Aug 8 04:26:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:26:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5938] csw/mgar/pkg/cpan/Log-Message/trunk Message-ID: Revision: 5938 http://gar.svn.sourceforge.net/gar/?rev=5938&view=rev Author: skayser Date: 2009-08-08 02:26:06 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Log-Message: switched to mGAR v2, version bump to 0.02 Modified Paths: -------------- csw/mgar/pkg/cpan/Log-Message/trunk/Makefile csw/mgar/pkg/cpan/Log-Message/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Log-Message/trunk/ Property changes on: csw/mgar/pkg/cpan/Log-Message/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/Log-Message/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/Makefile 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/Makefile 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,9 +1,9 @@ GARNAME = Log-Message -GARVERSION = 0.01 +GARVERSION = 0.02 CATEGORIES = cpan AUTHOR = KANE -DESCRIPTION = Generic message storage mechanism. +DESCRIPTION = A generic message storage mechanism define BLURB Log::Message is a generic message storage mechanism. It allows you to store messages on a stack -- either shared or private -- and assign meta-data to @@ -13,9 +13,16 @@ (for example, log it, or die with it) endef -DISTFILES += $(call admfiles,CSWpmlogmessage,depend prototype) +PACKAGES = CSWpmlogmessage +CATALOGNAME = pm_logmessage +ARCHALL = 1 -DEPENDS += cpan/Params-Check -DEPENDS += cpan/Locale-Maketext-Simple +REQUIRED_PKGS = CSWpmlclemktxtsimple CSWpmprmscheck CSWpmmodload include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Log-Message/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/checksums 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/checksums 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,4 +1 @@ -5646fd7e2e86044a7eefdd8604265386 download/CSWpmlogmessage.gspec -9e746d6590ee485748161b97fbc13586 download/CSWpmlogmessage.depend -d1ab71d0f29955c3f70e126787164460 download/CSWpmlogmessage.prototype -f04298e81488a5a39930fd417d47656e download/Log-Message-0.01.tar.gz +fbdd7889a0f6027c79e43c6b8ba3d992 download/Log-Message-0.02.tar.gz Deleted: csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,3 +0,0 @@ -P CSWpmlclemktxtsimple pm_lclemktxtsimple - simple interface to Locale::Maketext::Lexicon -P CSWpmmodload pm_modload - Runtime require of both modules and files -P CSWpmprmscheck pm_prmscheck - A generic input parsing/checking mechanism. Deleted: csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,10 +0,0 @@ -%var bitname pm_logmessage -%var pkgname CSWpmlogmessage -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,22 +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/Log 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Log/Message 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Log/Message/.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/Log::Message.3perl 0444 root bin -f none /opt/csw/share/man/man3/Log::Message::Config.3perl 0444 root bin -f none /opt/csw/share/man/man3/Log::Message::Handlers.3perl 0444 root bin -f none /opt/csw/share/man/man3/Log::Message::Item.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/Log 0755 root bin -d none /opt/csw/share/perl/csw/Log/Message 0755 root bin -f none /opt/csw/share/perl/csw/Log/Message.pm 0444 root bin -f none /opt/csw/share/perl/csw/Log/Message/Config.pm 0444 root bin -f none /opt/csw/share/perl/csw/Log/Message/Handlers.pm 0444 root bin -f none /opt/csw/share/perl/csw/Log/Message/Item.pm 0444 root bin Added: csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW 2009-08-08 02:26:06 UTC (rev 5938) @@ -0,0 +1,5 @@ +pm_logmessage (0.02,REV=2009.08.08) + + * Adopted and updated to 0.02 + + -- Sebastian Kayser Sat, 8 Aug 2009 04:24:10 +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 Sat Aug 8 04:33:48 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:33:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5939] csw/mgar/pkg/cpan/Log-Message-Simple/trunk Message-ID: Revision: 5939 http://gar.svn.sourceforge.net/gar/?rev=5939&view=rev Author: skayser Date: 2009-08-08 02:33:48 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Log-Message-Simple: switched to mGAR v2, version bump to 0.04 Modified Paths: -------------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/Makefile csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/ Property changes on: csw/mgar/pkg/cpan/Log-Message-Simple/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/Log-Message-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/Makefile 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/Makefile 2009-08-08 02:33:48 UTC (rev 5939) @@ -1,16 +1,24 @@ GARNAME = Log-Message-Simple -GARVERSION = 0.01 +GARVERSION = 0.04 CATEGORIES = cpan AUTHOR = KANE -DESCRIPTION = Standardized logging facilities using the Log::Message module. +DESCRIPTION = Standardized logging facilities using the Log::Message module define BLURB This module provides standardized logging facilities using the Log::Message module. endef -DISTFILES += $(call admfiles,CSWpmlogmsgsimple,depend prototype) +PACKAGES = CSWpmlogmsgsimple +CATALOGNAME = pm_logmsgsimple +ARCHALL = 1 -DEPENDS += cpan/Log-Message +REQUIRED_PKGS = CSWpmlogmessage include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums 2009-08-08 02:33:48 UTC (rev 5939) @@ -1,4 +1 @@ -1dc5ec3822e3b3156128d30bff62c4bf download/CSWpmlogmsgsimple.gspec -463ea0af707c3af472a83812c6ba8f4d download/CSWpmlogmsgsimple.depend -ba55c2be6f2414813263a8143a141891 download/CSWpmlogmsgsimple.prototype -0c60795da495f6a79d09362e8b4f0061 download/Log-Message-Simple-0.01.tar.gz +29e42e6f2f43592a74fed779bd11c1e6 download/Log-Message-Simple-0.04.tar.gz Deleted: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend 2009-08-08 02:33:48 UTC (rev 5939) @@ -1 +0,0 @@ -P CSWpmlogmessage pm_logmessage - Generic message storage mechanism. Deleted: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec 2009-08-08 02:33:48 UTC (rev 5939) @@ -1,10 +0,0 @@ -%var bitname pm_logmsgsimple -%var pkgname CSWpmlogmsgsimple -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype 2009-08-08 02:33:48 UTC (rev 5939) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Log/Message 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Log/Message/Simple 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Log/Message/Simple/.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/Log::Message::Simple.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/Log/Message 0755 root bin -f none /opt/csw/share/perl/csw/Log/Message/Simple.pm 0444 root bin Added: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW 2009-08-08 02:33:48 UTC (rev 5939) @@ -0,0 +1,5 @@ +pm_logmsgsimple (0.04,REV=2009.08.08) + + * Adopted and updated to 0.04 + + -- Sebastian Kayser Sat, 8 Aug 2009 04:28:48 +0200 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 Aug 8 04:37:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:37:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5940] csw/mgar/pkg/sudo/trunk/Makefile Message-ID: Revision: 5940 http://gar.svn.sourceforge.net/gar/?rev=5940&view=rev Author: valholla Date: 2009-08-08 02:37:51 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix --with-project not to compile for Sol8 Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:33:48 UTC (rev 5939) +++ csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:37:51 UTC (rev 5940) @@ -41,7 +41,11 @@ CONFIGURE_ARGS += --with-logging=both CONFIGURE_ARGS += --with-ignore-dot CONFIGURE_ARGS += --with-env-editor -CONFIGURE_ARGS += --with-project +CONFIGURE_ARGS += --disable-path-info +CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog +ifneq ($(GAROSREL),5.8) + CONFIGURE_ARGS += --with-project +endif TEST_TARGET = check FIXCONFIG_DIRS = $(DESTDIR)$(libexecdir) 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 Aug 8 04:53:48 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:53:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5941] csw/mgar/pkg/sudo_ldap/trunk/Makefile Message-ID: Revision: 5941 http://gar.svn.sourceforge.net/gar/?rev=5941&view=rev Author: valholla Date: 2009-08-08 02:53:48 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update for --with-project Modified Paths: -------------- csw/mgar/pkg/sudo_ldap/trunk/Makefile Modified: csw/mgar/pkg/sudo_ldap/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 02:37:51 UTC (rev 5940) +++ csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 02:53:48 UTC (rev 5941) @@ -1,7 +1,11 @@ GARNAME = sudo -GARVERSION = 1.7.1 +GARVERSION = 1.7.2 CATEGORIES = utils +RELEASE = p1 +DISTVERSION = $(GARVERSION)$(RELEASE) +DISTNAME = $(GARNAME)-$(DISTVERSION) + DESCRIPTION = Provides limited super user privileges (LDAP Enabled) define BLURB Sudo (superuser do) allows a system administrator to give certain users (or @@ -11,7 +15,7 @@ endef MASTER_SITES = ftp://ftp.sudo.ws/pub/sudo/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz PATCHFILES = install.diff # We define upstream file regex so we can be notifed of new @@ -25,7 +29,6 @@ SPKG_SOURCEURL_CSWsudoldap = http://www.sudo.ws REQUIRED_PKGS_CSWsudoldap = CSWsudo-common CSWggettextrt CSWoldaprt -BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-pam CONFIGURE_ARGS += --with-logging=both @@ -33,7 +36,13 @@ CONFIGURE_ARGS += --with-env-editor CONFIGURE_ARGS += --with-ldap=$(prefix) CONFIGURE_ARGS += --with-ldap-conf-file=$(sysconfdir)/ldap.conf +CONFIGURE_ARGS += --disable-path-info +CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog +ifneq ($(GAROSREL),5.8) + CONFIGURE_ARGS += --with-project +endif + TEST_TARGET = check include gar/category.mk @@ -45,3 +54,6 @@ @( cd $(DESTDIR)$(bindir) ; grm sudoedit ) @( cd $(DESTDIR)$(bindir) ; gchmod 4755 sudo.ldap ) @$(MAKECOOKIE) + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat Aug 8 04:54:46 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:54:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5942] csw/mgar/pkg/sudo_ldap/trunk/checksums Message-ID: Revision: 5942 http://gar.svn.sourceforge.net/gar/?rev=5942&view=rev Author: valholla Date: 2009-08-08 02:54:46 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update checksums Modified Paths: -------------- csw/mgar/pkg/sudo_ldap/trunk/checksums Modified: csw/mgar/pkg/sudo_ldap/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo_ldap/trunk/checksums 2009-08-08 02:53:48 UTC (rev 5941) +++ csw/mgar/pkg/sudo_ldap/trunk/checksums 2009-08-08 02:54:46 UTC (rev 5942) @@ -1,2 +1,2 @@ 157b2e5e38ca54eb36e0364706bd0292 download/install.diff -af672524b2c854a67612bf4c743f58b8 download/sudo-1.7.1.tar.gz +4449d466a774f5ce401c9c0e3866c026 download/sudo-1.7.2p1.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 Sat Aug 8 05:06:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:06:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[5943] csw/mgar/pkg/sudo_ldap/trunk/Makefile Message-ID: Revision: 5943 http://gar.svn.sourceforge.net/gar/?rev=5943&view=rev Author: valholla Date: 2009-08-08 03:06:16 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix ifndef Modified Paths: -------------- csw/mgar/pkg/sudo_ldap/trunk/Makefile Modified: csw/mgar/pkg/sudo_ldap/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 02:54:46 UTC (rev 5942) +++ csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 03:06:16 UTC (rev 5943) @@ -38,7 +38,7 @@ CONFIGURE_ARGS += --with-ldap-conf-file=$(sysconfdir)/ldap.conf CONFIGURE_ARGS += --disable-path-info CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog -ifneq ($(GAROSREL),5.8) +ifneq ($(shell uname -r),5.8) CONFIGURE_ARGS += --with-project 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 Sat Aug 8 05:07:36 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:07:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5944] csw/mgar/pkg/sudo/trunk/Makefile Message-ID: Revision: 5944 http://gar.svn.sourceforge.net/gar/?rev=5944&view=rev Author: valholla Date: 2009-08-08 03:07:35 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix ifndef Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 03:06:16 UTC (rev 5943) +++ csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 03:07:35 UTC (rev 5944) @@ -43,7 +43,7 @@ CONFIGURE_ARGS += --with-env-editor CONFIGURE_ARGS += --disable-path-info CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog -ifneq ($(GAROSREL),5.8) +ifneq ($(shell uname -r),5.8) CONFIGURE_ARGS += --with-project 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 Sat Aug 8 05:15:38 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:15:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5945] csw/mgar/pkg/squirrelmail/trunk Message-ID: Revision: 5945 http://gar.svn.sourceforge.net/gar/?rev=5945&view=rev Author: valholla Date: 2009-08-08 03:15:38 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update to 1.4.19 Modified Paths: -------------- csw/mgar/pkg/squirrelmail/trunk/Makefile csw/mgar/pkg/squirrelmail/trunk/checksums Modified: csw/mgar/pkg/squirrelmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:07:35 UTC (rev 5944) +++ csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:15:38 UTC (rev 5945) @@ -1,5 +1,5 @@ GARNAME = squirrelmail -GARVERSION = 1.4.17 +GARVERSION = 1.4.19 CATEGORIES = apps DESCRIPTION = A standards-based webmail package written in PHP. Modified: csw/mgar/pkg/squirrelmail/trunk/checksums =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/checksums 2009-08-08 03:07:35 UTC (rev 5944) +++ csw/mgar/pkg/squirrelmail/trunk/checksums 2009-08-08 03:15:38 UTC (rev 5945) @@ -1,4 +1,4 @@ 03fd1d67c03c50575a6ab429b8a3e684 download/CSWsquirrelmail.postinstall e3cf4a632ae736e123d758b331fcc008 download/CSWsquirrelmail.preremove b7a712462d4a1438159e764697d32d45 download/httpd-squirrelmail.conf.CSW -6ff0df8ae0e7f13418ed37ea1c93f6f3 download/squirrelmail-1.4.17.tar.bz2 +b7c5ebf0a57fe3511042a740ff1b5710 download/squirrelmail-1.4.19.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 Sat Aug 8 05:21:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:21:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[5946] csw/mgar/pkg/squirrelmail/trunk/Makefile Message-ID: Revision: 5946 http://gar.svn.sourceforge.net/gar/?rev=5946&view=rev Author: valholla Date: 2009-08-08 03:21:16 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix license location Modified Paths: -------------- csw/mgar/pkg/squirrelmail/trunk/Makefile Modified: csw/mgar/pkg/squirrelmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:15:38 UTC (rev 5945) +++ csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:21:16 UTC (rev 5946) @@ -13,7 +13,7 @@ MIME support, address books, and folder manipulation. endef -LICENSE = COPYING +LICENSE = doc/COPYING ARCHALL = 1 MASTER_SITES = $(SF_MIRRORS) 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 Aug 8 05:39:18 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:39:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5947] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 5947 http://gar.svn.sourceforge.net/gar/?rev=5947&view=rev Author: valholla Date: 2009-08-08 03:39:18 +0000 (Sat, 08 Aug 2009) Log Message: ----------- filter out charset.alias and setuid root on */gpg Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 03:21:16 UTC (rev 5946) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 03:39:18 UTC (rev 5947) @@ -35,13 +35,12 @@ CONFIGURE_ARGS += --enable-threads=solaris CONFIGURE_ARGS += --disable-asm +EXTRA_MERGE_EXCLUDE_FILES += .*/charset.alias +PROTOTYPE_FILTER = awk ' $$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } ' + REQUIRED_PKGS_CSWgnupg = CSWbzip2 CSWcurlrt CSWggettextrt CSWiconv REQUIRED_PKGS_CSWgnupg += CSWoldaprt CSWreadline CSWzlib TEST_TARGET = check -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~ /\/opt\/csw\/bin\/gpg$$$$/ { $$$$4 = "4755" } \ - { print }' - 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 Aug 8 05:40:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:40:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5948] csw/mgar/pkg/gnupg/trunk/ Message-ID: Revision: 5948 http://gar.svn.sourceforge.net/gar/?rev=5948&view=rev Author: valholla Date: 2009-08-08 03:40:48 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix ignored directories Property Changed: ---------------- csw/mgar/pkg/gnupg/trunk/ Property changes on: csw/mgar/pkg/gnupg/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 Sat Aug 8 06:05:35 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 04:05:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5949] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 5949 http://gar.svn.sourceforge.net/gar/?rev=5949&view=rev Author: valholla Date: 2009-08-08 04:05:35 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix typo in prototype_filter Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 03:40:48 UTC (rev 5948) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 04:05:35 UTC (rev 5949) @@ -36,7 +36,8 @@ CONFIGURE_ARGS += --disable-asm EXTRA_MERGE_EXCLUDE_FILES += .*/charset.alias -PROTOTYPE_FILTER = awk ' $$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } ' +PROTOTYPE_FILTER = awk '$$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } + { print }' REQUIRED_PKGS_CSWgnupg = CSWbzip2 CSWcurlrt CSWggettextrt CSWiconv REQUIRED_PKGS_CSWgnupg += CSWoldaprt CSWreadline CSWzlib 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 Aug 8 06:06:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 04:06:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5950] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 5950 http://gar.svn.sourceforge.net/gar/?rev=5950&view=rev Author: valholla Date: 2009-08-08 04:06:21 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix typo in prototype_filter Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 04:05:35 UTC (rev 5949) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 04:06:21 UTC (rev 5950) @@ -36,8 +36,7 @@ CONFIGURE_ARGS += --disable-asm EXTRA_MERGE_EXCLUDE_FILES += .*/charset.alias -PROTOTYPE_FILTER = awk '$$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } - { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } { print }' REQUIRED_PKGS_CSWgnupg = CSWbzip2 CSWcurlrt CSWggettextrt CSWiconv REQUIRED_PKGS_CSWgnupg += CSWoldaprt CSWreadline CSWzlib 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 Aug 8 07:28:22 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 05:28:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[5951] csw/mgar/pkg/gcc4/trunk/Makefile Message-ID: Revision: 5951 http://gar.svn.sourceforge.net/gar/?rev=5951&view=rev Author: valholla Date: 2009-08-08 05:28:21 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update to 4.4.1 Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/Makefile Modified: csw/mgar/pkg/gcc4/trunk/Makefile =================================================================== --- csw/mgar/pkg/gcc4/trunk/Makefile 2009-08-08 04:06:21 UTC (rev 5950) +++ csw/mgar/pkg/gcc4/trunk/Makefile 2009-08-08 05:28:21 UTC (rev 5951) @@ -1,5 +1,5 @@ GARNAME = gcc -GARVERSION = 4.3.3 +GARVERSION = 4.4.1 CATEGORIES = lang DESCRIPTION = The GNU Compiler Collection 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 Sun Aug 9 22:10:58 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 09 Aug 2009 20:10:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5952] csw/mgar/pkg/munin/trunk/files/CSWmuninmaster. postinstall Message-ID: Revision: 5952 http://gar.svn.sourceforge.net/gar/?rev=5952&view=rev Author: j_arndt Date: 2009-08-09 20:10:58 +0000 (Sun, 09 Aug 2009) Log Message: ----------- munin: fixed typo in postinstall script Modified Paths: -------------- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-08 05:28:21 UTC (rev 5951) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-09 20:10:58 UTC (rev 5952) @@ -21,7 +21,7 @@ (3) Add the following line to your Apache configuration - "Normal" mode: Include /etc/opt/csw/munin/apache.conf + "Normal" mode: Include /etc/opt/csw/munin/apache/apache.conf CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf (4) Add the user your webserver is running under (nobody for Apache) to 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 Sun Aug 9 22:16:18 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 09 Aug 2009 20:16:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5953] csw/mgar/pkg/munin/trunk/checksums Message-ID: Revision: 5953 http://gar.svn.sourceforge.net/gar/?rev=5953&view=rev Author: j_arndt Date: 2009-08-09 20:16:18 +0000 (Sun, 09 Aug 2009) Log Message: ----------- munin: checksums modified Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-09 20:10:58 UTC (rev 5952) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-09 20:16:18 UTC (rev 5953) @@ -1,4 +1,4 @@ -cfe000894b343d2f36f41195b1ac2365 download/CSWmuninmaster.postinstall +473a91d70e616194bdcfd85af8081e15 download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW 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 Aug 10 00:15:13 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 09 Aug 2009 22:15:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5954] csw/mgar/pkg/dbus/trunk/files/cswdbus Message-ID: Revision: 5954 http://gar.svn.sourceforge.net/gar/?rev=5954&view=rev Author: wbonnet Date: 2009-08-09 22:15:12 +0000 (Sun, 09 Aug 2009) Log Message: ----------- Remove config-file argument Modified Paths: -------------- csw/mgar/pkg/dbus/trunk/files/cswdbus Modified: csw/mgar/pkg/dbus/trunk/files/cswdbus =================================================================== --- csw/mgar/pkg/dbus/trunk/files/cswdbus 2009-08-09 20:16:18 UTC (rev 5953) +++ csw/mgar/pkg/dbus/trunk/files/cswdbus 2009-08-09 22:15:12 UTC (rev 5954) @@ -36,7 +36,7 @@ rm -f $DBUS_VAR_RUN_DIR/pid fi - /opt/csw/bin/dbus-daemon --system --config-file=/opt/csw/etc/dbus-1/system.conf + /opt/csw/bin/dbus-daemon --system err=$? if [ $err -ne 0 ]; then echo "dbus failed to start: error $err" 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 Aug 10 00:41:55 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 09 Aug 2009 22:41:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5955] csw/mgar/pkg/dbus/trunk/checksums Message-ID: Revision: 5955 http://gar.svn.sourceforge.net/gar/?rev=5955&view=rev Author: wbonnet Date: 2009-08-09 22:41:55 +0000 (Sun, 09 Aug 2009) Log Message: ----------- Update checksums Modified Paths: -------------- csw/mgar/pkg/dbus/trunk/checksums Modified: csw/mgar/pkg/dbus/trunk/checksums =================================================================== --- csw/mgar/pkg/dbus/trunk/checksums 2009-08-09 22:15:12 UTC (rev 5954) +++ csw/mgar/pkg/dbus/trunk/checksums 2009-08-09 22:41:55 UTC (rev 5955) @@ -2,5 +2,5 @@ 6e26e51243c4551ac222112edf67b5db download/CSWdbus.preinstall 00bb177908f6107ef2f6caa082475f34 download/CSWlibdbus.gspec 1d5dad88ae16c76d47398f8e9c2e09a0 download/CSWlibdbusdev.gspec -2c465012736d7810257573dff4cd04b7 download/cswdbus +9222a44088c837eba62822e330de713f download/cswdbus 39bd582c3b06a261cac44d4cab6fd60b download/dbus-1.2.12.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 Mon Aug 10 10:28:14 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 10 Aug 2009 08:28:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5956] csw/mgar/pkg/apache2/trunk Message-ID: Revision: 5956 http://gar.svn.sourceforge.net/gar/?rev=5956&view=rev Author: idogan23 Date: 2009-08-10 08:28:14 +0000 (Mon, 10 Aug 2009) Log Message: ----------- apache2: bump version to 2.2.13 Modified Paths: -------------- csw/mgar/pkg/apache2/trunk/Makefile csw/mgar/pkg/apache2/trunk/checksums csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype Modified: csw/mgar/pkg/apache2/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2/trunk/Makefile 2009-08-09 22:41:55 UTC (rev 5955) +++ csw/mgar/pkg/apache2/trunk/Makefile 2009-08-10 08:28:14 UTC (rev 5956) @@ -1,5 +1,5 @@ GARNAME = httpd -GARVERSION = 2.2.12 +GARVERSION = 2.2.13 CATEGORIES = server DESCRIPTION = A high performance Unix-based HTTP server. Modified: csw/mgar/pkg/apache2/trunk/checksums =================================================================== --- csw/mgar/pkg/apache2/trunk/checksums 2009-08-09 22:41:55 UTC (rev 5955) +++ csw/mgar/pkg/apache2/trunk/checksums 2009-08-10 08:28:14 UTC (rev 5956) @@ -20,11 +20,11 @@ 0dd379f20ceb32fc77bb3a9bf045097f download/CSWapache2c.space 523b1f316a67090dfc08fe7506cb1aa0 download/CSWapache2rt.checkinstall 7546bc4336d9656e5b02e392264ce114 download/CSWapache2rt.gspec -a56d94b2ce92f4b18ff85af0b8e9bda0 download/CSWapache2rt.prototype +602b5bc079c3dbf441e9d0b4e1bc3fc7 download/CSWapache2rt.prototype 308836569bf0cc1be27ac45e3123e0c2 download/apu-iconv.diff a7467a756cbd980d4cfe3c2cfb6a9e35 download/config.layout b3c2086facecc3f898d29f3c8c74da11 download/cswapache2 -17f017b571f88aa60abebfe2945d7caf download/httpd-2.2.12.tar.gz +2803e35be6650f5b739e6e91faa824dd download/httpd-2.2.13.tar.gz d9d1abded665674800f3e5c246a4163f download/httpd-mpm.conf.CSW 796a7d5095ce154c274a2ccfd60ec753 download/httpd-ssl.conf.CSW f0941e5782e4bee45c2c95bd9460796b download/httpd.conf.CSW Modified: csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype =================================================================== --- csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype 2009-08-09 22:41:55 UTC (rev 5955) +++ csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype 2009-08-10 08:28:14 UTC (rev 5956) @@ -5,9 +5,9 @@ s none /opt/csw/apache2/bin/apr-config=apr-1-config s none /opt/csw/apache2/bin/apu-config=apu-1-config d none /opt/csw/apache2/lib 0755 root bin -s none /opt/csw/apache2/lib/libaprutil-1.so=libaprutil-1.so.0.3.8 -s none /opt/csw/apache2/lib/libaprutil-1.so.0=libaprutil-1.so.0.3.8 -s none /opt/csw/apache2/lib/libapr-1.so.0=libapr-1.so.0.3.7 +s none /opt/csw/apache2/lib/libaprutil-1.so=libaprutil-1.so.0.3.9 +s none /opt/csw/apache2/lib/libaprutil-1.so.0=libaprutil-1.so.0.3.9 +s none /opt/csw/apache2/lib/libapr-1.so.0=libapr-1.so.0.3.8 d none /opt/csw/apache2/lib/apr-util-1 0755 root bin s none /opt/csw/apache2/lib/apr-util-1/apr_dbd_sqlite3.so=apr_dbd_sqlite3-1.so s none /opt/csw/apache2/lib/apr-util-1/apr_ldap.so=apr_ldap-1.so @@ -16,9 +16,9 @@ f none /opt/csw/apache2/lib/apr-util-1/apr_dbd_sqlite3.a 0644 root bin f none /opt/csw/apache2/lib/apr-util-1/apr_ldap-1.so 0755 root bin d none /opt/csw/apache2/lib/pkgconfig 0755 root bin -f none /opt/csw/apache2/lib/libapr-1.so.0.3.7 0755 root bin -s none /opt/csw/apache2/lib/libapr-1.so=libapr-1.so.0.3.7 -f none /opt/csw/apache2/lib/libaprutil-1.so.0.3.8 0755 root bin +f none /opt/csw/apache2/lib/libapr-1.so.0.3.8 0755 root bin +s none /opt/csw/apache2/lib/libapr-1.so=libapr-1.so.0.3.8 +f none /opt/csw/apache2/lib/libaprutil-1.so.0.3.9 0755 root bin d none /opt/csw/apache2/man 0755 root bin d none /opt/csw/apache2/man/man8 0755 root bin f none /opt/csw/apache2/man/man8/apxs.8 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 11:00:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 09:00:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5957] csw/mgar/pkg/cpan/libwww-perl/trunk Message-ID: Revision: 5957 http://gar.svn.sourceforge.net/gar/?rev=5957&view=rev Author: dmichelsen Date: 2009-08-10 09:00:07 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/libwww-perl: Change dependency to IO-Compress and update to 5.830 Modified Paths: -------------- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile csw/mgar/pkg/cpan/libwww-perl/trunk/checksums Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-10 08:28:14 UTC (rev 5956) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-10 09:00:07 UTC (rev 5957) @@ -1,5 +1,5 @@ GARNAME = libwww-perl -GARVERSION = 5.826 +GARVERSION = 5.830 CATEGORIES = cpan AUTHOR = GAAS @@ -11,22 +11,12 @@ used. endef -#DISTFILES += $(call admfiles,CSWpmlibwww,) -DISTFILES += COPYING +DISTFILES = COPYING CATALOGNAME = pm_libwww PACKAGES = CSWpmlibwww ARCHALL = 1 -REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWpmcompresszlib CSWpmhtmlfmt CSWpmmimebase64 +REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWiocompress CSWpmhtmlfmt CSWpmmimebase64 -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -DEPENDS += cpan/URI -DEPENDS += cpan/HTML-Parser -DEPENDS += cpan/Crypt-SSLeay -DEPENDS += cpan/Data-Dump - -CONFIGURE_ARGS = - include gar/category.mk Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-08-10 08:28:14 UTC (rev 5956) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-08-10 09:00:07 UTC (rev 5957) @@ -1,2 +1,2 @@ d6d74a59bf794b8ffc8da8bbf1e4e15a download/COPYING -3f8e1922193b74ffb7d86efdadfbe865 download/libwww-perl-5.826.tar.gz +55049cd17e73c94bee3aee4b65b465c5 download/libwww-perl-5.830.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 Mon Aug 10 11:15:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 09:15:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[5958] csw/mgar/pkg/cpan/PDF-API2/trunk Message-ID: Revision: 5958 http://gar.svn.sourceforge.net/gar/?rev=5958&view=rev Author: dmichelsen Date: 2009-08-10 09:15:39 +0000 (Mon, 10 Aug 2009) Log Message: ----------- PDF-API2/trunk: Prepare for dependency to IO-Compress Modified Paths: -------------- csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile csw/mgar/pkg/cpan/PDF-API2/trunk/checksums Modified: csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile 2009-08-10 09:00:07 UTC (rev 5957) +++ csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile 2009-08-10 09:15:39 UTC (rev 5958) @@ -3,24 +3,17 @@ CATEGORIES = cpan AUTHOR = AREIBENS -DESCRIPTION = create and modify PDF files +DESCRIPTION = Create and modify PDF files define BLURB A Perl Module Chain to faciliate the Creation and Modification of High-Quality "Portable Document Format (aka. PDF)" Files. endef +REQUIRED_PKGS = CSWiocompress + PACKAGES = CSWpmpdfapi2 CATALOGNAME = pm_pdfapi2 -ARCHALL_CSWpmpdfapi2 = 1 +ARCHALL = 1 -REQUIRED_PKGS_CSWpmpdfapi2 += CSWpmcompresszlib - -LICENSE = COPYING - include gar/category.mk - -post-extract: - @chmod o+r $(WORKSRC)/COPYING - @$(MAKECOOKIE) - Modified: csw/mgar/pkg/cpan/PDF-API2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PDF-API2/trunk/checksums 2009-08-10 09:00:07 UTC (rev 5957) +++ csw/mgar/pkg/cpan/PDF-API2/trunk/checksums 2009-08-10 09:15:39 UTC (rev 5958) @@ -1,2 +1 @@ -0771d40713b8d6a5c98635075ee6086b download/CSWpmpdfapi2.gspec 848fb727323390128cac85cc11f52de1 download/PDF-API2-0.73.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 Mon Aug 10 11:41:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 09:41:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5959] csw/mgar/pkg/cpan/Archive-Zip/trunk Message-ID: Revision: 5959 http://gar.svn.sourceforge.net/gar/?rev=5959&view=rev Author: dmichelsen Date: 2009-08-10 09:41:26 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Archive-Zip: Update to new dependency IO-Compress Modified Paths: -------------- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile csw/mgar/pkg/cpan/Archive-Zip/trunk/checksums Modified: csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-10 09:15:39 UTC (rev 5958) +++ csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-10 09:41:26 UTC (rev 5959) @@ -17,13 +17,11 @@ streams inside the files. endef -DISTFILES = COPYING - PACKAGES = CSWpmarchivezip CATALOGNAME = pm_archivezip ARCHALL = 1 -REQUIRED_PKGS = CSWpmcompresszlib +REQUIRED_PKGS = CSWiocompress # 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/cpan/Archive-Zip/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Archive-Zip/trunk/checksums 2009-08-10 09:15:39 UTC (rev 5958) +++ csw/mgar/pkg/cpan/Archive-Zip/trunk/checksums 2009-08-10 09:41:26 UTC (rev 5959) @@ -1,2 +1 @@ 40153666e7538b410e001aa8a810e702 download/Archive-Zip-1.30.tar.gz -d706488da67bf9e146e07b0cc38f1c3f download/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 Mon Aug 10 13:47:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 11:47:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5960] csw/mgar/pkg/cpan/version/trunk Message-ID: Revision: 5960 http://gar.svn.sourceforge.net/gar/?rev=5960&view=rev Author: dmichelsen Date: 2009-08-10 11:47:07 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/version: Update to 0.7701 Modified Paths: -------------- csw/mgar/pkg/cpan/version/trunk/Makefile csw/mgar/pkg/cpan/version/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.depend csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/version/trunk/ Property changes on: csw/mgar/pkg/cpan/version/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/version/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/version/trunk/Makefile 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/Makefile 2009-08-10 11:47:07 UTC (rev 5960) @@ -1,5 +1,5 @@ GARNAME = version -GARVERSION = 0.70 +GARVERSION = 0.7701 CATEGORIES = cpan AUTHOR = JPEACOCK @@ -10,6 +10,7 @@ 5.10.0. endef -DISTFILES += $(call admfiles,CSWpmversion,depend prototype) +PACKAGES = CSWpmversion +CATALOGNAME = pm_version include gar/category.mk Modified: csw/mgar/pkg/cpan/version/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/version/trunk/checksums 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/checksums 2009-08-10 11:47:07 UTC (rev 5960) @@ -1,4 +1 @@ -5cd9594b812425b324f0c2d70d2ec25f download/CSWpmversion.gspec -882cfc02f0fd6a7892b45bc34a8a9755 download/CSWpmversion.depend -2cf4fc14d3bc922474a9a575e3faaee3 download/CSWpmversion.prototype -cefd6fff47086339b20f0cdb52b0bd75 download/version-0.70.tar.gz +4ee228bb8254660b5f216af708a266cc download/version-0.7701.tar.gz Deleted: csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec =================================================================== --- csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec 2009-08-10 11:47:07 UTC (rev 5960) @@ -1,6 +0,0 @@ -%var bitname pm_version -%var pkgname CSWpmversion -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module can be distributed under the same terms as Perl. -Copyright (C) 2004,2005,2006 John Peacock Deleted: csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype =================================================================== --- csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype 2009-08-10 11:47:07 UTC (rev 5960) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/version 0755 root bin -f none /opt/csw/lib/perl/csw/auto/version/.packlist 0644 root bin -d none /opt/csw/lib/perl/csw/auto/version/vxs 0755 root bin -f none /opt/csw/lib/perl/csw/auto/version/vxs/vxs.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/version/vxs/vxs.so 0555 root bin -d none /opt/csw/lib/perl/csw/version 0755 root bin -f none /opt/csw/lib/perl/csw/version.pm 0444 root bin -f none /opt/csw/lib/perl/csw/version.pod 0444 root bin -f none /opt/csw/lib/perl/csw/version/vxs.pm 0444 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/version.3 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 Mon Aug 10 13:57:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 11:57:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[5961] csw/mgar/pkg/cpan/Algorithm-Diff/trunk Message-ID: Revision: 5961 http://gar.svn.sourceforge.net/gar/?rev=5961&view=rev Author: dmichelsen Date: 2009-08-10 11:57:04 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Algorithm-Diff: Update to 1.1902 Modified Paths: -------------- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/Makefile csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.depend csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/ Property changes on: csw/mgar/pkg/cpan/Algorithm-Diff/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/Algorithm-Diff/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/Makefile 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/Makefile 2009-08-10 11:57:04 UTC (rev 5961) @@ -3,11 +3,14 @@ CATEGORIES = cpan AUTHOR = TYEMQ -DESCRIPTION = compute intelligent differences between two files/lists +DESCRIPTION = Compute intelligent differences between two files/lists define BLURB - Compute `intelligent' differences between two files / lists + Compute 'intelligent' differences between two files / lists endef -DISTFILES = $(call admfiles,CSWpmalgdiff,depend prototype) +PACKAGES = CSWpmalgdiff +CATALOGNAME = pm_algorithmdiff +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums 2009-08-10 11:57:04 UTC (rev 5961) @@ -1,4 +1 @@ -91f4d5a9e41c2c405715ba6a3c6937bd download/CSWpmalgdiff.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmalgdiff.depend -e946ffdb62b964259723853222603cf5 download/CSWpmalgdiff.prototype ff3e17ae485f8adfb8857b183991fbce download/Algorithm-Diff-1.1902.tar.gz Deleted: csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec 2009-08-10 11:57:04 UTC (rev 5961) @@ -1,9 +0,0 @@ -%var bitname pm_algorithmdiff -%var pkgname CSWpmalgdiff -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2000-2002 Ned Konz. 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/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype 2009-08-10 11:57:04 UTC (rev 5961) @@ -1,21 +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/Algorithm 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Algorithm/Diff 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Algorithm/Diff/.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/Algorithm::Diff.3perl 0444 root bin -f none /opt/csw/share/man/man3/Algorithm::DiffOld.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/Algorithm 0755 root bin -f none /opt/csw/share/perl/csw/Algorithm/Diff.pm 0444 root bin -f none /opt/csw/share/perl/csw/Algorithm/DiffOld.pm 0444 root bin -f none /opt/csw/share/perl/csw/Algorithm/cdiff.pl 0555 root bin -f none /opt/csw/share/perl/csw/Algorithm/diff.pl 0555 root bin -f none /opt/csw/share/perl/csw/Algorithm/diffnew.pl 0555 root bin -f none /opt/csw/share/perl/csw/Algorithm/htmldiff.pl 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 Mon Aug 10 14:03:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:03:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5962] csw/mgar/pkg/cpan/Algorithm-Annotate/trunk Message-ID: Revision: 5962 http://gar.svn.sourceforge.net/gar/?rev=5962&view=rev Author: dmichelsen Date: 2009-08-10 12:03:12 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Algorithm-Annotate: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/Makefile csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/ Property changes on: csw/mgar/pkg/cpan/Algorithm-Annotate/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/Algorithm-Annotate/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/Makefile 2009-08-10 11:57:04 UTC (rev 5961) +++ csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/Makefile 2009-08-10 12:03:12 UTC (rev 5962) @@ -3,14 +3,17 @@ CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = represent a series of changes in annotate form +DESCRIPTION = Represent a series of changes in annotate form define BLURB Algorithm::Annotate generates a list that is useful for generating output simliar to cvs annotate. endef -DISTFILES = $(call admfiles,CSWpmalgannotate,depend prototype) +REQUIRED_PKGS = CSWpmalgdiff -DEPENDS += cpan/Algorithm-Diff +PACKAGES = CSWpmalgannotate +CATALOGNAME = pm_algorithmannotate +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums 2009-08-10 11:57:04 UTC (rev 5961) +++ csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums 2009-08-10 12:03:12 UTC (rev 5962) @@ -1,4 +1 @@ -b4ba53cfa3106fcfc734624d77853209 download/CSWpmalgannotate.gspec -afb75d0c51760413788a9a9c2bacb889 download/CSWpmalgannotate.depend -26b7a1b4c7aea96dc843b3e3095cd1e6 download/CSWpmalgannotate.prototype 453395489640e28fc772944ef08d396b download/Algorithm-Annotate-0.10.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 Mon Aug 10 14:13:53 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:13:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5963] csw/mgar/pkg/cpan/YAML-Syck/trunk Message-ID: Revision: 5963 http://gar.svn.sourceforge.net/gar/?rev=5963&view=rev Author: dmichelsen Date: 2009-08-10 12:13:52 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/YAML-Syck: Update to 1.07 Modified Paths: -------------- csw/mgar/pkg/cpan/YAML-Syck/trunk/Makefile csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/YAML-Syck/trunk/ Property changes on: csw/mgar/pkg/cpan/YAML-Syck/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/YAML-Syck/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/YAML-Syck/trunk/Makefile 2009-08-10 12:03:12 UTC (rev 5962) +++ csw/mgar/pkg/cpan/YAML-Syck/trunk/Makefile 2009-08-10 12:13:52 UTC (rev 5963) @@ -1,5 +1,5 @@ GARNAME = YAML-Syck -GARVERSION = 0.82 +GARVERSION = 1.07 CATEGORIES = cpan AUTHOR = AUDREYT @@ -10,6 +10,9 @@ structures to YAML strings, and the other way around. endef -DISTFILES = $(call admfiles,CSWpmyamlsyck,prototype) +PACKAGES = CSWpmyamlsyck +CATALOGNAME = pm_yamlsyck +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums 2009-08-10 12:03:12 UTC (rev 5962) +++ csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums 2009-08-10 12:13:52 UTC (rev 5963) @@ -1,3 +1 @@ -7a4a4b8b8d71a78868406b8b670e892c download/CSWpmyamlsyck.gspec -43c90997d6e8d645aea42bedd82dabc2 download/CSWpmyamlsyck.prototype -ebb765d22bc14bddab4f86a5ade249d9 download/YAML-Syck-0.82.tar.gz +410ef7e24185de2a04390e0543876cad download/YAML-Syck-1.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 Mon Aug 10 14:20:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:20:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5964] csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk Message-ID: Revision: 5964 http://gar.svn.sourceforge.net/gar/?rev=5964&view=rev Author: dmichelsen Date: 2009-08-10 12:20:20 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-via-dynamic: Update to 0.13 Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.depend csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/ Property changes on: csw/mgar/pkg/cpan/PerlIO-via-dynamic/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/PerlIO-via-dynamic/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/Makefile 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/Makefile 2009-08-10 12:20:20 UTC (rev 5964) @@ -1,15 +1,18 @@ GARNAME = PerlIO-via-dynamic -GARVERSION = 0.12 +GARVERSION = 0.13 CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = dynamic PerlIO layers +DESCRIPTION = Dynamic PerlIO layers define BLURB PerlIO::via::dynamic is used for creating dynamic PerlIO layers. It is useful when the behavior or the layer depends on variables. You should not use this module as via layer directly (ie :via(dynamic)). endef -DISTFILES = $(call admfiles,CSWpmperlioviadyn,depend prototype) +PACKAGES = CSWpmperlioviadyn +CATALOGNAME = pm_perlioviadyn +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums 2009-08-10 12:20:20 UTC (rev 5964) @@ -1,4 +1 @@ -c9ffa8d9a13350e20c41463a55456dce download/CSWpmperlioviadyn.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmperlioviadyn.depend -f86c73344ee29443ea4e324652979f81 download/CSWpmperlioviadyn.prototype -2bbb9d61c3e8df006e8bede08ed5c9c1 download/PerlIO-via-dynamic-0.12.tar.gz +3715f57c346f0c185e24fbc8f580b33b download/PerlIO-via-dynamic-0.13.tar.gz Deleted: csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec 2009-08-10 12:20:20 UTC (rev 5964) @@ -1,11 +0,0 @@ -%var bitname pm_perlioviadyn -%var pkgname CSWpmperlioviadyn -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2004 by Chia-liang Kao clkao at clkao.org. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype 2009-08-10 12:20:20 UTC (rev 5964) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO/via 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO/via/dynamic 0755 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/via/dynamic/.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/PerlIO::via::dynamic.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/PerlIO 0755 root bin -d none /opt/csw/share/perl/csw/PerlIO/via 0755 root bin -f none /opt/csw/share/perl/csw/PerlIO/via/dynamic.pm 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 Mon Aug 10 14:27:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:27:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5966] csw/mgar/pkg/cpan/IO-Digest/trunk Message-ID: Revision: 5966 http://gar.svn.sourceforge.net/gar/?rev=5966&view=rev Author: dmichelsen Date: 2009-08-10 12:27:36 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/IO-Digest: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Digest/trunk/Makefile csw/mgar/pkg/cpan/IO-Digest/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Digest/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-Digest/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-Digest/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/Makefile 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/Makefile 2009-08-10 12:27:36 UTC (rev 5966) @@ -3,15 +3,18 @@ CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = calculate digests while reading or writing +DESCRIPTION = Calculate digests while reading or writing define BLURB This module allows you to calculate digests while reading or writing file handles. This avoids the case you need to reread the same content to compute the digests after written a file. endef -DISTFILES = $(call admfiles,CSWpmiodigest,depend prototype) +REQUIRED_PKGS = pm_perlioviadyn -DEPENDS += cpan/PerlIO-via-dynamic +PACKAGES = CSWpmiodigest +CATALOGNAME = pm_iodigest +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Digest/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/checksums 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/checksums 2009-08-10 12:27:36 UTC (rev 5966) @@ -1,4 +1 @@ -73bb29de3702e55936ab485a809e7934 download/CSWpmiodigest.gspec -4a1434a9bcd77b2aad4f85fac7324071 download/CSWpmiodigest.depend -4e1baeb4fcddf10dddb0e42e3e392d6a download/CSWpmiodigest.prototype 0448841e0559c2c19c7e8001ef087e26 download/IO-Digest-0.10.tar.gz Deleted: csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend 2009-08-10 12:27:36 UTC (rev 5966) @@ -1 +0,0 @@ -P CSWpmperlioviadyn pm_perlioviadyn - dynamic PerlIO layers Deleted: csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec 2009-08-10 12:27:36 UTC (rev 5966) @@ -1,11 +0,0 @@ -%var bitname pm_iodigest -%var pkgname CSWpmiodigest -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2004 by Chia-liang Kao clkao at clkao.org. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype 2009-08-10 12:27:36 UTC (rev 5966) @@ -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/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/Digest 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IO/Digest/.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::Digest.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 0755 root bin -f none /opt/csw/share/perl/csw/IO/Digest.pm 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 Mon Aug 10 14:22:53 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:22:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5965] csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk Message-ID: Revision: 5965 http://gar.svn.sourceforge.net/gar/?rev=5965&view=rev Author: dmichelsen Date: 2009-08-10 12:22:49 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-via-symlink: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/ Property changes on: csw/mgar/pkg/cpan/PerlIO-via-symlink/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/PerlIO-via-symlink/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/Makefile 2009-08-10 12:20:20 UTC (rev 5964) +++ csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/Makefile 2009-08-10 12:22:49 UTC (rev 5965) @@ -9,6 +9,9 @@ the file handle. endef -DISTFILES = $(call admfiles,CSWpmperlioviasym,depend prototype) +PACKAGES = CSWpmperlioviasym +CATALOGNAME = pm_perlioviasym +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums 2009-08-10 12:20:20 UTC (rev 5964) +++ csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums 2009-08-10 12:22:49 UTC (rev 5965) @@ -1,4 +1 @@ -ebe9480bf7785c75b3d9fee6b72a3461 download/CSWpmperlioviasym.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmperlioviasym.depend -375a501d668be713b141bbaad92a9ab1 download/CSWpmperlioviasym.prototype bf33533dba6a48eb459a15df15c8415f download/PerlIO-via-symlink-0.05.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 Mon Aug 10 14:35:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:35:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5967] csw/mgar/pkg/cpan Message-ID: Revision: 5967 http://gar.svn.sourceforge.net/gar/?rev=5967&view=rev Author: dmichelsen Date: 2009-08-10 12:35:44 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Digest: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Digest/ csw/mgar/pkg/cpan/Digest/branches/ csw/mgar/pkg/cpan/Digest/tags/ csw/mgar/pkg/cpan/Digest/trunk/ csw/mgar/pkg/cpan/Digest/trunk/Makefile csw/mgar/pkg/cpan/Digest/trunk/checksums csw/mgar/pkg/cpan/Digest/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Digest/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/Digest/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Digest/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Digest/trunk/Makefile 2009-08-10 12:35:44 UTC (rev 5967) @@ -0,0 +1,18 @@ +GARNAME = Digest +GARVERSION = 1.16 +CATEGORIES = cpan +AUTHOR = GAAS + +DESCRIPTION = A simple frontend module for autoloading of various Digest:: modules +define BLURB + This is just a simple frontend module for autoloading of various + Digest:: modules. It also provide documentation of the interface that + all Digest:: modules should provide. +endef + +PACKAGES = CSWpmdigest +CATALOGNAME = pm_digest + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Digest/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Digest/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Digest/trunk/checksums 2009-08-10 12:35:44 UTC (rev 5967) @@ -0,0 +1 @@ +df65b3c12785ff9bbf14521551f0268d download/Digest-1.16.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 Mon Aug 10 15:10:01 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:10:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[5968] csw/mgar/pkg/thunderbird/trunk/Makefile Message-ID: Revision: 5968 http://gar.svn.sourceforge.net/gar/?rev=5968&view=rev Author: wbonnet Date: 2009-08-10 13:10:00 +0000 (Mon, 10 Aug 2009) Log Message: ----------- Add dbus to depends Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-10 12:35:44 UTC (rev 5967) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-10 13:10:00 UTC (rev 5968) @@ -55,6 +55,7 @@ REQUIRED_PKGS_CSWthunderbird += CSWorbit2 REQUIRED_PKGS_CSWthunderbird += CSWpango REQUIRED_PKGS_CSWthunderbird += CSWzlib +REQUIRED_PKGS_CSWthunderbird += CSWdbus PATCHFILES = autoconf.mk.in.diff PATCHFILES += lber-int.h.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 Mon Aug 10 15:26:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:26:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5969] csw/mgar/pkg/cpan/PerlIO-eol/trunk Message-ID: Revision: 5969 http://gar.svn.sourceforge.net/gar/?rev=5969&view=rev Author: dmichelsen Date: 2009-08-10 13:26:34 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-eol: Update to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.depend csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/ Property changes on: csw/mgar/pkg/cpan/PerlIO-eol/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/PerlIO-eol/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:26:34 UTC (rev 5969) @@ -9,6 +9,9 @@ line ending. It works for both input and output handles. endef -DISTFILES = $(call admfiles,CSWpmperlioeol,depend prototype) +PACKAGES = CSWpmperlioeol +CATALOGNAME = pm_perlioeol +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums 2009-08-10 13:26:34 UTC (rev 5969) @@ -1,4 +1 @@ -852586bfa8a27e778c3e6e34e203c762 download/CSWpmperlioeol.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmperlioeol.depend -eda9ef48cd4332c98cf01367c161d3df download/CSWpmperlioeol.prototype 7e11fb1cc3b2a65678714877ae361823 download/PerlIO-eol-0.13.tar.gz Copied: csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING (from rev 5839, csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec) =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING 2009-08-10 13:26:34 UTC (rev 5969) @@ -0,0 +1,6 @@ +Copyright 2004 by Autrijus Tang . + +All rights reserved. You can redistribute and/or modify +this bundle under the same terms as Perl itself. + +See . Deleted: csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec 2009-08-10 13:26:34 UTC (rev 5969) @@ -1,10 +0,0 @@ -%var bitname pm_perlioeol -%var pkgname CSWpmperlioeol -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2004 by Autrijus Tang . - -All rights reserved. You can redistribute and/or modify -this bundle under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype 2009-08-10 13:26:34 UTC (rev 5969) @@ -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/PerlIO 0755 root bin -f none /opt/csw/lib/perl/csw/PerlIO/eol.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO/eol 0755 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/eol/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/eol/eol.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/eol/eol.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/PerlIO::eol.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 Mon Aug 10 15:28:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:28:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5970] csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile Message-ID: Revision: 5970 http://gar.svn.sourceforge.net/gar/?rev=5970&view=rev Author: dmichelsen Date: 2009-08-10 13:28:24 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-eol: Remove ARCHALL, as there are binary parts in there Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile Modified: csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:26:34 UTC (rev 5969) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:28:24 UTC (rev 5970) @@ -12,6 +12,4 @@ PACKAGES = CSWpmperlioeol CATALOGNAME = pm_perlioeol -ARCHALL = 1 - 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 Mon Aug 10 15:43:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:43:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5971] csw/mgar/pkg/cpan Message-ID: Revision: 5971 http://gar.svn.sourceforge.net/gar/?rev=5971&view=rev Author: dmichelsen Date: 2009-08-10 13:43:45 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Time-Progress: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Time-Progress/ csw/mgar/pkg/cpan/Time-Progress/branches/ csw/mgar/pkg/cpan/Time-Progress/tags/ csw/mgar/pkg/cpan/Time-Progress/trunk/ csw/mgar/pkg/cpan/Time-Progress/trunk/Makefile csw/mgar/pkg/cpan/Time-Progress/trunk/checksums csw/mgar/pkg/cpan/Time-Progress/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Time-Progress/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-Progress/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-Progress/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Time-Progress/trunk/Makefile 2009-08-10 13:43:45 UTC (rev 5971) @@ -0,0 +1,16 @@ +GARNAME = Time-Progress +GARVERSION = 1.5 +CATEGORIES = cpan +AUTHOR = CADE + +DESCRIPTION = Elapsed and estimated finish time reporting +define BLURB + Elapsed and estimated finish time reporting. +endef + +PACKAGES = CSWpmtimeprogress +CATALOGNAME = pm_timeprogress + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Time-Progress/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Time-Progress/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Time-Progress/trunk/checksums 2009-08-10 13:43:45 UTC (rev 5971) @@ -0,0 +1 @@ +fd355af4abcdf2408a829810c797202e download/Time-Progress-1.5.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 Mon Aug 10 15:51:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:51:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5972] csw/mgar/pkg/cpan/Class-Accessor/trunk Message-ID: Revision: 5972 http://gar.svn.sourceforge.net/gar/?rev=5972&view=rev Author: dmichelsen Date: 2009-08-10 13:51:50 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Class-Accessor: Update to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.depend csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-Accessor/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/Class-Accessor/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,5 +1,5 @@ GARNAME = Class-Accessor -GARVERSION = 0.30 +GARVERSION = 0.33 CATEGORIES = cpan AUTHOR = KASEI @@ -8,6 +8,11 @@ This module automagically generates accessor/mutators for your class. endef -DISTFILES = $(call admfiles,CSWpmclsaccessor,depend prototype) +DISTFILES = COPYING +PACKAGES = CSWpmclsaccessor +CATALOGNAME = pm_clsaccessor + +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,4 +1,2 @@ -a47bb4d0ccb587000449d24310116fe5 download/CSWpmclsaccessor.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmclsaccessor.depend -27f4a60875a401cfefe73c0b29f1a711 download/CSWpmclsaccessor.prototype -7e880c9493e42154d8f636c9e5bc9c0a download/Class-Accessor-0.30.tar.gz +971cfe5fa9ade2b3c9a2adaa9f653888 download/COPYING +574c4b8e42d52f6980b4d2e258746f7b download/Class-Accessor-0.33.tar.gz Copied: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING (from rev 5970, csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec) =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING 2009-08-10 13:51:50 UTC (rev 5972) @@ -0,0 +1,5 @@ +Copyright 2006 Marty Pauley + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. That means either (a) the GNU +General Public License or (b) the Artistic License. Deleted: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,10 +0,0 @@ -%var bitname pm_clsaccessor -%var pkgname CSWpmclsaccessor -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2006 Marty Pauley - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. That means either (a) the GNU -General Public License or (b) the Artistic License. Deleted: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,18 +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/Class 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Class/Accessor 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Class/Accessor/.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/Class::Accessor.3perl 0444 root bin -f none /opt/csw/share/man/man3/Class::Accessor::Fast.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/Class 0755 root bin -d none /opt/csw/share/perl/csw/Class/Accessor 0755 root bin -f none /opt/csw/share/perl/csw/Class/Accessor.pm 0444 root bin -f none /opt/csw/share/perl/csw/Class/Accessor/Fast.pm 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 Mon Aug 10 15:53:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:53:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[5973] csw/mgar/pkg/cpan Message-ID: Revision: 5973 http://gar.svn.sourceforge.net/gar/?rev=5973&view=rev Author: dmichelsen Date: 2009-08-10 13:53:04 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Sub-Name: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Sub-Name/ csw/mgar/pkg/cpan/Sub-Name/branches/ csw/mgar/pkg/cpan/Sub-Name/tags/ csw/mgar/pkg/cpan/Sub-Name/trunk/ csw/mgar/pkg/cpan/Sub-Name/trunk/Makefile csw/mgar/pkg/cpan/Sub-Name/trunk/checksums csw/mgar/pkg/cpan/Sub-Name/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Sub-Name/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/Sub-Name/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Sub-Name/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Sub-Name/trunk/Makefile 2009-08-10 13:53:04 UTC (rev 5973) @@ -0,0 +1,16 @@ +GARNAME = Sub-Name +GARVERSION = 0.04 +CATEGORIES = cpan +AUTHOR = XMATH + +DESCRIPTION = (re)name a sub +define BLURB + Assigns a new name to referenced sub. If package specification is + omitted in the name, then the current package is used. The return value + is the sub. +endef + +PACKAGES = CSWpmsubname +CATALOGNAME = pm_subname + +include gar/category.mk Added: csw/mgar/pkg/cpan/Sub-Name/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Sub-Name/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Sub-Name/trunk/checksums 2009-08-10 13:53:04 UTC (rev 5973) @@ -0,0 +1 @@ +bde2bacba0c701f249135ada3c6cf699 download/Sub-Name-0.04.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 Mon Aug 10 17:10:15 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 10 Aug 2009 15:10:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[5974] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 5974 http://gar.svn.sourceforge.net/gar/?rev=5974&view=rev Author: bonivart Date: 2009-08-10 15:10:14 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cswclassutils: fix bugs 3764 and 3785 Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-08-10 13:53:04 UTC (rev 5973) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-08-10 15:10:14 UTC (rev 5974) @@ -1,5 +1,5 @@ GARNAME = cswclassutils -GARVERSION = 1.17 +GARVERSION = 1.18 CATEGORIES = utils DESCRIPTION = CSW class action utilities Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-08-10 13:53:04 UTC (rev 5973) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-08-10 15:10:14 UTC (rev 5974) @@ -5,19 +5,22 @@ # $Id$ # # Original concept by Philip Brown -# Written by Peter Bonivart +# Written and maintained by Peter Bonivart # # 2008-04-21 First release # 2009-03-28 Added support for refresh # 2009-04-21 Do not create rc links unless enabled (Bug ID 0003633), # Persistent state across upgrades (Bug ID 0003634) # 2009-04-22 Fix bug when starting packages with multiple services (Ihsan Dogan) -# 2009-04-24 Temporarily disabled the "persistent state" code until it can be used -# per service, not just per package -# 2009-05-28 Enabled persistent state code again after receiving patch from Yann. +# 2009-04-24 Temporarily disabled the "persistent state" code until it can be +# used per service, not just per package +# 2009-05-28 Enabled persistent state code again after receiving patch +# from Yann. # Support AUTOENABLE to force no start regardless of # local csw.conf (Bug ID 0003635). # Support custom manifests (Bug ID 0003636) +# 2009-08-05 Set new timeout values for manifest (Bug ID 0003764) +# 2009-08-10 Fix autoenable bug (Bug ID 0003785) DEBUG= # clear to disable debug, set to anything to enable SVCDIR=/var/opt/csw/svc @@ -76,9 +79,10 @@ if [ "$autoenable_daemons" = "no" ]; then daemon=no fi - if [ "$autoenable_$service" = "no" ]; then + eval autoenable_service="\$autoenable_$service" + if [ "$autoenable_service" = "no" ]; then daemon=no - elif [ "$autoenable_$service" = "yes" ]; then + elif [ "$autoenable_service" = "yes" ]; then daemon=yes fi @@ -158,14 +162,14 @@ type='method' name='start' exec='$SVCDIR/method/svc-$service start' - timeout_seconds='-1'> + timeout_seconds='120'> + timeout_seconds='60'> EOF @@ -177,7 +181,7 @@ type='method' name='restart' exec='$SVCDIR/method/svc-$service restart' - timeout_seconds='-1'> + timeout_seconds='180'> EOF @@ -190,7 +194,7 @@ type='method' name='refresh' exec='$SVCDIR/method/svc-$service refresh' - timeout_seconds='-1'> + timeout_seconds='60'> EOF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:06:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:06:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[5975] csw/mgar/pkg/speex/trunk Message-ID: Revision: 5975 http://gar.svn.sourceforge.net/gar/?rev=5975&view=rev Author: dmichelsen Date: 2009-08-10 16:06:40 +0000 (Mon, 10 Aug 2009) Log Message: ----------- speex: Add patch to honour getopt.c Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile csw/mgar/pkg/speex/trunk/checksums Added Paths: ----------- csw/mgar/pkg/speex/trunk/files/speex-getopt.patch.bz2 Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 15:10:14 UTC (rev 5974) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 16:06:40 UTC (rev 5975) @@ -13,6 +13,26 @@ MASTER_SITES = http://downloads.xiph.org/releases/speex/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +# The important lines are these: +# +# diff -Naur speex-1.2rc1.orig/src/Makefile.am speex-1.2rc1.patched/src/Makefile.am +# --- speex-1.2rc1.orig/src/Makefile.am 2008-06-02 10:21:21.000000000 +0200 +# +++ speex-1.2rc1.patched/src/Makefile.am 2009-08-10 16:44:45.255831787 +0200 +# @@ -18,8 +18,8 @@ +# +# speexenc_SOURCES = speexenc.c wav_io.c skeleton.c +# speexenc_LDADD = $(top_builddir)/libspeex/libspeex.la $(top_builddir)/libspeex/libspeexdsp.la \ +# - $(OGG_LIBS) @FFT_LIBS@ +# + $(OGG_LIBS) @FFT_LIBS@ $(LIBOBJS) +# +# speexdec_SOURCES = speexdec.c wav_io.c +# speexdec_LDADD = $(top_builddir)/libspeex/libspeex.la \ +# - $(OGG_LIBS) @FFT_LIBS@ +# + $(OGG_LIBS) @FFT_LIBS@ $(LIBOBJS) +# +# All the other stuff is generated (and the newlines on getopt*.c were stripped of ^M) +PATCHFILES = speex-getopt.patch.bz2 + PACKAGES = CSWspeex CATALOGNAME = libspeex REQUIRED_PKGS = CSWlibogg @@ -24,7 +44,7 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz # 64-bit doesn't build on x86. -# BUILD64 = 1 +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) TEST_SCRIPTS = Modified: csw/mgar/pkg/speex/trunk/checksums =================================================================== --- csw/mgar/pkg/speex/trunk/checksums 2009-08-10 15:10:14 UTC (rev 5974) +++ csw/mgar/pkg/speex/trunk/checksums 2009-08-10 16:06:40 UTC (rev 5975) @@ -1 +1,2 @@ c4438b22c08e5811ff10e2b06ee9b9ae download/speex-1.2rc1.tar.gz +fe24237dc5e9cea5d5896dffa10c6c06 download/speex-getopt.patch.bz2 Added: csw/mgar/pkg/speex/trunk/files/speex-getopt.patch.bz2 =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/speex/trunk/files/speex-getopt.patch.bz2 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:16:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:16:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[5976] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 5976 http://gar.svn.sourceforge.net/gar/?rev=5976&view=rev Author: dmichelsen Date: 2009-08-10 16:16:27 +0000 (Mon, 10 Aug 2009) Log Message: ----------- mGAR v2: Add INSTALL_OVERRIDE_VARS 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-08-10 16:06:40 UTC (rev 5975) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-10 16:16:27 UTC (rev 5976) @@ -581,17 +581,17 @@ # just run make install and hope for the best. install-%/Makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/GNUmakefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) # Ruby makefiles This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:17:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:17:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5977] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 5977 http://gar.svn.sourceforge.net/gar/?rev=5977&view=rev Author: dmichelsen Date: 2009-08-10 16:17:41 +0000 (Mon, 10 Aug 2009) Log Message: ----------- mGAR v2: Add INSTALL_OVERRIDE_VARS_* 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-08-10 16:16:27 UTC (rev 5976) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-10 16:17:41 UTC (rev 5977) @@ -581,17 +581,17 @@ # just run make install and hope for the best. install-%/Makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$(INSTALL_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$(INSTALL_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/GNUmakefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$(INSTALL_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) # Ruby makefiles This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:23:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:23:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5978] csw/mgar/pkg/speex/trunk/Makefile Message-ID: Revision: 5978 http://gar.svn.sourceforge.net/gar/?rev=5978&view=rev Author: dmichelsen Date: 2009-08-10 16:23:07 +0000 (Mon, 10 Aug 2009) Log Message: ----------- speex: Adjust INSTALL_OVERRIDE_VARS_* to latest GAR patch Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 16:17:41 UTC (rev 5977) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 16:23:07 UTC (rev 5978) @@ -48,4 +48,7 @@ CONFIGURE_ARGS = $(DIRPATHS) TEST_SCRIPTS = +INSTALL_OVERRIDE_VARS = PACKAGE +INSTALL_OVERRIDE_VAR_PACKAGE = libspeex + 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 Mon Aug 10 22:52:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 20:52:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5979] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 5979 http://gar.svn.sourceforge.net/gar/?rev=5979&view=rev Author: dmichelsen Date: 2009-08-10 20:52:24 +0000 (Mon, 10 Aug 2009) Log Message: ----------- gtk2: Remove dependency to libgsf and libcroco as it is required for the librsvg loader and not gtk2 itself Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-10 16:23:07 UTC (rev 5978) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-10 20:52:24 UTC (rev 5979) @@ -37,7 +37,6 @@ PREREQUISITE_PKGS = CSWbash REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib -REQUIRED_PKGS_CSWgtk2 += CSWlibgsf CSWlibcroco REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 CSWglib2devel REQUIRED_PKGS_CSWgtk2devel += CSWlibcairodevel CSWlibx11devel CSWlibxrenderdevel CSWpangodevel 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 Aug 11 08:27:57 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 11 Aug 2009 06:27:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5980] csw/mgar/pkg/irssi/trunk Message-ID: Revision: 5980 http://gar.svn.sourceforge.net/gar/?rev=5980&view=rev Author: idogan23 Date: 2009-08-11 06:27:57 +0000 (Tue, 11 Aug 2009) Log Message: ----------- irssi: bump versin to 0.8.14 Modified Paths: -------------- csw/mgar/pkg/irssi/trunk/Makefile csw/mgar/pkg/irssi/trunk/checksums Modified: csw/mgar/pkg/irssi/trunk/Makefile =================================================================== --- csw/mgar/pkg/irssi/trunk/Makefile 2009-08-10 20:52:24 UTC (rev 5979) +++ csw/mgar/pkg/irssi/trunk/Makefile 2009-08-11 06:27:57 UTC (rev 5980) @@ -1,5 +1,5 @@ GARNAME = irssi -GARVERSION = 0.8.13 +GARVERSION = 0.8.14 CATEGORIES = apps DESCRIPTION = IRC client with IPv6, proxy, bot, socks and Perl support @@ -13,7 +13,6 @@ MASTER_SITES = http://www.irssi.org/files/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -#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 Modified: csw/mgar/pkg/irssi/trunk/checksums =================================================================== --- csw/mgar/pkg/irssi/trunk/checksums 2009-08-10 20:52:24 UTC (rev 5979) +++ csw/mgar/pkg/irssi/trunk/checksums 2009-08-11 06:27:57 UTC (rev 5980) @@ -1,2 +1 @@ -226f194576895ff3075c164523806d06 download/irssi-0.8.13.tar.gz -981f1b2ee1c132d0f0330724bfe601c3 download/CSWirssi.gspec +7d9437f53209a61af4fe4c9c5528ffa7 download/irssi-0.8.14.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 Aug 11 08:29:03 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 11 Aug 2009 06:29:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5981] csw/mgar/pkg/irssi/trunk/Makefile Message-ID: Revision: 5981 http://gar.svn.sourceforge.net/gar/?rev=5981&view=rev Author: idogan23 Date: 2009-08-11 06:29:02 +0000 (Tue, 11 Aug 2009) Log Message: ----------- irssi: small typo fix Modified Paths: -------------- csw/mgar/pkg/irssi/trunk/Makefile Modified: csw/mgar/pkg/irssi/trunk/Makefile =================================================================== --- csw/mgar/pkg/irssi/trunk/Makefile 2009-08-11 06:27:57 UTC (rev 5980) +++ csw/mgar/pkg/irssi/trunk/Makefile 2009-08-11 06:29:02 UTC (rev 5981) @@ -30,7 +30,7 @@ EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod -REQUIRED_PKGS = CSWglib2 +REQUIRED_PKGS += CSWglib2 REQUIRED_PKGS += CSWiconv REQUIRED_PKGS += CSWosslrt REQUIRED_PKGS += CSWperl 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 Aug 11 11:35:49 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 09:35:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5982] csw/mgar/pkg/cpan/Pod-Coverage/trunk Message-ID: Revision: 5982 http://gar.svn.sourceforge.net/gar/?rev=5982&view=rev Author: dmichelsen Date: 2009-08-11 09:35:49 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Pod-Coverage: Update to 0.20 Modified Paths: -------------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/Makefile csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/ Property changes on: csw/mgar/pkg/cpan/Pod-Coverage/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/Pod-Coverage/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/Makefile 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/Makefile 2009-08-11 09:35:49 UTC (rev 5982) @@ -1,9 +1,9 @@ GARNAME = Pod-Coverage -GARVERSION = 0.19 +GARVERSION = 0.20 CATEGORIES = cpan AUTHOR = RCLAMP -DESCRIPTION = checks if the documentation of a module is comprehensive +DESCRIPTION = Checks if the documentation of a module is comprehensive define BLURB Developers hate writing documentation. They'd hate it even more if their computer tattled on them, but maybe they'll be even more thankful in the @@ -12,9 +12,14 @@ comprehensive. endef -DISTFILES += $(call admfiles,CSWpmpodcoverage,depend) +PREREQUISITE_PKS = CSWpmmodulebuild CSWpmtestpod +REQUIRED_PKGS = CSWpmdevelsymdump -DEPENDS += cpan/Devel-Symdump -BUILDDEPS += cpan/Module-Build +DISTFILES = COPYING +PACKAGES = CSWpmpodcoverage +CATALOGNAME = pm_podcoverage + +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums 2009-08-11 09:35:49 UTC (rev 5982) @@ -1,3 +1,2 @@ -f7117ed88530573051732083dcc8d80f download/CSWpmpodcoverage.gspec -390e452748350e68e6e2898819e7e9af download/CSWpmpodcoverage.depend -93af52dac8bafed7702ed290d988ffa4 download/Pod-Coverage-0.19.tar.gz +da39a7d3f29739d1c018d0f1dc6ff5e2 download/COPYING +292a5b8d3a93597af441d3e6467b8ad6 download/Pod-Coverage-0.20.tar.gz Copied: csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING (from rev 5970, csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec) =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING 2009-08-11 09:35:49 UTC (rev 5982) @@ -0,0 +1,3 @@ +Copyright (c) 2001, 2003, 2004, 2006 Richard Clamp, Michael +Stevens. 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/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend 2009-08-11 09:35:49 UTC (rev 5982) @@ -1 +0,0 @@ -P CSWpmdevelsymdump pm_develsymdump - dump symbol names or the symbol table Deleted: csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec 2009-08-11 09:35:49 UTC (rev 5982) @@ -1,8 +0,0 @@ -%var bitname pm_podcoverage -%var pkgname CSWpmpodcoverage -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2001, 2003, 2004, 2006 Richard Clamp, Michael -Stevens. 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 dmichelsen at users.sourceforge.net Tue Aug 11 11:50:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 09:50:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5983] csw/mgar/pkg/libfaac/trunk/Makefile Message-ID: Revision: 5983 http://gar.svn.sourceforge.net/gar/?rev=5983&view=rev Author: dmichelsen Date: 2009-08-11 09:50:47 +0000 (Tue, 11 Aug 2009) Log Message: ----------- libfaac: Fix SOURCEURL and simplify defines Modified Paths: -------------- csw/mgar/pkg/libfaac/trunk/Makefile Modified: csw/mgar/pkg/libfaac/trunk/Makefile =================================================================== --- csw/mgar/pkg/libfaac/trunk/Makefile 2009-08-11 09:35:49 UTC (rev 5982) +++ csw/mgar/pkg/libfaac/trunk/Makefile 2009-08-11 09:50:47 UTC (rev 5983) @@ -13,9 +13,10 @@ DISTNAME = $(SF_PROJ)-$(GARVERSION) PACKAGES = CSWfaac -CATALOGNAME_CSWfaac = $(GARNAME) -SPKG_DESC_CSWfaac = $(DESCRIPTION) +CATALOGNAME = $(GARNAME) +SPKG_SOURCEURL = http://www.audiocoding.com/ + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(SF_PROJ)-(\d+(?:\.\d+)*).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 Tue Aug 11 14:19:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 12:19:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5984] csw/mgar/pkg/cpan Message-ID: Revision: 5984 http://gar.svn.sourceforge.net/gar/?rev=5984&view=rev Author: dmichelsen Date: 2009-08-11 12:19:35 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/SVN-Dump: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/SVN-Dump/ csw/mgar/pkg/cpan/SVN-Dump/branches/ csw/mgar/pkg/cpan/SVN-Dump/tags/ csw/mgar/pkg/cpan/SVN-Dump/trunk/ csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums csw/mgar/pkg/cpan/SVN-Dump/trunk/files/ Property changes on: csw/mgar/pkg/cpan/SVN-Dump/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/SVN-Dump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile 2009-08-11 12:19:35 UTC (rev 5984) @@ -0,0 +1,15 @@ +GARNAME = SVN-Dump +GARVERSION = 0.04 +CATEGORIES = cpan +AUTHOR = BOOK + +DESCRIPTION = A Perl interface to Subversion dumps +define BLURB +endef + +PACKAGES = CSWpmsvndump +CATALOGNAME = pmsvndump + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums 2009-08-11 12:19:35 UTC (rev 5984) @@ -0,0 +1 @@ +ecef25f8facce359fcec9ab1f341da36 download/SVN-Dump-0.04.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 Aug 11 14:31:17 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 12:31:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5985] csw/mgar/pkg/cpan Message-ID: Revision: 5985 http://gar.svn.sourceforge.net/gar/?rev=5985&view=rev Author: dmichelsen Date: 2009-08-11 12:31:17 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Compress-Bzip2: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Compress-Bzip2/ csw/mgar/pkg/cpan/Compress-Bzip2/branches/ csw/mgar/pkg/cpan/Compress-Bzip2/tags/ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/Makefile csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums csw/mgar/pkg/cpan/Compress-Bzip2/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Compress-Bzip2/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/Compress-Bzip2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Bzip2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/Makefile 2009-08-11 12:31:17 UTC (rev 5985) @@ -0,0 +1,15 @@ +GARNAME = Compress-Bzip2 +GARVERSION = 2.09 +CATEGORIES = cpan +AUTHOR = ARJAY + +DESCRIPTION = Interface to Bzip2 compression library +define BLURB +endef + +REQUIRED_PKGS = CSWbzip2 + +PACKAGES = CSWpmcompressbzip2 +CATALOGNAME = pm_compressbzip2 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums 2009-08-11 12:31:17 UTC (rev 5985) @@ -0,0 +1 @@ +1699fde3e86f2a036f135ae606d456bf download/Compress-Bzip2-2.09.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 Aug 11 14:42:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 12:42:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5986] csw/mgar/pkg/cpan Message-ID: Revision: 5986 http://gar.svn.sourceforge.net/gar/?rev=5986&view=rev Author: dmichelsen Date: 2009-08-11 12:42:55 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/PerlIO-gzip: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/PerlIO-gzip/ csw/mgar/pkg/cpan/PerlIO-gzip/branches/ csw/mgar/pkg/cpan/PerlIO-gzip/tags/ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums csw/mgar/pkg/cpan/PerlIO-gzip/trunk/files/ Property changes on: csw/mgar/pkg/cpan/PerlIO-gzip/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/PerlIO-gzip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-gzip/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/Makefile 2009-08-11 12:42:55 UTC (rev 5986) @@ -0,0 +1,15 @@ +GARNAME = PerlIO-gzip +GARVERSION = 0.18 +CATEGORIES = cpan +AUTHOR = NWCLARK + +DESCRIPTION = Perl extension to provide a PerlIO layer to gzip/gunzip +define BLURB +endef + +REQUIRED_PKGS = CSWzlib + +PACKAGES = CSWpmperliogzip +CATALOGNAME = pm_perliogzip + +include gar/category.mk Added: csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums 2009-08-11 12:42:55 UTC (rev 5986) @@ -0,0 +1 @@ +933fdf283a0d2739f7630420569e3b24 download/PerlIO-gzip-0.18.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 Aug 11 19:32:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:32:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5987] csw/mgar/pkg/cpan Message-ID: Revision: 5987 http://gar.svn.sourceforge.net/gar/?rev=5987&view=rev Author: dmichelsen Date: 2009-08-11 17:32:38 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Cairo: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Cairo/ csw/mgar/pkg/cpan/Cairo/branches/ csw/mgar/pkg/cpan/Cairo/tags/ csw/mgar/pkg/cpan/Cairo/trunk/ csw/mgar/pkg/cpan/Cairo/trunk/Makefile csw/mgar/pkg/cpan/Cairo/trunk/checksums csw/mgar/pkg/cpan/Cairo/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Cairo/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/Cairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Cairo/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Cairo/trunk/Makefile 2009-08-11 17:32:38 UTC (rev 5987) @@ -0,0 +1,27 @@ +GARNAME = Cairo +GARVERSION = 1.061 +CATEGORIES = cpan +AUTHOR = TSCH + +DESCRIPTION = Perl interface to the cairo library +define BLURB +endef + +# 3/73 skipped: Test::Number::Delta not available +# all skipped: need Cairo with FreeType support and Font::FreeType +PREREQUISITE_PKGS = CSWlibcairodevel +REQUIRED_PKGS = CSWfconfig CSWftype2 CSWlibcairo CSWzlib + +PACKAGES = CSWpmcairo +CATALOGNAME = pm_cairo + +EXTRA_INC = $(prefix)/X11/include +EXTRA_LIB = $(prefix)/X11/lib +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib + +include gar/category.mk + + + + + Added: csw/mgar/pkg/cpan/Cairo/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Cairo/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Cairo/trunk/checksums 2009-08-11 17:32:38 UTC (rev 5987) @@ -0,0 +1 @@ +08cd5e847f61858651fc4de769066e88 download/Cairo-1.061.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 Aug 11 19:45:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:45:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5988] csw/mgar/gar/v2/categories/cpan/category.mk Message-ID: Revision: 5988 http://gar.svn.sourceforge.net/gar/?rev=5988&view=rev Author: dmichelsen Date: 2009-08-11 17:45:12 +0000 (Tue, 11 Aug 2009) Log Message: ----------- mGAR v2: Add special args to cpan-category Modified Paths: -------------- csw/mgar/gar/v2/categories/cpan/category.mk Modified: csw/mgar/gar/v2/categories/cpan/category.mk =================================================================== --- csw/mgar/gar/v2/categories/cpan/category.mk 2009-08-11 17:32:38 UTC (rev 5987) +++ csw/mgar/gar/v2/categories/cpan/category.mk 2009-08-11 17:45:12 UTC (rev 5988) @@ -62,7 +62,7 @@ INSTALL_ENV += PERL5LIB=$(PERL5LIB) # Configure a target using Makefile.PL -PERL_CONFIGURE_ARGS ?= INSTALLDIRS=vendor +PERL_CONFIGURE_ARGS ?= INSTALLDIRS=vendor $(EXTRA_PERL_CONFIGURE_ARGS) configure-%/Makefile.PL: @echo " ==> Running Makefile.PL in $*" @( cd $* ; \ @@ -70,7 +70,7 @@ $(CONFIGURE_ARGS) $(PERL_CONFIGURE_ARGS) ) @$(MAKECOOKIE) -PERLBUILD_CONFIGURE_ARGS ?= installdirs=vendor +PERLBUILD_CONFIGURE_ARGS ?= installdirs=vendor $(EXTRA_PERLBUILD_CONFIGURE_ARGS) configure-%/Build.PL: @echo " ==> Running Build.PL in $*" @( cd $* ; \ 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 Aug 11 19:48:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:48:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5989] csw/mgar/pkg/cpan Message-ID: Revision: 5989 http://gar.svn.sourceforge.net/gar/?rev=5989&view=rev Author: dmichelsen Date: 2009-08-11 17:48:34 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Font-Freetype: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Font-Freetype/ csw/mgar/pkg/cpan/Font-Freetype/branches/ csw/mgar/pkg/cpan/Font-Freetype/tags/ csw/mgar/pkg/cpan/Font-Freetype/trunk/ csw/mgar/pkg/cpan/Font-Freetype/trunk/Makefile csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums csw/mgar/pkg/cpan/Font-Freetype/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Font-Freetype/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/Font-Freetype/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Font-Freetype/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Font-Freetype/trunk/Makefile 2009-08-11 17:48:34 UTC (rev 5989) @@ -0,0 +1,21 @@ +GARNAME = Font-FreeType +GARVERSION = 0.03 +CATEGORIES = cpan +AUTHOR = GEOFFR + +DESCRIPTION = Read font files and render glyphs from Perl using FreeType2 +define BLURB +endef + +REQUIRED_PKGS = CSWftype2 + +PACKAGES = CSWpmfontfreetype +CATALOGNAME = pm_fontfreetype + +EXTRA_PERL_CONFIGURE_ARGS = INC=-I$(includedir)/freetype2 + +# There are a lot of failed tests, however, it looks like the tests +# are somewhat broken, so skip for now. +SKIPTEST ?= 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums 2009-08-11 17:48:34 UTC (rev 5989) @@ -0,0 +1 @@ +47b9483c92f1b2df0bbb5258a6a596b2 download/Font-FreeType-0.03.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 Aug 11 19:57:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:57:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5990] csw/mgar/pkg/cpan Message-ID: Revision: 5990 http://gar.svn.sourceforge.net/gar/?rev=5990&view=rev Author: dmichelsen Date: 2009-08-11 17:57:07 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Config-Tiny: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Config-Tiny/ csw/mgar/pkg/cpan/Config-Tiny/branches/ csw/mgar/pkg/cpan/Config-Tiny/tags/ csw/mgar/pkg/cpan/Config-Tiny/trunk/ csw/mgar/pkg/cpan/Config-Tiny/trunk/Makefile csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums csw/mgar/pkg/cpan/Config-Tiny/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Config-Tiny/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/Config-Tiny/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Config-Tiny/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Config-Tiny/trunk/Makefile 2009-08-11 17:57:07 UTC (rev 5990) @@ -0,0 +1,15 @@ +GARNAME = Config-Tiny +GARVERSION = 2.12 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Read/Write .ini style files with as little code as possible +define BLURB +endef + +PACKAGES = CSWpmconfigtiny +CATALOGNAME = pm_configtiny + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums 2009-08-11 17:57:07 UTC (rev 5990) @@ -0,0 +1 @@ +1df5a4ff37cd1d80532ddbe28015d1f0 download/Config-Tiny-2.12.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 Aug 11 20:02:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:02:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5991] csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile Message-ID: Revision: 5991 http://gar.svn.sourceforge.net/gar/?rev=5991&view=rev Author: dmichelsen Date: 2009-08-11 18:02:47 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Test-ClassAPI: Added prerequisuites Modified Paths: -------------- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile Modified: csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile 2009-08-11 17:57:07 UTC (rev 5990) +++ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile 2009-08-11 18:02:47 UTC (rev 5991) @@ -11,15 +11,11 @@ module aims to provide such a capability. endef +REQUIRED_PKGS = CSWpmclassinspector CSWpmconfigtiny CSWpmparamsutil + PACKAGES = CSWpmtestclassapi CATALOGNAME = pm_testclassapi -#Warning: prerequisite Class::Inspector 1.12 not found. -#Warning: prerequisite Config::Tiny 2.00 not found. -#Warning: prerequisite ExtUtils::MakeMaker 6.42 not found. We have 6.30. -#Warning: prerequisite Params::Util 1.00 not found. - - ARCHALL = 1 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 Tue Aug 11 20:13:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:13:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5992] csw/mgar/pkg/cpan Message-ID: Revision: 5992 http://gar.svn.sourceforge.net/gar/?rev=5992&view=rev Author: dmichelsen Date: 2009-08-11 18:13:18 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Test-Script: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-Script/ csw/mgar/pkg/cpan/Test-Script/branches/ csw/mgar/pkg/cpan/Test-Script/tags/ csw/mgar/pkg/cpan/Test-Script/trunk/ csw/mgar/pkg/cpan/Test-Script/trunk/Makefile csw/mgar/pkg/cpan/Test-Script/trunk/checksums csw/mgar/pkg/cpan/Test-Script/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-Script/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/Test-Script/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Script/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-Script/trunk/Makefile 2009-08-11 18:13:18 UTC (rev 5992) @@ -0,0 +1,17 @@ +GARNAME = Test-Script +GARVERSION = 1.03 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Cross-platform basic tests for scripts +define BLURB +endef + +REQUIRED_PKGS = CSWpmipcrun3 + +PACKAGES = CSWpmtestscript +CATALOGNAME = pm_testscript + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-Script/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Script/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-Script/trunk/checksums 2009-08-11 18:13:18 UTC (rev 5992) @@ -0,0 +1 @@ +fa3018d63bc54ebb8d4d244fb1dc4c35 download/Test-Script-1.03.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 Aug 11 20:14:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:14:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5993] csw/mgar/pkg/cpan/IPC-Run3/trunk Message-ID: Revision: 5993 http://gar.svn.sourceforge.net/gar/?rev=5993&view=rev Author: dmichelsen Date: 2009-08-11 18:14:37 +0000 (Tue, 11 Aug 2009) Log Message: ----------- IPC-Run3: Update to 0.043 Modified Paths: -------------- csw/mgar/pkg/cpan/IPC-Run3/trunk/Makefile csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.depend csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IPC-Run3/trunk/ Property changes on: csw/mgar/pkg/cpan/IPC-Run3/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/IPC-Run3/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/Makefile 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/Makefile 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,9 +1,9 @@ GARNAME = IPC-Run3 -GARVERSION = 0.01 +GARVERSION = 0.043 CATEGORIES = cpan -AUTHOR = RBS +AUTHOR = RJBS -DESCRIPTION = run a subprocess in batch mode +DESCRIPTION = Run a subprocess with input/ouput redirection define BLURB This module allows you to run a subprocess and redirect stdin, stdout, and/or stderr to files and perl data structures. It aims to satisfy 99% of @@ -11,6 +11,9 @@ API and none of the bloat and rarely used features of IPC::Run. endef -DISTFILES = $(call admfiles,CSWpmipcrun3,depend prototype) +PACKAGES = CSWpmipcrun3 +CATALOGNAME = pm_ipcrun3 +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,4 +1 @@ -d8da64e635f79c8b8791334522f01fc7 download/CSWpmipcrun3.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmipcrun3.depend -d8e117484649231e470268725188cc00 download/CSWpmipcrun3.prototype -d518846b8fdd1ec7188f384e9bb900e3 download/IPC-Run3-0.01.tar.gz +ef3c073f900bcc9c3e30e91f1fc00fda download/IPC-Run3-0.043.tar.gz Deleted: csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,6 +0,0 @@ -%var bitname pm_ipcrun3 -%var pkgname CSWpmipcrun3 -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003, R. Barrie Slaymaker, Jr., All Rights Reserved Deleted: csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,26 +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/IPC 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IPC/Run3 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IPC/Run3/.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/IPC::Run3.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfArrayBuffer.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfLogReader.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfLogger.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfPP.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfReporter.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/IPC 0755 root bin -d none /opt/csw/share/perl/csw/IPC/Run3 0755 root bin -f none /opt/csw/share/perl/csw/IPC/Run3.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfArrayBuffer.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfLogReader.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfLogger.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfPP.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfReporter.pm 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 Tue Aug 11 20:16:42 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:16:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5994] csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile Message-ID: Revision: 5994 http://gar.svn.sourceforge.net/gar/?rev=5994&view=rev Author: dmichelsen Date: 2009-08-11 18:16:42 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/SVN-Dump: Fix catalog name Modified Paths: -------------- csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile Modified: csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile 2009-08-11 18:14:37 UTC (rev 5993) +++ csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile 2009-08-11 18:16:42 UTC (rev 5994) @@ -8,7 +8,7 @@ endef PACKAGES = CSWpmsvndump -CATALOGNAME = pmsvndump +CATALOGNAME = pm_svndump ARCHALL = 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 Wed Aug 12 14:11:31 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 12 Aug 2009 12:11:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5995] csw/mgar/pkg/spamassassin/trunk/Makefile Message-ID: Revision: 5995 http://gar.svn.sourceforge.net/gar/?rev=5995&view=rev Author: bonivart Date: 2009-08-12 12:11:31 +0000 (Wed, 12 Aug 2009) Log Message: ----------- spamassassin: move to mGAR v2 and cswclassutils Modified Paths: -------------- csw/mgar/pkg/spamassassin/trunk/Makefile Modified: csw/mgar/pkg/spamassassin/trunk/Makefile =================================================================== --- csw/mgar/pkg/spamassassin/trunk/Makefile 2009-08-11 18:16:42 UTC (rev 5994) +++ csw/mgar/pkg/spamassassin/trunk/Makefile 2009-08-12 12:11:31 UTC (rev 5995) @@ -12,7 +12,6 @@ MASTER_SITES = http://apache.jumper.nu/spamassassin/source/ DISTFILES = $(SPKG_NAME)-$(GARVERSION).tar.gz -#DISTFILES += $(call admfiles,CSWspamassassin,checkinstall depend postinstall) LICENSE = $(WORKDIR)/$(SPKG_NAME)-$(GARVERSION)/LICENSE @@ -61,8 +60,8 @@ test-custom: @echo " ==> Testing $(GARNAME) (custom)" -# @( cd $(WORKSRC) ; \ -# gmake test ) + @( cd $(WORKSRC) ; \ + gmake test ) @$(MAKECOOKIE) install-custom: @@ -76,9 +75,6 @@ @ginstall -m 644 $(FILEDIR)/CSWspamassassin.cswusergroup $(DESTDIR)$(sysconfdir)/CSWspamassassin/cswusergroup @cp $(FILEDIR)/CSWspamassassin.README.CSW $(DESTDIR)$(docdir)/$(GARNAME)/README.CSW @cp $(FILEDIR)/CSWspamassassin.README.spamd $(DESTDIR)$(docdir)/$(GARNAME)/README.spamd -# @cp $(FILEDIR)/CSWspamassassin.cswspamd $(DESTDIR)$(docdir)/$(GARNAME)/cswspamd -# @cp $(FILEDIR)/CSWspamassassin.spamd.xml.CSW $(DESTDIR)$(docdir)/$(GARNAME)/spamd.xml.CSW -# @cp $(FILEDIR)/CSWspamassassin.svc-spamd.CSW $(DESTDIR)$(docdir)/$(GARNAME)/svc-spamd.CSW @( cd $(WORKSRC) ; \ gmake install ) @( cd $(WORKSRC) ; \ 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 Aug 12 15:02:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 12 Aug 2009 13:02:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5996] csw/mgar/pkg/diffstat/trunk Message-ID: Revision: 5996 http://gar.svn.sourceforge.net/gar/?rev=5996&view=rev Author: dmichelsen Date: 2009-08-12 13:02:45 +0000 (Wed, 12 Aug 2009) Log Message: ----------- diffstat: Update to 1.48 Modified Paths: -------------- csw/mgar/pkg/diffstat/trunk/Makefile csw/mgar/pkg/diffstat/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch Modified: csw/mgar/pkg/diffstat/trunk/Makefile =================================================================== --- csw/mgar/pkg/diffstat/trunk/Makefile 2009-08-12 12:11:31 UTC (rev 5995) +++ csw/mgar/pkg/diffstat/trunk/Makefile 2009-08-12 13:02:45 UTC (rev 5996) @@ -1,15 +1,13 @@ GARNAME = diffstat -GARVERSION = 1.47 +GARVERSION = 1.48 CATEGORIES = utils DESCRIPTION = A utility which provides statistics based on the output of diff define BLURB - Long description endef MASTER_SITES = ftp://invisible-island.net/diffstat/ DISTFILES = $(GARNAME).tar.gz -PATCHFILES = diffstat-47a.patch # We define upstream file regex so we can be notifed of new upstream software release #UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz Modified: csw/mgar/pkg/diffstat/trunk/checksums =================================================================== --- csw/mgar/pkg/diffstat/trunk/checksums 2009-08-12 12:11:31 UTC (rev 5995) +++ csw/mgar/pkg/diffstat/trunk/checksums 2009-08-12 13:02:45 UTC (rev 5996) @@ -1,2 +1 @@ -c6d221ff4a032e1bbf227f5936a7841a download/diffstat.tar.gz -bf7a4c239bcda213108b1de32ba8191d download/diffstat-47a.patch +8593e79189dd4b9c4ec32862e19d716c download/diffstat.tar.gz Deleted: csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch =================================================================== --- csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch 2009-08-12 12:11:31 UTC (rev 5995) +++ csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch 2009-08-12 13:02:45 UTC (rev 5996) @@ -1,141 +0,0 @@ -# patch by Thomas E. Dickey -# created Mon Mar 30 19:22:01 UTC 2009 -# ------------------------------------------------------------------------------ -# CHANGES | 6 ++++++ -# aclocal.m4 | 4 ++-- -# configure | 28 ++++++++++++++-------------- -# 3 files changed, 22 insertions(+), 16 deletions(-) -# ------------------------------------------------------------------------------ -Index: CHANGES ---- diffstat-47+/CHANGES 2009-03-29 17:53:16.000000000 +0000 -+++ diffstat-47a/CHANGES 2009-03-30 19:21:17.000000000 +0000 -@@ -1,3 +1,9 @@ -+??-???-???? -+ diffstat 1.48 -+ -+ fix typo in configure --with-install-prefix option (report by -+ Dagobert Michelsen). -+ - 29-Mar-2009 - diffstat 1.47 - -Index: aclocal.m4 -Prereq: 1.11 ---- diffstat-47+/aclocal.m4 2007-08-26 14:15:33.000000000 +0000 -+++ diffstat-47a/aclocal.m4 2009-03-30 19:13:25.000000000 +0000 -@@ -1,4 +1,4 @@ --dnl $Id: aclocal.m4,v 1.11 2007/08/26 14:15:33 tom Exp $ -+dnl $Id: aclocal.m4,v 1.12 2009/03/30 19:13:25 tom Exp $ - dnl autoconf macros for 'diffstat' - dnl - dnl Copyright 2003-2006,2007 Thomas E. Dickey -@@ -882,7 +882,7 @@ - [cf_opt_with_install_prefix=${DESTDIR-no}]) - AC_MSG_RESULT($cf_opt_with_install_prefix) - if test "$cf_opt_with_install_prefix" != no ; then -- CF_PATH_SYNTAX($cf_opt_with_install_prefix) -+ CF_PATH_SYNTAX(cf_opt_with_install_prefix) - DESTDIR=$cf_opt_with_install_prefix - fi - AC_SUBST(DESTDIR) -Index: configure ---- diffstat-47+/configure 2007-08-26 18:36:32.000000000 +0000 -+++ diffstat-47a/configure 2009-03-30 19:13:41.000000000 +0000 -@@ -1,7 +1,7 @@ - #! /bin/sh - # From configure.in Revision: 1.12 . - # Guess values for system-dependent variables and create Makefiles. --# Generated by Autoconf 2.52.20061216. -+# Generated by Autoconf 2.52.20081225. - # - # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 - # Free Software Foundation, Inc. -@@ -749,7 +749,7 @@ - running configure, to aid debugging if configure makes a mistake. - - It was created by $as_me, which was --generated by GNU Autoconf 2.52.20061216. Invocation command line was -+generated by GNU Autoconf 2.52.20081225. Invocation command line was - - $ $0 $@ - -@@ -1324,7 +1324,7 @@ - ls a.out conftest 2>/dev/null; - ls a.* conftest.* 2>/dev/null`; do - case $ac_file in -- *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;; -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.dbg | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - a.out ) # We found the default executable, but exeext='' is most - # certainly right. - break;; -@@ -1398,7 +1398,7 @@ - # `rm'. - for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do - case $ac_file in -- *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;; -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.dbg | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext - break;; -@@ -1443,7 +1443,7 @@ - (exit $ac_status); }; then - for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do - case $ac_file in -- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;; -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.dbg | *.pdb | *.xSYM | *.map | *.inf ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -@@ -2162,7 +2162,7 @@ - cf_path_syntax="$ac_default_prefix" - fi - --case ".$$cf_opt_with_install_prefix" in #(vi -+case ".$cf_opt_with_install_prefix" in #(vi - .\$\(*\)*|.\'*\'*) #(vi - ;; - ..|./*|.\\*) #(vi -@@ -2170,19 +2170,19 @@ - .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX - ;; - .\${*prefix}*) #(vi -- eval $cf_opt_with_install_prefix="$$cf_opt_with_install_prefix" -- case ".$$cf_opt_with_install_prefix" in #(vi -+ eval cf_opt_with_install_prefix="$cf_opt_with_install_prefix" -+ case ".$cf_opt_with_install_prefix" in #(vi - .NONE/*) -- $cf_opt_with_install_prefix=`echo $$cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` -+ cf_opt_with_install_prefix=`echo $cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` - ;; - esac - ;; #(vi - .no|.NONE/*) -- $cf_opt_with_install_prefix=`echo $$cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` -+ cf_opt_with_install_prefix=`echo $cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` - ;; - *) -- { { echo "$as_me:2184: error: expected a pathname, not \"$$cf_opt_with_install_prefix\"" >&5 --echo "$as_me: error: expected a pathname, not \"$$cf_opt_with_install_prefix\"" >&2;} -+ { { echo "$as_me:2184: error: expected a pathname, not \"$cf_opt_with_install_prefix\"" >&5 -+echo "$as_me: error: expected a pathname, not \"$cf_opt_with_install_prefix\"" >&2;} - { (exit 1); exit 1; }; } - ;; - esac -@@ -4778,7 +4778,7 @@ - cat >>$CONFIG_STATUS < Revision: 5997 http://gar.svn.sourceforge.net/gar/?rev=5997&view=rev Author: bdwalton Date: 2009-08-12 14:46:26 +0000 (Wed, 12 Aug 2009) Log Message: ----------- initial commit; seemingly working package already Added Paths: ----------- csw/mgar/pkg/yaml-mode/ csw/mgar/pkg/yaml-mode/branches/ csw/mgar/pkg/yaml-mode/tags/ csw/mgar/pkg/yaml-mode/trunk/ csw/mgar/pkg/yaml-mode/trunk/Makefile csw/mgar/pkg/yaml-mode/trunk/checksums csw/mgar/pkg/yaml-mode/trunk/files/ Property changes on: csw/mgar/pkg/yaml-mode/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/yaml-mode/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/Makefile (rev 0) +++ csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 14:46:26 UTC (rev 5997) @@ -0,0 +1,54 @@ +GARNAME = yaml-mode +GARVERSION = 0.0.3 +CATEGORIES = xtra + +PACKAGES = CSWyamlmode + +CATALOGNAME_CSWyamlmode = yaml_mode + +REQUIRED_PKGS_CSWphpmode = CSWemacscommon + +ARCHALL_CSWyamlmode = 1 + +DESCRIPTION = A YAML mode for Emacs +define BLURB +This is a major mode for editing files in the YAML data +serialization format. It was initially developed by Yoshiki +Kurihara and many features were added by Marshall Vandegrift. As +YAML and Python share the fact that indentation determines +structure, this mode provides indentation and indentation command +behavior very similar to that of python-mode. +endef + +MASTER_SITES = http://tweedle-dee.org/svn/emacs.d/site-lisp/ +DISTFILES = $(GARNAME).el + +# 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 = + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +COMPILE_ELISP = 1 +ELISP_DIR = /opt/csw/share/emacs/site-lisp + +include gar/category.mk + +cp-extract-yaml-mode.el: $(WORKSRC) + @echo " ===> Copying yaml-mode.el into work source directory." + @cp $(DOWNLOADDIR)/yaml-mode.el $(WORKSRC) + @$(MAKECOOKIE) + +install-custom: + @( cd $(WORKSRC); \ + gmkdir -p $(DESTDIR)$(ELISP_DIR); \ + cp yaml-mode.el $(DESTDIR)$(ELISP_DIR) ) + @$(MAKECOOKIE) \ No newline at end of file Added: csw/mgar/pkg/yaml-mode/trunk/checksums =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/checksums (rev 0) +++ csw/mgar/pkg/yaml-mode/trunk/checksums 2009-08-12 14:46:26 UTC (rev 5997) @@ -0,0 +1 @@ +e7440fc74ef71a98429fe8bc0e3f6244 download/yaml-mode.el 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 Aug 12 17:11:40 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 15:11:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[5998] csw/mgar/pkg/python/trunk/Makefile Message-ID: Revision: 5998 http://gar.svn.sourceforge.net/gar/?rev=5998&view=rev Author: valholla Date: 2009-08-12 15:11:39 +0000 (Wed, 12 Aug 2009) Log Message: ----------- force to Studio 12 for non solaris 8 builds Modified Paths: -------------- csw/mgar/pkg/python/trunk/Makefile Modified: csw/mgar/pkg/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/python/trunk/Makefile 2009-08-12 14:46:26 UTC (rev 5997) +++ csw/mgar/pkg/python/trunk/Makefile 2009-08-12 15:11:39 UTC (rev 5998) @@ -54,6 +54,10 @@ COMPILER_EXPORTS += BASECFLAGS +ifneq ($(shell uname -r), 5.8) + GARCOMPILER = SOS12 +endif + NOISALIST = 1 LD_OPTIONS = -R/opt/csw/lib export LD_OPTIONS 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 Aug 12 17:49:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 15:49:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5999] csw/mgar/pkg/pysetuptools/trunk/Makefile Message-ID: Revision: 5999 http://gar.svn.sourceforge.net/gar/?rev=5999&view=rev Author: valholla Date: 2009-08-12 15:49:25 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix dependency on pydistutils Modified Paths: -------------- csw/mgar/pkg/pysetuptools/trunk/Makefile Modified: csw/mgar/pkg/pysetuptools/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:11:39 UTC (rev 5998) +++ csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:49:25 UTC (rev 5999) @@ -15,7 +15,7 @@ MASTER_SITES = http://cheeseshop.python.org/packages/source/s/setuptools/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -REQUIRED_PKGS_CSWpysetuptools = CSWpython +REQUIRED_PKGS_CSWpysetuptools = CSWpython CSWpydistutils PACKAGES = CSWpysetuptools CATALOGNAME_CSWpysetuptools = pysetuptools SPKG_DESC_CSWpysetuptools = Distribution Utiltiies for Python 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 Aug 12 17:51:44 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 15:51:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[6000] csw/mgar/pkg/pysetuptools/trunk/Makefile Message-ID: Revision: 6000 http://gar.svn.sourceforge.net/gar/?rev=6000&view=rev Author: valholla Date: 2009-08-12 15:51:44 +0000 (Wed, 12 Aug 2009) Log Message: ----------- ENABLE_CHECK to 0 pydistutils dependency is not installed Modified Paths: -------------- csw/mgar/pkg/pysetuptools/trunk/Makefile Modified: csw/mgar/pkg/pysetuptools/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:49:25 UTC (rev 5999) +++ csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:51:44 UTC (rev 6000) @@ -25,6 +25,8 @@ SPKG_CLASSES = none cswpycompile REQUIRED_PKGS += CSWcswclassutils +ENABLE_CHECK = 0 + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Aug 12 18:02:15 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 12 Aug 2009 16:02:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[6001] csw/mgar/pkg Message-ID: Revision: 6001 http://gar.svn.sourceforge.net/gar/?rev=6001&view=rev Author: wbonnet Date: 2009-08-12 16:02:15 +0000 (Wed, 12 Aug 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/seamonkey/ csw/mgar/pkg/seamonkey/branches/ csw/mgar/pkg/seamonkey/tags/ csw/mgar/pkg/seamonkey/trunk/ csw/mgar/pkg/seamonkey/trunk/Makefile csw/mgar/pkg/seamonkey/trunk/checksums csw/mgar/pkg/seamonkey/trunk/files/ Property changes on: csw/mgar/pkg/seamonkey/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/seamonkey/trunk/Makefile =================================================================== --- csw/mgar/pkg/seamonkey/trunk/Makefile (rev 0) +++ csw/mgar/pkg/seamonkey/trunk/Makefile 2009-08-12 16:02:15 UTC (rev 6001) @@ -0,0 +1,103 @@ +GARNAME = seamonkey +GARVERSION = 1.1.17 +CATEGORIES = x11 +DISTNAME = $(GARNAME) + +DESCRIPTION = Seamonkey all-in-one internet application suite +define BLURB +Web-browser, advanced e-mail and newsgroup client, IRC chat client, and HTML editing made simple -- all your Internet needs in one application. +endef + +DISTFILES = $(GARNAME)-$(GARVERSION).source.tar.bz2 +# DISTFILES += CSWseamonkey.postremove CSWseamonkey.postinstall + +# 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/seamonkey/releases/$(GARVERSION)/ +UPSTREAM_MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/seamonkey/releases/ + +PACKAGES = CSWseamonkey +CATALOGNAME_CSWseamonkey = $(GARNAME) +SPKG_DESC_CSWseamonkey = $(DESCRIPTION) + +# REQUIRED_PKGS_CSWseamonkey = CSWdbusglib +# REQUIRED_PKGS_CSWseamonkey += CSWfconfig +# REQUIRED_PKGS_CSWseamonkey += CSWftype2 +# REQUIRED_PKGS_CSWseamonkey += CSWgconf2 +# REQUIRED_PKGS_CSWseamonkey += CSWglib2 +# REQUIRED_PKGS_CSWseamonkey += CSWgnomevfs2 +# REQUIRED_PKGS_CSWseamonkey += CSWgtk2 +# REQUIRED_PKGS_CSWseamonkey += CSWlibatk +# REQUIRED_PKGS_CSWseamonkey += CSWlibcairo +# REQUIRED_PKGS_CSWseamonkey += CSWlibdbus +# REQUIRED_PKGS_CSWseamonkey += CSWlibgnome +# REQUIRED_PKGS_CSWseamonkey += CSWlibx11 +# REQUIRED_PKGS_CSWseamonkey += CSWlibxrender +# REQUIRED_PKGS_CSWseamonkey += CSWpango +# REQUIRED_PKGS_CSWseamonkey += CSWsqlite3rt + +# Defines the list of patches to be applied to the sources +# PATCHFILES = autoconf.mk.in.diff +# PATCHFILES += configure.diff +# PATCHFILES += nsPluginsDirUnix.cpp.diff +# PATCHFILES += packager.mk.diff +# PATCHFILES += jemalloc.c.diff +# PATCHFILES += nsMathUtils.h.diff +# PATCHFILES += file_id.cc.diff +# PATCHFILES += md5.h.diff +# PATCHFILES += solaris_lwp.h.diff +# PATCHFILES += nsNativeApSuportUnix.cpp.diff +# PATCHFILES += nsExceptionHandler.cpp.diff + +# pkg-config options +EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig + +PERL=/opt/csw/bin/perl +CXXFLAGS +=-xlibmil -xlibmopt -features=tmplife -norunpath +CFLAGS +=-xlibmil -D__solaris__ +CFLAGS += -DG_HAVE_ISO_VARARGS +CXXFLAGS += -DG_HAVE_ISO_VARARGS +CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include +XCFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + +EXTRA_CONFIGURE_EXPORTS = XCFLAGS + +LDFLAGS+=-L/usr/lib/lwp -L/opt/csw/mozilla/seamonkey/lib -R/opt/csw/mozilla/seamonkey/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 + +export PERL CFLAGS CXXFLAGS LDFLAGS + +CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/seamonkey --disable-crashreporter + +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 $(WORK_BUILD) +# @cp $(FILEDIR)/stdbool.h $(WORK_BUILD)/memory/jemalloc + @$(MAKECOOKIE) + +pre-configure: + @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig + +pre-install: + ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) + ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/seamonkey/bin/seamonkey . ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) + ( cp $(WORK_BUILD)/other-licenses/branding/seamonkey/mozicon128.png $(WORK_INSTALL)/opt/csw/share/pixmaps/seamonkey.png ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/applications ) + ( cp $(FILEDIR)/seamonkey.desktop $(WORK_INSTALL)/opt/csw/share/applications/seamonkey.desktop ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) + ( cp $(FILEDIR)/seamonkey.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/seamonkey.keys ) + +post-install: + ( gfind $(WORK_INSTALL)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) + ( 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/seamonkey -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) + ( gfind $(WORK_INSTALL)/opt/csw/mozilla/seamonkey -name "*.jar" -exec bash -c "`pwd`/removeBuildPathFromJar.sh {} `pwd` $(WORKDIR) $(DISTNAME)" \; ) + +include gar/category.mk Added: csw/mgar/pkg/seamonkey/trunk/checksums =================================================================== --- csw/mgar/pkg/seamonkey/trunk/checksums (rev 0) +++ csw/mgar/pkg/seamonkey/trunk/checksums 2009-08-12 16:02:15 UTC (rev 6001) @@ -0,0 +1 @@ +9eba600ba6ca522b8eada9a0a8e890e2 download/seamonkey-1.1.17.source.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 Wed Aug 12 18:47:50 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 16:47:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[6002] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6002 http://gar.svn.sourceforge.net/gar/?rev=6002&view=rev Author: valholla Date: 2009-08-12 16:47:50 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix for class Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 16:02:15 UTC (rev 6001) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 16:47:50 UTC (rev 6002) @@ -37,7 +37,6 @@ REQUIRED_PKGS_CSWsendmail = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils CSWsendmailcommon REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils ARCHALL_CSWsendmailcommon = 1 -SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel PROTOTYPE_FILTER = awk \ '$$$$2 ~/i.sol8/ { next } \ 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 Aug 12 19:02:43 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:02:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[6003] csw/mgar/pkg/sendmail/trunk/files/CSWsendmail. checkinstall Message-ID: Revision: 6003 http://gar.svn.sourceforge.net/gar/?rev=6003&view=rev Author: valholla Date: 2009-08-12 17:02:43 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix checkinstall Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 16:47:50 UTC (rev 6002) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 17:02:43 UTC (rev 6003) @@ -15,7 +15,7 @@ # Make env variables available to other packaging scripts cat >$1 < Revision: 6004 http://gar.svn.sourceforge.net/gar/?rev=6004&view=rev Author: bdwalton Date: 2009-08-12 17:04:24 +0000 (Wed, 12 Aug 2009) Log Message: ----------- add license; use pre-defined $(lispdir) Modified Paths: -------------- csw/mgar/pkg/yaml-mode/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt Modified: csw/mgar/pkg/yaml-mode/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:02:43 UTC (rev 6003) +++ csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:04:24 UTC (rev 6004) @@ -38,17 +38,17 @@ INSTALL_SCRIPTS = custom COMPILE_ELISP = 1 -ELISP_DIR = /opt/csw/share/emacs/site-lisp include gar/category.mk cp-extract-yaml-mode.el: $(WORKSRC) @echo " ===> Copying yaml-mode.el into work source directory." @cp $(DOWNLOADDIR)/yaml-mode.el $(WORKSRC) + @cp $(FILEDIR)/gpl* $(WORKSRC)/COPYING @$(MAKECOOKIE) install-custom: @( cd $(WORKSRC); \ - gmkdir -p $(DESTDIR)$(ELISP_DIR); \ - cp yaml-mode.el $(DESTDIR)$(ELISP_DIR) ) + gmkdir -p $(DESTDIR)$(lispdir); \ + cp yaml-mode.el $(DESTDIR)$(lispdir) ) @$(MAKECOOKIE) \ No newline at end of file Added: csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt (rev 0) +++ csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt 2009-08-12 17:04:24 UTC (rev 6004) @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser 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 + + 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) + + 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., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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) year 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 Lesser General +Public License instead of this License. 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 Aug 12 19:10:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:10:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6005] csw/mgar/pkg/sendmail/trunk/files/CSWsendmail. checkinstall Message-ID: Revision: 6005 http://gar.svn.sourceforge.net/gar/?rev=6005&view=rev Author: valholla Date: 2009-08-12 17:10:29 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix checkinstall Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 17:04:24 UTC (rev 6004) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 17:10:29 UTC (rev 6005) @@ -4,18 +4,21 @@ trap `exit 3` 15 # Assign Solaris release class to install release specific files -if [ `uname -r` = 5.8 ]; then +if [ `uname -r` = 5.8 ] +then CLASSES='none sol8 cswinitsmf' -elif [ `uname -r` = 5.9 ]; then +elif [ `uname -r` = 5.9 ] +then CLASSES='none sol9 cswinitsmf' -elif [ `uname -r` = 5.10 ]; then +elif [ `uname -r` = 5.10 ] +then CLASSES='none sol10 cswinitsmf' fi # Make env variables available to other packaging scripts cat >$1 < Revision: 6006 http://gar.svn.sourceforge.net/gar/?rev=6006&view=rev Author: bdwalton Date: 2009-08-12 17:23:29 +0000 (Wed, 12 Aug 2009) Log Message: ----------- yaml-mode: set deps on correct package name Modified Paths: -------------- csw/mgar/pkg/yaml-mode/trunk/Makefile Modified: csw/mgar/pkg/yaml-mode/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:10:29 UTC (rev 6005) +++ csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:23:29 UTC (rev 6006) @@ -6,7 +6,7 @@ CATALOGNAME_CSWyamlmode = yaml_mode -REQUIRED_PKGS_CSWphpmode = CSWemacscommon +REQUIRED_PKGS_CSWyamlmode = CSWemacscommon ARCHALL_CSWyamlmode = 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 Wed Aug 12 19:23:34 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:23:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[6007] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6007 http://gar.svn.sourceforge.net/gar/?rev=6007&view=rev Author: valholla Date: 2009-08-12 17:23:34 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix missing checkinstall Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:23:29 UTC (rev 6006) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:23:34 UTC (rev 6007) @@ -19,7 +19,7 @@ DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) +DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) CSWsendmail.checkinstall DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) 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 Aug 12 19:24:31 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:24:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6008] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6008 http://gar.svn.sourceforge.net/gar/?rev=6008&view=rev Author: valholla Date: 2009-08-12 17:24:31 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix missing checkinstall checksum Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:23:34 UTC (rev 6007) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:24:31 UTC (rev 6008) @@ -1,3 +1,4 @@ +a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall 27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 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 Aug 12 19:26:51 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:26:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[6009] csw/mgar/pkg/munin/trunk Message-ID: Revision: 6009 http://gar.svn.sourceforge.net/gar/?rev=6009&view=rev Author: j_arndt Date: 2009-08-12 17:26:51 +0000 (Wed, 12 Aug 2009) Log Message: ----------- munin: typos fixed in postinstall script Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-12 17:24:31 UTC (rev 6008) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-12 17:26:51 UTC (rev 6009) @@ -1,4 +1,4 @@ -473a91d70e616194bdcfd85af8081e15 download/CSWmuninmaster.postinstall +929bda5dc234904152566ab8865082db download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-12 17:24:31 UTC (rev 6008) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-12 17:26:51 UTC (rev 6009) @@ -9,9 +9,9 @@ To get Munin running, please follow these steps: -(1) Append the following line to the crontab of the user 'munin':" +(1) Append the following line to the crontab of the user 'munin': - 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron" + 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron (2) Edit the Apache configuration for Munin: "Normal" mode: /etc/opt/csw/munin/apache/apache.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 Wed Aug 12 19:39:23 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:39:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[6010] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6010 http://gar.svn.sourceforge.net/gar/?rev=6010&view=rev Author: valholla Date: 2009-08-12 17:39:22 +0000 (Wed, 12 Aug 2009) Log Message: ----------- tweaks Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:39:22 UTC (rev 6010) @@ -112,12 +112,11 @@ @# install the libraries @( for file in $(LIBFILES) ; do \ - ginstall -m 755 $(OBJDIR)/$$file $(DESTDIR)$(libdir) ; \ + ginstall -c -m 755 $(OBJDIR)/$$file $(DESTDIR)$(libdir) ; \ done ) @# install the binaries ginstall -m 755 $(OBJDIR)/$(BINFILES) $(DESTDIR)$(bindir) - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/newaliases ( for file in $(SBINFILES) ; do \ ginstall -m 755 $(OBJDIR)/$$file $(DESTDIR)$(sbindir) ; \ done ) @@ -133,6 +132,12 @@ mv $(DESTDIR)$(sbindir)/$$file $(DESTDIR)$(sbindir)/$(SOLVER).$$file;\ done ) + @# create links in bindir + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/newaliases + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/mailq + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/purgestats + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/hoststat + @# install manpages ( for file in $(MANFILES1) ; do \ ginstall -m 644 $(OBJDIR)/$$file $(DESTDIR)$(mandir)/man1 ; \ Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-12 17:39:22 UTC (rev 6010) @@ -19,5 +19,6 @@ dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-12 17:39:22 UTC (rev 6010) @@ -19,5 +19,6 @@ dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-12 17:39:22 UTC (rev 6010) @@ -19,5 +19,6 @@ dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 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 Aug 12 19:40:26 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:40:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[6011] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6011 http://gar.svn.sourceforge.net/gar/?rev=6011&view=rev Author: valholla Date: 2009-08-12 17:40:26 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:39:22 UTC (rev 6010) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:40:26 UTC (rev 6011) @@ -1,7 +1,7 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 -24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 -b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 +10454c9eb3d165f2f22c2b9455bcfdcc download/CSWsendmail.i.sol10 +54c255c3fce635ee7d8ac11a75ba25f7 download/CSWsendmail.i.sol8 +b78ddd9dc3835093e6994cd57d9e6824 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space 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 Aug 12 19:55:58 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:55:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[6012] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6012 http://gar.svn.sourceforge.net/gar/?rev=6012&view=rev Author: valholla Date: 2009-08-12 17:55:57 +0000 (Wed, 12 Aug 2009) Log Message: ----------- tweaks for install Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:40:26 UTC (rev 6011) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:55:57 UTC (rev 6012) @@ -132,12 +132,6 @@ mv $(DESTDIR)$(sbindir)/$$file $(DESTDIR)$(sbindir)/$(SOLVER).$$file;\ done ) - @# create links in bindir - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/newaliases - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/mailq - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/purgestats - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/hoststat - @# install manpages ( for file in $(MANFILES1) ; do \ ginstall -m 644 $(OBJDIR)/$$file $(DESTDIR)$(mandir)/man1 ; \ @@ -167,6 +161,12 @@ @$(MAKECOOKIE) merge-OS: + @# create links in bindir + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/newaliases + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/mailq + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/purgestats + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/hoststat + @# Install the other install trees ( for dir in `ls -d $(abspath $(WORKROOTDIR)/install*-$(MODULATION))` ; do \ ( if [ "x`echo $$dir |sed "s/.*install-\(5.[0-9]*\)-$(MODULATION).*/\1/"`x" != "x$(GAROSREL)x" ]; then \ 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 Aug 13 09:30:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:30:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[6013] csw/mgar/pkg/cswutils/trunk/Makefile Message-ID: Revision: 6013 http://gar.svn.sourceforge.net/gar/?rev=6013&view=rev Author: dmichelsen Date: 2009-08-13 07:30:35 +0000 (Thu, 13 Aug 2009) Log Message: ----------- cswutils: Update version Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2009-08-12 17:55:57 UTC (rev 6012) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2009-08-13 07:30:35 UTC (rev 6013) @@ -1,5 +1,5 @@ GARNAME = cswutils -GARVERSION = 1.14.2 +GARVERSION = 1.14.3 CATEGORIES = utils DESCRIPTION = Utilities for CSW maintainers 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 Aug 13 09:49:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:49:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[6014] csw/mgar/pkg/speex/trunk/Makefile Message-ID: Revision: 6014 http://gar.svn.sourceforge.net/gar/?rev=6014&view=rev Author: dmichelsen Date: 2009-08-13 07:49:03 +0000 (Thu, 13 Aug 2009) Log Message: ----------- speex: Fix revision in package name Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-13 07:30:35 UTC (rev 6013) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-13 07:49:03 UTC (rev 6014) @@ -3,7 +3,8 @@ # $Id$ GARNAME = speex -GARVERSION = 1.2rc1 +GARVERSION = 1.2 +REV = rc1 CATEGORIES = lib DESCRIPTION = Speex audio codec support library @@ -11,7 +12,7 @@ endef MASTER_SITES = http://downloads.xiph.org/releases/speex/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(GARVERSION)$(REV).tar.gz # The important lines are these: # @@ -43,6 +44,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION)$(REV) + # 64-bit doesn't build on x86. BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) @@ -52,3 +55,6 @@ INSTALL_OVERRIDE_VAR_PACKAGE = libspeex include gar/category.mk + +SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) + 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 Aug 13 09:49:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:49:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6015] csw/mgar/pkg/curl/trunk Message-ID: Revision: 6015 http://gar.svn.sourceforge.net/gar/?rev=6015&view=rev Author: dmichelsen Date: 2009-08-13 07:49:18 +0000 (Thu, 13 Aug 2009) Log Message: ----------- curl: Update to 7.19.6 Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-08-13 07:49:03 UTC (rev 6014) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-08-13 07:49:18 UTC (rev 6015) @@ -1,5 +1,5 @@ GARNAME = curl -GARVERSION = 7.19.5 +GARVERSION = 7.19.6 CATEGORIES = net DESCRIPTION = Command line tool and library for client-side URL transfers. Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-08-13 07:49:03 UTC (rev 6014) +++ csw/mgar/pkg/curl/trunk/checksums 2009-08-13 07:49:18 UTC (rev 6015) @@ -1,4 +1,4 @@ -426d161661dce70c8ea9ad8f553363a3 download/curl-7.19.5.tar.bz2 +8402c1f654c51ad7287aad57c3aa79be download/curl-7.19.6.tar.bz2 5aebb27149d80000d1107b58d65b551b download/curlbuild.h a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i b46b41659b805013740eeb76e759af4b download/libcurl.so.2.0.2.s 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 Aug 13 09:52:18 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:52:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6016] csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile Message-ID: Revision: 6016 http://gar.svn.sourceforge.net/gar/?rev=6016&view=rev Author: bonivart Date: 2009-08-13 07:52:18 +0000 (Thu, 13 Aug 2009) Log Message: ----------- Archive-Zip: fix dep to pm_iocompress, add license Modified Paths: -------------- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile Modified: csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-13 07:49:18 UTC (rev 6015) +++ csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-13 07:52:18 UTC (rev 6016) @@ -20,8 +20,9 @@ PACKAGES = CSWpmarchivezip CATALOGNAME = pm_archivezip ARCHALL = 1 +LICENSE = LICENSE -REQUIRED_PKGS = CSWiocompress +REQUIRED_PKGS = CSWpmiocompress # 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 bonivart at users.sourceforge.net Thu Aug 13 10:13:19 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 13 Aug 2009 08:13:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[6017] csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile Message-ID: Revision: 6017 http://gar.svn.sourceforge.net/gar/?rev=6017&view=rev Author: bonivart Date: 2009-08-13 08:13:19 +0000 (Thu, 13 Aug 2009) Log Message: ----------- libwww-perl: fix dep Modified Paths: -------------- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-13 07:52:18 UTC (rev 6016) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-13 08:13:19 UTC (rev 6017) @@ -17,6 +17,6 @@ PACKAGES = CSWpmlibwww ARCHALL = 1 -REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWiocompress CSWpmhtmlfmt CSWpmmimebase64 +REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWpmiocompress CSWpmhtmlfmt CSWpmmimebase64 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 Aug 13 10:23:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 08:23:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[6018] csw/mgar/pkg/cpan/Archive-Tar/trunk Message-ID: Revision: 6018 http://gar.svn.sourceforge.net/gar/?rev=6018&view=rev Author: dmichelsen Date: 2009-08-13 08:23:35 +0000 (Thu, 13 Aug 2009) Log Message: ----------- cpan/Archive-Tar: Update to 1.52 Modified Paths: -------------- csw/mgar/pkg/cpan/Archive-Tar/trunk/Makefile csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/Archive-Tar/trunk/ Property changes on: csw/mgar/pkg/cpan/Archive-Tar/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/Archive-Tar/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Archive-Tar/trunk/Makefile 2009-08-13 08:13:19 UTC (rev 6017) +++ csw/mgar/pkg/cpan/Archive-Tar/trunk/Makefile 2009-08-13 08:23:35 UTC (rev 6018) @@ -1,9 +1,9 @@ GARNAME = Archive-Tar -GARVERSION = 1.30 +GARVERSION = 1.52 CATEGORIES = cpan AUTHOR = KANE -DESCRIPTION = module for manipulations of tar archives +DESCRIPTION = Module for manipulations of tar archives define BLURB Archive::Tar provides an object oriented mechanism for handling tar files. It provides class methods for quick and easy files handling while also @@ -12,8 +12,11 @@ compressed or gzipped tar files. endef -DISTFILES += $(call admfiles,CSWpmarchivetar,depend prototype) +REQUIRED_PKGS = CSWpmiozlib CSWpmiocompress CSWpmpkgconst CSWpmtextdiff -DEPENDS += cpan/IO-Zlib +PACKAGES = CSWpmarchivetar +CATALOGNAME = pm_archivetar +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums 2009-08-13 08:13:19 UTC (rev 6017) +++ csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums 2009-08-13 08:23:35 UTC (rev 6018) @@ -1,4 +1 @@ -4d289076aaa5a98f8c6c469bcee3b321 download/CSWpmarchivetar.gspec -a4b49c92995dbe9ff3c4b5cceceab0f5 download/CSWpmarchivetar.depend -775d378c9530a63f9d340c3b552d75ee download/CSWpmarchivetar.prototype -89604ea8fadc990c7bb668259dacb439 download/Archive-Tar-1.30.tar.gz +a2bcf46c095f6b4ea747fc978a72d0da download/Archive-Tar-1.52.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 Aug 13 11:26:28 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 13 Aug 2009 09:26:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6019] csw/mgar/pkg/dhcp/trunk Message-ID: Revision: 6019 http://gar.svn.sourceforge.net/gar/?rev=6019&view=rev Author: bonivart Date: 2009-08-13 09:26:28 +0000 (Thu, 13 Aug 2009) Log Message: ----------- dhcp: update to 4.1.1 beta 2 Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile csw/mgar/pkg/dhcp/trunk/checksums Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-08-13 08:23:35 UTC (rev 6018) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-08-13 09:26:28 UTC (rev 6019) @@ -1,5 +1,5 @@ GARNAME = dhcp -GARVERSION = 4.1.1b1 +GARVERSION = 4.1.1b2 CATEGORIES = net DESCRIPTION = ISC DHCP reference implementation @@ -16,6 +16,7 @@ PACKAGES = CSWdhcp CSWdhcpdevel CATALOGNAME_CSWdhcpdevel = dhcp_devel SPKG_DESC_CSWdhcp = ISC DHCP reference implementation +LICENSE = LICENSE REQUIRED_PKGS_CSWdhcp = CSWcswclassutils CSWosslrt REQUIRED_PKGS_CSWdhcpdevel = CSWdhcp @@ -61,7 +62,6 @@ mv dhcpd.conf dhcpd.conf.CSW ; \ mv dhclient.conf dhclient.conf.CSW ) @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) - @cp $(WORKSRC)/LICENSE $(DESTDIR)$(docdir)/$(GARNAME) @cp $(FILEDIR)/CSWdhcp.README.CSW $(DESTDIR)$(docdir)/$(GARNAME)/README.CSW @ginstall -d $(DESTDIR)/var/opt/csw/$(GARNAME)/db @touch $(DESTDIR)/var/opt/csw/$(GARNAME)/db/dhcpd.leases.CSW Modified: csw/mgar/pkg/dhcp/trunk/checksums =================================================================== --- csw/mgar/pkg/dhcp/trunk/checksums 2009-08-13 08:23:35 UTC (rev 6018) +++ csw/mgar/pkg/dhcp/trunk/checksums 2009-08-13 09:26:28 UTC (rev 6019) @@ -1 +1 @@ -20ee8a5328af03d528414d06883973fc download/dhcp-4.1.1b1.tar.gz +b85b23edc74514712139b860f74bc650 download/dhcp-4.1.1b2.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 Aug 13 11:50:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 09:50:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6020] csw/mgar/pkg/rcs/trunk/Makefile Message-ID: Revision: 6020 http://gar.svn.sourceforge.net/gar/?rev=6020&view=rev Author: dmichelsen Date: 2009-08-13 09:50:48 +0000 (Thu, 13 Aug 2009) Log Message: ----------- rcs: Force use of CSWdiffutils Modified Paths: -------------- csw/mgar/pkg/rcs/trunk/Makefile Modified: csw/mgar/pkg/rcs/trunk/Makefile =================================================================== --- csw/mgar/pkg/rcs/trunk/Makefile 2009-08-13 09:26:28 UTC (rev 6019) +++ csw/mgar/pkg/rcs/trunk/Makefile 2009-08-13 09:50:48 UTC (rev 6020) @@ -12,14 +12,21 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWdiffutils + man1dir = $(mandir)/man1 man5dir = $(mandir)/man5 +DIFF = $(bindir)/gdiff +DIFF3 = $(bindir)/gdiff3 + NORUNPATH = 1 CONFIGURE_ARGS = --prefix=$(prefix) +CONFIGURE_ARGS += --with-diffutils TEST_TARGET = INSTALL_OVERRIDE_DIRS = prefix man1dir man5dir +BUILD_OVERRIDE_DIRS = DIFF DIFF3 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 Aug 13 14:58:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 12:58:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[6021] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 6021 http://gar.svn.sourceforge.net/gar/?rev=6021&view=rev Author: dmichelsen Date: 2009-08-13 12:58:39 +0000 (Thu, 13 Aug 2009) Log Message: ----------- mGAR v2: Fixes for consistent use of EXTRA_MERGE_* Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-13 09:50:48 UTC (rev 6020) +++ csw/mgar/gar/v2/gar.mk 2009-08-13 12:58:39 UTC (rev 6021) @@ -522,9 +522,9 @@ MERGE_SCRIPTS_isa-$(ISA_DEFAULT) ?= copy-all $(EXTRA_MERGE_SCRIPTS_$(ISA_DEFAULT)) $(EXTRA_MERGE_SCRIPTS) else ISAEXEC_DIRS ?= $(if $(NO_ISAEXEC),,$(bindir) $(sbindir) $(libexecdir)) -MERGE_DIRS_isa-$(ISA_DEFAULT) ?= +MERGE_DIRS_isa-$(ISA_DEFAULT) ?= $(EXTRA_MERGE_DIRS) $(EXTRA_MERGE_DIRS_isa-$(ISA_DEFAULT)) MERGE_DIRS_isa-$(ISA) ?= $(bindir) $(sbindir) $(libexecdir) $(libdir) $(EXTRA_MERGE_DIRS) $(EXTRA_MERGE_DIRS_isa-$(ISA)) -MERGE_SCRIPTS_isa-$(ISA_DEFAULT) ?= copy-relocate $(EXTRA_MERGE_SCRIPTS_isa-$(ISA)) $(EXTRA_MERGE_SCRIPTS) +MERGE_SCRIPTS_isa-$(ISA_DEFAULT) ?= copy-relocate $(EXTRA_MERGE_SCRIPTS_isa-$(ISA_DEFAULT)) $(EXTRA_MERGE_SCRIPTS) MERGE_SCRIPTS_isa-$(ISA) ?= copy-relocated-only $(EXTRA_MERGE_SCRIPTS_isa-$(ISA)) $(EXTRA_MERGE_SCRIPTS) 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 Thu Aug 13 15:40:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 13:40:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[6022] csw/mgar/pkg/libssh2/trunk Message-ID: Revision: 6022 http://gar.svn.sourceforge.net/gar/?rev=6022&view=rev Author: valholla Date: 2009-08-13 13:40:51 +0000 (Thu, 13 Aug 2009) Log Message: ----------- update to version 1.2 Modified Paths: -------------- csw/mgar/pkg/libssh2/trunk/Makefile csw/mgar/pkg/libssh2/trunk/checksums Modified: csw/mgar/pkg/libssh2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libssh2/trunk/Makefile 2009-08-13 12:58:39 UTC (rev 6021) +++ csw/mgar/pkg/libssh2/trunk/Makefile 2009-08-13 13:40:51 UTC (rev 6022) @@ -1,5 +1,5 @@ GARNAME = libssh2 -GARVERSION = 1.1 +GARVERSION = 1.2 CATEGORIES = lib DESCRIPTION = A Library Implementing the SSH2 Protocol. @@ -10,7 +10,7 @@ SECSH-PUBLICKEY. endef -MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES = http://www.libssh2.org/download/ SPKG_SOURCEURL = http://www.libssh2.org DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz @@ -20,6 +20,7 @@ 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 Modified: csw/mgar/pkg/libssh2/trunk/checksums =================================================================== --- csw/mgar/pkg/libssh2/trunk/checksums 2009-08-13 12:58:39 UTC (rev 6021) +++ csw/mgar/pkg/libssh2/trunk/checksums 2009-08-13 13:40:51 UTC (rev 6022) @@ -1 +1 @@ -f8a3eb9bb814e0a5a2bb76a5423f5129 download/libssh2-1.1.tar.gz +751f4b5b5d8091f84cfe25fa52226cf9 download/libssh2-1.2.tar.gz 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 Aug 13 22:09:48 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 13 Aug 2009 20:09:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6023] csw/mgar/pkg/munin/trunk Message-ID: Revision: 6023 http://gar.svn.sourceforge.net/gar/?rev=6023&view=rev Author: j_arndt Date: 2009-08-13 20:09:48 +0000 (Thu, 13 Aug 2009) Log Message: ----------- munin: changed file location, minor fixes Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-13 20:09:48 UTC (rev 6023) @@ -89,4 +89,7 @@ @ginstall -m 644 $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/pkg/CSWmuninnode/cswusergroup @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @ginstall -m 755 $(FILEDIR)/cswmuninnode $(DESTDIR)/etc/opt/csw/init.d/cswmuninnode + @ginstall -d $(DESTDIR)/opt/csw/share/munin/fonts + @ginstall -m 644 $(DESTDIR)/opt/csw/libexec/munin/VeraMono.ttf $(DESTDIR)/opt/csw/share/munin/fonts/VeraMono.ttf + @rm $(DESTDIR)/opt/csw/libexec/munin/VeraMono.ttf @$(MAKECOOKIE) Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-13 20:09:48 UTC (rev 6023) @@ -1,5 +1,5 @@ -929bda5dc234904152566ab8865082db download/CSWmuninmaster.postinstall -f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype +b494ca780b9becd6a8611e255e606dd4 download/CSWmuninmaster.postinstall +29939c1794e6c602d54effac74e5c89d download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW 59409f4b412953283c3df4546fd4886c download/apache-munin-cgi.conf.CSW @@ -7,7 +7,7 @@ 50fa4a545f878d79e219891c6ac8d2d2 download/cswusergroup 4eb0923e09f12335da8249ab7923e250 download/makefile.config.diff 3ea1ba00633ac52c3a25306c3c9c52e0 download/makefile.diff -f44022c818a112b1121d10e1112e107e download/munin-graph.in.diff +064e12aa12bc7d4cb312b576ae658d1e download/munin-graph.in.diff ce97aa8e741383039fb365d1a322f3e7 download/munin-node.conf.in.diff 4688659429fbebf8cafcc8eb8a1ee870 download/munin-update.in.diff 737e3e3d2f68015dfb4e857909cde7da download/munin.conf.in.diff Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-13 20:09:48 UTC (rev 6023) @@ -14,19 +14,23 @@ 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron (2) Edit the Apache configuration for Munin: - "Normal" mode: /etc/opt/csw/munin/apache/apache.conf + "Normal" mode: /etc/opt/csw/munin/apache/apache-munin.conf CGI mode: /etc/opt/csw/munin/apache/apache-munin-cgi.conf (These files should work by default) -(3) Add the following line to your Apache configuration +(3) Add the following line to your Apache configuration: - "Normal" mode: Include /etc/opt/csw/munin/apache/apache.conf + "Normal" mode: Include /etc/opt/csw/munin/apache/apache-munin.conf CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf (4) Add the user your webserver is running under (nobody for Apache) to the group "munin" +(5) Restart your webserver: + + svcadm restart cswapache2 + # # # Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-13 20:09:48 UTC (rev 6023) @@ -3,7 +3,7 @@ f cswpreserveconf /etc/opt/csw/munin/munin.conf.CSW 0644 root bin f none /opt/csw/bin/munin-check 0755 root bin f none /opt/csw/bin/munin-cron 0755 root bin -f none /opt/csw/libexec/munin/VeraMono.ttf 0755 root bin +f none /opt/csw/share/munin/fonts/VeraMono.ttf 0644 root bin f none /opt/csw/libexec/munin/munin-graph 0755 root bin f none /opt/csw/libexec/munin/munin-html 0755 root bin f none /opt/csw/libexec/munin/munin-limits 0755 root bin Modified: csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff =================================================================== --- csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff 2009-08-13 20:09:48 UTC (rev 6023) @@ -1,12 +1,16 @@ diff --speed-large-files --minimal -Nru munin-1.3.4.orig/server/munin-graph.in munin-1.3.4/server/munin-graph.in --- munin-1.3.4.orig/server/munin-graph.in 2008-03-08 02:42:40.000000000 +0100 -+++ munin-1.3.4/server/munin-graph.in 2009-07-07 10:51:42.606467982 +0200 -@@ -827,7 +827,7 @@ ++++ munin-1.3.4/server/munin-graph.in 2009-08-13 20:59:35.901535076 +0200 +@@ -827,9 +827,9 @@ my @complete = (); if ($RRDkludge) { push (@complete, - '--font' ,'LEGEND:7:@@LIBDIR@@/VeraMono.ttf', +- '--font' ,'UNIT:7:@@LIBDIR@@/VeraMono.ttf', +- '--font' ,'AXIS:7:@@LIBDIR@@/VeraMono.ttf'); + '--font' ,'LEGEND:7:@@LIBDIR@@/monospace', - '--font' ,'UNIT:7:@@LIBDIR@@/VeraMono.ttf', - '--font' ,'AXIS:7:@@LIBDIR@@/VeraMono.ttf'); ++ '--font' ,'UNIT:7:/opt/csw/share/munin/fonts/VeraMono.ttf', ++ '--font' ,'AXIS:7:/opt/csw/share/munin/fonts/VeraMono.ttf'); } + push(@complete,'-W', $watermark) if $RRDs::VERSION >= 1.2; + 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 Aug 13 22:53:29 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 20:53:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6024] csw/mgar/pkg/subversion/trunk Message-ID: Revision: 6024 http://gar.svn.sourceforge.net/gar/?rev=6024&view=rev Author: valholla Date: 2009-08-13 20:53:28 +0000 (Thu, 13 Aug 2009) Log Message: ----------- update to 1.6.4 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-08-13 20:09:48 UTC (rev 6023) +++ csw/mgar/pkg/subversion/trunk/Makefile 2009-08-13 20:53:28 UTC (rev 6024) @@ -1,5 +1,5 @@ GARNAME = subversion -DISTVERSION = 1.6.3 +DISTVERSION = 1.6.4 GARVERSION = $(subst -,,$(DISTVERSION)) CATEGORIES = utils @@ -100,7 +100,7 @@ CONFIGURE_ARGS = $(DIRPATHS) --libdir=$(SVNLIB) --libexecdir=$(SVNLIB) CONFIGURE_ARGS += --disable-mod-activation CONFIGURE_ARGS += --disable-static -CONFIGURE_ARGS += --with-berkeley-db=db.h:/opt/csw/include:/opt/csw/lib:db-4.7 +CONFIGURE_ARGS += --with-berkeley-db=db.h:/opt/csw/include:/opt/csw/lib:db CONFIGURE_ARGS += --enable-javahl CONFIGURE_ARGS += --with-apr=$(prefix)/apache2/bin/apr-config CONFIGURE_ARGS += --with-apr-util=$(prefix)/apache2/bin/apu-config Modified: csw/mgar/pkg/subversion/trunk/checksums =================================================================== --- csw/mgar/pkg/subversion/trunk/checksums 2009-08-13 20:09:48 UTC (rev 6023) +++ csw/mgar/pkg/subversion/trunk/checksums 2009-08-13 20:53:28 UTC (rev 6024) @@ -4,6 +4,6 @@ 41ec540885de7c34625768aa1fb9682b download/fixme.sh f107831ad0c702ff32e51df6a207237b download/httpd-svn.conf.CSW f0aa58c145ae99f8e4d72499ab826169 download/javahl_headers_for_nested_classes.diff -8bf7637ac99368db0890e3f085fa690d download/subversion-1.6.3.tar.bz2 +11e3fa838c9a558cadc378f2807572e2 download/subversion-1.6.4.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 valholla at users.sourceforge.net Thu Aug 13 23:22:24 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 21:22:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[6025] csw/mgar/pkg/sendmail/trunk/files Message-ID: Revision: 6025 http://gar.svn.sourceforge.net/gar/?rev=6025&view=rev Author: valholla Date: 2009-08-13 21:22:21 +0000 (Thu, 13 Aug 2009) Log Message: ----------- file tweaks Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/cswsendmail csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW Modified: csw/mgar/pkg/sendmail/trunk/files/cswsendmail =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-13 20:53:28 UTC (rev 6024) +++ csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-13 21:22:21 UTC (rev 6025) @@ -6,13 +6,13 @@ #ident "@(#)sendmail 1.19 01/12/05 SMI" # Modified for CSW by Alex Moore 01/01/2004 +CSW_DIR="/opt/csw" ERRMSG1='WARNING: /var/mail is NFS-mounted without setting actimeo=0,' ERRMSG2='this can cause mailbox locking and access problems.' SERVER_PID_FILE="/var/run/sendmail.pid" -CLIENT_PID_FILE="/opt/csw/var/spool/clientmqueue/sm-client.pid" -DEFAULT_FILE="/opt/csw/etc/default/sendmail" -ALIASES_FILE="/opt/csw/etc/mail/aliases" -CSW_DIR="/opt/csw" +CLIENT_PID_FILE="/var${CSW_DIR}/spool/clientmqueue/sm-client.pid" +DEFAULT_FILE="${CSW_DIR}/etc/default/sendmail" +ALIASES_FILE="${CSW_DIR}/etc/mail/aliases" check_queue_interval_syntax() { @@ -34,14 +34,14 @@ ;; 'start') - if [ -f $CSW_DIR/lib/sendmail -a -f $CSW_DIR/etc/mail/sendmail.cf ]; then - if [ ! -d $CSW_DIR/var/spool/mqueue ]; then - /usr/bin/mkdir -pm 0750 $CSW_DIR/var/spool/mqueue - /usr/bin/chown root:bin $CSW_DIR/var/spool/mqueue + if [ -f ${CSW_DIR}/lib/sendmail -a -f ${CSW_DIR}/etc/mail/sendmail.cf ]; then + if [ ! -d /var${CSW_DIR}/spool/mqueue ]; then + /usr/bin/mkdir -pm 0750 /var${CSW_DIR}/spool/mqueue + /usr/bin/chown root:bin /var${CSW_DIR}/spool/mqueue fi if [ ! -f $ALIASES_FILE.db ] && [ ! -f $ALIASES_FILE.dir ] \ && [ ! -f $ALIASES_FILE.pag ]; then - $CSW_DIR/bin/newaliases + ${CSW_DIR}/bin/newaliases fi MODE="-bd" [ -f $DEFAULT_FILE ] && . $DEFAULT_FILE @@ -62,8 +62,8 @@ fi check_queue_interval_syntax $CLIENTQUEUEINTERVAL CLIENTQUEUEINTERVAL=$answer - $CSW_DIR/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & - $CSW_DIR/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & + ${CSW_DIR}/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & + ${CSW_DIR}/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & # # ETRN_HOSTS should be of the form # "s1:c1.1,c1.2 s2:c2.1 s3:c3.1,c3.2,c3.3" Modified: csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-13 20:53:28 UTC (rev 6024) +++ csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-13 21:22:21 UTC (rev 6025) @@ -65,7 +65,7 @@ Cwlocalhost # file containing names of hosts for which we receive email -Fw/etc/mail/local-host-names +Fw/opt/csw/etc/mail/local-host-names # my official domain name # ... define this only if sendmail cannot automatically determine your domain @@ -94,7 +94,7 @@ # Hosts for which relaying is permitted ($=R) -FR-o /etc/mail/relay-domains +FR-o /opt/csw/etc/mail/relay-domains # arithmetic map Karith arith @@ -139,7 +139,7 @@ O AliasWait=10 # location of alias file -O AliasFile=/etc/mail/aliases +O AliasFile=/opt/csw/etc/mail/aliases # minimum number of free blocks on filesystem O MinFreeBlocks=100 @@ -160,7 +160,7 @@ O DeliveryMode=background # error message header/file -#O ErrorHeader=/etc/mail/error-header +#O ErrorHeader=/opt/csw/etc/mail/error-header # error mode #O ErrorMode=print @@ -181,7 +181,7 @@ #O MaxHopCount=25 # location of help file -O HelpFile=/etc/mail/helpfile +O HelpFile=/opt/csw/etc/mail/helpfile # ignore dots as terminators in incoming messages? #O IgnoreDots=False @@ -335,7 +335,7 @@ #O DefaultUser=mailnull # list of locations of user database file (null means no lookup) -#O UserDatabaseSpec=/etc/mail/userdb +#O UserDatabaseSpec=/opt/csw/etc/mail/userdb # fallback MX host #O FallbackMXhost=fall.back.host.net @@ -383,7 +383,7 @@ #O DefaultCharSet=unknown-8bit # service switch file (name hardwired on Solaris, Ultrix, OSF/1, others) -#O ServiceSwitchFile=/etc/mail/service.switch +#O ServiceSwitchFile=/opt/csw/etc/mail/service.switch # hosts file (normally /etc/hosts) #O HostsFile=/etc/hosts @@ -497,7 +497,7 @@ #O AuthRealm # default authentication information for outgoing connections -#O DefaultAuthInfo=/etc/mail/default-auth-info +#O DefaultAuthInfo=/opt/csw/etc/mail/default-auth-info # SMTP AUTH flags #O AuthOptions @@ -557,7 +557,7 @@ ##################### # this is equivalent to setting class "t" -#Ft/etc/mail/trusted-users +#Ft/opt/csw/etc/mail/trusted-users Troot Tdaemon Tuucp Modified: csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-13 20:53:28 UTC (rev 6024) +++ csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-13 21:22:21 UTC (rev 6025) @@ -86,7 +86,7 @@ # Hosts for which relaying is permitted ($=R) -FR-o /etc/mail/relay-domains +FR-o /opt/csw/etc/mail/relay-domains # arithmetic map Karith arith @@ -131,7 +131,7 @@ O AliasWait=10 # location of alias file -#O AliasFile=/etc/mail/aliases +#O AliasFile=/opt/csw/etc/mail/aliases # minimum number of free blocks on filesystem O MinFreeBlocks=100 @@ -152,7 +152,7 @@ O DeliveryMode=i # error message header/file -#O ErrorHeader=/etc/mail/error-header +#O ErrorHeader=/opt/csw/etc/mail/error-header # error mode #O ErrorMode=print @@ -173,7 +173,7 @@ #O MaxHopCount=25 # location of help file -O HelpFile=/etc/mail/helpfile +O HelpFile=/opt/csw/etc/mail/helpfile # ignore dots as terminators in incoming messages? #O IgnoreDots=False @@ -327,7 +327,7 @@ #O DefaultUser=mailnull # list of locations of user database file (null means no lookup) -#O UserDatabaseSpec=/etc/mail/userdb +#O UserDatabaseSpec=/opt/csw/etc/mail/userdb # fallback MX host #O FallbackMXhost=fall.back.host.net @@ -375,7 +375,7 @@ #O DefaultCharSet=unknown-8bit # service switch file (name hardwired on Solaris, Ultrix, OSF/1, others) -#O ServiceSwitchFile=/etc/mail/service.switch +#O ServiceSwitchFile=/opt/csw/etc/mail/service.switch # hosts file (normally /etc/hosts) #O HostsFile=/etc/hosts @@ -489,7 +489,7 @@ #O AuthRealm # default authentication information for outgoing connections -#O DefaultAuthInfo=/etc/mail/default-auth-info +#O DefaultAuthInfo=/opt/csw/etc/mail/default-auth-info # SMTP AUTH flags #O AuthOptions @@ -549,7 +549,7 @@ ##################### # this is equivalent to setting class "t" -#Ft/etc/mail/trusted-users +#Ft/opt/csw/etc/mail/trusted-users Troot Tdaemon Tuucp 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 Aug 13 23:25:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 21:25:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6026] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6026 http://gar.svn.sourceforge.net/gar/?rev=6026&view=rev Author: valholla Date: 2009-08-13 21:25:20 +0000 (Thu, 13 Aug 2009) Log Message: ----------- update checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-13 21:22:21 UTC (rev 6025) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-13 21:25:20 UTC (rev 6026) @@ -9,15 +9,15 @@ e89e68f3e0ae84d665c4ab898a8f3325 download/Sun-sendmail-deactivate.sh 1c3a63f98171aa28a2714995ee938a2c download/Sun-sendmail-reactivate.sh 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW -2592f7d191867c1d1c63ff16d818dcb5 download/cswsendmail +f29185ffb69e60c500f4b791894a12fa download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz -3c970e5b4e9831a8774906ed36e11f52 download/sendmail.cf.CSW +83532fac66f749a1532d461ce6bb2791 download/sendmail.cf.CSW 48851e45dca2a65a77f64f738bbf8d20 download/sendmail.schema ae82c974452cfdc7b4c5be2576154cdf download/site.config.m4 d41d8cd98f00b204e9800998ecf8427e download/sm-client.st.CSW d41d8cd98f00b204e9800998ecf8427e download/statistics.CSW -b64521d2a1365dc3f5f93b332e026054 download/submit.cf.CSW +3fe39c11ac0598f3f9fa26b2676a2704 download/submit.cf.CSW d41d8cd98f00b204e9800998ecf8427e download/trusted-users.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Aug 14 02:50:55 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 14 Aug 2009 00:50:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6027] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 6027 http://gar.svn.sourceforge.net/gar/?rev=6027&view=rev Author: bdwalton Date: 2009-08-14 00:50:54 +0000 (Fri, 14 Aug 2009) Log Message: ----------- bump to 1.6.4, enable new asciidoc option Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-08-13 21:25:20 UTC (rev 6026) +++ csw/mgar/pkg/git/trunk/Makefile 2009-08-14 00:50:54 UTC (rev 6027) @@ -1,5 +1,5 @@ GARNAME = git -GARVERSION = 1.6.3.3 +GARVERSION = 1.6.4 #xPATCHLEVEL = rc3 CATEGORIES = devel @@ -102,6 +102,7 @@ BUILD_ARGS = MSGFMT=gmsgfmt SHELL_PATH=/opt/csw/bin/bash \ ETC_GITCONFIG=$(sysconfdir)/gitconfig V=1 \ + ASCIIDOC_NO_ROFF=YesPlease \ all doc INSTALL_ARGS = ETC_GITCONFIG=$(sysconfdir)/gitconfig \ 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 Aug 14 21:48:18 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 19:48:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6028] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6028 http://gar.svn.sourceforge.net/gar/?rev=6028&view=rev Author: valholla Date: 2009-08-14 19:48:18 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweak pacakge install Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/cswsendmail csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW Added Paths: ----------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 19:48:18 UTC (rev 6028) @@ -17,26 +17,24 @@ MY_CLASSES = CSWsendmail.i.sol8 CSWsendmail.i.sol9 CSWsendmail.i.sol10 DISTFILES = $(GARNAME).$(GARVERSION).tar.gz -DISTFILES += README.CSW sendmail.schema +DISTFILES += README.CSW sendmail.schema CSWsendmail.postinstall DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) CSWsendmail.checkinstall DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) -# We define upstream file regex so we can be notifed of new upstream software release +# We define upstream file regex so we can be notifed of +# new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz # we require -PACKAGES = CSWsendmail CSWsendmailcommon +PACKAGES = CSWsendmail SPKG_SOURCEURL = http://www.sendmail.org/ SPKG_DESC_CSWsendmail = $(DESCRIPTION) -SPKG_DESC_CSWsendmailcommon = $(DESCRIPTION) common files CATALOGNAME_CSWsendmail = sendmail -CATALOGNAME_CSWsendmailcommon = sendmail_common -REQUIRED_PKGS_CSWsendmail = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils CSWsendmailcommon -REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils -ARCHALL_CSWsendmailcommon = 1 +REQUIRED_PKGS_CSWsendmail = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap +REQUIRED_PKGS_CSWsendmail = CSWcswclassutils PROTOTYPE_FILTER = awk \ '$$$$2 ~/i.sol8/ { next } \ @@ -52,11 +50,6 @@ { print "i i.sol9=CSWsendmail.i.sol9" } \ { print "i i.sol10=CSWsendmail.i.sol10" } } ' -PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* -PKGFILES_CSWsendmailcommon += .*$(mandir)/.* -PKGFILES_CSWsendmailcommon += .*$(sysconfdir)/.* -PKGFILES_CSWsendmailcommon += .*/clientmqueue/.* - ENABLE_CHECK = 0 # patch away GNUism @@ -108,7 +101,6 @@ ginstall -d $(DESTDIR)/var/opt/csw/spool/clientmqueue ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d - ginstall -d $(DESTDIR)$(sysconfdir)/mail @# install the libraries @( for file in $(LIBFILES) ; do \ @@ -154,9 +146,9 @@ @# install configurations, XXX missing submit.cf/sendmail.cf ( for file in `cd $(DOWNLOADDIR) && ls *.CSW`; do \ ginstall -m 644 $(DOWNLOADDIR)/$$file \ - $(DESTDIR)$(sysconfdir)/mail/$$file; \ + $(DESTDIR)/etc/mail/$$file; \ done ) - ( mv $(DESTDIR)$(sysconfdir)/mail/sm-client.st.CSW \ + ( mv $(DESTDIR)/etc/mail/sm-client.st.CSW \ $(DESTDIR)/var/opt/csw/spool/clientmqueue/ ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 19:48:18 UTC (rev 6028) @@ -1,7 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -10454c9eb3d165f2f22c2b9455bcfdcc download/CSWsendmail.i.sol10 -54c255c3fce635ee7d8ac11a75ba25f7 download/CSWsendmail.i.sol8 -b78ddd9dc3835093e6994cd57d9e6824 download/CSWsendmail.i.sol9 +0aab5819ec16ce027de89639ab07b92b download/CSWsendmail.i.sol10 +f7f3ab3921489804a0101689113eb1fd download/CSWsendmail.i.sol8 +d3a9427469f567764de86282d1df4666 download/CSWsendmail.i.sol9 +4481ed1568f2b46138aeaa3ef54567f6 download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space @@ -9,15 +10,15 @@ e89e68f3e0ae84d665c4ab898a8f3325 download/Sun-sendmail-deactivate.sh 1c3a63f98171aa28a2714995ee938a2c download/Sun-sendmail-reactivate.sh 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW -f29185ffb69e60c500f4b791894a12fa download/cswsendmail +f6aaf64942df693bfea12419f3746fc0 download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz -83532fac66f749a1532d461ce6bb2791 download/sendmail.cf.CSW +c4519ecd5cfddf608928f002f5bca295 download/sendmail.cf.CSW 48851e45dca2a65a77f64f738bbf8d20 download/sendmail.schema ae82c974452cfdc7b4c5be2576154cdf download/site.config.m4 d41d8cd98f00b204e9800998ecf8427e download/sm-client.st.CSW d41d8cd98f00b204e9800998ecf8427e download/statistics.CSW -3fe39c11ac0598f3f9fa26b2676a2704 download/submit.cf.CSW +d26b6dfacd01430158a881c026f61dab download/submit.cf.CSW d41d8cd98f00b204e9800998ecf8427e download/trusted-users.CSW Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 19:48:18 UTC (rev 6028) @@ -20,5 +20,6 @@ echo $dest2 /usr/bin/cp $src $dest2 || exit 2 /usr/bin/chmod 0755 $dest2 -done +done | /usr/sbin/installf -c sol10 $PKGINST - +/usr/sbin/installf -f -c sol10 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 19:48:18 UTC (rev 6028) @@ -20,5 +20,6 @@ echo $dest2 /usr/bin/cp $src $dest2 || exit 2 /usr/bin/chmod 0755 $dest2 -done +done | /usr/sbin/installf -c sol8 $PKGINST - +/usr/sbin/installf -f -c sol8 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 19:48:18 UTC (rev 6028) @@ -20,5 +20,7 @@ echo $dest2 /usr/bin/cp $src $dest2 || exit 2 /usr/bin/chmod 0755 $dest2 -done +done | /usr/sbin/installf -c sol9 $PKGINST - +/usr/sbin/installf -f -c sol9 $PKGINST + exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 19:48:18 UTC (rev 6028) @@ -0,0 +1,19 @@ +#!/bin/sh +PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin + +CONFDIR=/etc/mail + +for file in `cd ${CONFDIR} && ls *.CSW 2>/dev/null` +do + real_file="`echo ${file} |sed 's/\.CSW$//'`" + if [ ! -f ${CONFDIR}/${real_file} ] + then + cp ${CONFDIR}/${file} ${CONFDIR}/${real_file} + else + echo "Preserving ${real_file}..." + fi +done + +exit 0 + + Modified: csw/mgar/pkg/sendmail/trunk/files/cswsendmail =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-14 19:48:18 UTC (rev 6028) @@ -6,13 +6,12 @@ #ident "@(#)sendmail 1.19 01/12/05 SMI" # Modified for CSW by Alex Moore 01/01/2004 -CSW_DIR="/opt/csw" ERRMSG1='WARNING: /var/mail is NFS-mounted without setting actimeo=0,' ERRMSG2='this can cause mailbox locking and access problems.' SERVER_PID_FILE="/var/run/sendmail.pid" -CLIENT_PID_FILE="/var${CSW_DIR}/spool/clientmqueue/sm-client.pid" -DEFAULT_FILE="${CSW_DIR}/etc/default/sendmail" -ALIASES_FILE="${CSW_DIR}/etc/mail/aliases" +CLIENT_PID_FILE="/var/opt/csw/spool/clientmqueue/sm-client.pid" +DEFAULT_FILE="/opt/csw/etc/default/sendmail" +ALIASES_FILE="/opt/csw/etc/mail/aliases" check_queue_interval_syntax() { @@ -34,14 +33,14 @@ ;; 'start') - if [ -f ${CSW_DIR}/lib/sendmail -a -f ${CSW_DIR}/etc/mail/sendmail.cf ]; then - if [ ! -d /var${CSW_DIR}/spool/mqueue ]; then - /usr/bin/mkdir -pm 0750 /var${CSW_DIR}/spool/mqueue - /usr/bin/chown root:bin /var${CSW_DIR}/spool/mqueue + if [ -f /opt/csw/lib/sendmail -a -f /opt/csw/etc/mail/sendmail.cf ]; then + if [ ! -d /var/opt/csw/spool/mqueue ]; then + /usr/bin/mkdir -pm 0750 /var/opt/csw/spool/mqueue + /usr/bin/chown root:bin /var/opt/csw/spool/mqueue fi if [ ! -f $ALIASES_FILE.db ] && [ ! -f $ALIASES_FILE.dir ] \ && [ ! -f $ALIASES_FILE.pag ]; then - ${CSW_DIR}/bin/newaliases + /opt/csw/bin/newaliases fi MODE="-bd" [ -f $DEFAULT_FILE ] && . $DEFAULT_FILE @@ -62,8 +61,8 @@ fi check_queue_interval_syntax $CLIENTQUEUEINTERVAL CLIENTQUEUEINTERVAL=$answer - ${CSW_DIR}/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & - ${CSW_DIR}/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & + /opt/csw/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & + /opt/csw/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & # # ETRN_HOSTS should be of the form # "s1:c1.1,c1.2 s2:c2.1 s3:c3.1,c3.2,c3.3" @@ -99,7 +98,7 @@ kill `head -1 $CLIENT_PID_FILE` rm -f $CLIENT_PID_FILE fi - /usr/bin/pkill -x -u 0 sendmail + /usr/bin/pkill -x -u smmsp sendmail ;; *) Modified: csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 19:48:18 UTC (rev 6028) @@ -44,7 +44,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10/Berkeley +V10 # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred Modified: csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 19:48:18 UTC (rev 6028) @@ -38,7 +38,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10/Berkeley +V10 # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred 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 Aug 14 22:15:18 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 20:15:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6029] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6029 http://gar.svn.sourceforge.net/gar/?rev=6029&view=rev Author: valholla Date: 2009-08-14 20:15:18 +0000 (Fri, 14 Aug 2009) Log Message: ----------- fix missing dir Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 19:48:18 UTC (rev 6028) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 20:15:18 UTC (rev 6029) @@ -101,6 +101,7 @@ ginstall -d $(DESTDIR)/var/opt/csw/spool/clientmqueue ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d + ginstall -d $(DESTDIR)/etc/mail @# install the libraries @( for file in $(LIBFILES) ; do \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Fri Aug 14 22:34:56 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Fri, 14 Aug 2009 20:34:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[6030] csw/mgar/pkg/ldns/trunk Message-ID: Revision: 6030 http://gar.svn.sourceforge.net/gar/?rev=6030&view=rev Author: idogan23 Date: 2009-08-14 20:34:56 +0000 (Fri, 14 Aug 2009) Log Message: ----------- ldns: bump version to 1.6.1 Modified Paths: -------------- csw/mgar/pkg/ldns/trunk/Makefile csw/mgar/pkg/ldns/trunk/checksums Modified: csw/mgar/pkg/ldns/trunk/Makefile =================================================================== --- csw/mgar/pkg/ldns/trunk/Makefile 2009-08-14 20:15:18 UTC (rev 6029) +++ csw/mgar/pkg/ldns/trunk/Makefile 2009-08-14 20:34:56 UTC (rev 6030) @@ -1,5 +1,5 @@ GARNAME = ldns -GARVERSION = 1.6.0 +GARVERSION = 1.6.1 CATEGORIES = lib DESCRIPTION = A library for programs conforming to DNS RFCs and drafts Modified: csw/mgar/pkg/ldns/trunk/checksums =================================================================== --- csw/mgar/pkg/ldns/trunk/checksums 2009-08-14 20:15:18 UTC (rev 6029) +++ csw/mgar/pkg/ldns/trunk/checksums 2009-08-14 20:34:56 UTC (rev 6030) @@ -1,2 +1,2 @@ b5516aacfa819947cbfb6d0c34f0c546 download/CSWldns.doxyparse.diff -cd0d4d34a60d018fbfedae6d3ee4049b download/ldns-1.6.0.tar.gz +a44dafecdcc49aaea5d20ae15bc738c0 download/ldns-1.6.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 Fri Aug 14 23:17:33 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:17:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[6031] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6031 http://gar.svn.sourceforge.net/gar/?rev=6031&view=rev Author: valholla Date: 2009-08-14 21:17:32 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweaks Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW csw/mgar/pkg/sendmail/trunk/files/site.config.m4 csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 21:17:32 UTC (rev 6031) @@ -101,7 +101,7 @@ ginstall -d $(DESTDIR)/var/opt/csw/spool/clientmqueue ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d - ginstall -d $(DESTDIR)/etc/mail + ginstall -d $(DESTDIR)$(sysconfdir)/mail @# install the libraries @( for file in $(LIBFILES) ; do \ @@ -147,9 +147,9 @@ @# install configurations, XXX missing submit.cf/sendmail.cf ( for file in `cd $(DOWNLOADDIR) && ls *.CSW`; do \ ginstall -m 644 $(DOWNLOADDIR)/$$file \ - $(DESTDIR)/etc/mail/$$file; \ + $(DESTDIR)$(sysconfdir)/mail/$$file; \ done ) - ( mv $(DESTDIR)/etc/mail/sm-client.st.CSW \ + ( mv $(DESTDIR)$(sysconfdir)/mail/sm-client.st.CSW \ $(DESTDIR)/var/opt/csw/spool/clientmqueue/ ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,8 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -0aab5819ec16ce027de89639ab07b92b download/CSWsendmail.i.sol10 -f7f3ab3921489804a0101689113eb1fd download/CSWsendmail.i.sol8 -d3a9427469f567764de86282d1df4666 download/CSWsendmail.i.sol9 -4481ed1568f2b46138aeaa3ef54567f6 download/CSWsendmail.postinstall +255bd920bcc53ac59c77baaddaef4a9a download/CSWsendmail.i.sol10 +03b75dfa8a856c960798b9080ec665b6 download/CSWsendmail.i.sol8 +e81aadce9e5c295e3aed9c06dff25426 download/CSWsendmail.i.sol9 +a1d58264002e59e2f3ee6694a925c154 download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space @@ -15,10 +15,10 @@ d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz -c4519ecd5cfddf608928f002f5bca295 download/sendmail.cf.CSW +83532fac66f749a1532d461ce6bb2791 download/sendmail.cf.CSW 48851e45dca2a65a77f64f738bbf8d20 download/sendmail.schema -ae82c974452cfdc7b4c5be2576154cdf download/site.config.m4 +4dd792981f89ffa8b4602999a7c79441 download/site.config.m4 d41d8cd98f00b204e9800998ecf8427e download/sm-client.st.CSW d41d8cd98f00b204e9800998ecf8427e download/statistics.CSW -d26b6dfacd01430158a881c026f61dab download/submit.cf.CSW +3fe39c11ac0598f3f9fa26b2676a2704 download/submit.cf.CSW d41d8cd98f00b204e9800998ecf8427e download/trusted-users.CSW Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,14 +1,3 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh # echo "Installing class ." while read src dest @@ -18,8 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 + /usr/bin/mv $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 || exit 2 + /usr/sbin/removef -c sol10 $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol10 $PKGINST - /usr/sbin/installf -f -c sol10 $PKGINST +/usr/sbin/removef -f -c sol10 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,14 +1,3 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh # echo "Installing class ." while read src dest @@ -19,7 +8,9 @@ dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 + /usr/bin/chmod 0755 $dest2 || exit 2 + /usr/sbin/removef -c sol8 $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol8 $PKGINST - /usr/sbin/installf -f -c sol8 $PKGINST +/usr/sbin/removef -f -c sol8 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,14 +1,3 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh # echo "Installing class ." while read src dest @@ -19,8 +8,10 @@ dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 + /usr/bin/chmod 0755 $dest2 || exit 2 + /usr/sbin/removef -c sol9 $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol9 $PKGINST - /usr/sbin/installf -f -c sol9 $PKGINST +/usr/sbin/removef -f -c sol9 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,7 +1,7 @@ #!/bin/sh PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin -CONFDIR=/etc/mail +CONFDIR=/opt/csw/etc/mail for file in `cd ${CONFDIR} && ls *.CSW 2>/dev/null` do @@ -14,6 +14,11 @@ fi done +echo "** IMPORTANT **" +echo "This package no longer replaces Sun's sendmail files." +echo "Be sure to Deactivate Sun's Sendmail program." +echo + exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 21:17:32 UTC (rev 6031) @@ -44,7 +44,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10 +V10/Berkeley # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred Modified: csw/mgar/pkg/sendmail/trunk/files/site.config.m4 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/site.config.m4 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/site.config.m4 2009-08-14 21:17:32 UTC (rev 6031) @@ -21,14 +21,14 @@ APPENDDEF(`confLIBDIRS', `-L/opt/csw/lib -R/opt/csw/lib') APPENDDEF(`confINCDIRS', `-I/opt/csw/include') APPENDDEF(`conf_sendmail_ENVDEF', `-I/opt/csw/include') -dnl we should not need this.. -dnl APPENDDEF(`confLIBDIRS', `-L/opt/csw/bdb44/lib -R/opt/csw/bdb44/lib') -dnl APPENDDEF(`confINCDIRS', `-I/opt/csw/bdb44/include') dnl ### add NIS/NIS+ support APPENDDEF(`confENVDEF', `-DNIS') APPENDDEF(`confENVDEF', `-DNISPLUS') +dnl ### use our sendmail.cf path +APPENDDEF(`confENVDEF', `-DUSE_VENDOR_CF_PATH') + dnl ### add LDAP support APPENDDEF(`conf_libsm_ENVDEF', `-DLDAPMAP') APPENDDEF(`conf_sendmail_ENVDEF', `-DLDAPMAP') Modified: csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 21:17:32 UTC (rev 6031) @@ -38,7 +38,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10 +V10/Berkeley # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred 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 Aug 14 23:30:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:30:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6032] csw/mgar/pkg/sendmail/trunk/files Message-ID: Revision: 6032 http://gar.svn.sourceforge.net/gar/?rev=6032&view=rev Author: valholla Date: 2009-08-14 21:30:21 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweak class files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:17:32 UTC (rev 6031) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:30:21 UTC (rev 6032) @@ -7,10 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 - /usr/bin/mv $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 || exit 2 - /usr/sbin/removef -c sol10 $PKGINST $src >/dev/null || exit 2 + /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/rm -f $src + /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol10 $PKGINST - /usr/sbin/installf -f -c sol10 $PKGINST -/usr/sbin/removef -f -c sol10 $PKGINST +/usr/sbin/removef -f $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:17:32 UTC (rev 6031) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:30:21 UTC (rev 6032) @@ -7,10 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 || exit 2 - /usr/sbin/removef -c sol8 $PKGINST $src >/dev/null || exit 2 + /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/rm -f $src + /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol8 $PKGINST - /usr/sbin/installf -f -c sol8 $PKGINST -/usr/sbin/removef -f -c sol8 $PKGINST +/usr/sbin/removef -f $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:17:32 UTC (rev 6031) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:30:21 UTC (rev 6032) @@ -7,11 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 || exit 2 - /usr/sbin/removef -c sol9 $PKGINST $src >/dev/null || exit 2 + /usr/bin/cp -p $src $dest2 || exit 2 + /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol9 $PKGINST - /usr/sbin/installf -f -c sol9 $PKGINST -/usr/sbin/removef -f -c sol9 $PKGINST +/usr/sbin/removef -f $PKGINST 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 Aug 14 23:31:12 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:31:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[6033] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6033 http://gar.svn.sourceforge.net/gar/?rev=6033&view=rev Author: valholla Date: 2009-08-14 21:31:12 +0000 (Fri, 14 Aug 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:30:21 UTC (rev 6032) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:31:12 UTC (rev 6033) @@ -1,7 +1,7 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -255bd920bcc53ac59c77baaddaef4a9a download/CSWsendmail.i.sol10 -03b75dfa8a856c960798b9080ec665b6 download/CSWsendmail.i.sol8 -e81aadce9e5c295e3aed9c06dff25426 download/CSWsendmail.i.sol9 +ab9a267a567696147a4338fc227c1493 download/CSWsendmail.i.sol10 +776bf7c6af3389b9ba7369188a35c61f download/CSWsendmail.i.sol8 +da276cb497e869ddcd478e4a0c39329b download/CSWsendmail.i.sol9 a1d58264002e59e2f3ee6694a925c154 download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove 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 Aug 14 23:55:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6034] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6034 http://gar.svn.sourceforge.net/gar/?rev=6034&view=rev Author: valholla Date: 2009-08-14 21:55:24 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweaking pacakge files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:55:24 UTC (rev 6034) @@ -1,8 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -ab9a267a567696147a4338fc227c1493 download/CSWsendmail.i.sol10 -776bf7c6af3389b9ba7369188a35c61f download/CSWsendmail.i.sol8 -da276cb497e869ddcd478e4a0c39329b download/CSWsendmail.i.sol9 -a1d58264002e59e2f3ee6694a925c154 download/CSWsendmail.postinstall +010a319390da36f704b929bc39ec3cd4 download/CSWsendmail.i.sol10 +f710fa2b1715480eea79242d4e31564c download/CSWsendmail.i.sol8 +7becfceb90cc0dcf719312f6754342bb download/CSWsendmail.i.sol9 +1e48aef4cf17d99098a666f2cfd219fd download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:55:24 UTC (rev 6034) @@ -8,9 +8,5 @@ dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 /usr/bin/cp -p $src $dest2 || exit 2 - /usr/bin/rm -f $src - /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 -done | /usr/sbin/installf -c sol10 $PKGINST - -/usr/sbin/installf -f -c sol10 $PKGINST -/usr/sbin/removef -f $PKGINST +done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:55:24 UTC (rev 6034) @@ -8,9 +8,5 @@ dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 /usr/bin/cp -p $src $dest2 || exit 2 - /usr/bin/rm -f $src - /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 -done | /usr/sbin/installf -c sol8 $PKGINST - -/usr/sbin/installf -f -c sol8 $PKGINST -/usr/sbin/removef -f $PKGINST +done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:55:24 UTC (rev 6034) @@ -8,9 +8,6 @@ dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 /usr/bin/cp -p $src $dest2 || exit 2 - /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 -done | /usr/sbin/installf -c sol9 $PKGINST - -/usr/sbin/installf -f -c sol9 $PKGINST -/usr/sbin/removef -f $PKGINST +done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:55:24 UTC (rev 6034) @@ -2,6 +2,7 @@ PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin CONFDIR=/opt/csw/etc/mail +SOLVER="sol`uname -r |sed 's/5\.//'`" for file in `cd ${CONFDIR} && ls *.CSW 2>/dev/null` do @@ -14,10 +15,37 @@ fi done -echo "** IMPORTANT **" -echo "This package no longer replaces Sun's sendmail files." -echo "Be sure to Deactivate Sun's Sendmail program." -echo +## Fixing package Dtabase +echo "Notify Package Dtabase about file renaming" +installf -c ${SOLVER} $PKGINST /opt/csw/bin/vacation +installf -c ${SOLVER} $PKGINST /opt/csw/lib/mail.local +installf -c ${SOLVER} $PKGINST /opt/csw/lib/rmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/sendmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/smrsh +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/mailstats +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/praliases +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/editmap +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/makemap +installf -f -c ${SOLVER} $PKGINST +rm -f /opt/csw/bin/${SOLVER}.vacation +removef $PKGINST /opt/csw/bin/${SOLVER}.vacation +rm -f /opt/csw/lib/${SOLVER}.mail.local +removef $PKGINST /opt/csw/lib/${SOLVER}.mail.local +rm -f /opt/csw/lib/${SOLVER}.rmail +removef $PKGINST /opt/csw/lib/${SOLVER}.rmail +rm -f /opt/csw/lib/${SOLVER}.sendmail +removef $PKGINST /opt/csw/lib/${SOLVER}.sendmail +rm -f /opt/csw/lib/${SOLVER}.smrsh +removef $PKGINST /opt/csw/lib/${SOLVER}.smrsh +rm -f /opt/csw/sbin/${SOLVER}.mailstats +removef $PKGINST /opt/csw/sbin/${SOLVER}.mailstats +rm -f /opt/csw/sbin/${SOLVER}.praliases +removef $PKGINST /opt/csw/sbin/${SOLVER}.praliases +rm -f /opt/csw/sbin/${SOLVER}.editmap +removef $PKGINST /opt/csw/sbin/${SOLVER}.editmap +rm -f /opt/csw/sbin/${SOLVER}.makemap +removef $PKGINST /opt/csw/sbin/${SOLVER}.makemap +removef -f $PKGINST 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 Sat Aug 15 00:32:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 22:32:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6035] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6035 http://gar.svn.sourceforge.net/gar/?rev=6035&view=rev Author: valholla Date: 2009-08-14 22:32:21 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweaks pacakge files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 22:32:21 UTC (rev 6035) @@ -44,7 +44,6 @@ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ - $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print } \ END { { print "i i.sol8=CSWsendmail.i.sol8" } \ { print "i i.sol9=CSWsendmail.i.sol9" } \ Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 22:32:21 UTC (rev 6035) @@ -1,8 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -010a319390da36f704b929bc39ec3cd4 download/CSWsendmail.i.sol10 -f710fa2b1715480eea79242d4e31564c download/CSWsendmail.i.sol8 -7becfceb90cc0dcf719312f6754342bb download/CSWsendmail.i.sol9 -1e48aef4cf17d99098a666f2cfd219fd download/CSWsendmail.postinstall +c3da08ce0fb744123b3389dfdcaa22f7 download/CSWsendmail.i.sol10 +d0ddc9602bfbefac87467a418cc577cb download/CSWsendmail.i.sol8 +81131c94c1b339f08474bfc6a1ed934c download/CSWsendmail.i.sol9 +bd7692abc055a1da40d938379e92b12f download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 22:32:21 UTC (rev 6035) @@ -7,6 +7,6 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 - /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/cp $src $dest2 || exit 2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 22:32:21 UTC (rev 6035) @@ -7,6 +7,6 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 - /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/cp $src $dest2 || exit 2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 22:32:21 UTC (rev 6035) @@ -7,7 +7,7 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 - /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/cp $src $dest2 || exit 2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 22:32:21 UTC (rev 6035) @@ -15,34 +15,71 @@ fi done -## Fixing package Dtabase -echo "Notify Package Dtabase about file renaming" -installf -c ${SOLVER} $PKGINST /opt/csw/bin/vacation -installf -c ${SOLVER} $PKGINST /opt/csw/lib/mail.local -installf -c ${SOLVER} $PKGINST /opt/csw/lib/rmail -installf -c ${SOLVER} $PKGINST /opt/csw/lib/sendmail -installf -c ${SOLVER} $PKGINST /opt/csw/lib/smrsh -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/mailstats -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/praliases -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/editmap -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/makemap +echo "Updating Package Dtabase for /opt/csw/bin/vacation" +chmod 0555 /opt/csw/bin/vacation +chown root:bin /opt/csw/bin/vacation +installf -c ${SOLVER} $PKGINST /opt/csw/bin/vacation f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/mail.local" +chown root:bin /opt/csw/lib/mail.local +chmod 0555 /opt/csw/lib/mail.local +installf -c ${SOLVER} $PKGINST /opt/csw/lib/mail.local f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/rmail" +chown root:bin /opt/csw/lib/rmail +chmod 0555 /opt/csw/lib/rmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/rmail f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/sendmail" +chown root:smmsp /opt/csw/lib/sendmail +chmod 2555 /opt/csw/lib/sendmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/sendmail f 2555 root smmsp || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/smrsh" +chown root:bin /opt/csw/lib/smrsh +chmod 0555 /opt/csw/lib/smrsh +installf -c ${SOLVER} $PKGINST /opt/csw/lib/smrsh f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/mailstats" +chown root:bin /opt/csw/sbin/mailstats +chmod 0555 /opt/csw/sbin/mailstats +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/mailstats f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/praliases" +chown root:bin /opt/csw/sbin/praliases +chmod 0555 /opt/csw/sbin/praliases +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/praliases f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/editmap" +chown root:bin /opt/csw/sbin/editmap +chmod 0555 /opt/csw/sbin/editmap +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/editmap f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/makemap" +chown root:bin /opt/csw/sbin/makemap +chmod 0555 /opt/csw/sbin/makemap +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/makemap f 0555 root bin || exit 2 + installf -f -c ${SOLVER} $PKGINST + +## Cleanup of OS Versioned Class files +echo "Updating Pacakge Database for /opt/csw/bin/${SOLVER}.vacation" rm -f /opt/csw/bin/${SOLVER}.vacation removef $PKGINST /opt/csw/bin/${SOLVER}.vacation +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.mail.local" rm -f /opt/csw/lib/${SOLVER}.mail.local removef $PKGINST /opt/csw/lib/${SOLVER}.mail.local +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.rmail" rm -f /opt/csw/lib/${SOLVER}.rmail removef $PKGINST /opt/csw/lib/${SOLVER}.rmail +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.sendmail" rm -f /opt/csw/lib/${SOLVER}.sendmail removef $PKGINST /opt/csw/lib/${SOLVER}.sendmail +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.smrsh" rm -f /opt/csw/lib/${SOLVER}.smrsh removef $PKGINST /opt/csw/lib/${SOLVER}.smrsh +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.mailstats" rm -f /opt/csw/sbin/${SOLVER}.mailstats removef $PKGINST /opt/csw/sbin/${SOLVER}.mailstats +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.praliases" rm -f /opt/csw/sbin/${SOLVER}.praliases removef $PKGINST /opt/csw/sbin/${SOLVER}.praliases +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.editmap" rm -f /opt/csw/sbin/${SOLVER}.editmap removef $PKGINST /opt/csw/sbin/${SOLVER}.editmap +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.makemap" rm -f /opt/csw/sbin/${SOLVER}.makemap removef $PKGINST /opt/csw/sbin/${SOLVER}.makemap removef -f $PKGINST This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 15 11:23:09 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 15 Aug 2009 09:23:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[6036] csw/mgar/pkg Message-ID: Revision: 6036 http://gar.svn.sourceforge.net/gar/?rev=6036&view=rev Author: rthurner Date: 2009-08-15 09:23:09 +0000 (Sat, 15 Aug 2009) Log Message: ----------- ipython, first version. gives a core dump when running Added Paths: ----------- csw/mgar/pkg/ipython/ csw/mgar/pkg/ipython/branches/ csw/mgar/pkg/ipython/tags/ csw/mgar/pkg/ipython/trunk/ csw/mgar/pkg/ipython/trunk/Makefile csw/mgar/pkg/ipython/trunk/checksums csw/mgar/pkg/ipython/trunk/files/ Property changes on: csw/mgar/pkg/ipython/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/ipython/trunk/Makefile =================================================================== --- csw/mgar/pkg/ipython/trunk/Makefile (rev 0) +++ csw/mgar/pkg/ipython/trunk/Makefile 2009-08-15 09:23:09 UTC (rev 6036) @@ -0,0 +1,39 @@ +GARNAME = ipython +GARVERSION = 0.10 +CATEGORIES = lang + +DESCRIPTION = Python toolkit for generation of output for the web +define BLURB + Genshi is a Python library that provides an integrated set of + components for parsing, generating, and processing HTML, XML + or other textual content for output generation on the web +endef + +MASTER_SITES = http://ipython.scipy.org/dist/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +ARCHALL_CSWipython = 1 +PACKAGES = CSWipython +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +# comment what this does or remove it +# PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + +REQUIRED_PKGS_CSWipython = CSWpython-rt +CATALOGNAME_CSWipython = ipython +SPKG_DESC_CSWipython = $(DESCRIPTION) + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = $(WORKSRC)/setup.py +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/setup.py + +INSTALL_ARGS += --root=$(DESTDIR) + +include gar/category.mk + Added: csw/mgar/pkg/ipython/trunk/checksums =================================================================== --- csw/mgar/pkg/ipython/trunk/checksums (rev 0) +++ csw/mgar/pkg/ipython/trunk/checksums 2009-08-15 09:23:09 UTC (rev 6036) @@ -0,0 +1 @@ +dd10cd1b622c16c1afca2239fcc0dfdf download/ipython-0.10.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Aug 16 11:17:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 16 Aug 2009 09:17:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6037] csw/mgar/pkg/bdb4/trunk/Makefile Message-ID: Revision: 6037 http://gar.svn.sourceforge.net/gar/?rev=6037&view=rev Author: dmichelsen Date: 2009-08-16 09:17:24 +0000 (Sun, 16 Aug 2009) Log Message: ----------- bdb4: Fix SOURCEURL Modified Paths: -------------- csw/mgar/pkg/bdb4/trunk/Makefile Modified: csw/mgar/pkg/bdb4/trunk/Makefile =================================================================== --- csw/mgar/pkg/bdb4/trunk/Makefile 2009-08-15 09:23:09 UTC (rev 6036) +++ csw/mgar/pkg/bdb4/trunk/Makefile 2009-08-16 09:17:24 UTC (rev 6037) @@ -2,7 +2,7 @@ GARVERSION = 4.2.52 CATEGORIES = lib -DESCRIPTION = Provides embedded database support for applications +DESCRIPTION = This is a stub to BerkeleyDB 4.7 libraries from CSWbdb define BLURB Berkeley DB (libdb) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. It includes @@ -13,18 +13,20 @@ (MSVC 4, 5 and 6). endef -MASTER_SITES = ftp://ftp.sleepycat.com/releases/ +REQUIRED_PKGS = CSWbdb + +PACKAGES = CSWbdb4 +CATALOGNAME = berkeleydb4 + +SPKG_SOURCEURL = http://www.oracle.com/technology/software/products/berkeley-db/db/index.html + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = INSTALL_SCRIPTS = custom-$(GARCH) custom-all TEST_SCRIPTS = ENABLE_CHECK = 0 -PACKAGES = CSWbdb4 -SPKG_DESC = Embedded database libraries and utilities -CATALOGNAME = berkeleydb4 -REQUIRED_PKGS = CSWbdb include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Aug 17 15:10:30 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 17 Aug 2009 13:10:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6038] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 6038 http://gar.svn.sourceforge.net/gar/?rev=6038&view=rev Author: bonivart Date: 2009-08-17 13:10:30 +0000 (Mon, 17 Aug 2009) Log Message: ----------- perl: add MERGE_EXCLUDE_STATICLIBS to fix XS compilation (Dago) Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-16 09:17:24 UTC (rev 6037) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-17 13:10:30 UTC (rev 6038) @@ -118,6 +118,9 @@ # Tests take a long time TEST_SCRIPTS = +# Do not exclude static libs as at least DynaLoader.a is needed for XS compilation +MERGE_EXCLUDE_STATICLIBS = + include gar/category.mk ifneq ($(CORE_UPDATES),) POST_TARGETS = install-core-updates This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 17:18:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 15:18:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6039] csw/mgar/pkg/bdb4/trunk/ Message-ID: Revision: 6039 http://gar.svn.sourceforge.net/gar/?rev=6039&view=rev Author: wahwah Date: 2009-08-17 15:18:05 +0000 (Mon, 17 Aug 2009) Log Message: ----------- bdb4: s/sf\.net/sourceforge.net/ Property Changed: ---------------- csw/mgar/pkg/bdb4/trunk/ Property changes on: csw/mgar/pkg/bdb4/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 bonivart at users.sourceforge.net Mon Aug 17 17:29:32 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 17 Aug 2009 15:29:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6040] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 6040 http://gar.svn.sourceforge.net/gar/?rev=6040&view=rev Author: bonivart Date: 2009-08-17 15:29:32 +0000 (Mon, 17 Aug 2009) Log Message: ----------- perl: do not remove core ExtUtils since some things are removed (e.g. ExtUtils::Embed) from the update Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-17 15:18:05 UTC (rev 6039) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-17 15:29:32 UTC (rev 6040) @@ -51,7 +51,7 @@ MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ CORE_UPDATES += ExtUtils-MakeMaker-6.54 -CORE_OBSOLETE += ExtUtils/* +#CORE_OBSOLETE += ExtUtils/* DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 20:49:35 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 18:49:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[6041] csw/mgar/pkg/mocha/ Message-ID: Revision: 6041 http://gar.svn.sourceforge.net/gar/?rev=6041&view=rev Author: wahwah Date: 2009-08-17 18:49:35 +0000 (Mon, 17 Aug 2009) Log Message: ----------- mocha: Copying the template. Added Paths: ----------- csw/mgar/pkg/mocha/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 21:55:46 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 19:55:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6042] csw/mgar/pkg/rake/trunk Message-ID: Revision: 6042 http://gar.svn.sourceforge.net/gar/?rev=6042&view=rev Author: wahwah Date: 2009-08-17 19:55:42 +0000 (Mon, 17 Aug 2009) Log Message: ----------- rake: update to 0.8.7 Modified Paths: -------------- csw/mgar/pkg/rake/trunk/Makefile csw/mgar/pkg/rake/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/rake/trunk/files/CSWrake.depend csw/mgar/pkg/rake/trunk/files/CSWrake.gspec csw/mgar/pkg/rake/trunk/files/CSWrake.prototype Property Changed: ---------------- csw/mgar/pkg/rake/trunk/ csw/mgar/pkg/rake/trunk/Makefile Property changes on: csw/mgar/pkg/rake/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/rake/trunk/Makefile =================================================================== --- csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,5 +1,9 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = rake -GARVERSION = 0.6.0 +GARVERSION = 0.8.7 CATEGORIES = devel DESCRIPTION = Simple ruby build program similar to make @@ -9,10 +13,11 @@ (is that a tab or a space?) endef -MASTER_SITES = http://rubyforge.org/frs/download.php/5924/ +MASTER_SITES = http://rubyforge.org/frs/download.php/56872/ DISTFILES = $(GARNAME)-$(GARVERSION).tgz -DISTFILES += CSWrake.gspec CSWrake.depend CSWrake.prototype +LICENSE = MIT-LICENSE + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -31,4 +36,3 @@ @mkdir -p $(DESTDIR)$(docdir) @cp -R $(WORKSRC)/doc $(DESTDIR)$(docdir)/rake @$(MAKECOOKIE) - Property changes on: csw/mgar/pkg/rake/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: csw/mgar/pkg/rake/trunk/checksums =================================================================== --- csw/mgar/pkg/rake/trunk/checksums 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/checksums 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,4 +1 @@ -75885e7b90f7d9829b25eaff9338b4c6 download/rake-0.6.0.tgz -6e4a0e8c946e533be7fa49b572b5d170 download/CSWrake.gspec -e7008a946bb7e696418e34c41ca9a109 download/CSWrake.depend -2d2ed9030701f59760dcbac0d0ac6602 download/CSWrake.prototype +85fafa95ef43cd2189f9124510b5caa6 download/rake-0.8.7.tgz Deleted: csw/mgar/pkg/rake/trunk/files/CSWrake.depend =================================================================== --- csw/mgar/pkg/rake/trunk/files/CSWrake.depend 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/files/CSWrake.depend 2009-08-17 19:55:42 UTC (rev 6042) @@ -1 +0,0 @@ -P CSWruby ruby - An object-oriented language for quick and easy programming. Deleted: csw/mgar/pkg/rake/trunk/files/CSWrake.gspec =================================================================== --- csw/mgar/pkg/rake/trunk/files/CSWrake.gspec 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/files/CSWrake.gspec 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,5 +0,0 @@ -%var bitname rake -%var pkgname CSWrake -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/MIT-LICENSE Deleted: csw/mgar/pkg/rake/trunk/files/CSWrake.prototype =================================================================== --- csw/mgar/pkg/rake/trunk/files/CSWrake.prototype 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/files/CSWrake.prototype 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,49 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/rake 0755 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/ruby 0755 root bin -d none /opt/csw/lib/ruby/site_ruby 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/rake 0755 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/classic_namespace.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/clean.rb 0644 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib 0755 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/compositepublisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/ftptools.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/publisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/rubyforgepublisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/sshpublisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/sys.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/gempackagetask.rb 0644 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/rake/loaders 0755 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/loaders/makefile.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/packagetask.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/rake_test_loader.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/rdoctask.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/ruby182_test_unit_fix.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/runtest.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/tasklib.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/testtask.rb 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/doc 0755 root bin -d none /opt/csw/share/doc/rake 0755 root bin -d none /opt/csw/share/doc/rake/example 0755 root bin -f none /opt/csw/share/doc/rake/example/Rakefile1 0644 root bin -f none /opt/csw/share/doc/rake/example/Rakefile2 0644 root bin -f none /opt/csw/share/doc/rake/example/a.c 0644 root bin -f none /opt/csw/share/doc/rake/example/b.c 0644 root bin -f none /opt/csw/share/doc/rake/example/main.c 0644 root bin -f none /opt/csw/share/doc/rake/glossary.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/jamis.rb 0600 root bin -f none /opt/csw/share/doc/rake/proto_rake.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/rake.1.gz 0600 root bin -f none /opt/csw/share/doc/rake/rakefile.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/rational.rdoc 0644 root bin -d none /opt/csw/share/doc/rake/release_notes 0755 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.4.14.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.4.15.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.5.0.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.5.3.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.5.4.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.6.0.rdoc 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 22:22:27 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 20:22:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[6043] csw/mgar/pkg/mocha/trunk Message-ID: Revision: 6043 http://gar.svn.sourceforge.net/gar/?rev=6043&view=rev Author: wahwah Date: 2009-08-17 20:22:20 +0000 (Mon, 17 Aug 2009) Log Message: ----------- mocha: Initial commit Modified Paths: -------------- csw/mgar/pkg/mocha/trunk/Makefile csw/mgar/pkg/mocha/trunk/checksums Modified: csw/mgar/pkg/mocha/trunk/Makefile =================================================================== --- csw/mgar/pkg/mocha/trunk/Makefile 2009-08-17 19:55:42 UTC (rev 6042) +++ csw/mgar/pkg/mocha/trunk/Makefile 2009-08-17 20:22:20 UTC (rev 6043) @@ -2,181 +2,37 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = mocha +GARVERSION = 0.9.7 CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = a library for mocking and stubbing using a syntax like that of JMock define BLURB - + Mocha is a library for mocking and stubbing using a syntax like that of + JMock. It can be used with many testing frameworks e.g. Test::Unit, RSpec, + test/spec, expectations, Dust, MiniTest and even JtestR. Mocha provides + a unified, simple and readable syntax for both traditional mocking and + partial mocking. endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://mocha.rubyforge.org/ +MASTER_SITES = http://rubyforge.org/frs/download.php/59668/ +DISTFILES = $(GARNAME)-$(GARVERSION).tgz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true +ARCHALL = 0 +REQUIRED_PKGS = CSWruby +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWrake +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = ruby +TEST_SCRIPTS = -#include gar/category.mk +install-ruby: + gfind $(WORKSRC) -name '._*' -exec rm {} \; + ginstall -d -m 755 $(DESTDIR)$(libdir)/ruby/site_ruby/1.8 + (cd $(WORKSRC)/lib; gcp -a * $(DESTDIR)$(libdir)/ruby/site_ruby/1.8) + # TODO(maciej): Use the provided gem specification for installation. + # (cd $(WORKSRC)/lib; \ + # rake gem; \ + # gem install --install-dir=$(DESTDIR) --local ./pkg/$(GARNAME)-$(GARVERSION).gem) + @$(MAKECOOKIE) + +include gar/category.mk Modified: csw/mgar/pkg/mocha/trunk/checksums =================================================================== --- csw/mgar/pkg/mocha/trunk/checksums 2009-08-17 19:55:42 UTC (rev 6042) +++ csw/mgar/pkg/mocha/trunk/checksums 2009-08-17 20:22:20 UTC (rev 6043) @@ -0,0 +1 @@ +a483014a0ef3b3f8ae6ddb6fa333b163 download/mocha-0.9.7.tgz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 22:26:55 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 20:26:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6044] csw/mgar/pkg/rake/trunk/Makefile Message-ID: Revision: 6044 http://gar.svn.sourceforge.net/gar/?rev=6044&view=rev Author: wahwah Date: 2009-08-17 20:26:55 +0000 (Mon, 17 Aug 2009) Log Message: ----------- rake: ARCHALL = 1 Modified Paths: -------------- csw/mgar/pkg/rake/trunk/Makefile Modified: csw/mgar/pkg/rake/trunk/Makefile =================================================================== --- csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 20:22:20 UTC (rev 6043) +++ csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 20:26:55 UTC (rev 6044) @@ -17,6 +17,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tgz LICENSE = MIT-LICENSE +ARCHALL = 1 # 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 idogan23 at users.sourceforge.net Tue Aug 18 08:15:47 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 18 Aug 2009 06:15:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[6045] csw/mgar/pkg/nsd/trunk Message-ID: Revision: 6045 http://gar.svn.sourceforge.net/gar/?rev=6045&view=rev Author: idogan23 Date: 2009-08-18 06:15:47 +0000 (Tue, 18 Aug 2009) Log Message: ----------- nsd: bump version to 3.2.3 Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile csw/mgar/pkg/nsd/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2009-08-17 20:26:55 UTC (rev 6044) +++ csw/mgar/pkg/nsd/trunk/Makefile 2009-08-18 06:15:47 UTC (rev 6045) @@ -1,5 +1,5 @@ GARNAME = nsd -GARVERSION = 3.2.2 +GARVERSION = 3.2.3 CATEGORIES = server DESCRIPTION = An authoritative only non-recursive name server @@ -30,8 +30,6 @@ SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } { print }' -PATCHFILES = Makefile.in.diff - CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-ssl=/opt/csw CONFIGURE_ARGS += --with-pidfile=/var/run/nsd.pid Modified: csw/mgar/pkg/nsd/trunk/checksums =================================================================== --- csw/mgar/pkg/nsd/trunk/checksums 2009-08-17 20:26:55 UTC (rev 6044) +++ csw/mgar/pkg/nsd/trunk/checksums 2009-08-18 06:15:47 UTC (rev 6045) @@ -1,4 +1,4 @@ bc1f6a6a33f1204454cf013273f0521c download/Makefile.in.diff 0eece57abde9d1cef8a962461b453d03 download/cswnsd 7a7560acb5d56847ea16fb8cd77b6ca5 download/cswusergroup -a0dcb0a3b3c1a8d386125eeafe403f58 download/nsd-3.2.2.tar.gz +5ddb35dfb7da0defb82cda4f7388cba2 download/nsd-3.2.3.tar.gz Deleted: csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff =================================================================== --- csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff 2009-08-17 20:26:55 UTC (rev 6044) +++ csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff 2009-08-18 06:15:47 UTC (rev 6045) @@ -1,14 +0,0 @@ -diff --speed-large-files --minimal -Nru nsd-3.2.2.orig/Makefile.in nsd-3.2.2/Makefile.in ---- nsd-3.2.2.orig/Makefile.in 2009-04-03 13:56:43.000000000 +0200 -+++ nsd-3.2.2/Makefile.in 2009-05-24 14:18:20.279730811 +0200 -@@ -318,8 +318,8 @@ - install: all - $(INSTALL) -d $(DESTDIR)$(sbindir) - $(INSTALL) -d $(DESTDIR)$(configdir) -- $(INSTALL) -d $(DESTDIR)$(piddir) -- $(INSTALL) -d $(DESTDIR)$(dbdir) -+# $(INSTALL) -d $(DESTDIR)$(piddir) -+# $(INSTALL) -d $(DESTDIR)$(dbdir) - $(INSTALL) -d $(DESTDIR)$(mandir) - $(INSTALL) -d $(DESTDIR)$(mandir)/man8 - $(INSTALL) -d $(DESTDIR)$(mandir)/man5 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 Aug 18 08:37:41 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 18 Aug 2009 06:37:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6046] csw/mgar/pkg/nsd/trunk/Makefile Message-ID: Revision: 6046 http://gar.svn.sourceforge.net/gar/?rev=6046&view=rev Author: idogan23 Date: 2009-08-18 06:37:41 +0000 (Tue, 18 Aug 2009) Log Message: ----------- nsd: removed dist file entry for an old patch Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2009-08-18 06:15:47 UTC (rev 6045) +++ csw/mgar/pkg/nsd/trunk/Makefile 2009-08-18 06:37:41 UTC (rev 6046) @@ -25,7 +25,6 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += cswusergroup DISTFILES += cswnsd -DISTFILES += Makefile.in.diff SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } { print }' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 13:53:24 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 11:53:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[6047] csw/mgar/pkg/rspec/ Message-ID: Revision: 6047 http://gar.svn.sourceforge.net/gar/?rev=6047&view=rev Author: wahwah Date: 2009-08-18 11:53:24 +0000 (Tue, 18 Aug 2009) Log Message: ----------- rpec: copying the template Added Paths: ----------- csw/mgar/pkg/rspec/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 17:41:43 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 15:41:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[6048] csw/mgar/pkg/rubygems/trunk Message-ID: Revision: 6048 http://gar.svn.sourceforge.net/gar/?rev=6048&view=rev Author: wahwah Date: 2009-08-18 15:41:43 +0000 (Tue, 18 Aug 2009) Log Message: ----------- rubygems: version bump to 1.3.5, removed the scripts directory Modified Paths: -------------- csw/mgar/pkg/rubygems/trunk/Makefile csw/mgar/pkg/rubygems/trunk/checksums Modified: csw/mgar/pkg/rubygems/trunk/Makefile =================================================================== --- csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 11:53:24 UTC (rev 6047) +++ csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 15:41:43 UTC (rev 6048) @@ -1,5 +1,5 @@ GARNAME = rubygems -GARVERSION = 1.3.1 +GARVERSION = 1.3.5 CATEGORIES = xtra DESCRIPTION = Ruby package manager @@ -10,7 +10,7 @@ SPKG_SOURCEURL = http://rubyforge.org/projects/rubygems/ -MASTER_SITES = http://rubyforge.org/frs/download.php/45905/ +MASTER_SITES = http://rubyforge.org/frs/download.php/60718/ DISTFILES = $(GARNAME)-$(GARVERSION).tgz @@ -43,6 +43,4 @@ @gcp -v $(WORKSRC)/README $(DESTDIR)$(docdir)/$(GARNAME) @gcp -v $(WORKSRC)/LICENSE.txt $(DESTDIR)$(docdir)/$(GARNAME) @gcp -v $(WORKSRC)/GPL.txt $(DESTDIR)$(docdir)/$(GARNAME) - @gcp -vr $(WORKSRC)/scripts $(DESTDIR)$(docdir)/$(GARNAME) @$(MAKECOOKIE) - Modified: csw/mgar/pkg/rubygems/trunk/checksums =================================================================== --- csw/mgar/pkg/rubygems/trunk/checksums 2009-08-18 11:53:24 UTC (rev 6047) +++ csw/mgar/pkg/rubygems/trunk/checksums 2009-08-18 15:41:43 UTC (rev 6048) @@ -1 +1 @@ -a04ee6f6897077c5b75f5fd1e134c5a9 download/rubygems-1.3.1.tgz +6e317335898e73beab15623cdd5f8cff download/rubygems-1.3.5.tgz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 18:41:02 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 16:41:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[6049] csw/mgar/pkg/cups/branches/cups-with-classutils/ Makefile Message-ID: Revision: 6049 http://gar.svn.sourceforge.net/gar/?rev=6049&view=rev Author: wahwah Date: 2009-08-18 16:41:02 +0000 (Tue, 18 Aug 2009) Log Message: ----------- cups: Marking cupsd{ev,oc} architecture-independent Modified Paths: -------------- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile Modified: csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile =================================================================== --- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-18 15:41:43 UTC (rev 6048) +++ csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-18 16:41:02 UTC (rev 6049) @@ -35,6 +35,9 @@ PACKAGES = CSWlibcups CSWcupsd CSWcupsclient CSWcupsdoc CSWcupsdev CSWcups +ARCHALL_CSWcupsdoc = 1 +ARCHALL_CSWcupsdev = 1 + REQUIRED_PKGS_CSWcups = CSWcswclassutils CSWcupsd CSWcupsclient CSWcupsdoc REQUIRED_PKGS_CSWcups += CSWcupsdev REQUIRED_PKGS_CSWcupsd = CSWcswclassutils CSWlibcups CSWoldaprt CSWzlib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 19:21:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 17:21:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6050] csw/mgar/pkg/rubygems/trunk/Makefile Message-ID: Revision: 6050 http://gar.svn.sourceforge.net/gar/?rev=6050&view=rev Author: wahwah Date: 2009-08-18 17:21:03 +0000 (Tue, 18 Aug 2009) Log Message: ----------- rubygems: Destination directory fix Modified Paths: -------------- csw/mgar/pkg/rubygems/trunk/Makefile Modified: csw/mgar/pkg/rubygems/trunk/Makefile =================================================================== --- csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 16:41:02 UTC (rev 6049) +++ csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 17:21:03 UTC (rev 6050) @@ -33,7 +33,7 @@ install-custom: ( cd $(WORKSRC) ; \ - ruby ./setup.rb --destdir=$(DESTDIR)/$(prefix); ) + ruby ./setup.rb --destdir=$(DESTDIR); ) @$(MAKECOOKIE) post-install-modulated: copy-contrib 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 Aug 19 11:05:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 09:05:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[6051] csw/mgar/pkg/neon/trunk Message-ID: Revision: 6051 http://gar.svn.sourceforge.net/gar/?rev=6051&view=rev Author: dmichelsen Date: 2009-08-19 09:05:07 +0000 (Wed, 19 Aug 2009) Log Message: ----------- neon: Update to 0.28.6 and dynamic gspec Modified Paths: -------------- csw/mgar/pkg/neon/trunk/Makefile csw/mgar/pkg/neon/trunk/checksums Added Paths: ----------- csw/mgar/pkg/neon/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec csw/mgar/pkg/neon/trunk/files/CSWneon.gspec Modified: csw/mgar/pkg/neon/trunk/Makefile =================================================================== --- csw/mgar/pkg/neon/trunk/Makefile 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/Makefile 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,9 +1,9 @@ GARNAME = neon -GARVERSION = 0.28.5 +GARVERSION = 0.28.6 CATEGORIES = lib EXTRA_MODULATORS = GARVERSION -MODULATIONS_GARVERSION = 0.26.4 0.28.5 +MODULATIONS_GARVERSION = 0.26.4 0.28.6 DESCRIPTION = Neon HTTP and WebDAV client library define BLURB @@ -16,9 +16,15 @@ MASTER_SITES = http://www.webdav.org/$(GARNAME)/ SOURCEFILES = $(foreach VERSION,$(MODULATIONS_GARVERSION), $(GARNAME)-$(VERSION).tar.gz) DISTFILES = $(SOURCEFILES) -DISTFILES += $(call admfiles,CSWneon,) -DISTFILES += $(call admfiles,CSWneon-devel,) +DISTFILES += COPYING +NOEXTRACT = $(filter-out $(GARNAME)-$(GARVERSION).tar.gz,$(SOURCEFILES)) + +PACKAGES = CSWneon CSWneon-devel + +CATALOGNAME_CSWneon = neon +CATALOGNAME_CSWneon-devel = neon_devel + REQUIRED_PKGS_CSWneon = CSWexpat CSWkrb5lib CSWosslrt CSWzlib CSWggettextrt REQUIRED_PKGS_CSWneon-devel = CSWneon @@ -36,23 +42,27 @@ BUILD64 = 1 NO_ISAEXEC = 1 +# Omit version number suffix on docdir +INSTALL_OVERRIDE_VARS = docdir +INSTALL_OVERRIDE_VAR_docdir = $(datadir)/doc/neon + MERGE_SCRIPTS_isa-i386-garversion-0.26.4 = copy-only MERGE_DIRS_isa-i386-garversion-0.26.4 = $(libdir) MERGE_SCRIPTS_isa-amd64-garversion-0.26.4 = copy-relocated-only MERGE_DIRS_isa-amd64-garversion-0.26.4 = $(libdir) -MERGE_SCRIPTS_isa-i386-garversion-0.28.5 = copy-all -MERGE_SCRIPTS_isa-amd64-garversion-0.28.5 = copy-relocated-only -MERGE_DIRS_isa-amd64-garversion-0.28.5 = $(bindir) $(sbindir) $(libexecdir) $(libdir) +MERGE_SCRIPTS_isa-i386-garversion-0.28.6 = copy-all +MERGE_SCRIPTS_isa-amd64-garversion-0.28.6 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-0.28.6 = $(bindir) $(sbindir) $(libexecdir) $(libdir) MERGE_SCRIPTS_isa-sparcv8-garversion-0.26.4 = copy-only MERGE_DIRS_isa-sparcv8-garversion-0.26.4 = $(libdir) MERGE_SCRIPTS_isa-sparcv9-garversion-0.26.4 = copy-relocated-only MERGE_DIRS_isa-sparcv9-garversion-0.26.4 = $(libdir) -MERGE_SCRIPTS_isa-sparcv8-garversion-0.28.5 = copy-all -MERGE_SCRIPTS_isa-sparcv9-garversion-0.28.5 = copy-relocated-only -MERGE_DIRS_isa-sparcv9-garversion-0.28.5 = $(bindir) $(sbindir) $(libexecdir) $(libdir) +MERGE_SCRIPTS_isa-sparcv8-garversion-0.28.6 = copy-all +MERGE_SCRIPTS_isa-sparcv9-garversion-0.28.6 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-0.28.6 = $(bindir) $(sbindir) $(libexecdir) $(libdir) PKGFILES_CSWneon-devel = $(PKGFILES_DEVEL) Modified: csw/mgar/pkg/neon/trunk/checksums =================================================================== --- csw/mgar/pkg/neon/trunk/checksums 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/checksums 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,4 +1,3 @@ -5e17c5dc62032a174e4e39fa33720aff download/CSWneon-devel.gspec -643aa565e0d9f38f0153ab72b6dc5621 download/CSWneon.gspec +4ef5552e8930ef82b1f56c2712f8ed1e download/COPYING 2d11fff51ffa856fc6b5d4bd801d6cc4 download/neon-0.26.4.tar.gz -8c160bc0e358a3b58645acbba40fe873 download/neon-0.28.5.tar.gz +252578ed555552b71d15909641484951 download/neon-0.28.6.tar.gz Copied: csw/mgar/pkg/neon/trunk/files/COPYING (from rev 5970, csw/mgar/pkg/neon/trunk/files/CSWneon.gspec) =================================================================== --- csw/mgar/pkg/neon/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/neon/trunk/files/COPYING 2009-08-19 09:05:07 UTC (rev 6051) @@ -0,0 +1,12 @@ +neon is licensed under the GNU Library GPL; see src/COPYING.LIB for +full details. The manual is licensed under the terms of the GNU FDL; +see doc/fdl.sgml or the generated documentation. The autoconf macros +in the "macros" directory are under a more liberal license, see each +file for details. The test suite is licensed under the GNU GPL; see +test/COPYING for full details. + +neon is Copyright (C) 1999-2003 Joe Orton +Portions are: +Copyright (C) 1999-2000 Tommi Komulainen +Copyright (C) 1999-2000, Peter Boos +Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,17 +0,0 @@ -%var bitname neon_devel -%var pkgname CSWneon-devel -%var desc Neon HTTP and WebDAV development support -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -neon is licensed under the GNU Library GPL; see src/COPYING.LIB for -full details. The manual is licensed under the terms of the GNU FDL; -see doc/fdl.sgml or the generated documentation. The autoconf macros -in the "macros" directory are under a more liberal license, see each -file for details. The test suite is licensed under the GNU GPL; see -test/COPYING for full details. - -neon is Copyright (C) 1999-2003 Joe Orton -Portions are: -Copyright (C) 1999-2000 Tommi Komulainen -Copyright (C) 1999-2000, Peter Boos -Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon.gspec =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon.gspec 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/files/CSWneon.gspec 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,16 +0,0 @@ -%var bitname neon -%var pkgname CSWneon -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -neon is licensed under the GNU Library GPL; see src/COPYING.LIB for -full details. The manual is licensed under the terms of the GNU FDL; -see doc/fdl.sgml or the generated documentation. The autoconf macros -in the "macros" directory are under a more liberal license, see each -file for details. The test suite is licensed under the GNU GPL; see -test/COPYING for full details. - -neon is Copyright (C) 1999-2003 Joe Orton -Portions are: -Copyright (C) 1999-2000 Tommi Komulainen -Copyright (C) 1999-2000, Peter Boos -Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 19 13:24:28 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 11:24:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6052] csw/mgar/pkg/buildbot/trunk Message-ID: Revision: 6052 http://gar.svn.sourceforge.net/gar/?rev=6052&view=rev Author: wahwah Date: 2009-08-19 11:24:28 +0000 (Wed, 19 Aug 2009) Log Message: ----------- buildbot: Adapting the package version and revision numbers to the guidelines Modified Paths: -------------- csw/mgar/pkg/buildbot/trunk/Makefile csw/mgar/pkg/buildbot/trunk/checksums Added Paths: ----------- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch Modified: csw/mgar/pkg/buildbot/trunk/Makefile =================================================================== --- csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 09:05:07 UTC (rev 6051) +++ csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 11:24:28 UTC (rev 6052) @@ -3,7 +3,8 @@ # $Id$ GARNAME = buildbot -GARVERSION = 0.7.11p1 +GARVERSION = 0.7.11 +PATCHLEVEL = p1 CATEGORIES = utils DESCRIPTION = A system to automate the compile/test cycle @@ -17,12 +18,13 @@ to test their changes everywhere before checkin will at least know shortly afterwards whether they have broken the build or not. Warning counts, lint checks, image size, compile time, and other build parameters can be tracked - over time, are more visible, and are therefore easier to improve. + over time, are more visible, and are therefore easier to improve. endef MASTER_SITES = $(SF_MIRROR) -PATCHFILES = tail-$(GARVERSION).patch -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz $(PATCHFILES) +PATCHFILES = tail-$(GARVERSION)$(PATCHLEVEL).patch +PATCHFILES += debug-$(GARVERSION)$(PATCHLEVEL).patch +DISTFILES = $(GARNAME)-$(GARVERSION)$(PATCHLEVEL).tar.gz $(PATCHFILES) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -32,19 +34,29 @@ REQUIRED_PKGS = CSWcswclassutils CSWpython CSWtwisted CSWzope CSWtextutils ARCHALL = 1 -CONFIGURE_SCRIPTS = +CONFIGURE_SCRIPTS = BUILD_SCRIPTS = buildbot -TEST_SCRIPTS = +TEST_SCRIPTS = INSTALL_SCRIPTS = buildbot PROTOTYPE_FILTER = awk ' \ - $$$$3 ~/.*\.py$$$$/ { $$$$2 = "pycompile" } \ + $$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } \ { print }' +WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION)$(PATCHLEVEL) + build-buildbot: (cd $(WORKSRC); python setup.py build) + @$(MAKECOOKIE) install-buildbot: (cd $(WORKSRC); python setup.py install --root=$(DESTDIR)) + @$(MAKECOOKIE) +post-install-modulated: + gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; + @$(MAKECOOKIE) + include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) Modified: csw/mgar/pkg/buildbot/trunk/checksums =================================================================== --- csw/mgar/pkg/buildbot/trunk/checksums 2009-08-19 09:05:07 UTC (rev 6051) +++ csw/mgar/pkg/buildbot/trunk/checksums 2009-08-19 11:24:28 UTC (rev 6052) @@ -1,2 +1,3 @@ 2f83cd6562f0288ec4f4d77027f3090f download/buildbot-0.7.11p1.tar.gz +4c70db04b3514157aa746370ad282eeb download/debug-0.7.11p1.patch a39720c9a13d73bbda054938d6a98c47 download/tail-0.7.11p1.patch Added: csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch (rev 0) +++ csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch 2009-08-19 11:24:28 UTC (rev 6052) @@ -0,0 +1,25 @@ +diff -ru buildbot-0.7.11p1.orig/buildbot/changes/changes.py buildbot-0.7.11p1/buildbot/changes/changes.py +--- buildbot-0.7.11p1.orig/buildbot/changes/changes.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/changes/changes.py 2009-07-30 13:30:01.632031291 +0100 +@@ -73,6 +73,9 @@ + self.files = files[:] + self.files.sort() + ++ def __repr__(self): ++ return "branch(%s) at %s by %s" % (self.branch, self.revision, self.who) ++ + def asText(self): + data = "" + data += self.getFileContents() +diff -ru buildbot-0.7.11p1.orig/buildbot/scheduler.py buildbot-0.7.11p1/buildbot/scheduler.py +--- buildbot-0.7.11p1.orig/buildbot/scheduler.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/scheduler.py 2009-07-30 16:56:59.195283110 +0100 +@@ -287,6 +287,8 @@ + + def addChange(self, change): + branch = change.branch ++ log.msg("branch = %s" % repr(branch)) ++ log.msg("self.branches = %s" % repr(self.branches)) + if self.branches is not None and branch not in self.branches: + log.msg("%s ignoring off-branch %s" % (self, change)) + return 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 Aug 19 13:28:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 11:28:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6053] csw/mgar/pkg/wget/trunk Message-ID: Revision: 6053 http://gar.svn.sourceforge.net/gar/?rev=6053&view=rev Author: dmichelsen Date: 2009-08-19 11:28:47 +0000 (Wed, 19 Aug 2009) Log Message: ----------- wget: Some minor GAR fixes Modified Paths: -------------- csw/mgar/pkg/wget/trunk/Makefile csw/mgar/pkg/wget/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/wget/trunk/files/CSWwget.gspec Modified: csw/mgar/pkg/wget/trunk/Makefile =================================================================== --- csw/mgar/pkg/wget/trunk/Makefile 2009-08-19 11:24:28 UTC (rev 6052) +++ csw/mgar/pkg/wget/trunk/Makefile 2009-08-19 11:28:47 UTC (rev 6053) @@ -13,15 +13,14 @@ whole file has been retrieved. endef -MASTER_SITES = http://www.gnu.org/software/wget/ +MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWwget) -UPSTREAM_MASTER_SITES = $(GNU_MIRROR) - # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +SPKG_SOURCEURL = http://www.gnu.org/software/wget/ + EXTRA_MODULATORS = STATIC MODULATIONS_STATIC = disable enable @@ -36,29 +35,21 @@ CONFIGURE_ARGS += $(EXTRA_CONFIGURE_STATIC-$(STATIC)) TEST_TARGET = check -REQUIRED_PKGS = CSWosslrt CSWcswclassutils +REQUIRED_PKGS = CSWosslrt -SPKG_CLASSES = none cswcpsampleconf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/wgetrc.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' +SAMPLECONF = $(sysconfdir)/wgetrc.CSW +EXTRA_PAX_ARGS = -s ",^\(.$(sysconfdir)/wgetrc\)\$$,\1.CSW,p" MERGE_SCRIPTS_isa-sparcv8-static-disable = copy-all - MERGE_SCRIPTS_isa-sparcv8-static-enable = rename-wget copy-only + MERGE_SCRIPTS_isa-sparcv8-static-enable = copy-static-wget-only MERGE_DIRS_isa-sparcv8-static-enable = $(bindir) MERGE_SCRIPTS_isa-i386-static-disable = copy-all MERGE_SCRIPTS_isa-i386-static-enable = rename-wget copy-only MERGE_DIRS_isa-i386-static-enable = $(bindir) -merge-rename-wget: - @mv $(DESTDIR)$(bindir)/wget $(DESTDIR)$(bindir)/wget.static +merge-copy-static-wget-only: + ginstall $(INSTALLISADIR)$(bindir)/wget $(PKGROOT)$(bindir)/wget.static + @$(MAKECOOKIE) -post-install-modulated: - (cd $(DESTDIR)$(prefix)/etc; \ - for i in wgetrc; do \ - if [ -r "$$i" ]; then \ - echo "$$i -> $$i.CSW"; \ - mv "$$i" "$$i.CSW"; \ - fi \ - done) - include gar/category.mk Modified: csw/mgar/pkg/wget/trunk/checksums =================================================================== --- csw/mgar/pkg/wget/trunk/checksums 2009-08-19 11:24:28 UTC (rev 6052) +++ csw/mgar/pkg/wget/trunk/checksums 2009-08-19 11:28:47 UTC (rev 6053) @@ -1,2 +1 @@ f5076a8c2ec2b7f334cb6e3059820f9c download/wget-1.11.4.tar.bz2 -0232e26f1324e2b2c0c6c1ab4bf3f2e3 download/CSWwget.gspec Deleted: csw/mgar/pkg/wget/trunk/files/CSWwget.gspec =================================================================== --- csw/mgar/pkg/wget/trunk/files/CSWwget.gspec 2009-08-19 11:24:28 UTC (rev 6052) +++ csw/mgar/pkg/wget/trunk/files/CSWwget.gspec 2009-08-19 11:28:47 UTC (rev 6053) @@ -1,4 +0,0 @@ -%var bitname wget -%var pkgname CSWwget -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 19 13:34:29 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 11:34:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6054] csw/mgar/pkg/buildbot/trunk/Makefile Message-ID: Revision: 6054 http://gar.svn.sourceforge.net/gar/?rev=6054&view=rev Author: wahwah Date: 2009-08-19 11:34:29 +0000 (Wed, 19 Aug 2009) Log Message: ----------- buildbot: cleaning up BLURB Modified Paths: -------------- csw/mgar/pkg/buildbot/trunk/Makefile Modified: csw/mgar/pkg/buildbot/trunk/Makefile =================================================================== --- csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 11:28:47 UTC (rev 6053) +++ csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 11:34:29 UTC (rev 6054) @@ -11,14 +11,15 @@ define BLURB The BuildBot is a system to automate the compile/test cycle required by most software projects to validate code changes. By automatically rebuilding and - testing the tree each time something has changed, build problems are pinpointed - quickly, before other developers are inconvenienced by the failure. The guilty - developer can be identified and harassed without human intervention. By running - the builds on a variety of platforms, developers who do not have the facilities - to test their changes everywhere before checkin will at least know shortly - afterwards whether they have broken the build or not. Warning counts, lint - checks, image size, compile time, and other build parameters can be tracked - over time, are more visible, and are therefore easier to improve. + testing the tree each time something has changed, build problems are + pinpointed quickly, before other developers are inconvenienced by the + failure. The guilty developer can be identified and harassed without human + intervention. By running the builds on a variety of platforms, developers who + do not have the facilities to test their changes everywhere before checkin + will at least know shortly afterwards whether they have broken the build or + not. Warning counts, lint checks, image size, compile time, and other build + parameters can be tracked over time, are more visible, and are therefore + easier to improve. endef MASTER_SITES = $(SF_MIRROR) @@ -26,7 +27,6 @@ PATCHFILES += debug-$(GARVERSION)$(PATCHLEVEL).patch DISTFILES = $(GARNAME)-$(GARVERSION)$(PATCHLEVEL).tar.gz $(PATCHFILES) -# 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 cswpycompile 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 Aug 19 14:45:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 12:45:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6055] csw/mgar/pkg/tcl/trunk Message-ID: Revision: 6055 http://gar.svn.sourceforge.net/gar/?rev=6055&view=rev Author: dmichelsen Date: 2009-08-19 12:45:48 +0000 (Wed, 19 Aug 2009) Log Message: ----------- tcl: Update to 8.5.7 and dynamic gspec Modified Paths: -------------- csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Modified: csw/mgar/pkg/tcl/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile 2009-08-19 11:34:29 UTC (rev 6054) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-08-19 12:45:48 UTC (rev 6055) @@ -1,5 +1,5 @@ GARNAME = tcl -GARVERSION = 8.4.19 +GARVERSION = 8.5.7 CATEGORIES = lang DESCRIPTION = Tcl programming language @@ -11,7 +11,6 @@ DISTNAME = $(GARNAME)$(GARVERSION) DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) SPKG_SOURCEURL = http://www.tcl.tk/ Modified: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums 2009-08-19 11:34:29 UTC (rev 6054) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-08-19 12:45:48 UTC (rev 6055) @@ -1,2 +1 @@ -ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec +f70ad8f78b5e4a9f792fe101f22b125f download/tcl8.5.7-src.tar.gz Deleted: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-08-19 11:34:29 UTC (rev 6054) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-08-19 12:45:48 UTC (rev 6055) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Aug 19 15:05:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 13:05:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[6056] csw/mgar/pkg/libxml2/trunk Message-ID: Revision: 6056 http://gar.svn.sourceforge.net/gar/?rev=6056&view=rev Author: dmichelsen Date: 2009-08-19 13:05:37 +0000 (Wed, 19 Aug 2009) Log Message: ----------- libxml2: Update to 2.7.3, move to dynamic gspec and refactor renaming Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile csw/mgar/pkg/libxml2/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,5 +1,5 @@ GARNAME = libxml2 -GARVERSION = 2.7.2 +GARVERSION = 2.7.3 CATEGORIES = lib DESCRIPTION = XML Parser Library @@ -8,14 +8,21 @@ endef MASTER_SITES = ftp://xmlsoft.org/libxml2/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWpylibxml2,depend) -DISTFILES += $(call admfiles,CSWlibxml2,depend) -DISTFILES += $(call admfiles,CSWlibxml2devel,depend) +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 +PACKAGES = CSWlibxml2 CSWlibxml2devel CSWpylibxml2 + +CATALOGNAME_CSWlibxml2 = libxml2 +CATALOGNAME_CSWlibxml2devel = libxml2_devel +CATALOGNAME_CSWpylibxml2 = pylibxml2 + +REQUIRED_PKGS_CSWlibxml2 = CSWiconv CSWzlib +REQUIRED_PKGS_CSWlibxml2devel = CSWlibxml2 +REQUIRED_PKGS_CSWpylibxml2 = CSWpython CSWlibxml2 + # We don't have 64 bit Python yet CONFIGURE_ARGS_32 = --with-python=$(prefix) CONFIGURE_ARGS_64 = --without-python @@ -26,18 +33,24 @@ CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) BUILD64 = 1 - NO_ISAEXEC = 1 -MERGE_EXCLUDE_FILES = .*\.la +# Skip 64 bit binaries - they are just big and gain nothing +MERGE_DIRS_isa-sparcv9 = $(libdir) +MERGE_DIRS_isa-amd64 = $(libdir) + +EXTRA_PAX_ARGS = -s ",^\.$(docdir)/libxml2-$(GARVERSION),.$(docdir)/libxml2,p" +EXTRA_PAX_ARGS += -s ",^\.$(docdir)/libxml2-python-$(GARVERSION),.$(docdir)/pylibxml2,p" +EXTRA_PAX_ARGS += -s ",^\.$(libdir)/python[^/]*,.$(libdir)/python,p" + PKGFILES_CSWlibxml2devel = $(PKGFILES_DEVEL) -PKGFILES_CSWlibxml2devel += $(docdir)/libxml2-$(GARVERSION)/.* +PKGFILES_CSWlibxml2devel += $(docdir)/libxml2/.* PKGFILES_CSWlibxml2devel += $(sharedstatedir)/gtk-doc/.* PKGFILES_CSWlibxml2devel += $(libdir)/xml2Conf.sh PKGFILES_CSWlibxml2devel += $(call isadirs,$(libdir),xml2Conf.sh) PKGFILES_CSWpylibxml2 = $(libdir)/python/.* -PKGFILES_CSWpylibxml2 += $(docdir)/libxml2-python-$(GARVERSION)/.* +PKGFILES_CSWpylibxml2 += $(docdir)/pylibxml2/.* include gar/category.mk Modified: csw/mgar/pkg/libxml2/trunk/checksums =================================================================== --- csw/mgar/pkg/libxml2/trunk/checksums 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/checksums 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,7 +1 @@ -dc43ff7ae6aded45f578c87b7b0c8766 download/libxml2-2.7.2.tar.gz -590a7d5677be4f5c67a52b08eba6fb2b download/CSWpylibxml2.gspec -dd8c26f51eb9a53545b4cd914b40675b download/CSWpylibxml2.depend -f07ada794bee08b0d3ec7dcd68d1e0ac download/CSWlibxml2.gspec -115241717779eb81926e5ff971d7fbd7 download/CSWlibxml2.depend -0633f70c4570a204284c219c02a3c00e download/CSWlibxml2devel.gspec -915b1265ec08b5efcfedb03ade19040f download/CSWlibxml2devel.depend +8f4fda3969237c2a33bdb1583b5d06b2 download/libxml2-2.7.3.tar.gz Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,2 +0,0 @@ -P CSWiconv libiconv - GNU iconv library -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,4 +0,0 @@ -%var bitname libxml2 -%var pkgname CSWlibxml2 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend 2009-08-19 13:05:37 UTC (rev 6056) @@ -1 +0,0 @@ -P CSWlibxml2 libxml2 - XML Parser Library Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,4 +0,0 @@ -%var bitname libxml2_devel -%var pkgname CSWlibxml2devel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,2 +0,0 @@ -P CSWlibxml2 libxml2 - XML Parser Library -P CSWpython python - A high-level scripting language. Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,4 +0,0 @@ -%var bitname pylibxml2 -%var pkgname CSWpylibxml2 -%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 wahwah at users.sourceforge.net Wed Aug 19 19:40:07 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 17:40:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[6057] csw/mgar/pkg/mysql5 Message-ID: Revision: 6057 http://gar.svn.sourceforge.net/gar/?rev=6057&view=rev Author: wahwah Date: 2009-08-19 17:40:06 +0000 (Wed, 19 Aug 2009) Log Message: ----------- mysql5: moving the legacy directory to branches Added Paths: ----------- csw/mgar/pkg/mysql5/branches/legacy/ Removed Paths: ------------- csw/mgar/pkg/mysql5/trunk/legacy/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 19 20:23:41 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 18:23:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6058] csw/mgar/pkg/mysql5/branches/mysql-5.0.x/ Message-ID: Revision: 6058 http://gar.svn.sourceforge.net/gar/?rev=6058&view=rev Author: wahwah Date: 2009-08-19 18:23:41 +0000 (Wed, 19 Aug 2009) Log Message: ----------- mysql5: Copying mysql-5.1 to branches/mysql-5.0.x Added Paths: ----------- csw/mgar/pkg/mysql5/branches/mysql-5.0.x/ 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 Aug 20 05:36:33 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 20 Aug 2009 03:36:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[6059] csw/mgar/pkg/munin/trunk/Makefile Message-ID: Revision: 6059 http://gar.svn.sourceforge.net/gar/?rev=6059&view=rev Author: j_arndt Date: 2009-08-20 03:36:32 +0000 (Thu, 20 Aug 2009) Log Message: ----------- munin: fixed typo in dependencies in Makefile Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-19 18:23:41 UTC (rev 6058) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-20 03:36:32 UTC (rev 6059) @@ -44,8 +44,8 @@ ARCHALL_CSWmuninnode = 1 REQUIRED_PKGS_CSWmuninmaster = CSWpmnetserver CSWperl CSWpython CSWpmparserecdescent -REQUIRED_PKGS_CSWmuninmaster = CSWpmhtmltmpl CSWpmdatemanip CSWpmmd5 CSWrrd CSWapache2 -REQUIRED_PKGS_CSWmuninmaster = CSWcswclassutils +REQUIRED_PKGS_CSWmuninmaster += CSWpmhtmltmpl CSWpmdatemanip CSWpmmd5 CSWrrd CSWapache2 +REQUIRED_PKGS_CSWmuninmaster += CSWcswclassutils REQUIRED_PKGS_CSWmuninnode = CSWpmdbi CSWpmnetsnmp CSWpmnetserver CSWperl CSWtop CSWcswclassutils 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 Aug 20 18:23:15 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 20 Aug 2009 16:23:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[6060] csw/mgar/pkg Message-ID: Revision: 6060 http://gar.svn.sourceforge.net/gar/?rev=6060&view=rev Author: bonivart Date: 2009-08-20 16:23:15 +0000 (Thu, 20 Aug 2009) Log Message: ----------- filezilla: initial commit Added Paths: ----------- csw/mgar/pkg/filezilla/ csw/mgar/pkg/filezilla/branches/ csw/mgar/pkg/filezilla/tags/ csw/mgar/pkg/filezilla/trunk/ csw/mgar/pkg/filezilla/trunk/Makefile csw/mgar/pkg/filezilla/trunk/checksums csw/mgar/pkg/filezilla/trunk/files/ Property changes on: csw/mgar/pkg/filezilla/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/filezilla/trunk/Makefile =================================================================== --- csw/mgar/pkg/filezilla/trunk/Makefile (rev 0) +++ csw/mgar/pkg/filezilla/trunk/Makefile 2009-08-20 16:23:15 UTC (rev 6060) @@ -0,0 +1,19 @@ +GARNAME = filezilla +GARVERSION = 3.2.7 +CATEGORIES = utils + +DESCRIPTION = Cross-platform FTP, FTPS and SFTP client +define BLURB + FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with + lots of useful features and an intuitive graphical user interface. +endef + +MASTER_SITES = http://d10xg45o6p6dbl.cloudfront.net/projects/f/filezilla/ +DISTFILES = FileZilla_$(GARVERSION)_src.tar.bz2 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = FileZilla_(\d+(?:\.\d+)*)_src.tar.bz2 + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/filezilla/trunk/checksums =================================================================== --- csw/mgar/pkg/filezilla/trunk/checksums (rev 0) +++ csw/mgar/pkg/filezilla/trunk/checksums 2009-08-20 16:23:15 UTC (rev 6060) @@ -0,0 +1 @@ +fcbcb291ec6f4dd821670a4498b5ad35 download/FileZilla_3.2.7_src.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 21:44:30 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 19:44:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6061] csw/mgar/pkg Message-ID: Revision: 6061 http://gar.svn.sourceforge.net/gar/?rev=6061&view=rev Author: wahwah Date: 2009-08-20 19:44:30 +0000 (Thu, 20 Aug 2009) Log Message: ----------- myodbc: Initial commit Modified Paths: -------------- csw/mgar/pkg/myodbc/trunk/Makefile csw/mgar/pkg/myodbc/trunk/checksums Added Paths: ----------- csw/mgar/pkg/myodbc/ Modified: csw/mgar/pkg/myodbc/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-20 16:23:15 UTC (rev 6060) +++ csw/mgar/pkg/myodbc/trunk/Makefile 2009-08-20 19:44:30 UTC (rev 6061) @@ -2,181 +2,43 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = myodbc +GARVERSION = 3.51.27 +PATCHLEVEL = r695 +DL_NAME = mysql-connector-odbc CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = MySQL Connector/ODBC 3.51 define BLURB - + This provides database connectivity for mysql, best used together with unixODBC endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -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 -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true +SPKG_SOURCEURL = http://dev.mysql.com/downloads/connector/odbc/3.51.html#source +MASTER_SITES = http://mirror.trouble-free.net/mysql_mirror//Downloads/Connector-ODBC/3.51/ +MASTER_SITES += ftp://mirror.anl.gov/pub/mysql//Downloads/Connector-ODBC/3.51/ +MASTER_SITES += http://opensource.become.com/mysql/Downloads/Connector-ODBC/3.51/ +MASTER_SITES += ftp://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.0/ +DISTFILES = $(DL_NAME)-$(GARVERSION)$(PATCHLEVEL).tar.gz +DISTFILES += mysql-5.0.84.tar.gz +UFILES_REGEX = $(DL_NAME)-(\d+(?:\.\d+)*)r(\d+).tar.gz +CATALOGNAME = myodbc -#include gar/category.mk +sysconfdir = /etc/opt/csw +localstatedir = /var/opt/csw + +REQUIRED_PKGS = CSWiconv +REQUIRED_PKGS += CSWlibtoolrt +REQUIRED_PKGS += CSWmysql5devel +REQUIRED_PKGS += CSWmysql5rt +REQUIRED_PKGS += CSWunixodbc +REQUIRED_PKGS += CSWzlib + +PREREQUISITE_PKGS = $(REQUIRED_PKGS) +# The tests act weird. They require a shared library that doesn't get built at all. +TEST_SCRIPTS = +WORKSRC = $(WORKDIR)/$(DL_NAME)-$(GARVERSION)$(PATCHLEVEL) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-unixODBC=/opt/csw --with-mysql-path=/opt/csw/mysql5 --enable-gui=no +CONFIGURE_ARGS += --with-odbc-ini=/etc/opt/csw +EXTRA_INC = $(abspath $(WORKDIR))/mysql-5.0.84/include +include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) Modified: csw/mgar/pkg/myodbc/trunk/checksums =================================================================== --- csw/mgar/pkg/template/trunk/checksums 2009-08-20 16:23:15 UTC (rev 6060) +++ csw/mgar/pkg/myodbc/trunk/checksums 2009-08-20 19:44:30 UTC (rev 6061) @@ -0,0 +1,2 @@ +671348f1a5b078da9ca76f97e1fda325 download/mysql-5.0.84.tar.gz +bb3df0778a7dc99d88ce1146ea709cbe download/mysql-connector-odbc-3.51.27r695.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 21:45:17 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 19:45:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[6062] csw/mgar/pkg/myodbc3/ Message-ID: Revision: 6062 http://gar.svn.sourceforge.net/gar/?rev=6062&view=rev Author: wahwah Date: 2009-08-20 19:45:17 +0000 (Thu, 20 Aug 2009) Log Message: ----------- myodbc3: Removing, 'myodbc' is going to be used. Removed Paths: ------------- csw/mgar/pkg/myodbc3/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 22:02:48 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 20:02:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6063] csw/mgar/pkg/wxwidgets/ Message-ID: Revision: 6063 http://gar.svn.sourceforge.net/gar/?rev=6063&view=rev Author: wahwah Date: 2009-08-20 20:02:48 +0000 (Thu, 20 Aug 2009) Log Message: ----------- wxwidgets: Copying the template Added Paths: ----------- csw/mgar/pkg/wxwidgets/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 22:42:47 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 20:42:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[6064] csw/mgar/pkg/wxwidgets/trunk Message-ID: Revision: 6064 http://gar.svn.sourceforge.net/gar/?rev=6064&view=rev Author: wahwah Date: 2009-08-20 20:42:46 +0000 (Thu, 20 Aug 2009) Log Message: ----------- wxwidgets: Some preliminary work is done. It doesn't compile for me. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile csw/mgar/pkg/wxwidgets/trunk/checksums Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-20 20:02:48 UTC (rev 6063) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-20 20:42:46 UTC (rev 6064) @@ -11,8 +11,8 @@ ## For more information about GAR variables, please see: ## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference ## -GARNAME = mypkg -GARVERSION = 1.0 +GARNAME = wxWidgets +GARVERSION = 2.8.10 ## ## The category that your software fits in. This is not a descriptive field, but ## influences the build process. Depending on the CATEGORIES setting, different @@ -25,7 +25,7 @@ CATEGORIES = lib ## ## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = +DESCRIPTION = A portable widget library ## ## A longer description of the package. This is only for descriptive purposes ## inside the Makefile and is not used elsewhere. @@ -39,12 +39,12 @@ ## ## Whitespace-separated list of URLs to download the source package from. ## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = +MASTER_SITES = $(SF_MIRRORS) ## ## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the ## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge ## project name of the software you wish to download. -## SF_PROJ = +SF_PROJ = wxwindows ## ## A list of space separated patch filenames from files/ that are to be applied ## to the extracted software before the ./configure stage. Patches need to be @@ -61,7 +61,7 @@ ## ## Catalog name is the name to be used with pkg{-get,util} -i . ## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = +CATALOGNAME = wxwidgets ## ## Set to 1 to mark the package as architecture-independent. ## ARCHALL = 0 @@ -120,10 +120,10 @@ ## INITSMF = ## USERGROUP = ## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = +REQUIRED_PKGS = CSWgtk2 ## ## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel ## ## When using non-empty $(PACKAGES): ## REQUIRED_PKGS_CSWpkgname = @@ -157,13 +157,16 @@ ## BUILD_ARGS = ## ## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex +CONFIGURE_ARGS += --disable-unicode --with-opengl ## ## BUILD64 = ## CONFIGURE_ENV = -## EXTRA_CFLAGS = +EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt +## -L/opt/csw/lib -R/opt/csw/lib ## EXTRA_LDFLAGS = -## EXTRA_INC = +## EXTRA_INC = /opt/csw/include/gtk-2.0 ## EXTRA_LIB = ## GARFLAVOR = ## INSTALL_ARGS = @@ -173,10 +176,5 @@ ## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. ## GARCOMPILER = SOS11 ## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig +include gar/category.mk Modified: csw/mgar/pkg/wxwidgets/trunk/checksums =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-20 20:02:48 UTC (rev 6063) +++ csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-20 20:42:46 UTC (rev 6064) @@ -0,0 +1 @@ +05b32ca051651f4b1885a90f62969faf download/wxWidgets-2.8.10.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Fri Aug 21 10:35:03 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Fri, 21 Aug 2009 08:35:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[6065] csw/mgar/pkg/wxwidgets/trunk Message-ID: Revision: 6065 http://gar.svn.sourceforge.net/gar/?rev=6065&view=rev Author: wahwah Date: 2009-08-21 08:35:02 +0000 (Fri, 21 Aug 2009) Log Message: ----------- wxwidgets: Got the configuration phase to complete Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile csw/mgar/pkg/wxwidgets/trunk/checksums Added Paths: ----------- csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch csw/mgar/pkg/wxwidgets/trunk/files/0002-Fixing-retarded-checks-for-libGL.patch Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-20 20:42:46 UTC (rev 6064) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-21 08:35:02 UTC (rev 6065) @@ -2,6 +2,13 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +# It's a work in progress! +# +# Done: configuration phase completes now. +# TODO: +# - Make sure the compilation phase completes +# - Split the installed files into separate packages + ## This file contains comments to guide you through various GAR settings. ## Please remove unnecessary comments before committing your code to the code ## repository. The comments to remove are marked with double hashes. @@ -30,16 +37,16 @@ ## A longer description of the package. This is only for descriptive purposes ## inside the Makefile and is not used elsewhere. define BLURB - endef ## ## Upstream URL that should show up in the VENDOR field as well as on ## http://opencsw.org/packages/. -SPKG_SOURCEURL = +SPKG_SOURCEURL = http://www.wxwidgets.org/ ## ## Whitespace-separated list of URLs to download the source package from. ## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES += http://trac.wxwidgets.org/raw-attachment/ticket/10660/ ## ## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the ## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge @@ -49,12 +56,14 @@ ## A list of space separated patch filenames from files/ that are to be applied ## to the extracted software before the ./configure stage. Patches need to be ## included in the DISTFILES variable as well. -## PATCHFILES = +PATCHFILES = 0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch +PATCHFILES += 0002-Fixing-retarded-checks-for-libGL.patch ## ## Whitespace-separated list of files which comprise this build. mGAR will look ## for the files in the $(FILEDIR) (trunk/files) directory and on the ## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(PATCHFILES) ## ## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -166,8 +175,8 @@ EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt ## -L/opt/csw/lib -R/opt/csw/lib ## EXTRA_LDFLAGS = -## EXTRA_INC = /opt/csw/include/gtk-2.0 -## EXTRA_LIB = +EXTRA_INC = /opt/csw/X11/include +EXTRA_LIB = /opt/csw/X11/lib ## GARFLAVOR = ## INSTALL_ARGS = ## OPT_FLAGS_SOS = -xO3 @@ -177,4 +186,5 @@ ## GARCOMPILER = SOS11 ## PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig + include gar/category.mk Modified: csw/mgar/pkg/wxwidgets/trunk/checksums =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-20 20:42:46 UTC (rev 6064) +++ csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-21 08:35:02 UTC (rev 6065) @@ -1 +1,3 @@ +7830ab8006ade9b14567341b5481eadd download/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch +45df2933ed2fa53f229feda01467db81 download/0002-Fixing-retarded-checks-for-libGL.patch 05b32ca051651f4b1885a90f62969faf download/wxWidgets-2.8.10.tar.gz Added: csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch (rev 0) +++ csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch 2009-08-21 08:35:02 UTC (rev 6065) @@ -0,0 +1,3566 @@ +From 3f9876856278a83d9f15e3d3be8ac1b037356a15 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Fri, 21 Aug 2009 08:49:59 +0200 +Subject: [PATCH] Patches from http://trac.wxwidgets.org/ticket/10660 + +--- + Makefile.in | 128 +++++++------- + build/bakefiles/common.bkl | 2 + + include/wx/afterstd.h | 11 + + include/wx/arrstr.h | 4 +- + include/wx/artprov.h | 6 +- + include/wx/beforestd.h | 10 + + include/wx/buffer.h | 2 +- + include/wx/cocoa/dirdlg.h | 2 +- + include/wx/confbase.h | 4 +- + include/wx/cppunit.h | 2 +- + include/wx/cshelp.h | 2 +- + include/wx/datectrl.h | 2 +- + include/wx/datetime.h | 42 ++-- + include/wx/dbgrid.h | 6 +- + include/wx/dbtable.h | 2 +- + include/wx/dcbuffer.h | 6 +- + include/wx/dcmirror.h | 6 +- + include/wx/debug.h | 6 +- + include/wx/debugrpt.h | 2 +- + include/wx/defs.h | 18 +- + include/wx/dynlib.h | 2 +- + include/wx/dynload.h | 2 +- + include/wx/event.h | 4 +- + include/wx/ffile.h | 4 +- + include/wx/filefn.h | 2 +- + include/wx/filename.h | 4 +- + include/wx/generic/calctrl.h | 6 +- + include/wx/generic/combo.h | 4 +- + include/wx/generic/grid.h | 14 +- + include/wx/generic/gridctrl.h | 4 +- + include/wx/generic/spinctlg.h | 8 +- + include/wx/generic/splitter.h | 2 +- + include/wx/glcanvas.h | 2 +- + include/wx/gtk/checklst.h | 6 +- + include/wx/gtk/spinctrl.h | 4 +- + include/wx/gtk1/checklst.h | 6 +- + include/wx/gtk1/spinctrl.h | 4 +- + include/wx/imagbmp.h | 26 ++-- + include/wx/image.h | 12 +- + include/wx/imagtiff.h | 8 +- + include/wx/intl.h | 16 +- + include/wx/list.h | 2 +- + include/wx/longlong.h | 8 +- + include/wx/mimetype.h | 6 +- + include/wx/module.h | 2 +- + include/wx/msgdlg.h | 4 +- + include/wx/object.h | 2 +- + include/wx/palette.h | 2 +- + include/wx/private/fileback.h | 2 +- + include/wx/protocol/ftp.h | 2 +- + include/wx/recguard.h | 2 +- + include/wx/selstore.h | 2 +- + include/wx/sound.h | 2 +- + include/wx/spinbutt.h | 2 +- + include/wx/stopwatch.h | 2 +- + include/wx/string.h | 30 ++-- + include/wx/tbarbase.h | 4 +- + include/wx/thrimpl.cpp | 22 +- + include/wx/tokenzr.h | 2 +- + include/wx/univ/button.h | 8 +- + include/wx/univ/checkbox.h | 6 +- + include/wx/univ/checklst.h | 2 +- + include/wx/univ/combobox.h | 6 +- + include/wx/univ/control.h | 4 +- + include/wx/univ/inpcons.h | 2 +- + include/wx/univ/inphand.h | 30 ++-- + include/wx/univ/listbox.h | 36 ++-- + include/wx/univ/menuitem.h | 4 +- + include/wx/univ/notebook.h | 6 +- + include/wx/univ/scrolbar.h | 18 +- + include/wx/univ/slider.h | 20 +- + include/wx/univ/spinbutt.h | 4 +- + include/wx/univ/textctrl.h | 52 +++--- + include/wx/univ/toolbar.h | 4 +- + include/wx/univ/toplevel.h | 12 +- + include/wx/valtext.h | 4 +- + include/wx/vector.h | 2 +- + include/wx/version.h | 4 +- + include/wx/vlbox.h | 4 +- + include/wx/wfstream.h | 4 +- + include/wx/wxchar.h | 32 ++-- + include/wx/x11/textctrl.h | 50 +++--- + include/wx/xrc/xmlres.h | 2 +- + utils/wxrc/wxrc.cpp | 414 ++++++++++++++++++++-------------------- + 84 files changed, 631 insertions(+), 600 deletions(-) + +diff --git a/Makefile.in b/Makefile.in +index 8c1a03e..175a0fb 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -75,7 +75,7 @@ WX_RELEASE = 2.8 + WX_RELEASE_NODOT = 28 + WX_VERSION = $(WX_RELEASE).10 + LIBDIRNAME = $(wx_top_builddir)/lib +-WXREGEX_CFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(____SHARED) \ ++WXREGEX_CFLAGS = -D__WX$(TOOLKIT)__ -DWXBUILDING $(__WXUNIV_DEFINE_p) $(____SHARED) \ + $(CPPFLAGS) $(CFLAGS) + WXREGEX_OBJECTS = \ + wxregex_regcomp.o \ +@@ -676,17 +676,17 @@ ALL_BASE_SOURCES = \ + src/common/dbtable.cpp + MONODLL_CFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=1 \ + -DWXMAKINGDLL $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + MONODLL_CXXFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 -DWXMAKINGDLL $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + MONODLL_OBJCXXFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 -DWXMAKINGDLL $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + MONODLL_OBJECTS = \ +@@ -781,17 +781,17 @@ MONODLL_OBJECTS = \ + MONODLL_ODEP = $(_____pch_wxprec_monodll_wx_wxprec_h_gch___depname) + MONOLIB_CFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=1 $(CPPFLAGS) \ + $(CFLAGS) + MONOLIB_CXXFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 $(CPPFLAGS) $(CXXFLAGS) + MONOLIB_OBJCXXFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 $(CPPFLAGS) $(OBJCXXFLAGS) + MONOLIB_OBJECTS = \ +@@ -885,12 +885,12 @@ MONOLIB_OBJECTS = \ + MONOLIB_ODEP = $(_____pch_wxprec_monolib_wx_wxprec_h_gch___depname) + BASEDLL_CFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 \ + -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + BASEDLL_CXXFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(PIC_FLAG) $(CPPFLAGS) \ + $(CXXFLAGS) +@@ -971,12 +971,12 @@ BASEDLL_OBJECTS = \ + BASEDLL_ODEP = $(_____pch_wxprec_basedll_wx_wxprec_h_gch___depname) + BASELIB_CFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 \ + -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS) + BASELIB_CXXFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) $(CXXFLAGS) + BASELIB_OBJECTS = \ +@@ -1055,7 +1055,7 @@ BASELIB_OBJECTS = \ + BASELIB_ODEP = $(_____pch_wxprec_baselib_wx_wxprec_h_gch___depname) + NETDLL_CXXFLAGS = $(__netdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXUSINGDLL \ + -DWXMAKINGDLL_NET $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + NETDLL_OBJECTS = \ +@@ -1074,7 +1074,7 @@ NETDLL_OBJECTS = \ + NETDLL_ODEP = $(_____pch_wxprec_netdll_wx_wxprec_h_gch___depname) + NETLIB_CXXFLAGS = $(__netlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 $(CPPFLAGS) \ + $(CXXFLAGS) + NETLIB_OBJECTS = \ +@@ -1092,18 +1092,18 @@ NETLIB_OBJECTS = \ + NETLIB_ODEP = $(_____pch_wxprec_netlib_wx_wxprec_h_gch___depname) + COREDLL_CFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + COREDLL_CXXFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) \ + $(CXXFLAGS) + COREDLL_OBJCXXFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) \ + $(OBJCXXFLAGS) +@@ -1119,17 +1119,17 @@ COREDLL_OBJECTS = \ + COREDLL_ODEP = $(_____pch_wxprec_coredll_wx_wxprec_h_gch___depname) + CORELIB_CFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=0 $(CPPFLAGS) \ + $(CFLAGS) + CORELIB_CXXFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=0 $(CPPFLAGS) $(CXXFLAGS) + CORELIB_OBJCXXFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=0 $(CPPFLAGS) $(OBJCXXFLAGS) + CORELIB_OBJECTS = \ +@@ -1143,17 +1143,17 @@ CORELIB_OBJECTS = \ + CORELIB_ODEP = $(_____pch_wxprec_corelib_wx_wxprec_h_gch___depname) + ADVDLL_CFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + ADVDLL_CXXFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + ADVDLL_OBJCXXFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + ADVDLL_OBJECTS = \ +@@ -1163,15 +1163,15 @@ ADVDLL_OBJECTS = \ + ADVDLL_ODEP = $(_____pch_wxprec_advdll_wx_wxprec_h_gch___depname) + ADVLIB_CFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CFLAGS) + ADVLIB_CXXFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + ADVLIB_OBJCXXFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(OBJCXXFLAGS) + ADVLIB_OBJECTS = \ +@@ -1180,12 +1180,12 @@ ADVLIB_OBJECTS = \ + ADVLIB_ODEP = $(_____pch_wxprec_advlib_wx_wxprec_h_gch___depname) + MEDIADLL_CXXFLAGS = $(__mediadll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_MEDIA $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + MEDIADLL_OBJCXXFLAGS = $(__mediadll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_MEDIA $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + MEDIADLL_OBJECTS = \ +@@ -1195,12 +1195,12 @@ MEDIADLL_OBJECTS = \ + MEDIADLL_ODEP = $(_____pch_wxprec_mediadll_wx_wxprec_h_gch___depname) + MEDIALIB_CXXFLAGS = $(__medialib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + MEDIALIB_OBJCXXFLAGS = $(__medialib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(OBJCXXFLAGS) + MEDIALIB_OBJECTS = \ +@@ -1209,7 +1209,7 @@ MEDIALIB_OBJECTS = \ + MEDIALIB_ODEP = $(_____pch_wxprec_medialib_wx_wxprec_h_gch___depname) + ODBCDLL_CXXFLAGS = $(__odbcdll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_ODBC $(PIC_FLAG) $(CPPFLAGS) \ + $(CXXFLAGS) +@@ -1220,7 +1220,7 @@ ODBCDLL_OBJECTS = \ + ODBCDLL_ODEP = $(_____pch_wxprec_odbcdll_wx_wxprec_h_gch___depname) + ODBCLIB_CXXFLAGS = $(__odbclib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 $(CPPFLAGS) $(CXXFLAGS) + ODBCLIB_OBJECTS = \ +@@ -1229,7 +1229,7 @@ ODBCLIB_OBJECTS = \ + ODBCLIB_ODEP = $(_____pch_wxprec_odbclib_wx_wxprec_h_gch___depname) + DBGRIDDLL_CXXFLAGS = $(__dbgriddll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_DBGRID $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + DBGRIDDLL_OBJECTS = \ +@@ -1238,7 +1238,7 @@ DBGRIDDLL_OBJECTS = \ + DBGRIDDLL_ODEP = $(_____pch_wxprec_dbgriddll_wx_wxprec_h_gch___depname) + DBGRIDLIB_CXXFLAGS = $(__dbgridlib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + DBGRIDLIB_OBJECTS = \ +@@ -1246,7 +1246,7 @@ DBGRIDLIB_OBJECTS = \ + DBGRIDLIB_ODEP = $(_____pch_wxprec_dbgridlib_wx_wxprec_h_gch___depname) + HTMLDLL_CXXFLAGS = $(__htmldll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_HTML $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + HTMLDLL_OBJECTS = \ +@@ -1278,7 +1278,7 @@ HTMLDLL_OBJECTS = \ + HTMLDLL_ODEP = $(_____pch_wxprec_htmldll_wx_wxprec_h_gch___depname) + HTMLLIB_CXXFLAGS = $(__htmllib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + HTMLLIB_OBJECTS = \ +@@ -1309,7 +1309,7 @@ HTMLLIB_OBJECTS = \ + HTMLLIB_ODEP = $(_____pch_wxprec_htmllib_wx_wxprec_h_gch___depname) + QADLL_CXXFLAGS = $(__qadll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_QA $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + QADLL_OBJECTS = \ +@@ -1319,7 +1319,7 @@ QADLL_OBJECTS = \ + QADLL_ODEP = $(_____pch_wxprec_qadll_wx_wxprec_h_gch___depname) + QALIB_CXXFLAGS = $(__qalib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + QALIB_OBJECTS = \ + qalib_debugrpt.o \ +@@ -1327,7 +1327,7 @@ QALIB_OBJECTS = \ + QALIB_ODEP = $(_____pch_wxprec_qalib_wx_wxprec_h_gch___depname) + XMLDLL_CXXFLAGS = $(__xmldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXUSINGDLL \ + -DWXMAKINGDLL_XML $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + XMLDLL_OBJECTS = \ +@@ -1337,7 +1337,7 @@ XMLDLL_OBJECTS = \ + XMLDLL_ODEP = $(_____pch_wxprec_xmldll_wx_wxprec_h_gch___depname) + XMLLIB_CXXFLAGS = $(__xmllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 $(CPPFLAGS) \ + $(CXXFLAGS) + XMLLIB_OBJECTS = \ +@@ -1346,7 +1346,7 @@ XMLLIB_OBJECTS = \ + XMLLIB_ODEP = $(_____pch_wxprec_xmllib_wx_wxprec_h_gch___depname) + XRCDLL_CXXFLAGS = $(__xrcdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_XRC $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + XRCDLL_OBJECTS = \ +@@ -1410,7 +1410,7 @@ XRCDLL_OBJECTS = \ + XRCDLL_ODEP = $(_____pch_wxprec_xrcdll_wx_wxprec_h_gch___depname) + XRCLIB_CXXFLAGS = $(__xrclib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + XRCLIB_OBJECTS = \ + xrclib_xh_animatctrl.o \ +@@ -1472,7 +1472,7 @@ XRCLIB_OBJECTS = \ + XRCLIB_ODEP = $(_____pch_wxprec_xrclib_wx_wxprec_h_gch___depname) + AUIDLL_CXXFLAGS = $(__auidll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_AUI $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + AUIDLL_OBJECTS = \ +@@ -1486,7 +1486,7 @@ AUIDLL_OBJECTS = \ + AUIDLL_ODEP = $(_____pch_wxprec_auidll_wx_wxprec_h_gch___depname) + AUILIB_CXXFLAGS = $(__auilib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + AUILIB_OBJECTS = \ + auilib_framemanager.o \ +@@ -1498,7 +1498,7 @@ AUILIB_OBJECTS = \ + AUILIB_ODEP = $(_____pch_wxprec_auilib_wx_wxprec_h_gch___depname) + RICHTEXTDLL_CXXFLAGS = $(__richtextdll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_RICHTEXT $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + RICHTEXTDLL_OBJECTS = \ +@@ -1515,7 +1515,7 @@ RICHTEXTDLL_OBJECTS = \ + RICHTEXTDLL_ODEP = $(_____pch_wxprec_richtextdll_wx_wxprec_h_gch___depname) + RICHTEXTLIB_CXXFLAGS = $(__richtextlib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + RICHTEXTLIB_OBJECTS = \ +@@ -1531,12 +1531,12 @@ RICHTEXTLIB_OBJECTS = \ + RICHTEXTLIB_ODEP = $(_____pch_wxprec_richtextlib_wx_wxprec_h_gch___depname) + GLDLL_CXXFLAGS = $(__gldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_GL $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + GLDLL_OBJCXXFLAGS = $(__gldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_GL $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + GLDLL_OBJECTS = \ +@@ -1545,11 +1545,11 @@ GLDLL_OBJECTS = \ + GLDLL_ODEP = $(_____pch_wxprec_gldll_wx_wxprec_h_gch___depname) + GLLIB_CXXFLAGS = $(__gllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + GLLIB_OBJCXXFLAGS = $(__gllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(OBJCXXFLAGS) + GLLIB_OBJECTS = \ + $(__OPENGL_SRC_OBJECTS_1) +@@ -12660,7 +12660,7 @@ wxexpat_xmltok.o: $(srcdir)/src/expat/lib/xmltok.c + $(CCC) -c -o $@ $(WXEXPAT_CFLAGS) $(srcdir)/src/expat/lib/xmltok.c + + monodll_version_rc.o: $(srcdir)/src/msw/version.rc $(MONODLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_BASE=1 --define WXMAKINGDLL ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_BASE=1 --define WXMAKINGDLL + + monodll_appbase.o: $(srcdir)/src/common/appbase.cpp $(MONODLL_ODEP) + $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/common/appbase.cpp +@@ -20937,7 +20937,7 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP) + @COND_PLATFORM_MACOSX_1_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/html/chm.cpp + + basedll_version_rc.o: $(srcdir)/src/msw/version.rc $(BASEDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1 ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1 + + basedll_appbase.o: $(srcdir)/src/common/appbase.cpp $(BASEDLL_ODEP) + $(CXXC) -c -o $@ $(BASEDLL_CXXFLAGS) $(srcdir)/src/common/appbase.cpp +@@ -22122,7 +22122,7 @@ baselib_uma.o: $(srcdir)/src/mac/carbon/uma.cpp $(BASELIB_ODEP) + @COND_PLATFORM_MACOSX_1@ $(CXXC) -c -o $@ $(BASELIB_CXXFLAGS) $(srcdir)/src/unix/utilsunx.cpp + + netdll_version_rc.o: $(srcdir)/src/msw/version.rc $(NETDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET + + netdll_fs_inet.o: $(srcdir)/src/common/fs_inet.cpp $(NETDLL_ODEP) + $(CXXC) -c -o $@ $(NETDLL_CXXFLAGS) $(srcdir)/src/common/fs_inet.cpp +@@ -22227,7 +22227,7 @@ netlib_carbon_gsocket.o: $(srcdir)/src/mac/carbon/gsocket.cpp $(NETLIB_ODEP) + @COND_PLATFORM_OS2_1@ $(CXXC) -c -o $@ $(NETLIB_CXXFLAGS) $(srcdir)/src/unix/gsocket.cpp + + coredll_version_rc.o: $(srcdir)/src/msw/version.rc $(COREDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0 ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0 + + coredll_event.o: $(srcdir)/src/common/event.cpp $(COREDLL_ODEP) + $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/common/event.cpp +@@ -28158,7 +28158,7 @@ corelib_win32.o: $(srcdir)/src/univ/themes/win32.cpp $(CORELIB_ODEP) + @COND_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/vscroll.cpp + + advdll_version_rc.o: $(srcdir)/src/msw/version.rc $(ADVDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_ADV ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_ADV + + advdll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(ADVDLL_ODEP) + $(CXXC) -c -o $@ $(ADVDLL_CXXFLAGS) $(srcdir)/src/unix/sound_sdl.cpp +@@ -28581,7 +28581,7 @@ advlib_wizard.o: $(srcdir)/src/generic/wizard.cpp $(ADVLIB_ODEP) + @COND_TOOLKIT_WINCE_WXUNIV_0@ $(CXXC) -c -o $@ $(ADVLIB_CXXFLAGS) $(srcdir)/src/msw/datectrl.cpp + + mediadll_version_rc.o: $(srcdir)/src/msw/version.rc $(MEDIADLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_MEDIA ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_MEDIA + + mediadll_mediactrlcmn.o: $(srcdir)/src/common/mediactrlcmn.cpp $(MEDIADLL_ODEP) + $(CXXC) -c -o $@ $(MEDIADLL_CXXFLAGS) $(srcdir)/src/common/mediactrlcmn.cpp +@@ -28668,7 +28668,7 @@ medialib_cocoa_mediactrl.o: $(srcdir)/src/cocoa/mediactrl.mm $(MEDIALIB_ODEP) + @COND_TOOLKIT_X11@ $(CXXC) -c -o $@ $(MEDIALIB_CXXFLAGS) $(srcdir)/src/unix/mediactrl.cpp + + odbcdll_version_rc.o: $(srcdir)/src/msw/version.rc $(ODBCDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_odbc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_ODBC ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_odbc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_ODBC + + odbcdll_db.o: $(srcdir)/src/common/db.cpp $(ODBCDLL_ODEP) + $(CXXC) -c -o $@ $(ODBCDLL_CXXFLAGS) $(srcdir)/src/common/db.cpp +@@ -28683,7 +28683,7 @@ odbclib_dbtable.o: $(srcdir)/src/common/dbtable.cpp $(ODBCLIB_ODEP) + $(CXXC) -c -o $@ $(ODBCLIB_CXXFLAGS) $(srcdir)/src/common/dbtable.cpp + + dbgriddll_version_rc.o: $(srcdir)/src/msw/version.rc $(DBGRIDDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_dbgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_DBGRID ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_dbgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_DBGRID + + dbgriddll_dbgrid.o: $(srcdir)/src/common/dbgrid.cpp $(DBGRIDDLL_ODEP) + $(CXXC) -c -o $@ $(DBGRIDDLL_CXXFLAGS) $(srcdir)/src/common/dbgrid.cpp +@@ -28692,7 +28692,7 @@ dbgridlib_dbgrid.o: $(srcdir)/src/common/dbgrid.cpp $(DBGRIDLIB_ODEP) + $(CXXC) -c -o $@ $(DBGRIDLIB_CXXFLAGS) $(srcdir)/src/common/dbgrid.cpp + + htmldll_version_rc.o: $(srcdir)/src/msw/version.rc $(HTMLDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_HTML ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_HTML + + htmldll_helpbest.o: $(srcdir)/src/msw/helpbest.cpp $(HTMLDLL_ODEP) + $(CXXC) -c -o $@ $(HTMLDLL_CXXFLAGS) $(srcdir)/src/msw/helpbest.cpp +@@ -28851,7 +28851,7 @@ htmllib_htmllbox.o: $(srcdir)/src/generic/htmllbox.cpp $(HTMLLIB_ODEP) + @COND_PLATFORM_MACOSX_1@ $(CXXC) -c -o $@ $(HTMLLIB_CXXFLAGS) $(srcdir)/src/html/chm.cpp + + qadll_version_rc.o: $(srcdir)/src/msw/version.rc $(QADLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_QA ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_QA + + qadll_debugrpt.o: $(srcdir)/src/common/debugrpt.cpp $(QADLL_ODEP) + $(CXXC) -c -o $@ $(QADLL_CXXFLAGS) $(srcdir)/src/common/debugrpt.cpp +@@ -28866,7 +28866,7 @@ qalib_dbgrptg.o: $(srcdir)/src/generic/dbgrptg.cpp $(QALIB_ODEP) + $(CXXC) -c -o $@ $(QALIB_CXXFLAGS) $(srcdir)/src/generic/dbgrptg.cpp + + xmldll_version_rc.o: $(srcdir)/src/msw/version.rc $(XMLDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML + + xmldll_xml.o: $(srcdir)/src/xml/xml.cpp $(XMLDLL_ODEP) + $(CXXC) -c -o $@ $(XMLDLL_CXXFLAGS) $(srcdir)/src/xml/xml.cpp +@@ -28881,7 +28881,7 @@ xmllib_xtixml.o: $(srcdir)/src/common/xtixml.cpp $(XMLLIB_ODEP) + $(CXXC) -c -o $@ $(XMLLIB_CXXFLAGS) $(srcdir)/src/common/xtixml.cpp + + xrcdll_version_rc.o: $(srcdir)/src/msw/version.rc $(XRCDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_XRC ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_XRC + + xrcdll_xh_animatctrl.o: $(srcdir)/src/xrc/xh_animatctrl.cpp $(XRCDLL_ODEP) + $(CXXC) -c -o $@ $(XRCDLL_CXXFLAGS) $(srcdir)/src/xrc/xh_animatctrl.cpp +@@ -29220,7 +29220,7 @@ xrclib_xmlrsall.o: $(srcdir)/src/xrc/xmlrsall.cpp $(XRCLIB_ODEP) + $(CXXC) -c -o $@ $(XRCLIB_CXXFLAGS) $(srcdir)/src/xrc/xmlrsall.cpp + + auidll_version_rc.o: $(srcdir)/src/msw/version.rc $(AUIDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_AUI ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_AUI + + auidll_framemanager.o: $(srcdir)/src/aui/framemanager.cpp $(AUIDLL_ODEP) + $(CXXC) -c -o $@ $(AUIDLL_CXXFLAGS) $(srcdir)/src/aui/framemanager.cpp +@@ -29259,7 +29259,7 @@ auilib_auibar.o: $(srcdir)/src/aui/auibar.cpp $(AUILIB_ODEP) + $(CXXC) -c -o $@ $(AUILIB_CXXFLAGS) $(srcdir)/src/aui/auibar.cpp + + richtextdll_version_rc.o: $(srcdir)/src/msw/version.rc $(RICHTEXTDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT + + richtextdll_richtextctrl.o: $(srcdir)/src/richtext/richtextctrl.cpp $(RICHTEXTDLL_ODEP) + $(CXXC) -c -o $@ $(RICHTEXTDLL_CXXFLAGS) $(srcdir)/src/richtext/richtextctrl.cpp +@@ -29316,7 +29316,7 @@ richtextlib_richtextprint.o: $(srcdir)/src/richtext/richtextprint.cpp $(RICHTEXT + $(CXXC) -c -o $@ $(RICHTEXTLIB_CXXFLAGS) $(srcdir)/src/richtext/richtextprint.cpp + + gldll_version_rc.o: $(srcdir)/src/msw/version.rc $(GLDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_GL ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_GL + + gldll_carbon_glcanvas.o: $(srcdir)/src/mac/carbon/glcanvas.cpp $(GLDLL_ODEP) + $(CXXC) -c -o $@ $(GLDLL_CXXFLAGS) $(srcdir)/src/mac/carbon/glcanvas.cpp +diff --git a/build/bakefiles/common.bkl b/build/bakefiles/common.bkl +index 25cc25f..338fdad 100644 +--- a/build/bakefiles/common.bkl ++++ b/build/bakefiles/common.bkl +@@ -592,6 +592,8 @@ $(TAB)$(VC_COMPILER) /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\r + $(wxwin.mkLibName(wxid)) + $(WXLIBNAME) + ++ WXBUILDING ++ + + + $(WXTOPDIR)src/common/dummy.cpp +diff --git a/include/wx/afterstd.h b/include/wx/afterstd.h +index 4c1d4a5..a1ad8d1 100644 +--- a/include/wx/afterstd.h ++++ b/include/wx/afterstd.h +@@ -46,3 +46,14 @@ + #endif + #endif + ++#if defined(__SUNPRO_CC) || defined(__SUNPRO_C) ++#ifndef _T ++#if !wxUSE_UNICODE ++#define _T(x) x ++#else /* Unicode */ ++/* use wxCONCAT_HELPER so that x could be expanded if it's a macro */ ++#define _T(x) wxCONCAT_HELPER(L, x) ++#endif /* ASCII/Unicode */ ++#endif /* !defined(_T) */ ++ ++#endif /* defined(__SUNPRO_CC) || defined(__SUNPRO_C) */ +diff --git a/include/wx/arrstr.h b/include/wx/arrstr.h +index 0f1b908..d669dc6 100644 +--- a/include/wx/arrstr.h ++++ b/include/wx/arrstr.h +@@ -152,7 +152,7 @@ public: + wxString& Item(size_t nIndex) const + { + wxASSERT_MSG( nIndex < m_nCount, +- _T("wxArrayString: index out of bounds") ); ++ wxT("wxArrayString: index out of bounds") ); + + return *(wxString *)&(m_pItems[nIndex]); + } +@@ -163,7 +163,7 @@ public: + wxString& Last() const + { + wxASSERT_MSG( !IsEmpty(), +- _T("wxArrayString: index out of bounds") ); ++ wxT("wxArrayString: index out of bounds") ); + return Item(Count() - 1); + } + +diff --git a/include/wx/artprov.h b/include/wx/artprov.h +index 1d026a7..e6df4f3 100644 +--- a/include/wx/artprov.h ++++ b/include/wx/artprov.h +@@ -27,10 +27,10 @@ class wxArtProviderModule; + typedef wxString wxArtClient; + typedef wxString wxArtID; + +-#define wxART_MAKE_CLIENT_ID_FROM_STR(id) (id + _T("_C")) +-#define wxART_MAKE_CLIENT_ID(id) _T(#id) _T("_C") ++#define wxART_MAKE_CLIENT_ID_FROM_STR(id) (id + wxT("_C")) ++#define wxART_MAKE_CLIENT_ID(id) wxT(#id) wxT("_C") + #define wxART_MAKE_ART_ID_FROM_STR(id) (id) +-#define wxART_MAKE_ART_ID(id) _T(#id) ++#define wxART_MAKE_ART_ID(id) wxT(#id) + + // ---------------------------------------------------------------------------- + // Art clients +diff --git a/include/wx/beforestd.h b/include/wx/beforestd.h +index aacfc7c..609073c 100644 +--- a/include/wx/beforestd.h ++++ b/include/wx/beforestd.h +@@ -63,3 +63,13 @@ + #pragma warning(disable:4786) + #endif // VC++ < 7 + ++#if defined(__SUNPRO_CC) || defined(__SUNPRO_C) ++#undef _T ++#endif // SUNCC ++ ++#if defined (WXBUILDING) ++#if defined(__SUNPRO_CC) || defined(__SUNPRO_C) ++#undef _T ++#endif /* SUNCC */ ++#endif /* WXBUILDING */ ++ +diff --git a/include/wx/buffer.h b/include/wx/buffer.h +index 605f4f1..f169f22 100644 +--- a/include/wx/buffer.h ++++ b/include/wx/buffer.h +@@ -286,7 +286,7 @@ public: + // Other ways to append to the buffer + void AppendByte(char data) + { +- wxCHECK_RET( m_bufdata->m_data, _T("invalid wxMemoryBuffer") ); ++ wxCHECK_RET( m_bufdata->m_data, wxT("invalid wxMemoryBuffer") ); + + m_bufdata->ResizeIfNeeded(m_bufdata->m_len + 1); + *(((char*)m_bufdata->m_data) + m_bufdata->m_len) = data; +diff --git a/include/wx/cocoa/dirdlg.h b/include/wx/cocoa/dirdlg.h +index 3c5b8dc..084d561 100644 +--- a/include/wx/cocoa/dirdlg.h ++++ b/include/wx/cocoa/dirdlg.h +@@ -26,7 +26,7 @@ class WXDLLEXPORT wxDirDialog: public wxDirDialogBase + public: + wxDirDialog(wxWindow *parent, + const wxString& message = wxDirSelectorPromptStr, +- const wxString& defaultPath = _T(""), ++ const wxString& defaultPath = wxT(""), + long style = wxDD_DEFAULT_STYLE, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, +diff --git a/include/wx/confbase.h b/include/wx/confbase.h +index 9e0cf54..2941b8a 100644 +--- a/include/wx/confbase.h ++++ b/include/wx/confbase.h +@@ -30,13 +30,13 @@ class WXDLLIMPEXP_FWD_BASE wxArrayString; + + /// separates group and entry names (probably shouldn't be changed) + #ifndef wxCONFIG_PATH_SEPARATOR +- #define wxCONFIG_PATH_SEPARATOR _T('/') ++ #define wxCONFIG_PATH_SEPARATOR wxT('/') + #endif + + /// introduces immutable entries + // (i.e. the ones which can't be changed from the local config file) + #ifndef wxCONFIG_IMMUTABLE_PREFIX +- #define wxCONFIG_IMMUTABLE_PREFIX _T('!') ++ #define wxCONFIG_IMMUTABLE_PREFIX wxT('!') + #endif + + #if wxUSE_CONFIG +diff --git a/include/wx/cppunit.h b/include/wx/cppunit.h +index c70cfbd..18266f8 100644 +--- a/include/wx/cppunit.h ++++ b/include/wx/cppunit.h +@@ -69,7 +69,7 @@ + if (Condition) \ + { anyTest; } \ + else \ +- wxLogInfo(wxString::Format(_T("skipping: %s.%s\n reason: %s equals false\n"), \ ++ wxLogInfo(wxString::Format(wxT("skipping: %s.%s\n reason: %s equals false\n"), \ + wxString(suiteName, wxConvUTF8).c_str(), \ + wxString(#testMethod, wxConvUTF8).c_str(), \ + wxString(#Condition, wxConvUTF8).c_str())) +diff --git a/include/wx/cshelp.h b/include/wx/cshelp.h +index f77ac4f..4cee508 100644 +--- a/include/wx/cshelp.h ++++ b/include/wx/cshelp.h +@@ -134,7 +134,7 @@ public: + const wxPoint& pt, + wxHelpEvent::Origin origin) + { +- wxCHECK_MSG( window, false, _T("window must not be NULL") ); ++ wxCHECK_MSG( window, false, wxT("window must not be NULL") ); + + m_helptextAtPoint = pt; + m_helptextOrigin = origin; +diff --git a/include/wx/datectrl.h b/include/wx/datectrl.h +index 0da1277..085a8d1 100644 +--- a/include/wx/datectrl.h ++++ b/include/wx/datectrl.h +@@ -19,7 +19,7 @@ + #include "wx/control.h" // the base class + #include "wx/datetime.h" + +-#define wxDatePickerCtrlNameStr _T("datectrl") ++#define wxDatePickerCtrlNameStr wxT("datectrl") + + // wxDatePickerCtrl styles + enum +diff --git a/include/wx/datetime.h b/include/wx/datetime.h +index e74dde1..cf6c024 100644 +--- a/include/wx/datetime.h ++++ b/include/wx/datetime.h +@@ -951,37 +951,37 @@ public: + + inline bool operator<(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() < dt.GetValue(); + } + + inline bool operator<=(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() <= dt.GetValue(); + } + + inline bool operator>(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() > dt.GetValue(); + } + + inline bool operator>=(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() >= dt.GetValue(); + } + + inline bool operator==(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() == dt.GetValue(); + } + + inline bool operator!=(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() != dt.GetValue(); + } + +@@ -1075,15 +1075,15 @@ public: + wxString Format(const wxChar *format = wxDefaultDateTimeFormat, + const TimeZone& tz = Local) const; + // preferred date representation for the current locale +- wxString FormatDate() const { return Format(_T("%x")); } ++ wxString FormatDate() const { return Format(wxT("%x")); } + // preferred time representation for the current locale +- wxString FormatTime() const { return Format(_T("%X")); } ++ wxString FormatTime() const { return Format(wxT("%X")); } + // returns the string representing the date in ISO 8601 format + // (YYYY-MM-DD) +- wxString FormatISODate() const { return Format(_T("%Y-%m-%d")); } ++ wxString FormatISODate() const { return Format(wxT("%Y-%m-%d")); } + // returns the string representing the time in ISO 8601 format + // (HH:MM:SS) +- wxString FormatISOTime() const { return Format(_T("%H:%M:%S")); } ++ wxString FormatISOTime() const { return Format(wxT("%H:%M:%S")); } + + // implementation + // ------------------------------------------------------------------------ +@@ -1647,7 +1647,7 @@ inline wxDateTime::wxDateTime(double jdn) + + inline wxDateTime& wxDateTime::Set(const Tm& tm) + { +- wxASSERT_MSG( tm.IsValid(), _T("invalid broken down date/time") ); ++ wxASSERT_MSG( tm.IsValid(), wxT("invalid broken down date/time") ); + + return Set(tm.mday, (Month)tm.mon, tm.year, + tm.hour, tm.min, tm.sec, tm.msec); +@@ -1678,14 +1678,14 @@ inline wxDateTime::wxDateTime(wxDateTime_t day, + + inline wxLongLong wxDateTime::GetValue() const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + return m_time; + } + + inline time_t wxDateTime::GetTicks() const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + if ( !IsInStdRange() ) + { + return (time_t)-1; +@@ -1753,21 +1753,21 @@ inline wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const + + inline bool wxDateTime::IsEqualTo(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return m_time == datetime.m_time; + } + + inline bool wxDateTime::IsEarlierThan(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return m_time < datetime.m_time; + } + + inline bool wxDateTime::IsLaterThan(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return m_time > datetime.m_time; + } +@@ -1824,14 +1824,14 @@ inline bool wxDateTime::IsEqualUpTo(const wxDateTime& dt, + + inline wxDateTime wxDateTime::Add(const wxTimeSpan& diff) const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + return wxDateTime(m_time + diff.GetValue()); + } + + inline wxDateTime& wxDateTime::Add(const wxTimeSpan& diff) + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + m_time += diff.GetValue(); + +@@ -1845,14 +1845,14 @@ inline wxDateTime& wxDateTime::operator+=(const wxTimeSpan& diff) + + inline wxDateTime wxDateTime::Subtract(const wxTimeSpan& diff) const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + return wxDateTime(m_time - diff.GetValue()); + } + + inline wxDateTime& wxDateTime::Subtract(const wxTimeSpan& diff) + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + m_time -= diff.GetValue(); + +@@ -1866,7 +1866,7 @@ inline wxDateTime& wxDateTime::operator-=(const wxTimeSpan& diff) + + inline wxTimeSpan wxDateTime::Subtract(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return wxTimeSpan(GetValue() - datetime.GetValue()); + } +diff --git a/include/wx/dbgrid.h b/include/wx/dbgrid.h +index 4e8655c..7e3b513 100644 +--- a/include/wx/dbgrid.h ++++ b/include/wx/dbgrid.h +@@ -23,7 +23,7 @@ + #include "wx/grid.h" + #include "wx/dbkeyg.h" + +-#define wxGRID_VALUE_DBAUTO _T("dbauto") ++#define wxGRID_VALUE_DBAUTO wxT("dbauto") + + WX_DECLARE_USER_EXPORTED_OBJARRAY(GenericKey,keyarray,WXDLLIMPEXP_DBGRID); + +@@ -119,12 +119,12 @@ public: + + virtual int GetNumberRows() + { +- wxLogDebug(_T(" GetNumberRows() = %i"),m_rowtotal); ++ wxLogDebug(wxT(" GetNumberRows() = %i"),m_rowtotal); + return m_rowtotal; + } + virtual int GetNumberCols() + { +- wxLogDebug(_T(" GetNumberCols() = %i"),m_nocols); ++ wxLogDebug(wxT(" GetNumberCols() = %i"),m_nocols); + return m_nocols; + } + virtual bool IsEmptyCell(int row, int col) ; +diff --git a/include/wx/dbtable.h b/include/wx/dbtable.h +index 1bbef54..9fb6260 100644 +--- a/include/wx/dbtable.h ++++ b/include/wx/dbtable.h +@@ -305,7 +305,7 @@ public: + HSTMT *NewCursor(bool setCursor = false, bool bindColumns = true) { return GetNewCursor(setCursor,bindColumns); } + #endif + +- ULONG Count(const wxString &args=_T("*")); ++ ULONG Count(const wxString &args=wxT("*")); + int DB_STATUS(void) { return(pDb->DB_STATUS); } + + bool IsColNull(UWORD colNumber) const; +diff --git a/include/wx/dcbuffer.h b/include/wx/dcbuffer.h +index 46c28ba..7249235 100644 +--- a/include/wx/dcbuffer.h ++++ b/include/wx/dcbuffer.h +@@ -100,8 +100,8 @@ public: + // blitting to) is destroyed. + void UnMask() + { +- wxCHECK_RET( m_dc, _T("no underlying wxDC?") ); +- wxASSERT_MSG( m_buffer && m_buffer->IsOk(), _T("invalid backing store") ); ++ wxCHECK_RET( m_dc, wxT("no underlying wxDC?") ); ++ wxASSERT_MSG( m_buffer && m_buffer->IsOk(), wxT("invalid backing store") ); + + wxCoord x = 0, + y = 0; +@@ -122,7 +122,7 @@ private: + // common part of Init()s + void InitCommon(wxDC *dc, int style) + { +- wxASSERT_MSG( !m_dc, _T("wxBufferedDC already initialised") ); ++ wxASSERT_MSG( !m_dc, wxT("wxBufferedDC already initialised") ); + + m_dc = dc; + m_style = style; +diff --git a/include/wx/dcmirror.h b/include/wx/dcmirror.h +index bc15a39..3b9dcb9 100644 +--- a/include/wx/dcmirror.h ++++ b/include/wx/dcmirror.h +@@ -135,7 +135,7 @@ protected: + wxCoord x2, wxCoord y2, + wxCoord xc, wxCoord yc) + { +- wxFAIL_MSG( _T("this is probably wrong") ); ++ wxFAIL_MSG( wxT("this is probably wrong") ); + + m_dc.DoDrawArc(GetX(x1, y1), GetY(x1, y1), + GetX(x2, y2), GetY(x2, y2), +@@ -152,7 +152,7 @@ protected: + virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, + double sa, double ea) + { +- wxFAIL_MSG( _T("this is probably wrong") ); ++ wxFAIL_MSG( wxT("this is probably wrong") ); + + m_dc.DoDrawEllipticArc(GetX(x, y), GetY(x, y), + GetX(w, h), GetY(w, h), +@@ -256,7 +256,7 @@ protected: + + virtual void DoSetClippingRegionAsRegion(const wxRegion& WXUNUSED(region)) + { +- wxFAIL_MSG( _T("not implemented") ); ++ wxFAIL_MSG( wxT("not implemented") ); + } + + virtual void DoSetClippingRegion(wxCoord x, wxCoord y, +diff --git a/include/wx/debug.h b/include/wx/debug.h +index fd389d5..7e07377 100644 +--- a/include/wx/debug.h ++++ b/include/wx/debug.h +@@ -123,13 +123,13 @@ + if ( cond ) \ + {} \ + else \ +- wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, _T(#cond), msg) ++ wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, wxT(#cond), msg) + #else + #define wxASSERT_MSG(cond, msg) \ + if ( cond ) \ + ; \ + else \ +- wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, _T(#cond), msg) ++ wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, wxT(#cond), msg) + #endif + + /* special form of assert: always triggers it (in debug mode) */ +@@ -140,7 +140,7 @@ + + /* FAIL with some message and a condition */ + #define wxFAIL_COND_MSG(cond, msg) \ +- wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, _T(cond), msg) ++ wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, wxT(cond), msg) + + /* An assert helper used to avoid warning when testing constant expressions, */ + /* i.e. wxASSERT( sizeof(int) == 4 ) can generate a compiler warning about */ +diff --git a/include/wx/debugrpt.h b/include/wx/debugrpt.h +index a50f1cb..d2b57d5 100644 +--- a/include/wx/debugrpt.h ++++ b/include/wx/debugrpt.h +@@ -161,7 +161,7 @@ public: + wxDebugReportUpload(const wxString& url, + const wxString& input, + const wxString& action, +- const wxString& curl = _T("curl")); ++ const wxString& curl = wxT("curl")); + + protected: + virtual bool DoProcess(); +diff --git a/include/wx/defs.h b/include/wx/defs.h +index 0e2ca0c..5e1ae54 100644 +--- a/include/wx/defs.h ++++ b/include/wx/defs.h +@@ -915,28 +915,28 @@ inline void *wxUIntToPtr(wxUIntPtr p) + #if (defined(__VISUALC__) && defined(__WIN32__)) + #define wxLongLong_t __int64 + #define wxLongLongSuffix i64 +- #define wxLongLongFmtSpec _T("I64") ++ #define wxLongLongFmtSpec wxT("I64") + #elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520) + #define wxLongLong_t __int64 + #define wxLongLongSuffix i64 +- #define wxLongLongFmtSpec _T("L") ++ #define wxLongLongFmtSpec wxT("L") + #elif (defined(__WATCOMC__) && (defined(__WIN32__) || defined(__DOS__) || defined(__OS2__))) + #define wxLongLong_t __int64 + #define wxLongLongSuffix i64 +- #define wxLongLongFmtSpec _T("L") ++ #define wxLongLongFmtSpec wxT("L") + #elif defined(__DIGITALMARS__) + #define wxLongLong_t __int64 + #define wxLongLongSuffix LL +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #elif defined(__MINGW32__) + #define wxLongLong_t long long + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("I64") ++ #define wxLongLongFmtSpec wxT("I64") + #elif defined(__MWERKS__) + #if __option(longlong) + #define wxLongLong_t long long + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #else + #error "The 64 bit integer support in CodeWarrior has been disabled." + #error "See the documentation on the 'longlong' pragma." +@@ -944,7 +944,7 @@ inline void *wxUIntToPtr(wxUIntPtr p) + #elif defined(__WXPALMOS__) + #define wxLongLong_t int64_t + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #elif defined(__VISAGECPP__) && __IBMCPP__ >= 400 + #define wxLongLong_t long long + #elif (defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8) || \ +@@ -954,11 +954,11 @@ inline void *wxUIntToPtr(wxUIntPtr p) + (defined(__DJGPP__) && __DJGPP__ >= 2) + #define wxLongLong_t long long + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 8) + #define wxLongLong_t long + #define wxLongLongSuffix l +- #define wxLongLongFmtSpec _T("l") ++ #define wxLongLongFmtSpec wxT("l") + #define wxLongLongIsLong + #endif + +diff --git a/include/wx/dynlib.h b/include/wx/dynlib.h +index 3552bdc..eefd49f 100644 +--- a/include/wx/dynlib.h ++++ b/include/wx/dynlib.h +@@ -116,7 +116,7 @@ enum wxPluginCategory + // type only once, as the first parameter, and creating a variable of this type + // called "pfn" initialized with the "name" from the "dynlib" + #define wxDYNLIB_FUNCTION(type, name, dynlib) \ +- type pfn ## name = (type)(dynlib).GetSymbol(_T(#name)) ++ type pfn ## name = (type)(dynlib).GetSymbol(wxT(#name)) + + // ---------------------------------------------------------------------------- + // wxDynamicLibraryDetails: contains details about a loaded wxDynamicLibrary +diff --git a/include/wx/dynload.h b/include/wx/dynload.h +index 68c63c1..3c40113 100644 +--- a/include/wx/dynload.h ++++ b/include/wx/dynload.h +@@ -71,7 +71,7 @@ public: + void RefObj() { ++m_objcount; } + void UnrefObj() + { +- wxASSERT_MSG( m_objcount > 0, _T("Too many objects deleted??") ); ++ wxASSERT_MSG( m_objcount > 0, wxT("Too many objects deleted??") ); + --m_objcount; + } + +diff --git a/include/wx/event.h b/include/wx/event.h +index 26fab62..351d04f 100644 +--- a/include/wx/event.h ++++ b/include/wx/event.h +@@ -451,7 +451,7 @@ public: + wxPropagateOnce(wxEvent& event) : m_event(event) + { + wxASSERT_MSG( m_event.m_propagationLevel > 0, +- _T("shouldn't be used unless ShouldPropagate()!") ); ++ wxT("shouldn't be used unless ShouldPropagate()!") ); + + m_event.m_propagationLevel--; + } +@@ -1398,7 +1398,7 @@ public: + // m_loggingOff flag is only used by wxEVT_[QUERY_]END_SESSION, it + // doesn't make sense for wxEVT_CLOSE_WINDOW + wxASSERT_MSG( m_eventType != wxEVT_CLOSE_WINDOW, +- _T("this flag is for end session events only") ); ++ wxT("this flag is for end session events only") ); + + return m_loggingOff; + } +diff --git a/include/wx/ffile.h b/include/wx/ffile.h +index c3dda75..5577484 100644 +--- a/include/wx/ffile.h ++++ b/include/wx/ffile.h +@@ -37,13 +37,13 @@ public: + // def ctor + wxFFile() { m_fp = NULL; } + // open specified file (may fail, use IsOpened()) +- wxFFile(const wxChar *filename, const wxChar *mode = _T("r")); ++ wxFFile(const wxChar *filename, const wxChar *mode = wxT("r")); + // attach to (already opened) file + wxFFile(FILE *lfp) { m_fp = lfp; } + + // open/close + // open a file (existing or not - the mode controls what happens) +- bool Open(const wxChar *filename, const wxChar *mode = _T("r")); ++ bool Open(const wxChar *filename, const wxChar *mode = wxT("r")); + // closes the opened file (this is a NOP if not opened) + bool Close(); + +diff --git a/include/wx/filefn.h b/include/wx/filefn.h +index 56c01c7..0e35b39 100644 +--- a/include/wx/filefn.h ++++ b/include/wx/filefn.h +@@ -406,7 +406,7 @@ enum wxFileKind + #define wxHAS_LARGE_FFILES + #endif + #else +- #define wxFileOffsetFmtSpec _T("") ++ #define wxFileOffsetFmtSpec wxT("") + #endif + // functions + #define wxClose close +diff --git a/include/wx/filename.h b/include/wx/filename.h +index 0a3abb5..c156e73 100644 +--- a/include/wx/filename.h ++++ b/include/wx/filename.h +@@ -488,10 +488,10 @@ public: + static wxULongLong GetSize(const wxString &file); + + // returns the size in a human readable form +- wxString GetHumanReadableSize(const wxString &nullsize = wxGetTranslation(_T("Not available")), ++ wxString GetHumanReadableSize(const wxString &nullsize = wxGetTranslation(wxT("Not available")), + int precision = 1) const; + static wxString GetHumanReadableSize(const wxULongLong &sz, +- const wxString &nullsize = wxGetTranslation(_T("Not available")), ++ const wxString &nullsize = wxGetTranslation(wxT("Not available")), + int precision = 1); + + +diff --git a/include/wx/generic/calctrl.h b/include/wx/generic/calctrl.h +index 43b854c..a525a4b 100644 +--- a/include/wx/generic/calctrl.h ++++ b/include/wx/generic/calctrl.h +@@ -19,7 +19,7 @@ class WXDLLIMPEXP_FWD_CORE wxComboBox; + class WXDLLIMPEXP_FWD_CORE wxStaticText; + class WXDLLIMPEXP_FWD_CORE wxSpinCtrl; + +-#define wxCalendarNameStr _T("CalendarCtrl") ++#define wxCalendarNameStr wxT("CalendarCtrl") + + // ---------------------------------------------------------------------------- + // wxCalendarCtrl: a control allowing the user to pick a date interactively +@@ -124,14 +124,14 @@ public: + + wxCalendarDateAttr *GetAttr(size_t day) const + { +- wxCHECK_MSG( day > 0 && day < 32, NULL, _T("invalid day") ); ++ wxCHECK_MSG( day > 0 && day < 32, NULL, wxT("invalid day") ); + + return m_attrs[day - 1]; + } + + void SetAttr(size_t day, wxCalendarDateAttr *attr) + { +- wxCHECK_RET( day > 0 && day < 32, _T("invalid day") ); ++ wxCHECK_RET( day > 0 && day < 32, wxT("invalid day") ); + + delete m_attrs[day - 1]; + m_attrs[day - 1] = attr; +diff --git a/include/wx/generic/combo.h b/include/wx/generic/combo.h +index 1b25185..06814aa 100644 +--- a/include/wx/generic/combo.h ++++ b/include/wx/generic/combo.h +@@ -26,8 +26,8 @@ + // all actions of single line text controls are supported + + // popup/dismiss the choice window +-#define wxACTION_COMBOBOX_POPUP _T("popup") +-#define wxACTION_COMBOBOX_DISMISS _T("dismiss") ++#define wxACTION_COMBOBOX_POPUP wxT("popup") ++#define wxACTION_COMBOBOX_DISMISS wxT("dismiss") + + #endif + +diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h +index e84bb7d..fb308ed 100644 +--- a/include/wx/generic/grid.h ++++ b/include/wx/generic/grid.h +@@ -42,11 +42,11 @@ extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxGridNameStr[]; + #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16 + + // type names for grid table values +-#define wxGRID_VALUE_STRING _T("string") +-#define wxGRID_VALUE_BOOL _T("bool") +-#define wxGRID_VALUE_NUMBER _T("long") +-#define wxGRID_VALUE_FLOAT _T("double") +-#define wxGRID_VALUE_CHOICE _T("choice") ++#define wxGRID_VALUE_STRING wxT("string") ++#define wxGRID_VALUE_BOOL wxT("bool") ++#define wxGRID_VALUE_NUMBER wxT("long") ++#define wxGRID_VALUE_FLOAT wxT("double") ++#define wxGRID_VALUE_CHOICE wxT("choice") + + #define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING + #define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER +@@ -472,7 +472,7 @@ protected: + + // string representation of m_valueOld + wxString GetString() const +- { return wxString::Format(_T("%ld"), m_valueOld); } ++ { return wxString::Format(wxT("%ld"), m_valueOld); } + + private: + int m_min, +@@ -552,7 +552,7 @@ public: + + // set the string values returned by GetValue() for the true and false + // states, respectively +- static void UseStringValues(const wxString& valueTrue = _T("1"), ++ static void UseStringValues(const wxString& valueTrue = wxT("1"), + const wxString& valueFalse = wxEmptyString); + + // return true if the given string is equal to the string representation of +diff --git a/include/wx/generic/gridctrl.h b/include/wx/generic/gridctrl.h +index 2581fd2..477e0f1 100644 +--- a/include/wx/generic/gridctrl.h ++++ b/include/wx/generic/gridctrl.h +@@ -16,8 +16,8 @@ + + #if wxUSE_GRID + +-#define wxGRID_VALUE_CHOICEINT _T("choiceint") +-#define wxGRID_VALUE_DATETIME _T("datetime") ++#define wxGRID_VALUE_CHOICEINT wxT("choiceint") ++#define wxGRID_VALUE_DATETIME wxT("datetime") + + #if wxUSE_DATETIME + +diff --git a/include/wx/generic/spinctlg.h b/include/wx/generic/spinctlg.h +index 7874e44..9719432 100644 +--- a/include/wx/generic/spinctlg.h ++++ b/include/wx/generic/spinctlg.h +@@ -41,7 +41,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Init(); + Create(parent, id, value, pos, size, style, min, max, initial, name); +@@ -54,7 +54,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")); ++ const wxString& name = wxT("wxSpinCtrl")); + + virtual ~wxSpinCtrl(); + +@@ -125,7 +125,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Create(parent, id, value, pos, size, style, min, max, initial, name); + } +@@ -137,7 +137,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + SetRange(min, max); + +diff --git a/include/wx/generic/splitter.h b/include/wx/generic/splitter.h +index ac651f2..d5927a6 100644 +--- a/include/wx/generic/splitter.h ++++ b/include/wx/generic/splitter.h +@@ -91,7 +91,7 @@ public: + void SetSplitMode(int mode) + { + wxASSERT_MSG( mode == wxSPLIT_VERTICAL || mode == wxSPLIT_HORIZONTAL, +- _T("invalid split mode") ); ++ wxT("invalid split mode") ); + + m_splitMode = (wxSplitMode)mode; + } +diff --git a/include/wx/glcanvas.h b/include/wx/glcanvas.h +index 25e2eac..c6ed1c8 100644 +--- a/include/wx/glcanvas.h ++++ b/include/wx/glcanvas.h +@@ -44,7 +44,7 @@ enum + WX_GL_MIN_ACCUM_ALPHA /* use alpha buffer with most bits (> MIN_ACCUM_ALPHA bits) */ + }; + +-#define wxGLCanvasName _T("GLCanvas") ++#define wxGLCanvasName wxT("GLCanvas") + + #if defined(__WXMSW__) + #include "wx/msw/glcanvas.h" +diff --git a/include/wx/gtk/checklst.h b/include/wx/gtk/checklst.h +index fa89477..2c1ff65 100644 +--- a/include/wx/gtk/checklst.h ++++ b/include/wx/gtk/checklst.h +@@ -18,10 +18,10 @@ + // there is no "right" choice of the checkbox indicators, so allow the user to + // define them himself if he wants + #ifndef wxCHECKLBOX_CHECKED +- #define wxCHECKLBOX_CHECKED _T('x') +- #define wxCHECKLBOX_UNCHECKED _T(' ') ++ #define wxCHECKLBOX_CHECKED wxT('x') ++ #define wxCHECKLBOX_UNCHECKED wxT(' ') + +- #define wxCHECKLBOX_STRING _T("[ ] ") ++ #define wxCHECKLBOX_STRING wxT("[ ] ") + #endif + + //----------------------------------------------------------------------------- +diff --git a/include/wx/gtk/spinctrl.h b/include/wx/gtk/spinctrl.h +index 2929f7f..8fc1dc9 100644 +--- a/include/wx/gtk/spinctrl.h ++++ b/include/wx/gtk/spinctrl.h +@@ -26,7 +26,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Create(parent, id, value, pos, size, style, min, max, initial, name); + } +@@ -38,7 +38,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")); ++ const wxString& name = wxT("wxSpinCtrl")); + + void SetValue(const wxString& text); + void SetSelection(long from, long to); +diff --git a/include/wx/gtk1/checklst.h b/include/wx/gtk1/checklst.h +index 5a9b8cb..de75b1f 100644 +--- a/include/wx/gtk1/checklst.h ++++ b/include/wx/gtk1/checklst.h +@@ -18,10 +18,10 @@ + // there is no "right" choice of the checkbox indicators, so allow the user to + // define them himself if he wants + #ifndef wxCHECKLBOX_CHECKED +- #define wxCHECKLBOX_CHECKED _T('x') +- #define wxCHECKLBOX_UNCHECKED _T(' ') ++ #define wxCHECKLBOX_CHECKED wxT('x') ++ #define wxCHECKLBOX_UNCHECKED wxT(' ') + +- #define wxCHECKLBOX_STRING _T("[ ] ") ++ #define wxCHECKLBOX_STRING wxT("[ ] ") + #endif + + //----------------------------------------------------------------------------- +diff --git a/include/wx/gtk1/spinctrl.h b/include/wx/gtk1/spinctrl.h +index 7c94538..2c60b77 100644 +--- a/include/wx/gtk1/spinctrl.h ++++ b/include/wx/gtk1/spinctrl.h +@@ -32,7 +32,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Create(parent, id, value, pos, size, style, min, max, initial, name); + } +@@ -44,7 +44,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")); ++ const wxString& name = wxT("wxSpinCtrl")); + + void SetValue(const wxString& text); + void SetSelection(long from, long to); +diff --git a/include/wx/imagbmp.h b/include/wx/imagbmp.h +index b7a5222..780736b 100644 +--- a/include/wx/imagbmp.h ++++ b/include/wx/imagbmp.h +@@ -14,7 +14,7 @@ + + // defines for saving the BMP file in different formats, Bits Per Pixel + // USE: wximage.SetOption( wxIMAGE_OPTION_BMP_FORMAT, wxBMP_xBPP ); +-#define wxIMAGE_OPTION_BMP_FORMAT wxString(_T("wxBMP_FORMAT")) ++#define wxIMAGE_OPTION_BMP_FORMAT wxString(wxT("wxBMP_FORMAT")) + + // These two options are filled in upon reading CUR file and can (should) be + // specified when saving a CUR file - they define the hotspot of the cursor: +@@ -52,10 +52,10 @@ class WXDLLEXPORT wxBMPHandler : public wxImageHandler + public: + wxBMPHandler() + { +- m_name = _T("Windows bitmap file"); +- m_extension = _T("bmp"); ++ m_name = wxT("Windows bitmap file"); ++ m_extension = wxT("bmp"); + m_type = wxBITMAP_TYPE_BMP; +- m_mime = _T("image/x-bmp"); ++ m_mime = wxT("image/x-bmp"); + } + + #if wxUSE_STREAMS +@@ -86,10 +86,10 @@ class WXDLLEXPORT wxICOHandler : public wxBMPHandler + public: + wxICOHandler() + { +- m_name = _T("Windows icon file"); +- m_extension = _T("ico"); ++ m_name = wxT("Windows icon file"); ++ m_extension = wxT("ico"); + m_type = wxBITMAP_TYPE_ICO; +- m_mime = _T("image/x-ico"); ++ m_mime = wxT("image/x-ico"); + } + + #if wxUSE_STREAMS +@@ -115,10 +115,10 @@ class WXDLLEXPORT wxCURHandler : public wxICOHandler + public: + wxCURHandler() + { +- m_name = _T("Windows cursor file"); +- m_extension = _T("cur"); ++ m_name = wxT("Windows cursor file"); ++ m_extension = wxT("cur"); + m_type = wxBITMAP_TYPE_CUR; +- m_mime = _T("image/x-cur"); ++ m_mime = wxT("image/x-cur"); + } + + // VS: This handler's meat is implemented inside wxICOHandler (the two +@@ -142,10 +142,10 @@ class WXDLLEXPORT wxANIHandler : public wxCURHandler + public: + wxANIHandler() + { +- m_name = _T("Windows animated cursor file"); +- m_extension = _T("ani"); ++ m_name = wxT("Windows animated cursor file"); ++ m_extension = wxT("ani"); + m_type = wxBITMAP_TYPE_ANI; +- m_mime = _T("image/x-ani"); ++ m_mime = wxT("image/x-ani"); + } + + +diff --git a/include/wx/image.h b/include/wx/image.h +index 8048da4..f7f58a4 100644 +--- a/include/wx/image.h ++++ b/include/wx/image.h +@@ -27,14 +27,14 @@ + // which breaks the compilation below + #undef index + +-#define wxIMAGE_OPTION_QUALITY wxString(_T("quality")) +-#define wxIMAGE_OPTION_FILENAME wxString(_T("FileName")) ++#define wxIMAGE_OPTION_QUALITY wxString(wxT("quality")) ++#define wxIMAGE_OPTION_FILENAME wxString(wxT("FileName")) + +-#define wxIMAGE_OPTION_RESOLUTION wxString(_T("Resolution")) +-#define wxIMAGE_OPTION_RESOLUTIONX wxString(_T("ResolutionX")) +-#define wxIMAGE_OPTION_RESOLUTIONY wxString(_T("ResolutionY")) ++#define wxIMAGE_OPTION_RESOLUTION wxString(wxT("Resolution")) ++#define wxIMAGE_OPTION_RESOLUTIONX wxString(wxT("ResolutionX")) ++#define wxIMAGE_OPTION_RESOLUTIONY wxString(wxT("ResolutionY")) + +-#define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(_T("ResolutionUnit")) ++#define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(wxT("ResolutionUnit")) + + // constants used with wxIMAGE_OPTION_RESOLUTIONUNIT + enum +diff --git a/include/wx/imagtiff.h b/include/wx/imagtiff.h +index d236b75..d807ae7 100644 +--- a/include/wx/imagtiff.h ++++ b/include/wx/imagtiff.h +@@ -21,10 +21,10 @@ + #include "wx/image.h" + + // defines for wxImage::SetOption +-#define wxIMAGE_OPTION_BITSPERSAMPLE wxString(_T("BitsPerSample")) +-#define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(_T("SamplesPerPixel")) +-#define wxIMAGE_OPTION_COMPRESSION wxString(_T("Compression")) +-#define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(_T("ImageDescriptor")) ++#define wxIMAGE_OPTION_BITSPERSAMPLE wxString(wxT("BitsPerSample")) ++#define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(wxT("SamplesPerPixel")) ++#define wxIMAGE_OPTION_COMPRESSION wxString(wxT("Compression")) ++#define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(wxT("ImageDescriptor")) + + class WXDLLEXPORT wxTIFFHandler: public wxImageHandler + { +diff --git a/include/wx/intl.h b/include/wx/intl.h +index 02bef05..311281a 100644 +--- a/include/wx/intl.h ++++ b/include/wx/intl.h +@@ -45,13 +45,13 @@ enum wxLayoutDirection + // --keyword="_" --keyword="wxPLURAL:1,2" options + // to extract the strings from the sources) + #ifndef WXINTL_NO_GETTEXT_MACRO +- #define _(s) wxGetTranslation(_T(s)) +- #define wxPLURAL(sing, plur, n) wxGetTranslation(_T(sing), _T(plur), n) ++ #define _(s) wxGetTranslation(wxT(s)) ++ #define wxPLURAL(sing, plur, n) wxGetTranslation(wxT(sing), wxT(plur), n) + #endif + + // another one which just marks the strings for extraction, but doesn't + // perform the translation (use -kwxTRANSLATE with xgettext!) +-#define wxTRANSLATE(str) _T(str) ++#define wxTRANSLATE(str) wxT(str) + + // ---------------------------------------------------------------------------- + // forward decls +@@ -603,12 +603,12 @@ wxGetTranslation(const wxChar *sz1, const wxChar *sz2, + + #if !defined(WXINTL_NO_GETTEXT_MACRO) + #if !defined(_) +- #define _(s) (_T(s)) ++ #define _(s) (wxT(s)) + #endif +- #define wxPLURAL(sing, plur, n) ((n) == 1 ? _T(sing) : _T(plur)) ++ #define wxPLURAL(sing, plur, n) ((n) == 1 ? wxT(sing) : wxT(plur)) + #endif + +-#define wxTRANSLATE(str) _T(str) ++#define wxTRANSLATE(str) wxT(str) + + inline const wxChar * + wxGetTranslation(const wxChar *sz, const wxChar * WXUNUSED(domain) = NULL) +@@ -622,10 +622,10 @@ wxGetTranslation(const wxChar *sz, const wxChar * WXUNUSED(domain) = NULL) + // wxTRANSLATE) too + #if !defined(WXINTL_NO_GETTEXT_MACRO) + #if !defined(gettext_noop) +- #define gettext_noop(str) _T(str) ++ #define gettext_noop(str) wxT(str) + #endif + #if !defined(N_) +- #define N_(s) _T(s) ++ #define N_(s) wxT(s) + #endif + #endif + +diff --git a/include/wx/list.h b/include/wx/list.h +index 4b5ae06..b0c2e18 100644 +--- a/include/wx/list.h ++++ b/include/wx/list.h +@@ -207,7 +207,7 @@ private: + bool operator==(const compatibility_iterator& i) const \ + { \ + wxASSERT_MSG( m_list && i.m_list, \ +- _T("comparing invalid iterators is illegal") ); \ ++ wxT("comparing invalid iterators is illegal") ); \ + return (m_list == i.m_list) && (m_iter == i.m_iter); \ + } \ + bool operator!=(const compatibility_iterator& i) const \ +diff --git a/include/wx/longlong.h b/include/wx/longlong.h +index 0bead47..9210228 100644 +--- a/include/wx/longlong.h ++++ b/include/wx/longlong.h +@@ -177,7 +177,7 @@ public: + long ToLong() const + { + wxASSERT_MSG( (m_ll >= LONG_MIN) && (m_ll <= LONG_MAX), +- _T("wxLongLong to long conversion loss of precision") ); ++ wxT("wxLongLong to long conversion loss of precision") ); + + return wx_truncate_cast(long, m_ll); + } +@@ -405,7 +405,7 @@ public: + unsigned long ToULong() const + { + wxASSERT_MSG( m_ll <= LONG_MAX, +- _T("wxULongLong to long conversion loss of precision") ); ++ wxT("wxULongLong to long conversion loss of precision") ); + + return wx_truncate_cast(unsigned long, m_ll); + } +@@ -683,7 +683,7 @@ public: + long ToLong() const + { + wxASSERT_MSG( (m_hi == 0l) || (m_hi == -1l), +- _T("wxLongLong to long conversion loss of precision") ); ++ wxT("wxLongLong to long conversion loss of precision") ); + + return (long)m_lo; + } +@@ -908,7 +908,7 @@ public: + unsigned long ToULong() const + { + wxASSERT_MSG( m_hi == 0ul, +- _T("wxULongLong to long conversion loss of precision") ); ++ wxT("wxULongLong to long conversion loss of precision") ); + + return (unsigned long)m_lo; + } +diff --git a/include/wx/mimetype.h b/include/wx/mimetype.h +index 2ebf996..8eee00d 100644 +--- a/include/wx/mimetype.h ++++ b/include/wx/mimetype.h +@@ -51,12 +51,12 @@ class WXDLLIMPEXP_BASE wxMimeType : public wxString + public: + // all string ctors here + +- wxString GetType() const { return BeforeFirst(_T('/')); } +- wxString GetSubType() const { return AfterFirst(_T('/')); } ++ wxString GetType() const { return BeforeFirst(wxT('/')); } ++ wxString GetSubType() const { return AfterFirst(wxT('/')); } + + void SetSubType(const wxString& subtype) + { +- *this = GetType() + _T('/') + subtype; ++ *this = GetType() + wxT('/') + subtype; + } + + bool Matches(const wxMimeType& wildcard) +diff --git a/include/wx/module.h b/include/wx/module.h +index 7394f4e..b4d0abc 100644 +--- a/include/wx/module.h ++++ b/include/wx/module.h +@@ -68,7 +68,7 @@ protected: + // after that + void AddDependency(wxClassInfo *dep) + { +- wxCHECK_RET( dep, _T("NULL module dependency") ); ++ wxCHECK_RET( dep, wxT("NULL module dependency") ); + + m_dependencies.Add(dep); + } +diff --git a/include/wx/msgdlg.h b/include/wx/msgdlg.h +index d225726..a2ce2a8 100644 +--- a/include/wx/msgdlg.h ++++ b/include/wx/msgdlg.h +@@ -23,10 +23,10 @@ protected: + void SetMessageDialogStyle(long style) + { + wxASSERT_MSG( ((style & wxYES_NO) == wxYES_NO) || ((style & wxYES_NO) == 0), +- _T("wxYES and wxNO may only be used together in wxMessageDialog") ); ++ wxT("wxYES and wxNO may only be used together in wxMessageDialog") ); + + wxASSERT_MSG( (style & wxID_OK) != wxID_OK, +- _T("wxMessageBox: Did you mean wxOK (and not wxID_OK)?") ); ++ wxT("wxMessageBox: Did you mean wxOK (and not wxID_OK)?") ); + + m_dialogStyle = style; + } +diff --git a/include/wx/object.h b/include/wx/object.h +index d46efcf..b7fda24 100644 +--- a/include/wx/object.h ++++ b/include/wx/object.h +@@ -311,7 +311,7 @@ name##PluginSentinel m_pluginsentinel; + #ifdef __WXDEBUG__ + inline void* wxCheckCast(void *ptr) + { +- wxASSERT_MSG( ptr, _T("wxStaticCast() used incorrectly") ); ++ wxASSERT_MSG( ptr, wxT("wxStaticCast() used incorrectly") ); + return ptr; + } + #define wxStaticCast(obj, className) \ +diff --git a/include/wx/palette.h b/include/wx/palette.h +index 9a09456..43757ab 100644 +--- a/include/wx/palette.h ++++ b/include/wx/palette.h +@@ -27,7 +27,7 @@ public: + + virtual bool Ok() const { return IsOk(); } + virtual bool IsOk() const = 0; +- virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; } ++ virtual int GetColoursCount() const { wxFAIL_MSG( wxT("not implemented") ); return 0; } + }; + + #if defined(__WXPALMOS__) +diff --git a/include/wx/private/fileback.h b/include/wx/private/fileback.h +index 534a0f3..7f5e722 100644 +--- a/include/wx/private/fileback.h ++++ b/include/wx/private/fileback.h +@@ -33,7 +33,7 @@ public: + // backing file is never created and the backing is done with memory. + wxBackingFile(wxInputStream *stream, + size_t bufsize = DefaultBufSize, +- const wxString& prefix = _T("wxbf")); ++ const wxString& prefix = wxT("wxbf")); + + wxBackingFile() : m_impl(NULL) { } + ~wxBackingFile(); +diff --git a/include/wx/protocol/ftp.h b/include/wx/protocol/ftp.h +index b074e15..0c5cfbc 100644 +--- a/include/wx/protocol/ftp.h ++++ b/include/wx/protocol/ftp.h +@@ -175,7 +175,7 @@ protected: + + // the trace mask used by assorted wxLogTrace() in ftp code, do + // wxLog::AddTraceMask(FTP_TRACE_MASK) to see them in output +-#define FTP_TRACE_MASK _T("ftp") ++#define FTP_TRACE_MASK wxT("ftp") + + #endif // wxUSE_PROTOCOL_FTP + +diff --git a/include/wx/recguard.h b/include/wx/recguard.h +index f2c6ffe..8133a12 100644 @@ Diff output truncated at 100000 characters. @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Fri Aug 21 12:15:29 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Fri, 21 Aug 2009 10:15:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6066] csw/mgar/pkg/nagios/trunk Message-ID: Revision: 6066 http://gar.svn.sourceforge.net/gar/?rev=6066&view=rev Author: j_arndt Date: 2009-08-21 10:15:29 +0000 (Fri, 21 Aug 2009) Log Message: ----------- nagios: update to 3.2.0, switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/nagios/trunk/Makefile csw/mgar/pkg/nagios/trunk/checksums csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype csw/mgar/pkg/nagios/trunk/files/configure.diff csw/mgar/pkg/nagios/trunk/files/patch.diff Removed Paths: ------------- csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec Modified: csw/mgar/pkg/nagios/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios/trunk/Makefile 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/Makefile 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,5 +1,5 @@ GARNAME = nagios -GARVERSION = 3.0.6 +GARVERSION = 3.2.0 CATEGORIES = apps DESCRIPTION = nagios network monitoring base package (no plugins) @@ -9,23 +9,27 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWnagios,checkinstall preinstall preremove prototype ) +#DISTFILES += $(call admfiles,CSWnagios,checkinstall preinstall preremove prototype ) +DISTFILES += CSWnagios.checkinstall CSWnagios.preinstall CSWnagios.preremove CSWnagios.prototype DISTFILES += cswnagios PATCHFILES = patch.diff # cgi/cmd.c - GNU macro __attribute__ unknown to compiler # http://article.gmane.org/gmane.network.nagios.devel/4726 # (Error 2) -PATCHFILES += configure.diff # configure.in - # http://unix.derkeiler.com/Mailing-Lists/SunManagers/2004-11/0424.html - # -lsunmath is needed in configure for checking of libgd +PATCHFILES += configure.diff # configure PATCHFILES += install-opts.diff # sets in every Makefile.in "INSTALL_OPT="" (empty) # necessary, so ginstall doesn't get -o and -g options +PACKAGES = CSWnagios +CATALOGNAME = nagios + REQUIRED_PKGS_CSWnagios = CSWapache2 CSWgd CSWglib2 CSWiconv CSWjpeg CSWlibtoolrt CSWggettextrt -REQUIRED_PKGS_CSWnagios += CSWosslrt CSWperl CSWpng CSWzlib CSWnagiosp CSWcswclassutils +REQUIRED_PKGS_CSWnagios += CSWosslrt CSWperl CSWpng CSWzlib CSWnagiosp CSWap2modphp5 CSWcswclassutils SPKG_CLASSES = none cswpreserveconf cswinitsmf +NOISALIST = 1 + prefix = $(BUILD_PREFIX)/nagios libexecdir = $(BUILD_PREFIX)/libexec/nagios-plugins @@ -35,9 +39,12 @@ CONFIGURE_ARGS += --with-command-user=nagios CONFIGURE_ARGS += --with-command-group=nagios CONFIGURE_ARGS += --with-httpd-conf=$(sysconfdir) +CONFIGURE_ARGS += --with-gd-lib-dir=$(BUILD_PREFIX)/lib +CONFIGURE_ARGS += --with-gd-lib-inc=$(BUILD_PREFIX)/inc CONFIGURE_ARGS += --enable-embedded-perl EXTRA_LIB = $(BUILD_PREFIX)/lib +EXTRA_INC = $(BUILD_PREFIX)/include BUILD_ARGS = all @@ -49,6 +56,9 @@ #INSTALL_ARGS += install-config INSTALL_ARGS += install-commandmode +LD_OPTIONS += -R/opt/csw/lib +LD_OPTIONS -= -R/opt/csw/nagios/lib + include gar/category.mk DOCS = Changelog INSTALLING README UPGRADING Modified: csw/mgar/pkg/nagios/trunk/checksums =================================================================== --- csw/mgar/pkg/nagios/trunk/checksums 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/checksums 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,10 +1,9 @@ -900e3f4164f4b2a18485420eeaefe812 download/nagios-3.0.6.tar.gz -725a49b8ec806a8d0c817fe4c1208b3c download/CSWnagios.gspec e407a4b179bd7de72b3e8c21f309f9b7 download/CSWnagios.checkinstall 47cc36016f5518dfd5614b870f56e944 download/CSWnagios.preinstall 92437323de0cceaa58c6238ec9e6c954 download/CSWnagios.preremove -a238294a9fc50821dd134b2a50fff545 download/CSWnagios.prototype +42672e3ae1e539bf9747f369cb4db7f1 download/CSWnagios.prototype +e493345589ac2c592c2b958499bc8c20 download/configure.diff d3b39178a60cf866a243d4d8f8eabb9b download/cswnagios -0ef601e30d01a511822dd27df6b0e531 download/patch.diff -4faa5ec86586be23dfbbd9165f50046d download/configure.diff f3161bcb7c65f89707ee37b0a8d861d5 download/install-opts.diff +3566167cc60ddeaad34e7d2e26ed4a58 download/nagios-3.2.0.tar.gz +91407bdea2047b6ff5a1542550933144 download/patch.diff Deleted: csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec =================================================================== --- csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,3 +0,0 @@ -%var bitname nagios -%var pkgname CSWnagios -%include url file://%{PKGLIB}/csw_dyndepend.gspec Modified: csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype =================================================================== --- csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,395 +1,397 @@ +d none /opt/csw/libexec 0755 root bin +d none /opt/csw/libexec/nagios-plugins 0755 nagios nagios d none /opt/csw/nagios 0755 root bin d none /opt/csw/nagios/bin 0755 nagios nagios -f none /opt/csw/nagios/bin/nagios 0774 nagios nagios -f none /opt/csw/nagios/bin/nagiostats 0774 nagios nagios -f none /opt/csw/nagios/bin/p1.pl 0664 nagios nagios +f none /opt/csw/nagios/bin/nagios 0754 nagios nagios +f none /opt/csw/nagios/bin/nagiostats 0754 nagios nagios d none /opt/csw/nagios/etc 0755 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/cgi.cfg.CSW 0664 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/cgi.cfg.CSW 0644 nagios nagios f none /opt/csw/nagios/etc/httpd-nagios.conf 0644 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/nagios.cfg.CSW 0664 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/nagios.cfg.CSW 0644 nagios nagios d none /opt/csw/nagios/etc/objects 0755 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/commands.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/contacts.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/localhost.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/printer.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/switch.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/templates.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/timeperiods.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/windows.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/resource.cfg.CSW 0660 nagios nagios -d none /opt/csw/nagios/libexec 0755 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/commands.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/contacts.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/localhost.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/printer.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/switch.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/templates.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/timeperiods.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/windows.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/resource.cfg.CSW 0640 nagios nagios d none /opt/csw/nagios/sbin 0755 nagios nagios -f none /opt/csw/nagios/sbin/avail.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/cmd.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/config.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/extinfo.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/histogram.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/history.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/notifications.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/outages.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/showlog.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/status.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/statusmap.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/statuswml.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/statuswrl.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/summary.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/tac.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/trends.cgi 0775 nagios nagios +f none /opt/csw/nagios/sbin/avail.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/cmd.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/config.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/extinfo.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/histogram.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/history.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/notifications.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/outages.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/showlog.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/status.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/statusmap.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/statuswml.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/statuswrl.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/summary.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/tac.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/trends.cgi 0755 nagios nagios d none /opt/csw/nagios/share 0755 nagios nagios +f none /opt/csw/nagios/share/config.inc.php 0644 nagios nagios d none /opt/csw/nagios/share/contexthelp 0755 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/B1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/C1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/D1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/E1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/F1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H8.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I8.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I9.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/J1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/K1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L10.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L11.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L12.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L13.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L8.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L9.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N7.html 0664 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/B1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/C1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/D1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/E1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/F1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H8.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I8.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I9.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/J1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/K1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L10.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L11.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L12.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L13.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L8.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L9.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N7.html 0644 nagios nagios d none /opt/csw/nagios/share/docs 0755 nagios nagios -f none /opt/csw/nagios/share/docs/about.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/activechecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/adaptive.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/addons.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/beginners.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cachedchecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgiauth.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgiincludes.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgis.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgisecurity.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/checkscheduling.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/clusters.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/config.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/configcgi.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/configmain.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/configobject.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/customobjectvars.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/dependencies.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/dependencychecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/distributed.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/downtime.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/embeddedperl.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/epnplugins.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/escalations.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/eventhandlers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/extcommands.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/faststartup.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/flapping.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/freshness.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/funstuff.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/hostchecks.html 0664 nagios nagios +f none /opt/csw/nagios/share/docs/about.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/activechecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/adaptive.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/addons.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/beginners.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cachedchecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgiauth.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgiincludes.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgis.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgisecurity.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/checkscheduling.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/clusters.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/config.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/configcgi.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/configmain.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/configobject.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/customobjectvars.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/dependencies.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/dependencychecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/distributed.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/downtime.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/embeddedperl.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/epnplugins.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/escalations.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/eventhandlers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/extcommands.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/faststartup.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/flapping.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/freshness.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/funstuff.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/hostchecks.html 0644 nagios nagios d none /opt/csw/nagios/share/docs/images 0755 nagios nagios -f none /opt/csw/nagios/share/docs/images/activechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cachedcheckgraphs.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cachedchecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cachedchecks1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-avail-a.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-avail-b.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-cmd.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-config.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-a.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-b.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-c.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-d.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-histogram.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-history.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-notifications.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-outages.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-showlog.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-a.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-b.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-c.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-d.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-statusmap.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-statuswml.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-statuswrl.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-summary.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-tac.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-trends.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/checkmark.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/checktiming.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/configoverview.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/distributed.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/downtime.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/epn.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/eventhandlers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/externalcommands.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/fast-startup.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/fast-startup1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/fast-startup2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/freshness.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/host-dependencies.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/important.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/integrationoverview.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/interleaved1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/interleaved2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/interleaved3.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/logofullsize.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/monitoring-printers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/monitoring-routers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/monitoring-windows.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-activehostchecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-activelychecked.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-activeservicechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-cachedchecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-commandbuffers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-externalcommands.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-hostperfstats.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-hoststatechange.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-passivechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-passivelychecked.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-serviceperfstats.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-servicestatechange.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/multiple-templates1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/multiple-templates2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nagios.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/ndoutils.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/network-outage1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/network-outage2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/noninterleaved1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/noninterleaved2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/note.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nrpe.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nsca.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nscpp.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-commands.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-contacts.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-hosts.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-services.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-timeperiods.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/passivechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/passivehosttranslation.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/plugins.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/predictive-dependency-checks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/printer.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability3.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability4.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/redudancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/redundancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security3.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/seealso.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/service-dependencies.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/statetransitions.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/statetransitions2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/stoprestart.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/switch.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/tcpwrappers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/tip.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/tuning.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/upto.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/index.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/int-snmptrap.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/int-tcpwrappers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/integration.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/largeinstalltweaks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/macrolist.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/macros.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-linux.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-netware.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-printers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-publicservices.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-routers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-windows.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/mrtggraphs.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/nagiostats.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/networkreachability.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/notifications.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/objectdefinitions.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/objectinheritance.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/objecttricks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/oncallrotation.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/passivechecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/passivestatetranslation.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/perfdata.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/pluginapi.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/plugins.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart-fedora.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart-opensuse.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart-ubuntu.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/redundancy.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/robots.txt 0664 nagios nagios -f none /opt/csw/nagios/share/docs/security.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/servicechecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/stalking.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/startstop.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/statetypes.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/timeperiods.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/toc.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/tuning.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/upgrading.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/verifyconfig.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/volatileservices.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/whatsnew.html 0664 nagios nagios +f none /opt/csw/nagios/share/docs/images/activechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cachedcheckgraphs.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cachedchecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cachedchecks1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-avail-a.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-avail-b.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-cmd.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-config.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-a.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-b.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-c.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-d.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-histogram.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-history.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-notifications.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-outages.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-showlog.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-a.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-b.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-c.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-d.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-statusmap.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-statuswml.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-statuswrl.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-summary.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-tac.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-trends.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/checkmark.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/checktiming.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/configoverview.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/distributed.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/downtime.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/epn.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/eventhandlers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/externalcommands.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/fast-startup.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/fast-startup1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/fast-startup2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/freshness.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/host-dependencies.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/important.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/integrationoverview.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/interleaved1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/interleaved2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/interleaved3.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/logofullsize.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/monitoring-printers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/monitoring-routers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/monitoring-windows.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-activehostchecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-activelychecked.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-activeservicechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-cachedchecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-commandbuffers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-externalcommands.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-hostperfstats.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-hoststatechange.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-passivechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-passivelychecked.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-serviceperfstats.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-servicestatechange.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/multiple-templates1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/multiple-templates2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nagios.jpg 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nagiosexchange.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nagiossupport.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/ndoutils.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/network-outage1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/network-outage2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/noninterleaved1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/noninterleaved2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/note.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nrpe.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nsca.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nscpp.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-commands.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-contacts.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-hosts.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-services.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-timeperiods.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/passivechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/passivehosttranslation.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/plugins.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/predictive-dependency-checks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/printer.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability3.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability4.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/redudancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/redundancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security3.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/seealso.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/service-dependencies.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/statetransitions.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/statetransitions2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/stoprestart.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/switch.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/tcpwrappers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/tip.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/tuning.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/upto.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/index.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/int-snmptrap.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/int-tcpwrappers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/integration.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/knownissues.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/largeinstalltweaks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/macrolist.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/macros.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-linux.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-netware.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-printers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-publicservices.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-routers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-windows.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/mrtggraphs.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/nagiostats.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/networkreachability.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/notifications.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/objectdefinitions.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/objectinheritance.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/objecttricks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/oncallrotation.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/passivechecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/passivestatetranslation.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/perfdata.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/pluginapi.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/plugins.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart-fedora.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart-opensuse.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart-ubuntu.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/redundancy.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/robots.txt 0644 nagios nagios +f none /opt/csw/nagios/share/docs/security.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/servicechecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/stalking.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/startstop.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/statetypes.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/timeperiods.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/toc.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/tuning.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/upgrading.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/verifyconfig.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/volatileservices.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/whatsnew.html 0644 nagios nagios d none /opt/csw/nagios/share/images 0755 nagios nagios -f none /opt/csw/nagios/share/images/NagiosEnterprises-whitebg-112x46.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/ack.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/action.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/command.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/comment.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/contexthelp1.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/contexthelp2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/critical.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/delay.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/delete.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/detail.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/disabled.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/down.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/downtime.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/empty.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/enabled.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/extinfo.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/favicon.ico 0664 nagios nagios -f none /opt/csw/nagios/share/images/flapping.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/globe-support-150x150.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/greendot.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/histogram.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/history.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/hostevent.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/info.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/left.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/logofullsize.png 0664 nagios nagios +f none /opt/csw/nagios/share/images/NagiosEnterprises-whitebg-112x46.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/ack.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/action.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/command.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/comment.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/contexthelp1.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/contexthelp2.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/critical.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/delay.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/delete.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/detail.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/disabled.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/down.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/downtime.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/empty.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/enabled.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/extinfo.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/favicon.ico 0644 nagios nagios +f none /opt/csw/nagios/share/images/flapping.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/globe-support-150x150.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/greendot.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/histogram.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/history.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/hostevent.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/info.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/left.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/logofullsize.png 0644 nagios nagios d none /opt/csw/nagios/share/images/logos 0755 nagios nagios -f none /opt/csw/nagios/share/images/logos/nagios.gd2 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/nagios.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/nagiosvrml.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/unknown.gd2 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/unknown.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/logrotate.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/ndisabled.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/noack.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/notes.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/notify.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/orangedot.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/passiveonly.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/recovery.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/redudancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/redundancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/restart.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/right.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/sblogo.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/images/serviceevent.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/splunk1.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/splunk2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/start.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status3.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status4.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/stop.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacdisabled.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacdisabled.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacenabled.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacenabled.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/thermcrit.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/thermok.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/thermwarn.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/trends.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/trendshost.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/trendssvc.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/unknown.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/up.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/warning.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/weblogo1.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/zoom1.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/zoom2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/index.html 0664 nagios nagios -f none /opt/csw/nagios/share/main.html 0664 nagios nagios +f none /opt/csw/nagios/share/images/logos/nagios.gd2 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/nagios.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/nagiosvrml.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/unknown.gd2 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/unknown.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/logrotate.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/ndisabled.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/noack.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/notes.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/notify.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/orangedot.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/passiveonly.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/recovery.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/redudancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/redundancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/restart.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/right.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/sblogo.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/serviceevent.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/sflogo.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/splunk1.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/splunk2.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/start.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status2.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status3.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status4.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/stop.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacdisabled.jpg 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacdisabled.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacenabled.jpg 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacenabled.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/thermcrit.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/thermok.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/thermwarn.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/trends.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/trendshost.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/trendssvc.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/unknown.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/up.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/warning.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/weblogo1.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/zoom1.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/zoom2.gif 0644 nagios nagios +d none /opt/csw/nagios/share/includes 0755 nagios nagios +f none /opt/csw/nagios/share/includes/utils.inc.php 0644 nagios nagios +f none /opt/csw/nagios/share/index.php 0644 nagios nagios +f none /opt/csw/nagios/share/main.php 0644 nagios nagios d none /opt/csw/nagios/share/media 0755 nagios nagios -f none /opt/csw/nagios/share/robots.txt 0664 nagios nagios -f none /opt/csw/nagios/share/side.html 0664 nagios nagios +f none /opt/csw/nagios/share/robots.txt 0644 nagios nagios +f none /opt/csw/nagios/share/side.php 0644 nagios nagios d none /opt/csw/nagios/share/ssi 0755 nagios nagios d none /opt/csw/nagios/share/stylesheets 0755 nagios nagios -f none /opt/csw/nagios/share/stylesheets/avail.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/checksanity.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/cmd.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/common.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/config.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/extinfo.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/histogram.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/history.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/ministatus.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/notifications.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/outages.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/showlog.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/status.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/statusmap.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/summary.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/tac.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/trends.css 0664 nagios nagios +f none /opt/csw/nagios/share/stylesheets/avail.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/checksanity.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/cmd.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/common.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/config.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/extinfo.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/histogram.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/history.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/ministatus.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/notifications.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/outages.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/showlog.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/status.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/statusmap.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/summary.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/tac.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/trends.css 0644 nagios nagios d none /opt/csw/nagios/var 0755 nagios nagios +d none /opt/csw/nagios/var/archives 0755 nagios nagios +d none /opt/csw/nagios/var/rw 0755 nagios nagios d none /opt/csw/nagios/var/spool 0755 nagios nagios -d none /opt/csw/nagios/var/archives 0755 nagios nagios -d none /opt/csw/nagios/var/rw 2770 nagios nagioscm d none /opt/csw/nagios/var/spool/checkresults 0755 nagios nagios d none /opt/csw/share/doc/nagios 0755 root bin -f none /opt/csw/share/doc/nagios/Changelog 0644 root bin +f none /opt/csw/share/doc/nagios/Changelog 0644 root bin f none /opt/csw/share/doc/nagios/INSTALLING 0644 root bin +f none /opt/csw/share/doc/nagios/LICENSE 0644 root bin f none /opt/csw/share/doc/nagios/README 0644 root bin f none /opt/csw/share/doc/nagios/UPGRADING 0644 root bin -f none /opt/csw/share/doc/nagios/LICENSE 0644 root bin f cswinitsmf /etc/opt/csw/init.d/cswnagios 0755 root bin -i checkinstall=CSWnagios.checkinstall -i preinstall=CSWnagios.preinstall -i depend=CSWnagios.depend -i pkginfo=CSWnagios.pkginfo -i preremove=CSWnagios.preremove Modified: csw/mgar/pkg/nagios/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/nagios/trunk/files/configure.diff 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/configure.diff 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,12 +1,12 @@ -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/configure nagios-3.0.6/configure ---- nagios-3.0.6.orig/configure 2008-12-02 04:48:17.000000000 +0100 -+++ nagios-3.0.6/configure 2008-12-16 16:48:29.610038929 +0100 -@@ -5848,7 +5848,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_save_LIBS="$LIBS" -- LIBS="-lgd $ICONV -lpng -ljpeg -lz -lm $LIBS" -+ LIBS="-lgd $ICONV -lpng -ljpeg -lz -lm -lsunmath $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/configure nagios-3.2.0/configure +--- nagios-3.2.0.orig/configure 2009-08-12 20:28:10.000000000 +0200 ++++ nagios-3.2.0/configure 2009-08-15 22:09:52.647057188 +0200 +@@ -7754,7 +7754,7 @@ + s, at CPP@,$CPP,;t t + s, at EGREP@,$EGREP,;t t + s, at SNPRINTF_O@,$SNPRINTF_O,;t t +-s, at SOCKETLIBS@,$SOCKETLIBS,;t t ++s, at SOCKETLIBS@,-lnsl -lsocket,;t t + s, at THREADLIBS@,$THREADLIBS,;t t + s, at nagios_user@,$nagios_user,;t t + s, at nagios_grp@,$nagios_grp,;t t Modified: csw/mgar/pkg/nagios/trunk/files/patch.diff =================================================================== --- csw/mgar/pkg/nagios/trunk/files/patch.diff 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/patch.diff 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,18 +1,18 @@ -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/cgi/cmd.c nagios-3.0.6/cgi/cmd.c ---- nagios-3.0.6.orig/cgi/cmd.c 2008-11-30 18:22:58.000000000 +0100 -+++ nagios-3.0.6/cgi/cmd.c 2008-12-16 14:01:20.459641641 +0100 -@@ -1885,7 +1885,7 @@ - return; +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/cgi/cmd.c nagios-3.2.0/cgi/cmd.c +--- nagios-3.2.0.orig/cgi/cmd.c 2009-08-11 16:35:43.000000000 +0200 ++++ nagios-3.2.0/cgi/cmd.c 2009-08-15 21:33:36.069423261 +0200 +@@ -1886,7 +1886,7 @@ } + -__attribute__((format(printf, 2, 3))) +/* __attribute__((format(printf, 2, 3))) */ - static int cmd_submitf(int id, const char *fmt, ...) - { + static int cmd_submitf(int id, const char *fmt, ...){ char cmd[MAX_EXTERNAL_COMMAND_LENGTH]; -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/include/nebmodules.h nagios-3.0.6/include/nebmodules.h ---- nagios-3.0.6.orig/include/nebmodules.h 2008-11-30 18:22:59.000000000 +0100 -+++ nagios-3.0.6/include/nebmodules.h 2008-12-16 14:02:22.859426641 +0100 + const char *command; +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/include/nebmodules.h nagios-3.2.0/include/nebmodules.h +--- nagios-3.2.0.orig/include/nebmodules.h 2008-11-30 18:22:59.000000000 +0100 ++++ nagios-3.2.0/include/nebmodules.h 2009-08-15 21:34:31.707033245 +0200 @@ -31,7 +31,7 @@ /***** MODULE VERSION INFORMATION *****/ @@ -22,9 +22,9 @@ #define CURRENT_NEB_API_VERSION 3 -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/module/Makefile.in nagios-3.0.6/module/Makefile.in ---- nagios-3.0.6.orig/module/Makefile.in 2007-12-15 00:02:24.000000000 +0100 -+++ nagios-3.0.6/module/Makefile.in 2008-12-16 14:01:52.009192953 +0100 +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/module/Makefile.in nagios-3.2.0/module/Makefile.in +--- nagios-3.2.0.orig/module/Makefile.in 2007-12-15 00:02:24.000000000 +0100 ++++ nagios-3.2.0/module/Makefile.in 2009-08-15 21:38:56.408558356 +0200 @@ -25,13 +25,13 @@ CP=@CP@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 22 10:55:25 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 22 Aug 2009 08:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6067] csw/mgar/pkg/thunderbird/trunk/Makefile Message-ID: Revision: 6067 http://gar.svn.sourceforge.net/gar/?rev=6067&view=rev Author: wbonnet Date: 2009-08-22 08:55:25 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Upgrade to version 2.0.0.23 Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-21 10:15:29 UTC (rev 6066) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-22 08:55:25 UTC (rev 6067) @@ -1,5 +1,5 @@ GARNAME = thunderbird -GARVERSION = 2.0.0.22 +GARVERSION = 2.0.0.23 CATEGORIES = apps DISTNAME = $(GARNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 22 10:59:41 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 22 Aug 2009 08:59:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6068] csw/mgar/pkg/thunderbird/trunk/checksums Message-ID: Revision: 6068 http://gar.svn.sourceforge.net/gar/?rev=6068&view=rev Author: wbonnet Date: 2009-08-22 08:59:41 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Upgrade to version 2.0.0.23 Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/checksums Modified: csw/mgar/pkg/thunderbird/trunk/checksums =================================================================== --- csw/mgar/pkg/thunderbird/trunk/checksums 2009-08-22 08:55:25 UTC (rev 6067) +++ csw/mgar/pkg/thunderbird/trunk/checksums 2009-08-22 08:59:41 UTC (rev 6068) @@ -2,4 +2,4 @@ 46527aded9c373b6095fea546d4d74f0 download/lber-int.h.diff 46ef334e67dab2301b53b661494f9d58 download/ldap-int.h.diff e7054c1d1d6dc708805a6110ccfa7f70 download/ldappr-int.h.diff -080c26dcb0ed563519a6061139a0bf92 download/thunderbird-2.0.0.22-source.tar.bz2 +2e118fcf752ee60ce994f1471f9632d1 download/thunderbird-2.0.0.23-source.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 Sat Aug 22 11:20:20 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 09:20:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[6069] csw/mgar/pkg/nsd/trunk/Makefile Message-ID: Revision: 6069 http://gar.svn.sourceforge.net/gar/?rev=6069&view=rev Author: idogan23 Date: 2009-08-22 09:20:20 +0000 (Sat, 22 Aug 2009) Log Message: ----------- nsd: fixed directory permission Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2009-08-22 08:59:41 UTC (rev 6068) +++ csw/mgar/pkg/nsd/trunk/Makefile 2009-08-22 09:20:20 UTC (rev 6069) @@ -27,7 +27,7 @@ DISTFILES += cswnsd SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } $$$$3 ~ /\/var\/run/ { $$$$6 = "sys" } { print }' CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-ssl=/opt/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 Sat Aug 22 13:32:24 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 11:32:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[6070] csw/mgar/pkg/apache2/trunk/Makefile Message-ID: Revision: 6070 http://gar.svn.sourceforge.net/gar/?rev=6070&view=rev Author: idogan23 Date: 2009-08-22 11:32:24 +0000 (Sat, 22 Aug 2009) Log Message: ----------- apache2: fixed dependencies Modified Paths: -------------- csw/mgar/pkg/apache2/trunk/Makefile Modified: csw/mgar/pkg/apache2/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2/trunk/Makefile 2009-08-22 09:20:20 UTC (rev 6069) +++ csw/mgar/pkg/apache2/trunk/Makefile 2009-08-22 11:32:24 UTC (rev 6070) @@ -46,7 +46,7 @@ REQUIRED_PKGS_CSWapache2c += CSWsqlite3 CSWcswclassutils REQUIRED_PKGS_CSWapache2rt = CSWbdb CSWexpat CSWgdbm CSWggettextrt CSWgsed REQUIRED_PKGS_CSWapache2rt += CSWiconv CSWoldaprt CSWosslrt CSWperl CSWsasl -REQUIRED_PKGS_CSWapache2rt += CSWzlib CSWsqlite3 +REQUIRED_PKGS_CSWapache2rt += CSWzlib CSWsqlite3 CSWlibnet CSWsqlite3rt REQUIRED_PKGS_CSWap2prefork = CSWapache2c CSWapache2rt CSWbdb CSWexpat CSWgdbm REQUIRED_PKGS_CSWap2prefork += CSWiconv CSWlibnet CSWoldaprt CSWosslrt CSWsasl REQUIRED_PKGS_CSWap2prefork += CSWzlib CSWsqlite3 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 22 14:02:51 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 22 Aug 2009 12:02:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[6071] csw/mgar/pkg/thunderbird/trunk/Makefile Message-ID: Revision: 6071 http://gar.svn.sourceforge.net/gar/?rev=6071&view=rev Author: wbonnet Date: 2009-08-22 12:02:51 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Add missing CSWsqlite3rt depends Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-22 11:32:24 UTC (rev 6070) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-22 12:02:51 UTC (rev 6071) @@ -56,6 +56,7 @@ REQUIRED_PKGS_CSWthunderbird += CSWpango REQUIRED_PKGS_CSWthunderbird += CSWzlib REQUIRED_PKGS_CSWthunderbird += CSWdbus +REQUIRED_PKGS_CSWthunderbird += CSWsqlite3rt PATCHFILES = autoconf.mk.in.diff PATCHFILES += lber-int.h.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sat Aug 22 14:16:42 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 12:16:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[6072] csw/mgar/pkg/cpan/libapreq2/trunk/ Message-ID: Revision: 6072 http://gar.svn.sourceforge.net/gar/?rev=6072&view=rev Author: idogan23 Date: 2009-08-22 12:16:41 +0000 (Sat, 22 Aug 2009) Log Message: ----------- libapreq2: Changed to mGAR v2 Property Changed: ---------------- csw/mgar/pkg/cpan/libapreq2/trunk/ Property changes on: csw/mgar/pkg/cpan/libapreq2/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 idogan23 at users.sourceforge.net Sat Aug 22 15:01:36 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 13:01:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[6073] csw/mgar/pkg/apache2-worker/trunk Message-ID: Revision: 6073 http://gar.svn.sourceforge.net/gar/?rev=6073&view=rev Author: idogan23 Date: 2009-08-22 13:01:36 +0000 (Sat, 22 Aug 2009) Log Message: ----------- apache2-worker: bump version to 2.2.13 Modified Paths: -------------- csw/mgar/pkg/apache2-worker/trunk/Makefile csw/mgar/pkg/apache2-worker/trunk/checksums Modified: csw/mgar/pkg/apache2-worker/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2-worker/trunk/Makefile 2009-08-22 12:16:41 UTC (rev 6072) +++ csw/mgar/pkg/apache2-worker/trunk/Makefile 2009-08-22 13:01:36 UTC (rev 6073) @@ -1,5 +1,5 @@ GARNAME = httpd -GARVERSION = 2.2.12 +GARVERSION = 2.2.13 CATEGORIES = server DESCRIPTION = A high performance Unix-based HTTP server. Modified: csw/mgar/pkg/apache2-worker/trunk/checksums =================================================================== --- csw/mgar/pkg/apache2-worker/trunk/checksums 2009-08-22 12:16:41 UTC (rev 6072) +++ csw/mgar/pkg/apache2-worker/trunk/checksums 2009-08-22 13:01:36 UTC (rev 6073) @@ -7,4 +7,4 @@ 61b6b11aa70677da9386e90c3b5ba21c download/CSWapache2.killproc 308836569bf0cc1be27ac45e3123e0c2 download/apu-iconv.diff a7467a756cbd980d4cfe3c2cfb6a9e35 download/config.layout -17f017b571f88aa60abebfe2945d7caf download/httpd-2.2.12.tar.gz +2803e35be6650f5b739e6e91faa824dd download/httpd-2.2.13.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 Sat Aug 22 17:28:10 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 15:28:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[6074] csw/mgar/pkg/ldns/trunk/Makefile Message-ID: Revision: 6074 http://gar.svn.sourceforge.net/gar/?rev=6074&view=rev Author: idogan23 Date: 2009-08-22 15:28:10 +0000 (Sat, 22 Aug 2009) Log Message: ----------- ldns: splitted package into a devel package Modified Paths: -------------- csw/mgar/pkg/ldns/trunk/Makefile Modified: csw/mgar/pkg/ldns/trunk/Makefile =================================================================== --- csw/mgar/pkg/ldns/trunk/Makefile 2009-08-22 13:01:36 UTC (rev 6073) +++ csw/mgar/pkg/ldns/trunk/Makefile 2009-08-22 15:28:10 UTC (rev 6074) @@ -15,6 +15,13 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += CSWldns.doxyparse.diff +PACKAGES = CSWldns CSWldnsdevel +CATALOGNAME_CSWldns = ldns +CATALOGNAME_CSWldnsdevel = ldns_devel + +SPKG_DESC_CSWldns = $(DESCRIPTION) +SPKG_DESC_CSWldnsdevel = $(DESCRIPTION) development package + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -26,7 +33,8 @@ EXTRA_BUILD_ISAS_i386 = pentium_pro EXTRA_BUILD_ISAS_sparc = sparcv8plus -REQUIRED_PKGS += CSWosslrt +REQUIRED_PKGS_CSWldns += CSWosslrt +REQUIRED_PKGS_CSWldnsdevel += CSWldns PATCHFILES = CSWldns.doxyparse.diff @@ -41,4 +49,7 @@ TEST_TARGET = +PKGFILES_CSWldnsdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWldnsrt = $(PKGFILES_RT) + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sat Aug 22 17:59:32 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 15:59:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6075] csw/mgar/pkg/drill/trunk Message-ID: Revision: 6075 http://gar.svn.sourceforge.net/gar/?rev=6075&view=rev Author: idogan23 Date: 2009-08-22 15:59:32 +0000 (Sat, 22 Aug 2009) Log Message: ----------- drill: bump version to 1.6.1 Modified Paths: -------------- csw/mgar/pkg/drill/trunk/Makefile csw/mgar/pkg/drill/trunk/checksums Modified: csw/mgar/pkg/drill/trunk/Makefile =================================================================== --- csw/mgar/pkg/drill/trunk/Makefile 2009-08-22 15:28:10 UTC (rev 6074) +++ csw/mgar/pkg/drill/trunk/Makefile 2009-08-22 15:59:32 UTC (rev 6075) @@ -1,5 +1,5 @@ GARNAME = drill -GARVERSION = 1.6.0 +GARVERSION = 1.6.1 CATEGORIES = utils DESCRIPTION = A dig style dnssec aware dns debugging tool Modified: csw/mgar/pkg/drill/trunk/checksums =================================================================== --- csw/mgar/pkg/drill/trunk/checksums 2009-08-22 15:28:10 UTC (rev 6074) +++ csw/mgar/pkg/drill/trunk/checksums 2009-08-22 15:59:32 UTC (rev 6075) @@ -1 +1 @@ -cd0d4d34a60d018fbfedae6d3ee4049b download/ldns-1.6.0.tar.gz +a44dafecdcc49aaea5d20ae15bc738c0 download/ldns-1.6.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 22 18:34:52 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 22 Aug 2009 16:34:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[6076] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6076 http://gar.svn.sourceforge.net/gar/?rev=6076&view=rev Author: wahwah Date: 2009-08-22 16:34:51 +0000 (Sat, 22 Aug 2009) Log Message: ----------- wxwidgets: It compiles now, but needs ENABLE_CHECK=0 Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-22 15:59:32 UTC (rev 6075) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-22 16:34:51 UTC (rev 6076) @@ -2,189 +2,59 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -# It's a work in progress! -# -# Done: configuration phase completes now. -# TODO: -# - Make sure the compilation phase completes -# - Split the installed files into separate packages - -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## GARNAME = wxWidgets GARVERSION = 2.8.10 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. DESCRIPTION = A portable widget library -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. define BLURB endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. SPKG_SOURCEURL = http://www.wxwidgets.org/ -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). MASTER_SITES = $(SF_MIRRORS) -MASTER_SITES += http://trac.wxwidgets.org/raw-attachment/ticket/10660/ -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. SF_PROJ = wxwindows -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. PATCHFILES = 0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch PATCHFILES += 0002-Fixing-retarded-checks-for-libGL.patch -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(PATCHFILES) -## -## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. CATALOGNAME = wxwidgets -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -REQUIRED_PKGS = CSWgtk2 -## -## A list of packages necessary to build this package +PACKAGES = CSWwxwidgetscommon +PACKAGES += CSWwxwidgetsdevel +PACKAGES += CSWwxwidgetsgtk2 +PACKAGES += CSWwxwidgetsrt +REQUIRED_PKGS = CSWexpat +REQUIRED_PKGS += CSWfconfig +REQUIRED_PKGS += CSWftype2 +REQUIRED_PKGS += CSWggettextrt +REQUIRED_PKGS += CSWglib2 +REQUIRED_PKGS += CSWgtk2 +REQUIRED_PKGS += CSWiconv +REQUIRED_PKGS += CSWjpeg +REQUIRED_PKGS += CSWlibatk +REQUIRED_PKGS += CSWmesa +REQUIRED_PKGS += CSWpango +REQUIRED_PKGS += CSWpng +REQUIRED_PKGS += CSWtiff +REQUIRED_PKGS += CSWzlib + PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. +PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* +PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) +PKGFILES_CSWwxwidgetsgtk2 = non-existing + +REQUIRED_PKGS_CSWwxwidgetsgtk2 = CSWwxwidgetsrt +REQUIRED_PKGS_CSWwxwidgetsrt = CSWwxwidgetscommon + +CATALOGNAME_CSWwxwidgetscommon = wxwidgets_common +CATALOGNAME_CSWwxwidgetsdevel = wxwidgets_devel +CATALOGNAME_CSWwxwidgetsgtk2 = wxwidgets_gtk2 +CATALOGNAME_CSWwxwidgetsrt = wxwidgets_rt +TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex CONFIGURE_ARGS += --disable-unicode --with-opengl -## -## BUILD64 = -## CONFIGURE_ENV = EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt -## -L/opt/csw/lib -R/opt/csw/lib -## EXTRA_LDFLAGS = EXTRA_INC = /opt/csw/X11/include EXTRA_LIB = /opt/csw/X11/lib -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 22 18:37:36 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 22 Aug 2009 16:37:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[6077] csw/mgar/pkg/unixodbc/trunk/Makefile Message-ID: Revision: 6077 http://gar.svn.sourceforge.net/gar/?rev=6077&view=rev Author: wahwah Date: 2009-08-22 16:37:35 +0000 (Sat, 22 Aug 2009) Log Message: ----------- unixodbc: Using CSWiconv instead of libiconv, enabling 64 bit support Modified Paths: -------------- csw/mgar/pkg/unixodbc/trunk/Makefile Modified: csw/mgar/pkg/unixodbc/trunk/Makefile =================================================================== --- csw/mgar/pkg/unixodbc/trunk/Makefile 2009-08-22 16:34:51 UTC (rev 6076) +++ csw/mgar/pkg/unixodbc/trunk/Makefile 2009-08-22 16:37:35 UTC (rev 6077) @@ -22,7 +22,7 @@ SPKG_CLASSES = none cswcpsampleconf -REQUIRED_PKGS = CSWlibiconv +REQUIRED_PKGS = CSWiconv REQUIRED_PKGS += CSWreadline REQUIRED_PKGS += CSWcswclassutils @@ -30,6 +30,7 @@ localstatedir = /var/opt/csw CONFIGURE_ARGS = $(DIRPATHS) --enable-gui=no +BUILD64 = 1 PROTOTYPE_FILTER = awk ' \ $$$$3 ~ /\/etc\/opt\/csw\/.*\.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sat Aug 22 18:58:45 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 16:58:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6078] csw/mgar/pkg/syslog_ng/trunk Message-ID: Revision: 6078 http://gar.svn.sourceforge.net/gar/?rev=6078&view=rev Author: idogan23 Date: 2009-08-22 16:58:45 +0000 (Sat, 22 Aug 2009) Log Message: ----------- syslog_ng: bump version to 3.0.4 Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile csw/mgar/pkg/syslog_ng/trunk/checksums Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 16:37:35 UTC (rev 6077) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 16:58:45 UTC (rev 6078) @@ -1,5 +1,5 @@ GARNAME = syslog-ng -GARVERSION = 3.0.3 +GARVERSION = 3.0.4 CATEGORIES = server DESCRIPTION = A powerful syslogd replacement @@ -9,7 +9,7 @@ logs using TCP. endef -MASTER_SITES = http://www.balabit.com/downloads/files/$(GARNAME)/open-source-edition/$(GARVERSION)/source/ +MASTER_SITES = http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/ DISTFILES = $(GARNAME)_$(GARVERSION).tar.gz DISTFILES += $(GARNAME).conf.CSW DISTFILES += cswsyslog_ng Modified: csw/mgar/pkg/syslog_ng/trunk/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-22 16:37:35 UTC (rev 6077) +++ csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-22 16:58:45 UTC (rev 6078) @@ -2,4 +2,4 @@ b4b01531e2de07e6e4231afc4079a168 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW -b8b3c9af28696bce48ceca0de6444426 download/syslog-ng_3.0.3.tar.gz +86c39779261545d2289e9c309e262b8d download/syslog-ng_3.0.4.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 Sat Aug 22 19:09:27 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 17:09:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[6079] csw/mgar/pkg/syslog_ng/trunk/Makefile Message-ID: Revision: 6079 http://gar.svn.sourceforge.net/gar/?rev=6079&view=rev Author: idogan23 Date: 2009-08-22 17:09:27 +0000 (Sat, 22 Aug 2009) Log Message: ----------- syslog_ng: added dependencies Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 16:58:45 UTC (rev 6078) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 17:09:27 UTC (rev 6079) @@ -46,6 +46,9 @@ REQUIRED_PKGS = CSWgcc4corert REQUIRED_PKGS += CSWeventlog +REQUIRED_PKGS += CSWosslrt +REQUIRED_PKGS += CSWzlib +REQUIRED_PKGS += CSWpcrert REQUIRED_PKGS += CSWggettextrt REQUIRED_PKGS += CSWglib2 REQUIRED_PKGS += CSWtcpwrap This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 10:18:25 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 08:18:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6080] csw/mgar/pkg/syslog_ng/trunk/Makefile Message-ID: Revision: 6080 http://gar.svn.sourceforge.net/gar/?rev=6080&view=rev Author: idogan23 Date: 2009-08-23 08:18:25 +0000 (Sun, 23 Aug 2009) Log Message: ----------- syslog_ng: fixed SPKG_SOURCEURL Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 17:09:27 UTC (rev 6079) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-23 08:18:25 UTC (rev 6080) @@ -23,7 +23,7 @@ PACKAGES = CSWsyslogng -SPKG_SOURCEURL = http://www.balabit.com/network-security/$(GARNAME)/ +SPKG_SOURCEURL = http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(GARVERSION)/source/ SPKG_CLASSES = none cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk ' \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 10:29:30 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 08:29:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6081] csw/mgar/pkg/eventlog/trunk/ Message-ID: Revision: 6081 http://gar.svn.sourceforge.net/gar/?rev=6081&view=rev Author: idogan23 Date: 2009-08-23 08:29:30 +0000 (Sun, 23 Aug 2009) Log Message: ----------- eventlog: switched to mgar v2 Property Changed: ---------------- csw/mgar/pkg/eventlog/trunk/ Property changes on: csw/mgar/pkg/eventlog/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 idogan23 at users.sourceforge.net Sun Aug 23 10:44:45 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 08:44:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6082] csw/mgar/pkg/eventlog/trunk Message-ID: Revision: 6082 http://gar.svn.sourceforge.net/gar/?rev=6082&view=rev Author: idogan23 Date: 2009-08-23 08:44:45 +0000 (Sun, 23 Aug 2009) Log Message: ----------- eventlog: bump version to 0.2.9, switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/eventlog/trunk/Makefile csw/mgar/pkg/eventlog/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec Modified: csw/mgar/pkg/eventlog/trunk/Makefile =================================================================== --- csw/mgar/pkg/eventlog/trunk/Makefile 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/Makefile 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,5 +1,5 @@ GARNAME = eventlog -GARVERSION = 0.2.5 +GARVERSION = 0.2.9 CATEGORIES = lib DESCRIPTION = Replacement of the simple syslog() API providing structure to messages. @@ -14,15 +14,19 @@ via a configuration file. endef +PACKAGES = CSWeventlog +CATALOGNAME = eventlog + MASTER_SITES = http://www.balabit.com/downloads/files/eventlog/0.2/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWeventlog,depend) +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 CONFIGURE_ARGS = $(DIRPATHS) +REQUIRED_PKGS += CSWgcc4corert + GARCOMPILER = GNU TEST_SCRIPTS = Modified: csw/mgar/pkg/eventlog/trunk/checksums =================================================================== --- csw/mgar/pkg/eventlog/trunk/checksums 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/checksums 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,3 +1 @@ -a6bdba91f88540cc69b398fd138d86cd download/eventlog-0.2.5.tar.gz -1e03beddd307427b5116517cd8119a9f download/CSWeventlog.gspec -421c2434c25c6e85ce8a9b516a934ab5 download/CSWeventlog.depend +76e3d7a0b8f335c12099e9b91191fbf1 download/eventlog_0.2.9.tar.gz Deleted: csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend =================================================================== --- csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,2 +0,0 @@ -P CSWcommon -P CSWgcc3core Deleted: csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec =================================================================== --- csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,4 +0,0 @@ -%var bitname eventlog -%var pkgname CSWeventlog -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 11:04:47 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 09:04:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[6083] csw/mgar/pkg/cpan/Mail-DKIM/trunk/ Message-ID: Revision: 6083 http://gar.svn.sourceforge.net/gar/?rev=6083&view=rev Author: idogan23 Date: 2009-08-23 09:04:47 +0000 (Sun, 23 Aug 2009) Log Message: ----------- pm_maildkim: switchted to mGar v2 Property Changed: ---------------- csw/mgar/pkg/cpan/Mail-DKIM/trunk/ Property changes on: csw/mgar/pkg/cpan/Mail-DKIM/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 idogan23 at users.sourceforge.net Sun Aug 23 11:27:21 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 09:27:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6084] csw/mgar/pkg/cpan/Mail-DKIM/trunk Message-ID: Revision: 6084 http://gar.svn.sourceforge.net/gar/?rev=6084&view=rev Author: idogan23 Date: 2009-08-23 09:27:20 +0000 (Sun, 23 Aug 2009) Log Message: ----------- pm_maildkim: bump version to 0.3.6, switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec Modified: csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,5 +1,5 @@ GARNAME = Mail-DKIM -GARVERSION = 0.35 +GARVERSION = 0.36 CATEGORIES = cpan AUTHOR = JASLONG @@ -12,7 +12,9 @@ * draft-delany-domainkeys-base endef -DISTFILES += $(call admfiles,CSWpmmaildkim,depend,) +PACKAGES = CSWpmmaildkim +CATALOGNAME = pm_maildkim +ARCHALL = 1 DEPENDS += cpan/Crypt-OpenSSL-RSA DEPENDS += cpan/Digest-SHA1 @@ -20,4 +22,12 @@ DEPENDS += cpan/MailTools DEPENDS += cpan/Net-DNS +REQUIRED_PKGS += CSWpmcryptosslrsa +REQUIRED_PKGS += CSWpmdigestsha +REQUIRED_PKGS += CSWpmdigestsha1 +REQUIRED_PKGS += CSWpmerror +REQUIRED_PKGS += CSWpmmailtools +REQUIRED_PKGS += CSWpmmimebase64 +REQUIRED_PKGS += CSWpmnetdns + include gar/category.mk Modified: csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,3 +1 @@ -5caf562501bb6c7a2623ad5627954e73 download/CSWpmmaildkim.gspec -f7cfb431ff18d457874d604340804d85 download/CSWpmmaildkim.depend -09216a6544439c212efdd70e4bd106ca download/Mail-DKIM-0.33.tar.gz +b6681a7b3cc21c0976205d4ad616455d download/Mail-DKIM-0.36.tar.gz Deleted: csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,7 +0,0 @@ -P CSWpmcryptosslrsa pm_osslrsa - Perl Crypt::OpenSSL::RSA module -P CSWpmdigestsha pm_digestsha - Perl extension for SHA-1/224/256/384/512 -P CSWpmdigestsha1 pm_digestsha1 - interface to the SHA-1 Algorithm -P CSWpmerror pm_error - Error/exception handling -P CSWpmmailtools pm_mailtools - various mail manipulation modules -P CSWpmmimebase64 pm_mimebase64 - Encoding and decoding of base64 strings -P CSWpmnetdns pm_netdns - interface to the DNS resolver Deleted: csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,12 +0,0 @@ -%var bitname pm_maildkim -%var pkgname CSWpmmaildkim -#%var desc Mail::DKIM -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 2006-2007 by Messiah College - -This is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 15:06:48 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 13:06:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6085] csw/mgar/pkg/opera/trunk/ Message-ID: Revision: 6085 http://gar.svn.sourceforge.net/gar/?rev=6085&view=rev Author: idogan23 Date: 2009-08-23 13:06:48 +0000 (Sun, 23 Aug 2009) Log Message: ----------- opera: switched to mGar v2 Property Changed: ---------------- csw/mgar/pkg/opera/trunk/ Property changes on: csw/mgar/pkg/opera/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 idogan23 at users.sourceforge.net Sun Aug 23 15:46:56 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 13:46:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[6086] csw/mgar/pkg/opera/trunk Message-ID: Revision: 6086 http://gar.svn.sourceforge.net/gar/?rev=6086&view=rev Author: idogan23 Date: 2009-08-23 13:46:56 +0000 (Sun, 23 Aug 2009) Log Message: ----------- opera: switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/opera/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/opera/trunk/files/CSWopera.depend csw/mgar/pkg/opera/trunk/files/CSWopera.gspec Modified: csw/mgar/pkg/opera/trunk/Makefile =================================================================== --- csw/mgar/pkg/opera/trunk/Makefile 2009-08-23 13:06:48 UTC (rev 6085) +++ csw/mgar/pkg/opera/trunk/Makefile 2009-08-23 13:46:56 UTC (rev 6086) @@ -9,9 +9,11 @@ like Opera's groundbreaking E-mail program, RSS Newsfeeds and IRC chat endef +PACKAGES = CSWopera +CATALOGNAME = opera + MASTER_SITES = http://www.opera.com/ DISTFILES = $(GARNAME)-$(GARVERSION).gcc3-static-qt3.tar.gz -DISTFILES += $(call admfiles,CSWopera, depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz Deleted: csw/mgar/pkg/opera/trunk/files/CSWopera.depend =================================================================== --- csw/mgar/pkg/opera/trunk/files/CSWopera.depend 2009-08-23 13:06:48 UTC (rev 6085) +++ csw/mgar/pkg/opera/trunk/files/CSWopera.depend 2009-08-23 13:46:56 UTC (rev 6086) @@ -1 +0,0 @@ -P CSWcommon Deleted: csw/mgar/pkg/opera/trunk/files/CSWopera.gspec =================================================================== --- csw/mgar/pkg/opera/trunk/files/CSWopera.gspec 2009-08-23 13:06:48 UTC (rev 6085) +++ csw/mgar/pkg/opera/trunk/files/CSWopera.gspec 2009-08-23 13:46:56 UTC (rev 6086) @@ -1,4 +0,0 @@ -%var bitname opera -%var pkgname CSWopera -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun Aug 23 17:03:00 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 15:03:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[6087] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 6087 http://gar.svn.sourceforge.net/gar/?rev=6087&view=rev Author: skayser Date: 2009-08-23 15:03:00 +0000 (Sun, 23 Aug 2009) Log Message: ----------- gar/v2: fix to include cswclassutils handling when only USERGROUP would have been set 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-08-23 13:46:56 UTC (rev 6086) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-23 15:03:00 UTC (rev 6087) @@ -157,7 +157,7 @@ SPKG_CLASSES := $(SPKG_CLASSES) $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(USERGROUP),$(if $(filter cswusergroup,$(SPKG_CLASSES)),,cswusergroup)) # - set class for all config files -ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF),) +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP),) _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)$$) );)\ 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 Aug 23 18:13:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 23 Aug 2009 16:13:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6088] csw/mgar/gar/v2-pbuild Message-ID: Revision: 6088 http://gar.svn.sourceforge.net/gar/?rev=6088&view=rev Author: dmichelsen Date: 2009-08-23 16:13:45 +0000 (Sun, 23 Aug 2009) Log Message: ----------- mGAR v2 pbuild: Intermediate commit Modified Paths: -------------- csw/mgar/gar/v2-pbuild/gar.conf.mk csw/mgar/gar/v2-pbuild/gar.mk Modified: csw/mgar/gar/v2-pbuild/gar.conf.mk =================================================================== --- csw/mgar/gar/v2-pbuild/gar.conf.mk 2009-08-23 15:03:00 UTC (rev 6087) +++ csw/mgar/gar/v2-pbuild/gar.conf.mk 2009-08-23 16:13:45 UTC (rev 6088) @@ -135,7 +135,7 @@ DESTROOT ?= $(HOME) # This is the directory from where the package is build from -PKGROOT ?= $(abspath $(WORKROOTDIR)/pkgroot) +PKGROOT ?= $(abspath $(WORKROOTDIR)/pkgroot-$(GARCH)) # Each ISA has a separate installation directory inside the # working directory for that package. The files are copied @@ -274,6 +274,26 @@ # ISALIST_$(GARCOMPILER) contains all ISAs which are compilable with the selected compiler $(foreach C,$(GARCOMPILERS),$(eval ISALIST_$(C) ?= $(foreach I,$(ISALIST),$(if $(filter-out ERROR,$(ARCHFLAGS_$C_$I)),$I)))) +THISHOST := $(shell uname -n) + +# BUILDHOST_isa-$ISA is the name of the host where the compilation should take place +# It defaults to the corresponding BUILD_(sparc|i386)-(32|64) +# An empty string means "stay on the current host" +define BUILDHOST +$(strip + $(if $(filter $1,$(ISALIST_sparcv9), + $(if $(BUILDHOST_sparc-$(MEMORYMODEL_$1)), + $(if $(eq $(BUILDHOST_sparc-$(MEMORYMODEL_$1)),$(THISHOST)),,$(BUILDHOST_sparc-$(MEMORYMODEL_$1))), + ), + $(if $(filter $1,$(ISALIST_amd64), + $(if $(BUILDHOST_i386-$(MEMORYMODEL_$1)), + $(if $(eq $(BUILDHOST_i386-$(MEMORYMODEL_$1)),$(THISHOST)),,$(BUILDHOST_i386-$(MEMORYMODEL_$1))), + ), + ), + ), +) +endef + # This is the memory model of the currently compiled architecture MEMORYMODEL = $(MEMORYMODEL_$(ISA)) @@ -648,6 +668,7 @@ _modenv-modulated: @echo; \ echo "* Modulation $(MODULATION): $(foreach M,$(MODULATORS),$M=$($M))"; \ + echo " Build Host = $(call modulation2host)"; \ echo " PATH = $(PATH)"; \ echo "PKG_CONFIG_PATH = $(PKG_CONFIG_PATH)"; \ echo " CFLAGS = $(CFLAGS)"; \ Modified: csw/mgar/gar/v2-pbuild/gar.mk =================================================================== --- csw/mgar/gar/v2-pbuild/gar.mk 2009-08-23 15:03:00 UTC (rev 6087) +++ csw/mgar/gar/v2-pbuild/gar.mk 2009-08-23 16:13:45 UTC (rev 6088) @@ -152,17 +152,43 @@ endef +define _modulate_merge +merge-$(2): $(3) +merge-$(2): BUILDHOST=$$$$(call modulation2host) +merge-$(2): + echo modulation: $(2) + echo vars: $(3) + echo ISA: $(ISA) + echo BUILDHOST=$(BUILDHOST) + echo BUILDHOST=$(call modulation2host) + echo BUILDHOST=$$(call modulation2host) + echo BUILDHOST=$(eval $(call modulation2host)) + echo BUILDHOST=$$(eval $(call modulation2host)) + echo BUILDHOST=$$(eval $$(call modulation2host)) + echo THISHOST=$(THISHOST) + echo "Building modulation on host '$(BUILDHOST)'" + $(if $(and $(BUILDHOST),$(filter-out $(THISHOST),$(BUILDHOST))),\ + ssh $(BUILDHOST) "gmake -C $(CURDIR) MODULATION=$(2) $(3) merge-modulated",\ + gmake MODULATION=$(2) $(3) merge-modulated\ + ) + @# The next line has intentionally been left blank to explicitly terminate this make rule + +endef + define _modulate_do $(call _modulate_target,extract,$(2),$(4)) $(call _modulate_target,patch,$(2),$(4)) $(call _modulate_target,configure,$(2),$(4)) $(call _modulate_target_nocookie,reset-configure,$(2),$(4)) $(call _modulate_target,build,$(2),$(4)) +#$(call _modulate_build,,$(2),$(4)) $(call _modulate_target_nocookie,reset-build,$(2),$(4)) $(call _modulate_target,test,$(2),$(4)) $(call _modulate_target,install,$(2),$(4)) +#$(call _modulate_install,,$(2),$(4)) $(call _modulate_target_nocookie,reset-install,$(2),$(4)) -$(call _modulate_target,merge,$(2),$(4)) +#$(call _modulate_target,merge,$(2),$(4)) +$(call _modulate_merge,,$(2),$(4)) $(call _modulate_target_nocookie,reset-merge,$(2),$(4)) $(call _modulate_target_nocookie,clean,$(2),$(4)) $(call _modulate_target_nocookie,_modenv,$(2),$(4)) @@ -607,13 +633,22 @@ merge-parallel: _PIDFILE=$(WORKROOTDIR)/build-global-$(GARCH)/multitail.pid merge-parallel: merge-watch - $(_DBG_MERGE)$(foreach M,$(MODULATIONS),$(MAKE) merge-$M >$(WORKROOTDIR)/build-$M/build.log 2>&1 &) wait - $(_DBG_MERGE)if [ -f $(_PIDFILE) ]; then kill `cat $(_PIDFILE)` && stty sane; fi + $(_DBG_MERGE)trap "kill -9 `cat $(_PIDFILE) $(foreach M,$(MODULATIONS),$(WORKROOTDIR)/build-$M/build.pid) 2>/dev/null`;stty sane" INT;\ + $(foreach M,$(MODULATIONS),($(MAKE) merge-$M >$(WORKROOTDIR)/build-$M/build.log 2>&1; echo $$? >$(WORKROOTDIR)/build-$M/build.ret) & echo $$! >$(WORKROOTDIR)/build-$M/build.pid; ) wait + $(_DBG_MERGE)if [ -f $(_PIDFILE) ]; then kill `cat $(_PIDFILE)`; stty sane; fi + $(foreach M,$(MODULATIONS),if [ "`cat $(WORKROOTDIR)/build-$M/build.ret`" -ne 0 ]; then \ + echo "Build error in modulation $M. Please see"; \ + echo " $(WORKROOTDIR)/build-$M/build.log"; \ + echo "for details:"; \ + echo; \ + tail -100 $(WORKROOTDIR)/build-$M/build.log; \ + exit `cat $(WORKROOTDIR)/build-$M/build.ret`; \ + fi;) merge-watch: _USEMULTITAIL=$(shell test -x $(MULTITAIL) && test -x $(TTY) && $(TTY) >/dev/null 2>&1; if [ $$? -eq 0 ]; then echo yes; fi) merge-watch: $(_DBG_MERGE)$(if $(_USEMULTITAIL),\ - $(MULTITAIL) --retry-all $(foreach M,$(MODULATIONS),$(WORKROOTDIR)/build-$M/build.log) -J & echo $$! > $(WORKROOTDIR)/build-global-$(GARCH)/multitail.pid,\ + $(MULTITAIL) --retry-all $(foreach M,$(MODULATIONS),$(WORKROOTDIR)/build-$M/build.log) -j & echo $$! > $(WORKROOTDIR)/build-global-$(GARCH)/multitail.pid,\ echo "Building all ISAs in parallel. Please see the individual logfiles for details:";$(foreach M,$(MODULATIONS),echo "- $(WORKROOTDIR)/build-$M/build.log";)\ ) 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 Sun Aug 23 21:24:21 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 23 Aug 2009 19:24:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6089] csw/mgar/pkg Message-ID: Revision: 6089 http://gar.svn.sourceforge.net/gar/?rev=6089&view=rev Author: j_arndt Date: 2009-08-23 19:24:20 +0000 (Sun, 23 Aug 2009) Log Message: ----------- spine: Initial commit Added Paths: ----------- csw/mgar/pkg/spine/ csw/mgar/pkg/spine/branches/ csw/mgar/pkg/spine/tags/ csw/mgar/pkg/spine/trunk/ csw/mgar/pkg/spine/trunk/Makefile csw/mgar/pkg/spine/trunk/checksums csw/mgar/pkg/spine/trunk/files/ csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall csw/mgar/pkg/spine/trunk/files/CSWspine.prototype csw/mgar/pkg/spine/trunk/files/configure.diff csw/mgar/pkg/spine/trunk/files/cswusergroup Property changes on: csw/mgar/pkg/spine/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/spine/trunk/Makefile =================================================================== --- csw/mgar/pkg/spine/trunk/Makefile (rev 0) +++ csw/mgar/pkg/spine/trunk/Makefile 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,77 @@ +#GARNAME = cacti-spine +GARNAME = spine +GARVERSION = 0.8.7e +CATEGORIES = apps + +DESCRIPTION = very fast poller for cacti +define BLURB + Spine, formally Cactid, is a poller for Cacti that primarily strives to be as fast as possible. For this reason it is written in native C, makes use of POSIX threads, and is linked directly against the net-snmp library for minmumal SNMP polling overhead. Spine is a replacement for the default cmd.php poller so you must decide if using Spine makes sense for your installation. +endef + +MASTER_SITES = http://www.cacti.net/downloads/spine/ +#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = cacti-$(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += cswusergroup CSWspine.postinstall + +PATCHFILES += configure.diff + +NOISALIST = 1 + +CATALOGNAME = spine + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# If the url used to check for software update is different of MASTER_SITES, then +# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES +# UPSTREAM_MASTER_SITES = + +REQUIRED_PKGS = CSWmysql5rt CSWnetsnmp CSWosslrt CSWzlib CSWcswclassutils + +SPKG_CLASSES = none cswpreserveconf + +WORKSRC = $(WORKDIR)/cacti-$(GARNAME)-$(GARVERSION) + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-mysql=/opt/csw/mysql5 +CONFIGURE_ARGS += --with-snmp=/opt/csw/include/net-snmp + +EXTRA_LIB += $(BUILD_PREFIX)/lib +LD_OPTIONS += -L/opt/csw/lib + +CONFIGURE_SCRIPTS = custom +INSTALL_SCRIPTS = custom + +SKIPTEST = 1 + +DOCDEST = $(DESTDIR)$(BUILD_PREFIX)/share/doc/spine +BINDIR = $(DESTDIR)$(BUILD_PREFIX)/bin +CFGDIR = $(DESTDIR)$(BUILD_PREFIX)/etc + +include gar/category.mk + +configure-custom: + @echo " ==> Configuring in $(WORKSRC)" + @rm $(WORKSRC)/config/ltmain.sh + @rm $(WORKSRC)/config/config.sub + @rm $(WORKSRC)/config/config.guess + @ln -s /opt/csw/share/libtool/config/ltmain.sh $(WORKSRC)/config/ltmain.sh + @ln -s /opt/csw/share/libtool/config/config.sub $(WORKSRC)/config/config.sub + @ln -s /opt/csw/share/libtool/config/config.guess $(WORKSRC)/config/config.guess + @( cd $(WORKSRC) ; ./configure $(CONFIGURE_ARGS) ) + @$(MAKECOOKIE) + +install-custom: + @ginstall -d $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/LICENSE $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/README $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/README-WINDOWS $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/INSTALL $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/LICENSE.LGPL $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/COPYING $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/ChangeLog $(DOCDEST) + @ginstall -d $(BINDIR) + @ginstall -m 755 $(WORKSRC)/spine $(BINDIR) + @ginstall -d $(CFGDIR) + @ginstall -m 644 $(WORKSRC)/spine.conf $(CFGDIR)/spine.conf.CSW + @$(MAKECOOKIE) Added: csw/mgar/pkg/spine/trunk/checksums =================================================================== --- csw/mgar/pkg/spine/trunk/checksums (rev 0) +++ csw/mgar/pkg/spine/trunk/checksums 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,4 @@ +54e3c3f6ca757815ac1cccf78b7a086c download/CSWspine.postinstall +99e5bde07fc31d1ed8aa23c59de00417 download/cacti-spine-0.8.7e.tar.gz +40235c60873e4097a44b07db653211ae download/configure.diff +b762d50320246dc8ce21c20233479231 download/cswusergroup Added: csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall =================================================================== --- csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall (rev 0) +++ csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,11 @@ +#!/bin/sh + +cat << EOF + +======================================================================= + +Please check and edit your configuration in /opt/csw/etc/spine.conf ! + +======================================================================= + +EOF Added: csw/mgar/pkg/spine/trunk/files/CSWspine.prototype =================================================================== --- csw/mgar/pkg/spine/trunk/files/CSWspine.prototype (rev 0) +++ csw/mgar/pkg/spine/trunk/files/CSWspine.prototype 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,10 @@ +f none /opt/csw/bin/spine 0755 root bin +f cswpreserveconf /opt/csw/etc/spine.conf.CSW 0644 root bin +d none /opt/csw/share/doc/spine 0755 root bin +f none /opt/csw/share/doc/spine/COPYING 0644 root bin +f none /opt/csw/share/doc/spine/ChangeLog 0644 root bin +f none /opt/csw/share/doc/spine/INSTALL 0644 root bin +f none /opt/csw/share/doc/spine/LICENSE 0644 root bin +f none /opt/csw/share/doc/spine/LICENSE.LGPL 0644 root bin +f none /opt/csw/share/doc/spine/README 0644 root bin +f none /opt/csw/share/doc/spine/README-WINDOWS 0644 root bin Added: csw/mgar/pkg/spine/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/spine/trunk/files/configure.diff (rev 0) +++ csw/mgar/pkg/spine/trunk/files/configure.diff 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,54 @@ +diff --speed-large-files --minimal -Nru cacti-spine-0.8.7e.orig/configure cacti-spine-0.8.7e/configure +--- cacti-spine-0.8.7e.orig/configure 2009-06-29 04:03:42.000000000 +0200 ++++ cacti-spine-0.8.7e/configure 2009-08-23 10:58:42.345538990 +0200 +@@ -20169,7 +20169,10 @@ + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + + # Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++#LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++ ++# use OpenCSW libtool ++LIBTOOL=/opt/csw/bin/libtool + + # Prevent multiple expansion + +@@ -22740,7 +22743,7 @@ + fi + fi + +-LDFLAGS="-L$SNMP_LIBDIR $LDFLAGS" ++LDFLAGS="-L/opt/csw/lib -L/opt/csw/lib/mysql $LDFLAGS" + CFLAGS="-I$SNMP_INCDIR -I$SNMP_INCDIR/.. $CFLAGS" + + # Net/UCD-SNMP includes v3 support and insists on crypto unless compiled --without-openssl +@@ -22833,6 +22836,7 @@ + { $as_echo "$as_me:$LINENO: result: yes" >&5 + $as_echo "yes" >&6; } + SNMP_SSL=yes ++ LIBS="$LIBS -lcrypto" + + else + $as_echo "$as_me: failed program was:" >&5 +@@ -22851,7 +22855,7 @@ + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnetsnmp $LIBS" ++LIBS="$LIBS -lnetsnmp -lssl" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23155,6 +23159,7 @@ + # Solaris or Irix Check + { $as_echo "$as_me:$LINENO: checking for Solaris/Irix gethostbyname_r" >&5 + $as_echo_n "checking for Solaris/Irix gethostbyname_r... " >&6; } ++LIBS="$LIBS -lssl -lnsl" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24764,4 +24769,3 @@ + { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 + $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + fi +- Added: csw/mgar/pkg/spine/trunk/files/cswusergroup =================================================================== --- csw/mgar/pkg/spine/trunk/files/cswusergroup (rev 0) +++ csw/mgar/pkg/spine/trunk/files/cswusergroup 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1 @@ +cacti:cacti:Cacti User:/export/home/cacti:/bin/sh:m:r 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 Aug 23 23:26:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:26:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[6090] csw/mgar/pkg Message-ID: Revision: 6090 http://gar.svn.sourceforge.net/gar/?rev=6090&view=rev Author: skayser Date: 2009-08-23 21:26:19 +0000 (Sun, 23 Aug 2009) Log Message: ----------- doxygen: working copy Added Paths: ----------- csw/mgar/pkg/doxygen/ csw/mgar/pkg/doxygen/branches/ csw/mgar/pkg/doxygen/tags/ csw/mgar/pkg/doxygen/trunk/ csw/mgar/pkg/doxygen/trunk/Makefile csw/mgar/pkg/doxygen/trunk/checksums csw/mgar/pkg/doxygen/trunk/files/ Property changes on: csw/mgar/pkg/doxygen/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/doxygen/trunk/Makefile =================================================================== --- csw/mgar/pkg/doxygen/trunk/Makefile (rev 0) +++ csw/mgar/pkg/doxygen/trunk/Makefile 2009-08-23 21:26:19 UTC (rev 6090) @@ -0,0 +1,60 @@ +# Todo (feel free to take over): +# - gmake docs segfaults, check why +# (related to libiconv? Might change with libiconv 1.13+) +# - platform makefile doesn't honor our CCFLAGS +# work/build-isa-i386/doxygen-1.5.9/tmake/lib/solaris-cc/tmake.conf +# results in: CC -c -O2 -I.. +# +# Adding members to index pages... +# Generating style sheet... +# Generating index page... +# Generating page index... +# Segmentation Fault - core dumped +# gmake[1]: *** [all] Error 139 +# gmake[1]: Leaving directory `/home/skayser/mgar/pkg/doxygen/trunk/work/build-isa-i386/doxygen-1.5.9/doc' +# +# $ pstack work/build-isa-i386/doxygen-1.5.9/doc/core +# core 'work/build-isa-i386/doxygen-1.5.9/doc/core' of 20317: /home/skayser/mgar/pkg/doxygen/trunk/work/build-isa-i386/doxygen-1.5.9 +# df945898 iconv (ffffffff, 80478d8, 80478d0, 80478dc, 80478d4) + 38 +# 083d2e52 portable_iconv (ffffffff, 80478d8, 80478d0, 80478dc, 80478d4) + 1a +# 081c1ec2 __1cIHtmlHelpGrecode6MrknIQdDCString__1_ (804790c, 8da4210, 8047910) + 6a +# 081c1fe6 __1cIHtmlHelpPaddContentsItem6Mbpkc222_v_ (8da4210, 0, 8de85a8, 0, 8de85c8, 0) + b2 +# 08198b75 __1cJIndexListHforeach4CbCpkcC2C2C2_6MmJIndexIntf_MTATBTCTDTE_v34567_v_ (85fa380, 81d2af4, 0, 0, 8de85a8, 0, 8de85c8, 0) + 99 +# 081ccec6 __1cOwritePageIndex6FrnKOutputList__v_ (8d97f50) + 372 +# 081920c3 __1cOgenerateOutput6F_v_ () + a27 +# 08169d11 main (1, 8047ad8, 8047ae0) + 2d +# 08169c56 _start () + 7a +# + +GARNAME = doxygen +GARVERSION = 1.5.9 +CATEGORIES = utils + +DESCRIPTION = A documentation system for programming languages +define BLURB + Long description +endef + +MASTER_SITES = http://ftp.stack.nl/pub/users/dimitri/ +DISTFILES = $(GARNAME)-$(GARVERSION).src.tar.gz +SPKG_SOURCEURL = http://www.stack.nl/~dimitri/doxygen/ + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).src.tar.gz +UPSTREAM_MASTER_SITES = $(SPKG_SOURCEURL) + +CONFIGURE_ARGS = $(subst =, ,$(filter --prefix=% , $(DIRPATHS))) +CONFIGURE_ARGS += --docdir $(docdir) +CONFIGURE_ARGS += --platform solaris-cc + +TEST_SCRIPTS = + +include gar/category.mk + +post-extract-modulated: + perl -pi -e 'if (/^TMAKE_CXXFLAGS_RELEASE/) { \ + s|= .*|= $(filter-out -I/opt/csw/include, $(CXXFLAGS)) -norunpath|; }' \ + $(WORKSRC)/tmake/lib/solaris-cc/tmake.conf + perl -pi -e 'if (/^TMAKE_CFLAGS_DEBUG/) { s|= .*|= $(filter-out -I/opt/csw/include,$(CFLAGS))|; }' \ + $(WORKSRC)/tmake/lib/solaris-cc/tmake.conf + @$(MAKECOOKIE) Added: csw/mgar/pkg/doxygen/trunk/checksums =================================================================== --- csw/mgar/pkg/doxygen/trunk/checksums (rev 0) +++ csw/mgar/pkg/doxygen/trunk/checksums 2009-08-23 21:26:19 UTC (rev 6090) @@ -0,0 +1 @@ +33c5598fa6d24cbc55849eaf89652557 download/doxygen-1.5.9.src.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 Sun Aug 23 23:28:33 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:28:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[6091] csw/mgar/pkg Message-ID: Revision: 6091 http://gar.svn.sourceforge.net/gar/?rev=6091&view=rev Author: skayser Date: 2009-08-23 21:28:31 +0000 (Sun, 23 Aug 2009) Log Message: ----------- centerim: working copy Added Paths: ----------- csw/mgar/pkg/centerim/ csw/mgar/pkg/centerim/branches/ csw/mgar/pkg/centerim/tags/ csw/mgar/pkg/centerim/trunk/ csw/mgar/pkg/centerim/trunk/Makefile csw/mgar/pkg/centerim/trunk/checksums csw/mgar/pkg/centerim/trunk/files/ csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff Property changes on: csw/mgar/pkg/centerim/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/centerim/trunk/Makefile =================================================================== --- csw/mgar/pkg/centerim/trunk/Makefile (rev 0) +++ csw/mgar/pkg/centerim/trunk/Makefile 2009-08-23 21:28:31 UTC (rev 6091) @@ -0,0 +1,35 @@ +GARNAME = centerim +GARVERSION = 4.22.7 +CATEGORIES = utils + +DESCRIPTION = Text mode menu- and window-driven IM interface +define BLURB + CenterIM is a fork of CenterICQ, a text mode menu- and window-driven IM + interface that supports the ICQ2000, Yahoo!, AIM, IRC, MSN, Gadu-Gadu and + Jabber protocols. +endef + +MASTER_SITES = http://www.centerim.org/download/releases/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +SPKG_SOURCEURL = http://www.centerim.org/ + +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-openssl=/opt/csw/ssl + +# Heaps of stuff to do so that this piece from GNU wonderland can +# be compiled +PATCHFILES = patch-suncc.diff + +EXTRA_INC = /opt/csw/include/ncurses + +include gar/category.mk + +distclean: + @-gmake -C $(WORKROOTDIR)/build-isa-i386/centerim-4.22.7 distclean + +mp: distclean + gdiff -ur centerim-4.22.7.orig \ + $(WORKROOTDIR)/build-isa-i386/centerim-4.22.7 Added: csw/mgar/pkg/centerim/trunk/checksums =================================================================== --- csw/mgar/pkg/centerim/trunk/checksums (rev 0) +++ csw/mgar/pkg/centerim/trunk/checksums 2009-08-23 21:28:31 UTC (rev 6091) @@ -0,0 +1,2 @@ +2db303baa9b7680c2cccb3314bfa7ae2 download/centerim-4.22.7.tar.bz2 +7d0d390cf202a2e9449ac9f3d159c351 download/patch-suncc.diff Added: csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff =================================================================== --- csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff (rev 0) +++ csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff 2009-08-23 21:28:31 UTC (rev 6091) @@ -0,0 +1,478 @@ +diff -ur centerim-4.22.7.orig/firetalk/irc.c work/build-isa-i386/centerim-4.22.7/firetalk/irc.c +--- centerim-4.22.7.orig/firetalk/irc.c 2009-03-07 21:14:39.338938013 +0100 ++++ work/build-isa-i386/centerim-4.22.7/firetalk/irc.c 2009-03-08 00:07:40.855793699 +0100 +@@ -1623,47 +1623,47 @@ + } + + const firetalk_protocol_t firetalk_protocol_irc = { +- strprotocol: "IRC", +- default_server: "irc.n.ml.org", +- default_port: 6667, +- default_buffersize: 1024/2, +- periodic: irc_periodic, +- preselect: irc_preselect, +- postselect: irc_postselect, +- got_data: irc_got_data, +- got_data_connecting: irc_got_data_connecting, +- comparenicks: irc_compare_nicks, +- isprintable: irc_isprint, +- disconnect: irc_disconnect, +- signon: irc_signon, +- get_info: irc_get_info, +- set_info: irc_set_info, +- set_away: irc_set_away, +- set_nickname: irc_set_nickname, +- set_password: irc_set_password, +- im_add_buddy: irc_im_add_buddy, +- im_remove_buddy: irc_im_remove_buddy, +- im_add_deny: irc_im_add_deny, +- im_remove_deny: irc_im_remove_deny, +- im_upload_buddies: irc_im_upload_buddies, +- im_upload_denies: irc_im_upload_denies, +- im_send_message: irc_im_send_message, +- im_send_action: irc_im_send_action, +- im_evil: irc_im_evil, +- chat_join: irc_chat_join, +- chat_part: irc_chat_part, +- chat_invite: irc_chat_invite, +- chat_set_topic: irc_chat_set_topic, +- chat_op: irc_chat_op, +- chat_deop: irc_chat_deop, +- chat_kick: irc_chat_kick, +- chat_send_message: irc_chat_send_message, +- chat_send_action: irc_chat_send_action, +-// subcode_send_request: irc_subcode_send_request, +-// subcode_send_reply: irc_subcode_send_reply, +- subcode_encode: irc_ctcp_encode, +- set_privacy: irc_set_privacy, +- room_normalize: irc_normalize_room_name, +- create_handle: irc_create_handle, +- destroy_handle: irc_destroy_handle, ++ .strprotocol= "IRC", ++ .default_server= "irc.n.ml.org", ++ .default_port= 6667, ++ .default_buffersize= 1024/2, ++ .periodic= irc_periodic, ++ .preselect= irc_preselect, ++ .postselect= irc_postselect, ++ .got_data= irc_got_data, ++ .got_data_connecting= irc_got_data_connecting, ++ .comparenicks= irc_compare_nicks, ++ .isprintable= irc_isprint, ++ .disconnect= irc_disconnect, ++ .signon= irc_signon, ++ .get_info= irc_get_info, ++ .set_info= irc_set_info, ++ .set_away= irc_set_away, ++ .set_nickname= irc_set_nickname, ++ .set_password= irc_set_password, ++ .im_add_buddy= irc_im_add_buddy, ++ .im_remove_buddy= irc_im_remove_buddy, ++ .im_add_deny= irc_im_add_deny, ++ .im_remove_deny= irc_im_remove_deny, ++ .im_upload_buddies= irc_im_upload_buddies, ++ .im_upload_denies= irc_im_upload_denies, ++ .im_send_message= irc_im_send_message, ++ .im_send_action= irc_im_send_action, ++ .im_evil= irc_im_evil, ++ .chat_join= irc_chat_join, ++ .chat_part= irc_chat_part, ++ .chat_invite= irc_chat_invite, ++ .chat_set_topic= irc_chat_set_topic, ++ .chat_op= irc_chat_op, ++ .chat_deop= irc_chat_deop, ++ .chat_kick= irc_chat_kick, ++ .chat_send_message= irc_chat_send_message, ++ .chat_send_action= irc_chat_send_action, ++// .subcode_send_request= irc_subcode_send_request, ++// .subcode_send_reply= irc_subcode_send_reply, ++ .subcode_encode= irc_ctcp_encode, ++ .set_privacy= irc_set_privacy, ++ .room_normalize= irc_normalize_room_name, ++ .create_handle= irc_create_handle, ++ .destroy_handle= irc_destroy_handle, + }; +diff -ur centerim-4.22.7.orig/firetalk/toc.c work/build-isa-i386/centerim-4.22.7/firetalk/toc.c +--- centerim-4.22.7.orig/firetalk/toc.c 2009-03-07 21:14:39.473437850 +0100 ++++ work/build-isa-i386/centerim-4.22.7/firetalk/toc.c 2009-03-08 00:09:21.056805524 +0100 +@@ -2580,53 +2580,53 @@ + */ + + const firetalk_protocol_t firetalk_protocol_toc2 = { +- strprotocol: "TOC2", +- default_server: "toc.n.ml.org", +- default_port: 9898, +- default_buffersize: 1024*8, +- periodic: toc_periodic, +- preselect: toc_preselect, +- postselect: toc_postselect, +- got_data: toc_got_data, +- got_data_connecting: toc_got_data_connecting, +- comparenicks: toc_compare_nicks, +- isprintable: toc_isprint, +- disconnect: toc_disconnect, +- signon: toc_signon, +- get_info: toc_get_info, +- set_info: toc_set_info, +- set_away: toc_set_away, +- set_nickname: toc_set_nickname, +- set_password: toc_set_password, +- set_privacy: toc_set_privacy, +- im_add_buddy: toc_im_add_buddy, +- im_remove_buddy: toc_im_remove_buddy, +- im_add_deny: toc_im_add_deny, +- im_remove_deny: toc_im_remove_deny, +- im_upload_buddies: toc_im_upload_buddies, +- im_upload_denies: toc_im_upload_denies, +- im_send_message: toc_im_send_message, +- im_send_action: toc_im_send_action, +- im_evil: toc_im_evil, +- chat_join: toc_chat_join, +- chat_part: toc_chat_part, +- chat_invite: toc_chat_invite, +- chat_set_topic: toc_chat_set_topic, +- chat_op: toc_chat_op, +- chat_deop: toc_chat_deop, +- chat_kick: toc_chat_kick, +- chat_send_message: toc_chat_send_message, +- chat_send_action: toc_chat_send_action, +-// subcode_send_request: toc_subcode_send_request, +-// subcode_send_reply: toc_subcode_send_reply, +- subcode_encode: toc_ctcp_encode, +- room_normalize: aim_normalize_room_name, +- create_handle: toc_create_handle, +- destroy_handle: toc_destroy_handle, ++ .strprotocol= "TOC2", ++ .default_server= "toc.n.ml.org", ++ .default_port= 9898, ++ .default_buffersize= 1024*8, ++ .periodic= toc_periodic, ++ .preselect= toc_preselect, ++ .postselect= toc_postselect, ++ .got_data= toc_got_data, ++ .got_data_connecting= toc_got_data_connecting, ++ .comparenicks= toc_compare_nicks, ++ .isprintable= toc_isprint, ++ .disconnect= toc_disconnect, ++ .signon= toc_signon, ++ .get_info= toc_get_info, ++ .set_info= toc_set_info, ++ .set_away= toc_set_away, ++ .set_nickname= toc_set_nickname, ++ .set_password= toc_set_password, ++ .set_privacy= toc_set_privacy, ++ .im_add_buddy= toc_im_add_buddy, ++ .im_remove_buddy= toc_im_remove_buddy, ++ .im_add_deny= toc_im_add_deny, ++ .im_remove_deny= toc_im_remove_deny, ++ .im_upload_buddies= toc_im_upload_buddies, ++ .im_upload_denies= toc_im_upload_denies, ++ .im_send_message= toc_im_send_message, ++ .im_send_action= toc_im_send_action, ++ .im_evil= toc_im_evil, ++ .chat_join= toc_chat_join, ++ .chat_part= toc_chat_part, ++ .chat_invite= toc_chat_invite, ++ .chat_set_topic= toc_chat_set_topic, ++ .chat_op= toc_chat_op, ++ .chat_deop= toc_chat_deop, ++ .chat_kick= toc_chat_kick, ++ .chat_send_message= toc_chat_send_message, ++ .chat_send_action= toc_chat_send_action, ++// .subcode_send_request= toc_subcode_send_request, ++// .subcode_send_reply= toc_subcode_send_reply, ++ .subcode_encode= toc_ctcp_encode, ++ .room_normalize= aim_normalize_room_name, ++ .create_handle= toc_create_handle, ++ .destroy_handle= toc_destroy_handle, + #ifdef ENABLE_NEWGROUPS +- im_remove_group: toc_im_remove_group, ++ .im_remove_group= toc_im_remove_group, + #endif + #ifdef ENABLE_FILE_OFFER +- file_offer: toc_file_offer, ++ .file_offer= toc_file_offer, + #endif + }; +diff -ur centerim-4.22.7.orig/kkconsui/include/conf.h work/build-isa-i386/centerim-4.22.7/kkconsui/include/conf.h +--- centerim-4.22.7.orig/kkconsui/include/conf.h 2009-03-07 21:14:37.890410559 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkconsui/include/conf.h 2009-03-07 22:24:41.739170169 +0100 +@@ -9,6 +9,10 @@ + #define __KTOOL_USE_NAMESPACES + #endif + ++#if defined(__sun) && !defined(__GNUC__) ++#define __KTOOL_USE_NAMESPACES ++#endif ++ + #if defined(__COMO__) + #define __KTOOL_USE_NAMESPACES + #endif +diff -ur centerim-4.22.7.orig/kkconsui/include/conscommon.h work/build-isa-i386/centerim-4.22.7/kkconsui/include/conscommon.h +--- centerim-4.22.7.orig/kkconsui/include/conscommon.h 2009-03-07 21:14:38.194262682 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkconsui/include/conscommon.h 2009-03-07 23:02:06.557916079 +0100 +@@ -23,7 +23,7 @@ + #include + #endif + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + #include + #include + #endif +diff -ur centerim-4.22.7.orig/kkconsui/src/Makefile.in work/build-isa-i386/centerim-4.22.7/kkconsui/src/Makefile.in +--- centerim-4.22.7.orig/kkconsui/src/Makefile.in 2009-03-07 21:14:37.608529366 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkconsui/src/Makefile.in 2009-03-07 23:04:44.188371770 +0100 +@@ -236,7 +236,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + AM_CPPFLAGS = -I$(top_srcdir)/kkconsui/include -I$(top_srcdir)/kkstrtext + noinst_LIBRARIES = libsrc.a + libsrc_a_SOURCES = treeview.cc colorschemer.cc textinputline.cc fileselector.cc textwindow.cc texteditor.cc dialogbox.cc screenarea.cc textbrowser.cc abstractui.cc horizontalbar.cc linkedlist.cc cmenus.cc conscommon.cc +diff -ur centerim-4.22.7.orig/kkstrtext/Makefile.in work/build-isa-i386/centerim-4.22.7/kkstrtext/Makefile.in +--- centerim-4.22.7.orig/kkstrtext/Makefile.in 2009-03-07 21:14:39.712922424 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkstrtext/Makefile.in 2009-03-07 22:24:41.784541354 +0100 +@@ -234,7 +234,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + noinst_LIBRARIES = libkkstrtext.a + libkkstrtext_a_SOURCES = kkstrtext.cc + noinst_HEADERS = kkstrtext.h conf.h +diff -ur centerim-4.22.7.orig/kkstrtext/conf.h work/build-isa-i386/centerim-4.22.7/kkstrtext/conf.h +--- centerim-4.22.7.orig/kkstrtext/conf.h 2009-03-07 21:14:39.655787090 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkstrtext/conf.h 2009-03-07 22:24:41.839000985 +0100 +@@ -9,6 +9,10 @@ + #define __KTOOL_USE_NAMESPACES + #endif + ++#if defined(__sun) && !defined(__GNUC__) ++#define __KTOOL_USE_NAMESPACES ++#endif ++ + #if defined(__COMO__) + #define __KTOOL_USE_NAMESPACES + #endif +diff -ur centerim-4.22.7.orig/kksystr/include/conf.h work/build-isa-i386/centerim-4.22.7/kksystr/include/conf.h +--- centerim-4.22.7.orig/kksystr/include/conf.h 2009-03-07 21:14:41.770865274 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/include/conf.h 2009-03-07 22:24:41.883217677 +0100 +@@ -5,6 +5,10 @@ + #define __KTOOL_USE_NAMESPACES + #endif + ++#if defined(__sun) && !defined(__GNUC__) ++#define __KTOOL_USE_NAMESPACES ++#endif ++ + #if defined(__COMO__) + #define __KTOOL_USE_NAMESPACES + #endif +diff -ur centerim-4.22.7.orig/kksystr/include/kkiproc.h work/build-isa-i386/centerim-4.22.7/kksystr/include/kkiproc.h +--- centerim-4.22.7.orig/kksystr/include/kkiproc.h 2009-03-07 21:14:41.674558310 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/include/kkiproc.h 2009-03-07 23:01:19.532990896 +0100 +@@ -29,7 +29,7 @@ + + __KTOOL_END_C + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + + void setenv(const string &name, const string &value, int replace); + +diff -ur centerim-4.22.7.orig/kksystr/src/Makefile.in work/build-isa-i386/centerim-4.22.7/kksystr/src/Makefile.in +--- centerim-4.22.7.orig/kksystr/src/Makefile.in 2009-03-07 21:14:41.543601436 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/src/Makefile.in 2009-03-07 22:24:41.929008103 +0100 +@@ -231,7 +231,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + AM_CPPFLAGS = -I$(top_srcdir)/kksystr/include -I$(top_srcdir)//kkstrtext + noinst_LIBRARIES = libsrc.a + libsrc_a_SOURCES = kkfsys.cc kkiproc.cc +diff -ur centerim-4.22.7.orig/kksystr/src/kkiproc.cc work/build-isa-i386/centerim-4.22.7/kksystr/src/kkiproc.cc +--- centerim-4.22.7.orig/kksystr/src/kkiproc.cc 2009-03-07 21:14:41.517730785 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/src/kkiproc.cc 2009-03-07 23:01:43.176282019 +0100 +@@ -28,7 +28,7 @@ + #include + #include + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + #include + #include + #endif +@@ -169,7 +169,7 @@ + return 0; + } + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + + void setenv(const string &name, const string &value, int replace) { + if(getenv(name.c_str()) && replace) { +diff -ur centerim-4.22.7.orig/libicq2000/src/RateLimits.cpp work/build-isa-i386/centerim-4.22.7/libicq2000/src/RateLimits.cpp +--- centerim-4.22.7.orig/libicq2000/src/RateLimits.cpp 2009-03-07 21:14:35.261260355 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libicq2000/src/RateLimits.cpp 2009-03-07 23:16:48.031177184 +0100 +@@ -36,7 +36,7 @@ + unsigned short f, s; + b >> f; + b >> s; +- members.insert( std::pair(f, s) ); ++ members.insert( std::pair(f, s) ); + } + } + +diff -ur centerim-4.22.7.orig/libicq2000/src/buffer.cpp work/build-isa-i386/centerim-4.22.7/libicq2000/src/buffer.cpp +--- centerim-4.22.7.orig/libicq2000/src/buffer.cpp 2009-03-07 21:14:35.603892985 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libicq2000/src/buffer.cpp 2009-03-07 23:13:10.556883841 +0100 +@@ -27,6 +27,8 @@ + using std::string; + using std::endl; + using std::ostream; ++using std::find; ++using std::copy; + + namespace ICQ2000 + { +diff -ur centerim-4.22.7.orig/libicq2000/src/socket.cpp work/build-isa-i386/centerim-4.22.7/libicq2000/src/socket.cpp +--- centerim-4.22.7.orig/libicq2000/src/socket.cpp 2009-03-07 21:14:35.370108444 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libicq2000/src/socket.cpp 2009-03-07 23:09:57.940655718 +0100 +@@ -40,7 +40,7 @@ + using std::string; + using std::ostringstream; + using std::istringstream; +-//using std::copy; ++using std::copy; + + namespace ICQ2000 + { +diff -ur centerim-4.22.7.orig/libmsn/msn/message.cpp work/build-isa-i386/centerim-4.22.7/libmsn/msn/message.cpp +--- centerim-4.22.7.orig/libmsn/msn/message.cpp 2009-03-07 21:14:31.329003051 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libmsn/msn/message.cpp 2009-03-07 23:28:37.815256260 +0100 +@@ -325,7 +325,7 @@ + { + if (*i == '\r') + { +- return retval.substr(0, std::distance(retval.begin(), i)); ++ return retval.substr(0, i - retval.begin()); + } + } + return ""; +diff -ur centerim-4.22.7.orig/libmsn/msn/notificationserver.cpp work/build-isa-i386/centerim-4.22.7/libmsn/msn/notificationserver.cpp +--- centerim-4.22.7.orig/libmsn/msn/notificationserver.cpp 2009-03-07 21:14:31.445922840 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libmsn/msn/notificationserver.cpp 2009-03-07 23:38:29.701797647 +0100 +@@ -483,11 +483,13 @@ + std::list::iterator flist_i; + std::list::iterator alist_i; + std::list::iterator blist_i; ++ std::list::size_type nr1, nr2; + + for (flist_i = flist.begin(); flist_i != flist.end(); flist_i++) + { +- if (std::count_if(alist.begin(), alist.end(), _sameUserName(*flist_i)) == 0 && +- std::count_if(blist.begin(), blist.end(), _sameUserName(*flist_i)) == 0) ++ std::count_if(alist.begin(), alist.end(), _sameUserName(*flist_i), nr1); ++ std::count_if(blist.begin(), blist.end(), _sameUserName(*flist_i), nr2); ++ if ((nr1 == 0) && (nr2 == 0)) + { + this->myNotificationServer()->externalCallbacks.gotNewReverseListEntry(this, (*flist_i).userName, (*flist_i).friendlyName); + } +diff -ur centerim-4.22.7.orig/src/Makefile.in work/build-isa-i386/centerim-4.22.7/src/Makefile.in +--- centerim-4.22.7.orig/src/Makefile.in 2009-03-07 21:14:30.134047329 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/Makefile.in 2009-03-07 22:24:41.984452081 +0100 +@@ -284,7 +284,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + centerim_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/hooks \ + -I$(top_srcdir)/connwrap -I$(top_srcdir)/firetalk \ + -I$(top_srcdir)/firetalk/../connwrap \ +diff -ur centerim-4.22.7.orig/src/accountmanager.cc work/build-isa-i386/centerim-4.22.7/src/accountmanager.cc +--- centerim-4.22.7.orig/src/accountmanager.cc 2009-03-07 21:14:29.505826571 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/accountmanager.cc 2009-03-08 00:57:59.576865788 +0100 +@@ -69,7 +69,7 @@ + getcolor(cp_dialog_selected), _("Change"), _("Done"), 0)); + + db.addautokeys(); +- db.idle = &face.dialogidle; ++ db.idle = face.dialogidle; + + treeview &t = *db.gettree(); + +Only in work/build-isa-i386/centerim-4.22.7/src: git-version.h +diff -ur centerim-4.22.7.orig/src/hooks/Makefile.in work/build-isa-i386/centerim-4.22.7/src/hooks/Makefile.in +--- centerim-4.22.7.orig/src/hooks/Makefile.in 2009-03-07 21:14:28.756066332 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/hooks/Makefile.in 2009-03-07 22:24:42.042759579 +0100 +@@ -236,7 +236,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + libhooks_a_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/hooks -I$(top_srcdir)/connwrap -I$(top_srcdir)/firetalk -I$(top_srcdir)/firetalk/../connwrap -I$(top_srcdir)/firetalk/../connwrap-0.1 -I$(top_srcdir)/kkconsui -I$(top_srcdir)/kkconsui/include -I$(top_srcdir)/kkconsui/../kkstrtext -I$(top_srcdir)/kkconsui/../kkstrtext-0.1 -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kksystr -I$(top_srcdir)/kksystr/include -I$(top_srcdir)/kksystr/../kkstrtext -I$(top_srcdir)/kksystr/../kkstrtext-0.1 -I$(top_srcdir)/libgadu -I$(top_srcdir)/libicq2000 -I$(top_srcdir)/libicq2000/libicq2000 -I$(top_srcdir)/libjabber -I$(top_srcdir)/libjabber/../connwrap -I$(top_srcdir)/libjabber/../connwrap-0.1 -I$(top_srcdir)/libmsn -I$(top_srcdir)/libmsn/../connwrap -I$(top_srcdir)/libmsn/../connwrap-0.1 -I$(top_srcdir)/libyahoo2 -I$(top_srcdir)/libyahoo2/../connwrap -I$(top_srcdir)/libyahoo2/../connwrap-0.1 -I$(top_srcdir)/intl + noinst_LIBRARIES = libhooks.a + libhooks_a_SOURCES = rsshook.cc HTTPClient.cc yahoohook.cc jabberhook.cc aimhook.cc icqhook.cc gaduhook.cc irchook.cc ljhook.cc msnhook.cc abstracthook.cc +diff -ur centerim-4.22.7.orig/src/hooks/yahoohook.cc work/build-isa-i386/centerim-4.22.7/src/hooks/yahoohook.cc +--- centerim-4.22.7.orig/src/hooks/yahoohook.cc 2009-03-07 21:14:29.314747497 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/hooks/yahoohook.cc 2009-03-08 00:43:02.994994953 +0100 +@@ -912,7 +912,7 @@ + em.store(imnotification(cont, text)); + em.store(imnotification(cont, _("Auto-joined the conference"))); + +- yhook.tobedone.push_back(make_pair(tbdConfLogon, room)); ++ yhook.tobedone.push_back(make_pair(tbdConfLogon, std::string(room))); + } + + void yahoohook::conf_userdecline(int id, char *who, char *room, char *msg) { +diff -ur centerim-4.22.7.orig/src/icqconf.cc work/build-isa-i386/centerim-4.22.7/src/icqconf.cc +--- centerim-4.22.7.orig/src/icqconf.cc 2009-03-07 21:14:28.571482609 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/icqconf.cc 2009-03-08 01:11:41.611351355 +0100 +@@ -27,7 +27,7 @@ + #include + #include + +-#if defined(__sun__) || defined(__NetBSD__) || defined(__sgi__) ++#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) || defined(__sgi__) + #include + #endif + +@@ -1812,7 +1812,10 @@ + void icqconf::checkdiskspace() { + fenoughdiskspace = true; + +-#if !(defined(__sun__) || defined(__NetBSD__) || defined(__sgi__)) ++#if defined(__sun__) || defined (__sun) ++ struct statvfs st; ++ if(!statvfs(conf->getdirname().c_str(), &st)) { ++#elif defined(__NetBSD__) || defined(__sgi__)) + struct statfs st; + if(!statfs(conf->getdirname().c_str(), &st)) { + #else +diff -ur centerim-4.22.7.orig/src/icqface.cc work/build-isa-i386/centerim-4.22.7/src/icqface.cc +--- centerim-4.22.7.orig/src/icqface.cc 2009-03-07 21:14:29.892212167 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/icqface.cc 2009-03-08 01:20:29.781866266 +0100 +@@ -2597,7 +2597,7 @@ + if(cc) imc->nickname = cc->getnick(); + } + +- clst.push_back(make_pair(imc->uin, imc->nickname)); ++ clst.push_back(make_pair((unsigned) imc->uin, imc->nickname)); + } + + muins = smuins; +diff -ur centerim-4.22.7.orig/src/imevents.cc work/build-isa-i386/centerim-4.22.7/src/imevents.cc +--- centerim-4.22.7.orig/src/imevents.cc 2009-03-07 21:14:29.822885424 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/imevents.cc 2009-03-08 01:20:11.920764863 +0100 +@@ -574,7 +574,7 @@ + buf.erase(pos, 1); + + if((pos = buf.find("\t")) != -1) { +- contacts.push_back(make_pair(atoi(buf.substr(0, pos).c_str()), buf.substr(pos+1))); ++ contacts.push_back(make_pair((unsigned) atoi(buf.substr(0, pos).c_str()), buf.substr(pos+1))); + } + } + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun Aug 23 23:50:46 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:50:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6092] csw/mgar/pkg Message-ID: Revision: 6092 http://gar.svn.sourceforge.net/gar/?rev=6092&view=rev Author: skayser Date: 2009-08-23 21:50:45 +0000 (Sun, 23 Aug 2009) Log Message: ----------- Adjust newpkg-% target to prefill GARNAME Modified Paths: -------------- csw/mgar/pkg/Makefile csw/mgar/pkg/x11/Makefile csw/mgar/pkg/xfce/Makefile Modified: csw/mgar/pkg/Makefile =================================================================== --- csw/mgar/pkg/Makefile 2009-08-23 21:28:31 UTC (rev 6091) +++ csw/mgar/pkg/Makefile 2009-08-23 21:50:45 UTC (rev 6092) @@ -57,7 +57,7 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = $*"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = category"; \ echo ""; \ Modified: csw/mgar/pkg/x11/Makefile =================================================================== --- csw/mgar/pkg/x11/Makefile 2009-08-23 21:28:31 UTC (rev 6091) +++ csw/mgar/pkg/x11/Makefile 2009-08-23 21:50:45 UTC (rev 6092) @@ -28,7 +28,7 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = $*"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = category"; \ echo ""; \ Modified: csw/mgar/pkg/xfce/Makefile =================================================================== --- csw/mgar/pkg/xfce/Makefile 2009-08-23 21:28:31 UTC (rev 6091) +++ csw/mgar/pkg/xfce/Makefile 2009-08-23 21:50:45 UTC (rev 6092) @@ -28,7 +28,7 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = $*"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = category"; \ echo ""; \ 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 Aug 23 23:57:46 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:57:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6093] csw/mgar/pkg/cpan/Makefile Message-ID: Revision: 6093 http://gar.svn.sourceforge.net/gar/?rev=6093&view=rev Author: skayser Date: 2009-08-23 21:57:46 +0000 (Sun, 23 Aug 2009) Log Message: ----------- cpan/Makefile: Adjust newpkg-% target to prefill GARNAME, PACKAGES, CATALOGNAME Modified Paths: -------------- csw/mgar/pkg/cpan/Makefile Modified: csw/mgar/pkg/cpan/Makefile =================================================================== --- csw/mgar/pkg/cpan/Makefile 2009-08-23 21:50:45 UTC (rev 6092) +++ csw/mgar/pkg/cpan/Makefile 2009-08-23 21:57:46 UTC (rev 6093) @@ -26,9 +26,17 @@ $(MAKE) -C $$i $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG); \ done +lcase = $(shell echo $(1) | tr '[A-Z]' '[a-z]' ) + +# You can either use "gmake newpkg-Perl-Module" or "gmake newpkg-Perl::Module". +# Ideally this would also figure out the AUTHOR by querying CPAN. Alternatively +# we might think about dropping the AUTHOR field and determine that on the fly +# during the build. Ideas? +newpkg-%: catalogname = $(shell echo $(call lcase,$*) | tr -d ':-' ) +newpkg-%: dir = $(subst ::,-,$*) newpkg-%: - @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = Type-Package"; \ + @svn mkdir $(dir) $(dir)/tags $(dir)/branches $(dir)/trunk $(dir)/trunk/files + @(echo "GARNAME = $(dir)"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = cpan"; \ echo "AUTHOR = MYSELF"; \ @@ -38,19 +46,19 @@ echo " Long description"; \ echo "endef"; \ echo ""; \ - echo "PACKAGES = CSWpmmymodule"; \ - echo "CATALOGNAME = pm_mymodule"; \ + echo "PACKAGES = CSWpm$(catalogname)"; \ + echo "CATALOGNAME = pm_$(catalogname)"; \ + echo ""; \ echo "include gar/category.mk"; \ - ) > $*/trunk/Makefile - @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 + ) > $(dir)/trunk/Makefile + @touch $(dir)/trunk/checksums + @svn add $(dir)/trunk/Makefile $(dir)/trunk/checksums + @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $(dir)/trunk + @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $(dir)/trunk @if [ -d ../../gar/v2 ]; then \ - ln -s ../../../../gar/v2 $*/trunk/gar; \ + ln -s ../../../../gar/v2 $(dir)/trunk/gar; \ else \ - svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \ + svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $(dir)/trunk/gar; \ fi @echo - @echo "Your package is set up for editing at $*/trunk" - + @echo "Your package is set up for editing at $(dir)/trunk" 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 Aug 24 00:29:50 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 22:29:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[6094] csw/mgar/gar Message-ID: Revision: 6094 http://gar.svn.sourceforge.net/gar/?rev=6094&view=rev Author: skayser Date: 2009-08-23 22:29:50 +0000 (Sun, 23 Aug 2009) Log Message: ----------- gar/v2-skayser: branched gar/v2 to work on category Makefiles Modified Paths: -------------- csw/mgar/gar/v2-skayser/gar.pkg.mk Added Paths: ----------- csw/mgar/gar/v2-skayser/ csw/mgar/gar/v2-skayser/categories/python/ csw/mgar/gar/v2-skayser/categories/python/category.mk Added: csw/mgar/gar/v2-skayser/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2-skayser/categories/python/category.mk (rev 0) +++ csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-23 22:29:50 UTC (rev 6094) @@ -0,0 +1,20 @@ +# Add a dependency to CSWpython +_EXTRA_GAR_PKGS += CSWpython + +# Put PYCOMPILE in here for now and let gar.pkg.mk handle the usual +# cswclassutils stuff. +PYCOMPILE = .*\.py + +# Could we have "setup.py install" just _not_ compile .py{c,o} files +# in the first place? +_MERGE_EXCLUDE_CATEGORY = .*\.pyo .*\.pyc .*\.egg-info.* + +# Haven't seen a python module with a configure phase so far +CONFIGURE_SCRIPTS ?= + +# gar.lib.mk contains implicit targets for setup.py +BUILD_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) + +include gar/gar.mk Modified: csw/mgar/gar/v2-skayser/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-23 13:46:56 UTC (rev 6086) +++ csw/mgar/gar/v2-skayser/gar.pkg.mk 2009-08-23 22:29:50 UTC (rev 6094) @@ -156,13 +156,15 @@ SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PRESERVECONF),$(if $(filter cswpreserveconf,$(SPKG_CLASSES)),,cswpreserveconf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(USERGROUP),$(if $(filter cswusergroup,$(SPKG_CLASSES)),,cswusergroup)) +SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PYCOMPILE),$(if $(filter cswpycompile,$(SPKG_CLASSES)),,cswpycompile)) # - set class for all config files -ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF),) +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP)$(PYCOMPILE),) _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,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(PYCOMPILE),$$F[1] = "cswpycompile" 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 Mon Aug 24 00:30:31 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 22:30:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6095] csw/mgar/pkg Message-ID: Revision: 6095 http://gar.svn.sourceforge.net/gar/?rev=6095&view=rev Author: skayser Date: 2009-08-23 22:30:31 +0000 (Sun, 23 Aug 2009) Log Message: ----------- ZSI: initial commit Added Paths: ----------- csw/mgar/pkg/ZSI/ csw/mgar/pkg/ZSI/branches/ csw/mgar/pkg/ZSI/tags/ csw/mgar/pkg/ZSI/trunk/ csw/mgar/pkg/ZSI/trunk/Makefile csw/mgar/pkg/ZSI/trunk/checksums csw/mgar/pkg/ZSI/trunk/files/ Property changes on: csw/mgar/pkg/ZSI/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/ZSI/trunk/Makefile =================================================================== --- csw/mgar/pkg/ZSI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/ZSI/trunk/Makefile 2009-08-23 22:30:31 UTC (rev 6095) @@ -0,0 +1,31 @@ +# BEWARE: +# For now this build recipe relies on gar/v2-skayser for the python category +# +GARNAME = ZSI +GARVERSION = 2.0 +CATEGORIES = python + +DESCRIPTION = Web services for Python programmers, both client and servers. +define BLURB + ZSI, the Zolera SOAP Infrastructure, is a Python package that provides + an implementation of SOAP messaging, as described in The SOAP 1.1 + Specification. In particular, ZSI parses and generates SOAP messages, + and converts between native Python datatypes and SOAP syntax. It can + also be used to build applications using SOAP Messages with Attachments. + ZSI is ``transport neutral'', and provides only a simple I/O and + dispatch framework; a more complete solution is the responsibility of + the application using ZSI. As usage patterns emerge, and common + application frameworks are more understood, this may change. +endef + +MASTER_SITES = $(SF_MIRRORS) +SF_PROJ = pywebsvcs/$(DISTNAME) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +SPKG_SOURCEURL = http://pywebsvcs.sf.net/ +PACKAGES = CSWpyzsi +CATALOGNAME = py_zsi + +REQUIRED_PKGS = CSWpyxml + +include gar/category.mk Added: csw/mgar/pkg/ZSI/trunk/checksums =================================================================== --- csw/mgar/pkg/ZSI/trunk/checksums (rev 0) +++ csw/mgar/pkg/ZSI/trunk/checksums 2009-08-23 22:30:31 UTC (rev 6095) @@ -0,0 +1 @@ +bb706337cafe9e2201b06b1bce71ca0f download/ZSI-2.0.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 Mon Aug 24 00:34:32 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 22:34:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6096] csw/mgar/pkg/ZSI/trunk/ Message-ID: Revision: 6096 http://gar.svn.sourceforge.net/gar/?rev=6096&view=rev Author: skayser Date: 2009-08-23 22:34:32 +0000 (Sun, 23 Aug 2009) Log Message: ----------- ZSI: point gar/ to the v2-skayser branch Property Changed: ---------------- csw/mgar/pkg/ZSI/trunk/ Property changes on: csw/mgar/pkg/ZSI/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2-skayser 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 Aug 24 02:17:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 24 Aug 2009 00:17:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[6097] csw/mgar/pkg/mtr/trunk/Makefile Message-ID: Revision: 6097 http://gar.svn.sourceforge.net/gar/?rev=6097&view=rev Author: skayser Date: 2009-08-24 00:17:06 +0000 (Mon, 24 Aug 2009) Log Message: ----------- mtr: added modulations for non-GUI/GUI, packaging needs further work (see TODO) Modified Paths: -------------- csw/mgar/pkg/mtr/trunk/Makefile Modified: csw/mgar/pkg/mtr/trunk/Makefile =================================================================== --- csw/mgar/pkg/mtr/trunk/Makefile 2009-08-23 22:34:32 UTC (rev 6096) +++ csw/mgar/pkg/mtr/trunk/Makefile 2009-08-24 00:17:06 UTC (rev 6097) @@ -1,12 +1,7 @@ -# Todo +# TODO # ---- -# * Build-machines pkg-config for GTK+-2.0 stuff is broken right now, -# wait for it to become usable again to compile the regular CSWmtr pkg -# ... -# checking for GTK+ - version >= 2.4.0... sh: gnome-config: not found -# see: http://lists.opencsw.org/pipermail/maintainers/2009-June/002893.html -# http://lists.freebsd.org/pipermail/freebsd-gnome/2003-April/000453.html -# +# * Find a way to somehow package out of the install dirs, we don't need +# merging for the two incompatible modulations/packages. # * Revisit curses autoconf detection. Maybe have a chat with upstream # as the README says that there are known, yet unsolved Solaris autoconf # recipe problems @@ -48,21 +43,28 @@ $$$$3 ~ /sbin\/mtr$$$$/ { $$$$4 = "4755" } \ { print }' -# Call with gmake TINY=1 to build and packaage the non-X11 version ... -ifeq ($(TINY), 1) +# We would like to have two packages: one with GUI support and one without +# GUI support. +# +EXTRA_MODULATORS = GUI +MODULATIONS_GUI = disable enable + +ifeq ($(GUI), disable) CONFIGURE_ARGS += --without-gtk PACKAGES = CSWmtrtiny CATALOGNAME = mtr_tiny INCOMPATIBLE_PKGS = CSWmtr endif -# ... default is with X11 -ifneq ($(TINY), 1) +ifeq ($(GUI), enable) CONFIGURE_ARGS += --disable-gtktest REQUIRED_PKGS += CSWgtk2 CSWlibatk CSWpango CSWlibcairo REQUIRED_PKGS += CSWggettextrt CSWglib2 INCOMPATIBLE_PKGS = CSWmtrtiny +EXTRA_PKG_CONFIG_PATH = /opt/csw/X11/lib/pkgconfig endif +# +# /end modulations include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 12:28:28 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 10:28:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6098] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6098 http://gar.svn.sourceforge.net/gar/?rev=6098&view=rev Author: wahwah Date: 2009-08-24 10:28:28 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: Making common and devel ARCHALL. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 00:17:06 UTC (rev 6097) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 10:28:28 UTC (rev 6098) @@ -20,6 +20,8 @@ PACKAGES += CSWwxwidgetsdevel PACKAGES += CSWwxwidgetsgtk2 PACKAGES += CSWwxwidgetsrt +ARCHALL_CSWwxwidgetscommon = 1 +ARCHALL_CSWwxwidgetsdevel = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig REQUIRED_PKGS += CSWftype2 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 Aug 24 13:56:48 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 24 Aug 2009 11:56:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6099] csw/mgar/pkg/bind/branches/stable-9.4.3p3 Message-ID: Revision: 6099 http://gar.svn.sourceforge.net/gar/?rev=6099&view=rev Author: bonivart Date: 2009-08-24 11:56:47 +0000 (Mon, 24 Aug 2009) Log Message: ----------- bind: update stable to 9.4.3-P3 Modified Paths: -------------- csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums Property Changed: ---------------- csw/mgar/pkg/bind/branches/stable-9.4.3p3/ Property changes on: csw/mgar/pkg/bind/branches/stable-9.4.3p3 ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile =================================================================== --- csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile 2009-08-24 10:28:28 UTC (rev 6098) +++ csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile 2009-08-24 11:56:47 UTC (rev 6099) @@ -1,6 +1,6 @@ GARNAME = bind -GARVERSION = 9.4.2 -RELEASE = P2 +GARVERSION = 9.4.3 +RELEASE = P3 DISTVERSION = $(GARVERSION)-$(RELEASE) DISTNAME = $(GARNAME)-$(DISTVERSION) WORKSRC = $(WORKDIR)/$(DISTNAME) @@ -19,6 +19,9 @@ DISTFILES = $(GARNAME)-$(GARVERSION)-$(RELEASE).tar.gz DISTFILES += $(call admfiles,CSWbind,preinstall postinstall preremove) +LICENSE = COPYRIGHT +REQUIRED_PKGS = CSWosslrt + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*)-([A-Z][0-9]) @@ -54,7 +57,6 @@ @cp $(FILEDIR)/CSWbind.named.conf $(DESTDIR)$(docdir)/$(GARNAME)/named.conf @cp $(FILEDIR)/CSWbind.named.root $(DESTDIR)$(docdir)/$(GARNAME)/named.root @cp $(FILEDIR)/CSWbind.rndc.key $(DESTDIR)$(docdir)/$(GARNAME)/rndc.key - @cp $(WORKSRC)/COPYRIGHT $(DESTDIR)$(docdir)/$(GARNAME)/LICENSE ( cd $(WORKSRC) ; \ gmake DESTDIR=$(DESTDIR) install ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums =================================================================== --- csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums 2009-08-24 10:28:28 UTC (rev 6098) +++ csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums 2009-08-24 11:56:47 UTC (rev 6099) @@ -1,5 +1,5 @@ -74464f8af260ad71a19a3400a1ae00bb download/bind-9.4.2-P2.tar.gz 9d20fd7cceac478243ac485868b9ef35 download/CSWbind.gspec +78702926bd064e3a1f4ac56ae85866a9 download/CSWbind.postinstall 9338f20547092ec54136ebebd5f663d3 download/CSWbind.preinstall -78702926bd064e3a1f4ac56ae85866a9 download/CSWbind.postinstall 104f5539928c029738b0a1808f8af262 download/CSWbind.preremove +ed357d3d18dcfa97723f91d9219caa8c download/bind-9.4.3-P3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 14:52:52 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 12:52:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[6100] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6100 http://gar.svn.sourceforge.net/gar/?rev=6100&view=rev Author: wahwah Date: 2009-08-24 12:52:52 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: making the empty package ARCHALL Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 11:56:47 UTC (rev 6099) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 12:52:52 UTC (rev 6100) @@ -21,7 +21,8 @@ PACKAGES += CSWwxwidgetsgtk2 PACKAGES += CSWwxwidgetsrt ARCHALL_CSWwxwidgetscommon = 1 -ARCHALL_CSWwxwidgetsdevel = 1 +ARCHALL_CSWwxwidgetsdevel = 1 +ARCHALL_CSWwxwidgetsgtk2 = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig REQUIRED_PKGS += CSWftype2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 16:46:44 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 14:46:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[6101] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6101 http://gar.svn.sourceforge.net/gar/?rev=6101&view=rev Author: wahwah Date: 2009-08-24 14:46:44 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: Adding CSWlibpthreadstubs to build deps Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 12:52:52 UTC (rev 6100) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 14:46:44 UTC (rev 6101) @@ -38,7 +38,7 @@ REQUIRED_PKGS += CSWtiff REQUIRED_PKGS += CSWzlib -PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel CSWlibpthreadstubs PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) 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 Aug 24 17:07:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 24 Aug 2009 15:07:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6102] csw/mgar/pkg Message-ID: Revision: 6102 http://gar.svn.sourceforge.net/gar/?rev=6102&view=rev Author: valholla Date: 2009-08-24 15:07:30 +0000 (Mon, 24 Aug 2009) Log Message: ----------- initial checkin Added Paths: ----------- csw/mgar/pkg/pidgin_sipe/ csw/mgar/pkg/pidgin_sipe/Makefile csw/mgar/pkg/pidgin_sipe/branches/ csw/mgar/pkg/pidgin_sipe/tags/ csw/mgar/pkg/pidgin_sipe/trunk/ csw/mgar/pkg/pidgin_sipe/trunk/Makefile csw/mgar/pkg/pidgin_sipe/trunk/checksums csw/mgar/pkg/pidgin_sipe/trunk/files/ Added: csw/mgar/pkg/pidgin_sipe/Makefile =================================================================== --- csw/mgar/pkg/pidgin_sipe/Makefile (rev 0) +++ csw/mgar/pkg/pidgin_sipe/Makefile 2009-08-24 15:07:30 UTC (rev 6102) @@ -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/pidgin_sipe/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin_sipe/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pidgin_sipe/trunk/Makefile 2009-08-24 15:07:30 UTC (rev 6102) @@ -0,0 +1,28 @@ +GARNAME = pidgin-sipe +GARVERSION = 1.5.0 +CATEGORIES = lib + +DESCRIPTION = Pidgin Plug-in SIPE (Sip Exchange Protocol) +define BLURB + An Open Implementation of SIP/Simple protocol for Pidgin +endef + +SF_PROJ = sipe +MASTER_SITES = $(SF_MIRRORS) +UPSTREAM_USE_SF = 1 +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +PACKAGES = CSWpidginsipe +CATALOGNAME_CSWpidginsipe = pidgin_sipe +SPKG_DESC_CSWpidginsipe = $(DESCRIPTION) +SPKG_SOURCEURL = http://sipe.sourceforge.net/ +REQUIRED_PKGS_CSWpidginsipe = CSWpidgin + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz2 + +STRIP_LIBTOOL = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/pidgin_sipe/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin_sipe/trunk/checksums (rev 0) +++ csw/mgar/pkg/pidgin_sipe/trunk/checksums 2009-08-24 15:07:30 UTC (rev 6102) @@ -0,0 +1 @@ +8d27efe5d98d88385736d92d9aa0c924 download/pidgin-sipe-1.5.0.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 18:06:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 16:06:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6103] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6103 http://gar.svn.sourceforge.net/gar/?rev=6103&view=rev Author: wahwah Date: 2009-08-24 16:06:05 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: Added more prerequisites Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 15:07:30 UTC (rev 6102) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 16:06:05 UTC (rev 6103) @@ -38,7 +38,11 @@ REQUIRED_PKGS += CSWtiff REQUIRED_PKGS += CSWzlib -PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel CSWlibpthreadstubs +PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS += CSWgtk2devel +PREREQUISITE_PKGS += CSWlibpthreadstubs +PREREQUISITE_PKGS += CSWxproto +PREREQUISITE_PKGS += CSWkbproto PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 19:16:58 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 17:16:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[6104] csw/mgar/pkg/cfg2html/trunk/Makefile Message-ID: Revision: 6104 http://gar.svn.sourceforge.net/gar/?rev=6104&view=rev Author: wahwah Date: 2009-08-24 17:16:58 +0000 (Mon, 24 Aug 2009) Log Message: ----------- cfg2html: Fixing the revision number placement Modified Paths: -------------- csw/mgar/pkg/cfg2html/trunk/Makefile Modified: csw/mgar/pkg/cfg2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-24 16:06:05 UTC (rev 6103) +++ csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-24 17:16:58 UTC (rev 6104) @@ -3,14 +3,15 @@ # $Id$ GARNAME = cfg2html -GARVERSION = 1.14r1.8 +GARVERSION = 1.14 +PATCHLEVEL = r1.8 CATEGORIES = utils DESCRIPTION = Configuration documentation generator define BLURB endef SPKG_SOURCEURL = http://tech.groups.yahoo.com/group/cfg2html/ MASTER_SITES = http://tech.groups.yahoo.com/group/cfg2html/files/sun/ -DISTFILES = $(GARNAME)-sun_$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-sun_$(GARVERSION)$(PATCHLEVEL).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz CONFIGURE_SCRIPTS = BUILD_SCRIPTS = @@ -35,3 +36,5 @@ ginstall -m 0755 $(WORKSRC)/cfg2html_sun.sh $(DESTDIR)$(bindir) include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 19:51:49 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 17:51:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[6105] csw/mgar/pkg/buildbot/trunk Message-ID: Revision: 6105 http://gar.svn.sourceforge.net/gar/?rev=6105&view=rev Author: wahwah Date: 2009-08-24 17:51:49 +0000 (Mon, 24 Aug 2009) Log Message: ----------- buildbot: revision bump to 0.7.11p3 Modified Paths: -------------- csw/mgar/pkg/buildbot/trunk/Makefile csw/mgar/pkg/buildbot/trunk/checksums Added Paths: ----------- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch Removed Paths: ------------- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch Modified: csw/mgar/pkg/buildbot/trunk/Makefile =================================================================== --- csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-24 17:51:49 UTC (rev 6105) @@ -4,7 +4,7 @@ GARNAME = buildbot GARVERSION = 0.7.11 -PATCHLEVEL = p1 +PATCHLEVEL = p3 CATEGORIES = utils DESCRIPTION = A system to automate the compile/test cycle Modified: csw/mgar/pkg/buildbot/trunk/checksums =================================================================== --- csw/mgar/pkg/buildbot/trunk/checksums 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/checksums 2009-08-24 17:51:49 UTC (rev 6105) @@ -1,3 +1,3 @@ -2f83cd6562f0288ec4f4d77027f3090f download/buildbot-0.7.11p1.tar.gz -4c70db04b3514157aa746370ad282eeb download/debug-0.7.11p1.patch -a39720c9a13d73bbda054938d6a98c47 download/tail-0.7.11p1.patch +6e4ef001d11caf270e2ed7d1d7d43318 download/buildbot-0.7.11p3.tar.gz +4c70db04b3514157aa746370ad282eeb download/debug-0.7.11p3.patch +a39720c9a13d73bbda054938d6a98c47 download/tail-0.7.11p3.patch Deleted: csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -1,25 +0,0 @@ -diff -ru buildbot-0.7.11p1.orig/buildbot/changes/changes.py buildbot-0.7.11p1/buildbot/changes/changes.py ---- buildbot-0.7.11p1.orig/buildbot/changes/changes.py 2009-07-15 20:09:30.000000000 +0100 -+++ buildbot-0.7.11p1/buildbot/changes/changes.py 2009-07-30 13:30:01.632031291 +0100 -@@ -73,6 +73,9 @@ - self.files = files[:] - self.files.sort() - -+ def __repr__(self): -+ return "branch(%s) at %s by %s" % (self.branch, self.revision, self.who) -+ - def asText(self): - data = "" - data += self.getFileContents() -diff -ru buildbot-0.7.11p1.orig/buildbot/scheduler.py buildbot-0.7.11p1/buildbot/scheduler.py ---- buildbot-0.7.11p1.orig/buildbot/scheduler.py 2009-07-15 20:09:30.000000000 +0100 -+++ buildbot-0.7.11p1/buildbot/scheduler.py 2009-07-30 16:56:59.195283110 +0100 -@@ -287,6 +287,8 @@ - - def addChange(self, change): - branch = change.branch -+ log.msg("branch = %s" % repr(branch)) -+ log.msg("self.branches = %s" % repr(self.branches)) - if self.branches is not None and branch not in self.branches: - log.msg("%s ignoring off-branch %s" % (self, change)) - return Copied: csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch (from rev 6052, csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch) =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch (rev 0) +++ csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -0,0 +1,25 @@ +diff -ru buildbot-0.7.11p1.orig/buildbot/changes/changes.py buildbot-0.7.11p1/buildbot/changes/changes.py +--- buildbot-0.7.11p1.orig/buildbot/changes/changes.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/changes/changes.py 2009-07-30 13:30:01.632031291 +0100 +@@ -73,6 +73,9 @@ + self.files = files[:] + self.files.sort() + ++ def __repr__(self): ++ return "branch(%s) at %s by %s" % (self.branch, self.revision, self.who) ++ + def asText(self): + data = "" + data += self.getFileContents() +diff -ru buildbot-0.7.11p1.orig/buildbot/scheduler.py buildbot-0.7.11p1/buildbot/scheduler.py +--- buildbot-0.7.11p1.orig/buildbot/scheduler.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/scheduler.py 2009-07-30 16:56:59.195283110 +0100 +@@ -287,6 +287,8 @@ + + def addChange(self, change): + branch = change.branch ++ log.msg("branch = %s" % repr(branch)) ++ log.msg("self.branches = %s" % repr(self.branches)) + if self.branches is not None and branch not in self.branches: + log.msg("%s ignoring off-branch %s" % (self, change)) + return Deleted: csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -1,12 +0,0 @@ -diff -ru buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py buildbot-0.7.11p1/buildbot/scripts/logwatcher.py ---- buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py 2009-03-02 18:13:03.000000000 +0100 -+++ buildbot-0.7.11p1/buildbot/scripts/logwatcher.py 2009-07-29 18:00:44.304903854 +0200 -@@ -43,7 +43,7 @@ - # been seen within 10 seconds, and with ReconfigError if the error - # line was seen. If the logfile could not be opened, it errbacks with - # an IOError. -- self.p = reactor.spawnProcess(self.pp, "/usr/bin/tail", -+ self.p = reactor.spawnProcess(self.pp, "/opt/csw/bin/gtail", - ("tail", "-f", "-n", "0", self.logfile), - env=os.environ, - ) Copied: csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch (from rev 6104, csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch) =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch (rev 0) +++ csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -0,0 +1,12 @@ +diff -ru buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py buildbot-0.7.11p1/buildbot/scripts/logwatcher.py +--- buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py 2009-03-02 18:13:03.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/scripts/logwatcher.py 2009-07-29 18:00:44.304903854 +0200 +@@ -43,7 +43,7 @@ + # been seen within 10 seconds, and with ReconfigError if the error + # line was seen. If the logfile could not be opened, it errbacks with + # an IOError. +- self.p = reactor.spawnProcess(self.pp, "/usr/bin/tail", ++ self.p = reactor.spawnProcess(self.pp, "/opt/csw/bin/gtail", + ("tail", "-f", "-n", "0", self.logfile), + env=os.environ, + ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 02:02:28 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 00:02:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6106] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6106 http://gar.svn.sourceforge.net/gar/?rev=6106&view=rev Author: wahwah Date: 2009-08-25 00:02:28 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Removed the _rt package, shuffled files to match the old non-GAR packages Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 17:51:49 UTC (rev 6105) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 00:02:28 UTC (rev 6106) @@ -19,7 +19,6 @@ PACKAGES = CSWwxwidgetscommon PACKAGES += CSWwxwidgetsdevel PACKAGES += CSWwxwidgetsgtk2 -PACKAGES += CSWwxwidgetsrt ARCHALL_CSWwxwidgetscommon = 1 ARCHALL_CSWwxwidgetsdevel = 1 ARCHALL_CSWwxwidgetsgtk2 = 1 @@ -43,18 +42,24 @@ PREREQUISITE_PKGS += CSWlibpthreadstubs PREREQUISITE_PKGS += CSWxproto PREREQUISITE_PKGS += CSWkbproto +PREREQUISITE_PKGS += CSWlibxcb +PREREQUISITE_PKGS += CSWlibxcbdevel +PREREQUISITE_PKGS += CSWlibxau +PREREQUISITE_PKGS += CSWlibxaudevel +PREREQUISITE_PKGS += CSWlibxrenderdevel +PREREQUISITE_PKGS += CSWrenderproto + PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) -PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* -PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) -PKGFILES_CSWwxwidgetsgtk2 = non-existing +PKGFILES_CSWwxwidgetsgtk2 = /opt/csw/lib/wx/(include|config)/gtk2-.* +PKGFILES_CSWwxwidgetsgtk2 += /opt/csw/lib/libwx_gtk2.* +PKGFILES_CSWwxwidgetsgtk2 += /opt/csw/bin/wx(-config|rc(|-2.8)) -REQUIRED_PKGS_CSWwxwidgetsgtk2 = CSWwxwidgetsrt -REQUIRED_PKGS_CSWwxwidgetsrt = CSWwxwidgetscommon +REQUIRED_PKGS_CSWwxwidgetsgtk2 = CSWwxwidgetscommon +REQUIRED_PKGS_CSWwxwidgetsdevel = CSWwxwidgetscommon CATALOGNAME_CSWwxwidgetscommon = wxwidgets_common CATALOGNAME_CSWwxwidgetsdevel = wxwidgets_devel CATALOGNAME_CSWwxwidgetsgtk2 = wxwidgets_gtk2 -CATALOGNAME_CSWwxwidgetsrt = wxwidgets_rt TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 02:04:26 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 00:04:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[6107] csw/mgar/pkg Message-ID: Revision: 6107 http://gar.svn.sourceforge.net/gar/?rev=6107&view=rev Author: wahwah Date: 2009-08-25 00:04:26 +0000 (Tue, 25 Aug 2009) Log Message: ----------- libyaml: Initial checkin Modified Paths: -------------- csw/mgar/pkg/libyaml/trunk/Makefile csw/mgar/pkg/libyaml/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libyaml/ Modified: csw/mgar/pkg/libyaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-24 17:51:49 UTC (rev 6105) +++ csw/mgar/pkg/libyaml/trunk/Makefile 2009-08-25 00:04:26 UTC (rev 6107) @@ -2,181 +2,17 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = libyaml +GARVERSION = 0.1.2 CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = a YAML 1.1 parser and emitter written in C define BLURB - endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://pyyaml.org/wiki/LibYAML?version=20 +MASTER_SITES = http://pyyaml.org/download/libyaml/ +DISTFILES = yaml-$(GARVERSION).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. +TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +WORKSRC = $(WORKDIR)/yaml-$(GARVERSION) +include gar/category.mk Modified: csw/mgar/pkg/libyaml/trunk/checksums =================================================================== --- csw/mgar/pkg/template/trunk/checksums 2009-08-24 17:51:49 UTC (rev 6105) +++ csw/mgar/pkg/libyaml/trunk/checksums 2009-08-25 00:04:26 UTC (rev 6107) @@ -0,0 +1 @@ +f6c9b5c2b0f6919abd79f5fd059b01dc download/yaml-0.1.2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 08:22:04 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 06:22:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[6108] csw/mgar/pkg/pyyaml/trunk/Makefile Message-ID: Revision: 6108 http://gar.svn.sourceforge.net/gar/?rev=6108&view=rev Author: wahwah Date: 2009-08-25 06:22:04 +0000 (Tue, 25 Aug 2009) Log Message: ----------- pyyaml: Renaming catalogname to py_pyyaml, adding support for libyaml, adding the runtime package Modified Paths: -------------- csw/mgar/pkg/pyyaml/trunk/Makefile Modified: csw/mgar/pkg/pyyaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-25 00:04:26 UTC (rev 6107) +++ csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-25 06:22:04 UTC (rev 6108) @@ -32,20 +32,41 @@ MASTER_SITES = http://pyyaml.org/download/pyyaml/ DISTFILES = $(PROJ_NAME)-$(GARVERSION).tar.gz WORKSRC = $(WORKDIR)/$(PROJ_NAME)-$(GARVERSION) +SPKG_SOURCEURL = http://pyyaml.org/wiki/PyYAML +SPKG_CLASSES = none cswpycompile -# We define upstream file regex so we can be notifed of new upstream software release +PACKAGES = CSWpyyaml CSWpyyamlrt +CATALOGNAME_CSWpyyaml = py_pyyaml +CATALOGNAME_CSWpyyamlrt = py_pyyaml_rt + +REQUIRED_PKGS_CSWpyyaml = CSWpython +REQUIRED_PKGS_CSWpyyamlrt = CSWpython-rt CSWlibyaml +PREREQUISITE_PKGS = $(REQUIRED_PKGS) + +ARCHALL_CSWpyyaml = 1 +PKGFILES_CSWpyyamlrt = /opt/csw/lib/python/site-packages/.*\.so + UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 CONFIGURE_SCRIPTS = BUILD_SCRIPTS = pyyaml TEST_SCRIPTS = INSTALL_SCRIPTS = pyyaml +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } \ + { print }' + build-pyyaml: - (cd $(WORKSRC); python setup.py build) + (cd $(WORKSRC); $(BUILD_ENV) python setup.py --with-libyaml build) + @$(MAKECOOKIE) install-pyyaml: - (cd $(WORKSRC); python setup.py install --root=$(DESTDIR)) + (cd $(WORKSRC); $(INSTALL_ENV) python setup.py install --root=$(DESTDIR)) + @$(MAKECOOKIE) +post-install-modulated: + gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; + @$(MAKECOOKIE) + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 09:04:49 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 07:04:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[6109] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6109 http://gar.svn.sourceforge.net/gar/?rev=6109&view=rev Author: wahwah Date: 2009-08-25 07:04:49 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Making CSWwxwidgetsgtk2 ARCHALL = 0 Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 06:22:04 UTC (rev 6108) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 07:04:49 UTC (rev 6109) @@ -21,7 +21,6 @@ PACKAGES += CSWwxwidgetsgtk2 ARCHALL_CSWwxwidgetscommon = 1 ARCHALL_CSWwxwidgetsdevel = 1 -ARCHALL_CSWwxwidgetsgtk2 = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig REQUIRED_PKGS += CSWftype2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 11:31:13 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 09:31:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[6110] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6110 http://gar.svn.sourceforge.net/gar/?rev=6110&view=rev Author: wahwah Date: 2009-08-25 09:31:13 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Setting CSWwxwidgetscommon to ARCHALL = 0, adding SUNWxwinc to prerequisites. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 07:04:49 UTC (rev 6109) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 09:31:13 UTC (rev 6110) @@ -19,7 +19,6 @@ PACKAGES = CSWwxwidgetscommon PACKAGES += CSWwxwidgetsdevel PACKAGES += CSWwxwidgetsgtk2 -ARCHALL_CSWwxwidgetscommon = 1 ARCHALL_CSWwxwidgetsdevel = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig @@ -47,6 +46,7 @@ PREREQUISITE_PKGS += CSWlibxaudevel PREREQUISITE_PKGS += CSWlibxrenderdevel PREREQUISITE_PKGS += CSWrenderproto +PREREQUISITE_PKGS += SUNWxwinc PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) PKGFILES_CSWwxwidgetsgtk2 = /opt/csw/lib/wx/(include|config)/gtk2-.* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Aug 25 15:18:13 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 25 Aug 2009 13:18:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[6111] csw/mgar/pkg Message-ID: Revision: 6111 http://gar.svn.sourceforge.net/gar/?rev=6111&view=rev Author: bonivart Date: 2009-08-25 13:18:13 +0000 (Tue, 25 Aug 2009) Log Message: ----------- MailScanner: initial commit Added Paths: ----------- csw/mgar/pkg/MailScanner/ csw/mgar/pkg/MailScanner/branches/ csw/mgar/pkg/MailScanner/tags/ csw/mgar/pkg/MailScanner/trunk/ csw/mgar/pkg/MailScanner/trunk/Makefile csw/mgar/pkg/MailScanner/trunk/checksums csw/mgar/pkg/MailScanner/trunk/files/ Property changes on: csw/mgar/pkg/MailScanner/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/MailScanner/trunk/Makefile =================================================================== --- csw/mgar/pkg/MailScanner/trunk/Makefile (rev 0) +++ csw/mgar/pkg/MailScanner/trunk/Makefile 2009-08-25 13:18:13 UTC (rev 6111) @@ -0,0 +1,53 @@ +GARNAME = MailScanner +GARVERSION = 4.77.10 +RELEASE = 1 +DISTVERSION = $(GARVERSION)-$(RELEASE) +#DISTNAME = $(GARNAME)-$(DISTVERSION) +#WORKSRC = $(WORKDIR)/$(DISTNAME) +CATEGORIES = net + +DESCRIPTION = A Free Anti-Virus and Anti-Spam Filter +define BLURB + A Free Anti-Virus and Anti-Spam Filter +endef + +MASTER_SITES = http://www.mailscanner.info/files/4/tar/ +DISTFILES = $(GARNAME)-install-$(DISTVERSION).tar.gz + +#LICENSE = COPYRIGHT + +PACKAGES = CSWmailscanner +CATALOGNAME = mailscanner + +#REQUIRED_PKGS = + +#ARCHALL = 1 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-install-(\d+(?:\.\d+)*)-\d+.tar.gz + +#CONFIGURE_SCRIPTS = +#BUILD_SCRIPTS = +#TEST_SCRIPTS = +#INSTALL_SCRIPTS = custom + +SPKG_SOURCEURL = http://www.mailscanner.info + +include gar/category.mk + +#SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + +#install-custom: +# @echo " ==> Installing $(GARNAME) (custom)" +# @ginstall -d $(DESTDIR)/etc/opt/csw/init.d +# @cp $(FILEDIR)/CSWbind.cswnamed $(DESTDIR)/etc/opt/csw/init.d/cswnamed +# @cp $(FILEDIR)/CSWbind.named.conf.CSW $(DESTDIR)/etc/opt/csw/named.conf.CSW +# @ginstall -d $(DESTDIR)/opt/csw/etc/CSWbind +# @cp $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/CSWbind/ +# @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) +# @$(foreach DOC,$(DOCLIST),cp $(FILEDIR)/$(DOC) $(DESTDIR)$(docdir)/$(GARNAME);) +# ( cd $(WORKSRC) ; \ +# gmake DESTDIR=$(DESTDIR) install ) +# @ginstall -d $(DESTDIR)/var/opt/csw/named +# @touch $(DESTDIR)/var/opt/csw/named/named.pid +# @$(MAKECOOKIE) Added: csw/mgar/pkg/MailScanner/trunk/checksums =================================================================== --- csw/mgar/pkg/MailScanner/trunk/checksums (rev 0) +++ csw/mgar/pkg/MailScanner/trunk/checksums 2009-08-25 13:18:13 UTC (rev 6111) @@ -0,0 +1 @@ +bf0e5c2e17dcc2a898ed089e3a77cea9 download/MailScanner-install-4.77.10-1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 15:18:23 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 13:18:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[6112] csw/mgar/pkg/syslog_ng/trunk Message-ID: Revision: 6112 http://gar.svn.sourceforge.net/gar/?rev=6112&view=rev Author: wahwah Date: 2009-08-25 13:18:23 +0000 (Tue, 25 Aug 2009) Log Message: ----------- syslog-ng: testing for the presence of svcadm instead of assuming it's there, fixed download path, added makecookie to the postinstall target Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile csw/mgar/pkg/syslog_ng/trunk/checksums csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-25 13:18:23 UTC (rev 6112) @@ -9,7 +9,7 @@ logs using TCP. endef -MASTER_SITES = http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/ +MASTER_SITES = http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(GARVERSION)/source/ DISTFILES = $(GARNAME)_$(GARVERSION).tar.gz DISTFILES += $(GARNAME).conf.CSW DISTFILES += cswsyslog_ng @@ -23,7 +23,7 @@ PACKAGES = CSWsyslogng -SPKG_SOURCEURL = http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(GARVERSION)/source/ +SPKG_SOURCEURL = http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/ SPKG_CLASSES = none cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk ' \ @@ -64,5 +64,6 @@ ginstall -d $(DESTDIR)/etc/opt/csw/init.d ginstall -m 755 $(FILEDIR)/cswsyslog_ng \ $(DESTDIR)/etc/opt/csw/init.d/cswsyslog_ng + $(MAKECOOKIE) include gar/category.mk Modified: csw/mgar/pkg/syslog_ng/trunk/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-25 13:18:23 UTC (rev 6112) @@ -1,5 +1,5 @@ -2204f69bd703115748073e99297e5083 download/CSWsyslogng.postremove -b4b01531e2de07e6e4231afc4079a168 download/CSWsyslogng.preinstall +5189766b79c5ada82fcddda76f1d8d01 download/CSWsyslogng.postremove +c714cbd4360ac0af8495697de2001c41 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW 86c39779261545d2289e9c309e262b8d download/syslog-ng_3.0.4.tar.gz Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-25 13:18:23 UTC (rev 6112) @@ -1,4 +1,6 @@ #!/bin/sh -echo "Enabling svc:/system/system-log:default" -svcadm enable svc:/system/system-log:default +if [ -e /usr/sbin/svcadm ]; then + echo "Enabling svc:/system/system-log:default" + /usr/sbin/svcadm enable svc:/system/system-log:default +fi Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-25 13:18:23 UTC (rev 6112) @@ -1,4 +1,6 @@ #!/bin/sh -echo "Disabling svc:/system/system-log:default" -svcadm disable svc:/system/system-log:default +if [ -e /usr/sbin/svcadm ]; then + echo "Disabling svc:/system/system-log:default" + /usr/sbin/svcadm disable svc:/system/system-log:default +fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 19:00:22 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 17:00:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[6113] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6113 http://gar.svn.sourceforge.net/gar/?rev=6113&view=rev Author: wahwah Date: 2009-08-25 17:00:22 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Enabling unicode and adding missing includes (without the includes it works on the buildfarm, but not locally) Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 13:18:23 UTC (rev 6112) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 17:00:22 UTC (rev 6113) @@ -62,9 +62,9 @@ TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex -CONFIGURE_ARGS += --disable-unicode --with-opengl +CONFIGURE_ARGS += --enable-unicode --with-opengl EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt -EXTRA_INC = /opt/csw/X11/include +EXTRA_INC = /opt/csw/X11/include /usr/X11/include /usr/openwin/share/include EXTRA_LIB = /opt/csw/X11/lib PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 26 12:39:10 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 26 Aug 2009 10:39:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[6114] csw/mgar/pkg/myodbc/trunk/Makefile Message-ID: Revision: 6114 http://gar.svn.sourceforge.net/gar/?rev=6114&view=rev Author: wahwah Date: 2009-08-26 10:39:09 +0000 (Wed, 26 Aug 2009) Log Message: ----------- myodbc: Moving CSWmysql5devel from runtime deps to build deps Modified Paths: -------------- csw/mgar/pkg/myodbc/trunk/Makefile Modified: csw/mgar/pkg/myodbc/trunk/Makefile =================================================================== --- csw/mgar/pkg/myodbc/trunk/Makefile 2009-08-25 17:00:22 UTC (rev 6113) +++ csw/mgar/pkg/myodbc/trunk/Makefile 2009-08-26 10:39:09 UTC (rev 6114) @@ -26,12 +26,13 @@ REQUIRED_PKGS = CSWiconv REQUIRED_PKGS += CSWlibtoolrt -REQUIRED_PKGS += CSWmysql5devel REQUIRED_PKGS += CSWmysql5rt REQUIRED_PKGS += CSWunixodbc REQUIRED_PKGS += CSWzlib -PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS += CSWmysql5devel + # The tests act weird. They require a shared library that doesn't get built at all. TEST_SCRIPTS = WORKSRC = $(WORKDIR)/$(DL_NAME)-$(GARVERSION)$(PATCHLEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 26 22:19:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 26 Aug 2009 20:19:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6115] csw/mgar/pkg/cups/branches/cups-with-classutils/ Makefile Message-ID: Revision: 6115 http://gar.svn.sourceforge.net/gar/?rev=6115&view=rev Author: wahwah Date: 2009-08-26 20:19:05 +0000 (Wed, 26 Aug 2009) Log Message: ----------- cupsd: Updated build dependencies based on compiler open() syscalls Modified Paths: -------------- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile Modified: csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile =================================================================== --- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-26 10:39:09 UTC (rev 6114) +++ csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-26 20:19:05 UTC (rev 6115) @@ -25,8 +25,15 @@ DISTFILES = cups-$(GARVERSION)-source.tar.bz2 $(PATCHFILES) DISTFILES += CSWcupsd.postremove -REQUIRED_PKGS = CSWkrb5lib CSWosslrt -PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWoldapdevel +PREREQUISITE_PKGS = CSWggettext +PREREQUISITE_PKGS += CSWjpeg +PREREQUISITE_PKGS += CSWoldapdevel +PREREQUISITE_PKGS += CSWossldevel +PREREQUISITE_PKGS += CSWtiff +PREREQUISITE_PKGS += CSWzlib +PREREQUISITE_PKGS += SUNWhea +PREREQUISITE_PKGS += SUNWlibm +PREREQUISITE_PKGS += SUNWslpu # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = cups-(\d+(?:\.\d+)*)-source.tar.bz2 @@ -43,7 +50,7 @@ REQUIRED_PKGS_CSWcupsd = CSWcswclassutils CSWlibcups CSWoldaprt CSWzlib REQUIRED_PKGS_CSWcupsd += CSWjpeg CSWpng CSWtiff CSWlibtasn1 REQUIRED_PKGS_CSWcupsd += CSWgcrypt CSWgnutls CSWgpgerr CSWlibdbus - +REQUIRED_PKGS_CSWcupsd += CSWkrb5lib REQUIRED_PKGS_CSWcupsclient = CSWcswclassutils CSWlibcups CSWoldaprt CSWzlib REQUIRED_PKGS_CSWcupsclient += CSWgcrypt CSWgnutls CSWgpgerr CSWlibtasn1 REQUIRED_PKGS_CSWcupsdoc = CSWcswclassutils This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 12:25:06 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 10:25:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[6116] csw/mgar/gar/v2/bin/depmaker Message-ID: Revision: 6116 http://gar.svn.sourceforge.net/gar/?rev=6116&view=rev Author: wahwah Date: 2009-08-27 10:25:05 +0000 (Thu, 27 Aug 2009) Log Message: ----------- depmaker: Adding an option to support text files. Modified Paths: -------------- csw/mgar/gar/v2/bin/depmaker Modified: csw/mgar/gar/v2/bin/depmaker =================================================================== --- csw/mgar/gar/v2/bin/depmaker 2009-08-26 20:19:05 UTC (rev 6115) +++ csw/mgar/gar/v2/bin/depmaker 2009-08-27 10:25:05 UTC (rev 6116) @@ -27,12 +27,14 @@ my $do_script = 1; my $be_quiet = 0; my (@nodep, $rootdir); +my $text_files = 0; GetOptions( 'script!' => \$do_script, 'quiet|q' => \$be_quiet, 'root=s' => \$rootdir, 'nodep=s' => \@nodep, 'help|h' => \&usage, + 'text|t' => \$text_files, 'version|V' => sub { print STDERR "$self v$VERSION\n"; exit 2; @@ -43,7 +45,7 @@ my $nodep = join "|", @nodep; sub usage { - print STDERR "Usage: $self [--no/script] [--nodep ] [--root ] < path_list > depend\n"; + print STDERR "Usage: $self [--text] [--no/script] [--nodep ] [--root ] < path_list > depend\n"; exit 1; } @@ -111,6 +113,9 @@ $depfiles{$lib}++ if $lib; } } + elsif ($text_files and $ftype =~ /text/) { + $depfiles{$filesrc}++; + } } exit 0 unless scalar keys %depfiles; 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 Aug 27 14:45:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 12:45:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[6117] csw/mgar/pkg/pca/trunk Message-ID: Revision: 6117 http://gar.svn.sourceforge.net/gar/?rev=6117&view=rev Author: dmichelsen Date: 2009-08-27 12:45:12 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pca: Update to 20090827-01 and prefer OpenCSW Perl, but do not depend on it Modified Paths: -------------- csw/mgar/pkg/pca/trunk/Makefile csw/mgar/pkg/pca/trunk/checksums Added Paths: ----------- csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff Modified: csw/mgar/pkg/pca/trunk/Makefile =================================================================== --- csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 10:25:05 UTC (rev 6116) +++ csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 12:45:12 UTC (rev 6117) @@ -1,5 +1,5 @@ GARNAME = pca -GARVERSION = 20090723-01 +GARVERSION = 20090827-01 CATEGORIES = utils DESCRIPTION = Patch Check Advanced @@ -18,6 +18,9 @@ DISTFILES += COPYING DISTFILES += pca.conf +PATCHFILES = 0001-prefer-opencsw-perl.diff +#PATCHDIRLEVEL = 0 + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d{8}-\d{2}) @@ -35,6 +38,10 @@ include gar/category.mk +post-extract-modulated: + @gln -s $(DISTNAME) $(WORKSRC)/pca + @$(MAKECOOKIE) + install-custom: @ginstall -d $(DESTDIR)$(bindir) @ginstall $(WORKSRC)/$(DISTNAME) $(DESTDIR)$(bindir)/pca Modified: csw/mgar/pkg/pca/trunk/checksums =================================================================== --- csw/mgar/pkg/pca/trunk/checksums 2009-08-27 10:25:05 UTC (rev 6116) +++ csw/mgar/pkg/pca/trunk/checksums 2009-08-27 12:45:12 UTC (rev 6117) @@ -1,3 +1,4 @@ +4376789925fa9002d0567d739f717748 download/0001-prefer-opencsw-perl.diff 6f2f2376eba0a788795dd43d68ad32d1 download/COPYING -38c24b71551747a78de04d37d1588117 download/pca-20090723-01 +89e45905df6a36cf740a886fec2fafc9 download/pca-20090827-01 12de68ff8f67b4bb8b095e5646402208 download/pca.conf Added: csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff =================================================================== --- csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff (rev 0) +++ csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff 2009-08-27 12:45:12 UTC (rev 6117) @@ -0,0 +1,10 @@ +--- pca.orig/pca 2009-08-27 14:19:12.482759685 +0200 ++++ pca.patched/pca 2009-08-27 14:19:43.651239697 +0200 +@@ -1,6 +1,6 @@ + #!/bin/sh + #! -*- perl -*- +-eval 'exec perl -x -w $0 ${1+"$@"}' ++eval 'PATH=/opt/csw/bin:$PATH exec perl -x -w $0 ${1+"$@"}' + if 0; + + # PCA - Patch Check Advanced 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 Aug 27 15:18:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 13:18:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6118] csw/mgar/pkg/pca/trunk/Makefile Message-ID: Revision: 6118 http://gar.svn.sourceforge.net/gar/?rev=6118&view=rev Author: dmichelsen Date: 2009-08-27 13:18:32 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pca: Fix patching Modified Paths: -------------- csw/mgar/pkg/pca/trunk/Makefile Modified: csw/mgar/pkg/pca/trunk/Makefile =================================================================== --- csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 12:45:12 UTC (rev 6117) +++ csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 13:18:32 UTC (rev 6118) @@ -39,12 +39,12 @@ include gar/category.mk post-extract-modulated: - @gln -s $(DISTNAME) $(WORKSRC)/pca + @mv $(WORKSRC)/$(DISTNAME) $(WORKSRC)/pca @$(MAKECOOKIE) install-custom: @ginstall -d $(DESTDIR)$(bindir) - @ginstall $(WORKSRC)/$(DISTNAME) $(DESTDIR)$(bindir)/pca + @ginstall $(WORKSRC)/pca $(DESTDIR)$(bindir)/pca @ginstall -d $(DESTDIR)$(mandir)/man8 - @pod2man --section=8 $(WORKSRC)/$(DISTNAME) > $(DESTDIR)$(mandir)/man8/pca.8 + @pod2man --section=8 $(WORKSRC)/pca > $(DESTDIR)$(mandir)/man8/pca.8 @$(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 Aug 27 16:27:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 14:27:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[6119] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 6119 http://gar.svn.sourceforge.net/gar/?rev=6119&view=rev Author: dmichelsen Date: 2009-08-27 14:27:34 +0000 (Thu, 27 Aug 2009) Log Message: ----------- mGAR v2: Warn if specific SPKG_ variables have not been defined 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-08-27 13:18:32 UTC (rev 6118) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 14:27:34 UTC (rev 6119) @@ -127,13 +127,22 @@ # 3. There is a svn binary, but not everything was committed properly -> UNCOMMITTED # 4. There is a svn binary and everything was committed -> r +ifndef SPKG_PACKAGER + $(warning Please set SPKG_PACKAGER in your .garrc file to your name) + SPKG_PACKAGER = Unknown +endif + +ifndef SPKG_EMAIL + $(warning Please set SPKG_EMAIL in your .garrc file to your email address) + SPKG_EMAIL = Unknown +endif + + SPKG_DESC ?= $(DESCRIPTION) SPKG_VERSION ?= $(GARVERSION) SPKG_CATEGORY ?= application SPKG_SOURCEURL ?= $(firstword $(MASTER_SITES)) -SPKG_PACKAGER ?= Unknown SPKG_VENDOR ?= $(SPKG_SOURCEURL) packaged for CSW by $(SPKG_PACKAGER) -SPKG_EMAIL ?= Unknown SPKG_PSTAMP ?= $(LOGNAME)@$(shell hostname)-$(call _REVISION)-$(shell date '+%Y%m%d%H%M%S') SPKG_BASEDIR ?= $(prefix) SPKG_CLASSES ?= none @@ -141,7 +150,7 @@ SPKG_SPOOLROOT ?= $(DESTROOT) SPKG_SPOOLDIR ?= $(SPKG_SPOOLROOT)/spool.$(GAROSREL)-$(GARCH) -SPKG_EXPORT ?= $(WORKDIR) +SPKG_EXPORT ?= $(HOME)/staging/build-$(shell date '+%d.%b.%Y') SPKG_PKGROOT ?= $(PKGROOT) SPKG_PKGBASE ?= $(PKGROOT) SPKG_WORKDIR ?= $(CURDIR)/$(WORKDIR) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 17:21:03 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 15:21:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[6120] csw/mgar/pkg/pyantlrrt/trunk/Makefile Message-ID: Revision: 6120 http://gar.svn.sourceforge.net/gar/?rev=6120&view=rev Author: wahwah Date: 2009-08-27 15:21:03 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pyantlrrt: Added the use of cswpycompile Modified Paths: -------------- csw/mgar/pkg/pyantlrrt/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/pyantlrrt/trunk/Makefile Modified: csw/mgar/pkg/pyantlrrt/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 14:27:34 UTC (rev 6119) +++ csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 15:21:03 UTC (rev 6120) @@ -1,3 +1,7 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = pyantlrrt GARVERSION = 3.1.1 CATEGORIES = lib @@ -12,11 +16,17 @@ WORKSRC = $(WORKDIR)/antlr_python_runtime-$(GARVERSION) -# We define upstream file regex so we can be notifed of new upstream software release +REQUIRED_PKGS = CSWcswclassutils CSWpython CSWpython-rt + UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +SPKG_CLASSES = none cswpycompile ARCHALL = 1 +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~/.*\.py$$$$/ { $$$$2 = "pycompile" } \ + { print }' + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py @@ -25,4 +35,8 @@ TEST_SCRIPTS = +post-install-modulated: + gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; + @$(MAKECOOKIE) + include gar/category.mk Property changes on: csw/mgar/pkg/pyantlrrt/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 17:45:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 15:45:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6121] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6121 http://gar.svn.sourceforge.net/gar/?rev=6121&view=rev Author: wahwah Date: 2009-08-27 15:45:31 +0000 (Thu, 27 Aug 2009) Log Message: ----------- wxwidgets: Different options for different Solaris versions. Unicode for Solaris 10. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-27 15:21:03 UTC (rev 6120) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-27 15:45:31 UTC (rev 6121) @@ -61,8 +61,18 @@ CATALOGNAME_CSWwxwidgetsgtk2 = wxwidgets_gtk2 TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex -CONFIGURE_ARGS += --enable-unicode --with-opengl +CONFIGURE_ARGS += --with-gtk=2 +CONFIGURE_ARGS += --with-gtk-prefix=/opt/csw +CONFIGURE_ARGS += --without-regex +CONFIGURE_ARGS += --with-opengl +# Unicode-enabled build on Solaris 8 fails with: +# "./src/common/wxchar.cpp", line 1693: Error: The function "vswscanf" must have +# a prototype. +# Building Unicode support for Solaris 9 and 10 only. +CONFIGURE_ARGS_5.8 = --disable-unicode +CONFIGURE_ARGS_5.9 = --enable-unicode +CONFIGURE_ARGS_5.10 = --enable-unicode +CONFIGURE_ARGS += $(CONFIGURE_ARGS_$(GAROSREL)) EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt EXTRA_INC = /opt/csw/X11/include /usr/X11/include /usr/openwin/share/include EXTRA_LIB = /opt/csw/X11/lib 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 Aug 27 17:58:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 15:58:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[6122] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 6122 http://gar.svn.sourceforge.net/gar/?rev=6122&view=rev Author: dmichelsen Date: 2009-08-27 15:58:36 +0000 (Thu, 27 Aug 2009) Log Message: ----------- mGAR v2: Make sure all package descriptions are unique. This fixes Trac Ticket #5 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-08-27 15:45:31 UTC (rev 6121) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 15:58:36 UTC (rev 6122) @@ -452,6 +452,14 @@ $(if $($(1)_$(2)),$($(1)_$(2)),$($(1))) endef +# Make sure every producable package contains specific descriptions. +# We explicitly ignore NOPACKAGE here to disallow circumventing the check. +$(foreach P,$(SPKG_SPECS),\ + $(foreach Q,$(filter-out $P,$(SPKG_SPECS)),\ + $(if $(shell if test "$(SPKG_DESC_$P)" = "$(SPKG_DESC_$Q)"; then echo ERROR; fi),\ + $(error The package descriptions for $P and $Q are identical, please make sure all package descriptions are unique by setting SPKG_DESC_ for each package) \ +))) + .PRECIOUS: $(WORKDIR)/%.pkginfo $(WORKDIR)/%.pkginfo: $(WORKDIR) $(_DBG)(echo "PKG=$*"; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 18:18:29 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 16:18:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6123] csw/mgar/pkg/urxvt/trunk Message-ID: Revision: 6123 http://gar.svn.sourceforge.net/gar/?rev=6123&view=rev Author: wahwah Date: 2009-08-27 16:18:29 +0000 (Thu, 27 Aug 2009) Log Message: ----------- urxvt: Removed static gspec Modified Paths: -------------- csw/mgar/pkg/urxvt/trunk/Makefile csw/mgar/pkg/urxvt/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec Modified: csw/mgar/pkg/urxvt/trunk/Makefile =================================================================== --- csw/mgar/pkg/urxvt/trunk/Makefile 2009-08-27 15:58:36 UTC (rev 6122) +++ csw/mgar/pkg/urxvt/trunk/Makefile 2009-08-27 16:18:29 UTC (rev 6123) @@ -20,15 +20,14 @@ MASTER_SITES = http://dist.schmorp.de/rxvt-unicode/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWurxvt,) -PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris8.patch +# PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris8.patch -# We define upstream file regex so we can be notifed of new upstream software -# release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 - SPKG_SOURCEURL = http://software.schmorp.de/pkg/rxvt-unicode.html +PACKAGES = CSWurxvt +CATALOGNAME_CSWurxvt = urxvt + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-perl Modified: csw/mgar/pkg/urxvt/trunk/checksums =================================================================== --- csw/mgar/pkg/urxvt/trunk/checksums 2009-08-27 15:58:36 UTC (rev 6122) +++ csw/mgar/pkg/urxvt/trunk/checksums 2009-08-27 16:18:29 UTC (rev 6123) @@ -1,3 +1 @@ 4cb9330e99fc0b0b05cebf3581557dd8 download/rxvt-unicode-9.06.tar.bz2 -c108ec3aafeb40526dfe1868937f9030 download/CSWurxvt.gspec -cd4459aa4a0b72cb11d9c772eb553863 download/rxvt-unicode-9.06-solaris8.patch Deleted: csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec =================================================================== --- csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec 2009-08-27 15:58:36 UTC (rev 6122) +++ csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec 2009-08-27 16:18:29 UTC (rev 6123) @@ -1,4 +0,0 @@ -%var bitname urxvt -%var pkgname CSWurxvt -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 18:37:21 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 16:37:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6124] csw/mgar/pkg/pyantlrrt/trunk/Makefile Message-ID: Revision: 6124 http://gar.svn.sourceforge.net/gar/?rev=6124&view=rev Author: wahwah Date: 2009-08-27 16:37:21 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pyantlrrt: Adding a build dependency Modified Paths: -------------- csw/mgar/pkg/pyantlrrt/trunk/Makefile Modified: csw/mgar/pkg/pyantlrrt/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 16:18:29 UTC (rev 6123) +++ csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 16:37:21 UTC (rev 6124) @@ -17,6 +17,7 @@ WORKSRC = $(WORKDIR)/antlr_python_runtime-$(GARVERSION) REQUIRED_PKGS = CSWcswclassutils CSWpython CSWpython-rt +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWpysetuptools 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 Thu Aug 27 22:04:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 20:04:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[6125] csw/mgar/gar/v2 Message-ID: Revision: 6125 http://gar.svn.sourceforge.net/gar/?rev=6125&view=rev Author: dmichelsen Date: 2009-08-27 20:04:39 +0000 (Thu, 27 Aug 2009) Log Message: ----------- mGAR v2: Update CSWcswclassutils support in GAR to automatically rename config files so the default always ends up in .CSW Modified Paths: -------------- csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-27 16:37:21 UTC (rev 6124) +++ csw/mgar/gar/v2/gar.mk 2009-08-27 20:04:39 UTC (rev 6125) @@ -597,7 +597,7 @@ # has not, so we use this one for appending. -_PAX_ARGS = $(_INC_EXT_RULE) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) +_PAX_ARGS = $(_INC_EXT_RULE) $(_EXTRA_PAX_ARGS) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) # The basic merge merges the compiles for all ISAs on the current architecture merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(COMPILE_ELISP),compile-elisp) $(if $(NOSOURCEPACKAGE),,merge-src) post-merge Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 16:37:21 UTC (rev 6124) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 20:04:39 UTC (rev 6125) @@ -168,12 +168,15 @@ # - set class for all config files ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP),) _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,$(SAMPLECONF:%.CSW=%),$$F[1] = "cswsampleconf" if ( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ + $(foreach FILE,$(PRESERVECONF:%.CSW=%),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils +# Make sure the configuration files always have a .CSW suffix and rename the +# configuration files to this if necessary during merge. +_EXTRA_PAX_ARGS += $(foreach FILE,$(SAMPLECONF:%.CSW=%) $(PRESERVECONF:%.CSW=%),-s ",^\.\($(FILE)\)$$,.\1.CSW,p") endif PKGGET_DESTDIR ?= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Aug 27 23:49:38 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 27 Aug 2009 21:49:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[6126] csw/mgar/pkg/firefox/branches/firefox3-packaging Message-ID: Revision: 6126 http://gar.svn.sourceforge.net/gar/?rev=6126&view=rev Author: wbonnet Date: 2009-08-27 21:49:38 +0000 (Thu, 27 Aug 2009) Log Message: ----------- Add patch for Solaris 8. Test if version is solaris 8, if yes, add /usr/lib/lwp to LD_LIBRARY_PATH Modified Paths: -------------- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums Added Paths: ----------- csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-27 20:04:39 UTC (rev 6125) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-27 21:49:38 UTC (rev 6126) @@ -1,5 +1,5 @@ GARNAME = firefox -GARVERSION = 3.0.12 +GARVERSION = 3.0.13 CATEGORIES = x11 DISTNAME = $(GARNAME) Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-27 20:04:39 UTC (rev 6125) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-27 21:49:38 UTC (rev 6126) @@ -3,7 +3,7 @@ 45bba282258a321e5e4f73a742bcc31b download/autoconf.mk.in.diff c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff -b509f7c05e9566ed290e2c098316c7c3 download/firefox-3.0.11-source.tar.bz2 +040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff 18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff 1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff Added: csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff (rev 0) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff 2009-08-27 21:49:38 UTC (rev 6126) @@ -0,0 +1,15 @@ +diff --speed-large-files --minimal -Nru firefox.orig/browser/app/firefox firefox/browser/app/firefox +--- firefox.orig/browser/app/firefox 2009-08-27 23:43:31.266507053 +0200 ++++ firefox/browser/app/firefox 2009-08-27 23:44:53.015182925 +0200 +@@ -54,6 +54,11 @@ + + moz_libdir=/opt/csw/mozilla/firefox/lib + ++if [ "`uname -r`" = "5.8" ] ; then ++ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp ++ LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++fi ++ + # Use run-mozilla.sh in the current dir if it exists + # If not, then start resolving symlinks until we find run-mozilla.sh + found=0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From d_pocock at users.sourceforge.net Fri Aug 28 13:29:29 2009 From: d_pocock at users.sourceforge.net (d_pocock at users.sourceforge.net) Date: Fri, 28 Aug 2009 11:29:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6127] csw/mgar/pkg Message-ID: Revision: 6127 http://gar.svn.sourceforge.net/gar/?rev=6127&view=rev Author: d_pocock Date: 2009-08-28 11:29:28 +0000 (Fri, 28 Aug 2009) Log Message: ----------- libconfuse: initial commit Added Paths: ----------- csw/mgar/pkg/libconfuse/ csw/mgar/pkg/libconfuse/branches/ csw/mgar/pkg/libconfuse/tags/ csw/mgar/pkg/libconfuse/trunk/ csw/mgar/pkg/libconfuse/trunk/Makefile csw/mgar/pkg/libconfuse/trunk/checksums csw/mgar/pkg/libconfuse/trunk/files/ Property changes on: csw/mgar/pkg/libconfuse/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/libconfuse/trunk/Makefile =================================================================== --- csw/mgar/pkg/libconfuse/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libconfuse/trunk/Makefile 2009-08-28 11:29:28 UTC (rev 6127) @@ -0,0 +1,41 @@ +GARNAME = libconfuse +GARVERSION = 2.6 +CATEGORIES = lib + +# For libConfuse 2.6, the test suite doesn't compile cleanly on Solaris, +# so we skip it. This should be re-assessed with each new release +# from upstream. Proposed fixes for the test suite to be submitted +# upstream. +ifeq ($(GARVERSION),2.6) +#TEST_TARGET = check +TEST_SCRIPTS = skip +test-skip: + $(DONADA) +endif + +DESCRIPTION = a configuration file parser library +define BLURB + libConfuse is a configuration file parser library, licensed under + the terms of the ISC license, and written in C. It supports sections + and (lists of) values (strings, integers, floats, booleans or other + sections), as well as some other features (such as single/double-quoted + strings, environment variable expansion, functions and nested include + statements). It makes it very easy to add configuration file capability + to a program using a simple API. +endef + +MASTER_SITES = http://bzero.se/confuse/ +DISTFILES = confuse-$(GARVERSION).tar.gz +DISTNAME = confuse-$(GARVERSION) + +# 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 = + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-shared --disable-nls + +include gar/category.mk Added: csw/mgar/pkg/libconfuse/trunk/checksums =================================================================== --- csw/mgar/pkg/libconfuse/trunk/checksums (rev 0) +++ csw/mgar/pkg/libconfuse/trunk/checksums 2009-08-28 11:29:28 UTC (rev 6127) @@ -0,0 +1 @@ +0e883d66f0f58fc33585b430c652aa30 download/confuse-2.6.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From d_pocock at users.sourceforge.net Fri Aug 28 16:37:55 2009 From: d_pocock at users.sourceforge.net (d_pocock at users.sourceforge.net) Date: Fri, 28 Aug 2009 14:37:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6128] csw/mgar/pkg/ganglia/trunk Message-ID: Revision: 6128 http://gar.svn.sourceforge.net/gar/?rev=6128&view=rev Author: d_pocock Date: 2009-08-28 14:37:55 +0000 (Fri, 28 Aug 2009) Log Message: ----------- ganglia: Changed to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/ganglia/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/ganglia/trunk/ Property changes on: csw/mgar/pkg/ganglia/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/ganglia/trunk/Makefile =================================================================== --- csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 11:29:28 UTC (rev 6127) +++ csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 14:37:55 UTC (rev 6128) @@ -1,5 +1,5 @@ GARNAME = ganglia -GARVERSION = 3.0.4 +GARVERSION = 3.1.2 CATEGORIES = utils DESCRIPTION = A scalable distributed monitoring system @@ -14,6 +14,18 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWpackage,) +PACKAGES = CSWgangliart CSWgangliaagent + +CATALOGNAME_CSWgangliart = ganglia_rt +CATALOGNAME_CSWgangliaagent = ganglia_agent + +SPKG_DESC_CSWgangliart = Ganglia runtime libraries +SPKG_DESC_CSWgangliaagent = Ganglia performance monitoring agent gmond + +REQUIRED_PKGS_CSWgangliart = CSWexpat CSWlibconfuse CSWapache2rt +REQUIRED_PKGS_CSWgangliaagent = CSWexpat CSWlibconfuse CSWapache2rt +REQUIRED_PKGS_CSWgangliaagent += CSWgangliart + # We define upstream file regex so we can be notifed of new upstream software release UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=43021 UPSTREAM_USE_SF = 1 @@ -21,8 +33,16 @@ # This is attachment #45 from Ganglia bug # http://bugzilla.ganglia.info/cgi-bin/bugzilla/show_bug.cgi?id=77 -PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris-cc.patch +#PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris-cc.patch -CONFIGURE_ARGS = $(DIRPATHS) --with-gmetad +CONFIGURE_ARGS = $(DIRPATHS) +# Don't build gmetad (not tested yet on Solaris, more deps required to build) +CONFIGURE_ARGS += --without-gmetad + +# Reduce dependencies, no gettext: +CONFIGURE_ARGS += --disable-nls + +PKGFILES_CSWgangliart = $(libdir)/libganglia.* + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From d_pocock at users.sourceforge.net Fri Aug 28 19:27:31 2009 From: d_pocock at users.sourceforge.net (d_pocock at users.sourceforge.net) Date: Fri, 28 Aug 2009 17:27:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6129] csw/mgar/pkg/ganglia/trunk/Makefile Message-ID: Revision: 6129 http://gar.svn.sourceforge.net/gar/?rev=6129&view=rev Author: d_pocock Date: 2009-08-28 17:27:31 +0000 (Fri, 28 Aug 2009) Log Message: ----------- Update for Ganglia 3.1.2, split files across multiple packages, only build library and agent packages for now Modified Paths: -------------- csw/mgar/pkg/ganglia/trunk/Makefile Modified: csw/mgar/pkg/ganglia/trunk/Makefile =================================================================== --- csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 14:37:55 UTC (rev 6128) +++ csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 17:27:31 UTC (rev 6129) @@ -12,16 +12,20 @@ SF_PROJ = ganglia MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWpackage,) +#DISTFILES += $(call admfiles,CSWpackage,) -PACKAGES = CSWgangliart CSWgangliaagent +PACKAGES = CSWgangliaagent CSWgangliart +CATALOGNAME_CSWganglia = ganglia CATALOGNAME_CSWgangliart = ganglia_rt CATALOGNAME_CSWgangliaagent = ganglia_agent +SPKG_DESC_CSWganglia = Dummy package SPKG_DESC_CSWgangliart = Ganglia runtime libraries SPKG_DESC_CSWgangliaagent = Ganglia performance monitoring agent gmond +PREREQUISITE_PKGS = CSWexpat CSWlibconfuse CSWapache2rt + REQUIRED_PKGS_CSWgangliart = CSWexpat CSWlibconfuse CSWapache2rt REQUIRED_PKGS_CSWgangliaagent = CSWexpat CSWlibconfuse CSWapache2rt REQUIRED_PKGS_CSWgangliaagent += CSWgangliart @@ -43,6 +47,18 @@ # Reduce dependencies, no gettext: CONFIGURE_ARGS += --disable-nls +# For Ganglia 3.1.2, the test suite doesn't compile cleanly on Solaris, +# so we skip it. This should be re-assessed with each new release +# from upstream. Proposed fixes for the test suite to be submitted +# upstream. +ifeq ($(GARVERSION),3.1.2) +#TEST_TARGET = check +TEST_SCRIPTS = skip +test-skip: + $(DONADA) +endif + +PKGFILES_CSWganglia = PKGFILES_CSWgangliart = $(libdir)/libganglia.* 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 Fri Aug 28 20:59:55 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 28 Aug 2009 18:59:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6130] csw/mgar/pkg/pygtk/trunk Message-ID: Revision: 6130 http://gar.svn.sourceforge.net/gar/?rev=6130&view=rev Author: valholla Date: 2009-08-28 18:59:55 +0000 (Fri, 28 Aug 2009) Log Message: ----------- update configure_args Modified Paths: -------------- csw/mgar/pkg/pygtk/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/pygtk/trunk/ Property changes on: csw/mgar/pkg/pygtk/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/pygtk/trunk/Makefile =================================================================== --- csw/mgar/pkg/pygtk/trunk/Makefile 2009-08-28 17:27:31 UTC (rev 6129) +++ csw/mgar/pkg/pygtk/trunk/Makefile 2009-08-28 18:59:55 UTC (rev 6130) @@ -32,8 +32,10 @@ PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig EXTRA_EXPORTS = PKG_CONFIG_PATH +CONFIGURE_ARGS = $(DIRPATHS) + TEST_TARGET = check -TEST_SCRIPTS = +#TEST_SCRIPTS = include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Aug 28 21:16:31 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 19:16:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6131] csw/mgar/gar/v2-skayser Message-ID: Revision: 6131 http://gar.svn.sourceforge.net/gar/?rev=6131&view=rev Author: skayser Date: 2009-08-28 19:16:30 +0000 (Fri, 28 Aug 2009) Log Message: ----------- gar/v2-skayser: move .pyc/.pyo exclude logic to gar.mk, add TEST_SCRIPTS for python category Modified Paths: -------------- csw/mgar/gar/v2-skayser/categories/python/category.mk csw/mgar/gar/v2-skayser/gar.mk Modified: csw/mgar/gar/v2-skayser/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-28 18:59:55 UTC (rev 6130) +++ csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-28 19:16:30 UTC (rev 6131) @@ -1,13 +1,12 @@ # Add a dependency to CSWpython _EXTRA_GAR_PKGS += CSWpython -# Put PYCOMPILE in here for now and let gar.pkg.mk handle the usual -# cswclassutils stuff. -PYCOMPILE = .*\.py +# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} +# files. Only thing we explicitly exclude here are the egg-info files. +# gar.pkg.mk handles the usual cswclassutils stuff. -# Could we have "setup.py install" just _not_ compile .py{c,o} files -# in the first place? -_MERGE_EXCLUDE_CATEGORY = .*\.pyo .*\.pyc .*\.egg-info.* +PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py +_MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* # Haven't seen a python module with a configure phase so far CONFIGURE_SCRIPTS ?= @@ -16,5 +15,6 @@ BUILD_SCRIPTS ?= $(WORKSRC)/setup.py INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) +TEST_SCRIPTS ?= $(WORKSRC)/setup.py include gar/gar.mk Modified: csw/mgar/gar/v2-skayser/gar.mk =================================================================== --- csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 18:59:55 UTC (rev 6130) +++ csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 19:16:30 UTC (rev 6131) @@ -559,11 +559,18 @@ # This can be defined in category.mk MERGE_EXCLUDE_CATEGORY ?= $(_MERGE_EXCLUDE_CATEGORY) +# Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) +# during the merge phase. +ifneq ($(PYCOMPILE),) +MERGE_EXCLUDE_PYCOMPILE += $(addsuffix c,$(PYCOMPILE)) +MERGE_EXCLUDE_PYCOMPILE += $(addsuffix o,$(PYCOMPILE)) +endif + MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la MERGE_EXCLUDE_BACKUPFILES ?= .*\~ MERGE_EXCLUDE_STATICLIBS ?= $(libdir)/.*\.a -MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) +MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) $(MERGE_EXCLUDE_PYCOMPILE) # Exclude these files ifeq ($(origin MERGE_EXCLUDE_FILES_$(MODULATION)), undefined) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Aug 28 23:15:14 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 21:15:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[6132] csw/mgar/gar/v2-skayser/gar.mk Message-ID: Revision: 6132 http://gar.svn.sourceforge.net/gar/?rev=6132&view=rev Author: skayser Date: 2009-08-28 21:15:14 +0000 (Fri, 28 Aug 2009) Log Message: ----------- gar/v2-skayser: make MERGE_EXCLUDE_PYCOMPILE overridable (and fall back to an empty value) Modified Paths: -------------- csw/mgar/gar/v2-skayser/gar.mk Modified: csw/mgar/gar/v2-skayser/gar.mk =================================================================== --- csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 19:16:30 UTC (rev 6131) +++ csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 21:15:14 UTC (rev 6132) @@ -561,10 +561,7 @@ # Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) # during the merge phase. -ifneq ($(PYCOMPILE),) -MERGE_EXCLUDE_PYCOMPILE += $(addsuffix c,$(PYCOMPILE)) -MERGE_EXCLUDE_PYCOMPILE += $(addsuffix o,$(PYCOMPILE)) -endif +MERGE_EXCLUDE_PYCOMPILE ?= $(addsuffix c,$(PYCOMPILE)) $(addsuffix o,$(PYCOMPILE)) MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la 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 Aug 28 23:42:21 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 21:42:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6133] csw/mgar/gar/v2 Message-ID: Revision: 6133 http://gar.svn.sourceforge.net/gar/?rev=6133&view=rev Author: skayser Date: 2009-08-28 21:42:21 +0000 (Fri, 28 Aug 2009) Log Message: ----------- gar/v2: merged python category enhancements from v2-skayser Modified Paths: -------------- csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/gar.pkg.mk Added Paths: ----------- csw/mgar/gar/v2/categories/python/ csw/mgar/gar/v2/categories/python/category.mk Removed Paths: ------------- csw/mgar/gar/v2/categories/python/category.mk Property Changed: ---------------- csw/mgar/gar/v2/ Property changes on: csw/mgar/gar/v2 ___________________________________________________________________ Added: svn:mergeinfo + /csw/mgar/gar/v2-skayser:6087-6132 Deleted: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-28 21:15:14 UTC (rev 6132) +++ csw/mgar/gar/v2/categories/python/category.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -1,20 +0,0 @@ -# Add a dependency to CSWpython -_EXTRA_GAR_PKGS += CSWpython - -# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} -# files. Only thing we explicitly exclude here are the egg-info files. -# gar.pkg.mk handles the usual cswclassutils stuff. - -PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py -_MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* - -# Haven't seen a python module with a configure phase so far -CONFIGURE_SCRIPTS ?= - -# gar.lib.mk contains implicit targets for setup.py -BUILD_SCRIPTS ?= $(WORKSRC)/setup.py -INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py -INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) -TEST_SCRIPTS ?= $(WORKSRC)/setup.py - -include gar/gar.mk Copied: csw/mgar/gar/v2/categories/python/category.mk (from rev 6132, csw/mgar/gar/v2-skayser/categories/python/category.mk) =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk (rev 0) +++ csw/mgar/gar/v2/categories/python/category.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -0,0 +1,20 @@ +# Add a dependency to CSWpython +_EXTRA_GAR_PKGS += CSWpython + +# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} +# files. Only thing we explicitly exclude here are the egg-info files. +# gar.pkg.mk handles the usual cswclassutils stuff. + +PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py +_MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* + +# Haven't seen a python module with a configure phase so far +CONFIGURE_SCRIPTS ?= + +# gar.lib.mk contains implicit targets for setup.py +BUILD_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) +TEST_SCRIPTS ?= $(WORKSRC)/setup.py + +include gar/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-28 21:15:14 UTC (rev 6132) +++ csw/mgar/gar/v2/gar.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -559,11 +559,15 @@ # This can be defined in category.mk MERGE_EXCLUDE_CATEGORY ?= $(_MERGE_EXCLUDE_CATEGORY) +# Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) +# during the merge phase. +MERGE_EXCLUDE_PYCOMPILE ?= $(addsuffix c,$(PYCOMPILE)) $(addsuffix o,$(PYCOMPILE)) + MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la MERGE_EXCLUDE_BACKUPFILES ?= .*\~ MERGE_EXCLUDE_STATICLIBS ?= $(libdir)/.*\.a -MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) +MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) $(MERGE_EXCLUDE_PYCOMPILE) # Exclude these files ifeq ($(origin MERGE_EXCLUDE_FILES_$(MODULATION)), undefined) Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-28 21:15:14 UTC (rev 6132) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -165,13 +165,15 @@ SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PRESERVECONF),$(if $(filter cswpreserveconf,$(SPKG_CLASSES)),,cswpreserveconf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(USERGROUP),$(if $(filter cswusergroup,$(SPKG_CLASSES)),,cswusergroup)) +SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PYCOMPILE),$(if $(filter cswpycompile,$(SPKG_CLASSES)),,cswpycompile)) # - set class for all config files -ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP),) +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP)$(PYCOMPILE),) _CSWCLASS_FILTER = | perl -ane '\ $(foreach FILE,$(SAMPLECONF:%.CSW=%),$$F[1] = "cswsampleconf" if ( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(PRESERVECONF:%.CSW=%),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(PYCOMPILE),$$F[1] = "cswpycompile" if( $$F[2] =~ m(^$(FILE)$$) );)\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils # Make sure the configuration files always have a .CSW suffix and rename the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 29 00:40:45 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 22:40:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6134] csw/mgar/pkg/ZSI/trunk Message-ID: Revision: 6134 http://gar.svn.sourceforge.net/gar/?rev=6134&view=rev Author: skayser Date: 2009-08-28 22:40:45 +0000 (Fri, 28 Aug 2009) Log Message: ----------- ZSI: use gar/v2 again, now that it includes the python category Modified Paths: -------------- csw/mgar/pkg/ZSI/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/ZSI/trunk/ Property changes on: csw/mgar/pkg/ZSI/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2-skayser + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/ZSI/trunk/Makefile =================================================================== --- csw/mgar/pkg/ZSI/trunk/Makefile 2009-08-28 21:42:21 UTC (rev 6133) +++ csw/mgar/pkg/ZSI/trunk/Makefile 2009-08-28 22:40:45 UTC (rev 6134) @@ -25,6 +25,7 @@ SPKG_SOURCEURL = http://pywebsvcs.sf.net/ PACKAGES = CSWpyzsi CATALOGNAME = py_zsi +ARCHALL = 1 REQUIRED_PKGS = CSWpyxml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 29 10:55:59 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 29 Aug 2009 08:55:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[6135] csw/mgar/pkg/pyyaml/trunk/Makefile Message-ID: Revision: 6135 http://gar.svn.sourceforge.net/gar/?rev=6135&view=rev Author: wahwah Date: 2009-08-29 08:55:59 +0000 (Sat, 29 Aug 2009) Log Message: ----------- pyyaml: Simplified the build file by using the python category. Enabled the test phase. Modified Paths: -------------- csw/mgar/pkg/pyyaml/trunk/Makefile Modified: csw/mgar/pkg/pyyaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-28 22:40:45 UTC (rev 6134) +++ csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-29 08:55:59 UTC (rev 6135) @@ -1,14 +1,13 @@ # Copyright 2009 OpenCSW # Distributed under the terms of the GNU General Public License v2 -# $Header: $ +# $Header$ GARNAME = pyyaml GARVERSION = 3.08 -CATEGORIES = lib +CATEGORIES = python PROJ_NAME = PyYAML -DESCRIPTION = YAML parser and emitter for Python define BLURB PyYAML is a YAML parser and emitter for the Python programming language. @@ -39,34 +38,21 @@ CATALOGNAME_CSWpyyaml = py_pyyaml CATALOGNAME_CSWpyyamlrt = py_pyyaml_rt -REQUIRED_PKGS_CSWpyyaml = CSWpython REQUIRED_PKGS_CSWpyyamlrt = CSWpython-rt CSWlibyaml -PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS = CSWpython CSWlibyaml +SPKG_DESC_CSWpyyaml = YAML parser and emitter for Python +SPKG_DESC_CSWpyyamlrt = Runtime libraries for YAML parser and emitter + ARCHALL_CSWpyyaml = 1 PKGFILES_CSWpyyamlrt = /opt/csw/lib/python/site-packages/.*\.so UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -CONFIGURE_SCRIPTS = BUILD_SCRIPTS = pyyaml -TEST_SCRIPTS = -INSTALL_SCRIPTS = pyyaml -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } \ - { print }' - build-pyyaml: (cd $(WORKSRC); $(BUILD_ENV) python setup.py --with-libyaml build) @$(MAKECOOKIE) -install-pyyaml: - (cd $(WORKSRC); $(INSTALL_ENV) python setup.py install --root=$(DESTDIR)) - @$(MAKECOOKIE) - -post-install-modulated: - gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; - @$(MAKECOOKIE) - include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 29 11:27:20 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 29 Aug 2009 09:27:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[6136] csw/mgar/pkg/wgetpaste/trunk Message-ID: Revision: 6136 http://gar.svn.sourceforge.net/gar/?rev=6136&view=rev Author: wahwah Date: 2009-08-29 09:27:20 +0000 (Sat, 29 Aug 2009) Log Message: ----------- wgetpaste: Using CSWbash. http://opencsw.org/bugtrack/view.php?id=3871 Modified Paths: -------------- csw/mgar/pkg/wgetpaste/trunk/Makefile csw/mgar/pkg/wgetpaste/trunk/checksums Added Paths: ----------- csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch Removed Paths: ------------- csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch Modified: csw/mgar/pkg/wgetpaste/trunk/Makefile =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/Makefile 2009-08-29 08:55:59 UTC (rev 6135) +++ csw/mgar/pkg/wgetpaste/trunk/Makefile 2009-08-29 09:27:20 UTC (rev 6136) @@ -15,9 +15,10 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -REQUIRED_PKGS = CSWshutils CSWwget CSWcswclassutils +REQUIRED_PKGS = CSWshutils CSWwget CSWcswclassutils CSWbash -PATCHFILES = wgetpaste-$(GARVERSION).patch +PATCHFILES = 0001-Using-gwhoami-instead-of-whoami.patch +PATCHFILES += 0002-CSW-bash.patch ARCHALL = 1 Modified: csw/mgar/pkg/wgetpaste/trunk/checksums =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/checksums 2009-08-29 08:55:59 UTC (rev 6135) +++ csw/mgar/pkg/wgetpaste/trunk/checksums 2009-08-29 09:27:20 UTC (rev 6136) @@ -1,3 +1,4 @@ -8d328f55faaa8eee181c9083f2c0525b download/wgetpaste-2.13.patch +0a96eee7e51fe1b7e9054dd302ca0508 download/0001-Using-gwhoami-instead-of-whoami.patch +4ce4101e5be2ea7af5b5ea18be7f8693 download/0002-CSW-bash.patch a341c778d745b0a7ad11163a4a2c1ea9 download/wgetpaste-2.13.tar.bz2 67425820c0281729a7f63e3e3339c49f download/wgetpaste.conf Added: csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch (rev 0) +++ csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch 2009-08-29 09:27:20 UTC (rev 6136) @@ -0,0 +1,57 @@ +From c98a64ed5f18a50d9d249bd4bd0916374272a597 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Sat, 29 Aug 2009 11:20:28 +0200 +Subject: [PATCH 1/2] Using gwhoami instead of whoami + +--- + wgetpaste | 10 +++++----- + 1 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/wgetpaste b/wgetpaste +index d4addbd..9b40432 100755 +--- a/wgetpaste ++++ b/wgetpaste +@@ -99,7 +99,7 @@ notreadable() { + noxclip() { + cat <&2 + Could not find xclip on your system. In order to use --x$1 you must either +-emerge x11-misc/xclip or define x_$1() globally in /etc/wgetpaste.conf or ++emerge x11-misc/xclip or define x_$1() globally in /etc/opt/csw/wgetpaste.conf/g or + per user in ~/.wgetpaste.conf to use another program (such as e.g. xcut or + klipper) to $2 your clipboard. + +@@ -288,11 +288,11 @@ Options: + --debug be *very* verbose (implies -v) + + -h, --help show this help +- -g, --ignore-configs ignore /etc/wgetpaste.conf, ~/.wgetpaste.conf etc. ++ -g, --ignore-configs ignore /etc/opt/csw/wgetpaste.conf/g, ~/.wgetpaste.conf etc. + --version show version information + + Defaults (DEFAULT_{NICK,SERVICE,LANGUAGE,EXPIRATION}[_\${SERVICE}]) can be overridden +-globally in /etc/wgetpaste.conf or /etc/wgetpaste.d/*.conf or per user in any of ++globally in /etc/opt/csw/wgetpaste.conf/g or /etc/wgetpaste.d/*.conf or per user in any of + ~/.wgetpaste.conf or ~/.wgetpaste.d/*.conf. + EOF + } +@@ -568,7 +568,7 @@ load_configs() { + if [[ ! $IGNORECONFIGS ]]; then + # compatibility code + local f deprecated= +- for f in {/etc/,~/.}wgetpaste{.d/*.bash,}; do ++ for f in {/etc/,/etc/opt/csw/,~/.}wgetpaste{.d/*.bash,}; do + if [[ -f $f ]]; then + if [[ -z $deprecated ]]; then + echo "The config files for wgetpaste have changed to *.conf.$N" >&2 +@@ -589,7 +589,7 @@ load_configs() { + } + load_configs + [[ $SERVICESET ]] && verifyservice "$SERVICESET" && SERVICE=$(escape "$SERVICESET") +-DEFAULT_NICK=${DEFAULT_NICK:-$(whoami)} || die "whoami failed" ++DEFAULT_NICK=${DEFAULT_NICK:-$(gwhoami)} || die "whoami failed" + DEFAULT_SERVICE=${DEFAULT_SERVICE:-dpaste} + DEFAULT_LANGUAGE=${DEFAULT_LANGUAGE:-Plain Text} + DEFAULT_EXPIRATION=${DEFAULT_EXPIRATION:-1 month} +-- +1.6.3.2 + Added: csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch (rev 0) +++ csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch 2009-08-29 09:27:20 UTC (rev 6136) @@ -0,0 +1,22 @@ +From f40b9334fad600f6270280a7f3b4e769dabfb9e2 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Sat, 29 Aug 2009 11:24:37 +0200 +Subject: [PATCH 2/2] CSW bash + +--- + wgetpaste | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/wgetpaste b/wgetpaste +index 9b40432..f536fbc 100755 +--- a/wgetpaste ++++ b/wgetpaste +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!/opt/csw/bin/bash + # A Script that automates pasting to a number of pastebin services + # relying only on bash, sed, coreutils (mktemp/sort/tr/wc/whoami/tee) and wget + # Copyright (c) 2007 Bo ?rsted Andresen +-- +1.6.3.2 + Deleted: csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch 2009-08-29 08:55:59 UTC (rev 6135) +++ csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch 2009-08-29 09:27:20 UTC (rev 6136) @@ -1,44 +0,0 @@ -diff -ru wgetpaste-2.13.orig/wgetpaste wgetpaste-2.13/wgetpaste ---- wgetpaste-2.13.orig/wgetpaste 2009-07-28 14:38:30.336410148 +0100 -+++ wgetpaste-2.13/wgetpaste 2009-07-28 18:28:16.513748108 +0100 -@@ -99,7 +99,7 @@ - noxclip() { - cat <&2 - Could not find xclip on your system. In order to use --x$1 you must either --emerge x11-misc/xclip or define x_$1() globally in /etc/wgetpaste.conf or -+emerge x11-misc/xclip or define x_$1() globally in /etc/opt/csw/wgetpaste.conf/g or - per user in ~/.wgetpaste.conf to use another program (such as e.g. xcut or - klipper) to $2 your clipboard. - -@@ -288,11 +288,11 @@ - --debug be *very* verbose (implies -v) - - -h, --help show this help -- -g, --ignore-configs ignore /etc/wgetpaste.conf, ~/.wgetpaste.conf etc. -+ -g, --ignore-configs ignore /etc/opt/csw/wgetpaste.conf/g, ~/.wgetpaste.conf etc. - --version show version information - - Defaults (DEFAULT_{NICK,SERVICE,LANGUAGE,EXPIRATION}[_\${SERVICE}]) can be overridden --globally in /etc/wgetpaste.conf or /etc/wgetpaste.d/*.conf or per user in any of -+globally in /etc/opt/csw/wgetpaste.conf/g or /etc/wgetpaste.d/*.conf or per user in any of - ~/.wgetpaste.conf or ~/.wgetpaste.d/*.conf. - EOF - } -@@ -568,7 +568,7 @@ - if [[ ! $IGNORECONFIGS ]]; then - # compatibility code - local f deprecated= -- for f in {/etc/,~/.}wgetpaste{.d/*.bash,}; do -+ for f in {/etc/,/etc/opt/csw/,~/.}wgetpaste{.d/*.bash,}; do - if [[ -f $f ]]; then - if [[ -z $deprecated ]]; then - echo "The config files for wgetpaste have changed to *.conf.$N" >&2 -@@ -589,7 +589,7 @@ - } - load_configs - [[ $SERVICESET ]] && verifyservice "$SERVICESET" && SERVICE=$(escape "$SERVICESET") --DEFAULT_NICK=${DEFAULT_NICK:-$(whoami)} || die "whoami failed" -+DEFAULT_NICK=${DEFAULT_NICK:-$(gwhoami)} || die "whoami failed" - DEFAULT_SERVICE=${DEFAULT_SERVICE:-dpaste} - DEFAULT_LANGUAGE=${DEFAULT_LANGUAGE:-Plain Text} - DEFAULT_EXPIRATION=${DEFAULT_EXPIRATION:-1 month} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 29 11:50:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 29 Aug 2009 09:50:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6137] csw/mgar/pkg/minimalsmf/trunk Message-ID: Revision: 6137 http://gar.svn.sourceforge.net/gar/?rev=6137&view=rev Author: wahwah Date: 2009-08-29 09:50:32 +0000 (Sat, 29 Aug 2009) Log Message: ----------- minimalsmf: Simplified build, using INITSMF Modified Paths: -------------- csw/mgar/pkg/minimalsmf/trunk/Makefile csw/mgar/pkg/minimalsmf/trunk/checksums csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty Modified: csw/mgar/pkg/minimalsmf/trunk/Makefile =================================================================== --- csw/mgar/pkg/minimalsmf/trunk/Makefile 2009-08-29 09:27:20 UTC (rev 6136) +++ csw/mgar/pkg/minimalsmf/trunk/Makefile 2009-08-29 09:50:32 UTC (rev 6137) @@ -1,5 +1,5 @@ GARNAME = minimalsmf -GARVERSION = 0.2 +GARVERSION = 0.3 CATEGORIES = server DESCRIPTION = A test of an SMF-enabled package and mGAR SMF support @@ -21,20 +21,19 @@ DISTFILES = sleeping-beauty DISTFILES += csw$(GARNAME) -REQUIRED_PKGS = CSWcswclassutils -SPKG_CLASSES = none cswinitsmf +INITSMF = /etc/opt/csw/init.d/cswminimalsmf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswminimalsmf$$$$/ { $$$$2 = "cswinitsmf" } { print }' - CONFIGURE_SCRIPTS = BUILD_SCRIPTS = TEST_SCRIPTS = INSTALL_SCRIPTS = $(GARNAME) install-$(GARNAME): - ginstall -d $(DESTDIR) + # Installing the executable ginstall -d $(DESTDIR)$(bindir) - ginstall -m 755 files/sleeping-beauty $(DESTDIR)$(bindir) + ginstall -m 755 $(FILEDIR)/sleeping-beauty $(DESTDIR)$(bindir) + # Installing the startup script. It uses init.d for Solaris 8 and 9, and + # SMF for Solaris 10. ginstall -d $(DESTDIR)/etc/opt/csw/init.d ginstall -m 755 $(FILEDIR)/csw$(GARNAME) \ $(DESTDIR)/etc/opt/csw/init.d/csw$(GARNAME) Modified: csw/mgar/pkg/minimalsmf/trunk/checksums =================================================================== --- csw/mgar/pkg/minimalsmf/trunk/checksums 2009-08-29 09:27:20 UTC (rev 6136) +++ csw/mgar/pkg/minimalsmf/trunk/checksums 2009-08-29 09:50:32 UTC (rev 6137) @@ -1,2 +1,2 @@ 657ec36646cd2f066141d28cfb7db435 download/cswminimalsmf -f8f208e8dea57747241d3f997a52c8a6 download/sleeping-beauty +6b1ac1730ff32ce39f5a78e4a9f95eff download/sleeping-beauty Modified: csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty =================================================================== --- csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty 2009-08-29 09:27:20 UTC (rev 6136) +++ csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty 2009-08-29 09:50:32 UTC (rev 6137) @@ -2,6 +2,6 @@ while true do - sleep 10 + sleep 30 logger user.info "Sleeping $(date)" 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 Sat Aug 29 17:09:08 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 29 Aug 2009 15:09:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[6138] csw/mgar/gar/v2 Message-ID: Revision: 6138 http://gar.svn.sourceforge.net/gar/?rev=6138&view=rev Author: skayser Date: 2009-08-29 15:09:08 +0000 (Sat, 29 Aug 2009) Log Message: ----------- gar/v2: PYCOMPILE, move exlusion logic from python/category.mk to gar.mk Modified Paths: -------------- csw/mgar/gar/v2/categories/python/category.mk csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk 2009-08-29 09:50:32 UTC (rev 6137) +++ csw/mgar/gar/v2/categories/python/category.mk 2009-08-29 15:09:08 UTC (rev 6138) @@ -1,13 +1,14 @@ # Add a dependency to CSWpython _EXTRA_GAR_PKGS += CSWpython -# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} -# files. Only thing we explicitly exclude here are the egg-info files. -# gar.pkg.mk handles the usual cswclassutils stuff. - -PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py +# Exclude egg-info files (only needed for easy_install) _MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* +# Activate cswpycompile support to exclude .pyc and .pyo files from +# the package and compile them on installation. File exclusion is +# handled by gar.mk and cswclassutils integration by gar.pkg.mk +PYCOMPILE = 1 + # Haven't seen a python module with a configure phase so far CONFIGURE_SCRIPTS ?= Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-29 09:50:32 UTC (rev 6137) +++ csw/mgar/gar/v2/gar.mk 2009-08-29 15:09:08 UTC (rev 6138) @@ -561,7 +561,8 @@ # Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) # during the merge phase. -MERGE_EXCLUDE_PYCOMPILE ?= $(addsuffix c,$(PYCOMPILE)) $(addsuffix o,$(PYCOMPILE)) +_PYCOMPILE_FILES = /opt/csw/lib/python/site-packages/.*\.py +MERGE_EXCLUDE_PYCOMPILE ?= $(if $(PYCOMPILE), $(addsuffix c,$(_PYCOMPILE_FILES)) $(addsuffix o,$(_PYCOMPILE_FILES))) MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-29 09:50:32 UTC (rev 6137) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-29 15:09:08 UTC (rev 6138) @@ -173,7 +173,7 @@ $(foreach FILE,$(PRESERVECONF:%.CSW=%),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ - $(foreach FILE,$(PYCOMPILE),$$F[1] = "cswpycompile" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(if $(PYCOMPILE),$(foreach FILE,$(_PYCOMPILE_FILES),$$F[1] = "cswpycompile" if( $$F[2] =~ m(^$(FILE)$$) );))\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils # Make sure the configuration files always have a .CSW suffix and rename the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 29 22:01:29 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 29 Aug 2009 20:01:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6139] csw/mgar/pkg/mtr/trunk/Makefile Message-ID: Revision: 6139 http://gar.svn.sourceforge.net/gar/?rev=6139&view=rev Author: skayser Date: 2009-08-29 20:01:28 +0000 (Sat, 29 Aug 2009) Log Message: ----------- mtr: fixed the two-package-approach ... somewhat hacky Modified Paths: -------------- csw/mgar/pkg/mtr/trunk/Makefile Modified: csw/mgar/pkg/mtr/trunk/Makefile =================================================================== --- csw/mgar/pkg/mtr/trunk/Makefile 2009-08-29 15:09:08 UTC (rev 6138) +++ csw/mgar/pkg/mtr/trunk/Makefile 2009-08-29 20:01:28 UTC (rev 6139) @@ -1,7 +1,5 @@ # TODO # ---- -# * Find a way to somehow package out of the install dirs, we don't need -# merging for the two incompatible modulations/packages. # * Revisit curses autoconf detection. Maybe have a chat with upstream # as the README says that there are known, yet unsolved Solaris autoconf # recipe problems @@ -28,8 +26,22 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -REQUIRED_PKGS = CSWncurses +PACKAGES = CSWmtr CSWmtrtiny +CATALOGNAME_CSWmtr = mtr +SPKG_DESC_CSWmtr = Combined traceroute and ping utility +REQUIRED_PKGS_CSWmtr = CSWgtk2 CSWlibatk CSWpango CSWlibcairo +REQUIRED_PKGS_CSWmtr += CSWggettextrt CSWglib2 CSWncurses +REQUIRED_PKGS_CSWmtr += CSWfconfig CSWftype2 CSWzlib +INCOMPATIBLE_PKGS_CSWmtr = CSWmtrtiny +EXTRA_PKGFILES_EXCLUDED_CSWmtr = $(sbindir)/mtr-nongui + +CATALOGNAME_CSWmtrtiny = mtr_tiny +SPKG_DESC_CSWmtrtiny = Combined traceroute and ping utility (CLI only version) +REQUIRED_PKGS_CSWmtrtiny = CSWncurses +INCOMPATIBLE_PKGS_CSWmtrtiny = CSWmtr +EXTRA_PKGFILES_EXCLUDED_CSWmtrtiny = $(sbindir)/mtr-gui + # 1) Check for socklen_t via sys/socket.h (not netinet/in.h) # 2) Don't cast sin_addr to (struct in_addr), cc bails out with invalid cast PATCHFILES = gar-base.diff @@ -38,34 +50,51 @@ CONFIGURE_ARGS = $(DIRPATHS) -# Make mtr setuid so that it can access raw sockets -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~ /sbin\/mtr$$$$/ { $$$$4 = "4755" } \ - { print }' - -# We would like to have two packages: one with GUI support and one without -# GUI support. +# ------------------ BEWARE: NASTY HACK AHEAD -------------------- # +# We employ modulations to produce two mtr binaries, one with X support +# the other one without (less dependencies). We need to transform the +# name on merge so that the binaries don't clash and fiddle the correct +# binary into the proper path again on package assembly (via prototype). +# EXTRA_MODULATORS = GUI MODULATIONS_GUI = disable enable ifeq ($(GUI), disable) CONFIGURE_ARGS += --without-gtk -PACKAGES = CSWmtrtiny -CATALOGNAME = mtr_tiny -INCOMPATIBLE_PKGS = CSWmtr endif ifeq ($(GUI), enable) CONFIGURE_ARGS += --disable-gtktest -REQUIRED_PKGS += CSWgtk2 CSWlibatk CSWpango CSWlibcairo -REQUIRED_PKGS += CSWggettextrt CSWglib2 -INCOMPATIBLE_PKGS = CSWmtrtiny EXTRA_PKG_CONFIG_PATH = /opt/csw/X11/lib/pkgconfig endif -# -# /end modulations +# Rename the modulated binaries so that we can distinguish them +# Could also be done via ./configure --program-suffix, but the +# install-exec-hook for mtr doesn't honor the transformed name +# and fails. +EXTRA_PAX_ARGS_isa-sparcv8-gui-enable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-gui,p" +EXTRA_PAX_ARGS_isa-sparcv8-gui-disable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-nongui,p" +EXTRA_PAX_ARGS_isa-i386-gui-enable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-gui,p" +EXTRA_PAX_ARGS_isa-i386-gui-disable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-nongui,p" + +# Simply copy all files, EXTRA_PAX_ARGS above takes care not to overwrite the +# mtr binary on merging. +MERGE_SCRIPTS_isa-sparcv8-gui-enable = copy-all +MERGE_SCRIPTS_isa-sparcv8-gui-disable = copy-all +MERGE_SCRIPTS_isa-i386-gui-enable = copy-all +MERGE_SCRIPTS_isa-i386-gui-disable = copy-all + +# 1) Move the GUI/non-GUI binaries to their proper location +# 2) Make mtr setuid so that it can access raw sockets +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~ /^\/opt\/csw\/sbin\/mtr-/ { \ + $$$$3 = "/opt/csw/sbin/mtr=" $$$$3; \ + $$$$4 = "4755"; \ + } { print }' + +# ------------------ /BEWARE: NASTY HACK AHEAD -------------------- + include gar/category.mk # curses detection is somehow broken, ncurses.h is included but no curses This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 29 23:34:07 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 29 Aug 2009 21:34:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[6140] csw/mgar/pkg/firefox/branches Message-ID: Revision: 6140 http://gar.svn.sourceforge.net/gar/?rev=6140&view=rev Author: wbonnet Date: 2009-08-29 21:34:07 +0000 (Sat, 29 Aug 2009) Log Message: ----------- Fix patches for firefox3 under solaris 8. Move firefox2 package to maintenance branch Modified Paths: -------------- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums Added Paths: ----------- csw/mgar/pkg/firefox/branches/firefox2-maintenance/ csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-29 21:34:07 UTC (rev 6140) @@ -9,7 +9,7 @@ endef DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall +DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) @@ -48,6 +48,7 @@ PATCHFILES += solaris_lwp.h.diff PATCHFILES += nsNativeApSuportUnix.cpp.diff PATCHFILES += nsExceptionHandler.cpp.diff +PATCHFILES += SunOS5.mk.diff # pkg-config options EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig @@ -81,10 +82,13 @@ @cp $(FILEDIR)/stdbool.h $(WORK_BUILD)/memory/jemalloc @$(MAKECOOKIE) -pre-configure: +pre-configure-modulated: @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig -pre-install: +post-configure-modulated: + @gpatch -d$(WORKSRC) -p1 -F2 < download/autoconf.mk.diff + +pre-install-modulated: ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/firefox/bin/firefox . ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) @@ -94,7 +98,7 @@ ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) ( cp $(FILEDIR)/firefox.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/firefox.keys ) -post-install: +post-install-modulated: ( gfind $(WORK_INSTALL)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) ( 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/firefox -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-29 21:34:07 UTC (rev 6140) @@ -1,5 +1,7 @@ f9c7fb69080051172bd7357370731ba3 download/CSWfirefox.postinstall 6ede39c29b3672fb1fc1d8fe397a7863 download/CSWfirefox.postremove +9eaa0433fd8d1d7a3b39442b4b4c3e14 download/SunOS5.mk.diff +03e4d0e627dd508ea895c99c5e7ed184 download/autoconf.mk.diff 45bba282258a321e5e4f73a742bcc31b download/autoconf.mk.in.diff c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff Added: csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff 2009-08-29 21:34:07 UTC (rev 6140) @@ -0,0 +1,31 @@ +--- firefox.orig/config/autoconf.mk 2009-08-29 21:57:42.151999781 +0200 ++++ firefox/config/autoconf.mk 2009-08-29 22:05:33.912567245 +0200 +@@ -238,7 +238,7 @@ + + MOZ_PREF_EXTENSIONS = 1 + +-MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/usr/openwin/lib -R/usr/openwin/lib -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 ++MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 + + MOZ_ENABLE_GNOMEUI = 1 + MOZ_GNOMEUI_CFLAGS = -DORBIT2=1 -D_REENTRANT -D_PTHREADS -D__solaris__ -D_POSIX_PTHREAD_SEMANTICS -I/opt/csw/include/libgnomeui-2.0 -I/opt/csw/include/libgnome-2.0 -I/opt/csw/include/libgnomecanvas-2.0 -I/opt/csw/include/gtk-2.0 -I/opt/csw/include/libart-2.0 -I/opt/csw/include/gconf/2 -I/opt/csw/include/libbonoboui-2.0 -I/opt/csw/include/gnome-vfs-2.0 -I/opt/csw/lib/gnome-vfs-2.0/include -I/opt/csw/include/gnome-keyring-1 -I/opt/csw/include/glib-2.0 -I/opt/csw/lib/glib-2.0/include -I/opt/csw/include/orbit-2.0 -I/opt/csw/include/libbonobo-2.0 -I/opt/csw/include/bonobo-activation-2.0 -I/opt/csw/include/pango-1.0 -I/opt/csw/include/freetype2 -I/opt/csw/include -I/opt/csw/lib/gtk-2.0/include -I/opt/csw/include/atk-1.0 -I/opt/csw/include/cairo -I/opt/csw/include/pixman-1 -I/opt/csw/include/libpng12 -I/opt/csw/include/libxml2 -I/opt/csw/X11/include +@@ -270,7 +270,7 @@ + + CROSS_COMPILE = + +-OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include -I/usr/openwin/include ++OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + OS_CFLAGS = $(OS_CPPFLAGS) -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmieee -xstrconst -xbuiltin=%none -mt + OS_CXXFLAGS = $(OS_CPPFLAGS) -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmieee -xbuiltin=%none -features=tmplife -norunpath -mt + OS_LDFLAGS = -lpthread -M /usr/lib/ld/map.noexstk -xildoff -z lazyload -z combreloc -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -z ignore -R '$$ORIGIN:$$ORIGIN/..' +@@ -297,8 +297,8 @@ + PROFILE_USE_CFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + PROFILE_USE_LDFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + +-XCFLAGS = -I/usr/openwin/include +-XLDFLAGS = -L/usr/openwin/lib -R/usr/openwin/lib ++XCFLAGS = -I/opt/csw/X11/include ++XLDFLAGS = -L/opt/csw/X11/lib -R/opt/csw/X11/lib + XLIBS = -lX11 -lsocket -lnsl + + WIN_TOP_SRC = Modified: csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile 2009-08-29 21:34:07 UTC (rev 6140) @@ -90,6 +90,7 @@ EXTRA_CONFIGURE_EXPORTS = XCFLAGS LD # LDFLAGS+=-L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 +LDFLAGS += -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 # PERL=/opt/csw/bin/perl # export PERL Modified: csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums 2009-08-29 21:34:07 UTC (rev 6140) @@ -9,7 +9,6 @@ 463d0bd49aa3726c1d9e19c18b38ce70 download/configure.diff f562a935a0fb2c5ad38f95af114d0a49 download/nsPluginsDirUnix.cpp.diff 0589ca8ad5f6744f573bb8ce0ba71d78 download/js.src.configure.diff -b940bc6f09956cb97b5a68f0fe9b73a6 download/SunOS5.mk.diff 3ad7b67c350157d9b54270139e36c107 download/lowpbe.c.diff 969c809ca9889cc8292ff50220b46efd download/softoken.config.mk.diff 1178db1603e82d8bfefefa200d7e7ce7 download/fipsaudt.c.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 29 23:37:41 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 29 Aug 2009 21:37:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6141] csw/mgar/pkg/firefox/trunk Message-ID: Revision: 6141 http://gar.svn.sourceforge.net/gar/?rev=6141&view=rev Author: wbonnet Date: 2009-08-29 21:37:39 +0000 (Sat, 29 Aug 2009) Log Message: ----------- Upgrade to Firefox 3.0.13. Firefox2 package is moved to a maintenance branch Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/Makefile csw/mgar/pkg/firefox/trunk/checksums csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh Added Paths: ----------- csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff csw/mgar/pkg/firefox/trunk/files/configure.diff csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff csw/mgar/pkg/firefox/trunk/files/firefox.diff csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff csw/mgar/pkg/firefox/trunk/files/md5.h.diff csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff csw/mgar/pkg/firefox/trunk/files/packager.mk.diff csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff csw/mgar/pkg/firefox/trunk/files/stdbool.h Removed Paths: ------------- csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec csw/mgar/pkg/firefox/trunk/files/CSWfirefox.prototype Modified: csw/mgar/pkg/firefox/trunk/Makefile =================================================================== --- csw/mgar/pkg/firefox/trunk/Makefile 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/Makefile 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,69 +1,94 @@ GARNAME = firefox -GARVERSION = 2.0.0.20 -CATEGORIES = apps +GARVERSION = 3.0.13 +CATEGORIES = x11 DISTNAME = $(GARNAME) DESCRIPTION = Firefox Community Edition web browser define BLURB -The award-winning, free Web browser is better than ever. Browse the Web with confidence - Firefox protects you from viruses, spyware and pop-ups. Enjoy improvements to performance, ease of use and privacy. It's easy to import your favorites and settings and get started. Download Firefox now and get the most out of the Web. + The award-winning, free Web browser is better than ever. Browse the Web with confidence - Firefox protects you from viruses, spyware and pop-ups. Enjoy improvements to performance, ease of use and privacy. It's easy to import your favorites and settings and get started. Download Firefox now and get the most out of the Web. endef DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += $(call admfiles,CSWfirefox, postinstall postremove ) +DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff # 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/firefox/releases/$(GARVERSION)/source/ UPSTREAM_MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/ -PERL="/opt/csw/bin/perl" -CFLAGS=-xlibmil -CXXFLAGS=-xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS=-R'\$\$ORIGIN:\$\$ORIGIN/..' -L/opt/csw/lib -R/opt/csw/lib +PACKAGES = CSWfirefox +CATALOGNAME_CSWfirefox = $(GARNAME) +SPKG_DESC_CSWfirefox = $(DESCRIPTION) -export PERL CFLAGS CXXFLAGS LDFLAGS +REQUIRED_PKGS_CSWfirefox = CSWdbusglib +REQUIRED_PKGS_CSWfirefox += CSWfconfig +REQUIRED_PKGS_CSWfirefox += CSWftype2 +REQUIRED_PKGS_CSWfirefox += CSWgconf2 +REQUIRED_PKGS_CSWfirefox += CSWglib2 +REQUIRED_PKGS_CSWfirefox += CSWgnomevfs2 +REQUIRED_PKGS_CSWfirefox += CSWgtk2 +REQUIRED_PKGS_CSWfirefox += CSWlibatk +REQUIRED_PKGS_CSWfirefox += CSWlibcairo +REQUIRED_PKGS_CSWfirefox += CSWlibdbus +REQUIRED_PKGS_CSWfirefox += CSWlibgnome +REQUIRED_PKGS_CSWfirefox += CSWlibx11 +REQUIRED_PKGS_CSWfirefox += CSWlibxrender +REQUIRED_PKGS_CSWfirefox += CSWpango +REQUIRED_PKGS_CSWfirefox += CSWsqlite3rt -CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/firefox +# Defines the list of patches to be applied to the sources PATCHFILES = autoconf.mk.in.diff -TEST_SCRIPTS = +PATCHFILES += configure.diff +PATCHFILES += nsPluginsDirUnix.cpp.diff +PATCHFILES += packager.mk.diff +PATCHFILES += jemalloc.c.diff +PATCHFILES += nsMathUtils.h.diff +PATCHFILES += file_id.cc.diff +PATCHFILES += md5.h.diff +PATCHFILES += solaris_lwp.h.diff +PATCHFILES += nsNativeApSuportUnix.cpp.diff +PATCHFILES += nsExceptionHandler.cpp.diff +PATCHFILES += SunOS5.mk.diff +# pkg-config options +EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig + +PERL=/opt/csw/bin/perl +CXXFLAGS +=-xlibmil -xlibmopt -features=tmplife -norunpath +CFLAGS +=-xlibmil -D__solaris__ +CFLAGS += -DG_HAVE_ISO_VARARGS +CXXFLAGS += -DG_HAVE_ISO_VARARGS +CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include +XCFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + +EXTRA_CONFIGURE_EXPORTS = XCFLAGS + +LDFLAGS+=-L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 + +export PERL CFLAGS CXXFLAGS LDFLAGS + +CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/firefox --disable-crashreporter + +TEST_SCRIPTS = + +LICENSE = LICENSE + # Variable for direct access to working dir WORK_BUILD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME) WORK_INSTALL = $(WORKROOTDIR)/install-$(firstword $(MODULATIONS)) -# Dependencies tracking -REQUIRED_PKGS_CSWfirefox += CSWbonobo2 -REQUIRED_PKGS_CSWfirefox += CSWfconfig -REQUIRED_PKGS_CSWfirefox += CSWftype2 -REQUIRED_PKGS_CSWfirefox += CSWgconf2 -REQUIRED_PKGS_CSWfirefox += CSWggettextrt -REQUIRED_PKGS_CSWfirefox += CSWglib2 -REQUIRED_PKGS_CSWfirefox += CSWgnomekeyring -REQUIRED_PKGS_CSWfirefox += CSWgnomevfs2 -REQUIRED_PKGS_CSWfirefox += CSWgtk2 -REQUIRED_PKGS_CSWfirefox += CSWlibart -REQUIRED_PKGS_CSWfirefox += CSWlibatk -REQUIRED_PKGS_CSWfirefox += CSWlibbonoboui -REQUIRED_PKGS_CSWfirefox += CSWlibcairo -REQUIRED_PKGS_CSWfirefox += CSWlibgnome -REQUIRED_PKGS_CSWfirefox += CSWlibgnomecanvas -REQUIRED_PKGS_CSWfirefox += CSWlibgnomeui -REQUIRED_PKGS_CSWfirefox += CSWlibidl -REQUIRED_PKGS_CSWfirefox += CSWlibpopt -REQUIRED_PKGS_CSWfirefox += CSWlibxft2 -REQUIRED_PKGS_CSWfirefox += CSWlibxrender -REQUIRED_PKGS_CSWfirefox += CSWorbit2 -REQUIRED_PKGS_CSWfirefox += CSWpango -REQUIRED_PKGS_CSWfirefox += CSWzlib - post-extract: @mv $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/mozilla $(WORK_BUILD) + @cp $(FILEDIR)/stdbool.h $(WORK_BUILD)/memory/jemalloc @$(MAKECOOKIE) -pre-configure: +pre-configure-modulated: @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig -pre-install: +post-configure-modulated: + @gpatch -d$(WORKSRC) -p1 -F2 < download/autoconf.mk.diff + +pre-install-modulated: ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/firefox/bin/firefox . ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) @@ -72,17 +97,11 @@ ( cp $(FILEDIR)/firefox.desktop $(WORK_INSTALL)/opt/csw/share/applications/firefox.desktop ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) ( cp $(FILEDIR)/firefox.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/firefox.keys ) - @ginstall -d $(WORK_INSTALL)$(datadir)/doc/$(GARNAME) - @gcp -fp $(WORK_BUILD)/LICENSE $(WORK_INSTALL)$(datadir)/doc/$(GARNAME)/License.txt -post-install: +post-install-modulated: ( 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/firefox/bin/firefox-config $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config.temp && gsed -e s\_-L$(WORK_INSTALL)/opt/csw/lib\_\_g $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config.temp > $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config && rm $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config.temp ) - ( mv $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc.temp && gsed -e s\_-L$(WORK_INSTALL)/opt/csw/lib\_\_g $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc.temp > $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc && rm $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-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/firefox -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) ( gfind $(WORK_INSTALL)/opt/csw/mozilla/firefox -name "*.jar" -exec bash -c "`pwd`/removeBuildPathFromJar.sh {} `pwd` $(WORKDIR) $(DISTNAME)" \; ) -# include the rest of GAR include gar/category.mk - Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,5 +1,16 @@ -35b08b743fae892fc69aed10cdb3a7cf download/CSWfirefox.gspec f9c7fb69080051172bd7357370731ba3 download/CSWfirefox.postinstall 6ede39c29b3672fb1fc1d8fe397a7863 download/CSWfirefox.postremove -ffec5571cbae2a9fae89ba6a3d3f81c5 download/autoconf.mk.in.diff -f3718fefd01c8edc007ec0b416a8a7b8 download/firefox-2.0.0.20-source.tar.bz2 +9eaa0433fd8d1d7a3b39442b4b4c3e14 download/SunOS5.mk.diff +03e4d0e627dd508ea895c99c5e7ed184 download/autoconf.mk.diff +45bba282258a321e5e4f73a742bcc31b download/autoconf.mk.in.diff +c869762735a41bb30f417e510ccb7f31 download/configure.diff +a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff +040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 +a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff +18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff +1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff +ca4162516d8c09deaa9f0b6f3b3ecffb download/nsMathUtils.h.diff +d8f7ec0df9f63317ff2d8578d9dbe3ff download/nsNativeApSuportUnix.cpp.diff +f562a935a0fb2c5ad38f95af114d0a49 download/nsPluginsDirUnix.cpp.diff +d0d942fa0c012abcb2a45b1d0fc99051 download/packager.mk.diff +29e0ca858fe3aef24d5be1300dc39735 download/solaris_lwp.h.diff Deleted: csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec =================================================================== --- csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,6 +0,0 @@ -%var bitname firefox -%var pkgname CSWfirefox -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/%{GARNAME}/License.txt for license information Added: csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,11 @@ +--- firefox.orig/security/coreconf/SunOS5.mk 2009-08-29 23:08:08.804586828 +0200 ++++ firefox/security/coreconf/SunOS5.mk 2009-08-29 23:08:32.556961245 +0200 +@@ -104,7 +104,7 @@ + endif + endif + +-INCLUDES += -I/usr/dt/include -I/usr/openwin/include ++INCLUDES += -I/usr/dt/include -I/opt/csw/X11/include + + RANLIB = echo + CPU_ARCH = sparc Added: csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,31 @@ +--- firefox.orig/config/autoconf.mk 2009-08-29 21:57:42.151999781 +0200 ++++ firefox/config/autoconf.mk 2009-08-29 22:05:33.912567245 +0200 +@@ -238,7 +238,7 @@ + + MOZ_PREF_EXTENSIONS = 1 + +-MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/usr/openwin/lib -R/usr/openwin/lib -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 ++MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 + + MOZ_ENABLE_GNOMEUI = 1 + MOZ_GNOMEUI_CFLAGS = -DORBIT2=1 -D_REENTRANT -D_PTHREADS -D__solaris__ -D_POSIX_PTHREAD_SEMANTICS -I/opt/csw/include/libgnomeui-2.0 -I/opt/csw/include/libgnome-2.0 -I/opt/csw/include/libgnomecanvas-2.0 -I/opt/csw/include/gtk-2.0 -I/opt/csw/include/libart-2.0 -I/opt/csw/include/gconf/2 -I/opt/csw/include/libbonoboui-2.0 -I/opt/csw/include/gnome-vfs-2.0 -I/opt/csw/lib/gnome-vfs-2.0/include -I/opt/csw/include/gnome-keyring-1 -I/opt/csw/include/glib-2.0 -I/opt/csw/lib/glib-2.0/include -I/opt/csw/include/orbit-2.0 -I/opt/csw/include/libbonobo-2.0 -I/opt/csw/include/bonobo-activation-2.0 -I/opt/csw/include/pango-1.0 -I/opt/csw/include/freetype2 -I/opt/csw/include -I/opt/csw/lib/gtk-2.0/include -I/opt/csw/include/atk-1.0 -I/opt/csw/include/cairo -I/opt/csw/include/pixman-1 -I/opt/csw/include/libpng12 -I/opt/csw/include/libxml2 -I/opt/csw/X11/include +@@ -270,7 +270,7 @@ + + CROSS_COMPILE = + +-OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include -I/usr/openwin/include ++OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + OS_CFLAGS = $(OS_CPPFLAGS) -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmieee -xstrconst -xbuiltin=%none -mt + OS_CXXFLAGS = $(OS_CPPFLAGS) -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmieee -xbuiltin=%none -features=tmplife -norunpath -mt + OS_LDFLAGS = -lpthread -M /usr/lib/ld/map.noexstk -xildoff -z lazyload -z combreloc -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -z ignore -R '$$ORIGIN:$$ORIGIN/..' +@@ -297,8 +297,8 @@ + PROFILE_USE_CFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + PROFILE_USE_LDFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + +-XCFLAGS = -I/usr/openwin/include +-XLDFLAGS = -L/usr/openwin/lib -R/usr/openwin/lib ++XCFLAGS = -I/opt/csw/X11/include ++XLDFLAGS = -L/opt/csw/X11/lib -R/opt/csw/X11/lib + XLIBS = -lX11 -lsocket -lnsl + + WIN_TOP_SRC = Modified: csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,7 +1,7 @@ diff --speed-large-files --minimal -Nru firefox.orig/config/autoconf.mk.in firefox/config/autoconf.mk.in ---- firefox.orig/config/autoconf.mk.in 2006-09-14 14:07:03.000000000 -0400 -+++ firefox/config/autoconf.mk.in 2007-02-25 07:21:36.245899000 -0500 -@@ -57,14 +57,14 @@ +--- firefox.orig/config/autoconf.mk.in 2008-09-18 22:00:51.000000000 +0000 ++++ firefox/config/autoconf.mk.in 2008-11-15 20:28:25.577542600 +0000 +@@ -58,14 +58,14 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ @@ -10,13 +10,13 @@ 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 - +-idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++idldir = $(datadir)/idl + +-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) ++installdir = $(libdir) ++sdkdir = $(libdir) + DIST = $(DEPTH)/dist + LIBXUL_SDK = @LIBXUL_SDK@ Added: csw/mgar/pkg/firefox/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/configure.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/configure.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,25 @@ +diff --speed-large-files --minimal -Nru firefox.orig/configure firefox/configure +--- firefox.orig/configure 2009-07-07 21:46:57.267011389 +0200 ++++ firefox/configure 2009-07-07 21:49:10.319971404 +0200 +@@ -4382,8 +4382,8 @@ + /usr/local/x11r5/include \ + /usr/lpp/Xamples/include \ + \ +- /usr/openwin/include \ +- /usr/openwin/share/include \ ++ /opt/csw/X11/include \ ++ /opt/csw/X11/share/include \ + ; \ + do + if test -r "$ac_dir/$x_direct_test_include"; then +@@ -4458,8 +4458,8 @@ + /usr/lpp/Xamples/lib \ + /lib/usr/lib/X11 \ + \ +- /usr/openwin/lib \ +- /usr/openwin/share/lib \ ++ /opt/csw/X11/lib \ ++ /opt/csw/X11/share/lib \ + ; \ + do + for ac_extension in a so sl; do Added: csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,11 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc firefox/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc +--- firefox.orig/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc 2007-10-21 15:36:06.000000000 +0000 ++++ firefox/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc 2008-11-24 22:07:22.563549000 +0000 +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include + #include + #include + #include Added: csw/mgar/pkg/firefox/trunk/files/firefox.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/firefox.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,15 @@ +diff --speed-large-files --minimal -Nru firefox.orig/browser/app/firefox firefox/browser/app/firefox +--- firefox.orig/browser/app/firefox 2009-08-27 23:43:31.266507053 +0200 ++++ firefox/browser/app/firefox 2009-08-27 23:44:53.015182925 +0200 +@@ -54,6 +54,11 @@ + + moz_libdir=/opt/csw/mozilla/firefox/lib + ++if [ "`uname -r`" = "5.8" ] ; then ++ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp ++ LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++fi ++ + # Use run-mozilla.sh in the current dir if it exists + # If not, then start resolving symlinks until we find run-mozilla.sh + found=0 Added: csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,28 @@ +diff --speed-large-files --minimal -Nru firefox.orig/memory/jemalloc/jemalloc.c firefox/memory/jemalloc/jemalloc.c +--- firefox.orig/memory/jemalloc/jemalloc.c 2009-07-08 19:50:45.390553748 +0200 ++++ firefox/memory/jemalloc/jemalloc.c 2009-07-08 19:51:32.355474070 +0200 +@@ -312,9 +312,9 @@ + #endif + #include + #include +-#include ++#include "stdbool.h" + #include +-#include ++#include + #include + #include + #ifndef MOZ_MEMORY_DARWIN +@@ -422,6 +422,12 @@ + #endif + #endif + ++#define issetugid() 0 ++char *strerror_r(int errnum, char *buf, size_t buflen) ++{ ++ strncpy(buf, strerror(errnum), buflen); ++} ++ + #define SIZEOF_PTR (1U << SIZEOF_PTR_2POW) + + /* sizeof(int) == (1U << SIZEOF_INT_2POW). */ Added: csw/mgar/pkg/firefox/trunk/files/md5.h.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/md5.h.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/md5.h.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/google-breakpad/src/common/md5.h firefox/toolkit/crashreporter/google-breakpad/src/common/md5.h +--- firefox.orig/toolkit/crashreporter/google-breakpad/src/common/md5.h 2007-10-21 15:36:05.000000000 +0000 ++++ firefox/toolkit/crashreporter/google-breakpad/src/common/md5.h 2008-11-24 21:59:04.857036600 +0000 +@@ -3,7 +3,7 @@ + #ifndef COMMON_MD5_H__ + #define COMMON_MD5_H__ + +-#include ++#include + + typedef uint32_t u32; + typedef uint8_t u8; Added: csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/nsExceptionHandler.cpp firefox/toolkit/crashreporter/nsExceptionHandler.cpp +--- firefox.orig/toolkit/crashreporter/nsExceptionHandler.cpp 2008-07-20 22:19:32.000000000 +0000 ++++ firefox/toolkit/crashreporter/nsExceptionHandler.cpp 2008-11-24 21:46:58.112282800 +0000 +@@ -301,7 +301,7 @@ + else if (pid == 0) { + // need to clobber this, as libcurl might load NSS, + // and we want it to load the system NSS. +- unsetenv("LD_LIBRARY_PATH"); ++ // unsetenv("LD_LIBRARY_PATH"); + (void) execl(crashReporterPath, + crashReporterPath, minidumpPath, (char*)0); + _exit(1); Added: csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,14 @@ +diff --speed-large-files --minimal -Nru firefox.orig/xpcom/ds/nsMathUtils.h firefox/xpcom/ds/nsMathUtils.h +--- firefox.orig/xpcom/ds/nsMathUtils.h 2008-04-02 00:21:31.000000000 -0400 ++++ firefox/xpcom/ds/nsMathUtils.h 2008-11-22 18:22:11.384668100 -0500 +@@ -42,6 +42,10 @@ + #include + #include + ++# define floorf(a) floor (a) ++# define ceilf(a) ceil (a) ++# define round(a) floor(a + 0.5) ++ + /* + * round + */ Added: csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,31 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/xre/nsNativeAppSupportUnix.cpp firefox/toolkit/xre/nsNativeAppSupportUnix.cpp +--- firefox.orig/toolkit/xre/nsNativeAppSupportUnix.cpp 2008-02-21 10:55:06.000000000 +0000 ++++ firefox/toolkit/xre/nsNativeAppSupportUnix.cpp 2008-11-24 22:14:26.002326100 +0000 +@@ -237,19 +237,19 @@ + // We will load gail, atk-bridge by ourself later + // We can't run atk-bridge init here, because gail get the control + // Set GNOME_ACCESSIBILITY to 0 can avoid this +- static const char *accEnv = "GNOME_ACCESSIBILITY"; +- const char *accOldValue = getenv(accEnv); +- setenv(accEnv, "0", 1); ++// static const char *accEnv = "GNOME_ACCESSIBILITY"; ++// const char *accOldValue = getenv(accEnv); ++// setenv(accEnv, "0", 1); + #endif + + gnome_program_init("Gecko", "1.0", libgnomeui_module_info_get(), gArgc, gArgv, NULL); + + #ifdef ACCESSIBILITY +- if (accOldValue) { +- setenv(accEnv, accOldValue, 1); +- } else { +- unsetenv(accEnv); +- } ++// if (accOldValue) { ++// setenv(accEnv, accOldValue, 1); ++// } else { ++// unsetenv(accEnv); ++// } + #endif + + // Careful! These libraries cannot be unloaded after this point because Added: csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/modules/plugin/base/src/nsPluginsDirUnix.cpp firefox/modules/plugin/base/src/nsPluginsDirUnix.cpp +--- firefox.orig/modules/plugin/base/src/nsPluginsDirUnix.cpp 2009-07-07 21:52:50.550842128 +0200 ++++ firefox/modules/plugin/base/src/nsPluginsDirUnix.cpp 2009-07-07 21:53:10.444317091 +0200 +@@ -76,7 +76,7 @@ + #define DEFAULT_X11_PATH "/usr/lib" + #define LOCAL_PLUGIN_DLL_ALT_SUFFIX ".a" + #elif defined(SOLARIS) +-#define DEFAULT_X11_PATH "/usr/openwin/lib/" ++#define DEFAULT_X11_PATH "/opt/csw/X11/lib/" + #elif defined(LINUX) + #define DEFAULT_X11_PATH "/usr/X11R6/lib/" + #else Added: csw/mgar/pkg/firefox/trunk/files/packager.mk.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/packager.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/packager.mk.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,21 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/mozapps/installer/packager.mk firefox/toolkit/mozapps/installer/packager.mk +--- firefox.orig/toolkit/mozapps/installer/packager.mk 2008-04-28 19:14:12.000000000 +0000 ++++ firefox/toolkit/mozapps/installer/packager.mk 2008-11-15 20:28:41.679741300 +0000 +@@ -363,7 +363,7 @@ + endif # MOZ_PKG_MANIFEST + ifndef PKG_SKIP_STRIP + @echo "Stripping package directory..." +- @cd $(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME); find . ! -type d \ ++ @cd $(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME); gfind . ! -type d \ + ! -name "*.js" \ + ! -name "*.xpt" \ + ! -name "*.gif" \ +@@ -426,7 +426,7 @@ + (cd $(DIST)/sdk/include && tar $(TAR_CREATE_FLAGS) - .) | \ + (cd $(DESTDIR)$(includedir)/stable && tar -xf -) + # The dist/include has module subdirectories that we need to flatten +- find $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir)/unstable \; ++ gfind $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir)/unstable \; + # IDL directory is stable (dist/sdk/idl) and unstable (dist/idl) + $(NSINSTALL) -D $(DESTDIR)$(idldir)/stable + $(NSINSTALL) -D $(DESTDIR)$(idldir)/unstable Added: csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h firefox/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h +--- firefox.orig/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h 2008-03-19 01:48:21.000000000 +0000 ++++ firefox/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h 2008-11-24 21:18:58.900019700 +0000 +@@ -41,7 +41,7 @@ + #endif + + #include +-#include ++#include + #include + #include + Added: csw/mgar/pkg/firefox/trunk/files/stdbool.h =================================================================== --- csw/mgar/pkg/firefox/trunk/files/stdbool.h (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/stdbool.h 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,38 @@ +/* +* Copyright (c) 2000 Jeroen Ruigrok van der Werven +* All rights reserved. +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions +* are met: +* 1. Redistributions of source code must retain the above copyright +* notice, this list of conditions and the following disclaimer. +* 2. Redistributions in binary form must reproduce the above copyright +* notice, this list of conditions and the following disclaimer in the +* documentation and/or other materials provided with the distribution. +* +* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +* SUCH DAMAGE. +* +* $FreeBSD: src/include/stdbool.h,v 1.6 2002/08/16 07:33:14 alfred Exp $ +*/ + +#ifndef _STDBOOL_H_ +#define _STDBOOL_H_ +#define __bool_true_false_are_defined 1 +#ifndef __cplusplus +#define false 0 +#define true 1 +#define bool _Bool +#endif /* !__cplusplus */ +#endif /* !_STDBOOL_H_ */ + Modified: csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh =================================================================== --- csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,4 +1,4 @@ -#!/opt/csw/bin/bash +#!/opt/csw/bin/bash -x if [ -d ~/.tempextractjar ] ; then @@ -14,7 +14,9 @@ gfind . -name "*.js" -exec bash -x -c " mv {} {}.temp && gsed -e s_\$REPLACEDIR\_\_g {}.temp > {} && rm {}.temp" \; -rm $BACKUP_OLD_DIR/$1 +rm $1 jar cvf $BACKUP_OLD_DIR/$1 * cd $BACKUP_OLD_DIR + +rm -fr ~/.tempextractjar This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 29 23:48:19 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 29 Aug 2009 21:48:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[6142] csw/mgar/pkg/firefox/trunk/files/.mozconfig Message-ID: Revision: 6142 http://gar.svn.sourceforge.net/gar/?rev=6142&view=rev Author: wbonnet Date: 2009-08-29 21:48:19 +0000 (Sat, 29 Aug 2009) Log Message: ----------- Update .mozconfig Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/files/.mozconfig Modified: csw/mgar/pkg/firefox/trunk/files/.mozconfig =================================================================== --- csw/mgar/pkg/firefox/trunk/files/.mozconfig 2009-08-29 21:37:39 UTC (rev 6141) +++ csw/mgar/pkg/firefox/trunk/files/.mozconfig 2009-08-29 21:48:19 UTC (rev 6142) @@ -8,7 +8,7 @@ ac_add_options --disable-debug ac_add_options --disable-tests ac_add_options --enable-xft -ac_add_options --enable-default-toolkit=gtk2 +ac_add_options --enable-default-toolkit=cairo-gtk2 ac_add_options --disable-auto-deps ac_add_options --enable-optimize="-xO3" ac_add_options --disable-updater This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 30 10:55:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 30 Aug 2009 08:55:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6143] csw/mgar/pkg/syslog_ng/trunk Message-ID: Revision: 6143 http://gar.svn.sourceforge.net/gar/?rev=6143&view=rev Author: wahwah Date: 2009-08-30 08:55:29 +0000 (Sun, 30 Aug 2009) Log Message: ----------- syslog_ng: -x is better than -e. Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/checksums csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall Modified: csw/mgar/pkg/syslog_ng/trunk/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-29 21:48:19 UTC (rev 6142) +++ csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-30 08:55:29 UTC (rev 6143) @@ -1,5 +1,5 @@ -5189766b79c5ada82fcddda76f1d8d01 download/CSWsyslogng.postremove -c714cbd4360ac0af8495697de2001c41 download/CSWsyslogng.preinstall +91e692a52c4c9668e3bcf8b8816425c3 download/CSWsyslogng.postremove +7f8beb7c27a9b9ddf0ff1add6a5d4e50 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW 86c39779261545d2289e9c309e262b8d download/syslog-ng_3.0.4.tar.gz Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-29 21:48:19 UTC (rev 6142) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-30 08:55:29 UTC (rev 6143) @@ -1,6 +1,6 @@ #!/bin/sh -if [ -e /usr/sbin/svcadm ]; then +if [ -x /usr/sbin/svcadm ]; then echo "Enabling svc:/system/system-log:default" /usr/sbin/svcadm enable svc:/system/system-log:default fi Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-29 21:48:19 UTC (rev 6142) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-30 08:55:29 UTC (rev 6143) @@ -1,6 +1,6 @@ #!/bin/sh -if [ -e /usr/sbin/svcadm ]; then +if [ -x /usr/sbin/svcadm ]; then echo "Disabling svc:/system/system-log:default" /usr/sbin/svcadm disable svc:/system/system-log:default 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 Sun Aug 30 17:44:17 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 30 Aug 2009 15:44:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[6144] csw/mgar/pkg/firefox/trunk Message-ID: Revision: 6144 http://gar.svn.sourceforge.net/gar/?rev=6144&view=rev Author: wbonnet Date: 2009-08-30 15:44:17 +0000 (Sun, 30 Aug 2009) Log Message: ----------- Fix patch detection Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/Makefile csw/mgar/pkg/firefox/trunk/checksums Added Paths: ----------- csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff Modified: csw/mgar/pkg/firefox/trunk/Makefile =================================================================== --- csw/mgar/pkg/firefox/trunk/Makefile 2009-08-30 08:55:29 UTC (rev 6143) +++ csw/mgar/pkg/firefox/trunk/Makefile 2009-08-30 15:44:17 UTC (rev 6144) @@ -9,7 +9,7 @@ endef DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff +DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff firefox.diff firefox.dist.bin.diff # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) @@ -86,11 +86,13 @@ @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig post-configure-modulated: - @gpatch -d$(WORKSRC) -p1 -F2 < download/autoconf.mk.diff + @grep openwin $(WORKSRC)/config/autoconf.mk && gpatch -d$(WORKSRC) --forward -p1 -F2 < download/autoconf.mk.diff || true pre-install-modulated: + @grep "LD_LIBRARY_PATH=.LD_LIBRARY_PATH:/usr/lib/lwp" $(WORKSRC)/browser/app/firefox || gpatch -d$(WORKSRC) --forward -p1 -F2 < download/firefox.diff + @grep "LD_LIBRARY_PATH=.LD_LIBRARY_PATH:/usr/lib/lwp" $(WORKSRC)/dist/bin/firefox || gpatch -d$(WORKSRC) --forward -p1 -F2 < download/firefox.dist.bin.diff ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) - ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/firefox/bin/firefox . ) + ( cd $(WORK_INSTALL)/opt/csw/bin ; rm -f firefox ; ln -sf ../mozilla/firefox/bin/firefox . ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) ( cp $(WORK_BUILD)/other-licenses/branding/firefox/mozicon128.png $(WORK_INSTALL)/opt/csw/share/pixmaps/firefox.png ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/applications ) Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 08:55:29 UTC (rev 6143) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 15:44:17 UTC (rev 6144) @@ -6,6 +6,8 @@ c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff 040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 +7343359131b4b31b985ba59fc9a2e3fe download/firefox.diff +1a32b697eeec4c0e3cb844407b8253ca download/firefox.dist.bin.diff a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff 18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff 1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff Added: csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff 2009-08-30 15:44:17 UTC (rev 6144) @@ -0,0 +1,15 @@ +diff --speed-large-files --minimal -Nru firefox.orig/dist/bin/firefox firefox/dist/bin/firefox +--- firefox.orig/dist/bin/firefox 2009-08-27 23:43:31.266507053 +0200 ++++ firefox/dist/bin/firefox 2009-08-27 23:44:53.015182925 +0200 +@@ -54,6 +54,11 @@ + + moz_libdir=/opt/csw/mozilla/firefox/lib + ++if [ "`uname -r`" = "5.8" ] ; then ++ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp ++ LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++fi ++ + # Use run-mozilla.sh in the current dir if it exists + # If not, then start resolving symlinks until we find run-mozilla.sh + found=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 Sun Aug 30 22:34:31 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 30 Aug 2009 20:34:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6145] csw/mgar/pkg/firefox/trunk Message-ID: Revision: 6145 http://gar.svn.sourceforge.net/gar/?rev=6145&view=rev Author: wbonnet Date: 2009-08-30 20:34:31 +0000 (Sun, 30 Aug 2009) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/checksums csw/mgar/pkg/firefox/trunk/files/firefox.diff csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 15:44:17 UTC (rev 6144) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 20:34:31 UTC (rev 6145) @@ -6,8 +6,8 @@ c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff 040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 -7343359131b4b31b985ba59fc9a2e3fe download/firefox.diff -1a32b697eeec4c0e3cb844407b8253ca download/firefox.dist.bin.diff +125a5da522c7b0cc834ba6d97694d162 download/firefox.diff +162d4cf2d198196e94f6878d60dc7a26 download/firefox.dist.bin.diff a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff 18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff 1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff Modified: csw/mgar/pkg/firefox/trunk/files/firefox.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.diff 2009-08-30 15:44:17 UTC (rev 6144) +++ csw/mgar/pkg/firefox/trunk/files/firefox.diff 2009-08-30 20:34:31 UTC (rev 6145) @@ -1,13 +1,14 @@ diff --speed-large-files --minimal -Nru firefox.orig/browser/app/firefox firefox/browser/app/firefox --- firefox.orig/browser/app/firefox 2009-08-27 23:43:31.266507053 +0200 +++ firefox/browser/app/firefox 2009-08-27 23:44:53.015182925 +0200 -@@ -54,6 +54,11 @@ +@@ -54,6 +54,12 @@ moz_libdir=/opt/csw/mozilla/firefox/lib +if [ "`uname -r`" = "5.8" ] ; then + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp + LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++ export LD_LIBRARY_PATH LD_LIBRARY_PATH_64 +fi + # Use run-mozilla.sh in the current dir if it exists Modified: csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff 2009-08-30 15:44:17 UTC (rev 6144) +++ csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff 2009-08-30 20:34:31 UTC (rev 6145) @@ -1,13 +1,14 @@ diff --speed-large-files --minimal -Nru firefox.orig/dist/bin/firefox firefox/dist/bin/firefox --- firefox.orig/dist/bin/firefox 2009-08-27 23:43:31.266507053 +0200 +++ firefox/dist/bin/firefox 2009-08-27 23:44:53.015182925 +0200 -@@ -54,6 +54,11 @@ +@@ -54,6 +54,12 @@ moz_libdir=/opt/csw/mozilla/firefox/lib +if [ "`uname -r`" = "5.8" ] ; then + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp + LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++ export LD_LIBRARY_PATH LD_LIBRARY_PATH_64 +fi + # Use run-mozilla.sh in the current dir if it exists This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 31 14:27:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 12:27:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6146] csw/mgar/pkg/jdk6/trunk Message-ID: Revision: 6146 http://gar.svn.sourceforge.net/gar/?rev=6146&view=rev Author: dmichelsen Date: 2009-08-31 12:27:18 +0000 (Mon, 31 Aug 2009) Log Message: ----------- jdk6: Update to u16 Modified Paths: -------------- csw/mgar/pkg/jdk6/trunk/Makefile csw/mgar/pkg/jdk6/trunk/checksums Modified: csw/mgar/pkg/jdk6/trunk/Makefile =================================================================== --- csw/mgar/pkg/jdk6/trunk/Makefile 2009-08-30 20:34:31 UTC (rev 6145) +++ csw/mgar/pkg/jdk6/trunk/Makefile 2009-08-31 12:27:18 UTC (rev 6146) @@ -1,6 +1,6 @@ GARNAME = jdk6 -SPKG_VERSION = 1.6.0_13 -GARVERSION = 6u13 +SPKG_VERSION = 1.6.0_16 +GARVERSION = 6u16 CATEGORIES = lang DESCRIPTION = Java Development Kit 6 Modified: csw/mgar/pkg/jdk6/trunk/checksums =================================================================== --- csw/mgar/pkg/jdk6/trunk/checksums 2009-08-30 20:34:31 UTC (rev 6145) +++ csw/mgar/pkg/jdk6/trunk/checksums 2009-08-31 12:27:18 UTC (rev 6146) @@ -1,8 +1,8 @@ -082fc09dd4f090fd402ecea74de04512 download/jdk-6u13-solaris-sparc.sh -9d21b094dda0f2cebdf4a7db97679e0a download/jdk-6u13-solaris-sparcv9.sh -62ee4b88ddc74af6fb15c1d8d3d2edce download/jdk-6u13-solaris-i586.sh -08824246000783adc6cae525b183b983 download/jdk-6u13-solaris-x64.sh +49e3f19f300f9634301324c66e9c538f download/CSWjdk.gspec e97f304567b9a3504ed23ab5203b1d6a download/CSWjdk6.gspec +e8c5435c1ec2ee4b55bc64a7e43092f5 download/CSWjre.gspec db63838ec6ecabef9af5dbaeece93854 download/CSWjre6.gspec -49e3f19f300f9634301324c66e9c538f download/CSWjdk.gspec -e8c5435c1ec2ee4b55bc64a7e43092f5 download/CSWjre.gspec +3b3403d0b8a5bba0f681f2bca66a2294 download/jdk-6u16-solaris-i586.sh +d1ac0843e934663fa0d6b64fc6482bad download/jdk-6u16-solaris-sparc.sh +ac9da8dfdde3ae213d4dd0d8867b00a1 download/jdk-6u16-solaris-sparcv9.sh +3b80a03228161bc58ae96e2399a3b939 download/jdk-6u16-solaris-x64.sh This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 31 15:29:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 13:29:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[6147] csw/mgar/pkg Message-ID: Revision: 6147 http://gar.svn.sourceforge.net/gar/?rev=6147&view=rev Author: dmichelsen Date: 2009-08-31 13:29:39 +0000 (Mon, 31 Aug 2009) Log Message: ----------- pigz: Initial commit Added Paths: ----------- csw/mgar/pkg/pigz/ csw/mgar/pkg/pigz/branches/ csw/mgar/pkg/pigz/tags/ csw/mgar/pkg/pigz/trunk/ csw/mgar/pkg/pigz/trunk/Makefile csw/mgar/pkg/pigz/trunk/checksums csw/mgar/pkg/pigz/trunk/files/ Property changes on: csw/mgar/pkg/pigz/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/pigz/trunk/Makefile =================================================================== --- csw/mgar/pkg/pigz/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:29:39 UTC (rev 6147) @@ -0,0 +1,49 @@ +GARNAME = pigz +GARVERSION = 2.1.5 +CATEGORIES = utils + +DESCRIPTION = A parallel implementation of gzip +define BLURB + pigz, which stands for parallel implementation of gzip, is a fully + functional replacement for gzip that exploits multiple processors + and multiple cores to the hilt when compressing data. pigz was written + by Mark Adler, and uses the zlib and pthread libraries. +endef + +MASTER_SITES = http://www.zlib.net/pigz/ +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 = + +LICENSE = README + +REQUIRED_PKGS = CSWzlib + +REQUESTED_ISAS = $(ISALIST_$(GARCOMPILER)) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +INSTALL_SCRIPTS = custom +TEST_SCRIPTS = + +include gar/category.mk + +build-custom: + cd $(WORKSRC) && $(CC) $(CFLAGS) -c yarn.c + cd $(WORKSRC) && $(CC) $(CFLAGS) -c pigz.c + cd $(WORKSRC) && $(CC) $(LDFLAGS) -o pigz yarn.o pigz.o -lpthread -lz + @$(MAKECOOKIE) + +install-custom: + ginstall -d $(DESTDIR)$(bindir) + ginstall $(WORKSRC)/pigz $(DESTDIR)$(bindir) + ginstall -d $(DESTDIR)$(mandir)/man1 + ginstall $(WORKSRC)/pigz.1 $(DESTDIR)$(mandir)/man1 + ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + ginstall $(WORKSRC)/pigz.pdf $(DESTDIR)$(docdir)/$(GARNAME) + @$(MAKECOOKIE) Added: csw/mgar/pkg/pigz/trunk/checksums =================================================================== --- csw/mgar/pkg/pigz/trunk/checksums (rev 0) +++ csw/mgar/pkg/pigz/trunk/checksums 2009-08-31 13:29:39 UTC (rev 6147) @@ -0,0 +1 @@ +580873165ef3a369674f0c0af4c96d67 download/pigz-2.1.5.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 Mon Aug 31 15:42:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 13:42:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[6148] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 6148 http://gar.svn.sourceforge.net/gar/?rev=6148&view=rev Author: dmichelsen Date: 2009-08-31 13:42:27 +0000 (Mon, 31 Aug 2009) Log Message: ----------- mGAR v2: Make sure all possible ISAs are build on the local machine 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-08-31 13:29:39 UTC (rev 6147) +++ csw/mgar/gar/v2/gar.conf.mk 2009-08-31 13:42:27 UTC (rev 6148) @@ -360,9 +360,11 @@ # REQUESTED_ISAS contains all ISAs that should be built # NEEDED_ISAS contains all ISAs that must be build for this architecture to make the package # BUILD_ISAS contains all ISAs that can be built on the current kernel +# It is guaranteed that all BUILD_ISAS come first in NEEDED_ISAS # Set 'BUILD64 = 1' to build 64 bit versions automatically REQUESTED_ISAS ?= $(strip $(foreach A,$(GARCHLIST),$(ISA_DEFAULT_$A) $(if $(BUILD64),$(ISA_DEFAULT64_$A)) $(EXTRA_BUILD_ISAS_$A)) $(EXTRA_BUILD_ISAS)) -NEEDED_ISAS ?= $(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS)) +NEEDED_ISAS ?= $(filter $(ISALIST_$(KERNELISA)),$(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS))) \ + $(filter-out $(ISALIST_$(KERNELISA)),$(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS))) BUILD_ISAS ?= $(filter $(ISALIST_$(KERNELISA)),$(NEEDED_ISAS)) # Subdirectories for specialized binaries and libraries This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 31 15:43:46 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 13:43:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6149] csw/mgar/pkg/pigz/trunk/Makefile Message-ID: Revision: 6149 http://gar.svn.sourceforge.net/gar/?rev=6149&view=rev Author: dmichelsen Date: 2009-08-31 13:43:46 +0000 (Mon, 31 Aug 2009) Log Message: ----------- pigz: Fix Source URL Modified Paths: -------------- csw/mgar/pkg/pigz/trunk/Makefile Modified: csw/mgar/pkg/pigz/trunk/Makefile =================================================================== --- csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:42:27 UTC (rev 6148) +++ csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:43:46 UTC (rev 6149) @@ -20,6 +20,8 @@ # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES # UPSTREAM_MASTER_SITES = +SPKG_SOURCEURL = http://www.zlib.net/pigz/ + LICENSE = README REQUIRED_PKGS = CSWzlib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 31 17:52:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 31 Aug 2009 15:52:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6150] csw/mgar/pkg/pgadmin3/ Message-ID: Revision: 6150 http://gar.svn.sourceforge.net/gar/?rev=6150&view=rev Author: wahwah Date: 2009-08-31 15:52:29 +0000 (Mon, 31 Aug 2009) Log Message: ----------- pgadmin3: Copying the template Added Paths: ----------- csw/mgar/pkg/pgadmin3/ 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 Aug 1 00:00:12 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 31 Jul 2009 22:00:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5792] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5792 http://gar.svn.sourceforge.net/gar/?rev=5792&view=rev Author: valholla Date: 2009-07-31 22:00:12 +0000 (Fri, 31 Jul 2009) Log Message: ----------- tweak class Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/i.cswosrel Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-07-31 21:49:52 UTC (rev 5791) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-07-31 22:00:12 UTC (rev 5792) @@ -7,7 +7,7 @@ 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW 2592f7d191867c1d1c63ff16d818dcb5 download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW -7dc344aba21959d231c158c30b9c0c96 download/i.cswosrel +6e6f156034cac51c706c1b1484155d8a download/i.cswosrel d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz Modified: csw/mgar/pkg/sendmail/trunk/files/i.cswosrel =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-07-31 21:49:52 UTC (rev 5791) +++ csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-07-31 22:00:12 UTC (rev 5792) @@ -8,7 +8,7 @@ while read src dest do - FILEOSREL="`echo ${dest} |sed 's/.*\(sol[0-9]*\).*//'`" + FILEOSREL="`echo ${dest} |sed 's/.*\(sol[0-9]*\).*/\1/'`" if [ "_x${MYOSREL}x_" = "_x${FILEOSREL}x_" ]; then # Keep pkgadd happy by copying the file as defined /usr/bin/cp $src $dest || exit 2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 1 09:57:02 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 01 Aug 2009 07:57:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[5793] csw/mgar/pkg/sendmail/branches/mwatters/ Message-ID: Revision: 5793 http://gar.svn.sourceforge.net/gar/?rev=5793&view=rev Author: wahwah Date: 2009-08-01 07:56:59 +0000 (Sat, 01 Aug 2009) Log Message: ----------- sendmail: branches/mwatters, setting svn:externals to match the SSL cert Property Changed: ---------------- csw/mgar/pkg/sendmail/branches/mwatters/ Property changes on: csw/mgar/pkg/sendmail/branches/mwatters ___________________________________________________________________ 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 wahwah at users.sourceforge.net Sat Aug 1 10:41:20 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 01 Aug 2009 08:41:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5794] csw/mgar/pkg/template/trunk/Makefile Message-ID: Revision: 5794 http://gar.svn.sourceforge.net/gar/?rev=5794&view=rev Author: wahwah Date: 2009-08-01 08:41:19 +0000 (Sat, 01 Aug 2009) Log Message: ----------- template: Added comments with common settings, based on http://sourceforge.net/apps/trac/gar/wiki/Building%20for%20multiple%20ISAs Modified Paths: -------------- csw/mgar/pkg/template/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/template/trunk/Makefile Modified: csw/mgar/pkg/template/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-01 07:56:59 UTC (rev 5793) +++ csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:41:19 UTC (rev 5794) @@ -1,24 +1,156 @@ # Copyright 2009 OpenCSW # Distributed under the terms of the GNU General Public License v2 -# $Id$ +# $Header$ +## This file contains comments to guide you through various GAR settings. +## Please remove unnecessary comments before committing your code to the code +## repository. The comments to remove are marked with double hashes. +## +## For more information, please see: +## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference + GARNAME = mypkg GARVERSION = 1.0 + +## The category that your software fits in. This is not a descriptive field, but +## influences the build process. Depending on the CATEGORIES setting, different +## Makefiles are included from gar/categories/ in your trunk directory, which +## adjust the build settings for the respective category. +## +## Possible settings are: +## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, +## xfce, xorg, xtra CATEGORIES = lib -DESCRIPTION = This is a useful library +## A one-line description of the package, which will appear in the pkginfo. +DESCRIPTION = + +## A longer description of the package. This is only for descriptive purposes +## inside the Makefile and is not used elsewhere. define BLURB - It does stuff with things + endef +## Whitespace-separated list of URLs to download the source package from. +## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). MASTER_SITES = + +## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the +## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge +## project name of the software you wish to download. +# SF_PROJ = + +# A list of space separated patch filenames from files/ that are to be applied +# to the extracted software before the ./configure stage. Patches need to be +# included in the DISTFILES variable as well. +# PATCHFILES = + +## Whitespace-separated list of files which comprise this build. mGAR will look +## for the files in the $(FILEDIR) (trunk/files) directory and on the +## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -# We define upstream file regex so we can be notifed of new upstream software release +## Set to 1 to mark the package as architecture-independent. +# ARCHALL = 0 + +## A list of files / patterns that should be excluded from the package. Amends +## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which +## contains things like libtool .la files and files with a leading ~. +# EXTRA_MERGE_EXCLUDE_FILES = + +## A list of space separated package names that should be marked as +## incompatible with the current package. This will go into the depend file. +## When a user has one of the incompatible packages installed and installs +## your package, he will be prompted that the incompatible package must be +## removed. He will however not be prevented to install your package without +## removing the conflicting package first. +# INCOMPATIBLE_PKGS = + +# The name of the license file that should be included in your package. Defaults +# to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details +# on including and displaying licenses. +# LICENSE = + +## A list of space separated package names that should be produced from your +## Makefile. This is used when a software has different components that can be +## packaged and used individually (think runtime libraries, client tools, server +## files, development headers). You don't need to set this when you just want to +## produce one package. +## +## When you set this variable to include more than one package, you also need to +## set PKGFILES_CSWpkgname for each package (except for the first one in your +## $(PACKAGES) list) to define which files go into each package. The first +## package from $(PACKAGES) one will hold all files that are not matched by +## PKGFILES_ for other packages. +# PACKAGES = + +## If specified, GAR feeds the almost-final package prototype file to +## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. +## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used +## to prepare the prototype file for use with cswclassutils (see +## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, +## you will rarely have to use this. A still valid use case would be to change +## the file permissions of a file to be set-UID. +## See http://wiki.opencsw.org/cswclassutils-package for common usage information +# PROTOTYPE_FILTER = + +## A list of runtime package dependencies in the form of CSWfoo. +# REQUIRED_PKGS = + +## When using non-empty $(PACKAGES): +# REQUIRED_PKGS_CSWpkgname = +# SPKG_DESC_CSWpkgname = +# PKGFILES_CSWpkgname = + +## Upstream URL that should show up in the VENDOR field as well as on +## http://opencsw.org/packages/. +# SPKG_SOURCEURL = + +## A list of space separated directories where objects should be stripped in +## addition to the bin/ and sbin/ directories. +# STRIP_DIRS = + +## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +## Define a custom target for the configure phase. When you set this, the target +## that will be used instead of configure: target, is named +## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile +## after including gar/gar.include.mk. If you want to skip the configure phase +## completely (for example when your software doesn't need to be compiled) assign +## this variable an empty value. The procedure works for configure, build, +## install and test steps. +# CONFIGURE_SCRIPTS = +# BUILD_SCRIPTS = +# INSTALL_SCRIPTS = +# TEST_SCRIPTS = + +## Compilation settings + +## The build directory. +# WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) + +## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this +## for example, if you need to override Makefile variables. +# BUILD_ARGS = + +## Arguments passed to the ./configure script. CONFIGURE_ARGS = $(DIRPATHS) +# BUILD64 = +# CONFIGURE_ENV = +# EXTRA_CFLAGS = +# EXTRA_LDFLAGS = +# EXTRA_INC = +# EXTRA_LIB = +# GARFLAVOR = +# INSTALL_ARGS = +# OPT_FLAGS_SOS = -xO3 +# OPT_FLAGS_GCC = -O2 -pipe + +## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. +# GARCOMPILER = SOS11 + # Remove the following rules and uncomment the # include before building. all: .DEFAULT Property changes on: csw/mgar/pkg/template/trunk/Makefile ___________________________________________________________________ Modified: svn:keywords - Id + Header This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 1 10:56:44 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 01 Aug 2009 08:56:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5795] csw/mgar/pkg/template/trunk/Makefile Message-ID: Revision: 5795 http://gar.svn.sourceforge.net/gar/?rev=5795&view=rev Author: wahwah Date: 2009-08-01 08:56:44 +0000 (Sat, 01 Aug 2009) Log Message: ----------- template: Subversion doesn't support the 'Header' keyword, changing to 'Id' Modified Paths: -------------- csw/mgar/pkg/template/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/template/trunk/Makefile Modified: csw/mgar/pkg/template/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:41:19 UTC (rev 5794) +++ csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:56:44 UTC (rev 5795) @@ -1,6 +1,6 @@ # Copyright 2009 OpenCSW # Distributed under the terms of the GNU General Public License v2 -# $Header$ +# $Id$ ## This file contains comments to guide you through various GAR settings. ## Please remove unnecessary comments before committing your code to the code Property changes on: csw/mgar/pkg/template/trunk/Makefile ___________________________________________________________________ Modified: svn:keywords - Header + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Aug 1 14:49:48 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 01 Aug 2009 12:49:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5796] csw/mgar/gar/v2 Message-ID: Revision: 5796 http://gar.svn.sourceforge.net/gar/?rev=5796&view=rev Author: bdwalton Date: 2009-08-01 12:49:48 +0000 (Sat, 01 Aug 2009) Log Message: ----------- GAR: Add COMPILE_ELISP to allow for automatic handling of .elc compilation Modified Paths: -------------- csw/mgar/gar/v2/gar.conf.mk csw/mgar/gar/v2/gar.lib.mk csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.conf.mk =================================================================== --- csw/mgar/gar/v2/gar.conf.mk 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/gar/v2/gar.conf.mk 2009-08-01 12:49:48 UTC (rev 5796) @@ -31,6 +31,8 @@ MANIFEST_FILE ?= manifest LOGDIR ?= log +ELISP_DIRS ?= $(datadir)/emacs/site-lisp $(EXTRA_ELISP_DIRS) + GIT_PROXY_SCRIPT ?= $(abspath $(GARBIN))/gitproxy GIT_DEFAULT_TRACK = +refs/heads/master:refs/remotes/origin/master Modified: csw/mgar/gar/v2/gar.lib.mk =================================================================== --- csw/mgar/gar/v2/gar.lib.mk 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-01 12:49:48 UTC (rev 5796) @@ -730,6 +730,19 @@ gfind $(DESTDIR) -type f -iname *.[1-8] -size +2 -print | \ gxargs -r gzip --force +compile-elisp: + @(for d in $(ELISP_DIRS); do \ + echo " ===> Compiling .el files in $$d"; \ + cd $(PKGROOT)/$$d; \ + for f in `find . -name "*el"`; do \ + bf=`basename $$f`; \ + bd=`dirname $$f`; \ + cd $$bd; \ + emacs -L $(PKGROOT)/$$d -L $(PKGROOT)/$$d/$$bd $(EXTRA_EMACS_ARGS) -batch -f batch-byte-compile "$$bf"; \ + cd $(PKGROOT)/$$d; \ + done; \ + done) + include $(addprefix $(GARDIR)/,$(EXTRA_LIBS)) # Mmm, yesssss. cookies my preciousssss! Mmm, yes downloads it Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/gar/v2/gar.mk 2009-08-01 12:49:48 UTC (rev 5796) @@ -598,7 +598,7 @@ _PAX_ARGS = $(_INC_EXT_RULE) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) # The basic merge merges the compiles for all ISAs on the current architecture -merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(NOSOURCEPACKAGE),,merge-src) post-merge +merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(COMPILE_ELISP),compile-elisp) $(if $(NOSOURCEPACKAGE),,merge-src) post-merge @$(DONADA) # This merges the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 1 15:13:47 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 01 Aug 2009 13:13:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5797] csw/mgar/pkg/mod_wsgi/trunk/Makefile Message-ID: Revision: 5797 http://gar.svn.sourceforge.net/gar/?rev=5797&view=rev Author: rthurner Date: 2009-08-01 13:13:47 +0000 (Sat, 01 Aug 2009) Log Message: ----------- ap2_modwsgi - only depend on python runtime Modified Paths: -------------- csw/mgar/pkg/mod_wsgi/trunk/Makefile Modified: csw/mgar/pkg/mod_wsgi/trunk/Makefile =================================================================== --- csw/mgar/pkg/mod_wsgi/trunk/Makefile 2009-08-01 12:49:48 UTC (rev 5796) +++ csw/mgar/pkg/mod_wsgi/trunk/Makefile 2009-08-01 13:13:47 UTC (rev 5797) @@ -13,7 +13,7 @@ PACKAGES = CSWap2modwsgi -REQUIRED_PKGS_CSWap2modwsgi = CSWap2prefork CSWpython +REQUIRED_PKGS_CSWap2modwsgi = CSWap2prefork CSWpython-rt CATALOGNAME_CSWap2modwsgi = ap2_modwsgi SPKG_DESC_CSWap2modwsgi = an Apache/Python WSGI adapter module This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 1 15:23:59 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 01 Aug 2009 13:23:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5798] csw/mgar/pkg/mod_wsgi/trunk/ Message-ID: Revision: 5798 http://gar.svn.sourceforge.net/gar/?rev=5798&view=rev Author: rthurner Date: 2009-08-01 13:23:59 +0000 (Sat, 01 Aug 2009) Log Message: ----------- mod_wsgi: set to gar v2 parallel build Property Changed: ---------------- csw/mgar/pkg/mod_wsgi/trunk/ Property changes on: csw/mgar/pkg/mod_wsgi/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2-pbuild This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Aug 1 17:42:58 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 01 Aug 2009 15:42:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5799] csw/mgar/pkg/phpmode/tags/release-1.5.0, REV=2009.07. 28/ Message-ID: Revision: 5799 http://gar.svn.sourceforge.net/gar/?rev=5799&view=rev Author: bdwalton Date: 2009-08-01 15:42:58 +0000 (Sat, 01 Aug 2009) Log Message: ----------- Tagging the release code for 1.5.0,REVER=2009.07.28 Added Paths: ----------- csw/mgar/pkg/phpmode/tags/release-1.5.0,REV=2009.07.28/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Sat Aug 1 17:43:44 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Sat, 01 Aug 2009 15:43:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5800] csw/mgar/pkg/phpmode/trunk/Makefile Message-ID: Revision: 5800 http://gar.svn.sourceforge.net/gar/?rev=5800&view=rev Author: bdwalton Date: 2009-08-01 15:43:44 +0000 (Sat, 01 Aug 2009) Log Message: ----------- php_mode: take advantage of COMPILE_ELISP Modified Paths: -------------- csw/mgar/pkg/phpmode/trunk/Makefile Modified: csw/mgar/pkg/phpmode/trunk/Makefile =================================================================== --- csw/mgar/pkg/phpmode/trunk/Makefile 2009-08-01 15:42:58 UTC (rev 5799) +++ csw/mgar/pkg/phpmode/trunk/Makefile 2009-08-01 15:43:44 UTC (rev 5800) @@ -37,6 +37,8 @@ INSTALL_SCRIPTS = TEST_SCRIPTS = +COMPILE_ELISP = 1 + include gar/category.mk LISPDIR = $(datadir)/emacs/site-lisp @@ -49,9 +51,8 @@ post-install-modulated: @echo "Installing required files..." - ( gmkdir -p $(DESTDIR)/$(LISPDIR) $(DESTDIR)/$(INFODIR); \ - emacs -batch -f batch-byte-compile $(WORKSRC)/php-mode.el; \ - cp $(WORKSRC)/php-mode.el* $(DESTDIR)$(LISPDIR); \ + @( gmkdir -p $(DESTDIR)/$(LISPDIR) $(DESTDIR)/$(INFODIR); \ + cp $(WORKSRC)/php-mode.el $(DESTDIR)$(LISPDIR); \ chmod -x $(DESTDIR)$(LISPDIR)/*; \ cp $(WORKSRC)/*info $(DESTDIR)/$(INFODIR) ) - @$(MAKECOOKIE) \ No newline at end of file + @$(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 Sat Aug 1 20:18:42 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 18:18:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5801] csw/mgar/pkg/php5/trunk Message-ID: Revision: 5801 http://gar.svn.sourceforge.net/gar/?rev=5801&view=rev Author: valholla Date: 2009-08-01 18:18:42 +0000 (Sat, 01 Aug 2009) Log Message: ----------- fix for db47 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/Makefile.cswdir csw/mgar/pkg/php5/trunk/Makefile.php5dir csw/mgar/pkg/php5/trunk/checksums csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile csw/mgar/pkg/php5/trunk/files/configure.diff Added Paths: ----------- csw/mgar/pkg/php5/trunk/files/pear.conf.CSW Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 18:18:42 UTC (rev 5801) @@ -1,5 +1,5 @@ GARNAME = php5 -GARVERSION = 5.2.9 +GARVERSION = 5.2.10 CATEGORIES = lang SF_PROJ = $(shell echo $(GARNAME) | sed -e 's/[0-9]//g') DISTNAME = $(SF_PROJ)-$(GARVERSION) @@ -19,11 +19,12 @@ endef MASTER_SITES = http://us.php.net/distributions/ -SPKG_SOURCEURL = http://www.php.net/downloads.php +SPKG_SOURCEURL = http://www.php.net/ INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) +STRIP_DIRS += $(shell $(call _get_php_prefix,$(DESTDIR))/bin/php-config --extension-dir)/*/ DISTFILES += $(DISTNAME).tar.bz2 -DISTFILES += php.ini.CSW phpext CSWphp5.postinstall +DISTFILES += php.ini.CSW phpext pear.conf.CSW CSWphp5.postinstall PACKAGES = CSWphp5 CSWphp5devel @@ -61,8 +62,6 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 Modified: csw/mgar/pkg/php5/trunk/Makefile.cswdir =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.cswdir 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/Makefile.cswdir 2009-08-01 18:18:42 UTC (rev 5801) @@ -19,7 +19,7 @@ endef MASTER_SITES = http://us.php.net/distributions/ -SPKG_SOURCEURL = http://www.php.net/downloads.php +SPKG_SOURCEURL = http://www.php.net/ INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) STRIP_DIRS += $(shell $(call _get_php_prefix,$(DESTDIR))/bin/php-config --extension-dir)/*/ @@ -62,8 +62,6 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 Modified: csw/mgar/pkg/php5/trunk/Makefile.php5dir =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile.php5dir 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/Makefile.php5dir 2009-08-01 18:18:42 UTC (rev 5801) @@ -19,7 +19,7 @@ endef MASTER_SITES = http://us.php.net/distributions/ -SPKG_SOURCEURL = http://www.php.net/downloads.php +SPKG_SOURCEURL = http://www.php.net/ INSTALL_ENV += INSTALL_ROOT=$(DESTDIR) STRIP_DIRS += $(shell $(call _get_php_prefix,$(DESTDIR))/bin/php-config --extension-dir)/*/ @@ -62,8 +62,6 @@ EXTDIRLIST = $(shell ls -d extensions/*) include $(foreach X,$(EXTDIRLIST),$(X)/Makefile) -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include EXTRA_CFLAGS = -I$(prefix)/include/ncursesw NOISALIST = 1 Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/checksums 2009-08-01 18:18:42 UTC (rev 5801) @@ -5,12 +5,13 @@ 2e5dbed2c9dd5e24c331753984946822 download/CSWmodphp5.preremove 0dd379f20ceb32fc77bb3a9bf045097f download/CSWmodphp5.space 98c6458b20eca91982b67c80a0554586 download/CSWphp5.postinstall -ab08e2ba62667bf13fa236099e433e84 download/configure.diff +91060cc7c31aa917d88cd537d3d5bb42 download/configure.diff a71677d80f5cfd1aeb03547dfdeb705a download/httpd-php5.conf.CSW 2206431e47c2075c0b9c4a12de5cf791 download/odbc.diff 230126f76ee6400ccf225bb6a8243532 download/pdopgsql.diff +d4c93751890b989c5a7b04acb5845fd9 download/pear.conf.CSW 13db46097c9686302bebf160e2d26ed2 download/pgsql.diff -280d6cda7f72a4fc6de42fda21ac2db7 download/php-5.2.9.tar.bz2 +15c7b5a87f57332d6fc683528e28247b download/php-5.2.10.tar.bz2 a450a46ce0ea9fd0c0abe432e750a873 download/php-bug-45557-fix.diff 670b8fbf4cf9105d72f22dbf4b1e29cd download/php.ini.CSW 6251f3adcefc6ffa61d6339ac6b2d1eb download/phpext Modified: csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/extensions/php5_dba/Makefile 2009-08-01 18:18:42 UTC (rev 5801) @@ -4,12 +4,12 @@ CATALOGNAME_CSWphp5dba = php5_dba SPKG_DESC_CSWphp5dba = dba Extention for PHP5 -REQUIRED_PKGS_CSWphp5dba = CSWphp5 CSWbdb44 CSWgdbm +REQUIRED_PKGS_CSWphp5dba = CSWphp5 CSWbdb CSWgdbm CONFIGURE_ARGS += --enable-dba=shared CONFIGURE_ARGS += --with-ndbm CONFIGURE_ARGS += --with-gdbm=$(prefix) -CONFIGURE_ARGS += --with-db4=$(prefix)/bdb44 +CONFIGURE_ARGS += --with-db4=$(prefix) PKGFILES_CSWphp5dba = .*/lib/php/extensions/.*/dba\.so Modified: csw/mgar/pkg/php5/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/php5/trunk/files/configure.diff 2009-08-01 15:43:44 UTC (rev 5800) +++ csw/mgar/pkg/php5/trunk/files/configure.diff 2009-08-01 18:18:42 UTC (rev 5801) @@ -1,6 +1,6 @@ ---- php-5.2.9/configure~ 2009-02-25 09:39:40.000000000 -0600 -+++ php-5.2.9/configure 2009-03-13 20:43:49.996093631 -0500 -@@ -4744,7 +4744,7 @@ +--- php-5.2.10/configure.o 2009-06-23 13:56:57.118204433 -0500 ++++ php-5.2.10/configure 2009-06-23 14:01:59.104988013 -0500 +@@ -4776,7 +4776,7 @@ $APXS -q -S CFLAGS="$APXS_CFLAGS" CFLAGS >/dev/null 2>&1 if test "$?" != "0"; then @@ -9,7 +9,7 @@ else APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` if test -z `$APXS -q SYSCONFDIR`; then -@@ -4757,7 +4757,7 @@ +@@ -4789,7 +4789,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -18,7 +18,7 @@ fi fi -@@ -5905,7 +5905,7 @@ +@@ -5937,7 +5937,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -27,7 +27,7 @@ fi case $host_alias in -@@ -6753,7 +6753,7 @@ +@@ -6785,7 +6785,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -36,7 +36,7 @@ fi case $host_alias in -@@ -7770,7 +7770,7 @@ +@@ -7802,7 +7802,7 @@ $APXS -q -S CFLAGS="$APXS_CFLAGS" CFLAGS >/dev/null 2>&1 if test "$?" != "0"; then @@ -45,7 +45,7 @@ else APXS_LIBEXECDIR='$(INSTALL_ROOT)'`$APXS -q LIBEXECDIR` if test -z `$APXS -q SYSCONFDIR`; then -@@ -7783,7 +7783,7 @@ +@@ -7815,7 +7815,7 @@ \$(mkinstalldirs) '$APXS_SYSCONFDIR' && \ $APXS -S LIBEXECDIR='$APXS_LIBEXECDIR' \ -S SYSCONFDIR='$APXS_SYSCONFDIR' \ @@ -54,26 +54,8 @@ fi fi -@@ -19951,7 +19951,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 -@@ -46061,7 +46061,7 @@ +@@ -46657,7 +46657,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 -@@ -46542,7 +46542,7 @@ - if test "$iconv_avail" != "no"; then if test -z "$ICONV_DIR"; then - for i in /usr/local /usr; do @@ -81,18 +63,18 @@ if test -f "$i/include/iconv.h" || test -f "$i/include/giconv.h"; then PHP_ICONV_PREFIX="$i" break -@@ -68556,7 +68556,7 @@ +@@ -68725,7 +68725,7 @@ echo $ac_n "checking for unixODBC support""... $ac_c" 1>&6 - echo "configure:68558: checking for unixODBC support" >&5 + echo "configure:68727: 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 -@@ -77195,8 +77195,8 @@ +@@ -77388,8 +77388,8 @@ echo $ac_n "checking for pg_config""... $ac_c" 1>&6 - echo "configure:77197: checking for pg_config" >&5 + echo "configure:77390: 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" @@ -101,9 +83,9 @@ break; fi done -@@ -80000,8 +80000,8 @@ +@@ -80202,8 +80202,8 @@ echo $ac_n "checking for pg_config""... $ac_c" 1>&6 - echo "configure:80002: checking for pg_config" >&5 + echo "configure:80204: 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" @@ -112,19 +94,19 @@ break; fi done -@@ -83215,7 +83215,7 @@ +@@ -83426,7 +83426,7 @@ echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" -LIBS="-lreadline $LIBS" -+LIBS="-lreadline -lcurses $LIBS" ++LIBS="-lreadline -lcurses $LIBS" cat > conftest.$ac_ext <&6 - echo "configure:103443: checking for XMLRPC-EPI in default path" >&5 + echo "configure:103478: 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 Added: csw/mgar/pkg/php5/trunk/files/pear.conf.CSW =================================================================== --- csw/mgar/pkg/php5/trunk/files/pear.conf.CSW (rev 0) +++ csw/mgar/pkg/php5/trunk/files/pear.conf.CSW 2009-08-01 18:18:42 UTC (rev 5801) @@ -0,0 +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 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 Aug 1 21:30:58 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 19:30:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5802] csw/mgar/pkg/php5/trunk/Makefile Message-ID: Revision: 5802 http://gar.svn.sourceforge.net/gar/?rev=5802&view=rev Author: valholla Date: 2009-08-01 19:30:55 +0000 (Sat, 01 Aug 2009) Log Message: ----------- fix depends Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 18:18:42 UTC (rev 5801) +++ csw/mgar/pkg/php5/trunk/Makefile 2009-08-01 19:30:55 UTC (rev 5802) @@ -32,8 +32,9 @@ SPKG_DESC_CSWphp5 = A High-Level Scripting Languages 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_CSWphp5 = CSWexpat CSWggettextrt CSWiconv CSWpng CSWsqlite +REQUIRED_PKGS_CSWphp5 += CSWlibxml2 CSWzlib CSWmysql5rt CSWxpm CSWt1lib +REQUIRED_PKGS_CSWphp5 += CSWftype2 CSWgd CSWjpeg CSWlibmm REQUIRED_PKGS_CSWphp5devel = CSWphp5 PKGFILES_CSWphp5devel = $(bindir)/php-config 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 Aug 1 22:36:19 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 20:36:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5803] csw/mgar/pkg/subversion/trunk/Makefile Message-ID: Revision: 5803 http://gar.svn.sourceforge.net/gar/?rev=5803&view=rev Author: valholla Date: 2009-08-01 20:36:19 +0000 (Sat, 01 Aug 2009) Log Message: ----------- fix last part of bug 3792 libsvn_ra_dav-1.so.0 missing Modified Paths: -------------- csw/mgar/pkg/subversion/trunk/Makefile Modified: csw/mgar/pkg/subversion/trunk/Makefile =================================================================== --- csw/mgar/pkg/subversion/trunk/Makefile 2009-08-01 19:30:55 UTC (rev 5802) +++ csw/mgar/pkg/subversion/trunk/Makefile 2009-08-01 20:36:19 UTC (rev 5803) @@ -21,10 +21,8 @@ # new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -EXTRA_LIB = $(prefix)/bdb44/lib $(SVNLIB) -EXTRA_LIB += $(prefix)/apache2/lib -EXTRA_INC = $(prefix)/bdb44/include -EXTRA_INC += $(prefix)/apache2/include +EXTRA_LIB = $(SVNLIB) $(prefix)/apache2/lib +EXTRA_INC = $(prefix)/apache2/include WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) @@ -34,7 +32,7 @@ SPKG_DESC_CSWsvn = Version control rethought CATALOGNAME_CSWsvn = subversion -REQUIRED_PKGS_CSWsvn = CSWapache2rt CSWbdb44 CSWexpat CSWggettextrt +REQUIRED_PKGS_CSWsvn = CSWapache2rt CSWbdb CSWexpat CSWggettextrt REQUIRED_PKGS_CSWsvn += CSWiconv CSWkrb5lib CSWlibnet CSWneon CSWoldaprt REQUIRED_PKGS_CSWsvn += CSWosslrt CSWsasl CSWzlib CSWsqlite3rt SPKG_DESC_CSWsvn-devel = Subversion Development Support @@ -46,19 +44,19 @@ SPKG_DESC_CSWjavasvn = Subversion Java Language Binding CATALOGNAME_CSWjavasvn = javasvn REQUIRED_PKGS_CSWjavasvn = CSWsvn CSWapache2rt CSWneon CSWoldaprt -REQUIRED_PKGS_CSWjavasvn += CSWbdb44 CSWexpat CSWggettextrt CSWiconv +REQUIRED_PKGS_CSWjavasvn += CSWbdb CSWexpat CSWggettextrt CSWiconv SPKG_DESC_CSWpmsvn = Subversion Perl Language Binding CATALOGNAME_CSWpmsvn = pm_subversion -REQUIRED_PKGS_CSWpmsvn = CSWsvn CSWperl CSWapache2rt CSWbdb44 CSWexpat +REQUIRED_PKGS_CSWpmsvn = CSWsvn CSWperl CSWapache2rt CSWbdb CSWexpat REQUIRED_PKGS_CSWpmsvn += CSWggettextrt CSWiconv CSWoldaprt SPKG_DESC_CSWpysvn = Subversion Python Language Binding CATALOGNAME_CSWpysvn = pysvn -REQUIRED_PKGS_CSWpysvn = CSWsvn CSWpython CSWapache2rt CSWbdb44 CSWexpat +REQUIRED_PKGS_CSWpysvn = CSWsvn CSWpython CSWapache2rt CSWbdb CSWexpat REQUIRED_PKGS_CSWpysvn += CSWggettextrt CSWiconv CSWoldaprt SPKG_DESC_CSWrbsvn = Subversion Ruby Language Binding CATALOGNAME_CSWrbsvn = rbsvn REQUIRED_PKGS_CSWrbsvn = CSWsvn CSWruby CSWiconv CSWoldaprt -REQUIRED_PKGS_CSWrbsvn += CSWapache2rt CSWbdb44 CSWexpat CSWggettextrt +REQUIRED_PKGS_CSWrbsvn += CSWapache2rt CSWbdb CSWexpat CSWggettextrt PKGFILES_CSWsvn-devel = $(PKGFILES_DEVEL) PKGFILES_CSWap2svn = $(prefix)/apache2.* @@ -91,7 +89,7 @@ NOISALIST = 1 LDFLAGS = -R/opt/csw/lib -L/opt/csw/lib -R/opt/csw/apache2/lib -LDFLAGS += -L/opt/csw/apache2/lib -L$(SVNLIB) -lintl -liconv +LDFLAGS += -L/opt/csw/apache2/lib -L$(SVNLIB) -lintl -liconv export LDFLAGS EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc @@ -102,6 +100,7 @@ CONFIGURE_ARGS = $(DIRPATHS) --libdir=$(SVNLIB) --libexecdir=$(SVNLIB) CONFIGURE_ARGS += --disable-mod-activation CONFIGURE_ARGS += --disable-static +CONFIGURE_ARGS += --with-berkeley-db=db.h:/opt/csw/include:/opt/csw/lib:db-4.7 CONFIGURE_ARGS += --enable-javahl CONFIGURE_ARGS += --with-apr=$(prefix)/apache2/bin/apr-config CONFIGURE_ARGS += --with-apr-util=$(prefix)/apache2/bin/apu-config @@ -124,6 +123,7 @@ BINDING_TARGETS = $(foreach LANG,$(BINDING_LANGS),svn-$(LANG)) PI_DEPENDS = install-extras +PI_DEPENDS += fix-ra_dav PI_DEPENDS += $(BINDING_TARGETS) PI_DEPENDS += copy-templates PI_DEPENDS += fix-install @@ -166,6 +166,16 @@ $(DESTDIR)$(prefix)/apache2/etc $(MAKECOOKIE) +fix-ra_dav: + @# libsvn_ra_dav-1* has been renamed to libsvn_ra_neon-1* + @# in the new versions of subversion, + @# we need to link for backward compatability + @(gln -s $(DESTDIR)$(libdir)/libsvn_ra_neon-1.so.0.0.0 \ + $(DESTDIR)$(libdir)/libsvn_ra_dav-1.so.0) + @(gln -s $(DESTDIR)$(libdir)/libsvn_ra_neon-1.so.0.0.0 \ + $(DESTDIR)$(libdir)/libsvn_ra_dav-1.so) + @$(MAKECOOKIE) + install-extras: @(ginstall -d $(DESTDIR)$(docdir)/subversion/tools) @(ginstall -d $(DESTDIR)$(docdir)/subversion/contrib) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 1 23:10:10 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 01 Aug 2009 21:10:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5804] csw/mgar/pkg/mercurial/trunk Message-ID: Revision: 5804 http://gar.svn.sourceforge.net/gar/?rev=5804&view=rev Author: rthurner Date: 2009-08-01 21:10:10 +0000 (Sat, 01 Aug 2009) Log Message: ----------- remove mercurial common as it broke serving with mod_wsgi Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-01 20:36:19 UTC (rev 5803) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-01 21:10:10 UTC (rev 5804) @@ -9,23 +9,14 @@ MASTER_SITES = http://selenic.com/mercurial/release/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWmercurial,changelog.CSW) -DISTFILES += $(call admfiles,CSWmercurial-common,) SPKG_DESC_CSWmercurial = Mercurial -SPKG_DESC_CSWmercurial_common = Mercurial, common files REQUIRED_PKGS_CSWmercurial = CSWpython # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PKGFILES_CSWmercurial-common = $(PKGFILES_DOC) -PKGFILES_CSWmercurial-common += /opt/csw/share/man/.* -PKGFILES_CSWmercurial-common += /opt/csw/lib/python/site-packages/mercurial/templates/.* - -#PKGFILES_CSWmercurial = /opt/csw/bin -# $(prefix)/.* - CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py # Some tests fail, but manual inspection of the failures show no significant failures. @@ -36,26 +27,3 @@ include gar/category.mk -pre-install-modulated: - mkdir -p $(DESTDIR)/opt/csw/share/man/man1 - mkdir -p $(DESTDIR)/opt/csw/share/man/man5 - mkdir -p $(DESTDIR)/opt/csw/share/doc/mercurial - cp $(WORKDIR)/$(DISTNAME)/doc/*.1 $(DESTDIR)/opt/csw/share/man/man1 - cp $(WORKDIR)/$(DISTNAME)/doc/*.5 $(DESTDIR)/opt/csw/share/man/man5 - cp -r $(WORKDIR)/$(DISTNAME)/contrib $(DESTDIR)/opt/csw/share/doc/mercurial - cp -r $(WORKDIR)/$(DISTNAME)/*.cgi $(DESTDIR)/opt/csw/share/doc/mercurial - rm -rf \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/macosx \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/*rpm* \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/*spec* \ - $(DESTDIR)/opt/csw/share/doc/mercurial/contrib/win32 - -post-install-modulated: - cp $(WORKDIR)/CSWmercurial.changelog.CSW $(DESTDIR)/opt/csw/share/doc/mercurial/changelog.CSW - ( cd $(DESTDIR) && find . -type f | xargs grep '#!.*python$$' ) | cut -f 1 -d: | while read file; do\ - sed '1c\ -#!/opt/csw/bin/python' $(DESTDIR)/$$file > $(WORKDIR)/tmp; \ - mv $(WORKDIR)/tmp $(DESTDIR)/$$file; \ - done - -#PATH := /opt/csw/bin:$(PATH) Deleted: csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec =================================================================== --- csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec 2009-08-01 20:36:19 UTC (rev 5803) +++ csw/mgar/pkg/mercurial/trunk/files/CSWmercurial-common.gspec 2009-08-01 21:10:10 UTC (rev 5804) @@ -1,7 +0,0 @@ -%var bitname mercurial_common -%var pkgname CSWmercurial-common -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/mercurial-common/LICENSE for license information - 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 Aug 2 00:25:17 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 01 Aug 2009 22:25:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5805] csw/mgar/pkg/python/trunk/Makefile Message-ID: Revision: 5805 http://gar.svn.sourceforge.net/gar/?rev=5805&view=rev Author: valholla Date: 2009-08-01 22:25:17 +0000 (Sat, 01 Aug 2009) Log Message: ----------- split python-test and distutils to seperate packages repacake against berkeleydb 4.7 Modified Paths: -------------- csw/mgar/pkg/python/trunk/Makefile Modified: csw/mgar/pkg/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/python/trunk/Makefile 2009-08-01 21:10:10 UTC (rev 5804) +++ csw/mgar/pkg/python/trunk/Makefile 2009-08-01 22:25:17 UTC (rev 5805) @@ -71,7 +71,7 @@ # use prototype filters to set the class PROTOTYPE_FILTER = awk '$$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' -PACKAGES = CSWidle CSWpython CSWpydistutils CSWpython-devel CSWpython-rt CSWpython-tk +PACKAGES = CSWidle CSWpython CSWpydistutils CSWpython-devel CSWpython-rt CSWpython-tk CSWpython-test PKGFILES_CSWidle = $(libdir)/.*/idlelib/.* PKGFILES_CSWidle += $(bindir)/idle @@ -81,6 +81,7 @@ PKGFILES_CSWpython-rt += $(libdir)/.*libpython.* PKGFILES_CSWpython-tk = $(libdir)/.*/lib-tk/.* PKGFILES_CSWpython-tk += $(libdir)/.*/lib-dynload/_tkinter.so.* +PKGFILES_CSWpython-test = $(libdir)/python/test/.* ENABLE_CHECK = 0 @@ -92,6 +93,7 @@ REQUIRED_PKGS_CSWpython-tk += CSWpython-rt CSWcswclassutils REQUIRED_PKGS_CSWpydistutils = CSWpython CSWcswclassutils REQUIRED_PKGS_CSWpython-devel = CSWpython CSWcswclassutils +REQUIRED_PKGS_CSWpython-test = CSWpython CSWcswclassutils CATALOGNAME_CSWpydistutils = pydistutils CATALOGNAME_CSWidle = idle @@ -99,6 +101,7 @@ CATALOGNAME_CSWpython-devel = python_devel CATALOGNAME_CSWpython-rt = python_rt CATALOGNAME_CSWpython-tk = python_tk +CATALOGNAME_CSWpython-test = python_test SPKG_DESC_CSWidle = Python IDE SPKG_DESC_CSWdistutils = Python Distutils makes modules and extensions easily available @@ -106,9 +109,9 @@ SPKG_DESC_CSWpython-devel = Development Files for Python SPKG_DESC_CSWpython-rt = Python Runtime Libraries SPKG_DESC_CSWpython-tk = Python Tk Interface (TkInter) +SPKG_DESC_CSWpython-test = Python Test modules POST_INST_SCR = add-depricated-libs -POST_INST_SCR += remove-compiled-py post-install-modulated: $(POST_INST_SCR) @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 10:17:07 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 08:17:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5806] csw/mgar/pkg Message-ID: Revision: 5806 http://gar.svn.sourceforge.net/gar/?rev=5806&view=rev Author: wahwah Date: 2009-08-02 08:17:07 +0000 (Sun, 02 Aug 2009) Log Message: ----------- libsndfile: Initial commit Modified Paths: -------------- csw/mgar/pkg/libsndfile/trunk/Makefile csw/mgar/pkg/libsndfile/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libsndfile/ Modified: csw/mgar/pkg/libsndfile/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/pkg/libsndfile/trunk/Makefile 2009-08-02 08:17:07 UTC (rev 5806) @@ -2,159 +2,49 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## -## For more information, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference +GARNAME = libsndfile +GARVERSION = 1.0.20 -GARNAME = mypkg -GARVERSION = 1.0 - -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra CATEGORIES = lib -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = +DESCRIPTION = a C library for reading and writing files containing sampled sound -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. define BLURB - -endef + Libsndfile is a C library for reading and writing files containing sampled + sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one + standard library interface. It is released in source code format under the Gnu + Lesser General Public License. -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = + The library was written to compile and run on a Linux system but should + compile and run on just about any Unix (including MacOSX). It can also be + compiled and run on Win32 systems using the Microsoft compiler and MacOS (OS9 + and earlier) using the Metrowerks compiler. There are directions for compiling + libsndfile on these platforms in the Win32 and MacOS directories of the source + code distribution. -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -# SF_PROJ = + It was designed to handle both little-endian (such as WAV) and big-endian + (such as AIFF) data, and to compile and run correctly on little-endian (such + as Intel and DEC/Compaq Alpha) processor systems as well as big-endian + processor systems such as Motorola 68k, Power PC, MIPS and Sparc. Hopefully + the design of the library will also make it easy to extend for reading and + writing new sound file formats. +endef -# A list of space separated patch filenames from files/ that are to be applied -# to the extracted software before the ./configure stage. Patches need to be -# included in the DISTFILES variable as well. -# PATCHFILES = +MASTER_SITES = http://www.mega-nerd.com/libsndfile/ -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## Set to 1 to mark the package as architecture-independent. -# ARCHALL = 0 +REQUIRED_PKGS = CSWvorbis CSWflac CSWlibogg +PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -# EXTRA_MERGE_EXCLUDE_FILES = +SPKG_SOURCEURL = http://www.mega-nerd.com/libsndfile/ -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -# INCOMPATIBLE_PKGS = - -# The name of the license file that should be included in your package. Defaults -# to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -# on including and displaying licenses. -# LICENSE = - -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -# PACKAGES = - -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -# PROTOTYPE_FILTER = - -## A list of runtime package dependencies in the form of CSWfoo. -# REQUIRED_PKGS = - -## When using non-empty $(PACKAGES): -# REQUIRED_PKGS_CSWpkgname = -# SPKG_DESC_CSWpkgname = -# PKGFILES_CSWpkgname = - -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -# SPKG_SOURCEURL = - -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -# STRIP_DIRS = - -## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -# CONFIGURE_SCRIPTS = -# BUILD_SCRIPTS = -# INSTALL_SCRIPTS = -# TEST_SCRIPTS = - -## Compilation settings - -## The build directory. -# WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) - -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -# BUILD_ARGS = - -## Arguments passed to the ./configure script. +TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) -# BUILD64 = -# CONFIGURE_ENV = -# EXTRA_CFLAGS = -# EXTRA_LDFLAGS = -# EXTRA_INC = -# EXTRA_LIB = -# GARFLAVOR = -# INSTALL_ARGS = -# OPT_FLAGS_SOS = -xO3 -# OPT_FLAGS_GCC = -O2 -pipe +EXTRA_CFLAGS = -features=extensions +EXTRA_CXXFLAGS = -features=extensions -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -# GARCOMPILER = SOS11 - -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +include gar/category.mk Modified: csw/mgar/pkg/libsndfile/trunk/checksums =================================================================== --- csw/mgar/pkg/template/trunk/checksums 2009-08-01 08:56:44 UTC (rev 5795) +++ csw/mgar/pkg/libsndfile/trunk/checksums 2009-08-02 08:17:07 UTC (rev 5806) @@ -0,0 +1 @@ +e0553e12c7a467af44693e95e2eac668 download/libsndfile-1.0.20.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sun Aug 2 10:53:11 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sun, 02 Aug 2009 08:53:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5807] csw/mgar/pkg/mercurial/trunk/Makefile Message-ID: Revision: 5807 http://gar.svn.sourceforge.net/gar/?rev=5807&view=rev Author: rthurner Date: 2009-08-02 08:53:10 +0000 (Sun, 02 Aug 2009) Log Message: ----------- mercurial: only require python-rt instead of python Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-02 08:17:07 UTC (rev 5806) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2009-08-02 08:53:10 UTC (rev 5807) @@ -12,7 +12,7 @@ SPKG_DESC_CSWmercurial = Mercurial -REQUIRED_PKGS_CSWmercurial = CSWpython +REQUIRED_PKGS_CSWmercurial = CSWpython-rt # 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 j_arndt at users.sourceforge.net Sun Aug 2 11:09:25 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:09:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5808] csw/mgar/pkg/munin/trunk Message-ID: Revision: 5808 http://gar.svn.sourceforge.net/gar/?rev=5808&view=rev Author: j_arndt Date: 2009-08-02 09:09:25 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: ownerships of some files corrected Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 08:53:10 UTC (rev 5807) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 09:09:25 UTC (rev 5808) @@ -1,6 +1,6 @@ 39296b9aff25a2518394811796ef7ae6 download/CSWmuninmaster.postinstall -bd055e305e9cc70994014917225d3777 download/CSWmuninmaster.prototype -f7dd6a31454b6a40273d8932488234a1 download/CSWmuninnode.prototype +f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype +6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW 59409f4b412953283c3df4546fd4886c download/apache-munin-cgi.conf.CSW e701d132ba0b6f3dcc90190860f5aa6b download/apache-munin.conf.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-02 08:53:10 UTC (rev 5807) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-02 09:09:25 UTC (rev 5808) @@ -1,6 +1,6 @@ -d none /etc/opt/csw/munin 0755 munin munin -d none /etc/opt/csw/munin/apache 0755 munin munin -f cswpreserveconf /etc/opt/csw/munin/munin.conf.CSW 0644 munin munin +d none /etc/opt/csw/munin 0755 root bin +d none /etc/opt/csw/munin/apache 0755 root bin +f cswpreserveconf /etc/opt/csw/munin/munin.conf.CSW 0644 root bin f none /opt/csw/bin/munin-check 0755 root bin f none /opt/csw/bin/munin-cron 0755 root bin f none /opt/csw/libexec/munin/VeraMono.ttf 0755 root bin Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype 2009-08-02 08:53:10 UTC (rev 5807) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninnode.prototype 2009-08-02 09:09:25 UTC (rev 5808) @@ -1,7 +1,7 @@ -d none /etc/opt/csw/munin 0755 munin munin -f cswpreserveconf /etc/opt/csw/munin/munin-node.conf.CSW 0644 munin munin -d none /etc/opt/csw/munin/plugin-conf.d 0755 munin munin -d none /etc/opt/csw/munin/plugins 0755 munin munin +d none /etc/opt/csw/munin 0755 root bin +f cswpreserveconf /etc/opt/csw/munin/munin-node.conf.CSW 0644 root bin +d none /etc/opt/csw/munin/plugin-conf.d 0755 root bin +d none /etc/opt/csw/munin/plugins 0755 root bin f none /opt/csw/bin/munindoc 0755 root bin d none /opt/csw/libexec/munin/plugins 0755 root bin f none /opt/csw/libexec/munin/plugins/amavis 0755 root bin 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 Sun Aug 2 11:42:38 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:42:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5809] csw/mgar/pkg/munin/trunk Message-ID: Revision: 5809 http://gar.svn.sourceforge.net/gar/?rev=5809&view=rev Author: j_arndt Date: 2009-08-02 09:42:38 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: perl shebang in some files changed, so it will be set via configure Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/munindoc.in.diff Added Paths: ----------- csw/mgar/pkg/munin/trunk/files/perlpath.diff Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 09:09:25 UTC (rev 5808) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 09:42:38 UTC (rev 5809) @@ -27,6 +27,7 @@ PATCHFILES += munin-graph.in.diff # use monospace instead of VeraMono.ttf PATCHFILES += munin-update.in.diff # http://munin.projects.linpro.no/ticket/699 PATCHFILES += munindoc.in.diff # PATH to perl set to /opt/csw/bin/perl +PATCHFILES += perlpath.diff # shebang changed to #!@@PERL@@ -w # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 09:09:25 UTC (rev 5808) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 09:42:38 UTC (rev 5809) @@ -12,5 +12,6 @@ 4688659429fbebf8cafcc8eb8a1ee870 download/munin-update.in.diff 737e3e3d2f68015dfb4e857909cde7da download/munin.conf.in.diff e3a58e582407981d4f5c5aed59cbfc47 download/munin_1.3.4.tar.gz -29e1278999379aa7108d3050c0b9d227 download/munindoc.in.diff +8e21ff70a126779e33dd6457839184de download/munindoc.in.diff +d1623381c74f05a174aa4704896ef5b6 download/perlpath.diff 43db53191eaae75be35b3548a993c31e download/sunos_memory.in.diff Modified: csw/mgar/pkg/munin/trunk/files/munindoc.in.diff =================================================================== --- csw/mgar/pkg/munin/trunk/files/munindoc.in.diff 2009-08-02 09:09:25 UTC (rev 5808) +++ csw/mgar/pkg/munin/trunk/files/munindoc.in.diff 2009-08-02 09:42:38 UTC (rev 5809) @@ -1,9 +1,9 @@ diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/munindoc.in munin-1.3.4/node/munindoc.in --- munin-1.3.4.orig/node/munindoc.in 2008-03-08 02:42:39.000000000 +0100 -+++ munin-1.3.4/node/munindoc.in 2009-07-20 20:00:51.639195515 +0200 ++++ munin-1.3.4/node/munindoc.in 2009-08-02 11:31:16.881795848 +0200 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w -+#!/opt/csw/bin/perl -w ++#!@@PERL@@ -w # -*- perl -*- # # This script provides the basis for a plugin documentation system for Added: csw/mgar/pkg/munin/trunk/files/perlpath.diff =================================================================== --- csw/mgar/pkg/munin/trunk/files/perlpath.diff (rev 0) +++ csw/mgar/pkg/munin/trunk/files/perlpath.diff 2009-08-02 09:42:38 UTC (rev 5809) @@ -0,0 +1,26 @@ +diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/node.d/exim_mailstats.in munin-1.3.4/node/node.d/exim_mailstats.in +--- munin-1.3.4.orig/node/node.d/exim_mailstats.in 2008-03-08 02:42:39.000000000 +0100 ++++ munin-1.3.4/node/node.d/exim_mailstats.in 2009-08-02 11:26:39.040437174 +0200 +@@ -1,4 +1,3 @@ +-#!/usr/bin/perl -w + #!@@PERL@@ -w + # -*- perl -*- + +diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/node.d/lpstat.in munin-1.3.4/node/node.d/lpstat.in +--- munin-1.3.4.orig/node/node.d/lpstat.in 2008-03-08 02:42:39.000000000 +0100 ++++ munin-1.3.4/node/node.d/lpstat.in 2009-08-02 11:26:48.080049173 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl ++#!@@PERL@@ -w + ############################################################################# + # # + # This script was initially developed by Anstat Pty Ltd for internal use # +diff --speed-large-files --minimal -Nru munin-1.3.4.orig/node/node.d/snmp__cpuload.in munin-1.3.4/node/node.d/snmp__cpuload.in +--- munin-1.3.4.orig/node/node.d/snmp__cpuload.in 2008-03-08 02:42:39.000000000 +0100 ++++ munin-1.3.4/node/node.d/snmp__cpuload.in 2009-08-02 11:26:57.614639171 +0200 +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl -w ++#!@@PERL@@ -w + # + # Copyright (C) 2006 Lars Strand + # This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 11:53:24 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:53:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5810] csw/mgar/pkg/template/trunk/Makefile Message-ID: Revision: 5810 http://gar.svn.sourceforge.net/gar/?rev=5810&view=rev Author: wahwah Date: 2009-08-02 09:53:24 +0000 (Sun, 02 Aug 2009) Log Message: ----------- template: Formatted to allow automatic purging of documentation comments Modified Paths: -------------- csw/mgar/pkg/template/trunk/Makefile Modified: csw/mgar/pkg/template/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-02 09:42:38 UTC (rev 5809) +++ csw/mgar/pkg/template/trunk/Makefile 2009-08-02 09:53:24 UTC (rev 5810) @@ -5,13 +5,15 @@ ## This file contains comments to guide you through various GAR settings. ## Please remove unnecessary comments before committing your code to the code ## repository. The comments to remove are marked with double hashes. +## If you want to remove them all in-place, use: +## gsed -i -e '/^##/d' Makefile ## -## For more information, please see: +## For more information about GAR variables, please see: ## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference - +## GARNAME = mypkg GARVERSION = 1.0 - +## ## The category that your software fits in. This is not a descriptive field, but ## influences the build process. Depending on the CATEGORIES setting, different ## Makefiles are included from gar/categories/ in your trunk directory, which @@ -21,56 +23,67 @@ ## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, ## xfce, xorg, xtra CATEGORIES = lib - +## ## A one-line description of the package, which will appear in the pkginfo. DESCRIPTION = - +## ## A longer description of the package. This is only for descriptive purposes ## inside the Makefile and is not used elsewhere. define BLURB endef - +## +## Upstream URL that should show up in the VENDOR field as well as on +## http://opencsw.org/packages/. +SPKG_SOURCEURL = +## ## Whitespace-separated list of URLs to download the source package from. ## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). MASTER_SITES = - +## ## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the ## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge ## project name of the software you wish to download. -# SF_PROJ = - -# A list of space separated patch filenames from files/ that are to be applied -# to the extracted software before the ./configure stage. Patches need to be -# included in the DISTFILES variable as well. -# PATCHFILES = - +## SF_PROJ = +## +## A list of space separated patch filenames from files/ that are to be applied +## to the extracted software before the ./configure stage. Patches need to be +## included in the DISTFILES variable as well. +## PATCHFILES = +## ## Whitespace-separated list of files which comprise this build. mGAR will look ## for the files in the $(FILEDIR) (trunk/files) directory and on the ## $(MASTER_SITES). 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 +## +## Catalog name is the name to be used with pkg{-get,util} -i . +## It is different from the system package name, which by convention is CSWpkgname. +## CATALOGNAME = +## ## Set to 1 to mark the package as architecture-independent. -# ARCHALL = 0 - +## ARCHALL = 0 +## ## A list of files / patterns that should be excluded from the package. Amends ## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which ## contains things like libtool .la files and files with a leading ~. -# EXTRA_MERGE_EXCLUDE_FILES = - +## EXTRA_MERGE_EXCLUDE_FILES = +## ## A list of space separated package names that should be marked as ## incompatible with the current package. This will go into the depend file. ## When a user has one of the incompatible packages installed and installs ## your package, he will be prompted that the incompatible package must be ## removed. He will however not be prevented to install your package without ## removing the conflicting package first. -# INCOMPATIBLE_PKGS = - -# The name of the license file that should be included in your package. Defaults -# to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -# on including and displaying licenses. -# LICENSE = - +## INCOMPATIBLE_PKGS = +## +## The name of the license file that should be included in your package. Defaults +## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details +## on including and displaying licenses. +## LICENSE = +## ## A list of space separated package names that should be produced from your ## Makefile. This is used when a software has different components that can be ## packaged and used individually (think runtime libraries, client tools, server @@ -82,8 +95,8 @@ ## $(PACKAGES) list) to define which files go into each package. The first ## package from $(PACKAGES) one will hold all files that are not matched by ## PKGFILES_ for other packages. -# PACKAGES = - +## PACKAGES = +## ## If specified, GAR feeds the almost-final package prototype file to ## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. ## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used @@ -92,27 +105,36 @@ ## you will rarely have to use this. A still valid use case would be to change ## the file permissions of a file to be set-UID. ## See http://wiki.opencsw.org/cswclassutils-package for common usage information -# PROTOTYPE_FILTER = - +## PROTOTYPE_FILTER = +## +## cswclassutils settings +## +## A list of action classes. Possible values are: +## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf +## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, +## you need to add CSWcswclassutils to REQUIRED_PKGS. +## SPKG_CLASSES = none +## Simplified settings for classes: +## PRESERVECONF = +## SAMPLECONF = +## INITSMF = +## USERGROUP = ## A list of runtime package dependencies in the form of CSWfoo. -# REQUIRED_PKGS = - +## REQUIRED_PKGS = +## +## A list of packages necessary to build this package +## PREREQUISITE_PKGS = $(REQUIRED_PKGS) +## ## When using non-empty $(PACKAGES): -# REQUIRED_PKGS_CSWpkgname = -# SPKG_DESC_CSWpkgname = -# PKGFILES_CSWpkgname = - -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -# SPKG_SOURCEURL = - +## REQUIRED_PKGS_CSWpkgname = +## SPKG_DESC_CSWpkgname = +## PKGFILES_CSWpkgname = +## CATALOGNAME_CSWpkgname = +## ## A list of space separated directories where objects should be stripped in ## addition to the bin/ and sbin/ directories. -# STRIP_DIRS = - -## We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz - +## STRIP_DIRS = +## ## Define a custom target for the configure phase. When you set this, the target ## that will be used instead of configure: target, is named ## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile @@ -120,37 +142,37 @@ ## completely (for example when your software doesn't need to be compiled) assign ## this variable an empty value. The procedure works for configure, build, ## install and test steps. -# CONFIGURE_SCRIPTS = -# BUILD_SCRIPTS = -# INSTALL_SCRIPTS = -# TEST_SCRIPTS = - +## CONFIGURE_SCRIPTS = +## BUILD_SCRIPTS = +## INSTALL_SCRIPTS = +## TEST_SCRIPTS = +## ## Compilation settings - +## ## The build directory. -# WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) - +## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) +## ## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this ## for example, if you need to override Makefile variables. -# BUILD_ARGS = - +## BUILD_ARGS = +## ## Arguments passed to the ./configure script. CONFIGURE_ARGS = $(DIRPATHS) - -# BUILD64 = -# CONFIGURE_ENV = -# EXTRA_CFLAGS = -# EXTRA_LDFLAGS = -# EXTRA_INC = -# EXTRA_LIB = -# GARFLAVOR = -# INSTALL_ARGS = -# OPT_FLAGS_SOS = -xO3 -# OPT_FLAGS_GCC = -O2 -pipe - +## +## BUILD64 = +## CONFIGURE_ENV = +## EXTRA_CFLAGS = +## EXTRA_LDFLAGS = +## EXTRA_INC = +## EXTRA_LIB = +## GARFLAVOR = +## INSTALL_ARGS = +## OPT_FLAGS_SOS = -xO3 +## OPT_FLAGS_GCC = -O2 -pipe +## ## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -# GARCOMPILER = SOS11 - +## GARCOMPILER = SOS11 +## # Remove the following rules and uncomment the # include before building. all: .DEFAULT This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 11:58:56 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 09:58:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5811] csw/mgar/pkg/munin/Makefile Message-ID: Revision: 5811 http://gar.svn.sourceforge.net/gar/?rev=5811&view=rev Author: wahwah Date: 2009-08-02 09:58:56 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: Adding package-level Makefile Added Paths: ----------- csw/mgar/pkg/munin/Makefile Copied: csw/mgar/pkg/munin/Makefile (from rev 5810, csw/mgar/pkg/template/Makefile) =================================================================== --- csw/mgar/pkg/munin/Makefile (rev 0) +++ csw/mgar/pkg/munin/Makefile 2009-08-02 09:58:56 UTC (rev 5811) @@ -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 j_arndt at users.sourceforge.net Sun Aug 2 12:03:53 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 10:03:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5812] csw/mgar/pkg/munin/trunk/files/CSWmuninmaster. postinstall Message-ID: Revision: 5812 http://gar.svn.sourceforge.net/gar/?rev=5812&view=rev Author: j_arndt Date: 2009-08-02 10:03:52 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: added install instructions into postinstall script Modified Paths: -------------- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 09:58:56 UTC (rev 5811) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 10:03:52 UTC (rev 5812) @@ -2,8 +2,28 @@ passwd -N munin -echo -echo "Please append the following line to the crontab of the user 'munin':" -echo -echo " 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron" -echo +cat << EOF +# +# +# + +To get Munin running, please follow these steps: + +(1) Append the following line to the crontab of the user 'munin':" + + 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron" + +(2) Edit the Apache configuration for Munin: + "Normal" mode: /etc/opt/csw/munin/apache/apache.conf + CGI mode: /etc/opt/csw/munin/apache/apache-munin-cgi.conf + + (These files should work by default) + +(3) Add the following line to your Apache configuration + + "Normal" mode: Include /etc/opt/csw/munin/apache.conf + CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf + +# +# +# 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 Sun Aug 2 12:05:09 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 10:05:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5813] csw/mgar/pkg/munin/trunk/checksums Message-ID: Revision: 5813 http://gar.svn.sourceforge.net/gar/?rev=5813&view=rev Author: j_arndt Date: 2009-08-02 10:05:09 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: checksum update Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 10:03:52 UTC (rev 5812) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 10:05:09 UTC (rev 5813) @@ -1,4 +1,4 @@ -39296b9aff25a2518394811796ef7ae6 download/CSWmuninmaster.postinstall +ab8fa725c6744f069ace2cdcb5c5b81b download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 12:50:52 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 10:50:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5814] csw/mgar/pkg/libmad Message-ID: Revision: 5814 http://gar.svn.sourceforge.net/gar/?rev=5814&view=rev Author: wahwah Date: 2009-08-02 10:50:52 +0000 (Sun, 02 Aug 2009) Log Message: ----------- libmad: Moving trunk/legacy to tags/legacy Added Paths: ----------- csw/mgar/pkg/libmad/tags/ Removed Paths: ------------- csw/mgar/pkg/libmad/trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 13:43:49 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 11:43:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5815] csw/mgar/pkg/speex/trunk/Makefile Message-ID: Revision: 5815 http://gar.svn.sourceforge.net/gar/?rev=5815&view=rev Author: wahwah Date: 2009-08-02 11:43:49 +0000 (Sun, 02 Aug 2009) Log Message: ----------- speex: Added a required package: CSWlibogg Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/speex/trunk/Makefile Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-02 10:50:52 UTC (rev 5814) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-02 11:43:49 UTC (rev 5815) @@ -1,3 +1,7 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = speex GARVERSION = 1.2rc1 CATEGORIES = lib @@ -11,13 +15,17 @@ PACKAGES = CSWspeex CATALOGNAME = libspeex +REQUIRED_PKGS = CSWlibogg +PREREQUISITE_PKGS = $(REQUIRED_PKGS) SPKG_SOURCEURL = http://www.speex.org/ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -BUILD64 = 1 +# 64-bit doesn't build on x86. +# BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) +TEST_SCRIPTS = include gar/category.mk Property changes on: csw/mgar/pkg/speex/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 2 14:35:21 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 12:35:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5816] csw/mgar/pkg/cpan/BerkeleyDB/trunk Message-ID: Revision: 5816 http://gar.svn.sourceforge.net/gar/?rev=5816&view=rev Author: idogan23 Date: 2009-08-02 12:35:20 +0000 (Sun, 02 Aug 2009) Log Message: ----------- BerkeleyDB: switched to mGar v2 Modified Paths: -------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/ Property changes on: csw/mgar/pkg/cpan/BerkeleyDB/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/BerkeleyDB/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 11:43:49 UTC (rev 5815) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 12:35:20 UTC (rev 5816) @@ -1,5 +1,5 @@ GARNAME = BerkeleyDB -GARVERSION = 0.38 +GARVERSION = 0.39 CATEGORIES = cpan AUTHOR = PMQS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 2 14:41:22 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 12:41:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[5817] csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums Message-ID: Revision: 5817 http://gar.svn.sourceforge.net/gar/?rev=5817&view=rev Author: idogan23 Date: 2009-08-02 12:41:22 +0000 (Sun, 02 Aug 2009) Log Message: ----------- BerkeleyDB: bump version to 0.3.9 Modified Paths: -------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums Modified: csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 12:35:20 UTC (rev 5816) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 12:41:22 UTC (rev 5817) @@ -1,2 +1,2 @@ +da4cff937216a147162a6df76cae8096 download/BerkeleyDB-0.39.tar.gz 0fbfe55149dc106b82c7c38fdd3601b8 download/CSWpmberkeleydb.gspec -33a0c1a9d566a3f5fc71601a165d8335 download/BerkeleyDB-0.38.tar.gz 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 Sun Aug 2 17:43:49 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 02 Aug 2009 15:43:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5818] csw/mgar/pkg/munin/trunk Message-ID: Revision: 5818 http://gar.svn.sourceforge.net/gar/?rev=5818&view=rev Author: j_arndt Date: 2009-08-02 15:43:49 +0000 (Sun, 02 Aug 2009) Log Message: ----------- munin: corrected typos, added dependency to CSWpmdbi Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 12:41:22 UTC (rev 5817) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-02 15:43:49 UTC (rev 5818) @@ -47,7 +47,7 @@ REQUIRED_PKGS_CSWmuninmaster = CSWpmhtmltmpl CSWpmdatemanip CSWpmmd5 CSWrrd CSWapache2 REQUIRED_PKGS_CSWmuninmaster = CSWcswclassutils -REQUIRED_PKGS_CSWmuninnode = CSWpmnetsnmp CSWpmnetserver CSWperl CSWtop CSWcswclassutils +REQUIRED_PKGS_CSWmuninnode = CSWpmdbi CSWpmnetsnmp CSWpmnetserver CSWperl CSWtop CSWcswclassutils SPKG_CLASSES_CSWmuninmaster = none cswusergroup cswpreserveconf ugfiles SPKG_CLASSES_CSWmuninnode = none cswusergroup ugfiles cswpreserveconf cswinitsmf Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-02 12:41:22 UTC (rev 5817) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-02 15:43:49 UTC (rev 5818) @@ -1,4 +1,4 @@ -ab8fa725c6744f069ace2cdcb5c5b81b download/CSWmuninmaster.postinstall +cfe000894b343d2f36f41195b1ac2365 download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 12:41:22 UTC (rev 5817) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-02 15:43:49 UTC (rev 5818) @@ -24,6 +24,10 @@ "Normal" mode: Include /etc/opt/csw/munin/apache.conf CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf +(4) Add the user your webserver is running under (nobody for Apache) to + the group "munin" + # # # +EOF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 2 18:11:07 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 16:11:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5819] csw/mgar/pkg/cpan/BerkeleyDB/trunk Message-ID: Revision: 5819 http://gar.svn.sourceforge.net/gar/?rev=5819&view=rev Author: idogan23 Date: 2009-08-02 16:11:06 +0000 (Sun, 02 Aug 2009) Log Message: ----------- BerkeleyDB: linked against Berkeley DB 4,7 & some smaller packaging changes Modified Paths: -------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff Removed Paths: ------------- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec Modified: csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/Makefile 2009-08-02 16:11:06 UTC (rev 5819) @@ -8,6 +8,13 @@ Includes BerkeleyDB, BerkeleyDB::Btree, BerkeleyDB::Hash endef -DISTFILES += $(call admfiles,CSWpmberkeleydb,) +PACKAGES = CSWpmberkeleydb +CATALOGNAME = pm_berkeleydb +DISTFILES += CSWpmberkeleydb.config.in.diff + +PATCHFILES = CSWpmberkeleydb.config.in.diff + +REQUIRED_PKGS += CSWbdb + include gar/category.mk Modified: csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/checksums 2009-08-02 16:11:06 UTC (rev 5819) @@ -1,2 +1,2 @@ da4cff937216a147162a6df76cae8096 download/BerkeleyDB-0.39.tar.gz -0fbfe55149dc106b82c7c38fdd3601b8 download/CSWpmberkeleydb.gspec +bd611cd1c09f11bde779fc0b3e5adf97 download/CSWpmberkeleydb.config.in.diff Added: csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff (rev 0) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.config.in.diff 2009-08-02 16:11:06 UTC (rev 5819) @@ -0,0 +1,29 @@ +diff --speed-large-files --minimal -Nru BerkeleyDB-0.39.orig/config.in BerkeleyDB-0.39/config.in +--- BerkeleyDB-0.39.orig/config.in 2009-06-06 20:04:31.000000000 +0200 ++++ BerkeleyDB-0.39/config.in 2009-08-02 17:41:37.220435289 +0200 +@@ -9,7 +9,7 @@ + + #INCLUDE = /usr/local/include + #INCLUDE = ../.. +-INCLUDE = /usr/local/BerkeleyDB/include ++INCLUDE = /opt/csw/include + + # 2. Where is libdb? + # +@@ -18,7 +18,7 @@ + + #LIB = /usr/local/lib + #LIB = ../.. +-LIB = /usr/local/BerkeleyDB/lib ++LIB = /opt/csw/lib + + # 3. Is the library called libdb? + # +@@ -40,6 +40,6 @@ + # below (by removing the leading #) and edit the line to use the name + # you have picked. + +-#DBNAME = -ldb-3.0 ++DBNAME = -ldb-4.7 + + # end of file config.in Deleted: csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.depend 2009-08-02 16:11:06 UTC (rev 5819) @@ -1 +0,0 @@ -P CSWbdb44 Deleted: csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec =================================================================== --- csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec 2009-08-02 15:43:49 UTC (rev 5818) +++ csw/mgar/pkg/cpan/BerkeleyDB/trunk/files/CSWpmberkeleydb.gspec 2009-08-02 16:11:06 UTC (rev 5819) @@ -1,8 +0,0 @@ -%var bitname pm_berkeleydb -%var pkgname CSWpmberkeleydb -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 1997-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 idogan23 at users.sourceforge.net Sun Aug 2 20:52:10 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 18:52:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5820] csw/mgar/pkg/amavisd-new/trunk/ Message-ID: Revision: 5820 http://gar.svn.sourceforge.net/gar/?rev=5820&view=rev Author: idogan23 Date: 2009-08-02 18:52:09 +0000 (Sun, 02 Aug 2009) Log Message: ----------- amavisd_new: switched to mGar v2 Property Changed: ---------------- csw/mgar/pkg/amavisd-new/trunk/ Property changes on: csw/mgar/pkg/amavisd-new/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 idogan23 at users.sourceforge.net Sun Aug 2 22:38:28 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 02 Aug 2009 20:38:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[5821] csw/mgar/pkg/amavisd-new/trunk Message-ID: Revision: 5821 http://gar.svn.sourceforge.net/gar/?rev=5821&view=rev Author: idogan23 Date: 2009-08-02 20:38:27 +0000 (Sun, 02 Aug 2009) Log Message: ----------- amavisd_new: switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/amavisd-new/trunk/Makefile csw/mgar/pkg/amavisd-new/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec Modified: csw/mgar/pkg/amavisd-new/trunk/Makefile =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-02 20:38:27 UTC (rev 5821) @@ -7,13 +7,37 @@ amavisd-new is a performance-enhanced daemonized version of amavis-perl endef +PACKAGES = CSWamavisdnew +CATALOGNAME = amavisd_new +ARCHALL = 1 + MASTER_SITES = http://www.ijs.si/software/amavisd/#download DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWamavisdnew, depend postinstall preinstall prototype) +DISTFILES += CSWamavisdnew.postinstall +DISTFILES += CSWamavisdnew.preinstall +DISTFILES += CSWamavisdnew.prototype +#DISTFILES += $(call admfiles,CSWamavisdnew, postinstall preinstall prototype) + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS += CSWperl +REQUIRED_PKGS += CSWcswclassutils +REQUIRED_PKGS += CSWpmiostringy +REQUIRED_PKGS += CSWpmnetserver +REQUIRED_PKGS += CSWpmmailtools +REQUIRED_PKGS += CSWpmmimetools +REQUIRED_PKGS += CSWpmcompresszlib +REQUIRED_PKGS += CSWpmarchivetar +REQUIRED_PKGS += CSWpmarchivezip +REQUIRED_PKGS += CSWspamassassin +REQUIRED_PKGS += CSWpmberkeleydb +REQUIRED_PKGS += CSWpmconverttnef +REQUIRED_PKGS += CSWpmconvertuulib +REQUIRED_PKGS += CSWpmmaildkim +REQUIRED_PKGS += CSWpmunixsyslog + PATCHFILES += amavisd-agent.diff PATCHFILES += amavisd-nanny.diff PATCHFILES += amavisd-release.diff @@ -29,10 +53,19 @@ INSTALL_SCRIPTS = custom AMAVISBIN=amavisd-agent amavisd-nanny amavisd-release p0f-analyzer.pl +AMAVISBIN += amavisd-nanny +AMAVISBIN += amavisd-release +AMAVISBIN += p0f-analyzer.pl + AMAVISSBIN=amavisd-new -AMAVISDOC=LDAP.schema README_FILES RELEASE_NOTES AAAREADME.first \ - amavisd.conf-default amavisd.conf-sample +AMAVISDOC=LDAP.schema +AMAVISDOC += README_FILES +AMAVISDOC += RELEASE_NOTES +AMAVISDOC += AAAREADME.first +AMAVISDOC += amavisd.conf-default +AMAVISDOC += amavisd.conf-sample + install-custom: echo " ==> Installing $(GARNAME)" ginstall -d $(DESTDIR)$(prefix)/etc Modified: csw/mgar/pkg/amavisd-new/trunk/checksums =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-02 20:38:27 UTC (rev 5821) @@ -1,11 +1,9 @@ -02b0bd38b40258841c60479603dc6842 download/amavisd-new-2.6.3.tar.gz -979fd28f16513f660912311c3566786d download/CSWamavisdnew.gspec -1a54bc6b9d92afadc704c394cb93fa00 download/CSWamavisdnew.depend 65f66fb3036b7949057733aa99cff724 download/CSWamavisdnew.postinstall 171767585ab6662c0cbedae26e9baa2c download/CSWamavisdnew.preinstall 631e33b02eb813b9f3f13db03b5c12eb download/CSWamavisdnew.prototype b9cafe6715bc2703ac9411f24f248cd3 download/amavisd-agent.diff 3e81998c8b933129870e3cab68d40261 download/amavisd-nanny.diff +02b0bd38b40258841c60479603dc6842 download/amavisd-new-2.6.3.tar.gz f218d10e5280940268a3ffaa125a00ae download/amavisd-release.diff 9c3d4118cf3837e559a6026d6b89b377 download/amavisd.conf.diff 071af9fb79ee5e9d045905043fea2b96 download/amavisd.diff Deleted: csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.depend 2009-08-02 20:38:27 UTC (rev 5821) @@ -1,15 +0,0 @@ -P CSWperl -P CSWcswclassutils -P CSWpmunixsyslog -P CSWpmiostringy -P CSWpmnetserver -P CSWpmmailtools -P CSWpmmimetools -P CSWpmcompresszlib -P CSWpmarchivetar -P CSWpmarchivezip -P CSWspamassassin -P CSWpmberkeleydb -P CSWpmconverttnef -P CSWpmconvertuulib -P CSWpmmaildkim Deleted: csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec 2009-08-02 18:52:09 UTC (rev 5820) +++ csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.gspec 2009-08-02 20:38:27 UTC (rev 5821) @@ -1,5 +0,0 @@ -%var bitname amavisd_new -%var pkgname CSWamavisdnew -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 23:12:07 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 21:12:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5822] csw/mgar/pkg/cfg2html/ Message-ID: Revision: 5822 http://gar.svn.sourceforge.net/gar/?rev=5822&view=rev Author: wahwah Date: 2009-08-02 21:12:04 +0000 (Sun, 02 Aug 2009) Log Message: ----------- cfg2html: Copying the template Added Paths: ----------- csw/mgar/pkg/cfg2html/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 23:21:46 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 21:21:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5823] csw/mgar/pkg/cfg2html/trunk Message-ID: Revision: 5823 http://gar.svn.sourceforge.net/gar/?rev=5823&view=rev Author: wahwah Date: 2009-08-02 21:21:20 +0000 (Sun, 02 Aug 2009) Log Message: ----------- cfg2html: The build file. I have no idea if it's correct. Modified Paths: -------------- csw/mgar/pkg/cfg2html/trunk/Makefile csw/mgar/pkg/cfg2html/trunk/checksums Modified: csw/mgar/pkg/cfg2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:12:04 UTC (rev 5822) +++ csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:21:20 UTC (rev 5823) @@ -2,181 +2,35 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra -CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +GARNAME = cfg2html +GARVERSION = 1.14r1.8 +CATEGORIES = utils +DESCRIPTION = Configuration documentation generator define BLURB - endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://tech.groups.yahoo.com/group/cfg2html/ +MASTER_SITES = http://tech.groups.yahoo.com/group/cfg2html/files/sun/ +DISTFILES = $(GARNAME)-sun_$(GARVERSION).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = cfg2html +TEST_SCRIPTS = +WORKSRC = $(WORKDIR)/$(GARNAME) -#include gar/category.mk +install-cfg2html: + ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/plugins + ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/doc + (\ + cd $(WORKSRC); \ + for d in plugins doc html; do \ + ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/$${d}; \ + for f in plugins/*; do \ + ginstall $${f} $(DESTDIR)$(datadir)/$(GARNAME)/$${d}; \ + done; \ + done; \ + ) + ginstall -d $(DESTDIR)$(bindir) + ginstall -m 0755 $(WORKSRC)/cfg2html_sun.sh $(DESTDIR)$(bindir) + +include gar/category.mk Modified: csw/mgar/pkg/cfg2html/trunk/checksums =================================================================== --- csw/mgar/pkg/cfg2html/trunk/checksums 2009-08-02 21:12:04 UTC (rev 5822) +++ csw/mgar/pkg/cfg2html/trunk/checksums 2009-08-02 21:21:20 UTC (rev 5823) @@ -0,0 +1 @@ +26d4b796d0ae7203ce8ed6697ec88020 download/cfg2html-sun_1.14r1.8.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 2 23:24:58 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 02 Aug 2009 21:24:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5824] csw/mgar/pkg/cfg2html/trunk/Makefile Message-ID: Revision: 5824 http://gar.svn.sourceforge.net/gar/?rev=5824&view=rev Author: wahwah Date: 2009-08-02 21:24:56 +0000 (Sun, 02 Aug 2009) Log Message: ----------- cfg2html: ARCHALL = 1 Modified Paths: -------------- csw/mgar/pkg/cfg2html/trunk/Makefile Modified: csw/mgar/pkg/cfg2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:21:20 UTC (rev 5823) +++ csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-02 21:24:56 UTC (rev 5824) @@ -17,6 +17,7 @@ INSTALL_SCRIPTS = cfg2html TEST_SCRIPTS = WORKSRC = $(WORKDIR)/$(GARNAME) +ARCHALL = 1 install-cfg2html: ginstall -d $(DESTDIR)$(datadir)/$(GARNAME)/plugins 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 Aug 3 09:49:53 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 03 Aug 2009 07:49:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5825] csw/mgar/pkg/amavisd-new/trunk Message-ID: Revision: 5825 http://gar.svn.sourceforge.net/gar/?rev=5825&view=rev Author: idogan23 Date: 2009-08-03 07:49:53 +0000 (Mon, 03 Aug 2009) Log Message: ----------- amavisd_new: changed Paths to the db_* utils in postinstall Modified Paths: -------------- csw/mgar/pkg/amavisd-new/trunk/checksums csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall Modified: csw/mgar/pkg/amavisd-new/trunk/checksums =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-02 21:24:56 UTC (rev 5824) +++ csw/mgar/pkg/amavisd-new/trunk/checksums 2009-08-03 07:49:53 UTC (rev 5825) @@ -1,4 +1,4 @@ -65f66fb3036b7949057733aa99cff724 download/CSWamavisdnew.postinstall +2df80947353821e6e94fcad09a1bb3da download/CSWamavisdnew.postinstall 171767585ab6662c0cbedae26e9baa2c download/CSWamavisdnew.preinstall 631e33b02eb813b9f3f13db03b5c12eb download/CSWamavisdnew.prototype b9cafe6715bc2703ac9411f24f248cd3 download/amavisd-agent.diff Modified: csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall 2009-08-02 21:24:56 UTC (rev 5824) +++ csw/mgar/pkg/amavisd-new/trunk/files/CSWamavisdnew.postinstall 2009-08-03 07:49:53 UTC (rev 5825) @@ -17,29 +17,25 @@ echo "Running db_verify (before upgrade) on $DB_HOME" >>$installlog for each_db in `ls *.db` do - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 done # Update the database environment to the new value echo "Running db_recover on $DB_HOME" >>$installlog - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_recover -h $DB_HOME >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_recover -h $DB_HOME >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_recover -h $DB_HOME >>$installlog 2>&1 # Upgrade each file. This does nothing if no upgrade is needed. echo "Running db_upgrade on $DB_HOME" >>$installlog for each_db in `ls *.db` do - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_upgrade -h $DB_HOME $each_db >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_upgrade -h $DB_HOME $each_db >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_upgrade -h $DB_HOME $each_db >>$installlog 2>&1 done # Verify each file echo "Running db_verify (after upgrade) on $DB_HOME" >>$installlog for each_db in `ls *.db` do - #chroot $PKG_ROOT_DIR /opt/csw/bdb4/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 - ${BASEDIR}/opt/csw/bdb44/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 + ${BASEDIR}/opt/csw/bin/db_verify -h $DB_HOME -o $each_db >>$installlog 2>&1 done fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 3 10:36:43 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 03 Aug 2009 08:36:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[5826] csw/mgar/pkg/flac/trunk Message-ID: Revision: 5826 http://gar.svn.sourceforge.net/gar/?rev=5826&view=rev Author: dmichelsen Date: 2009-08-03 08:36:42 +0000 (Mon, 03 Aug 2009) Log Message: ----------- flac: Include legacy libs libFLAC.so.4 from 1.0.4, fixing #3791 Modified Paths: -------------- csw/mgar/pkg/flac/trunk/Makefile csw/mgar/pkg/flac/trunk/checksums Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 07:49:53 UTC (rev 5825) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 08:36:42 UTC (rev 5826) @@ -4,11 +4,13 @@ EXTRA_MODULATORS = GARVERSION # Version 1.1.2 is the last to contain libflac.so.7 where most of the binaries depend on -MODULATIONS_GARVERSION = 1.1.2 1.2.1 +MODULATIONS_GARVERSION = 1.0.4 1.1.2 1.2.1 # There was no 64 bit legacy version. Do not provide it as new binaries should # link against the new version. -SKIP_MODULATIONS = isa-sparcv9-garversion-1.1.2 +SKIP_MODULATIONS = isa-sparcv9-garversion-1.0.4 +SKIP_MODULATIONS += isa-amd64-garversion-1.0.4 +SKIP_MODULATIONS += isa-sparcv9-garversion-1.1.2 SKIP_MODULATIONS += isa-amd64-garversion-1.1.2 DESCRIPTION = Free lossless audio codec @@ -58,6 +60,9 @@ BUILD64 = 1 +# For 1.0.4 +EXTRA_LINKER_FLAGS = -liconv + NODIRPATHS = --includedir CPPFLAGS = @@ -71,6 +76,11 @@ TEST_TARGET = check +MERGE_SCRIPTS_isa-i386-garversion-1.0.4 = copy-only +MERGE_DIRS_isa-i386-garversion-1.0.4 = $(libdir) +MERGE_SCRIPTS_isa-amd64-garversion-1.0.4 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-1.0.4 = $(libdir) + MERGE_SCRIPTS_isa-i386-garversion-1.1.2 = copy-only MERGE_DIRS_isa-i386-garversion-1.1.2 = $(libdir) MERGE_SCRIPTS_isa-amd64-garversion-1.1.2 = copy-relocated-only @@ -80,6 +90,11 @@ MERGE_SCRIPTS_isa-amd64-garversion-1.2.1 = copy-relocated-only MERGE_DIRS_isa-amd64-garversion-1.2.1 = $(bindir) $(sbindir) $(libexecdir) $(libdir) +MERGE_SCRIPTS_isa-sparcv8-garversion-1.0.4 = copy-only +MERGE_DIRS_isa-sparcv8-garversion-1.0.4 = $(libdir) +MERGE_SCRIPTS_isa-sparcv9-garversion-1.0.4 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-1.0.4 = $(libdir) + MERGE_SCRIPTS_isa-sparcv8-garversion-1.1.2 = copy-only MERGE_DIRS_isa-sparcv8-garversion-1.1.2 = $(libdir) MERGE_SCRIPTS_isa-sparcv9-garversion-1.1.2 = copy-relocated-only @@ -97,10 +112,18 @@ CXX := $(abspath ./bin/CC) PATH := ./bin:$(PATH):/usr/ccs/bin +post-patch-isa-i386-garversion-1.0.4: + perl -pi -e "s/-O3 //g" $(WORKSRC)/configure + $(MAKECOOKIE) + post-patch-isa-i386-garversion-1.1.2: perl -pi -e "s/-O2 //g" $(WORKSRC)/configure $(MAKECOOKIE) +post-patch-isa-sparcv8-garversion-1.0.4: + perl -pi -e "s/-O3 //g" $(WORKSRC)/configure + $(MAKECOOKIE) + post-patch-isa-sparcv8-garversion-1.1.2: perl -pi -e "s/-O2 //g" $(WORKSRC)/configure $(MAKECOOKIE) Modified: csw/mgar/pkg/flac/trunk/checksums =================================================================== --- csw/mgar/pkg/flac/trunk/checksums 2009-08-03 07:49:53 UTC (rev 5825) +++ csw/mgar/pkg/flac/trunk/checksums 2009-08-03 08:36:42 UTC (rev 5826) @@ -1,3 +1,4 @@ +b1523e6ad8ef85d1df5b18f20a8cfad6 download/flac-1.0.4.tar.gz 2bfc127cdda02834d0491ab531a20960 download/flac-1.1.2.tar.gz 153c8b15a54da428d1f0fadc756c22c7 download/flac-1.2.1.tar.gz c9e9052e1d1238a21ac6c4ab263d2b7f download/libtool-64bit.patch This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 3 10:39:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 03 Aug 2009 08:39:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5827] csw/mgar/pkg/flac/trunk/Makefile Message-ID: Revision: 5827 http://gar.svn.sourceforge.net/gar/?rev=5827&view=rev Author: dmichelsen Date: 2009-08-03 08:39:35 +0000 (Mon, 03 Aug 2009) Log Message: ----------- flac: Add missing requirements Modified Paths: -------------- csw/mgar/pkg/flac/trunk/Makefile Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 08:36:42 UTC (rev 5826) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-08-03 08:39:35 UTC (rev 5827) @@ -44,7 +44,7 @@ CATALOGNAME_CSWxmmsflac = xmms_flac REQUIRED_PKGS_CSWflac = CSWiconv CSWlibogg -REQUIRED_PKGS_CSWxmmsflac = CSWglib CSWgtk CSWxmms CSWflac +REQUIRED_PKGS_CSWxmmsflac = CSWglib CSWgtk CSWxmms CSWflac CSWiconv CSWlibogg SPKG_DESC_CSWflac = Free lossless audio codec SPKG_DESC_CSWxmmsflac = FLAC plugin for XMMS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 3 15:45:06 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 13:45:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5828] csw/mgar/pkg/libatomic_ops/ Message-ID: Revision: 5828 http://gar.svn.sourceforge.net/gar/?rev=5828&view=rev Author: wahwah Date: 2009-08-03 13:45:06 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libatomic-ops: Copying the template Added Paths: ----------- csw/mgar/pkg/libatomic_ops/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 3 15:53:33 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 13:53:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5829] csw/mgar/pkg/libatomic_ops/trunk Message-ID: Revision: 5829 http://gar.svn.sourceforge.net/gar/?rev=5829&view=rev Author: wahwah Date: 2009-08-03 13:53:33 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libatomic_ops: Initial build Modified Paths: -------------- csw/mgar/pkg/libatomic_ops/trunk/Makefile csw/mgar/pkg/libatomic_ops/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch Modified: csw/mgar/pkg/libatomic_ops/trunk/Makefile =================================================================== --- csw/mgar/pkg/libatomic_ops/trunk/Makefile 2009-08-03 13:45:06 UTC (rev 5828) +++ csw/mgar/pkg/libatomic_ops/trunk/Makefile 2009-08-03 13:53:33 UTC (rev 5829) @@ -2,181 +2,19 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = libatomic-ops +GARVERSION = 1.2 CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = Portable library for atomic operations define BLURB - endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://www.hpl.hp.com/research/linux/atomic_ops/ +MASTER_SITES = http://ftp.de.debian.org/debian/pool/main/liba/libatomic-ops/ +PATCHFILES = solaris-$(GARVERSION).patch +DISTFILES = $(GARNAME)_$(GARVERSION).orig.tar.gz $(PATCHFILES) UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. +CATALOGNAME = libatomic_ops +TEST_SCRIPTS = +WORKSRC = $(WORKDIR)/$(CATALOGNAME)-$(GARVERSION) CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +include gar/category.mk Modified: csw/mgar/pkg/libatomic_ops/trunk/checksums =================================================================== --- csw/mgar/pkg/libatomic_ops/trunk/checksums 2009-08-03 13:45:06 UTC (rev 5828) +++ csw/mgar/pkg/libatomic_ops/trunk/checksums 2009-08-03 13:53:33 UTC (rev 5829) @@ -0,0 +1,3 @@ +1b65e48271c81e3fa2d7a9a69bab7504 download/libatomic-ops_1.2.orig.tar.gz +fca04d6cd324073bc97a57480aa80d12 download/solaris-1.2.patch + Added: csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch =================================================================== --- csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch (rev 0) +++ csw/mgar/pkg/libatomic_ops/trunk/files/solaris-1.2.patch 2009-08-03 13:53:33 UTC (rev 5829) @@ -0,0 +1,61 @@ +diff --git a/src/atomic_ops.h b/src/atomic_ops.h +index c23f30b..084ce91 100755 +--- a/src/atomic_ops.h ++++ b/src/atomic_ops.h +@@ -245,6 +245,12 @@ + # define AO_CAN_EMUL_CAS + #endif + ++#if !defined(__GNUC__) && defined(__sun) && !defined(sparc) \ ++ && !defined(__sparc) ++# include "atomic_ops/sysdeps/sunc/x86.h" ++# define AO_CAN_EMUL_CAS ++#endif ++ + #if defined(_MSC_VER) + # if _M_IX86 >= 400 + # include "atomic_ops/sysdeps/msftc/x86.h" +diff --git a/src/atomic_ops/sysdeps/sunc/x86.h b/src/atomic_ops/sysdeps/sunc/x86.h +new file mode 100644 +index 0000000..3578722 +--- /dev/null ++++ b/src/atomic_ops/sysdeps/sunc/x86.h +@@ -0,0 +1,38 @@ ++/* ++ * Copyright (c) 2004 Hewlett-Packard Development Company, L.P. ++ * ++ * Permission is hereby granted, free of charge, to any person obtaining a copy ++ * of this software and associated documentation files (the "Software"), to deal ++ * in the Software without restriction, including without limitation the rights ++ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ++ * copies of the Software, and to permit persons to whom the Software is ++ * furnished to do so, subject to the following conditions: ++ * ++ * The above copyright notice and this permission notice shall be included in ++ * all copies or substantial portions of the Software. ++ * ++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ++ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ++ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ++ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ++ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE ++ * SOFTWARE. ++ */ ++ ++#include "../all_atomic_load_store.h" ++ ++/* Real SPARC code uses TSO: */ ++#include "../ordered_except_wr.h" ++ ++/* Test_and_set location is just a byte. */ ++#include "../test_and_set_t_is_char.h" ++ ++extern AO_TS_VAL_t ++AO_test_and_set_full(volatile AO_TS_t *addr); ++/* Implemented in separate .S file, for now. */ ++ ++#define AO_HAVE_test_and_set_full ++ ++/* FIXME: Like the gcc version, this needs to be extended for V8 */ ++/* and V9. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 16:05:18 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 14:05:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5830] csw/mgar/pkg/trac/trunk Message-ID: Revision: 5830 http://gar.svn.sourceforge.net/gar/?rev=5830&view=rev Author: rthurner Date: 2009-08-03 14:05:18 +0000 (Mon, 03 Aug 2009) Log Message: ----------- trac: upgrade version to 0.11.5 Modified Paths: -------------- csw/mgar/pkg/trac/trunk/Makefile csw/mgar/pkg/trac/trunk/checksums Modified: csw/mgar/pkg/trac/trunk/Makefile =================================================================== --- csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 13:53:33 UTC (rev 5829) +++ csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 14:05:18 UTC (rev 5830) @@ -1,5 +1,5 @@ GARNAME = Trac -GARVERSION = 0.11.4 +GARVERSION = 0.11.5 CATEGORIES = apps DESCRIPTION = Integrated SCM and Project Management Modified: csw/mgar/pkg/trac/trunk/checksums =================================================================== --- csw/mgar/pkg/trac/trunk/checksums 2009-08-03 13:53:33 UTC (rev 5829) +++ csw/mgar/pkg/trac/trunk/checksums 2009-08-03 14:05:18 UTC (rev 5830) @@ -1 +1 @@ -a765087b22661cf4aa1520518cddecae download/Trac-0.11.4.tar.gz +c8042490096a49478580fd599ad26322 download/Trac-0.11.5.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 Mon Aug 3 16:28:58 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 03 Aug 2009 14:28:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5831] csw/mgar/pkg/clamav/trunk/Makefile Message-ID: Revision: 5831 http://gar.svn.sourceforge.net/gar/?rev=5831&view=rev Author: bonivart Date: 2009-08-03 14:28:58 +0000 (Mon, 03 Aug 2009) Log Message: ----------- clamav: fix missing dep in libclamav Modified Paths: -------------- csw/mgar/pkg/clamav/trunk/Makefile Modified: csw/mgar/pkg/clamav/trunk/Makefile =================================================================== --- csw/mgar/pkg/clamav/trunk/Makefile 2009-08-03 14:05:18 UTC (rev 5830) +++ csw/mgar/pkg/clamav/trunk/Makefile 2009-08-03 14:28:58 UTC (rev 5831) @@ -25,7 +25,7 @@ SPKG_DESC_CSWlibclamav = $(DESCRIPTION) Library REQUIRED_PKGS_CSWclamav = CSWlibclamav CSWzlib CSWbzip2 CSWiconv CSWcswclassutils CSWncurses CSWlibtoolrt -REQUIRED_PKGS_CSWlibclamav = CSWzlib CSWbzip2 CSWiconv +REQUIRED_PKGS_CSWlibclamav = CSWzlib CSWbzip2 CSWiconv CSWlibtoolrt # 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 wahwah at users.sourceforge.net Mon Aug 3 17:27:08 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 15:27:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5832] csw/mgar/pkg/clamav/Makefile Message-ID: Revision: 5832 http://gar.svn.sourceforge.net/gar/?rev=5832&view=rev Author: wahwah Date: 2009-08-03 15:27:08 +0000 (Mon, 03 Aug 2009) Log Message: ----------- clamav: Creating the package-level Makefile Added Paths: ----------- csw/mgar/pkg/clamav/Makefile Copied: csw/mgar/pkg/clamav/Makefile (from rev 5831, csw/mgar/pkg/template/Makefile) =================================================================== --- csw/mgar/pkg/clamav/Makefile (rev 0) +++ csw/mgar/pkg/clamav/Makefile 2009-08-03 15:27:08 UTC (rev 5832) @@ -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 rthurner at users.sourceforge.net Mon Aug 3 17:48:03 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 15:48:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5833] csw/mgar/pkg Message-ID: Revision: 5833 http://gar.svn.sourceforge.net/gar/?rev=5833&view=rev Author: rthurner Date: 2009-08-03 15:48:03 +0000 (Mon, 03 Aug 2009) Log Message: ----------- bazaar: first checkin, still gives compile errors Added Paths: ----------- csw/mgar/pkg/bazaar/ csw/mgar/pkg/bazaar/branches/ csw/mgar/pkg/bazaar/tags/ csw/mgar/pkg/bazaar/trunk/ csw/mgar/pkg/bazaar/trunk/Makefile csw/mgar/pkg/bazaar/trunk/checksums csw/mgar/pkg/bazaar/trunk/files/ Property changes on: csw/mgar/pkg/bazaar/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/bazaar/trunk/Makefile =================================================================== --- csw/mgar/pkg/bazaar/trunk/Makefile (rev 0) +++ csw/mgar/pkg/bazaar/trunk/Makefile 2009-08-03 15:48:03 UTC (rev 5833) @@ -0,0 +1,27 @@ +GARNAME = bzr +GARVERSION = 1.17 +CATEGORIES = devel + +DESCRIPTION = Bazaar is a distributed version control system. +define BLURB + Bazaar is a slow distributed version control system that + "Just Works". While other systems require you to adapt to + their model of working, Bazaar adapts to the way you want + to work, and you can try it out in five minutes. +endef + +MASTER_SITES = http://launchpad.net/bzr/1.17/1.17/+download/ +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 + +REQUIRED_PKGS += CSWcswclassutils + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = $(WORKSRC)/setup.py +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/setup.py +INSTALL_ARGS = --root=$(DESTDIR) + +include gar/category.mk Added: csw/mgar/pkg/bazaar/trunk/checksums =================================================================== --- csw/mgar/pkg/bazaar/trunk/checksums (rev 0) +++ csw/mgar/pkg/bazaar/trunk/checksums 2009-08-03 15:48:03 UTC (rev 5833) @@ -0,0 +1 @@ +d772508e60b47a1641fa487c5cf7e08e download/bzr-1.17.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 18:03:05 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 16:03:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[5834] csw/mgar/pkg/trac/trunk/Makefile Message-ID: Revision: 5834 http://gar.svn.sourceforge.net/gar/?rev=5834&view=rev Author: rthurner Date: 2009-08-03 16:03:04 +0000 (Mon, 03 Aug 2009) Log Message: ----------- trac: update package dependencies, remove clearsilver, pysqlite2, add genshi Modified Paths: -------------- csw/mgar/pkg/trac/trunk/Makefile Modified: csw/mgar/pkg/trac/trunk/Makefile =================================================================== --- csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 15:48:03 UTC (rev 5833) +++ csw/mgar/pkg/trac/trunk/Makefile 2009-08-03 16:03:04 UTC (rev 5834) @@ -15,9 +15,8 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz PACKAGES = CSWtrac -REQUIRED_PKGS_CSWtrac = CSWpycs CSWpydocutils -REQUIRED_PKGS_CSWtrac += CSWpysetuptools CSWpysqlite2 CSWpysvn -REQUIRED_PKGS_CSWtrac += CSWpython +REQUIRED_PKGS_CSWtrac = CSWpysetuptools CSWpysvn CSWgenshi +REQUIRED_PKGS_CSWtrac += CSWpython-rt CATALOGNAME_CSWtrac = trac SPKG_DESC_CSWtrac = Integrated SCM and Project Management This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 18:33:37 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 16:33:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[5835] csw/mgar/pkg/memcached/trunk/ Message-ID: Revision: 5835 http://gar.svn.sourceforge.net/gar/?rev=5835&view=rev Author: rthurner Date: 2009-08-03 16:33:13 +0000 (Mon, 03 Aug 2009) Log Message: ----------- memchached: change to mgar v2 Property Changed: ---------------- csw/mgar/pkg/memcached/trunk/ Property changes on: csw/mgar/pkg/memcached/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 wahwah at users.sourceforge.net Mon Aug 3 18:55:25 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 03 Aug 2009 16:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5836] csw/mgar/pkg/libsamplerate/trunk Message-ID: Revision: 5836 http://gar.svn.sourceforge.net/gar/?rev=5836&view=rev Author: wahwah Date: 2009-08-03 16:55:23 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libsamplerate: mGAR v2 Modified Paths: -------------- csw/mgar/pkg/libsamplerate/trunk/Makefile csw/mgar/pkg/libsamplerate/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/libsamplerate/trunk/ csw/mgar/pkg/libsamplerate/trunk/Makefile Property changes on: csw/mgar/pkg/libsamplerate/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/libsamplerate/trunk/Makefile =================================================================== --- csw/mgar/pkg/libsamplerate/trunk/Makefile 2009-08-03 16:33:13 UTC (rev 5835) +++ csw/mgar/pkg/libsamplerate/trunk/Makefile 2009-08-03 16:55:23 UTC (rev 5836) @@ -1,5 +1,9 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = libsamplerate -GARVERSION = 0.1.2 +GARVERSION = 0.1.7 CATEGORIES = lib DESCRIPTION = Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio @@ -11,14 +15,14 @@ with time for speeding up and slowing down effects. endef -MASTER_SITES = http://www.mega-nerd.com/SRC +MASTER_SITES = http://www.mega-nerd.com/SRC/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibsamplerate,prototype depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -PATCHFILES += $(notdir $(wildcard $(FILEDIR)/*.patch)) +REQUIRED_PKGS = CSWlibsndfile +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-static Property changes on: csw/mgar/pkg/libsamplerate/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: csw/mgar/pkg/libsamplerate/trunk/checksums =================================================================== --- csw/mgar/pkg/libsamplerate/trunk/checksums 2009-08-03 16:33:13 UTC (rev 5835) +++ csw/mgar/pkg/libsamplerate/trunk/checksums 2009-08-03 16:55:23 UTC (rev 5836) @@ -1,5 +1,2 @@ -06861c2c6b8e5273c9b80cf736b9fd0e download/libsamplerate-0.1.2.tar.gz -447f7681075c08ba00efe07945251936 download/CSWlibsamplerate.gspec -ee7bfe7b3dcfb0a2ea102bea8ac896e6 download/CSWlibsamplerate.prototype -d41d8cd98f00b204e9800998ecf8427e download/CSWlibsamplerate.depend 5f136a391374030efc9027f336a9dcfc download/CSWlibsamplerate.patch +ad093e60ec44f0a60de8e29983ddbc0f download/libsamplerate-0.1.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 19:06:57 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 17:06:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5837] csw/mgar/pkg/bazaar/trunk/Makefile Message-ID: Revision: 5837 http://gar.svn.sourceforge.net/gar/?rev=5837&view=rev Author: rthurner Date: 2009-08-03 17:06:56 +0000 (Mon, 03 Aug 2009) Log Message: ----------- bazaar: introduce patchrev to copy with launchpad download structure Modified Paths: -------------- csw/mgar/pkg/bazaar/trunk/Makefile Modified: csw/mgar/pkg/bazaar/trunk/Makefile =================================================================== --- csw/mgar/pkg/bazaar/trunk/Makefile 2009-08-03 16:55:23 UTC (rev 5836) +++ csw/mgar/pkg/bazaar/trunk/Makefile 2009-08-03 17:06:56 UTC (rev 5837) @@ -1,5 +1,6 @@ GARNAME = bzr GARVERSION = 1.17 +#PATCHREV = .1 CATEGORIES = devel DESCRIPTION = Bazaar is a distributed version control system. @@ -10,11 +11,11 @@ to work, and you can try it out in five minutes. endef -MASTER_SITES = http://launchpad.net/bzr/1.17/1.17/+download/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +MASTER_SITES = http://launchpad.net/bzr/$(GARVERSION)/$(GARVERSION)$(PATHREV)/+download/ +DISTFILES = $(GARNAME)-$(GARVERSION)$(PATHREV).tar.gz # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(GARNAME)$(PATHREV)-(\d+(?:\.\d+)*).tar.gz REQUIRED_PKGS += CSWcswclassutils This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 19:29:19 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 17:29:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5838] csw/mgar/pkg/libevent/trunk Message-ID: Revision: 5838 http://gar.svn.sourceforge.net/gar/?rev=5838&view=rev Author: rthurner Date: 2009-08-03 17:29:19 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libevent: upgrade to libevent-1.4.12 and mgar-v2 Modified Paths: -------------- csw/mgar/pkg/libevent/trunk/Makefile csw/mgar/pkg/libevent/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/libevent/trunk/ Property changes on: csw/mgar/pkg/libevent/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/libevent/trunk/Makefile =================================================================== --- csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:06:56 UTC (rev 5837) +++ csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:29:19 UTC (rev 5838) @@ -1,7 +1,7 @@ GARNAME = libevent -GARVERSION = 1.3 -PATCHREV = e -DISTVERSION = $(GARVERSION)$(PATCHREV) +GARVERSION = 1.4 +PATCHREV = .12 +DISTVERSION = $(GARVERSION)$(PATCHREV)-stable CATEGORIES = lib DESCRIPTION = event notification library @@ -14,31 +14,23 @@ MASTER_SITES = http://www.monkey.org/~provos/ DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz -DISTFILES += $(call admfiles,CSWlibevent,depend prototype) -DISTFILES += $(call admfiles,CSWlibevent-devel,depend prototype) +#DISTFILES += $(call admfiles,CSWlibevent,depend prototype) +#DISTFILES += $(call admfiles,CSWlibevent-devel,depend prototype) # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*)-stable.tar.gz -GARCOMPILER = GNU - -# Adjust test.sh shell -PATCHFILES += testsh.diff - -# We have no stdint.h -PATCHFILES += stdint.diff - WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-rtsig +#CONFIGURE_ARGS = $(DIRPATHS) +#CONFIGURE_ARGS += --with-rtsig TEST_TARGET = verify include gar/category.mk -LIBS += -lresolv -lnsl -export LIBS +#LIBS += -lresolv -lnsl +#export LIBS -SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHREV) +#SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHREV) Modified: csw/mgar/pkg/libevent/trunk/checksums =================================================================== --- csw/mgar/pkg/libevent/trunk/checksums 2009-08-03 17:06:56 UTC (rev 5837) +++ csw/mgar/pkg/libevent/trunk/checksums 2009-08-03 17:29:19 UTC (rev 5838) @@ -1,9 +1 @@ -8553ad0f8a35d8d96ae0c69c387e06d3 download/libevent-1.3e.tar.gz -8ea347baf835300219bd88bf73cb2c3f download/CSWlibevent.gspec -10c44d698c6a436c29ff72457a06310f download/CSWlibevent.depend -2274a4bc7557437a88cd3b64de5eece7 download/CSWlibevent.prototype -649dd486e8c26791bbf4b44280bd4e55 download/CSWlibevent-devel.gspec -fb52e1653adbc7d07e97a42dac3bcfee download/CSWlibevent-devel.depend -759d85644ee08b729fc05e471dedaa8c download/CSWlibevent-devel.prototype -efedb74c9c031929d5138c22ac2630d8 download/testsh.diff -a76d6e6d3d07d85f25ac389c441a12f4 download/stdint.diff +77b0d8b9885496871bb083165b35ba11 download/libevent-1.4.12-stable.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Mon Aug 3 19:52:11 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Mon, 03 Aug 2009 17:52:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5839] csw/mgar/pkg/libevent/trunk/Makefile Message-ID: Revision: 5839 http://gar.svn.sourceforge.net/gar/?rev=5839&view=rev Author: rthurner Date: 2009-08-03 17:52:11 +0000 (Mon, 03 Aug 2009) Log Message: ----------- libevent: remove patchrev special treating, rtsig got removed upstream Modified Paths: -------------- csw/mgar/pkg/libevent/trunk/Makefile Modified: csw/mgar/pkg/libevent/trunk/Makefile =================================================================== --- csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:29:19 UTC (rev 5838) +++ csw/mgar/pkg/libevent/trunk/Makefile 2009-08-03 17:52:11 UTC (rev 5839) @@ -1,7 +1,6 @@ GARNAME = libevent -GARVERSION = 1.4 -PATCHREV = .12 -DISTVERSION = $(GARVERSION)$(PATCHREV)-stable +GARVERSION = 1.4.12 +DISTVERSION = $(GARVERSION)-stable CATEGORIES = lib DESCRIPTION = event notification library @@ -22,9 +21,6 @@ WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) -#CONFIGURE_ARGS = $(DIRPATHS) -#CONFIGURE_ARGS += --with-rtsig - TEST_TARGET = verify include gar/category.mk @@ -32,5 +28,3 @@ #LIBS += -lresolv -lnsl #export LIBS -#SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(PATCHREV) - 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 Aug 4 10:55:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 04 Aug 2009 08:55:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[5840] csw/mgar/pkg/patchutils/trunk Message-ID: Revision: 5840 http://gar.svn.sourceforge.net/gar/?rev=5840&view=rev Author: dmichelsen Date: 2009-08-04 08:55:04 +0000 (Tue, 04 Aug 2009) Log Message: ----------- patchutils: Enhanced test cases, still not working 100% Modified Paths: -------------- csw/mgar/pkg/patchutils/trunk/Makefile csw/mgar/pkg/patchutils/trunk/checksums Added Paths: ----------- csw/mgar/pkg/patchutils/trunk/files/ csw/mgar/pkg/patchutils/trunk/files/gendiff Modified: csw/mgar/pkg/patchutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-03 17:52:11 UTC (rev 5839) +++ csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-04 08:55:04 UTC (rev 5840) @@ -10,10 +10,13 @@ MASTER_SITES = http://cyberelk.net/tim/data/patchutils/stable/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +# gendiff is needed for the tests +DISTFILES += gendiff + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -PREREQUISITE_PKGS = CSWgnulinks CSWbash +PREREQUISITE_PKGS = CSWgnulinks CSWbash CSWdiffutils SPKG_SOURCEURL = http://cyberelk.net/tim/software/patchutils/ @@ -21,10 +24,19 @@ TEST_TARGET = check +# gendiff is still not found, but the results look otherwise pretty good. +# Ignore for now. +SKIPTEST ?= 1 + include gar/category.mk +# WORKDIR is for gendiff, which is needed for tests but missing on Solaris +PATH := /opt/csw/gnu:$(WORKDIR):$(PATH) + # /bin/bash is too old post-configure-modulated: - find . -type f | fgrep -v fgrep -v .in | \ + find $(WORKSRC) -type f | grep -v '\.in$$' | grep /tests/ | \ xargs perl -pi -e 's,#!/bin/bash,#!/opt/csw/bin/bash,' + find $(WORKSRC) -type f | fgrep -v .in | fgrep tests | \ + xargs perl -pi -e 's,/bin/sh,/opt/csw/bin/bash,' @$(MAKECOOKIE) Modified: csw/mgar/pkg/patchutils/trunk/checksums =================================================================== --- csw/mgar/pkg/patchutils/trunk/checksums 2009-08-03 17:52:11 UTC (rev 5839) +++ csw/mgar/pkg/patchutils/trunk/checksums 2009-08-04 08:55:04 UTC (rev 5840) @@ -1 +1,2 @@ +b68be92ed1e8b917c9ac27833ee1b803 download/gendiff 3fd9bca58a429fbbb1c2126f1b72aa23 download/patchutils-0.3.1.tar.bz2 Added: csw/mgar/pkg/patchutils/trunk/files/gendiff =================================================================== --- csw/mgar/pkg/patchutils/trunk/files/gendiff (rev 0) +++ csw/mgar/pkg/patchutils/trunk/files/gendiff 2009-08-04 08:55:04 UTC (rev 5840) @@ -0,0 +1,21 @@ +#!/opt/csw/bin/bash +# $Owl: Owl/packages/rpm/gendiff,v 1.2 2005/11/16 13:31:51 solar Exp $ + +if [ $# -ne 2 ]; then + echo "Usage: ${0##*/} DIRECTORY DIFF-SUFFIX" >&2 + exit 1 +fi + +find "$1" \( -name "*$2" -o -name ".*$2" \) -print | +while read OP; do + NP="${OP%$2}" + NN="${NP##*/}" + U=-u + [ "$NN" = "ChangeLog" ] && U=-U0 + case "${NN##*.}" in + c|cc|C|cpp) + U=-up + ;; + esac + /opt/csw/bin/gdiff $U "$OP" "$NP" +done Property changes on: csw/mgar/pkg/patchutils/trunk/files/gendiff ___________________________________________________________________ Added: svn:executable + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Tue Aug 4 11:35:51 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Tue, 04 Aug 2009 09:35:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5841] csw/mgar/pkg/libevent/trunk/Makefile Message-ID: Revision: 5841 http://gar.svn.sourceforge.net/gar/?rev=5841&view=rev Author: rthurner Date: 2009-08-04 09:35:51 +0000 (Tue, 04 Aug 2009) Log Message: ----------- libevent: make it again install in /opt/csw Modified Paths: -------------- csw/mgar/pkg/libevent/trunk/Makefile Modified: csw/mgar/pkg/libevent/trunk/Makefile =================================================================== --- csw/mgar/pkg/libevent/trunk/Makefile 2009-08-04 08:55:04 UTC (rev 5840) +++ csw/mgar/pkg/libevent/trunk/Makefile 2009-08-04 09:35:51 UTC (rev 5841) @@ -21,6 +21,8 @@ WORKSRC = $(WORKDIR)/$(GARNAME)-$(DISTVERSION) +CONFIGURE_ARGS = $(DIRPATHS) + TEST_TARGET = verify 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 Tue Aug 4 11:38:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 04 Aug 2009 09:38:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5842] csw/mgar/pkg/patchutils/trunk Message-ID: Revision: 5842 http://gar.svn.sourceforge.net/gar/?rev=5842&view=rev Author: dmichelsen Date: 2009-08-04 09:38:48 +0000 (Tue, 04 Aug 2009) Log Message: ----------- patchutils: Force use of csw bash and perl Modified Paths: -------------- csw/mgar/pkg/patchutils/trunk/Makefile csw/mgar/pkg/patchutils/trunk/checksums Added Paths: ----------- csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff Modified: csw/mgar/pkg/patchutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-04 09:35:51 UTC (rev 5841) +++ csw/mgar/pkg/patchutils/trunk/Makefile 2009-08-04 09:38:48 UTC (rev 5842) @@ -13,11 +13,15 @@ # gendiff is needed for the tests DISTFILES += gendiff +PATCHFILES = patch-use-csw-bash.diff + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 PREREQUISITE_PKGS = CSWgnulinks CSWbash CSWdiffutils +REQUIRED_PKGS = CSWbash CSWperl + SPKG_SOURCEURL = http://cyberelk.net/tim/software/patchutils/ CONFIGURE_ARGS = $(DIRPATHS) @@ -36,7 +40,5 @@ # /bin/bash is too old post-configure-modulated: find $(WORKSRC) -type f | grep -v '\.in$$' | grep /tests/ | \ - xargs perl -pi -e 's,#!/bin/bash,#!/opt/csw/bin/bash,' - find $(WORKSRC) -type f | fgrep -v .in | fgrep tests | \ - xargs perl -pi -e 's,/bin/sh,/opt/csw/bin/bash,' + xargs perl -pi.orig -e 's,/bin/sh,/opt/csw/bin/bash,' @$(MAKECOOKIE) Modified: csw/mgar/pkg/patchutils/trunk/checksums =================================================================== --- csw/mgar/pkg/patchutils/trunk/checksums 2009-08-04 09:35:51 UTC (rev 5841) +++ csw/mgar/pkg/patchutils/trunk/checksums 2009-08-04 09:38:48 UTC (rev 5842) @@ -1,2 +1,3 @@ b68be92ed1e8b917c9ac27833ee1b803 download/gendiff +e104b1464e33eb61f6b7cdf2ce9a89a5 download/patch-use-csw-bash.diff 3fd9bca58a429fbbb1c2126f1b72aa23 download/patchutils-0.3.1.tar.bz2 Added: csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff =================================================================== --- csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff (rev 0) +++ csw/mgar/pkg/patchutils/trunk/files/patch-use-csw-bash.diff 2009-08-04 09:38:48 UTC (rev 5842) @@ -0,0 +1,45 @@ +diff -Naur patchutils-0.3.1.orig/editdiff.in patchutils-0.3.1.patched/editdiff.in +--- patchutils-0.3.1.orig/editdiff.in 2008-06-11 12:01:28.000000000 +0200 ++++ patchutils-0.3.1.patched/editdiff.in 2009-08-04 11:32:58.435884523 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + # + # editdiff - simple wrapper around rediff + # Copyright (C) 2001-2002 Tim Waugh +diff -Naur patchutils-0.3.1.orig/espdiff.in patchutils-0.3.1.patched/espdiff.in +--- patchutils-0.3.1.orig/espdiff.in 2008-06-11 12:01:28.000000000 +0200 ++++ patchutils-0.3.1.patched/espdiff.in 2009-08-04 11:33:03.660183257 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + # + # espdiff - do whatever it was you wanted + # Copyright (C) 2003 Tim Waugh +diff -Naur patchutils-0.3.1.orig/move-to-front patchutils-0.3.1.patched/move-to-front +--- patchutils-0.3.1.orig/move-to-front 2008-06-11 12:01:28.000000000 +0200 ++++ patchutils-0.3.1.patched/move-to-front 2009-08-04 11:33:39.577510591 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + if [ "$#" -eq 0 ] || [ "x$1" == "x--help" ] + then + echo "usage: move-to-front [PATCHES..] PATCH" +diff -Naur patchutils-0.3.1.orig/tests/combine2/run-test patchutils-0.3.1.patched/tests/combine2/run-test +--- patchutils-0.3.1.orig/tests/combine2/run-test 2008-07-02 13:11:08.000000000 +0200 ++++ patchutils-0.3.1.patched/tests/combine2/run-test 2009-08-04 11:33:42.536530871 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + + # This is a combinediff(1) testcase. + +diff -Naur patchutils-0.3.1.orig/tests/combine3/run-test patchutils-0.3.1.patched/tests/combine3/run-test +--- patchutils-0.3.1.orig/tests/combine3/run-test 2008-07-02 13:11:08.000000000 +0200 ++++ patchutils-0.3.1.patched/tests/combine3/run-test 2009-08-04 11:33:45.008706797 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/opt/csw/bin/bash + + # This is a combinediff(1) testcase. + 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 Aug 4 14:19:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 04 Aug 2009 12:19:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5843] csw/mgar/pkg/flac/trunk Message-ID: Revision: 5843 http://gar.svn.sourceforge.net/gar/?rev=5843&view=rev Author: dmichelsen Date: 2009-08-04 12:19:23 +0000 (Tue, 04 Aug 2009) Log Message: ----------- flac: Add patches for x86 assembly Modified Paths: -------------- csw/mgar/pkg/flac/trunk/Makefile csw/mgar/pkg/flac/trunk/checksums Added Paths: ----------- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch Modified: csw/mgar/pkg/flac/trunk/Makefile =================================================================== --- csw/mgar/pkg/flac/trunk/Makefile 2009-08-04 09:38:48 UTC (rev 5842) +++ csw/mgar/pkg/flac/trunk/Makefile 2009-08-04 12:19:23 UTC (rev 5843) @@ -34,15 +34,18 @@ PATCHFILES_isa-sparcv8-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch PATCHFILES_isa-sparcv9-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch -PATCHFILES_isa-i386-garversion-1.1.2 = libtool-64bit.patch +PATCHFILES_isa-i386-garversion-1.0.4 = strip-nasm-1.0.4.patch +PATCHFILES_isa-i386-garversion-1.1.2 = strip-nasm-1.1.2.patch libtool-64bit.patch PATCHFILES_isa-amd64-garversion-1.1.2 = libtool-64bit.patch -PATCHFILES_isa-i386-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch +PATCHFILES_isa-i386-garversion-1.2.1 = strip-nasm-1.2.1.patch libtool-64bit.patch no-stdint.patch PATCHFILES_isa-amd64-garversion-1.2.1 = libtool-64bit.patch no-stdint.patch PACKAGES = CSWflac CSWxmmsflac CATALOGNAME_CSWflac = libflac CATALOGNAME_CSWxmmsflac = xmms_flac +PREREQUISITE_PKGS = CSWbash CSWnasm + REQUIRED_PKGS_CSWflac = CSWiconv CSWlibogg REQUIRED_PKGS_CSWxmmsflac = CSWglib CSWgtk CSWxmms CSWflac CSWiconv CSWlibogg Modified: csw/mgar/pkg/flac/trunk/checksums =================================================================== --- csw/mgar/pkg/flac/trunk/checksums 2009-08-04 09:38:48 UTC (rev 5842) +++ csw/mgar/pkg/flac/trunk/checksums 2009-08-04 12:19:23 UTC (rev 5843) @@ -3,3 +3,6 @@ 153c8b15a54da428d1f0fadc756c22c7 download/flac-1.2.1.tar.gz c9e9052e1d1238a21ac6c4ab263d2b7f download/libtool-64bit.patch e3144fad8810ceaca718adb6f09dc8fa download/no-stdint.patch +03e0502642d568b5b004f69328485720 download/strip-nasm-1.0.4.patch +394225d96661019d32cc0ebfdad3d377 download/strip-nasm-1.1.2.patch +64e7f447c2ca09ec041e6740a209291d download/strip-nasm-1.2.1.patch Added: csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch =================================================================== --- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch (rev 0) +++ csw/mgar/pkg/flac/trunk/files/strip-nasm-1.0.4.patch 2009-08-04 12:19:23 UTC (rev 5843) @@ -0,0 +1,32 @@ +diff -Naur flac-1.0.4.orig/src/libFLAC/ia32/Makefile.in flac-1.0.4.patched/src/libFLAC/ia32/Makefile.in +--- flac-1.0.4.orig/src/libFLAC/ia32/Makefile.in 2002-09-25 06:53:37.000000000 +0200 ++++ flac-1.0.4.patched/src/libFLAC/ia32/Makefile.in 2009-08-03 11:12:29.197650544 +0200 +@@ -134,7 +134,7 @@ + + SUFFIXES = .nasm .lo + +-STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh ++STRIP_FPIC = /opt/csw/bin/bash $(top_srcdir)/strip_fPIC.sh + + noinst_LTLIBRARIES = libFLAC-asm.la + libFLAC_asm_la_SOURCES = \ +diff -Naur flac-1.0.4.orig/strip_fPIC.sh flac-1.0.4.patched/strip_fPIC.sh +--- flac-1.0.4.orig/strip_fPIC.sh 2002-08-26 21:21:52.000000000 +0200 ++++ flac-1.0.4.patched/strip_fPIC.sh 2009-08-03 11:12:00.031237509 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/opt/csw/bin/bash + # + # libtool assumes that the compiler can handle the -fPIC flag + # This isn't always true (for example, nasm can't handle it) +@@ -6,8 +6,10 @@ + while [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then ++ if [ "$1" != "-KPIC" ]; then + command="$command $1" + fi ++ fi + fi + shift + done Added: csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch =================================================================== --- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch (rev 0) +++ csw/mgar/pkg/flac/trunk/files/strip-nasm-1.1.2.patch 2009-08-04 12:19:23 UTC (rev 5843) @@ -0,0 +1,34 @@ +diff -Naur flac-1.1.2.orig/src/libFLAC/ia32/Makefile.in flac-1.1.2.patched/src/libFLAC/ia32/Makefile.in +--- flac-1.1.2.orig/src/libFLAC/ia32/Makefile.in 2005-02-05 03:23:38.000000000 +0100 ++++ flac-1.1.2.patched/src/libFLAC/ia32/Makefile.in 2009-08-04 09:37:40.159783125 +0200 +@@ -253,7 +253,7 @@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + SUFFIXES = .nasm .lo +-STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh ++STRIP_NON_ASM = /opt/csw/bin/bash $(top_srcdir)/strip_non_asm_libtool_args.sh + noinst_LTLIBRARIES = libFLAC-asm.la + libFLAC_asm_la_SOURCES = \ + cpu_asm.nasm \ +diff -Naur flac-1.1.2.orig/strip_non_asm_libtool_args.sh flac-1.1.2.patched/strip_non_asm_libtool_args.sh +--- flac-1.1.2.orig/strip_non_asm_libtool_args.sh 2004-07-29 08:52:52.000000000 +0200 ++++ flac-1.1.2.patched/strip_non_asm_libtool_args.sh 2009-08-04 09:38:06.129792997 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/opt/csw/bin/bash + # + # libtool assumes that the compiler can handle the -fPIC flag. + # This isn't always true (for example, nasm can't handle it). +@@ -8,10 +8,12 @@ + while [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then ++ if [ "$1" != "-KPIC" ]; then + if [ "$1" != "-fno-common" ]; then + command="$command $1" + fi + fi ++ fi + fi + shift + done Added: csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch =================================================================== --- csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch (rev 0) +++ csw/mgar/pkg/flac/trunk/files/strip-nasm-1.2.1.patch 2009-08-04 12:19:23 UTC (rev 5843) @@ -0,0 +1,34 @@ +diff -Naur flac-1.2.1.orig/src/libFLAC/ia32/Makefile.in flac-1.2.1.patched/src/libFLAC/ia32/Makefile.in +--- flac-1.2.1.orig/src/libFLAC/ia32/Makefile.in 2007-09-16 22:05:12.000000000 +0200 ++++ flac-1.2.1.patched/src/libFLAC/ia32/Makefile.in 2009-08-04 13:31:07.693331268 +0200 +@@ -234,7 +234,7 @@ + + SUFFIXES = .nasm .lo + +-STRIP_NON_ASM = sh $(top_srcdir)/strip_non_asm_libtool_args.sh ++STRIP_NON_ASM = /opt/csw/bin/bash $(top_srcdir)/strip_non_asm_libtool_args.sh + + noinst_LTLIBRARIES = libFLAC-asm.la + libFLAC_asm_la_SOURCES = \ +diff -Naur flac-1.2.1.orig/strip_non_asm_libtool_args.sh flac-1.2.1.patched/strip_non_asm_libtool_args.sh +--- flac-1.2.1.orig/strip_non_asm_libtool_args.sh 2004-07-29 08:43:23.000000000 +0200 ++++ flac-1.2.1.patched/strip_non_asm_libtool_args.sh 2009-08-04 13:30:46.782902121 +0200 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/opt/csw/bin/bash + # + # libtool assumes that the compiler can handle the -fPIC flag. + # This isn't always true (for example, nasm can't handle it). +@@ -8,10 +8,12 @@ + while [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then ++ if [ "$1" != "-KPIC" ]; then + if [ "$1" != "-fno-common" ]; then + command="$command $1" + fi + fi ++ fi + fi + shift + done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Tue Aug 4 16:08:36 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Tue, 04 Aug 2009 14:08:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5844] csw/mgar/pkg/libserf/trunk/Makefile Message-ID: Revision: 5844 http://gar.svn.sourceforge.net/gar/?rev=5844&view=rev Author: rthurner Date: 2009-08-04 14:08:35 +0000 (Tue, 04 Aug 2009) Log Message: ----------- libserf: add references, except CSWbdb, as this is an error which will be fixed with apr-1.3.7 Modified Paths: -------------- csw/mgar/pkg/libserf/trunk/Makefile Modified: csw/mgar/pkg/libserf/trunk/Makefile =================================================================== --- csw/mgar/pkg/libserf/trunk/Makefile 2009-08-04 12:19:23 UTC (rev 5843) +++ csw/mgar/pkg/libserf/trunk/Makefile 2009-08-04 14:08:35 UTC (rev 5844) @@ -15,15 +15,11 @@ MASTER_SITES = http://serf.googlecode.com/files/ DISTFILES = $(DISTNAME).tar.bz2 +REQUIRED_PKGS_CSWlibserf = CSWapache2rt CSWexpat CSWiconv CSWoldaprt CSWosslrt CSWzlib + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(DISTNAME)-(\d+(?:\.\d+)*).tar.bz2 -# If the url used to check for software update is different of MASTER_SITES, then -# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES -# UPSTREAM_MASTER_SITES = - -DEPENDS = server/apache2rt - CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-apr=$(prefix)/apache2/bin/apr-config CONFIGURE_ARGS += --with-apr-util=$(prefix)/apache2/bin/apu-config @@ -31,7 +27,7 @@ TEST_TARGET = check include gar/category.mk -EXTRA_LDFLAGS = -R/opt/csw/bdb44/lib +#EXTRA_LDFLAGS = -R/opt/csw/bdb44/lib APR_LIBTOOL = $(shell /opt/csw/apache2/bin/apr-config --apr-libtool) post-configure-modulated: gcp $(APR_LIBTOOL) $(WORKSRC) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Tue Aug 4 17:12:45 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:12:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5845] csw/mgar/pkg/cpan Message-ID: Revision: 5845 http://gar.svn.sourceforge.net/gar/?rev=5845&view=rev Author: skayser Date: 2009-08-04 15:12:45 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Net-NIS: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Net-NIS/ csw/mgar/pkg/cpan/Net-NIS/branches/ csw/mgar/pkg/cpan/Net-NIS/tags/ csw/mgar/pkg/cpan/Net-NIS/trunk/ csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile csw/mgar/pkg/cpan/Net-NIS/trunk/checksums csw/mgar/pkg/cpan/Net-NIS/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Net-NIS/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/Net-NIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile 2009-08-04 15:12:45 UTC (rev 5845) @@ -0,0 +1,13 @@ +GARNAME = Net-NIS +GARVERSION = 0.43 +CATEGORIES = cpan +AUTHOR = ESM + +DESCRIPTION = Interface to Sun's Network Information Service +define BLURB + Long description +endef + +PACKAGES = CSWpmnetnis +CATALOGNAME = pm_netnis +include gar/category.mk Added: csw/mgar/pkg/cpan/Net-NIS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/checksums 2009-08-04 15:12:45 UTC (rev 5845) @@ -0,0 +1 @@ +c0f7a0784f1b3b078c423207d40f49ea download/Net-NIS-0.43.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 Tue Aug 4 17:26:56 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:26:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5846] csw/mgar/pkg/cpan/Net-NIS/trunk Message-ID: Revision: 5846 http://gar.svn.sourceforge.net/gar/?rev=5846&view=rev Author: skayser Date: 2009-08-04 15:26:56 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Net-NIS: Add changelog, add dep to SUNWnisu for ypcat Modified Paths: -------------- csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW Modified: csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile 2009-08-04 15:12:45 UTC (rev 5845) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/Makefile 2009-08-04 15:26:56 UTC (rev 5846) @@ -10,4 +10,13 @@ PACKAGES = CSWpmnetnis CATALOGNAME = pm_netnis + +REQUIRED_PKGS = SUNWnisu + include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Net-NIS/trunk/files/changelog.CSW 2009-08-04 15:26:56 UTC (rev 5846) @@ -0,0 +1,5 @@ +pm_netnis (0.43,REV=2009.08.04) + + * Initial release. + + -- Sebastian Kayser Tue, 4 Aug 2009 17:22:29 +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 Tue Aug 4 17:44:33 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:44:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5847] csw/mgar/pkg/cpan Message-ID: Revision: 5847 http://gar.svn.sourceforge.net/gar/?rev=5847&view=rev Author: skayser Date: 2009-08-04 15:44:33 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Apache2-AuthzNIS: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Apache2-AuthzNIS/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/branches/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/tags/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/cpan/Apache2-AuthzNIS/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/Apache2-AuthzNIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile 2009-08-04 15:44:33 UTC (rev 5847) @@ -0,0 +1,23 @@ +GARNAME = Apache2-AuthzNIS +GARVERSION = 0.13 +CATEGORIES = cpan +AUTHOR = ITEAHAUS + +DESCRIPTION = mod_perl2 NIS Group Authorization module +define BLURB + Long description +endef + +PACKAGES = CSWpmap2authznis +CATALOGNAME = pm_ap2authznis +ARCHALL = 1 + +REQUIRED_PKGS = CSWpmnetnis + +include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/checksums 2009-08-04 15:44:33 UTC (rev 5847) @@ -0,0 +1 @@ +109e4f89077788ce0ad256be37d0f1fc download/Apache2-AuthzNIS-0.13.tar.gz Added: csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/files/changelog.CSW 2009-08-04 15:44:33 UTC (rev 5847) @@ -0,0 +1,5 @@ +pm_ap2authznis (0.13,REV=2009.08.04) + + * Initial release. + + -- Sebastian Kayser Tue, 4 Aug 2009 17:38:19 +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 Tue Aug 4 17:53:46 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Tue, 04 Aug 2009 15:53:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5848] csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile Message-ID: Revision: 5848 http://gar.svn.sourceforge.net/gar/?rev=5848&view=rev Author: skayser Date: 2009-08-04 15:53:46 +0000 (Tue, 04 Aug 2009) Log Message: ----------- cpan/Apache2-AuthzNIS: added dep on ap2_modperl Modified Paths: -------------- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile Modified: csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile 2009-08-04 15:44:33 UTC (rev 5847) +++ csw/mgar/pkg/cpan/Apache2-AuthzNIS/trunk/Makefile 2009-08-04 15:53:46 UTC (rev 5848) @@ -12,7 +12,7 @@ CATALOGNAME = pm_ap2authznis ARCHALL = 1 -REQUIRED_PKGS = CSWpmnetnis +REQUIRED_PKGS = CSWpmnetnis CSWap2_modperl include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From ellson at users.sourceforge.net Tue Aug 4 19:41:18 2009 From: ellson at users.sourceforge.net (ellson at users.sourceforge.net) Date: Tue, 04 Aug 2009 17:41:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5849] csw/mgar/pkg/libcairo/trunk/Makefile Message-ID: Revision: 5849 http://gar.svn.sourceforge.net/gar/?rev=5849&view=rev Author: ellson Date: 2009-08-04 17:41:18 +0000 (Tue, 04 Aug 2009) Log Message: ----------- update to cairo-1.8.8 Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/Makefile Modified: csw/mgar/pkg/libcairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/libcairo/trunk/Makefile 2009-08-04 15:53:46 UTC (rev 5848) +++ csw/mgar/pkg/libcairo/trunk/Makefile 2009-08-04 17:41:18 UTC (rev 5849) @@ -1,5 +1,5 @@ GARNAME = libcairo -GARVERSION = 1.8.6 +GARVERSION = 1.8.8 CATEGORIES = lib DESCRIPTION = The Cairo 2D Graphics Library This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From ellson at users.sourceforge.net Tue Aug 4 19:45:47 2009 From: ellson at users.sourceforge.net (ellson at users.sourceforge.net) Date: Tue, 04 Aug 2009 17:45:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5850] csw/mgar/pkg/libcairo/trunk/checksums Message-ID: Revision: 5850 http://gar.svn.sourceforge.net/gar/?rev=5850&view=rev Author: ellson Date: 2009-08-04 17:45:41 +0000 (Tue, 04 Aug 2009) Log Message: ----------- update checksums for cairo-1.8.8 Modified Paths: -------------- csw/mgar/pkg/libcairo/trunk/checksums Modified: csw/mgar/pkg/libcairo/trunk/checksums =================================================================== --- csw/mgar/pkg/libcairo/trunk/checksums 2009-08-04 17:41:18 UTC (rev 5849) +++ csw/mgar/pkg/libcairo/trunk/checksums 2009-08-04 17:45:41 UTC (rev 5850) @@ -1,4 +1 @@ -4e64139ef6f668df24450f3b81dd0771 download/cairo-1.8.6.tar.gz -f3fb20251979667412e927160a5bcf78 download/CSWlibcairo.gspec -09a9ca79e382ac8cce6a7bce757a362e download/CSWlibcairodevel.gspec -8e110a0776ce7b62c01d4d721d2cc7b7 download/CSWlibcairodoc.gspec +d3e1a1035ae563812d4dd44a74fb0dd0 download/cairo-1.8.8.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 Aug 4 21:13:08 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 04 Aug 2009 19:13:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5851] csw/mgar/pkg/unbound/trunk Message-ID: Revision: 5851 http://gar.svn.sourceforge.net/gar/?rev=5851&view=rev Author: idogan23 Date: 2009-08-04 19:13:07 +0000 (Tue, 04 Aug 2009) Log Message: ----------- unbound: bump version to 1.3.3 Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile csw/mgar/pkg/unbound/trunk/checksums Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 17:45:41 UTC (rev 5850) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:13:07 UTC (rev 5851) @@ -1,5 +1,5 @@ GARNAME = unbound -GARVERSION = 1.3.2 +GARVERSION = 1.3.3 CATEGORIES = server DESCRIPTION = A validating, recursive, and caching DNS resolver Modified: csw/mgar/pkg/unbound/trunk/checksums =================================================================== --- csw/mgar/pkg/unbound/trunk/checksums 2009-08-04 17:45:41 UTC (rev 5850) +++ csw/mgar/pkg/unbound/trunk/checksums 2009-08-04 19:13:07 UTC (rev 5851) @@ -1,4 +1,4 @@ 90405f880273db5036c2ebf2e881b998 download/CSWunbound.gspec 75867432e238f5afd48dfe5d138097e9 download/cswunbound 601effee1051487655f66790762b66fd download/cswusergroup -1aa735c95cff3d8bdec39b54ced7dd3d download/unbound-1.3.2.tar.gz +f6b2b2c375288dfd2a03c4a36676221e download/unbound-1.3.3.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 Aug 4 21:29:12 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 04 Aug 2009 19:29:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5852] csw/mgar/pkg/unbound/trunk Message-ID: Revision: 5852 http://gar.svn.sourceforge.net/gar/?rev=5852&view=rev Author: idogan23 Date: 2009-08-04 19:29:12 +0000 (Tue, 04 Aug 2009) Log Message: ----------- unbound: removed gspec file Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:13:07 UTC (rev 5851) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:29:12 UTC (rev 5852) @@ -9,9 +9,13 @@ a server, but are linked into an application) are easily possible. endef +TEST_SCRIPTS = +PACKAGES = CSWunbound +CATALOGNAME = unbound +LICENSE = LICENSE + MASTER_SITES = http://unbound.net/downloads/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWunbound) DISTFILES += cswunbound DISTFILES += cswusergroup Deleted: csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec =================================================================== --- csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec 2009-08-04 19:13:07 UTC (rev 5851) +++ csw/mgar/pkg/unbound/trunk/files/CSWunbound.gspec 2009-08-04 19:29:12 UTC (rev 5852) @@ -1,4 +0,0 @@ -%var bitname unbound -%var pkgname CSWunbound -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Tue Aug 4 21:56:06 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 04 Aug 2009 19:56:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5853] csw/mgar/pkg/unbound/trunk/Makefile Message-ID: Revision: 5853 http://gar.svn.sourceforge.net/gar/?rev=5853&view=rev Author: idogan23 Date: 2009-08-04 19:56:06 +0000 (Tue, 04 Aug 2009) Log Message: ----------- unbound: oups, forgot something to remove Modified Paths: -------------- csw/mgar/pkg/unbound/trunk/Makefile Modified: csw/mgar/pkg/unbound/trunk/Makefile =================================================================== --- csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:29:12 UTC (rev 5852) +++ csw/mgar/pkg/unbound/trunk/Makefile 2009-08-04 19:56:06 UTC (rev 5853) @@ -9,7 +9,6 @@ a server, but are linked into an application) are easily possible. endef -TEST_SCRIPTS = PACKAGES = CSWunbound CATALOGNAME = unbound LICENSE = LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Aug 5 11:01:25 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 09:01:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5854] csw/mgar/pkg/perl/trunk Message-ID: Revision: 5854 http://gar.svn.sourceforge.net/gar/?rev=5854&view=rev Author: bonivart Date: 2009-08-05 09:01:24 +0000 (Wed, 05 Aug 2009) Log Message: ----------- perl: use bdb47 and update some core modules including Storable Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile csw/mgar/pkg/perl/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/perl/trunk/ Property changes on: csw/mgar/pkg/perl/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 Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-04 19:56:06 UTC (rev 5853) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 09:01:24 UTC (rev 5854) @@ -1,5 +1,5 @@ GARNAME = perl -GARVERSION = 5.10.0 +GARVERSION = 5.8.8 CATEGORIES = lang DESCRIPTION = A high-level, general-purpose programming language @@ -12,47 +12,47 @@ libraries. endef -#MASTER_SITES = http://search.cpan.org/CPAN/authors/id/N/NW/NWCLARK/ -#SPKG_SOURCEURL = http://search.cpan.org/~nwclark/perl/ MASTER_SITES = http://www.cpan.org/src/ SPKG_SOURCEURL = http://www.cpan.org/src DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -#DISTFILES += $(call admfiles,CSWperl,depend prototype) -#DISTFILES += $(call admfiles,CSWperldoc,depend prototype) PACKAGES = CSWperl CSWperldoc ARCHALL_CSWperldoc = 1 -REQUIRED_PKGS_CSWperl = CSWbdb44 CSWgdbm +#REQUIRED_PKGS_CSWperl = CSWbdb44 CSWgdbm +REQUIRED_PKGS_CSWperl = CSWbdb CSWgdbm REQUIRED_PKGS_CSWperldoc = CSWperl -PKGFILES_CSWperldoc = $(PKGFILES_DOC) - # Core module updates -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/K/KW/KWILLIAMS/ -#CORE_UPDATES += PathTools-3.25 -#CORE_OBSOLETE += Cwd.pm File/Spec* auto/Cwd +MASTER_SITES += $(CPAN_FIRST_MIRROR)/S/SM/SMUELLER/ +CORE_UPDATES += PathTools-3.30 +CORE_OBSOLETE += Cwd.pm File/Spec* auto/Cwd -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/L/LD/LDS/ -#CORE_UPDATES += CGI.pm-3.29 -#CORE_OBSOLETE += CGI* +MASTER_SITES += $(CPAN_FIRST_MIRROR)/L/LD/LDS/ +CORE_UPDATES += CGI.pm-3.44 +CORE_OBSOLETE += CGI* -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ -#CORE_UPDATES += Test-Simple-0.72 -#CORE_OBSOLETE += Test/Builder* Test/More.pm Test/Simple.pm Test/Tutorial.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ +CORE_UPDATES += Test-Simple-0.92 +CORE_OBSOLETE += Test/Builder* Test/More.pm Test/Simple.pm Test/Tutorial.pm -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/T/TJ/TJENNESS/ -#CORE_UPDATES += File-Temp-0.18 -#CORE_OBSOLETE += File/Temp.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/T/TJ/TJENNESS/ +CORE_UPDATES += File-Temp-0.22 +CORE_OBSOLETE += File/Temp.pm -#MASTER_SITES += $(CPAN_FIRST_MIRROR)/G/GB/GBARR/ -#CORE_UPDATES += IO-1.2301 -#CORE_OBSOLETE += IO/Socket* IO/IO* IO/Socket.pm IO/Select.pm IO/Seekable.pm IO/Poll.pm IO/Pipe.pm IO/Handle.pm IO/File.pm IO/Dir.pm IO.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/G/GB/GBARR/ +CORE_UPDATES += IO-1.25 +CORE_OBSOLETE += IO/Socket* IO/IO* IO/Socket.pm IO/Select.pm IO/Seekable.pm IO/Poll.pm IO/Pipe.pm IO/Handle.pm IO/File.pm IO/Dir.pm IO.pm -#DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) +MASTER_SITES += $(CPAN_FIRST_MIRROR)/A/AM/AMS/ +CORE_UPDATES += Storable-2.20 +CORE_OBSOLETE += Storable/* Storable.pm +DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) + # Dependencies -LIBDEPS += lib/bdb44 +#LIBDEPS += lib/bdb44 +LIBDEPS += lib/bdb47 LIBDEPS += lib/gdbm # Custom configure @@ -64,7 +64,9 @@ INC_COMPAT = $(foreach REV,$(PL_PATCH),$(PL_MAJOR).$(REV)) # Force use of db-4.4 -PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.4 -ldl -lm -lpthread -lc +#PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.4 -ldl -lm -lpthread -lc +# Force use of db-4.7 +PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.7 -ldl -lm -lpthread -lc -lperl # Configuration flags CONFIGURE_ARGS += -Darchlib=$(libdir)/perl/$(GARVERSION) @@ -99,12 +101,16 @@ CONFIGURE_ARGS += -Dvendorlib=$(datadir)/perl/csw CONFIGURE_ARGS += -Dvendorprefix=$(prefix) CONFIGURE_ARGS += -Dlibs="$(PERL_LIBS)" -CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/bdb44/lib /opt/csw/lib" +#CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/bdb44/lib /opt/csw/lib" +CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/lib" CONFIGURE_ARGS += -Dsed=$(bindir)/gsed -EXTRA_LIB += $(prefix)/bdb44/lib -EXTRA_INC += $(prefix)/bdb44/include +#EXTRA_LIB += $(prefix)/bdb44/lib +#EXTRA_INC += $(prefix)/bdb44/include +EXTRA_MERGE_EXCLUDE_FILES = perllocal.pod +PKGFILES_CSWperldoc = $(PKGFILES_DOC) + # Tests take a long time TEST_SCRIPTS = @@ -131,6 +137,18 @@ ln -s libperl.so.$(GARVERSION) libperl.so.$(LIB_MINOR) ; \ ln -s libperl.so.$(GARVERSION) libperl.so ) @$(MAKECOOKIE) +# echo YOUAREHERE +# ( cd $(DESTDIR)$(libdir)/perl/$(GARVERSION)/${TARGET}/CORE ; \ +# chmod 755 libperl.so.$(GARVERSION) ; \ +# rm libperl.so.$(LIB_MINOR) libperl.so ; \ +# ln -s libperl.so.$(GARVERSION) libperl.so.$(LIB_MINOR) ; \ +# ln -s libperl.so.$(GARVERSION) libperl.so ) +# ( cd $(DESTDIR)$(libdir)/perl/$(GARVERSION)/${TARGET} ; \ +# rm libperl* ; \ +# ln -s CORE/libperl.so.$(GARVERSION) libperl.so.$(GARVERSION) ; \ +# ln -s CORE/libperl.so.$(GARVERSION) libperl.so.$(LIB_MINOR) ; \ +# ln -s CORE/libperl.so.$(GARVERSION) libperl.so ) +# $(MAKECOOKIE) # Remove build paths from Config POST_TARGETS += perlconf @@ -156,5 +174,8 @@ @$(MAKECOOKIE) # Invoke post-install targets -post-install: $(POST_TARGETS) +#post-install: $(POST_TARGETS) +post-install-modulated: $(POST_TARGETS) + echo $(DESTDIR) + @rm $(DESTDIR)/opt/csw/lib/perl/5.8.8/perllocal.pod @$(MAKECOOKIE) Modified: csw/mgar/pkg/perl/trunk/checksums =================================================================== --- csw/mgar/pkg/perl/trunk/checksums 2009-08-04 19:56:06 UTC (rev 5853) +++ csw/mgar/pkg/perl/trunk/checksums 2009-08-05 09:01:24 UTC (rev 5854) @@ -1,7 +1,7 @@ -563e035ff1c5b010e539add95a61d219 download/CSWperl.depend -c89c0ccbc325f496da5c21c581d4a156 download/CSWperl.gspec -54aef7ec0bbc9b121e026ffafcd7bb69 download/CSWperl.prototype -fd19c6295f6211062d4e4cdd93bc3278 download/CSWperldoc.depend -a3592ece1e424b77e0ea21153da7d817 download/CSWperldoc.gspec -aa50ae7a4f2dfc64c217b2d5b763be8d download/CSWperldoc.prototype -d2c39b002ebfd2c3c5dba589365c5a71 download/perl-5.10.0.tar.gz +d1b217a7a2463d5543d25490ff1b3d14 download/CGI.pm-3.44.tar.gz +a7e93cf2015881ded1f22b5b2d0cb391 download/File-Temp-0.22.tar.gz +b88aaf2bb7437725b11e9eb48dfb6c93 download/IO-1.25.tar.gz +18a72d6a66bb62ce9bbb422dfa41181a download/PathTools-3.30.tar.gz +2ba3f963daf86c1172cd7bbbd47891be download/Storable-2.20.tar.gz +eaafa92c9a21c4290dd9d0752bb744b0 download/Test-Simple-0.92.tar.gz +b8c118d4360846829beb30b02a6b91a7 download/perl-5.8.8.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 Wed Aug 5 13:12:29 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 11:12:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[5855] csw/mgar/pkg/bind/branches Message-ID: Revision: 5855 http://gar.svn.sourceforge.net/gar/?rev=5855&view=rev Author: bonivart Date: 2009-08-05 11:12:29 +0000 (Wed, 05 Aug 2009) Log Message: ----------- bind: commit stable branch with 9.4.3-P3 Modified Paths: -------------- csw/mgar/pkg/bind/branches/stable/checksums Added Paths: ----------- csw/mgar/pkg/bind/branches/stable/ csw/mgar/pkg/bind/branches/stable/Makefile Removed Paths: ------------- csw/mgar/pkg/bind/branches/stable/Makefile Deleted: csw/mgar/pkg/bind/branches/stable/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-07-31 08:12:00 UTC (rev 5762) +++ csw/mgar/pkg/bind/branches/stable/Makefile 2009-08-05 11:12:29 UTC (rev 5855) @@ -1,92 +0,0 @@ -GARNAME = bind -GARVERSION = 9.6.1 -RELEASE = P1 -DISTVERSION = $(GARVERSION)-$(RELEASE) -DISTNAME = $(GARNAME)-$(DISTVERSION) -WORKSRC = $(WORKDIR)/$(DISTNAME) -CATEGORIES = net - -DESCRIPTION = ISC BIND DNS reference implementation -define BLURB - BIND is open-source software that implements the Domain Name System (DNS) - protocols for the Internet. It is a reference implementation of those - protocols, but it is also production-grade software, suitable for use in - high-volume and high-reliability applications. -endef - -MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)-$(RELEASE)/ -DISTFILES = $(GARNAME)-$(GARVERSION)-$(RELEASE).tar.gz -#MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)/ -#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz - -PACKAGES = CSWbind CSWbinddevel CSWlibbind CSWbindutils - -CATALOGNAME_CSWbinddevel = bind_devel -CATALOGNAME_CSWbindutils = bind_utils - -ARCHALL_CSWbinddevel = 1 - -LICENSE = COPYRIGHT - -SPKG_DESC_CSWbind = ISC BIND DNS main package -SPKG_DESC_CSWbinddevel = ISC BIND DNS development package -SPKG_DESC_CSWlibbind = ISC BIND DNS library package -SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package - -REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils -REQUIRED_PKGS_CSWbinddevel = CSWbind -REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib -REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt - -# We define upstream file regex so we can be notifed of new upstream software release -UPSTREAM_MASTER_SITES = http://ftp.isc.org/isc/bind9/ -UFILES_REGEX = (\d+(?:\.\d+)*) - -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-libtool -CONFIGURE_ARGS += --with-openssl=/opt/csw -CONFIGURE_ARGS += --enable-threads -CONFIGURE_ARGS += --enable-largefile -CONFIGURE_ARGS += --sysconfdir=/etc/opt/csw -CONFIGURE_ARGS += --localstatedir=/var/opt/csw/named - -EXTRA_MERGE_EXCLUDE_FILES = .*~ $(libdir)/.*\.a $(libdir)/.*\.la - -PKGFILES_CSWbinddevel = $(PKGFILES_DEVEL) -PKGFILES_CSWlibbind = $(libdir)/.* -PKGFILES_CSWbindutils = $(bindir)/.* - -# checkpkg can't handle split packages -ENABLE_CHECK = 0 - -INSTALL_SCRIPTS = custom - -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~ /\/init.d\/cswnamed$$$$/ { $$$$2 = "cswinitsmf" } \ - $$$$3 ~ /\/named.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ - $$$$3 ~ /\/var\/opt\/csw\/named/ { $$$$5 = "named" ; $$$$2 = "ugfiles" } \ - $$$$3 ~ /\/CSWbind\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } \ - { print }' - -SPKG_SOURCEURL = http://www.isc.org/software/bind -SPKG_CLASSES_CSWbind = none cswusergroup cswugfiles cswcpsampleconf cswinitsmf - -include gar/category.mk - -SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) - -DOCLIST = README.CSW db.127.0.0 db.localhost named.conf named.root rndc.key - -install-custom: - @echo " ==> Installing $(GARNAME) (custom)" - @ginstall -d $(DESTDIR)/etc/opt/csw/init.d - @cp $(FILEDIR)/CSWbind.cswnamed $(DESTDIR)/etc/opt/csw/init.d/cswnamed - @cp $(FILEDIR)/CSWbind.named.conf.CSW $(DESTDIR)/etc/opt/csw/named.conf.CSW - @ginstall -d $(DESTDIR)/opt/csw/etc/CSWbind - @cp $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/CSWbind/ - @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) - @$(foreach DOC,$(DOCLIST),cp $(FILEDIR)/$(DOC) $(DESTDIR)$(docdir)/$(GARNAME);) - ( cd $(WORKSRC) ; \ - gmake DESTDIR=$(DESTDIR) install ) - @touch $(DESTDIR)/var/opt/csw/named/named.pid - @$(MAKECOOKIE) Copied: csw/mgar/pkg/bind/branches/stable/Makefile (from rev 5782, csw/mgar/pkg/bind/trunk/Makefile) =================================================================== --- csw/mgar/pkg/bind/branches/stable/Makefile (rev 0) +++ csw/mgar/pkg/bind/branches/stable/Makefile 2009-08-05 11:12:29 UTC (rev 5855) @@ -0,0 +1,93 @@ +GARNAME = bind +GARVERSION = 9.4.3 +RELEASE = P3 +DISTVERSION = $(GARVERSION)-$(RELEASE) +DISTNAME = $(GARNAME)-$(DISTVERSION) +WORKSRC = $(WORKDIR)/$(DISTNAME) +CATEGORIES = net + +DESCRIPTION = ISC BIND DNS reference implementation +define BLURB + BIND is open-source software that implements the Domain Name System (DNS) + protocols for the Internet. It is a reference implementation of those + protocols, but it is also production-grade software, suitable for use in + high-volume and high-reliability applications. +endef + +MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)-$(RELEASE)/ +DISTFILES = $(GARNAME)-$(GARVERSION)-$(RELEASE).tar.gz +#MASTER_SITES = http://ftp.isc.org/isc/bind9/$(GARVERSION)/ +#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +PACKAGES = CSWbind CSWbinddevel CSWlibbind CSWbindutils + +CATALOGNAME_CSWbinddevel = bind_devel +CATALOGNAME_CSWbindutils = bind_utils + +ARCHALL_CSWbinddevel = 1 + +LICENSE = COPYRIGHT + +SPKG_DESC_CSWbind = ISC BIND DNS main package +SPKG_DESC_CSWbinddevel = ISC BIND DNS development package +SPKG_DESC_CSWlibbind = ISC BIND DNS library package +SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package + +REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils +REQUIRED_PKGS_CSWbinddevel = CSWbind +REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib +REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt + +# We define upstream file regex so we can be notifed of new upstream software release +UPSTREAM_MASTER_SITES = http://ftp.isc.org/isc/bind9/ +UFILES_REGEX = (\d+(?:\.\d+)*) + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-libtool +CONFIGURE_ARGS += --with-openssl=/opt/csw +CONFIGURE_ARGS += --enable-threads +CONFIGURE_ARGS += --enable-largefile +CONFIGURE_ARGS += --sysconfdir=/etc/opt/csw +CONFIGURE_ARGS += --localstatedir=/var/opt/csw/named + +EXTRA_MERGE_EXCLUDE_FILES = .*~ $(libdir)/.*\.a $(libdir)/.*\.la + +PKGFILES_CSWbinddevel = $(PKGFILES_DEVEL) +PKGFILES_CSWlibbind = $(libdir)/.* +PKGFILES_CSWbindutils = $(bindir)/.* + +# checkpkg can't handle split packages +ENABLE_CHECK = 0 + +INSTALL_SCRIPTS = custom + +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~ /\/init.d\/cswnamed$$$$/ { $$$$2 = "cswinitsmf" } \ + $$$$3 ~ /\/named.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ + $$$$3 ~ /\/var\/opt\/csw\/named/ { $$$$5 = "named" ; $$$$2 = "ugfiles" } \ + $$$$3 ~ /\/CSWbind\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } \ + { print }' + +SPKG_SOURCEURL = http://www.isc.org/software/bind +SPKG_CLASSES_CSWbind = none cswusergroup ugfiles cswcpsampleconf cswinitsmf + +include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + +DOCLIST = README.CSW db.127.0.0 db.localhost named.conf named.root rndc.key + +install-custom: + @echo " ==> Installing $(GARNAME) (custom)" + @ginstall -d $(DESTDIR)/etc/opt/csw/init.d + @cp $(FILEDIR)/CSWbind.cswnamed $(DESTDIR)/etc/opt/csw/init.d/cswnamed + @cp $(FILEDIR)/CSWbind.named.conf.CSW $(DESTDIR)/etc/opt/csw/named.conf.CSW + @ginstall -d $(DESTDIR)/opt/csw/etc/CSWbind + @cp $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/CSWbind/ + @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + @$(foreach DOC,$(DOCLIST),cp $(FILEDIR)/$(DOC) $(DESTDIR)$(docdir)/$(GARNAME);) + ( cd $(WORKSRC) ; \ + gmake DESTDIR=$(DESTDIR) install ) + @ginstall -d $(DESTDIR)/var/opt/csw/named + @touch $(DESTDIR)/var/opt/csw/named/named.pid + @$(MAKECOOKIE) Modified: csw/mgar/pkg/bind/branches/stable/checksums =================================================================== --- csw/mgar/pkg/bind/trunk/checksums 2009-07-31 08:12:00 UTC (rev 5762) +++ csw/mgar/pkg/bind/branches/stable/checksums 2009-08-05 11:12:29 UTC (rev 5855) @@ -1 +1 @@ -e6ce3b355c4e6bf5d66ef100f555da3f download/bind-9.6.1-P1.tar.gz +ed357d3d18dcfa97723f91d9219caa8c download/bind-9.4.3-P3.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 Wed Aug 5 14:24:48 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 12:24:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5856] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 5856 http://gar.svn.sourceforge.net/gar/?rev=5856&view=rev Author: bonivart Date: 2009-08-05 12:24:48 +0000 (Wed, 05 Aug 2009) Log Message: ----------- perl: fix Makefile Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 11:12:29 UTC (rev 5855) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 12:24:48 UTC (rev 5856) @@ -108,8 +108,8 @@ #EXTRA_LIB += $(prefix)/bdb44/lib #EXTRA_INC += $(prefix)/bdb44/include -EXTRA_MERGE_EXCLUDE_FILES = perllocal.pod -PKGFILES_CSWperldoc = $(PKGFILES_DOC) +EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod +PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* # Tests take a long time TEST_SCRIPTS = @@ -176,6 +176,4 @@ # Invoke post-install targets #post-install: $(POST_TARGETS) post-install-modulated: $(POST_TARGETS) - echo $(DESTDIR) - @rm $(DESTDIR)/opt/csw/lib/perl/5.8.8/perllocal.pod @$(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 Wed Aug 5 16:18:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:18:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5857] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 5857 http://gar.svn.sourceforge.net/gar/?rev=5857&view=rev Author: dmichelsen Date: 2009-08-05 14:18:26 +0000 (Wed, 05 Aug 2009) Log Message: ----------- mGAR v2: Use grep instead of egrep to allow matching of e.g. gtk+ without special meaning of '+' 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-08-05 12:24:48 UTC (rev 5856) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-05 14:18:26 UTC (rev 5857) @@ -141,7 +141,7 @@ # error out if it mentions the file without an "OK". checksum-%: $(CHECKSUM_FILE) @echo " ==> Running checksum on $*" - @if gegrep -- '/$*$$' $(CHECKSUM_FILE); then \ + @if ggrep -- '/$*$$' $(CHECKSUM_FILE); then \ if LC_ALL="C" LANG="C" gmd5sum -c $(CHECKSUM_FILE) 2>&1 | \ ggrep -- '$*' | ggrep -v ':[ ]\+OK'; then \ echo '(!!!) $* failed checksum test!' 1>&2; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Wed Aug 5 16:19:58 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:19:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5858] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 5858 http://gar.svn.sourceforge.net/gar/?rev=5858&view=rev Author: bonivart Date: 2009-08-05 14:19:58 +0000 (Wed, 05 Aug 2009) Log Message: ----------- perl: add license Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 14:18:26 UTC (rev 5857) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-05 14:19:58 UTC (rev 5858) @@ -23,6 +23,8 @@ REQUIRED_PKGS_CSWperl = CSWbdb CSWgdbm REQUIRED_PKGS_CSWperldoc = CSWperl +LICENSE = Copying + # Core module updates MASTER_SITES += $(CPAN_FIRST_MIRROR)/S/SM/SMUELLER/ CORE_UPDATES += PathTools-3.30 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 Aug 5 16:29:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:29:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5859] csw/mgar/pkg/gtk2/trunk Message-ID: Revision: 5859 http://gar.svn.sourceforge.net/gar/?rev=5859&view=rev Author: dmichelsen Date: 2009-08-05 14:29:07 +0000 (Wed, 05 Aug 2009) Log Message: ----------- gtk2: Fix postinstall to only execute 32 bit binaries on 32 bit kernels Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/checksums csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall Modified: csw/mgar/pkg/gtk2/trunk/checksums =================================================================== --- csw/mgar/pkg/gtk2/trunk/checksums 2009-08-05 14:19:58 UTC (rev 5858) +++ csw/mgar/pkg/gtk2/trunk/checksums 2009-08-05 14:29:07 UTC (rev 5859) @@ -1,3 +1,3 @@ -44b74e3b782135f33cc8a1c5e8f97614 download/CSWgtk2.postinstall +7ff4fdcaa073afc764af7106c0ba441c download/CSWgtk2.postinstall 34f5b20f6caf282b2533784fbb1b4395 download/fixme.sh 8d1ea0b9b0400224d25b0cc2750b438d download/gtk+-2.16.5.tar.bz2 Modified: csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall =================================================================== --- csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall 2009-08-05 14:19:58 UTC (rev 5858) +++ csw/mgar/pkg/gtk2/trunk/files/CSWgtk2.postinstall 2009-08-05 14:29:07 UTC (rev 5859) @@ -10,11 +10,13 @@ chroot "${PKG_ROOT_DIR}" /opt/csw/bin/gdk-pixbuf-query-loaders >"${PKG_ROOT_DIR}"/opt/csw/etc/gtk-2.0/gdk-pixbuf.loaders && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/gtk-2.0/gdk-pixbuf.loaders f 0644 root bin test -x ${PKG_ROOT_DIR}/opt/csw/bin/sparcv9/gdk-pixbuf-query-loaders && \ +test -x /usr/bin/isainfo && [ "`/usr/bin/isainfo -b`" = 64 ] && mkdir -p "${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0 && chroot "${PKG_ROOT_DIR}" /opt/csw/bin/sparcv9/gdk-pixbuf-query-loaders >"${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0/gdk-pixbuf.loaders && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/64/gtk-2.0 d 0755 root bin && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/64/gtk-2.0/gdk-pixbuf.loaders f 0644 root bin test -x ${PKG_ROOT_DIR}/opt/csw/bin/amd64/gdk-pixbuf-query-loaders && \ +test -x /usr/bin/isainfo && [ "`/usr/bin/isainfo -b`" = 64 ] && mkdir -p "${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0 && chroot "${PKG_ROOT_DIR}" /opt/csw/bin/amd64/gdk-pixbuf-query-loaders >"${PKG_ROOT_DIR}"/opt/csw/etc/64/gtk-2.0/gdk-pixbuf.loaders && chroot "${PKG_ROOT_DIR}" /usr/sbin/installf CSWgtk2 /opt/csw/etc/64/gtk-2.0 d 0755 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 Wed Aug 5 16:44:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:44:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5860] csw/mgar/pkg Message-ID: Revision: 5860 http://gar.svn.sourceforge.net/gar/?rev=5860&view=rev Author: dmichelsen Date: 2009-08-05 14:44:55 +0000 (Wed, 05 Aug 2009) Log Message: ----------- gail: Make package a stub to gtk2, as the contents is now included in the main project Added Paths: ----------- csw/mgar/pkg/gail/branches/ csw/mgar/pkg/gail/tags/ csw/mgar/pkg/gail/tags/legacy/ csw/mgar/pkg/gail/tags/libgail_gnome-legacy/ csw/mgar/pkg/gail/trunk/Makefile csw/mgar/pkg/gail/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/gail/trunk/legacy/ csw/mgar/pkg/libgail_gnome/ Property Changed: ---------------- csw/mgar/pkg/gail/trunk/ Property changes on: csw/mgar/pkg/gail/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/gail/trunk/Makefile =================================================================== --- csw/mgar/pkg/gail/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gail/trunk/Makefile 2009-08-05 14:44:55 UTC (rev 5860) @@ -0,0 +1,21 @@ +GARNAME = gail +GARVERSION = 1.21.5.1 +CATEGORIES = lib + +DESCRIPTION = Accessibility support for GTK+ and libgnomecanvas (stub, now in CSWgtk2) +define BLURB + This is a stub. The gail library has been included in the main gtk2 project and is + distributed from there. +endef + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = +TEST_SCRIPTS = + +ENABLE_CHECK = 0 + +ARCHALL = 1 +REQUIRED_PKGS = CSWgtk2 + +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 Aug 5 16:46:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 14:46:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5861] csw/mgar/pkg Message-ID: Revision: 5861 http://gar.svn.sourceforge.net/gar/?rev=5861&view=rev Author: dmichelsen Date: 2009-08-05 14:46:52 +0000 (Wed, 05 Aug 2009) Log Message: ----------- libgail_gnome: Remake toplevel package as this is in fact different from gail Added Paths: ----------- csw/mgar/pkg/libgail_gnome/ csw/mgar/pkg/libgail_gnome/branches/ csw/mgar/pkg/libgail_gnome/tags/ csw/mgar/pkg/libgail_gnome/tags/legacy/ csw/mgar/pkg/libgail_gnome/trunk/ Removed Paths: ------------- csw/mgar/pkg/gail/tags/libgail_gnome-legacy/ 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 Aug 5 19:33:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:33:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5862] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5862 http://gar.svn.sourceforge.net/gar/?rev=5862&view=rev Author: valholla Date: 2009-08-05 17:33:25 +0000 (Wed, 05 Aug 2009) Log Message: ----------- tweaks for custom classes Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/sendmail/trunk/files/i.cswosrel Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 14:46:52 UTC (rev 5861) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:33:25 UTC (rev 5862) @@ -16,7 +16,8 @@ DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 i.cswosrel +DISTFILES += cswsendmail site.config.m4 CSWsendmail.i.sol8 +DISTFILES += CSWsendmail.i.sol9 CSWsendmail.i.sol10 DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) @@ -37,11 +38,14 @@ SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel PROTOTYPE_FILTER = awk \ '$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ - $$$$3 ~/sol8\./ { $$$$2 = "cswosrel" } \ - $$$$3 ~/sol9\./ { $$$$2 = "cswosrel" } \ - $$$$3 ~/sol10\./ { $$$$2 = "cswosrel" } \ + $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ + $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ + $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print }' +PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") +PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") +PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* @@ -100,7 +104,6 @@ ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d ginstall -d $(DESTDIR)$(sysconfdir)/mail - ginstall -d $(DESTDIR)/usr/sadm/install/scripts @# install the libraries @( for file in $(LIBFILES) ; do \ @@ -151,7 +154,6 @@ done ) ( mv $(DESTDIR)$(sysconfdir)/mail/sm-client.st.CSW \ $(DESTDIR)/var/opt/csw/spool/clientmqueue/ ) - cp $(DOWNLOADDIR)/i.cswosrel $(DESTDIR)/usr/sadm/install/scripts/ @$(MAKECOOKIE) merge-OS: Deleted: csw/mgar/pkg/sendmail/trunk/files/i.cswosrel =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-08-05 14:46:52 UTC (rev 5861) +++ csw/mgar/pkg/sendmail/trunk/files/i.cswosrel 2009-08-05 17:33:25 UTC (rev 5862) @@ -1,22 +0,0 @@ -#!/bin/sh -# -# Move the OS version specific files to the base directory. -# - -MYOSREL="sol`/sbin/uname -r |sed 's/5\.//'`" -echo "Installing class for ${MYOSREL}." - -while read src dest -do - FILEOSREL="`echo ${dest} |sed 's/.*\(sol[0-9]*\).*/\1/'`" - if [ "_x${MYOSREL}x_" = "_x${FILEOSREL}x_" ]; then - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2=`echo $dest | sed "s/${MYOSREL}.//g"` || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - fi -done -exit 0 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 5 19:35:14 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:35:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5863] csw/mgar/pkg/myodbc3/ Message-ID: Revision: 5863 http://gar.svn.sourceforge.net/gar/?rev=5863&view=rev Author: wahwah Date: 2009-08-05 17:35:14 +0000 (Wed, 05 Aug 2009) Log Message: ----------- myodbc3: Copying the template Added Paths: ----------- csw/mgar/pkg/myodbc3/ 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 Aug 5 19:35:17 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:35:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5864] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 5864 http://gar.svn.sourceforge.net/gar/?rev=5864&view=rev Author: valholla Date: 2009-08-05 17:35:16 +0000 (Wed, 05 Aug 2009) Log Message: ----------- update checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:35:14 UTC (rev 5863) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:35:16 UTC (rev 5864) @@ -1,3 +1,6 @@ +27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 +24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 +b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space @@ -7,7 +10,6 @@ 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW 2592f7d191867c1d1c63ff16d818dcb5 download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW -6e6f156034cac51c706c1b1484155d8a download/i.cswosrel d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.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 Aug 5 19:37:33 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:37:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[5865] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 5865 http://gar.svn.sourceforge.net/gar/?rev=5865&view=rev Author: valholla Date: 2009-08-05 17:37:32 +0000 (Wed, 05 Aug 2009) Log Message: ----------- tweaks for PROTOTYPE_FILTER Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:35:16 UTC (rev 5864) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:37:32 UTC (rev 5865) @@ -43,9 +43,9 @@ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print }' -PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") -PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") -PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") +PROTOTYPE_FILTER += fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8" +PROTOTYPE_FILTER += fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9" +PROTOTYPE_FILTER += fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10" PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* 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 Aug 5 19:47:11 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 05 Aug 2009 17:47:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5866] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5866 http://gar.svn.sourceforge.net/gar/?rev=5866&view=rev Author: valholla Date: 2009-08-05 17:47:11 +0000 (Wed, 05 Aug 2009) Log Message: ----------- rename class scripts Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums Added Paths: ----------- csw/mgar/pkg/sendmail/trunk/files/i.sol10 csw/mgar/pkg/sendmail/trunk/files/i.sol8 csw/mgar/pkg/sendmail/trunk/files/i.sol9 Removed Paths: ------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-05 17:47:11 UTC (rev 5866) @@ -16,8 +16,7 @@ DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 CSWsendmail.i.sol8 -DISTFILES += CSWsendmail.i.sol9 CSWsendmail.i.sol10 +DISTFILES += cswsendmail site.config.m4 i.sol8 i.sol9 i.sol10 DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) @@ -36,16 +35,16 @@ REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils ARCHALL_CSWsendmailcommon = 1 SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel -PROTOTYPE_FILTER = awk \ +PROTOTYPE_FILTER = (awk \ '$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ - { print }' -PROTOTYPE_FILTER += fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8" -PROTOTYPE_FILTER += fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9" -PROTOTYPE_FILTER += fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10" + { print }') +PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") +PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") +PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,6 +1,3 @@ -27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 -24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 -b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Deleted: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-05 17:37:32 UTC (rev 5865) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-05 17:47:11 UTC (rev 5866) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol10 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol10 2009-08-05 17:47:11 UTC (rev 5866) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol8 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol8 2009-08-05 17:47:11 UTC (rev 5866) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol9 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol9 2009-08-05 17:47:11 UTC (rev 5866) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Wed Aug 5 22:48:57 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Wed, 05 Aug 2009 20:48:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5867] csw/mgar/pkg/ruby/trunk/Makefile Message-ID: Revision: 5867 http://gar.svn.sourceforge.net/gar/?rev=5867&view=rev Author: bdwalton Date: 2009-08-05 20:48:56 +0000 (Wed, 05 Aug 2009) Log Message: ----------- ruby: use COMPILE_ELISP; update extra lib path (for rubydev); dbd dep change Modified Paths: -------------- csw/mgar/pkg/ruby/trunk/Makefile Modified: csw/mgar/pkg/ruby/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby/trunk/Makefile 2009-08-05 17:47:11 UTC (rev 5866) +++ csw/mgar/pkg/ruby/trunk/Makefile 2009-08-05 20:48:56 UTC (rev 5867) @@ -5,7 +5,7 @@ CATEGORIES = lang # disable test scripts (all passed with 1.8.7p174) -TEST_SCRIPTS = +# TEST_SCRIPTS = PREREQUISITE_PKGS = CSWbdb3 CSWgdbm CSWgfile CSWiconv CSWncurses CSWossldevel PREREQUISITE_PKGS += CSWreadline CSWzlib @@ -18,7 +18,7 @@ LICENSE = COPYING -REQUIRED_PKGS_CSWruby = CSWbdb3 CSWgdbm CSWiconv CSWgcc4corert +REQUIRED_PKGS_CSWruby = CSWbdb CSWgdbm CSWiconv CSWgcc4corert REQUIRED_PKGS_CSWruby += CSWncurses CSWosslrt CSWreadline CSWzlib REQUIRED_PKGS_CSWrubydoc = CSWruby @@ -80,7 +80,7 @@ # This is for rbconfig.rb: without this, modules built may not get a proper # setting. -EXTRA_LDFLAGS = -R /opt/csw/gcc4/lib +EXTRA_LDFLAGS = -R $(abspath /opt/csw/gcc4/lib/$(MM_LIBDIR)) CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-pthread @@ -102,6 +102,8 @@ # We want libruby-static.a to ship. mkmf tests for various things using it. MERGE_EXCLUDE_STATICLIBS = +COMPILE_ELISP = 1 + include gar/category.mk SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) @@ -115,10 +117,7 @@ rubymode: @echo " ===> Installing and Compilingn ruby-mode elisp" @(mkdir -p $(RMDIR); \ - cp $(WORKSRC)/misc/*el $(RMDIR); \ - for f in $(RMDIR)/*; do \ - emacs -L $(RMDIR) -batch -f batch-byte-compile "$$f"; \ - done) + cp $(WORKSRC)/misc/*el $(RMDIR)) # Fix up rbconfig rbconfig: 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 Aug 5 23:23:22 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 05 Aug 2009 21:23:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[5868] csw/mgar/pkg/bind/branches/stable-9.4.3p3/ Message-ID: Revision: 5868 http://gar.svn.sourceforge.net/gar/?rev=5868&view=rev Author: dmichelsen Date: 2009-08-05 21:23:21 +0000 (Wed, 05 Aug 2009) Log Message: ----------- bind: Make new branch from old trunk at 2425 (stable) for security fix Added Paths: ----------- csw/mgar/pkg/bind/branches/stable-9.4.3p3/ 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 Aug 6 11:13:16 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 09:13:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[5869] csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk Message-ID: Revision: 5869 http://gar.svn.sourceforge.net/gar/?rev=5869&view=rev Author: dmichelsen Date: 2009-08-06 09:13:16 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/ExtUtils-ParseXS: Update to 2.2002 Modified Paths: -------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-ParseXS/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/ExtUtils-ParseXS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-06 09:13:16 UTC (rev 5869) @@ -1,9 +1,9 @@ GARNAME = ExtUtils-ParseXS -GARVERSION = 2.18 +GARVERSION = 2.2002 CATEGORIES = cpan -AUTHOR = KWILLIAMS +AUTHOR = DAGOLDEN -DESCRIPTION = converts Perl XS code into C code +DESCRIPTION = Converts Perl XS code into C code define BLURB ExtUtils::ParseXS will compile XS code into C code by embedding the constructs necessary to let C functions manipulate Perl values and creates @@ -12,8 +12,11 @@ values. endef -DISTFILES += $(call admfiles,CSWpmextutparsexs,prototype) +PACKAGES = CSWpmextutparsexs +CATALOGNAME = pm_extutparsexs -BUILDDEPS += cpan/ExtUtils-CBuilder +ARCHALL = 1 +SPKG_VERSION = 2.20.02 + include gar/category.mk Modified: csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/checksums 2009-08-06 09:13:16 UTC (rev 5869) @@ -1,3 +1 @@ -be577bd5c1781cda0700bf5dfe862a05 download/CSWpmextutparsexs.gspec -d250fa7b2c0c9d4c1c8ae23228e200b6 download/CSWpmextutparsexs.prototype -473a59a9a4b9887137dab156e5312ff7 download/ExtUtils-ParseXS-2.18.tar.gz +96446b90880defc2200a8acfb9a6dfb8 download/ExtUtils-ParseXS-2.2002.tar.gz Deleted: csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.gspec 2009-08-06 09:13:16 UTC (rev 5869) @@ -1,9 +0,0 @@ -%var bitname pm_extutparsexs -%var pkgname CSWpmextutparsexs -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2002-2003 Ken Williams. 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/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype 2009-08-05 21:23:21 UTC (rev 5868) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/files/CSWpmextutparsexs.prototype 2009-08-06 09:13:16 UTC (rev 5869) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/ExtUtils 0755 root bin -d none /opt/csw/lib/perl/csw/auto/ExtUtils/ParseXS 0755 root bin -f none /opt/csw/lib/perl/csw/auto/ExtUtils/ParseXS/.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/man1 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/ExtUtils::ParseXS.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/ExtUtils 0755 root bin -f none /opt/csw/share/perl/csw/ExtUtils/ParseXS.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/xsubpp 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 Thu Aug 6 12:04:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 10:04:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5870] csw/mgar/pkg/openldap/trunk Message-ID: Revision: 5870 http://gar.svn.sourceforge.net/gar/?rev=5870&view=rev Author: dmichelsen Date: 2009-08-06 10:04:08 +0000 (Thu, 06 Aug 2009) Log Message: ----------- openldap: Update to 2.4.17 Modified Paths: -------------- csw/mgar/pkg/openldap/trunk/Makefile csw/mgar/pkg/openldap/trunk/checksums Modified: csw/mgar/pkg/openldap/trunk/Makefile =================================================================== --- csw/mgar/pkg/openldap/trunk/Makefile 2009-08-06 09:13:16 UTC (rev 5869) +++ csw/mgar/pkg/openldap/trunk/Makefile 2009-08-06 10:04:08 UTC (rev 5870) @@ -1,5 +1,5 @@ GARNAME = openldap -GARVERSION = 2.4.16 +GARVERSION = 2.4.17 CATEGORIES = server DESCRIPTION = Open source implementation of the Lightweight Directory Access Protocol Modified: csw/mgar/pkg/openldap/trunk/checksums =================================================================== --- csw/mgar/pkg/openldap/trunk/checksums 2009-08-06 09:13:16 UTC (rev 5869) +++ csw/mgar/pkg/openldap/trunk/checksums 2009-08-06 10:04:08 UTC (rev 5870) @@ -1,7 +1,7 @@ 2f6e6a8c9c3497f1c0c9d52ea2d1dafa download/CSWoldap.gspec 892dba5f625755be024c30ea0055fd55 download/README.CSW c50f5c4040139b6cf57fcc08abffbee7 download/cswopenldap -ed5b86e9d2b372d10edfe3bb59fee165 download/openldap-2.4.16.tgz +5e82103780f8cfc2b2fbd0f77c47c158 download/openldap-2.4.17.tgz 0e57547ad2b5fedca9f0bd4beaddfe39 download/openldap.xml ab2ac7519b092ce8d16124c5270bfec0 download/openldaprc d3dee9018137c39f357859b652e3a67c download/patch-oldap-2.4.16-ntlm.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 Thu Aug 6 13:41:57 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 11:41:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5871] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 5871 http://gar.svn.sourceforge.net/gar/?rev=5871&view=rev Author: dmichelsen Date: 2009-08-06 11:41:57 +0000 (Thu, 06 Aug 2009) Log Message: ----------- gtk2: Added missing dependencies after the bug report from Nicolai Schwindt Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 10:04:08 UTC (rev 5870) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 11:41:57 UTC (rev 5871) @@ -37,6 +37,7 @@ PREREQUISITE_PKGS = CSWbash REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib +REQUIRED_PKGS_CSWgtk2 += CSWlibgsf CSWlibcroco REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 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 dmichelsen at users.sourceforge.net Thu Aug 6 13:54:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 11:54:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5872] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 5872 http://gar.svn.sourceforge.net/gar/?rev=5872&view=rev Author: dmichelsen Date: 2009-08-06 11:54:13 +0000 (Thu, 06 Aug 2009) Log Message: ----------- gtk2: Added missing dependencies to devel package Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 11:41:57 UTC (rev 5871) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-06 11:54:13 UTC (rev 5872) @@ -38,7 +38,8 @@ REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib REQUIRED_PKGS_CSWgtk2 += CSWlibgsf CSWlibcroco -REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 +REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 CSWglib2devel +REQUIRED_PKGS_CSWgtk2devel += CSWlibcairodevel CSWlibx11devel CSWlibxrenderdevel CSWpangodevel 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 dmichelsen at users.sourceforge.net Thu Aug 6 15:07:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 13:07:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5873] csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk Message-ID: Revision: 5873 http://gar.svn.sourceforge.net/gar/?rev=5873&view=rev Author: dmichelsen Date: 2009-08-06 13:07:36 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/ExtUtils-CBuilder: Update to 0.2603 Modified Paths: -------------- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/Makefile csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.depend csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/ Property changes on: csw/mgar/pkg/cpan/ExtUtils-CBuilder/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/ExtUtils-CBuilder/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/Makefile 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/Makefile 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,9 +1,9 @@ GARNAME = ExtUtils-CBuilder -GARVERSION = 0.18 +GARVERSION = 0.2603 CATEGORIES = cpan -AUTHOR = KWILLIAMS +AUTHOR = DAGOLDEN -DESCRIPTION = compile and link C code for Perl modules +DESCRIPTION = Compile and link C code for Perl modules define BLURB This module can build the C portions of Perl modules by invoking the appropriate compilers and linkers in a cross-platform manner. It was @@ -13,6 +13,11 @@ goal! endef -DISTFILES += $(call admfiles,CSWpmextutcbuilder,depend prototype) +PACKAGES = CSWpmextutcbuilder +CATALOGNAME = pm_extutcbuilder +ARCHALL = 1 + +SPKG_VERSION = 0.26.03 + include gar/category.mk Modified: csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/checksums 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,4 +1 @@ -805af062ba7f0d73fbce8eeb5c397d06 download/CSWpmextutcbuilder.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmextutcbuilder.depend -b3535f585e375332384424c0bba7e5e5 download/CSWpmextutcbuilder.prototype -d119f0c6c12787a8d5b255208c3c74c5 download/ExtUtils-CBuilder-0.18.tar.gz +1da23b2771380f66033a233a9503f247 download/ExtUtils-CBuilder-0.2603.tar.gz Deleted: csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.gspec 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,9 +0,0 @@ -%var bitname pm_extutcbuilder -%var pkgname CSWpmextutcbuilder -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2003-2005 Ken Williams. 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/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype 2009-08-06 11:54:13 UTC (rev 5872) +++ csw/mgar/pkg/cpan/ExtUtils-CBuilder/trunk/files/CSWpmextutcbuilder.prototype 2009-08-06 13:07:36 UTC (rev 5873) @@ -1,26 +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/ExtUtils 0755 root bin -d none /opt/csw/lib/perl/csw/auto/ExtUtils/CBuilder 0755 root bin -f none /opt/csw/lib/perl/csw/auto/ExtUtils/CBuilder/.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/ExtUtils::CBuilder.3perl 0444 root bin -f none /opt/csw/share/man/man3/ExtUtils::CBuilder::Platform::Windows.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/ExtUtils 0755 root bin -d none /opt/csw/share/perl/csw/ExtUtils/CBuilder 0755 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Base.pm 0444 root bin -d none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform 0755 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/Unix.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/VMS.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/Windows.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/aix.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/cygwin.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/darwin.pm 0444 root bin -f none /opt/csw/share/perl/csw/ExtUtils/CBuilder/Platform/os2.pm 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 Thu Aug 6 15:08:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 13:08:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[5874] csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile Message-ID: Revision: 5874 http://gar.svn.sourceforge.net/gar/?rev=5874&view=rev Author: dmichelsen Date: 2009-08-06 13:08:39 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/ExtUtils-ParseXS: Add missing dependency Modified Paths: -------------- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile Modified: csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-06 13:07:36 UTC (rev 5873) +++ csw/mgar/pkg/cpan/ExtUtils-ParseXS/trunk/Makefile 2009-08-06 13:08:39 UTC (rev 5874) @@ -17,6 +17,8 @@ ARCHALL = 1 +REQUIRED_PKGS = CSWpmextutcbuilder + SPKG_VERSION = 2.20.02 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 Aug 6 15:20:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 13:20:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5875] csw/mgar/pkg/cpan/Module-Pluggable/trunk Message-ID: Revision: 5875 http://gar.svn.sourceforge.net/gar/?rev=5875&view=rev Author: dmichelsen Date: 2009-08-06 13:20:07 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Module-Pluggable: Update to 3.9 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Pluggable/trunk/Makefile csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.depend csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Module-Pluggable/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-Pluggable/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/Module-Pluggable/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/Makefile 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/Makefile 2009-08-06 13:20:07 UTC (rev 5875) @@ -1,17 +1,20 @@ GARNAME = Module-Pluggable -GARVERSION = 3.5 +GARVERSION = 3.9 CATEGORIES = cpan AUTHOR = SIMONW -DESCRIPTION = automatically give your module the ability to have plugins +DESCRIPTION = Automatically give your module the ability to have plugins define BLURB - Provides a simple but, hopefully, extensible way of having 'plugins' for - your module. Obviously this isn't going to be the be all and end all of - solutions but it works for me. Essentially all it does is export a method - into your namespace that looks through a search path for .pm files and turn - those into class names. Optionally it instantiates those classes for you. + Provides a simple but, hopefully, extensible way of having 'plugins' for + your module. Obviously this isn't going to be the be all and end all of + solutions but it works for me. Essentially all it does is export a method + into your namespace that looks through a search path for .pm files and turn + those into class names. Optionally it instantiates those classes for you. endef -DISTFILES += $(call admfiles,CSWpmmoduleplug,depend prototype) +PACKAGES = CSWpmmoduleplug +CATALOGNAME = pm_moduleplug +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/checksums 2009-08-06 13:20:07 UTC (rev 5875) @@ -1,4 +1 @@ -c764bb310619f7c4843a2dd032512e1e download/CSWpmmoduleplug.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmmoduleplug.depend -167a3d4807a5ae8d8881a327316c1fea download/CSWpmmoduleplug.prototype -c5a57fc2ca1736bf3c6422a424a1ebeb download/Module-Pluggable-3.5.tar.gz +e2410a59c917f44c1de9a816f0492985 download/Module-Pluggable-3.9.tar.gz Deleted: csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.gspec 2009-08-06 13:20:07 UTC (rev 5875) @@ -1,8 +0,0 @@ -%var bitname pm_moduleplug -%var pkgname CSWpmmoduleplug -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright, 2003 Simon Wistow -Distributed under the same terms as Perl itself. - Deleted: csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype 2009-08-06 13:08:39 UTC (rev 5874) +++ csw/mgar/pkg/cpan/Module-Pluggable/trunk/files/CSWpmmoduleplug.prototype 2009-08-06 13:20:07 UTC (rev 5875) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/Pluggable 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/Pluggable/.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/Module::Pluggable.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/Module 0755 root bin -f none /opt/csw/share/perl/csw/Module/Pluggable.pm 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 Thu Aug 6 16:01:06 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:01:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5876] csw/mgar/pkg/cpan Message-ID: Revision: 5876 http://gar.svn.sourceforge.net/gar/?rev=5876&view=rev Author: dmichelsen Date: 2009-08-06 14:01:06 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Algorithm-Depedency: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Algorithm-Depedency/ csw/mgar/pkg/cpan/Algorithm-Depedency/branches/ csw/mgar/pkg/cpan/Algorithm-Depedency/tags/ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Algorithm-Depedency/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/Algorithm-Depedency/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile 2009-08-06 14:01:06 UTC (rev 5876) @@ -0,0 +1,20 @@ +GARNAME = Algorithm-Dependency +GARVERSION = 1.110 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Base class for implementing various dependency trees +define BLURB + Algorithm::Dependency is a framework for creating simple read-only + dependency heirachies, where you have a set of items that rely on other + items in the set, and require actions on them as well. +endef + +PACKAGES = CSWpmalgorithmdep +CATALOGNAME = pm_algorithmdep + +REQUIRED_PKGS = CSWpmtestclassapi CSWpmparamsutil + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/checksums 2009-08-06 14:01:06 UTC (rev 5876) @@ -0,0 +1 @@ +dc1dab2ac44c315caa092397423b1429 download/Algorithm-Dependency-1.110.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 Aug 6 16:05:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:05:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[5877] csw/mgar/pkg Message-ID: Revision: 5877 http://gar.svn.sourceforge.net/gar/?rev=5877&view=rev Author: dmichelsen Date: 2009-08-06 14:05:31 +0000 (Thu, 06 Aug 2009) Log Message: ----------- libmcrypt: Initial commit, strangely the tests fail Added Paths: ----------- csw/mgar/pkg/libmcrypt/ csw/mgar/pkg/libmcrypt/branches/ csw/mgar/pkg/libmcrypt/tags/ csw/mgar/pkg/libmcrypt/trunk/ csw/mgar/pkg/libmcrypt/trunk/Makefile csw/mgar/pkg/libmcrypt/trunk/checksums csw/mgar/pkg/libmcrypt/trunk/files/ Property changes on: csw/mgar/pkg/libmcrypt/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/libmcrypt/trunk/Makefile =================================================================== --- csw/mgar/pkg/libmcrypt/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libmcrypt/trunk/Makefile 2009-08-06 14:05:31 UTC (rev 5877) @@ -0,0 +1,29 @@ +GARNAME = libmcrypt +GARVERSION = 2.5.8 +CATEGORIES = lib + +DESCRIPTION = GPL replacement for Unix crypt that supports a wide range of algorithms and modes +define BLURB + mcrypt, and the accompanying libmcrypt, are intended to be replacements for the old + Unix crypt, except that they are under the GPL and support an ever-wider range of + algorithms and modes +endef + +SF_PROJ = mcrypt +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +# 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) +CONFIGURE_ARGS += --with-included-algos=cast-128,gost,rijndael-128,twofish,arcfour,cast-256,loki97,rijndael-192,saferplus,wake,blowfish-compat,des,rijndael-256,serpent,xtea,blowfish,enigma,rc2,tripledes + +TEST_TARGET = check + +include gar/category.mk + +PATH := $(PATH):/opt/csw/gcc4/bin Added: csw/mgar/pkg/libmcrypt/trunk/checksums =================================================================== --- csw/mgar/pkg/libmcrypt/trunk/checksums (rev 0) +++ csw/mgar/pkg/libmcrypt/trunk/checksums 2009-08-06 14:05:31 UTC (rev 5877) @@ -0,0 +1 @@ +c4f491dd411a09e9de3b8702ea6f73eb download/libmcrypt-2.5.8.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 Thu Aug 6 16:06:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:06:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5878] csw/mgar/pkg/cpan Message-ID: Revision: 5878 http://gar.svn.sourceforge.net/gar/?rev=5878&view=rev Author: dmichelsen Date: 2009-08-06 14:06:30 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Params-Util: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Params-Util/ csw/mgar/pkg/cpan/Params-Util/branches/ csw/mgar/pkg/cpan/Params-Util/tags/ csw/mgar/pkg/cpan/Params-Util/trunk/ csw/mgar/pkg/cpan/Params-Util/trunk/Makefile csw/mgar/pkg/cpan/Params-Util/trunk/checksums csw/mgar/pkg/cpan/Params-Util/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Params-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/cpan/Params-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Params-Util/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Params-Util/trunk/Makefile 2009-08-06 14:06:30 UTC (rev 5878) @@ -0,0 +1,15 @@ +GARNAME = Params-Util +GARVERSION = 1.00 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Simple, compact and correct param-checking functions +define BLURB + "Params::Util" provides a basic set of importable functions that makes + checking parameters a hell of a lot easier +endef + +PACKAGES = CSWpmparamsutil +CATALOGNAME = pm_paramsutil + +include gar/category.mk Added: csw/mgar/pkg/cpan/Params-Util/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Params-Util/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Params-Util/trunk/checksums 2009-08-06 14:06:30 UTC (rev 5878) @@ -0,0 +1 @@ +827ba4b8bed00e718cea60321129be41 download/Params-Util-1.00.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 Aug 6 16:27:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:27:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5879] csw/mgar/pkg/cpan Message-ID: Revision: 5879 http://gar.svn.sourceforge.net/gar/?rev=5879&view=rev Author: dmichelsen Date: 2009-08-06 14:27:31 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Test-ClassAPI: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-ClassAPI/ csw/mgar/pkg/cpan/Test-ClassAPI/branches/ csw/mgar/pkg/cpan/Test-ClassAPI/tags/ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums csw/mgar/pkg/cpan/Test-ClassAPI/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-ClassAPI/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/Test-ClassAPI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile 2009-08-06 14:27:31 UTC (rev 5879) @@ -0,0 +1,25 @@ +GARNAME = Test-ClassAPI +GARVERSION = 1.06 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Provides basic first-pass API testing for large class trees +define BLURB + For many APIs with large numbers of classes, it can be very useful to be + able to do a quick once-over to make sure that classes, methods, and + inheritance is correct, before doing more comprehensive testing. This + module aims to provide such a capability. +endef + +PACKAGES = CSWpmtestclassapi +CATALOGNAME = pm_testclassapi + +#Warning: prerequisite Class::Inspector 1.12 not found. +#Warning: prerequisite Config::Tiny 2.00 not found. +#Warning: prerequisite ExtUtils::MakeMaker 6.42 not found. We have 6.30. +#Warning: prerequisite Params::Util 1.00 not found. + + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/checksums 2009-08-06 14:27:31 UTC (rev 5879) @@ -0,0 +1 @@ +ee31a9e1ecedcf720a9e89461a83442e download/Test-ClassAPI-1.06.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 Aug 6 16:30:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:30:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5880] csw/mgar/pkg/cpan/Class-Inspector/trunk Message-ID: Revision: 5880 http://gar.svn.sourceforge.net/gar/?rev=5880&view=rev Author: dmichelsen Date: 2009-08-06 14:30:58 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Class-Inspector: Update to 1.24 Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Inspector/trunk/Makefile csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Class-Inspector/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-Inspector/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/Class-Inspector/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Inspector/trunk/Makefile 2009-08-06 14:27:31 UTC (rev 5879) +++ csw/mgar/pkg/cpan/Class-Inspector/trunk/Makefile 2009-08-06 14:30:58 UTC (rev 5880) @@ -1,9 +1,9 @@ GARNAME = Class-Inspector -GARVERSION = 1.16 +GARVERSION = 1.24 CATEGORIES = cpan AUTHOR = ADAMK -DESCRIPTION = provides information about classes +DESCRIPTION = Get information about a class and its structure define BLURB Class::Inspector allows you to get information about a loaded class. Most or all of this information can be found in other ways, but they arn't always @@ -12,6 +12,11 @@ easier, more friendly interface to this information. endef -DISTFILES += CSWpmclassinspector.gspec +LICENSE = LICENSE +PACKAGES = CSWpmclassinspector +CATALOGNAME = pm_classinspector + +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums 2009-08-06 14:27:31 UTC (rev 5879) +++ csw/mgar/pkg/cpan/Class-Inspector/trunk/checksums 2009-08-06 14:30:58 UTC (rev 5880) @@ -1,2 +1 @@ -24c3c2fc100a273ec6411cb6eafec756 download/CSWpmclassinspector.gspec -46eeeeb5a5df0da03f4e53229f7ed360 download/Class-Inspector-1.16.tar.gz +609189b49f64d329a6e413e0a6d8724a download/Class-Inspector-1.24.tar.gz Deleted: csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec 2009-08-06 14:27:31 UTC (rev 5879) +++ csw/mgar/pkg/cpan/Class-Inspector/trunk/files/CSWpmclassinspector.gspec 2009-08-06 14:30:58 UTC (rev 5880) @@ -1,5 +0,0 @@ -%var bitname pm_classinspector -%var pkgname CSWpmclassinspector -%var arch all -%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 dmichelsen at users.sourceforge.net Thu Aug 6 16:37:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:37:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5881] csw/mgar/pkg/cpan/Unix-Syslog/trunk Message-ID: Revision: 5881 http://gar.svn.sourceforge.net/gar/?rev=5881&view=rev Author: dmichelsen Date: 2009-08-06 14:37:26 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Unix-Syslog: Update to 1.0 Modified Paths: -------------- csw/mgar/pkg/cpan/Unix-Syslog/trunk/Makefile csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Unix-Syslog/trunk/ Property changes on: csw/mgar/pkg/cpan/Unix-Syslog/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/Unix-Syslog/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Unix-Syslog/trunk/Makefile 2009-08-06 14:30:58 UTC (rev 5880) +++ csw/mgar/pkg/cpan/Unix-Syslog/trunk/Makefile 2009-08-06 14:37:26 UTC (rev 5881) @@ -1,5 +1,5 @@ GARNAME = Unix-Syslog -GARVERSION = 0.100 +GARVERSION = 1.0 CATEGORIES = cpan AUTHOR = MHARNISCH @@ -11,6 +11,9 @@ use this module right away. endef -DISTFILES += CSWpmunixsyslog.gspec +LICENSE = Artistic +PACKAGES = CSWpmunixsyslog +CATALOGNAME = pm_unixsyslog + include gar/category.mk Modified: csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums 2009-08-06 14:30:58 UTC (rev 5880) +++ csw/mgar/pkg/cpan/Unix-Syslog/trunk/checksums 2009-08-06 14:37:26 UTC (rev 5881) @@ -1,2 +1 @@ -9c761449e034c578084ed9d424cd5a83 download/CSWpmunixsyslog.gspec -655d2e04a043b3e92d1bb47caf8e8a3b download/Unix-Syslog-0.100.tar.gz +a9a30a08a575d210090230df446578e9 download/Unix-Syslog-1.0.tar.gz Deleted: csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec =================================================================== --- csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec 2009-08-06 14:30:58 UTC (rev 5880) +++ csw/mgar/pkg/cpan/Unix-Syslog/trunk/files/CSWpmunixsyslog.gspec 2009-08-06 14:37:26 UTC (rev 5881) @@ -1,9 +0,0 @@ -%var bitname pm_unixsyslog -%var pkgname CSWpmunixsyslog -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 1999,2000,2001,2002 Marcus Harnisch - -This program is free software; you can redistribute it and/or modify -it under the terms of the Artistic License. A copy of the license (see -file Artistic in this directory) must be included in the 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 Aug 6 16:43:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:43:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[5882] csw/mgar/pkg/cpan/Sub-Uplevel/trunk Message-ID: Revision: 5882 http://gar.svn.sourceforge.net/gar/?rev=5882&view=rev Author: dmichelsen Date: 2009-08-06 14:43:38 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Sub-Uplevel: Update to 0.2002 Modified Paths: -------------- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/Makefile csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/ Property changes on: csw/mgar/pkg/cpan/Sub-Uplevel/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/Sub-Uplevel/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/Makefile 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/Makefile 2009-08-06 14:43:38 UTC (rev 5882) @@ -1,15 +1,22 @@ GARNAME = Sub-Uplevel -GARVERSION = 0.09 +GARVERSION = 0.2002 CATEGORIES = cpan -AUTHOR = MSCHWERN +AUTHOR = DAGOLDEN -DESCRIPTION = apparently run a function in a higher stack frame +DESCRIPTION = Apparently run a function in a higher stack frame define BLURB Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. THIS IS NOT THE SORT OF THING YOU WANT TO DO EVERYDAY endef -DISTFILES += $(call admfiles,CSWpmsubuplevel,prototype) +LICENSE = LICENSE +PACKAGES = CSWpmsubuplevel +CATALOGNAME = pm_subuplevel + +ARCHALL = 1 + +SPKG_VERSION = 0.20.02 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/checksums 2009-08-06 14:43:38 UTC (rev 5882) @@ -1,3 +1 @@ -a2c4c4c2423490b96dbc0964784b9f36 download/CSWpmsubuplevel.gspec -4c3899f2d7b040524afe938ba5d8e9c3 download/CSWpmsubuplevel.prototype -eb09cb38cd7a9b7bc9d3e85e61fe09dd download/Sub-Uplevel-0.09.tar.gz +509aedd3b680aea2c7a2fc67b9d5b007 download/Sub-Uplevel-0.2002.tar.gz Deleted: csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.gspec 2009-08-06 14:43:38 UTC (rev 5882) @@ -1,9 +0,0 @@ -%var bitname pm_subuplevel -%var pkgname CSWpmsubuplevel -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright by Michael G Schwern - -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/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype =================================================================== --- csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype 2009-08-06 14:37:26 UTC (rev 5881) +++ csw/mgar/pkg/cpan/Sub-Uplevel/trunk/files/CSWpmsubuplevel.prototype 2009-08-06 14:43:38 UTC (rev 5882) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Sub 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Sub/Uplevel 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Sub/Uplevel/.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/Sub::Uplevel.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/Sub 0755 root bin -f none /opt/csw/share/perl/csw/Sub/Uplevel.pm 0444 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bensons at users.sourceforge.net Thu Aug 6 16:49:24 2009 From: bensons at users.sourceforge.net (bensons at users.sourceforge.net) Date: Thu, 06 Aug 2009 14:49:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5883] csw/mgar/pkg/xpdf/trunk/Makefile Message-ID: Revision: 5883 http://gar.svn.sourceforge.net/gar/?rev=5883&view=rev Author: bensons Date: 2009-08-06 14:49:19 +0000 (Thu, 06 Aug 2009) Log Message: ----------- xpdf: added revision into package name, bug 3809 Modified Paths: -------------- csw/mgar/pkg/xpdf/trunk/Makefile Modified: csw/mgar/pkg/xpdf/trunk/Makefile =================================================================== --- csw/mgar/pkg/xpdf/trunk/Makefile 2009-08-06 14:43:38 UTC (rev 5882) +++ csw/mgar/pkg/xpdf/trunk/Makefile 2009-08-06 14:49:19 UTC (rev 5883) @@ -1,6 +1,7 @@ GARNAME = xpdf GARVERSION = 3.02 CATEGORIES = utils +RELEASE = rev=p3 DESCRIPTION = Open source viewer for Portable Document Format (PDF) files define BLURB @@ -40,6 +41,7 @@ TEST_SCRIPTS = include gar/category.mk +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_$(RELEASE) pre-build-modulated: @cp files/xpdfrc ${WORKSRC}/doc/sample-xpdfrc 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 Aug 6 17:00:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:00:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5884] csw/mgar/pkg/cpan/GD/trunk Message-ID: Revision: 5884 http://gar.svn.sourceforge.net/gar/?rev=5884&view=rev Author: dmichelsen Date: 2009-08-06 15:00:21 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/GD: Update to 2.44 Modified Paths: -------------- csw/mgar/pkg/cpan/GD/trunk/Makefile csw/mgar/pkg/cpan/GD/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/GD/trunk/ Property changes on: csw/mgar/pkg/cpan/GD/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/GD/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/GD/trunk/Makefile 2009-08-06 14:49:19 UTC (rev 5883) +++ csw/mgar/pkg/cpan/GD/trunk/Makefile 2009-08-06 15:00:21 UTC (rev 5884) @@ -1,31 +1,29 @@ GARNAME = GD -GARVERSION = 2.35 +GARVERSION = 2.44 CATEGORIES = cpan AUTHOR = LDS -DESCRIPTION = interface to Gd Graphics Library +DESCRIPTION = Interface to GD Graphics Library define BLURB GD.pm is a Perl interface to Thomas Boutell\'s gd graphics library (version 2.01 or higher; see below). GD allows you to create color drawings using a large number of graphics primitives, and emit the drawings as PNG files. endef -# The GD test gives strange results on test 10. Visual -# inspection shows the images to be identical, but the -# created data is smaller than the regression data. -# Skip test 10 for now. -#PATCHFILES = gdtest.diff +PACKAGES = CSWpmgd +CATALOGNAME = pm_gd -DISTFILES += CSWpmgd.gspec CSWpmgd.depend +REQUIRED_PKGS = CSWftype2 CSWgd CSWiconv CSWjpeg CSWpng +REQUIRED_PKGS += CSWxpm CSWzlib CSWfconfig -DEPENDS += lib/gd +CONFIGURE_ARGS = lib_gd_path $(libdir) +CONFIGURE_ARGS += lib_ft_path $(libdir) +CONFIGURE_ARGS += lib_png_path $(libdir) +CONFIGURE_ARGS += lib_jpeg_path $(libdir) +CONFIGURE_ARGS += lib_xpm_path $(libdir) +CONFIGURE_ARGS += lib_zlib_path $(libdir) -CONFIGURE_ARGS = -options "JPEG,FT,XPM" -CONFIGURE_ARGS += -lib_gd_path $(libdir) -CONFIGURE_ARGS += -lib_ft_path $(libdir) -CONFIGURE_ARGS += -lib_png_path $(libdir) -CONFIGURE_ARGS += -lib_jpeg_path $(libdir) -CONFIGURE_ARGS += -lib_xpm_path $(libdir) -CONFIGURE_ARGS += -lib_zlib_path $(libdir) +# Don't use hardcoded -Wformat=0 +BUILD_OVERRIDE_DIRS = CCFLAGS include gar/category.mk Modified: csw/mgar/pkg/cpan/GD/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/GD/trunk/checksums 2009-08-06 14:49:19 UTC (rev 5883) +++ csw/mgar/pkg/cpan/GD/trunk/checksums 2009-08-06 15:00:21 UTC (rev 5884) @@ -1,3 +1 @@ -e378d4e1775235a405f4ecd3a8e97bdc download/CSWpmgd.gspec -882cfc02f0fd6a7892b45bc34a8a9755 download/CSWpmgd.depend -dfc3e16e85a17aab7ee1029fbe307fca download/GD-2.35.tar.gz +9b9a4d78a5af0616a96264b0aa354859 download/GD-2.44.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 Aug 6 17:07:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:07:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5885] csw/mgar/pkg/cpan/Clone/trunk Message-ID: Revision: 5885 http://gar.svn.sourceforge.net/gar/?rev=5885&view=rev Author: dmichelsen Date: 2009-08-06 15:07:08 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Clone: Update to 0.31 Modified Paths: -------------- csw/mgar/pkg/cpan/Clone/trunk/Makefile csw/mgar/pkg/cpan/Clone/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.depend csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Clone/trunk/ Property changes on: csw/mgar/pkg/cpan/Clone/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/Clone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/Makefile 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/Makefile 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,15 +1,16 @@ GARNAME = Clone -GARVERSION = 0.22 +GARVERSION = 0.31 CATEGORIES = cpan AUTHOR = RDF -DESCRIPTION = recursively copy Perl datatypes +DESCRIPTION = Recursively copy Perl datatypes define BLURB This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. endef -DISTFILES = $(call admfiles,CSWpmclone,depend prototype) +PACKAGES = CSWpmclone +CATALOGNAME = pm_clone include gar/category.mk Modified: csw/mgar/pkg/cpan/Clone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/checksums 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/checksums 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,4 +1 @@ -8800e24fa1a5cccd40b78a6ad3d30ab3 download/CSWpmclone.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmclone.depend -da2a0ff0fa5bef6998158d7c70783eb2 download/CSWpmclone.prototype -f70af2c46fbb60acc4388908bfd37c2f download/Clone-0.22.tar.gz +65f34e7280d7b7dfb72ab6224e5767f5 download/Clone-0.31.tar.gz Deleted: csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.gspec 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,10 +0,0 @@ -%var bitname pm_clone -%var pkgname CSWpmclone -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Ray Finch, rdf at cpan.org - -Copyright 2001 Ray Finch. - -This module is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype 2009-08-06 15:00:21 UTC (rev 5884) +++ csw/mgar/pkg/cpan/Clone/trunk/files/CSWpmclone.prototype 2009-08-06 15:07:08 UTC (rev 5885) @@ -1,14 +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 -f none /opt/csw/lib/perl/csw/Clone.pm 0555 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Clone 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/Clone.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/Clone.so 0555 root bin -f none /opt/csw/lib/perl/csw/auto/Clone/autosplit.ix 0444 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Clone.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 Thu Aug 6 17:12:11 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:12:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5886] csw/mgar/pkg/cpan/IO-Tty/trunk Message-ID: Revision: 5886 http://gar.svn.sourceforge.net/gar/?rev=5886&view=rev Author: dmichelsen Date: 2009-08-06 15:12:10 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IO-Tty: Update to 1.08 Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Tty/trunk/Makefile csw/mgar/pkg/cpan/IO-Tty/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Tty/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-Tty/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-Tty/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Tty/trunk/Makefile 2009-08-06 15:07:08 UTC (rev 5885) +++ csw/mgar/pkg/cpan/IO-Tty/trunk/Makefile 2009-08-06 15:12:10 UTC (rev 5886) @@ -1,9 +1,9 @@ GARNAME = IO-Tty -GARVERSION = 1.07 +GARVERSION = 1.08 CATEGORIES = cpan AUTHOR = RGIERSIG -DESCRIPTION = pseudo TTY object class +DESCRIPTION = Low-level allocate a pseudo-Tty, import constants define BLURB IO::Pty provides an interface to allow the creation of a pseudo tty. endef Modified: csw/mgar/pkg/cpan/IO-Tty/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Tty/trunk/checksums 2009-08-06 15:07:08 UTC (rev 5885) +++ csw/mgar/pkg/cpan/IO-Tty/trunk/checksums 2009-08-06 15:12:10 UTC (rev 5886) @@ -1 +1 @@ -2a54e49b60a4092e93af5b8073ec5325 download/IO-Tty-1.07.tar.gz +e99d819a6f8c11ae105b770cc508a4fc download/IO-Tty-1.08.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 Aug 6 17:21:49 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:21:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5887] csw/mgar/pkg/cpan/Convert-ASN1/trunk Message-ID: Revision: 5887 http://gar.svn.sourceforge.net/gar/?rev=5887&view=rev Author: dmichelsen Date: 2009-08-06 15:21:49 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Convert-ASN1: Update to 0.22 Modified Paths: -------------- csw/mgar/pkg/cpan/Convert-ASN1/trunk/Makefile csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Convert-ASN1/trunk/ Property changes on: csw/mgar/pkg/cpan/Convert-ASN1/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/Convert-ASN1/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Convert-ASN1/trunk/Makefile 2009-08-06 15:12:10 UTC (rev 5886) +++ csw/mgar/pkg/cpan/Convert-ASN1/trunk/Makefile 2009-08-06 15:21:49 UTC (rev 5887) @@ -1,5 +1,5 @@ GARNAME = Convert-ASN1 -GARVERSION = 0.21 +GARVERSION = 0.22 CATEGORIES = cpan AUTHOR = GBARR @@ -8,6 +8,9 @@ Convert::ASN1 encodes and decodes ASN.1 data structures using BER/DER rules. endef -DISTFILES += CSWpmconvertasn1.gspec +PACKAGES = CSWpmconvertasn1 +CATALOGNAME = pm_convertasn1 +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums 2009-08-06 15:12:10 UTC (rev 5886) +++ csw/mgar/pkg/cpan/Convert-ASN1/trunk/checksums 2009-08-06 15:21:49 UTC (rev 5887) @@ -1,2 +1 @@ -428e87b921884af147a63175e6660660 download/CSWpmconvertasn1.gspec -6f5c45724db1b09911e489275d19d0f5 download/Convert-ASN1-0.21.tar.gz +64a555e44adc79d92072b9fc7a6779c4 download/Convert-ASN1-0.22.tar.gz Deleted: csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec =================================================================== --- csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec 2009-08-06 15:12:10 UTC (rev 5886) +++ csw/mgar/pkg/cpan/Convert-ASN1/trunk/files/CSWpmconvertasn1.gspec 2009-08-06 15:21:49 UTC (rev 5887) @@ -1,8 +0,0 @@ -%var bitname pm_convertasn1 -%var pkgname CSWpmconvertasn1 -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2000-2002 Graham Barr . 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 dmichelsen at users.sourceforge.net Thu Aug 6 17:26:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:26:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5888] csw/mgar/pkg/cpan/URI/trunk Message-ID: Revision: 5888 http://gar.svn.sourceforge.net/gar/?rev=5888&view=rev Author: dmichelsen Date: 2009-08-06 15:26:41 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/URI: Update to 1.38 Modified Paths: -------------- csw/mgar/pkg/cpan/URI/trunk/Makefile csw/mgar/pkg/cpan/URI/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.depend csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/URI/trunk/ Property changes on: csw/mgar/pkg/cpan/URI/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/URI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/Makefile 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/Makefile 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,5 +1,5 @@ GARNAME = URI -GARVERSION = 1.35 +GARVERSION = 1.38 CATEGORIES = cpan AUTHOR = GAAS @@ -10,6 +10,9 @@ updated by RFC 2732). endef -DISTFILES += $(call admfiles,CSWpmuri,depend prototype) +PACKAGES = CSWpmuri +CATALOGNAME = pm_uri +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/URI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/checksums 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/checksums 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,4 +1 @@ -cc8e50e16c0153c52d2ac89833b3973a download/CSWpmuri.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmuri.depend -e522252bffc0d185ded6fdbe492e66ee download/CSWpmuri.prototype -1a933b1114c41a25587ee59ba8376f7c download/URI-1.35.tar.gz +35fba2715eb8ac56e8e30244ae69ff65 download/URI-1.38.tar.gz Deleted: csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.gspec 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,10 +0,0 @@ -%var bitname pm_uri -%var pkgname CSWpmuri -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1998-2003 Gisle Aas. -Copyright 1998 Graham Barr. - -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/URI/trunk/files/CSWpmuri.prototype =================================================================== --- csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.prototype 2009-08-06 15:21:49 UTC (rev 5887) +++ csw/mgar/pkg/cpan/URI/trunk/files/CSWpmuri.prototype 2009-08-06 15:26:41 UTC (rev 5888) @@ -1,73 +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/URI 0755 root bin -f none /opt/csw/lib/perl/csw/auto/URI/.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/URI.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::Escape.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::Heuristic.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::QueryParam.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::Split.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::URL.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::WithBase.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::data.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::file.3perl 0444 root bin -f none /opt/csw/share/man/man3/URI::ldap.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/URI 0755 root bin -f none /opt/csw/share/perl/csw/URI.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/Escape.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/Heuristic.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/QueryParam.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/Split.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/URL.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/WithBase.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_foreign.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_generic.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_ldap.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_login.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_query.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_segment.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_server.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/_userpass.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/data.pm 0444 root bin -d none /opt/csw/share/perl/csw/URI/file 0755 root bin -f none /opt/csw/share/perl/csw/URI/file.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/FAT.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Mac.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/OS2.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/QNX.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Unix.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/file/Win32.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ftp.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/gopher.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/http.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/https.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ldap.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ldapi.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ldaps.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/mailto.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/mms.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/news.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/nntp.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/pop.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rlogin.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rsync.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rtsp.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/rtspu.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/sip.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/sips.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/snews.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/ssh.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/telnet.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/tn3270.pm 0444 root bin -d none /opt/csw/share/perl/csw/URI/urn 0755 root bin -f none /opt/csw/share/perl/csw/URI/urn.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/urn/isbn.pm 0444 root bin -f none /opt/csw/share/perl/csw/URI/urn/oid.pm 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 Thu Aug 6 17:39:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:39:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5889] csw/mgar/pkg/cpan/YAML/trunk Message-ID: Revision: 5889 http://gar.svn.sourceforge.net/gar/?rev=5889&view=rev Author: dmichelsen Date: 2009-08-06 15:39:55 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/YAML: Update to 0.68 Modified Paths: -------------- csw/mgar/pkg/cpan/YAML/trunk/Makefile csw/mgar/pkg/cpan/YAML/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype csw/mgar/pkg/cpan/YAML/trunk/files/build.diff Property Changed: ---------------- csw/mgar/pkg/cpan/YAML/trunk/ Property changes on: csw/mgar/pkg/cpan/YAML/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/YAML/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/Makefile 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/Makefile 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,5 +1,5 @@ GARNAME = YAML -GARVERSION = 0.62 +GARVERSION = 0.68 CATEGORIES = cpan AUTHOR = INGY @@ -11,9 +11,9 @@ structures of most modern programming languages. (Including Perl!!!) endef -DISTFILES = $(call admfiles,CSWpmyaml,prototype) +PACKAGES = CSWpmyaml +CATALOGNAME = pm_yaml -# Don't ask questions -PATCHFILES += build.diff +ARCHALL = 1 include gar/category.mk Modified: csw/mgar/pkg/cpan/YAML/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/checksums 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/checksums 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,4 +1 @@ -f9c10a9ddce8142990ce6a4be87746cc download/CSWpmyaml.gspec -29a2a8f422bec60ce149dfd3df6166c5 download/CSWpmyaml.prototype -4be042a043ec520074b0ab6f7ca0bded download/YAML-0.62.tar.gz -eba57d037eaa792332717d5c2d0cdeaa download/build.diff +4b4255360bb885acdba05314daa9129a download/YAML-0.68.tar.gz Deleted: csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.gspec 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,11 +0,0 @@ -%var bitname pm_yaml -%var pkgname CSWpmyaml -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2001, 2002. Brian Ingerson. All rights reserved. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See L Deleted: csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/files/CSWpmyaml.prototype 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,43 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/ysh 0555 root bin -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/YAML 0755 root bin -f none /opt/csw/lib/perl/csw/auto/YAML/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/ysh.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Test::YAML.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Dumper.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Dumper::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Error.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Loader.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Loader::Base.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Marshall.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Node.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Tag.3perl 0444 root bin -f none /opt/csw/share/man/man3/YAML::Types.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/Test 0755 root bin -f none /opt/csw/share/perl/csw/Test/YAML.pm 0444 root bin -d none /opt/csw/share/perl/csw/YAML 0755 root bin -f none /opt/csw/share/perl/csw/YAML.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Base.pm 0444 root bin -d none /opt/csw/share/perl/csw/YAML/Dumper 0755 root bin -f none /opt/csw/share/perl/csw/YAML/Dumper.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Dumper/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Error.pm 0444 root bin -d none /opt/csw/share/perl/csw/YAML/Loader 0755 root bin -f none /opt/csw/share/perl/csw/YAML/Loader.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Loader/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Marshall.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Node.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Tag.pm 0444 root bin -f none /opt/csw/share/perl/csw/YAML/Types.pm 0444 root bin Deleted: csw/mgar/pkg/cpan/YAML/trunk/files/build.diff =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/files/build.diff 2009-08-06 15:26:41 UTC (rev 5888) +++ csw/mgar/pkg/cpan/YAML/trunk/files/build.diff 2009-08-06 15:39:55 UTC (rev 5889) @@ -1,37 +0,0 @@ -diff --speed-large-files --minimal -Nru YAML-0.62.orig/Makefile.PL YAML-0.62/Makefile.PL ---- YAML-0.62.orig/Makefile.PL 2006-07-01 01:07:33.000000000 -0400 -+++ YAML-0.62/Makefile.PL 2006-09-03 00:33:34.848059000 -0400 -@@ -1,19 +1,19 @@ - use inc::Module::Install; - --print << '_'; -- --*** WARNING *** -- --This release breaks compatibility with versions earlier than version 0.60 of --YAML::Syck and YAML.pm when serializing blessed references. -- --See the COMPATIBILITY file for more information. -- --_ -- --if (!is_admin()) { -- exit() unless prompt("Continue installing YAML.pm?", 'y') =~ /^y/i; --} -+#print << '_'; -+# -+#*** WARNING *** -+# -+#This release breaks compatibility with versions earlier than version 0.60 of -+#YAML::Syck and YAML.pm when serializing blessed references. -+# -+#See the COMPATIBILITY file for more information. -+# -+#_ -+# -+#if (!is_admin()) { -+# exit() unless prompt("Continue installing YAML.pm?", 'y') =~ /^y/i; -+#} - - name 'YAML'; - all_from 'lib/YAML.pm'; 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 Aug 6 17:48:31 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:48:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5891] csw/mgar/pkg/cpan/Data-Hierarchy/trunk Message-ID: Revision: 5891 http://gar.svn.sourceforge.net/gar/?rev=5891&view=rev Author: dmichelsen Date: 2009-08-06 15:48:31 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Data-Hierarchy: Update to 0.34 Modified Paths: -------------- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/Makefile csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/ Property changes on: csw/mgar/pkg/cpan/Data-Hierarchy/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/Data-Hierarchy/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/Makefile 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/Makefile 2009-08-06 15:48:31 UTC (rev 5891) @@ -3,14 +3,18 @@ CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = handle data in a hierarchical structure +DESCRIPTION = Handle data in a hierarchical structure define BLURB Data::Hierarchy provides a simple interface for manipulating inheritable data attached to a hierarchical environment (like filesystem). endef -DISTFILES = $(call admfiles,CSWpmdatahier,depend prototype) +PREREQUISITE_PKGS = CSWpmtstexcept +REQUIRED_PKGS = CSWpmclone -DEPENDS += cpan/Clone +PACKAGES = CSWpmdatahier +CATALOGNAME = pm_datahier +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/checksums 2009-08-06 15:48:31 UTC (rev 5891) @@ -1,4 +1 @@ -bbc37700201d31afc63e57b3550ffa9c download/CSWpmdatahier.gspec -864132ac1b0a042e9772b1138a92acc4 download/CSWpmdatahier.depend -2898337080f4535ca6e8d762b15332d3 download/CSWpmdatahier.prototype f4ac04c7f676cbfff9bbd1be118d4c66 download/Data-Hierarchy-0.34.tar.gz Deleted: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.depend 2009-08-06 15:48:31 UTC (rev 5891) @@ -1 +0,0 @@ -P CSWpmclone pm_clone - recursively copy Perl datatypes Deleted: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.gspec 2009-08-06 15:48:31 UTC (rev 5891) @@ -1,11 +0,0 @@ -%var bitname pm_datahier -%var pkgname CSWpmdatahier -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003-2004 by Chia-liang Kao clkao at clkao.org. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype =================================================================== --- csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype 2009-08-06 15:46:23 UTC (rev 5890) +++ csw/mgar/pkg/cpan/Data-Hierarchy/trunk/files/CSWpmdatahier.prototype 2009-08-06 15:48:31 UTC (rev 5891) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Data 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Data/Hierarchy 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Data/Hierarchy/.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/Data::Hierarchy.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/Data 0755 root bin -f none /opt/csw/share/perl/csw/Data/Hierarchy.pm 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 Thu Aug 6 17:46:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 15:46:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5890] csw/mgar/pkg/cpan/Test-Exception/trunk Message-ID: Revision: 5890 http://gar.svn.sourceforge.net/gar/?rev=5890&view=rev Author: dmichelsen Date: 2009-08-06 15:46:23 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Test-Exception: Update to 0.27 Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Exception/trunk/Makefile csw/mgar/pkg/cpan/Test-Exception/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/Test-Exception/trunk/ Property changes on: csw/mgar/pkg/cpan/Test-Exception/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/Test-Exception/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Exception/trunk/Makefile 2009-08-06 15:39:55 UTC (rev 5889) +++ csw/mgar/pkg/cpan/Test-Exception/trunk/Makefile 2009-08-06 15:46:23 UTC (rev 5890) @@ -1,17 +1,20 @@ GARNAME = Test-Exception -GARVERSION = 0.25 +GARVERSION = 0.27 CATEGORIES = cpan AUTHOR = ADIE -DESCRIPTION = test functions for exception based code +DESCRIPTION = Test functions for exception based code define BLURB This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. endef -DISTFILES += CSWpmtstexcept.gspec CSWpmtstexcept.depend +REQUIRED_PKGS = CSWpmsubuplevel -DEPENDS += cpan/Sub-Uplevel +PACKAGES = CSWpmtstexcept +CATALOGNAME = pm_tstexcept +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Test-Exception/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Exception/trunk/checksums 2009-08-06 15:39:55 UTC (rev 5889) +++ csw/mgar/pkg/cpan/Test-Exception/trunk/checksums 2009-08-06 15:46:23 UTC (rev 5890) @@ -1,3 +1 @@ -e958af76f90686e8c2b22b842bf15b65 download/CSWpmtstexcept.gspec -4a0e503bd8df2d291acf8f111dc92bb0 download/CSWpmtstexcept.depend -aaef654ff2239008e8827ece592f7a0a download/Test-Exception-0.25.tar.gz +dd9383e0bb207c7b0a04d6ba990a5909 download/Test-Exception-0.27.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bensons at users.sourceforge.net Thu Aug 6 18:11:11 2009 From: bensons at users.sourceforge.net (bensons at users.sourceforge.net) Date: Thu, 06 Aug 2009 16:11:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[5892] csw/mgar/pkg/openvpn/trunk Message-ID: Revision: 5892 http://gar.svn.sourceforge.net/gar/?rev=5892&view=rev Author: bensons Date: 2009-08-06 16:11:06 +0000 (Thu, 06 Aug 2009) Log Message: ----------- openvpn: initial commit for GARv2 Modified Paths: -------------- csw/mgar/pkg/openvpn/trunk/Makefile csw/mgar/pkg/openvpn/trunk/checksums Added Paths: ----------- csw/mgar/pkg/openvpn/trunk/files/cswopenvpn csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c Removed Paths: ------------- csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype csw/mgar/pkg/openvpn/trunk/files/etc/ Modified: csw/mgar/pkg/openvpn/trunk/Makefile =================================================================== --- csw/mgar/pkg/openvpn/trunk/Makefile 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/Makefile 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,5 +1,5 @@ GARNAME = openvpn -GARVERSION = 2.0.7 +GARVERSION = 2.0.9 CATEGORIES = server DESCRIPTION = secure IP tunnel daemon @@ -7,21 +7,40 @@ OpenVPN is a full-featured SSL VPN solution which can accomodate a wide range of configurations, including remote access, site-to-site VPNs, WiFi security, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls endef +# master files MASTER_SITES = http://openvpn.net/release/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWopenvpn, prototype ) +# we require +REQUIRED_PKGS = CSWosslrt CSWlzo + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz CONFIGURE_ARGS = --prefix=$(prefix) --mandir=/opt/csw/share/man +PATCHFILES = patch.openvpn-2.0.9.tun.c -TEST_SCRIPTS = +# use classes for install/removal +PRESERVECONF = $(sysconfdir)/$(GARNAME)/$(GARNAME).conf.CSW +INITSMF = /etc/opt/csw/init.d/cswopenvpn +# no build tests +SKIPTEST = 1 + include gar/category.mk -post-install: - ( cp -r $(WORKSRC)/../../../files/etc $(DESTDIR)/etc ) - ( mkdir -p $(DESTDIR)/etc/csw/easy-rsa ) - ( cp -r $(WORKSRC)/easy-rsa $(DESTDIR)/etc/csw/easy-rsa ) +post-install-modulated: + @echo "Installing sample files" + @ginstall -d -m 755 $(DESTDIR)$(docdir)/$(GARNAME) + @cp -pr $(WORKSRC)/easy-rsa $(DESTDIR)$(docdir)/$(GARNAME) + @cp -pr $(WORKSRC)/sample-scripts $(DESTDIR)$(docdir)/$(GARNAME) + @cp -pr $(WORKSRC)/sample-config-files $(DESTDIR)$(docdir)/$(GARNAME) + @echo "Installing $(GARNAME).conf.CSW" + @ginstall -d -m 755 $(DESTDIR)$(sysconfdir)/$(GARNAME) + @cp -pr $(WORKSRC)/sample-config-files/server.conf \ + $(DESTDIR)$(sysconfdir)/$(GARNAME)/$(GARNAME).conf.CSW + @echo "Installing start/stop script" + @ginstall -d -m 755 $(DESTDIR)/etc/opt/csw/init.d + @ginstall -m 755 $(FILEDIR)/cswopenvpn \ + $(DESTDIR)/etc/opt/csw/init.d/cswopenvpn @$(MAKECOOKIE) Modified: csw/mgar/pkg/openvpn/trunk/checksums =================================================================== --- csw/mgar/pkg/openvpn/trunk/checksums 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/checksums 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,3 +1,2 @@ -93528233f1f6d02fc18e2c00f82e0aca download/openvpn-2.0.7.tar.gz -c3b9c93937349f371ca49b897d752ff0 download/CSWopenvpn.gspec -735806001ebc39ad07dcb1d557bf36a3 download/CSWopenvpn.prototype +60745008b90b7dbe25fe8337c550fec6 download/openvpn-2.0.9.tar.gz +1c9565b3212299c029821f1753138972 download/patch.openvpn-2.0.9.tun.c Deleted: csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.gspec 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,4 +0,0 @@ -%var bitname openvpn -%var pkgname CSWopenvpn -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype 2009-08-06 15:48:31 UTC (rev 5891) +++ csw/mgar/pkg/openvpn/trunk/files/CSWopenvpn.prototype 2009-08-06 16:11:06 UTC (rev 5892) @@ -1,51 +0,0 @@ -d none /opt/csw/sbin 0755 root bin -f none /opt/csw/sbin/openvpn 0755 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/man8 0755 root bin -f none /opt/csw/share/man/man8/openvpn.8 0644 root bin -i copyright=CSWopenvpn.copyright -i depend=CSWopenvpn.depend -i pkginfo=CSWopenvpn.pkginfo -d none /etc 0755 root bin -d none /etc/init.d 0755 root bin -f none /etc/init.d/cswopenvpn 0755 root bin -s none /etc/rc0.d/K16cswopenvpn=../init.d/cswopenvpn -s none /etc/rc1.d/K16cswopenvpn=../init.d/cswopenvpn -s none /etc/rc2.d/S60cswopenvpn=../init.d/cswopenvpn -s none /etc/rcS.d/K16cswopenvpn=../init.d/cswopenvpn -d none /etc/csw 0755 root bin -d none /etc/csw/openvpn 0700 root bin -f none /etc/csw/openvpn/openvpn.conf.CSW 0644 root bin -d none /etc/csw/openvpn/easy-rsa 0700 root bin -f none /etc/csw/openvpn/easy-rsa/vars 0644 root bin -f none /etc/csw/openvpn/easy-rsa/list-crl 0755 root bin -f none /etc/csw/openvpn/easy-rsa/clean-all 0755 root bin -f none /etc/csw/openvpn/easy-rsa/openssl.cnf 0644 root bin -f none /etc/csw/openvpn/easy-rsa/sign-req 0755 root bin -f none /etc/csw/openvpn/easy-rsa/README 0644 root bin -d none /etc/csw/openvpn/easy-rsa/Windows 0755 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/clean-all.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-key-server.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/vars.bat.sample 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-key-pkcs12.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/README.txt 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-key.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/revoke-full.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/init-config.bat 0744 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/index.txt.start 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-ca.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/build-dh.bat 0644 root bin -f none /etc/csw/openvpn/easy-rsa/Windows/serial.start 0644 root bin -f none /etc/csw/openvpn/easy-rsa/build-key-pkcs12 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-key-server 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-key-pass 0755 root bin -f none /etc/csw/openvpn/easy-rsa/revoke-full 0755 root bin -f none /etc/csw/openvpn/easy-rsa/make-crl 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-req-pass 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-key 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-req 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-ca 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-dh 0755 root bin -f none /etc/csw/openvpn/easy-rsa/build-inter 0755 root bin -f none /etc/csw/openvpn/easy-rsa/revoke-crt 0755 root bin Added: csw/mgar/pkg/openvpn/trunk/files/cswopenvpn =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/cswopenvpn (rev 0) +++ csw/mgar/pkg/openvpn/trunk/files/cswopenvpn 2009-08-06 16:11:06 UTC (rev 5892) @@ -0,0 +1,27 @@ +#!/bin/sh +# +# Start/Stop script for CSW OpenVPN daemon +# +# Multiple openvpd daemon processes are possible, but this script will +# only handle the first one. +# AUTOENABLE no +OPENVPN_CONF=/opt/csw/etc/openvpn/openvpn.conf +PATH=/opt/csw/bin:$PATH +OPENVPN_DAEMON=/opt/csw/sbin/openvpn + +case $1 in +'start') + if [ -f $OPENVPN_CONF ]; then + printf "Starting OpenVPN daemon..." + $OPENVPN_DAEMON --config $OPENVPN_CONF --daemon + printf "DONE \n" + fi + ;; +'stop') + pkill -TERM openvpn && printf "OpenVPN daemon stopped\n" + ;; +*) + echo "Usage: $0 { start | stop }" + exit 1 + ;; +esac Added: csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c =================================================================== --- csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c (rev 0) +++ csw/mgar/pkg/openvpn/trunk/files/patch.openvpn-2.0.9.tun.c 2009-08-06 16:11:06 UTC (rev 5892) @@ -0,0 +1,213 @@ +--- openvpn-2.0.9/tun.c Wed Apr 5 15:29:24 2006 ++++ 207/openvpn/tun.c Wed May 20 23:10:36 2009 +@@ -30,6 +30,12 @@ + * from VTun by Maxim Krasnyansky . + */ + ++/* ++ * Modified by: Kazuyoshi ++ * Modified for supporting tap device for Solaris ++ * $Date: 2009/05/20 14:10:36 $, $Revision: 1.10.2.1 $ ++ */ ++ + #ifdef WIN32 + #include "config-win32.h" + #else +@@ -49,6 +55,7 @@ + + #ifdef TARGET_SOLARIS + static void solaris_error_close (struct tuntap *tt, const struct env_set *es, const char *actual); ++#include + #endif + + bool +@@ -629,7 +636,12 @@ + ); + } + else +- no_tap_ifconfig (); ++ openvpn_snprintf (command_line, sizeof (command_line), ++ IFCONFIG_PATH " %s %s netmask %s broadcast + up", ++ actual, ++ ifconfig_local, ++ ifconfig_remote_netmask ++ ); + + msg (M_INFO, "%s", command_line); + if (!system_check (command_line, es, 0, "Solaris ifconfig phase-2 failed")) +@@ -1186,14 +1198,17 @@ + void + open_tun (const char *dev, const char *dev_type, const char *dev_node, bool ipv6, struct tuntap *tt) + { +- int if_fd, muxid, ppa = -1; +- struct ifreq ifr; ++ int if_fd, ip_muxid, arp_muxid, arp_fd, ppa = -1; ++ struct lifreq ifr; + const char *ptr; +- const char *ip_node; ++ const char *ip_node, *arp_node; + const char *dev_tuntap_type; + int link_type; + bool is_tun; ++ struct strioctl strioc_if, strioc_ppa; + ++ memset(&ifr, 0x0, sizeof(ifr)); ++ + ipv6_support (ipv6, false, tt); + + if (tt->type == DEV_TYPE_NULL) +@@ -1213,9 +1228,10 @@ + } + else if (tt->type == DEV_TYPE_TAP) + { +- ip_node = "/dev/ip"; ++ ip_node = "/dev/udp"; + if (!dev_node) + dev_node = "/dev/tap"; ++ arp_node = dev_node; + dev_tuntap_type = "tap"; + link_type = I_PLINK; /* was: I_LINK */ + is_tun = false; +@@ -1242,7 +1258,11 @@ + msg (M_ERR, "Can't open %s", dev_node); + + /* Assign a new PPA and get its unit number. */ +- if ((ppa = ioctl (tt->fd, TUNNEWPPA, ppa)) < 0) ++ strioc_ppa.ic_cmd = TUNNEWPPA; ++ strioc_ppa.ic_timout = 0; ++ strioc_ppa.ic_len = sizeof(ppa); ++ strioc_ppa.ic_dp = (char *)&ppa; ++ if ((ppa = ioctl (tt->fd, I_STR, &strioc_ppa)) < 0) + msg (M_ERR, "Can't assign new interface"); + + if ((if_fd = open (dev_node, O_RDWR, 0)) < 0) +@@ -1251,27 +1271,85 @@ + if (ioctl (if_fd, I_PUSH, "ip") < 0) + msg (M_ERR, "Can't push IP module"); + +- /* Assign ppa according to the unit number returned by tun device */ +- if (ioctl (if_fd, IF_UNITSEL, (char *) &ppa) < 0) +- msg (M_ERR, "Can't set PPA %d", ppa); ++ if (tt->type == DEV_TYPE_TUN) ++ { ++ /* Assign ppa according to the unit number returned by tun device */ ++ if (ioctl (if_fd, IF_UNITSEL, (char *) &ppa) < 0) ++ msg (M_ERR, "Can't set PPA %d", ppa); ++ } + +- if ((muxid = ioctl (tt->ip_fd, link_type, if_fd)) < 0) +- msg (M_ERR, "Can't link %s device to IP", dev_tuntap_type); +- +- close (if_fd); +- + tt->actual_name = (char *) malloc (32); + check_malloc_return (tt->actual_name); + + openvpn_snprintf (tt->actual_name, 32, "%s%d", dev_tuntap_type, ppa); + ++ if (tt->type == DEV_TYPE_TAP) ++ { ++ if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) < 0) ++ msg (M_ERR, "Can't get flags\n"); ++ strncpynt (ifr.lifr_name, tt->actual_name, sizeof (ifr.lifr_name)); ++ ifr.lifr_ppa = ppa; ++ /* Assign ppa according to the unit number returned by tun device */ ++ if (ioctl (if_fd, SIOCSLIFNAME, &ifr) < 0) ++ msg (M_ERR, "Can't set PPA %d", ppa); ++ if (ioctl(if_fd, SIOCGLIFFLAGS, &ifr) <0) ++ msg (M_ERR, "Can't get flags\n"); ++ /* Push arp module to if_fd */ ++ if (ioctl (if_fd, I_PUSH, "arp") < 0) ++ msg (M_ERR, "Can't push ARP module"); ++ ++ /* Pop any modules on the stream */ ++ while (true) ++ { ++ if (ioctl (tt->ip_fd, I_POP, NULL) < 0) ++ break; ++ } ++ /* Push arp module to ip_fd */ ++ if (ioctl (tt->ip_fd, I_PUSH, "arp") < 0) ++ msg (M_ERR, "Can't push ARP module\n"); ++ ++ /* Open arp_fd */ ++ if ((arp_fd = open (arp_node, O_RDWR, 0)) < 0) ++ msg (M_ERR, "Can't open %s\n", arp_node); ++ /* Push arp module to arp_fd */ ++ if (ioctl (arp_fd, I_PUSH, "arp") < 0) ++ msg (M_ERR, "Can't push ARP module\n"); ++ ++ /* Set ifname to arp */ ++ strioc_if.ic_cmd = SIOCSLIFNAME; ++ strioc_if.ic_timout = 0; ++ strioc_if.ic_len = sizeof(ifr); ++ strioc_if.ic_dp = (char *)𝔦 ++ if (ioctl(arp_fd, I_STR, &strioc_if) < 0){ ++ msg (M_ERR, "Can't set ifname to arp\n"); ++ } ++ } ++ ++ if ((ip_muxid = ioctl (tt->ip_fd, link_type, if_fd)) < 0) ++ msg (M_ERR, "Can't link %s device to IP", dev_tuntap_type); ++ ++ if (tt->type == DEV_TYPE_TAP) { ++ if ((arp_muxid = ioctl (tt->ip_fd, link_type, arp_fd)) < 0) ++ msg (M_ERR, "Can't link %s device to ARP", dev_tuntap_type); ++ close (arp_fd); ++ } ++ ++ close (if_fd); ++ + CLEAR (ifr); +- strncpynt (ifr.ifr_name, tt->actual_name, sizeof (ifr.ifr_name)); +- ifr.ifr_ip_muxid = muxid; ++ strncpynt (ifr.lifr_name, tt->actual_name, sizeof (ifr.lifr_name)); ++ ifr.lifr_ip_muxid = ip_muxid; ++ if (tt->type == DEV_TYPE_TAP) { ++ ifr.lifr_arp_muxid = arp_muxid; ++ } + +- if (ioctl (tt->ip_fd, SIOCSIFMUXID, &ifr) < 0) ++ if (ioctl (tt->ip_fd, SIOCSLIFMUXID, &ifr) < 0) + { +- ioctl (tt->ip_fd, I_PUNLINK, muxid); ++ if (tt->type == DEV_TYPE_TAP) ++ { ++ ioctl (tt->ip_fd, I_PUNLINK , arp_muxid); ++ } ++ ioctl (tt->ip_fd, I_PUNLINK, ip_muxid); + msg (M_ERR, "Can't set multiplexor id"); + } + +@@ -1289,19 +1367,25 @@ + { + if (tt->ip_fd >= 0) + { +- struct ifreq ifr; ++ struct lifreq ifr; + CLEAR (ifr); +- strncpynt (ifr.ifr_name, tt->actual_name, sizeof (ifr.ifr_name)); ++ strncpynt (ifr.lifr_name, tt->actual_name, sizeof (ifr.lifr_name)); + +- if (ioctl (tt->ip_fd, SIOCGIFFLAGS, &ifr) < 0) ++ if (ioctl (tt->ip_fd, SIOCGLIFFLAGS, &ifr) < 0) + msg (M_WARN | M_ERRNO, "Can't get iface flags"); + +- if (ioctl (tt->ip_fd, SIOCGIFMUXID, &ifr) < 0) ++ if (ioctl (tt->ip_fd, SIOCGLIFMUXID, &ifr) < 0) + msg (M_WARN | M_ERRNO, "Can't get multiplexor id"); + +- if (ioctl (tt->ip_fd, I_PUNLINK, ifr.ifr_ip_muxid) < 0) +- msg (M_WARN | M_ERRNO, "Can't unlink interface"); ++ if (tt->type == DEV_TYPE_TAP) ++ { ++ if (ioctl (tt->ip_fd, I_PUNLINK, ifr.lifr_arp_muxid) < 0) ++ msg (M_WARN | M_ERRNO, "Can't unlink interface(arp)"); ++ } + ++ if (ioctl (tt->ip_fd, I_PUNLINK, ifr.lifr_ip_muxid) < 0) ++ msg (M_WARN | M_ERRNO, "Can't unlink interface(ip)"); ++ + close (tt->ip_fd); + tt->ip_fd = -1; + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Thu Aug 6 20:09:35 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:09:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5893] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 5893 http://gar.svn.sourceforge.net/gar/?rev=5893&view=rev Author: bdwalton Date: 2009-08-06 18:09:35 +0000 (Thu, 06 Aug 2009) Log Message: ----------- mGAR: use $(MM_LIBDIR) no $ISALIST in RPATH when gcc4 is used 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-08-06 16:11:06 UTC (rev 5892) +++ csw/mgar/gar/v2/gar.conf.mk 2009-08-06 18:09:35 UTC (rev 5893) @@ -479,7 +479,7 @@ 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) -GCC4_LD_OPTIONS = -R$(GCC4_CC_HOME)/lib/\$$ISALIST $(EXTRA_GCC4_LD_OPTIONS) $(EXTRA_GCC_LD_OPTIONS) +GCC4_LD_OPTIONS = -R$(abspath $(GCC4_CC_HOME)/lib/$(MM_LIBDIR)) $(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) 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 Aug 6 20:36:56 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:36:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[5894] csw/mgar/pkg Message-ID: Revision: 5894 http://gar.svn.sourceforge.net/gar/?rev=5894&view=rev Author: dmichelsen Date: 2009-08-06 18:36:56 +0000 (Thu, 06 Aug 2009) Log Message: ----------- libid3tag: Initial commit Added Paths: ----------- csw/mgar/pkg/libid3tag/ csw/mgar/pkg/libid3tag/branches/ csw/mgar/pkg/libid3tag/tags/ csw/mgar/pkg/libid3tag/trunk/ csw/mgar/pkg/libid3tag/trunk/Makefile csw/mgar/pkg/libid3tag/trunk/checksums csw/mgar/pkg/libid3tag/trunk/files/ Property changes on: csw/mgar/pkg/libid3tag/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/libid3tag/trunk/Makefile =================================================================== --- csw/mgar/pkg/libid3tag/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/Makefile 2009-08-06 18:36:56 UTC (rev 5894) @@ -0,0 +1,30 @@ +GARNAME = libid3tag +GARVERSION = 0.15.1 +REV = b +CATEGORIES = lib + +DESCRIPTION = A library for reading and (eventually) writing ID3 tags +define BLURB +endef + +SF_PROJ = mad +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(GARNAME)-$(GARVERSION)$(REV).tar.gz + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION)$(REV) + +REQUIRED_PKGS = CSWzlib + +BUILD64 = 1 +NOISALIST = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_TARGET = check + +include gar/category.mk + +SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) Added: csw/mgar/pkg/libid3tag/trunk/checksums =================================================================== --- csw/mgar/pkg/libid3tag/trunk/checksums (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/checksums 2009-08-06 18:36:56 UTC (rev 5894) @@ -0,0 +1 @@ +e5808ad997ba32c498803822078748c3 download/libid3tag-0.15.1b.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 Aug 6 20:58:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:58:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5895] csw/mgar/pkg Message-ID: Revision: 5895 http://gar.svn.sourceforge.net/gar/?rev=5895&view=rev Author: dmichelsen Date: 2009-08-06 18:58:40 +0000 (Thu, 06 Aug 2009) Log Message: ----------- libspf2: Initial commit Added Paths: ----------- csw/mgar/pkg/libspf2/ csw/mgar/pkg/libspf2/branches/ csw/mgar/pkg/libspf2/tags/ csw/mgar/pkg/libspf2/trunk/ csw/mgar/pkg/libspf2/trunk/Makefile csw/mgar/pkg/libspf2/trunk/checksums csw/mgar/pkg/libspf2/trunk/files/ Property changes on: csw/mgar/pkg/libspf2/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/libspf2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libspf2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libspf2/trunk/Makefile 2009-08-06 18:58:40 UTC (rev 5895) @@ -0,0 +1,24 @@ +GARNAME = libspf2 +GARVERSION = 1.2.9 +CATEGORIES = lib + +DESCRIPTION = Library that implements Sender Policy Framework +define BLURB + libspf2 implements the Sender Policy Framework, a part of the SPF/SRS protocol pair. + libspf2 is a library which allows email systems such as Sendmail, Postfix, Exim, + Zmailer and MS Exchange to check SPF records and make sure that the email is authorized + by the domain name that it is coming from. This prevents email forgery, commonly used + by spammers, scammers and email viruses/worms. +endef + +MASTER_SITES = http://www.libspf2.org/spf/ +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_SOURCEURL = http://www.libspf2.org + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/libspf2/trunk/checksums =================================================================== --- csw/mgar/pkg/libspf2/trunk/checksums (rev 0) +++ csw/mgar/pkg/libspf2/trunk/checksums 2009-08-06 18:58:40 UTC (rev 5895) @@ -0,0 +1 @@ +3305df4d1b13ca964d80b23bb5e4e2b6 download/libspf2-1.2.9.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 Aug 6 20:58:50 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 18:58:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5896] csw/mgar/pkg/cpan/IO-Zlib/trunk Message-ID: Revision: 5896 http://gar.svn.sourceforge.net/gar/?rev=5896&view=rev Author: dmichelsen Date: 2009-08-06 18:58:50 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IO-Zlib: Update to 1.10 Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Zlib/trunk/Makefile csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Zlib/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-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-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/Makefile 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/Makefile 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,5 +1,5 @@ GARNAME = IO-Zlib -GARVERSION = 1.05 +GARVERSION = 1.10 CATEGORIES = cpan AUTHOR = TOMHUGHES @@ -10,8 +10,11 @@ IO::Handle interface. endef -DISTFILES += $(call admfiles,CSWpmiozlib,depend prototype) +REQUIRED_PKGS = CSWpmcompresszlib -DEPENDS += cpan/Compress-Zlib +PACKAGES = CSWpmiozlib +CATALOGNAME = pm_iozlib +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/checksums 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,4 +1 @@ -3da3bf2f5f6109d43c8de52f1d28aa4a download/CSWpmiozlib.gspec -b3caddca6e99172389ea538097bf25fd download/CSWpmiozlib.depend -e12e7d55c10c7d4228f1c21f5d631ac8 download/CSWpmiozlib.prototype -06ca28954fc92cbee67c807cc6d7f599 download/IO-Zlib-1.05.tar.gz +078a9387009b928068f70759e61bd08f download/IO-Zlib-1.10.tar.gz Deleted: csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.depend 2009-08-06 18:58:50 UTC (rev 5896) @@ -1 +0,0 @@ -P CSWpmcompresszlib pm_compresszlib - Interface to zlib compression library Deleted: csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.gspec 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,9 +0,0 @@ -%var bitname pm_iozlib -%var pkgname CSWpmiozlib -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) Tom Hughes . - -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-Zlib/trunk/files/CSWpmiozlib.prototype =================================================================== --- csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.prototype 2009-08-06 18:58:40 UTC (rev 5895) +++ csw/mgar/pkg/cpan/IO-Zlib/trunk/files/CSWpmiozlib.prototype 2009-08-06 18:58:50 UTC (rev 5896) @@ -1,17 +0,0 @@ -d none /opt/csw/bin 0755 root bin -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/Zlib 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IO/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/man1 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/IO::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/IO 0755 root bin -f none /opt/csw/share/perl/csw/IO/Zlib.pm 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 Thu Aug 6 21:18:57 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:18:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5897] csw/mgar/pkg/cpan Message-ID: Revision: 5897 http://gar.svn.sourceforge.net/gar/?rev=5897&view=rev Author: dmichelsen Date: 2009-08-06 19:18:57 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Compress-Raw-Bzip2: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Compress-Raw-Bzip2/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/branches/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/tags/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/Makefile csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Compress-Raw-Bzip2/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/Compress-Raw-Bzip2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/Makefile 2009-08-06 19:18:57 UTC (rev 5897) @@ -0,0 +1,15 @@ +GARNAME = Compress-Raw-Bzip2 +GARVERSION = 2.020 +CATEGORIES = cpan +AUTHOR = PMQS + +DESCRIPTION = Provides the interface to the bzip2 library +define BLURB + Compress-Raw-Bzip2 provides the interface to the bzip2 library for the modules + IO::Compress::Bzip2 and IO::Compress::Bunzip2. +endef + +PACKAGES = CSWpmcompressrawbz2 +CATALOGNAME = pm_compressrawbz2 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Compress-Raw-Bzip2/trunk/checksums 2009-08-06 19:18:57 UTC (rev 5897) @@ -0,0 +1 @@ +50f85a3ecab19fa6d2ca18b8f990f219 download/Compress-Raw-Bzip2-2.020.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 Aug 6 21:25:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:25:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5898] csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk Message-ID: Revision: 5898 http://gar.svn.sourceforge.net/gar/?rev=5898&view=rev Author: dmichelsen Date: 2009-08-06 19:25:48 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Compress-Raw-Zlib: Update to 2.020 and prepare for IO-Compress unification Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/Makefile 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,5 +1,5 @@ GARNAME = Compress-Raw-Zlib -GARVERSION = 2.019 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS @@ -9,20 +9,9 @@ compression library. endef -DISTFILES += COPYING +REQUIRED_PKGS = CSWzlib CATALOGNAME = pm_compressrawzlib PACKAGES = CSWpmcompressrawzlib -REQUIRED_PKGS = CSWzlib - -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -CONFIGURE_ARGS = - -#SKIPTEST = 1 - -# Use CSWzlib instead of the dist version -#PATCHFILES += cswzlib.diff - include gar/category.mk Modified: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/checksums 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,2 +1 @@ -500d953c61746ed6c06968b31681c0db download/COPYING -cb87f8cfc7c1c032da97c8118cc073be download/Compress-Raw-Zlib-2.019.tar.gz +d0f6baff3d38b6076a14778004345db3 download/Compress-Raw-Zlib-2.020.tar.gz Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/COPYING 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,3 +0,0 @@ -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. Deleted: csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff =================================================================== --- csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff 2009-08-06 19:18:57 UTC (rev 5897) +++ csw/mgar/pkg/cpan/Compress-Raw-Zlib/trunk/files/cswzlib.diff 2009-08-06 19:25:48 UTC (rev 5898) @@ -1,16 +0,0 @@ -diff --speed-large-files --minimal -Nru Compress-Raw-Zlib-2.004.orig/config.in Compress-Raw-Zlib-2.004/config.in ---- Compress-Raw-Zlib-2.004.orig/config.in 2006-06-26 15:38:21.000000000 -0400 -+++ Compress-Raw-Zlib-2.004/config.in 2007-03-12 19:01:49.668718000 -0400 -@@ -16,9 +16,9 @@ - # Setting the Gzip OS Code - # - --BUILD_ZLIB = True --INCLUDE = ./zlib-src --LIB = ./zlib-src -+BUILD_ZLIB = False -+INCLUDE = /opt/csw/include -+LIB = /opt/csw/lib - - OLD_ZLIB = False - GZIP_OS_CODE = AUTO_DETECT 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 Aug 6 21:34:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:34:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5899] csw/mgar/pkg/cpan Message-ID: Revision: 5899 http://gar.svn.sourceforge.net/gar/?rev=5899&view=rev Author: dmichelsen Date: 2009-08-06 19:34:51 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IO-Compress: Initial commit, wait for release of Compress-Raw-* Added Paths: ----------- csw/mgar/pkg/cpan/IO-Compress/ csw/mgar/pkg/cpan/IO-Compress/branches/ csw/mgar/pkg/cpan/IO-Compress/tags/ csw/mgar/pkg/cpan/IO-Compress/trunk/ csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile csw/mgar/pkg/cpan/IO-Compress/trunk/checksums csw/mgar/pkg/cpan/IO-Compress/trunk/files/ Property changes on: csw/mgar/pkg/cpan/IO-Compress/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/IO-Compress/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile 2009-08-06 19:34:51 UTC (rev 5899) @@ -0,0 +1,30 @@ +GARNAME = IO-Compress +GARVERSION = 2.020 +CATEGORIES = cpan +AUTHOR = PMQS + +DESCRIPTION = A Perl interface to allow reading and writing of compressed data +define BLURB + This distribution provides a Perl interface to allow reading and writing of + compressed data created with the zlib and bzip2 libraries. + + IO-Compress supports reading and writing of bzip2, RFC 1950, RFC + 1951, RFC 1952 (i.e. gzip) and zip files/buffers. + + The following modules used to be distributed separately, but are now + included with the IO-Compress distribution. + + Compress-Zlib + IO-Compress-Zlib + IO-Compress-Bzip2 + IO-Compress-Base + +endef + +REQUIRED_PKGS = CSWpmcompressrawzlib +REQUIRED_PKGS += CSWpmcompressrawbz2 + +PACKAGES = CSWpmiocompress +CATALOGNAME = pm_iocompress + +include gar/category.mk Added: csw/mgar/pkg/cpan/IO-Compress/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Compress/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/IO-Compress/trunk/checksums 2009-08-06 19:34:51 UTC (rev 5899) @@ -0,0 +1 @@ +2cf377fb8d2ac2d28473f65768f1d179 download/IO-Compress-2.020.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 Aug 6 21:49:14 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:49:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5900] csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile Message-ID: Revision: 5900 http://gar.svn.sourceforge.net/gar/?rev=5900&view=rev Author: dmichelsen Date: 2009-08-06 19:49:14 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Algorithm-Depedency: Update requirements Modified Paths: -------------- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile Modified: csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile 2009-08-06 19:34:51 UTC (rev 5899) +++ csw/mgar/pkg/cpan/Algorithm-Depedency/trunk/Makefile 2009-08-06 19:49:14 UTC (rev 5900) @@ -13,7 +13,8 @@ PACKAGES = CSWpmalgorithmdep CATALOGNAME = pm_algorithmdep -REQUIRED_PKGS = CSWpmtestclassapi CSWpmparamsutil +PREREQUISITE_PKGS = CSWpmtestclassapi +REQUIRED_PKGS = CSWpmparamsutil ARCHALL = 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 Aug 6 21:52:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 19:52:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5901] csw/mgar/pkg/cpan/Digest-SHA1/trunk Message-ID: Revision: 5901 http://gar.svn.sourceforge.net/gar/?rev=5901&view=rev Author: dmichelsen Date: 2009-08-06 19:52:50 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Digest-SHA1: Update to 2.12 Modified Paths: -------------- csw/mgar/pkg/cpan/Digest-SHA1/trunk/Makefile csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.depend csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff Property Changed: ---------------- csw/mgar/pkg/cpan/Digest-SHA1/trunk/ Property changes on: csw/mgar/pkg/cpan/Digest-SHA1/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/Digest-SHA1/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/Makefile 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/Makefile 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,9 +1,9 @@ GARNAME = Digest-SHA1 -GARVERSION = 2.11 +GARVERSION = 2.12 CATEGORIES = cpan AUTHOR = GAAS -DESCRIPTION = interface to the SHA-1 Algorithm +DESCRIPTION = Interface to the SHA-1 Algorithm define BLURB The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message @@ -11,9 +11,7 @@ "message digest" of the input. endef -DISTFILES = $(call admfiles,CSWpmdigestsha1,depend prototype) +PACKAGES = CSWpmdigestsha1 +CATALOGNAME = pm_digestsha1 -# Missing alias for reset -> new -PATCHFILES = reset.diff - include gar/category.mk Modified: csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/checksums 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,5 +1 @@ -baa49ee03a0deeabcef18312e0f09eff download/CSWpmdigestsha1.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmdigestsha1.depend -b82b0858b497a79c25d1170ded064aae download/CSWpmdigestsha1.prototype -2449bfe21d6589c96eebf94dae24df6b download/Digest-SHA1-2.11.tar.gz -c6c6ac19fc84da3d077e891dd54a008c download/reset.diff +eeb0292868801a202bd7ead87b291374 download/Digest-SHA1-2.12.tar.gz Deleted: csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.gspec 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,9 +0,0 @@ -%var bitname pm_digestsha1 -%var pkgname CSWpmdigestsha1 -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1999-2003 Gisle Aas. -Copyright 1997 Uwe Hollerbach. - -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/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/CSWpmdigestsha1.prototype 2009-08-06 19:52:50 UTC (rev 5901) @@ -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/Digest 0755 root bin -f none /opt/csw/lib/perl/csw/Digest/SHA1.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Digest 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Digest/SHA1 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Digest/SHA1/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/Digest/SHA1/SHA1.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/Digest/SHA1/SHA1.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/Digest::SHA1.3perl 0444 root bin Deleted: csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff =================================================================== --- csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff 2009-08-06 19:49:14 UTC (rev 5900) +++ csw/mgar/pkg/cpan/Digest-SHA1/trunk/files/reset.diff 2009-08-06 19:52:50 UTC (rev 5901) @@ -1,12 +0,0 @@ -diff --speed-large-files --minimal -Nru Digest-SHA1-2.07.orig/SHA1.pm Digest-SHA1-2.07/SHA1.pm ---- Digest-SHA1-2.07.orig/SHA1.pm 2003-12-05 05:17:59.000000000 -0800 -+++ Digest-SHA1-2.07/SHA1.pm 2004-01-07 12:24:32.689505000 -0800 -@@ -23,6 +23,8 @@ - - Digest::SHA1->bootstrap($VERSION); - -+*reset = \&new; -+ - 1; - __END__ - 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 Aug 6 22:00:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 20:00:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5902] csw/mgar/pkg/cpan/IPC-ShareLite/trunk Message-ID: Revision: 5902 http://gar.svn.sourceforge.net/gar/?rev=5902&view=rev Author: dmichelsen Date: 2009-08-06 20:00:34 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IPC-ShareLite: Update to 0.17 Modified Paths: -------------- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/Makefile csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/ Property changes on: csw/mgar/pkg/cpan/IPC-ShareLite/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/IPC-ShareLite/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/Makefile 2009-08-06 19:52:50 UTC (rev 5901) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/Makefile 2009-08-06 20:00:34 UTC (rev 5902) @@ -1,18 +1,16 @@ GARNAME = IPC-ShareLite -GARVERSION = 0.09 +GARVERSION = 0.17 CATEGORIES = cpan -AUTHOR = MAURICE +AUTHOR = ANDYA -DESCRIPTION = light-weight interface to shared memory +DESCRIPTION = Lightweight interface to shared memory define BLURB IPC::ShareLite provides a simple interface to shared memory, allowing data to be efficiently communicated between processes. Your operating system must support SysV IPC (shared memory and semaphores) in order to use this module. endef -DISTFILES += CSWpmipcshrlite.gspec +PACKAGES = CSWpmipcshrlite +CATALOGNAME = pm_ipcshrlite -# Don't ask questions... -PATCHFILES = config.diff - include gar/category.mk Modified: csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums 2009-08-06 19:52:50 UTC (rev 5901) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/checksums 2009-08-06 20:00:34 UTC (rev 5902) @@ -1,3 +1 @@ -21cecd39a7061bf6d68cc4a2afdd1934 download/CSWpmipcshrlite.gspec -3942a55cfc5e6d3b612a46cc1a9515b9 download/IPC-ShareLite-0.09.tar.gz -8c8e27d02dbafc977737ee59ef2b2fab download/config.diff +54c7aa08dc065b6c946c48491d33450d download/IPC-ShareLite-0.17.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 Aug 6 22:00:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 20:00:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5903] csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files Message-ID: Revision: 5903 http://gar.svn.sourceforge.net/gar/?rev=5903&view=rev Author: dmichelsen Date: 2009-08-06 20:00:55 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/IPC-ShareLite: Remove unneded files Removed Paths: ------------- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff Deleted: csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec 2009-08-06 20:00:34 UTC (rev 5902) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/CSWpmipcshrlite.gspec 2009-08-06 20:00:55 UTC (rev 5903) @@ -1,9 +0,0 @@ -%var bitname pm_ipcsharelite -%var pkgname CSWpmipcsharelite -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 1998-2002, Maurice Aubrey Emaurice at hevanet.comE. -All rights reserved. - -This module is free software; you may redistribute it and/or -modify it under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff =================================================================== --- csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff 2009-08-06 20:00:34 UTC (rev 5902) +++ csw/mgar/pkg/cpan/IPC-ShareLite/trunk/files/config.diff 2009-08-06 20:00:55 UTC (rev 5903) @@ -1,10 +0,0 @@ ---- IPC-ShareLite-0.09.orig/Makefile.PL 2000-04-14 02:23:54.000000000 -0700 -+++ IPC-ShareLite-0.09/Makefile.PL 2004-05-10 18:33:04.086335068 -0700 -@@ -1,6 +1,6 @@ - use ExtUtils::MakeMaker; - --system('./Configure'); -+system('./Configure -des'); - - # See lib/ExtUtils/MakeMaker.pm for details of how to influence - # the contents of the Makefile that is written. 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 Aug 6 22:07:10 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 06 Aug 2009 20:07:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[5904] csw/mgar/pkg/cpan/Class-Container/trunk Message-ID: Revision: 5904 http://gar.svn.sourceforge.net/gar/?rev=5904&view=rev Author: dmichelsen Date: 2009-08-06 20:07:10 +0000 (Thu, 06 Aug 2009) Log Message: ----------- cpan/Class-Container: Update to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Container/trunk/Makefile csw/mgar/pkg/cpan/Class-Container/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Class-Container/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-Container/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/Class-Container/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/Makefile 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/Makefile 2009-08-06 20:07:10 UTC (rev 5904) @@ -3,7 +3,7 @@ CATEGORIES = cpan AUTHOR = KWILLIAMS -DESCRIPTION = glues object frameworks together transparently +DESCRIPTION = Glues object frameworks together transparently define BLURB This class facilitates building frameworks of several classes that inter-operate. It was first designed and built for HTML::Mason, in which the @@ -13,8 +13,11 @@ any of these objects. endef -DISTFILES += CSWpmclscontainer.gspec CSWpmclscontainer.depend +REQUIRED_PKGS = CSWpmprmsvldt -DEPENDS += cpan/Params-Validate +PACKAGES = CSWpmclscontainer +CATALOGNAME = pm_clscontainer +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Container/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/checksums 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/checksums 2009-08-06 20:07:10 UTC (rev 5904) @@ -1,3 +1 @@ -1f416cd1e13c3f0dc8c422e0b5e514c5 download/CSWpmclscontainer.gspec -ff62c458deb89dbaec4bc61c2582bc4d download/CSWpmclscontainer.depend 6896bdb4464b96ad638e22b0400acbc9 download/Class-Container-0.12.tar.gz Deleted: csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.depend 2009-08-06 20:07:10 UTC (rev 5904) @@ -1 +0,0 @@ -P CSWpmprmsvldt pm_prmsvldt - validate method/function parameters Deleted: csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec 2009-08-06 20:00:55 UTC (rev 5903) +++ csw/mgar/pkg/cpan/Class-Container/trunk/files/CSWpmclscontainer.gspec 2009-08-06 20:07:10 UTC (rev 5904) @@ -1,7 +0,0 @@ -%var bitname pm_clscontainer -%var pkgname CSWpmclscontainer -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -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 Fri Aug 7 10:37:08 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 07 Aug 2009 08:37:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5905] csw/mgar/pkg/bind/trunk/Makefile Message-ID: Revision: 5905 http://gar.svn.sourceforge.net/gar/?rev=5905&view=rev Author: bonivart Date: 2009-08-07 08:37:07 +0000 (Fri, 07 Aug 2009) Log Message: ----------- bind: add deps Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2009-08-06 20:07:10 UTC (rev 5904) +++ csw/mgar/pkg/bind/trunk/Makefile 2009-08-07 08:37:07 UTC (rev 5905) @@ -33,10 +33,10 @@ SPKG_DESC_CSWlibbind = ISC BIND DNS library package SPKG_DESC_CSWbindutils = ISC BIND DNS utilities package -REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils +REQUIRED_PKGS_CSWbind = CSWlibbind CSWbindutils CSWcswclassutils CSWiconv CSWlibxml2 CSWosslrt CSWzlib REQUIRED_PKGS_CSWbinddevel = CSWbind REQUIRED_PKGS_CSWlibbind = CSWiconv CSWlibxml2 CSWosslrt CSWzlib -REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt +REQUIRED_PKGS_CSWbindutils = CSWlibbind CSWiconv CSWlibxml2 CSWosslrt CSWzlib # We define upstream file regex so we can be notifed of new upstream software release UPSTREAM_MASTER_SITES = http://ftp.isc.org/isc/bind9/ 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 Aug 7 11:36:01 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 09:36:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[5906] csw/mgar/pkg/sysstat/trunk Message-ID: Revision: 5906 http://gar.svn.sourceforge.net/gar/?rev=5906&view=rev Author: dmichelsen Date: 2009-08-07 09:36:01 +0000 (Fri, 07 Aug 2009) Log Message: ----------- sysstat: Update to 20090805 Modified Paths: -------------- csw/mgar/pkg/sysstat/trunk/Makefile csw/mgar/pkg/sysstat/trunk/checksums Modified: csw/mgar/pkg/sysstat/trunk/Makefile =================================================================== --- csw/mgar/pkg/sysstat/trunk/Makefile 2009-08-07 08:37:07 UTC (rev 5905) +++ csw/mgar/pkg/sysstat/trunk/Makefile 2009-08-07 09:36:01 UTC (rev 5906) @@ -1,5 +1,5 @@ GARNAME = sysstat -GARVERSION = 20090614 +GARVERSION = 20090805 CATEGORIES = utils DESCRIPTION = Key system statistics at a glance Modified: csw/mgar/pkg/sysstat/trunk/checksums =================================================================== --- csw/mgar/pkg/sysstat/trunk/checksums 2009-08-07 08:37:07 UTC (rev 5905) +++ csw/mgar/pkg/sysstat/trunk/checksums 2009-08-07 09:36:01 UTC (rev 5906) @@ -1,2 +1,2 @@ 7a7f0f67bb68484b56375d4a922fb63f download/patch-onlyisaexec-sysstatd.diff -1493623cb49e625559a6259399db77f7 download/sysstat-20090614.tgz +a188538c719f3b1ee1e994268ee779e0 download/sysstat-20090805.tgz 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 Aug 7 12:51:44 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 10:51:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5907] csw/mgar/pkg/libid3tag/trunk Message-ID: Revision: 5907 http://gar.svn.sourceforge.net/gar/?rev=5907&view=rev Author: dmichelsen Date: 2009-08-07 10:51:43 +0000 (Fri, 07 Aug 2009) Log Message: ----------- libid3tag: Add missing pkgconfig-files Modified Paths: -------------- csw/mgar/pkg/libid3tag/trunk/Makefile csw/mgar/pkg/libid3tag/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 Modified: csw/mgar/pkg/libid3tag/trunk/Makefile =================================================================== --- csw/mgar/pkg/libid3tag/trunk/Makefile 2009-08-07 09:36:01 UTC (rev 5906) +++ csw/mgar/pkg/libid3tag/trunk/Makefile 2009-08-07 10:51:43 UTC (rev 5907) @@ -10,6 +10,7 @@ SF_PROJ = mad MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION)$(REV).tar.gz +DISTFILES += id3tag.pc-32 id3tag.pc-64 # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -28,3 +29,8 @@ include gar/category.mk SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) + +post-install-modulated: + @ginstall -d $(DESTDIR)$(libdir)/pkgconfig + @ginstall $(WORKDIR)/id3tag.pc-$(MEMORYMODEL) $(DESTDIR)$(libdir)/pkgconfig/id3tag.pc + @$(MAKECOOKIE) Modified: csw/mgar/pkg/libid3tag/trunk/checksums =================================================================== --- csw/mgar/pkg/libid3tag/trunk/checksums 2009-08-07 09:36:01 UTC (rev 5906) +++ csw/mgar/pkg/libid3tag/trunk/checksums 2009-08-07 10:51:43 UTC (rev 5907) @@ -1 +1,3 @@ +148eb152412f97dd0d77ccc838d53dd7 download/id3tag.pc-32 +c5a760c189e54e0d73b39f87cee4944a download/id3tag.pc-64 e5808ad997ba32c498803822078748c3 download/libid3tag-0.15.1b.tar.gz Added: csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 =================================================================== --- csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-32 2009-08-07 10:51:43 UTC (rev 5907) @@ -0,0 +1,11 @@ +prefix=/opt/csw +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: id3tag +Description: ID3 tag reading library +Requires: +Version: 0.15.1b +Libs: -L${libdir} -lid3tag -lz +Cflags: -I${includedir} Added: csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 =================================================================== --- csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 (rev 0) +++ csw/mgar/pkg/libid3tag/trunk/files/id3tag.pc-64 2009-08-07 10:51:43 UTC (rev 5907) @@ -0,0 +1,11 @@ +prefix=/opt/csw +exec_prefix=${prefix} +libdir=${exec_prefix}/lib/64 +includedir=${prefix}/include + +Name: id3tag +Description: ID3 tag reading library +Requires: +Version: 0.15.1b +Libs: -L${libdir} -lid3tag -lz +Cflags: -I${includedir} 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 Aug 7 13:03:23 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:03:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5908] csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile Message-ID: Revision: 5908 http://gar.svn.sourceforge.net/gar/?rev=5908&view=rev Author: dmichelsen Date: 2009-08-07 11:03:23 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/IO-Compress: Make package ARCHALL Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile Modified: csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile 2009-08-07 10:51:43 UTC (rev 5907) +++ csw/mgar/pkg/cpan/IO-Compress/trunk/Makefile 2009-08-07 11:03:23 UTC (rev 5908) @@ -27,4 +27,6 @@ PACKAGES = CSWpmiocompress CATALOGNAME = pm_iocompress +ARCHALL = 1 + 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 Aug 7 13:24:01 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:24:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[5909] csw/mgar/pkg/cpan/Compress-Zlib/trunk Message-ID: Revision: 5909 http://gar.svn.sourceforge.net/gar/?rev=5909&view=rev Author: dmichelsen Date: 2009-08-07 11:24:00 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Compress-Zlib: Convert to stub as functionality has been moved to CSWpmiocompress Modified Paths: -------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-08-07 11:03:23 UTC (rev 5908) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/Makefile 2009-08-07 11:24:00 UTC (rev 5909) @@ -1,31 +1,25 @@ GARNAME = Compress-Zlib -GARVERSION = 2.015 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS -DESCRIPTION = Interface to zlib compression library +DESCRIPTION = This is a stub, the contents has been integrated into CSWpmiocompress define BLURB - The Compress::Zlib module provides a Perl interface to the zlib compression - library (see /AUTHOR for details about where to get zlib). Most of the - functionality provided by zlib is available in Compress::Zlib. endef -DISTFILES += COPYING +# This is a stub, the contents has been integrated into CSWpmiocompress +MODDIST = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = +REQUIRED_PKGS = CSWpmiocompress + 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 Deleted: csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING 2009-08-07 11:03:23 UTC (rev 5908) +++ csw/mgar/pkg/cpan/Compress-Zlib/trunk/files/COPYING 2009-08-07 11:24:00 UTC (rev 5909) @@ -1,3 +0,0 @@ - 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. 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 Aug 7 13:28:09 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:28:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[5910] csw/mgar/pkg/cpan/IO-Compress-Base/trunk Message-ID: Revision: 5910 http://gar.svn.sourceforge.net/gar/?rev=5910&view=rev Author: dmichelsen Date: 2009-08-07 11:28:09 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/IO-Compress-Base: Convert to stub as functionality has been moved to CSWpmiocompress Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile 2009-08-07 11:24:00 UTC (rev 5909) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/Makefile 2009-08-07 11:28:09 UTC (rev 5910) @@ -1,22 +1,24 @@ GARNAME = IO-Compress-Base -GARVERSION = 2.015 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS -DESCRIPTION = Base Class for IO::Compress modules +DESCRIPTION = This is a stub, the contents has been integrated into CSWpmiocompress define BLURB - This module is not intended for direct use in application code. Its sole - purpose if to to be sub-classed by IO::Compress modules. endef -DISTFILES += COPYING +# This is a stub, the contents has been integrated into CSWpmiocompress +MODDIST = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = +REQUIRED_PKGS = CSWpmiocompress + CATALOGNAME = pm_iocompressbase PACKAGES = CSWpmiocompressbase + ARCHALL = 1 -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -CONFIGURE_ARGS = - include gar/category.mk Deleted: csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-08-07 11:24:00 UTC (rev 5909) +++ csw/mgar/pkg/cpan/IO-Compress-Base/trunk/files/COPYING 2009-08-07 11:28:09 UTC (rev 5910) @@ -1,3 +0,0 @@ -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 dmichelsen at users.sourceforge.net Fri Aug 7 13:31:00 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 11:31:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[5911] csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk Message-ID: Revision: 5911 http://gar.svn.sourceforge.net/gar/?rev=5911&view=rev Author: dmichelsen Date: 2009-08-07 11:31:00 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/IO-Compress-Zlib: Convert to stub as functionality has been moved to CSWpmiocompress Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile Removed Paths: ------------- 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-08-07 11:28:09 UTC (rev 5910) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/Makefile 2009-08-07 11:31:00 UTC (rev 5911) @@ -1,26 +1,24 @@ GARNAME = IO-Compress-Zlib -GARVERSION = 2.015 +GARVERSION = 2.020 CATEGORIES = cpan AUTHOR = PMQS -DESCRIPTION = Read and write gzip and zip files/buffers. +DESCRIPTION = This is a stub, the contents has been integrated into CSWpmiocompress define BLURB - This module provides a Perl interface to allow reading and writing of RFC - 1950, 1951, 1952 (i.e. gzip) and zip files/buffers. endef -DISTFILES += COPYING +# This is a stub, the contents has been integrated into CSWpmiocompress +MODDIST = +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = +REQUIRED_PKGS = CSWpmiocompress + CATALOGNAME = pm_iocompresszlib PACKAGES = CSWpmiocompresszlib + ARCHALL = 1 -REQUIRED_PKGS = CSWpmiocompressbase CSWpmcompressrawzlib - -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -CONFIGURE_ARGS = - -SKIPTEST = 1 - include gar/category.mk Deleted: csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-08-07 11:28:09 UTC (rev 5910) +++ csw/mgar/pkg/cpan/IO-Compress-Zlib/trunk/files/COPYING 2009-08-07 11:31:00 UTC (rev 5911) @@ -1,3 +0,0 @@ -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 dmichelsen at users.sourceforge.net Fri Aug 7 14:44:30 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 12:44:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[5912] csw/mgar/pkg/curl/trunk Message-ID: Revision: 5912 http://gar.svn.sourceforge.net/gar/?rev=5912&view=rev Author: dmichelsen Date: 2009-08-07 12:44:29 +0000 (Fri, 07 Aug 2009) Log Message: ----------- curl: Update to 7.19.5 and enhance merge phase Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 11:31:00 UTC (rev 5911) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 12:44:29 UTC (rev 5912) @@ -1,5 +1,5 @@ GARNAME = curl -GARVERSION = 7.19.4 +GARVERSION = 7.19.5 CATEGORIES = net DESCRIPTION = Command line tool and library for client-side URL transfers. @@ -43,31 +43,32 @@ SKIPTEST = 1 +EXTRA_PAX_ARGS_32 = -s ",^\.$(includedir)/curl/curlbuild.h$$,.$(includedir)/curl/curlbuild-32.h,p" +EXTRA_PAX_ARGS_64 = -s ",^\.$(includedir)/curl/curlbuild.h$$,.$(includedir)/curl/curlbuild-64.h,p" +EXTRA_PAX_ARGS_isa-sparcv8 = $(EXTRA_PAX_ARGS_32) +EXTRA_PAX_ARGS_isa-sparcv9 = $(EXTRA_PAX_ARGS_64) +EXTRA_PAX_ARGS_isa-i386 = $(EXTRA_PAX_ARGS_32) +EXTRA_PAX_ARGS_isa-amd64 = $(EXTRA_PAX_ARGS_64) + PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) PKGFILES_CSWcurlrt = $(PKGFILES_RT) include gar/category.mk post-install-isa-sparcv8: - @cp $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 - @cp $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) - @mv $(INSTALLISADIR)/opt/csw/include/curl/curlbuild.h $(INSTALLISADIR)/opt/csw/include/curl/curlbuild-32.h - @cp $(FILEDIR)/curlbuild.h $(INSTALLISADIR)/opt/csw/include/curl/curlbuild.h - $(DONADA) + @ginstall $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)$(libdir)/libcurl.so.3.0.0 + @ginstall $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)$(libdir)/libcurl.so.2.0.2 + @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 + @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)/libcurl.so.2 + @$(MAKECOOKIE) -post-install-isa-sparcv9: - @mv $(INSTALLISADIR)/opt/csw/include/curl/curlbuild.h $(INSTALLISADIR)/opt/csw/include/curl/curlbuild-64.h - $(DONADA) - -post-merge-isa-sparcv9: - @cp $(INSTALLISADIR)/opt/csw/include/curl/curlbuild-64.h $(PKGROOT)/opt/csw/include/curl/curlbuild-64.h - $(DONADA) - post-install-isa-i386: @cp $(FILEDIR)/libcurl.so.3.0.0.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 @cp $(FILEDIR)/libcurl.so.2.0.2.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.3.0.0 libcurl.so.3 ) - @( cd $(INSTALLISADIR)/opt/csw/lib; ln -s libcurl.so.2.0.2 libcurl.so.2 ) - $(DONADA) + @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 + @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)libcurl.so.2 + @$(MAKECOOKIE) + +post-merge: + ginstall $(FILEDIR)/curlbuild.h $(PKGROOT)$(includedir)/curl/curlbuild.h + @$(MAKECOOKIE) Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-08-07 11:31:00 UTC (rev 5911) +++ csw/mgar/pkg/curl/trunk/checksums 2009-08-07 12:44:29 UTC (rev 5912) @@ -1,6 +1,6 @@ -2734167c1e5f7ce6be99b75d2d371d85 download/curl-7.19.4.tar.bz2 -b63de55fb90feba487b1fd21e751d248 download/libcurl.so.3.0.0.s +426d161661dce70c8ea9ad8f553363a3 download/curl-7.19.5.tar.bz2 +5aebb27149d80000d1107b58d65b551b download/curlbuild.h +a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i b46b41659b805013740eeb76e759af4b download/libcurl.so.2.0.2.s 30e826ef67b6ce799b32154250014dd9 download/libcurl.so.3.0.0.i -a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i -5aebb27149d80000d1107b58d65b551b download/curlbuild.h +b63de55fb90feba487b1fd21e751d248 download/libcurl.so.3.0.0.s 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 Aug 7 15:08:59 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:08:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[5913] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 5913 http://gar.svn.sourceforge.net/gar/?rev=5913&view=rev Author: dmichelsen Date: 2009-08-07 13:08:59 +0000 (Fri, 07 Aug 2009) Log Message: ----------- mGAR v2: Add missing removal of cookie on reset-install- Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-07 12:44:29 UTC (rev 5912) +++ csw/mgar/gar/v2/gar.mk 2009-08-07 13:08:59 UTC (rev 5913) @@ -492,6 +492,7 @@ @rm -rf $(INSTALLISADIR) $(COOKIEDIR)/install-work @rm -f $(foreach C,pre-install-modulated install-modulated post-install-modulated,$(COOKIEDIR)/$C) @rm -f $(COOKIEDIR)/strip + @rm -f $(COOKIEROOTDIR)/global/install-$(MODULATION) # 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 dmichelsen at users.sourceforge.net Fri Aug 7 15:25:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:25:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5914] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 5914 http://gar.svn.sourceforge.net/gar/?rev=5914&view=rev Author: dmichelsen Date: 2009-08-07 13:25:41 +0000 (Fri, 07 Aug 2009) Log Message: ----------- mGAR v2: Remove more cookies from reset-install- Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-07 13:08:59 UTC (rev 5913) +++ csw/mgar/gar/v2/gar.mk 2009-08-07 13:25:41 UTC (rev 5914) @@ -491,6 +491,7 @@ @$(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)/pre-install-$(MODULATION) $(COOKIEDIR)/post-install-$(MODULATION) @rm -f $(COOKIEDIR)/strip @rm -f $(COOKIEROOTDIR)/global/install-$(MODULATION) 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 Aug 7 15:30:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:30:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[5915] csw/mgar/pkg/curl/trunk/Makefile Message-ID: Revision: 5915 http://gar.svn.sourceforge.net/gar/?rev=5915&view=rev Author: dmichelsen Date: 2009-08-07 13:30:12 +0000 (Fri, 07 Aug 2009) Log Message: ----------- curl: Some cosmetics Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 13:25:41 UTC (rev 5914) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-08-07 13:30:12 UTC (rev 5915) @@ -26,17 +26,17 @@ CATALOGNAME_CSWcurlrt = curlrt CATALOGNAME_CSWcurldevel = curldevel -# Upstream check seem to interfere with build on 8s? -#UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +SPKG_SOURCEURL = http://curl.haxx.se -LIBDEPS += lib/openssl +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 + CONFIGURE_ARGS = $(DIRPATHS) --with-ssl #Can't build amd64 until openldap has an amd64 build (Mantis 3028) #BUILD64 = 1 EXTRA_BUILD_ISAS_sparc = sparcv9 -REQUIRED_PKGS_CSWcurl = CSWiconv CSWlibidn CSWlibnet CSWoldaprt CSWosslrt +REQUIRED_PKGS_CSWcurl = CSWiconv CSWlibidn CSWlibnet CSWoldaprt CSWosslrt REQUIRED_PKGS_CSWcurl += CSWsasl CSWzlib CSWcurlrt REQUIRED_PKGS_CSWcurlrt = CSWlibidn CSWlibnet CSWoldaprt CSWosslrt CSWzlib CSWsasl REQUIRED_PKGS_CSWcurldevel = CSWcurlrt @@ -47,26 +47,26 @@ EXTRA_PAX_ARGS_64 = -s ",^\.$(includedir)/curl/curlbuild.h$$,.$(includedir)/curl/curlbuild-64.h,p" EXTRA_PAX_ARGS_isa-sparcv8 = $(EXTRA_PAX_ARGS_32) EXTRA_PAX_ARGS_isa-sparcv9 = $(EXTRA_PAX_ARGS_64) -EXTRA_PAX_ARGS_isa-i386 = $(EXTRA_PAX_ARGS_32) -EXTRA_PAX_ARGS_isa-amd64 = $(EXTRA_PAX_ARGS_64) +EXTRA_PAX_ARGS_isa-i386 = $(EXTRA_PAX_ARGS_32) +EXTRA_PAX_ARGS_isa-amd64 = $(EXTRA_PAX_ARGS_64) -PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) -PKGFILES_CSWcurlrt = $(PKGFILES_RT) +PKGFILES_CSWcurldevel = $(PKGFILES_DEVEL) +PKGFILES_CSWcurlrt = $(PKGFILES_RT) include gar/category.mk post-install-isa-sparcv8: - @ginstall $(FILEDIR)/libcurl.so.3.0.0.s $(INSTALLISADIR)$(libdir)/libcurl.so.3.0.0 - @ginstall $(FILEDIR)/libcurl.so.2.0.2.s $(INSTALLISADIR)$(libdir)/libcurl.so.2.0.2 - @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 - @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)/libcurl.so.2 + ginstall $(FILEDIR)/libcurl.so.3.0.0.s $(DESTDIR)$(libdir)/libcurl.so.3.0.0 + ginstall $(FILEDIR)/libcurl.so.2.0.2.s $(DESTDIR)$(libdir)/libcurl.so.2.0.2 + ln -s libcurl.so.3.0.0 $(DESTDIR)$(libdir)/libcurl.so.3 + ln -s libcurl.so.2.0.2 $(DESTDIR)$(libdir)/libcurl.so.2 @$(MAKECOOKIE) post-install-isa-i386: - @cp $(FILEDIR)/libcurl.so.3.0.0.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.3.0.0 - @cp $(FILEDIR)/libcurl.so.2.0.2.i $(INSTALLISADIR)/opt/csw/lib/libcurl.so.2.0.2 - @ln -s libcurl.so.3.0.0 $(INSTALLISADIR)$(libdir)/libcurl.so.3 - @ln -s libcurl.so.2.0.2 $(INSTALLISADIR)$(libdir)libcurl.so.2 + cp $(FILEDIR)/libcurl.so.3.0.0.i $(DESTDIR)$(libdir)/libcurl.so.3.0.0 + cp $(FILEDIR)/libcurl.so.2.0.2.i $(DESTDIR)$(libdir)/libcurl.so.2.0.2 + ln -s libcurl.so.3.0.0 $(DESTDIR)$(libdir)/libcurl.so.3 + ln -s libcurl.so.2.0.2 $(DESTDIR)$(libdir)/libcurl.so.2 @$(MAKECOOKIE) post-merge: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Fri Aug 7 15:46:55 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:46:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5916] csw/mgar/pkg/perl/trunk Message-ID: Revision: 5916 http://gar.svn.sourceforge.net/gar/?rev=5916&view=rev Author: bonivart Date: 2009-08-07 13:46:54 +0000 (Fri, 07 Aug 2009) Log Message: ----------- perl: some fixes Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile csw/mgar/pkg/perl/trunk/checksums Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-07 13:30:12 UTC (rev 5915) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-07 13:46:54 UTC (rev 5916) @@ -19,7 +19,6 @@ PACKAGES = CSWperl CSWperldoc ARCHALL_CSWperldoc = 1 -#REQUIRED_PKGS_CSWperl = CSWbdb44 CSWgdbm REQUIRED_PKGS_CSWperl = CSWbdb CSWgdbm REQUIRED_PKGS_CSWperldoc = CSWperl @@ -50,10 +49,13 @@ CORE_UPDATES += Storable-2.20 CORE_OBSOLETE += Storable/* Storable.pm +MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ +CORE_UPDATES += ExtUtils-MakeMaker-6.54 +CORE_OBSOLETE += ExtUtils/* + DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) # Dependencies -#LIBDEPS += lib/bdb44 LIBDEPS += lib/bdb47 LIBDEPS += lib/gdbm @@ -61,12 +63,10 @@ CONFIGURE_SCRIPTS = perl # Compatable with all prior patch revs -PL_MAJOR = 5.10 -PL_PATCH = 0 +PL_MAJOR = 5.8 +PL_PATCH = 0 2 4 6 7 INC_COMPAT = $(foreach REV,$(PL_PATCH),$(PL_MAJOR).$(REV)) -# Force use of db-4.4 -#PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.4 -ldl -lm -lpthread -lc # Force use of db-4.7 PERL_LIBS += -lsocket -lnsl -lgdbm -ldb-4.7 -ldl -lm -lpthread -lc -lperl @@ -103,13 +103,15 @@ CONFIGURE_ARGS += -Dvendorlib=$(datadir)/perl/csw CONFIGURE_ARGS += -Dvendorprefix=$(prefix) CONFIGURE_ARGS += -Dlibs="$(PERL_LIBS)" -#CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/bdb44/lib /opt/csw/lib" CONFIGURE_ARGS += -Dlibsdirs=" /usr/lib /opt/csw/lib" CONFIGURE_ARGS += -Dsed=$(bindir)/gsed #EXTRA_LIB += $(prefix)/bdb44/lib #EXTRA_INC += $(prefix)/bdb44/include +#EXTRA_LDFLAGS = -lperl +EXTRA_LDFLAGS = -L/opt/csw/lib/libperl.so + EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* @@ -176,6 +178,5 @@ @$(MAKECOOKIE) # Invoke post-install targets -#post-install: $(POST_TARGETS) post-install-modulated: $(POST_TARGETS) @$(MAKECOOKIE) Modified: csw/mgar/pkg/perl/trunk/checksums =================================================================== --- csw/mgar/pkg/perl/trunk/checksums 2009-08-07 13:30:12 UTC (rev 5915) +++ csw/mgar/pkg/perl/trunk/checksums 2009-08-07 13:46:54 UTC (rev 5916) @@ -1,4 +1,5 @@ d1b217a7a2463d5543d25490ff1b3d14 download/CGI.pm-3.44.tar.gz +003c04b33e8c8eed693f5001fe52b647 download/ExtUtils-MakeMaker-6.54.tar.gz a7e93cf2015881ded1f22b5b2d0cb391 download/File-Temp-0.22.tar.gz b88aaf2bb7437725b11e9eb48dfb6c93 download/IO-1.25.tar.gz 18a72d6a66bb62ce9bbb422dfa41181a download/PathTools-3.30.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 Aug 7 15:52:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:52:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5917] csw/mgar/pkg/cpan/Chart/trunk Message-ID: Revision: 5917 http://gar.svn.sourceforge.net/gar/?rev=5917&view=rev Author: dmichelsen Date: 2009-08-07 13:52:17 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Chart: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Chart/trunk/Makefile csw/mgar/pkg/cpan/Chart/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Chart/trunk/ Property changes on: csw/mgar/pkg/cpan/Chart/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/Chart/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/Makefile 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/Makefile 2009-08-07 13:52:17 UTC (rev 5917) @@ -3,15 +3,18 @@ CATEGORIES = cpan AUTHOR = CHARTGRP -DESCRIPTION = Charting library based on GD. +DESCRIPTION = A series of charting modules based on GD define BLURB GD extensions for drawing various chart types, such as Composite, Error Bar and Pareto. endef -DISTFILES += $(call admfiles,CSWpmchart,depend prototype) +REQUIRED_PKGS = CSWpmgd -DEPENDS += cpan/GD +PACKAGES = CSWpmchart +CATALOGNAME = pm_chart +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Chart/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/checksums 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/checksums 2009-08-07 13:52:17 UTC (rev 5917) @@ -1,4 +1 @@ -48cd5ceae716bf90eab2d3100b606ef4 download/CSWpmchart.gspec -f76e63f2366b8648783c87e98dda7e19 download/CSWpmchart.depend -e967db2277b546a936d48b3b8fe441ba download/CSWpmchart.prototype 5e7a80badfb8bf6e29b21879689bcc2f download/Chart-2.4.1.tar.gz Deleted: csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.depend 2009-08-07 13:52:17 UTC (rev 5917) @@ -1 +0,0 @@ -P CSWpmgd pm_gd - interface to Gd Graphics Library Deleted: csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.gspec 2009-08-07 13:52:17 UTC (rev 5917) @@ -1,9 +0,0 @@ -%var bitname pm_chart -%var pkgname CSWpmchart -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright(c) 1997-1998 David Bonner, 1999 Peter Clark, 2001 Chart-Group at BKG. -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/Chart/trunk/files/CSWpmchart.prototype =================================================================== --- csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.prototype 2009-08-07 13:46:54 UTC (rev 5916) +++ csw/mgar/pkg/cpan/Chart/trunk/files/CSWpmchart.prototype 2009-08-07 13:52:17 UTC (rev 5917) @@ -1,28 +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/Chart 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Chart/.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/Chart.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/Chart 0755 root bin -f none /opt/csw/share/perl/csw/Chart.pod 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Bars.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Base.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Composite.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Direction.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/ErrorBars.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/HorizontalBars.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/Lines.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/LinesPoints.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Mountain.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Pareto.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/Pie.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/Points.pm 0444 root bin -f none /opt/csw/share/perl/csw/Chart/Split.pm 0555 root bin -f none /opt/csw/share/perl/csw/Chart/StackedBars.pm 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 Aug 7 15:56:20 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 13:56:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5918] csw/mgar/pkg/cpan/Devel-StackTrace/trunk Message-ID: Revision: 5918 http://gar.svn.sourceforge.net/gar/?rev=5918&view=rev Author: dmichelsen Date: 2009-08-07 13:56:20 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Devel-StackTrace: Update to 1.22 Modified Paths: -------------- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/Makefile csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/ Property changes on: csw/mgar/pkg/cpan/Devel-StackTrace/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/Devel-StackTrace/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/Makefile 2009-08-07 13:52:17 UTC (rev 5917) +++ csw/mgar/pkg/cpan/Devel-StackTrace/trunk/Makefile 2009-08-07 13:56:20 UTC (rev 5918) @@ -1,9 +1,9 @@ GARNAME = Devel-StackTrace -GARVERSION = 1.13 +GARVERSION = 1.22 CATEGORIES = cpan AUTHOR = DROLSKY -DESCRIPTION = stack trace and stack trace frame objects +DESCRIPTION = Stack trace and stack trace frame objects define BLURB The Devel::StackTrace module contains two classes, Devel::StackTrace and Devel::StackTraceFrame. The goal of this object is to encapsulate the @@ -11,6 +11,9 @@ providing a simple interface to this data. endef -DISTFILES += CSWpmdevstacktrace.gspec +PACKAGES = CSWpmdevstacktrace +CATALOGNAME = pm_devstacktrace +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums 2009-08-07 13:52:17 UTC (rev 5917) +++ csw/mgar/pkg/cpan/Devel-StackTrace/trunk/checksums 2009-08-07 13:56:20 UTC (rev 5918) @@ -1,2 +1 @@ -07063a84d09efc2e351d4fdb95f13e7d download/CSWpmdevstacktrace.gspec -35d85c3f2c91c1de389b13436659551a download/Devel-StackTrace-1.13.tar.gz +e114310258a893ac3454fb0b36a57166 download/Devel-StackTrace-1.22.tar.gz Deleted: csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec =================================================================== --- csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec 2009-08-07 13:52:17 UTC (rev 5917) +++ csw/mgar/pkg/cpan/Devel-StackTrace/trunk/files/CSWpmdevstacktrace.gspec 2009-08-07 13:56:20 UTC (rev 5918) @@ -1,5 +0,0 @@ -%var bitname pm_template -%var pkgname CSWpmtempl -%var arch all -%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 dmichelsen at users.sourceforge.net Fri Aug 7 16:04:52 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 14:04:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5919] csw/mgar/pkg/cpan/Class-ReturnValue/trunk Message-ID: Revision: 5919 http://gar.svn.sourceforge.net/gar/?rev=5919&view=rev Author: dmichelsen Date: 2009-08-07 14:04:52 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Class-ReturnValue: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/Makefile csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-ReturnValue/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/Class-ReturnValue/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/Makefile 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/Makefile 2009-08-07 14:04:52 UTC (rev 5919) @@ -1,18 +1,21 @@ GARNAME = Class-ReturnValue -GARVERSION = 0.53 +GARVERSION = 0.55 CATEGORIES = cpan AUTHOR = JESSE -DESCRIPTION = a return-value object. +DESCRIPTION = Treat a return value as boolean, array or object define BLURB Class::ReturnValue is a return value object that can allow code calling your routine to expect: a boolean value (did it fail) or a list (what are the return values) endef -DISTFILES += CSWpmclassretval.gspec CSWpmclassretval.depend +PREREQUISITE_PKGS = CSWpmtestinline +REQUIRED_PKGS = CSWpmdevstacktrace -DEPENDS += cpan/Devel-StackTrace -BUILDDEPS += cpan/Test-Inline +PACKAGES = CSWpmclassretval +CATALOGNAME = pm_classretval +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/checksums 2009-08-07 14:04:52 UTC (rev 5919) @@ -1,3 +1 @@ -fa0c8d92b0fc74271004e253db591459 download/CSWpmclassretval.gspec -5fc76583a190c7b769aad7dce84b2048 download/CSWpmclassretval.depend -6db549139d16eb042f0128ff5aefe2f0 download/Class-ReturnValue-0.53.tar.gz +047fbbcfd90d5c399a1feba55781329e download/Class-ReturnValue-0.55.tar.gz Deleted: csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.depend 2009-08-07 14:04:52 UTC (rev 5919) @@ -1 +0,0 @@ -P CSWpmtempl pm_template - stack trace and stack trace frame objects Deleted: csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec 2009-08-07 13:56:20 UTC (rev 5918) +++ csw/mgar/pkg/cpan/Class-ReturnValue/trunk/files/CSWpmclassretval.gspec 2009-08-07 14:04:52 UTC (rev 5919) @@ -1,8 +0,0 @@ -%var bitname pm_classretval -%var pkgname CSWpmclassretval -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2002, Jesse Vincent -You may use, modify, fold, spindle or mutilate this module under -the same terms as perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Fri Aug 7 16:12:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 14:12:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[5920] csw/mgar/pkg/cpan/Convert-BinHex/trunk Message-ID: Revision: 5920 http://gar.svn.sourceforge.net/gar/?rev=5920&view=rev Author: dmichelsen Date: 2009-08-07 14:12:04 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Convert-BinHex: Move to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Convert-BinHex/trunk/Makefile csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Convert-BinHex/trunk/ Property changes on: csw/mgar/pkg/cpan/Convert-BinHex/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/Convert-BinHex/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/Makefile 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/Makefile 2009-08-07 14:12:04 UTC (rev 5920) @@ -3,7 +3,7 @@ CATEGORIES = cpan AUTHOR = ERYQ -DESCRIPTION = extract data from Macintosh BinHex files +DESCRIPTION = Perl module to extract data from Macintosh BinHex files define BLURB BinHex is a format used by Macintosh for transporting Mac files safely through electronic mail, as short-lined, 7-bit, semi-compressed data @@ -11,6 +11,9 @@ into into binary data. endef -DISTFILES += $(call admfiles,CSWpmconvertbinhex,prototype) +PACKAGES = CSWpmconvertbinhex +CATALOGNAME = pm_convertbinhex +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/checksums 2009-08-07 14:12:04 UTC (rev 5920) @@ -1,3 +1 @@ -9979e45b26ac9d0a14dc25c3197f1695 download/CSWpmconvertbinhex.gspec -5f589e015b25f16864c2973dc8465c6f download/CSWpmconvertbinhex.prototype ba70ad1772abac6270078f28197a7961 download/Convert-BinHex-1.119.tar.gz Deleted: csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.gspec 2009-08-07 14:12:04 UTC (rev 5920) @@ -1,5 +0,0 @@ -%var bitname pm_convertbinhex -%var pkgname CSWpmconvertbinhex -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype =================================================================== --- csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype 2009-08-07 14:04:52 UTC (rev 5919) +++ csw/mgar/pkg/cpan/Convert-BinHex/trunk/files/CSWpmconvertbinhex.prototype 2009-08-07 14:12:04 UTC (rev 5920) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Convert 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Convert/BinHex 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Convert/BinHex/.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/Convert::BinHex.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/Convert 0755 root bin -f none /opt/csw/share/perl/csw/Convert/BinHex.pm 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 Aug 7 22:11:58 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 20:11:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5921] csw/mgar/pkg/cpan/Devel-Symdump/trunk Message-ID: Revision: 5921 http://gar.svn.sourceforge.net/gar/?rev=5921&view=rev Author: dmichelsen Date: 2009-08-07 20:11:57 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Devel-Symdump: Update to 2.08 Modified Paths: -------------- csw/mgar/pkg/cpan/Devel-Symdump/trunk/Makefile csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.depend csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Devel-Symdump/trunk/ Property changes on: csw/mgar/pkg/cpan/Devel-Symdump/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/Devel-Symdump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/Makefile 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/Makefile 2009-08-07 20:11:57 UTC (rev 5921) @@ -1,13 +1,16 @@ GARNAME = Devel-Symdump -GARVERSION = 2.07 +GARVERSION = 2.08 CATEGORIES = cpan AUTHOR = ANDK -DESCRIPTION = dump symbol names or the symbol table +DESCRIPTION = Dump symbol names or the symbol table define BLURB This little package serves to access the symbol table of perl. endef -DISTFILES += $(call admfiles,CSWpmdevelsymdump,depend prototype) +PACKAGES = CSWpmdevelsymdump +CATALOGNAME = pm_develsymdump +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/checksums 2009-08-07 20:11:57 UTC (rev 5921) @@ -1,4 +1 @@ -5cce3d2bd4b7f841eb4052e5a8418706 download/CSWpmdevelsymdump.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmdevelsymdump.depend -518d3521e26e137d86972ba45e4ed0cd download/CSWpmdevelsymdump.prototype -4c7dfb240687cf0105ca7e81d07781bf download/Devel-Symdump-2.07.tar.gz +68e3a2f2f989bff295ee63aed5a2a1e5 download/Devel-Symdump-2.08.tar.gz Deleted: csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.gspec 2009-08-07 20:11:57 UTC (rev 5921) @@ -1,7 +0,0 @@ -%var bitname pm_develsymdump -%var pkgname CSWpmdevelsymdump -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This package is Copyright (C) 1994-2000 by Andreas K\xF6nig. It may be -copied, used and redistributed under the same terms as perl itself. Deleted: csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype =================================================================== --- csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype 2009-08-07 14:12:04 UTC (rev 5920) +++ csw/mgar/pkg/cpan/Devel-Symdump/trunk/files/CSWpmdevelsymdump.prototype 2009-08-07 20:11:57 UTC (rev 5921) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Devel 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Devel/Symdump 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Devel/Symdump/.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/Devel::Symdump.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/Devel 0755 root bin -d none /opt/csw/share/perl/csw/Devel/Symdump 0755 root bin -f none /opt/csw/share/perl/csw/Devel/Symdump.pm 0444 root bin -f none /opt/csw/share/perl/csw/Devel/Symdump/Export.pm 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 Aug 7 22:13:19 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 20:13:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[5922] csw/mgar/pkg/cpan Message-ID: Revision: 5922 http://gar.svn.sourceforge.net/gar/?rev=5922&view=rev Author: dmichelsen Date: 2009-08-07 20:13:19 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Capitalization: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Capitalization/ csw/mgar/pkg/cpan/Capitalization/branches/ csw/mgar/pkg/cpan/Capitalization/tags/ csw/mgar/pkg/cpan/Capitalization/trunk/ csw/mgar/pkg/cpan/Capitalization/trunk/Makefile csw/mgar/pkg/cpan/Capitalization/trunk/checksums csw/mgar/pkg/cpan/Capitalization/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Capitalization/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/Capitalization/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Capitalization/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Capitalization/trunk/Makefile 2009-08-07 20:13:19 UTC (rev 5922) @@ -0,0 +1,17 @@ +GARNAME = capitalization +GARVERSION = 0.03 +CATEGORIES = cpan +AUTHOR = MIYAGAWA + +DESCRIPTION = No capitalization on method names +define BLURB +endef + +REQUIRED_PKGS = CSWpmdevelsymdump + +PACKAGES = CSWpmcapitalization +CATALOGNAME = pm_capitalization + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Capitalization/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Capitalization/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Capitalization/trunk/checksums 2009-08-07 20:13:19 UTC (rev 5922) @@ -0,0 +1 @@ +94998b37b4f86bd2e5738ab3a8fb4e7c download/capitalization-0.03.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 Aug 7 23:23:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 07 Aug 2009 21:23:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5923] csw/mgar/pkg/cswutils/trunk Message-ID: Revision: 5923 http://gar.svn.sourceforge.net/gar/?rev=5923&view=rev Author: dmichelsen Date: 2009-08-07 21:23:03 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cswutils: Fix issue #2869 according to James patch Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/checksums csw/mgar/pkg/cswutils/trunk/files/checkpkg csw/mgar/pkg/cswutils/trunk/files/createpkg Modified: csw/mgar/pkg/cswutils/trunk/checksums =================================================================== --- csw/mgar/pkg/cswutils/trunk/checksums 2009-08-07 20:13:19 UTC (rev 5922) +++ csw/mgar/pkg/cswutils/trunk/checksums 2009-08-07 21:23:03 UTC (rev 5923) @@ -1,8 +1,8 @@ 091b12575ebc0e45cf8c3d8b43d8b638 download/COPYING -94fc299b1be5cc4c20f92721ef43573b download/checkpkg +30b6598a4453e3ce0c1fabeede5eb5f8 download/checkpkg 6ec3b6597e04714430987ccc199db3c4 download/checkpkg.8 9a637f6546cc50974159a987302d91c0 download/cpan2pkg -44e944a12a8691068de0c95e1052a922 download/createpkg +93b6a811d303ce3be0050c5a7b3c8e69 download/createpkg a605598f30195f9ab1b29fc3944d3b31 download/createpkg.8 cd4496ee27bf86d5c8bc656c9c5974be download/stagepkg 8908a0a898aa07a7a928b2b8bd8384f0 download/stagepkg.8 Modified: csw/mgar/pkg/cswutils/trunk/files/checkpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-08-07 20:13:19 UTC (rev 5922) +++ csw/mgar/pkg/cswutils/trunk/files/checkpkg 2009-08-07 21:23:03 UTC (rev 5923) @@ -145,12 +145,15 @@ basedir=`sed -n 's/^BASEDIR=//p' $TMPFILE` pkgarch=`sed -n 's/^ARCH=//p' $TMPFILE|head -1` -case $software in - *[A-Z]*) +isLower(){ + typeset -l LOWER=$1 + [ "$LOWER" = "$1" ] +} + +if ! isLower $software ; then echo ERROR: $software must be all lowercase exit 1 - ;; -esac +fi case `basename $f` in ${software}-${version}-*) Modified: csw/mgar/pkg/cswutils/trunk/files/createpkg =================================================================== --- csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-08-07 20:13:19 UTC (rev 5922) +++ csw/mgar/pkg/cswutils/trunk/files/createpkg 2009-08-07 21:23:03 UTC (rev 5923) @@ -87,12 +87,15 @@ PKGREV=`sed -n 's/^VERSION=//p' pkginfo` SOFTNAME=`sed -n 's/^NAME=//p' pkginfo|awk '{print $1}'` -case $SOFTNAME in - *[A-Z]*) +isLower(){ + typeset -l LOWER=$1 + [ "$LOWER" = "$1" ] +} + +if ! isLower $SOFTWARE ; then echo ERROR: $SOFTNAME must be all lowercase exit 1 - ;; -esac +fi PKGFILE=$SOFTNAME-$PKGREV-SunOS`uname -r`-$ARCH-CSW.pkg This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Fri Aug 7 23:35:23 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Fri, 07 Aug 2009 21:35:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[5924] csw/mgar/pkg/amavisd-new/trunk/Makefile Message-ID: Revision: 5924 http://gar.svn.sourceforge.net/gar/?rev=5924&view=rev Author: idogan23 Date: 2009-08-07 21:35:23 +0000 (Fri, 07 Aug 2009) Log Message: ----------- amavisd_new: changed dependency to CSWiocompress Modified Paths: -------------- csw/mgar/pkg/amavisd-new/trunk/Makefile Modified: csw/mgar/pkg/amavisd-new/trunk/Makefile =================================================================== --- csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-07 21:23:03 UTC (rev 5923) +++ csw/mgar/pkg/amavisd-new/trunk/Makefile 2009-08-07 21:35:23 UTC (rev 5924) @@ -28,7 +28,7 @@ REQUIRED_PKGS += CSWpmnetserver REQUIRED_PKGS += CSWpmmailtools REQUIRED_PKGS += CSWpmmimetools -REQUIRED_PKGS += CSWpmcompresszlib +REQUIRED_PKGS += CSWiocompress REQUIRED_PKGS += CSWpmarchivetar REQUIRED_PKGS += CSWpmarchivezip REQUIRED_PKGS += CSWspamassassin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 8 00:05:26 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 07 Aug 2009 22:05:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5925] csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW Message-ID: Revision: 5925 http://gar.svn.sourceforge.net/gar/?rev=5925&view=rev Author: skayser Date: 2009-08-07 22:05:22 +0000 (Fri, 07 Aug 2009) Log Message: ----------- tcpdrop: updated changelog Modified Paths: -------------- csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW Modified: csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW 2009-08-07 21:35:23 UTC (rev 5924) +++ csw/mgar/pkg/tcpdrop/trunk/files/changelog.CSW 2009-08-07 22:05:22 UTC (rev 5925) @@ -1,5 +1,5 @@ -tcpdrop (1.4,REV=2009.07.16) +tcpdrop (1.4,REV=2009.08.08) * Initial release. - -- Sebastian Kayser Thu, 16 Jul 2009 16:26:31 +0200 + -- Sebastian Kayser Sat, 8 Aug 2009 00:04:40 +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 Sat Aug 8 00:11:18 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 07 Aug 2009 22:11:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5926] csw/mgar/pkg/tcpdrop/trunk/Makefile Message-ID: Revision: 5926 http://gar.svn.sourceforge.net/gar/?rev=5926&view=rev Author: skayser Date: 2009-08-07 22:11:18 +0000 (Fri, 07 Aug 2009) Log Message: ----------- tcpdrop: tcpdrop rather belongs to sbin Modified Paths: -------------- csw/mgar/pkg/tcpdrop/trunk/Makefile Modified: csw/mgar/pkg/tcpdrop/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcpdrop/trunk/Makefile 2009-08-07 22:05:22 UTC (rev 5925) +++ csw/mgar/pkg/tcpdrop/trunk/Makefile 2009-08-07 22:11:18 UTC (rev 5926) @@ -27,5 +27,5 @@ mkdir -p $(DOCDEST) cp $(FILEDIR)/changelog.CSW $(WORKSRC)/README $(DOCDEST) cp $(WORKSRC)/OPENSOLARIS.LICENSE $(DOCDEST)/CDDL - ginstall -Dm 755 $(WORKSRC)/tcpdrop $(DESTDIR)$(bindir)/tcpdrop + ginstall -Dm 755 $(WORKSRC)/tcpdrop $(DESTDIR)$(sbindir)/tcpdrop @$(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 Sat Aug 8 01:38:51 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 07 Aug 2009 23:38:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5927] csw/mgar/pkg/cpan/Module-CoreList/trunk Message-ID: Revision: 5927 http://gar.svn.sourceforge.net/gar/?rev=5927&view=rev Author: skayser Date: 2009-08-07 23:38:50 +0000 (Fri, 07 Aug 2009) Log Message: ----------- cpan/Module-CoreList: switch to mGAR v2, version bump to 2.17 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-CoreList/trunk/Makefile csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.depend csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Module-CoreList/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-CoreList/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/Module-CoreList/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/Makefile 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/Makefile 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,5 +1,5 @@ GARNAME = Module-CoreList -GARVERSION = 2.09 +GARVERSION = 2.17 CATEGORIES = cpan AUTHOR = RGARCIA @@ -8,6 +8,14 @@ What modules shipped with versions of Perl endef -DISTFILES += $(call admfiles,CSWpmmodcorelist,depend prototype) +PACKAGES = CSWpmmodcorelist +CATALOGNAME = pm_modcorelist +ARCHALL = 1 include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/checksums 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,4 +1 @@ -e790ec92da6c2ea54d3d12fc69c9b0f4 download/CSWpmmodcorelist.gspec -882cfc02f0fd6a7892b45bc34a8a9755 download/CSWpmmodcorelist.depend -dac92f5bc4dcc8df7289ac0cf98adfb4 download/CSWpmmodcorelist.prototype -3a295781238521a100587748945506a5 download/Module-CoreList-2.09.tar.gz +a006aa836dcc584acfbf3422df62f739 download/Module-CoreList-2.17.tar.gz Deleted: csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.gspec 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,9 +0,0 @@ -%var bitname pm_modcorelist -%var pkgname CSWpmmodcorelist -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 2002-2006 Richard Clamp. All Rights Reserved. - -This module is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype 2009-08-07 22:11:18 UTC (rev 5926) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/files/CSWpmmodcorelist.prototype 2009-08-07 23:38:50 UTC (rev 5927) @@ -1,19 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/corelist 0555 root bin -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/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/CoreList 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/CoreList/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/corelist.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Module::CoreList.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/Module 0755 root bin -f none /opt/csw/share/perl/csw/Module/CoreList.pm 0444 root bin Added: csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Module-CoreList/trunk/files/changelog.CSW 2009-08-07 23:38:50 UTC (rev 5927) @@ -0,0 +1,5 @@ +pm_modcorelist (2.17,REV=2009.08.08) + + * Adopted and updated to 2.17 + + -- Sebastian Kayser Sat, 8 Aug 2009 01:35:45 +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 Sat Aug 8 02:04:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:04:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5928] csw/mgar/pkg/cpan/Module-Loaded/trunk Message-ID: Revision: 5928 http://gar.svn.sourceforge.net/gar/?rev=5928&view=rev Author: skayser Date: 2009-08-08 00:04:06 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Module-Loaded: switched to mGAR v2, version bump to 0.02 Modified Paths: -------------- csw/mgar/pkg/cpan/Module-Loaded/trunk/Makefile csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW Property Changed: ---------------- csw/mgar/pkg/cpan/Module-Loaded/trunk/ Property changes on: csw/mgar/pkg/cpan/Module-Loaded/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/Module-Loaded/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/Makefile 2009-08-07 23:38:50 UTC (rev 5927) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/Makefile 2009-08-08 00:04:06 UTC (rev 5928) @@ -1,5 +1,5 @@ GARNAME = Module-Loaded -GARVERSION = 0.01 +GARVERSION = 0.02 CATEGORIES = cpan AUTHOR = KANE @@ -13,6 +13,14 @@ unloaded. endef -DISTFILES += $(call admfiles,CSWpmmodloaded,prototype) +PACKAGES = CSWpmmodloaded +CATALOGNAME = pm_modloaded +ARCHALL = 1 include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(GARNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums 2009-08-07 23:38:50 UTC (rev 5927) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/checksums 2009-08-08 00:04:06 UTC (rev 5928) @@ -1,3 +1 @@ -4c210ff5701cf2960f169f928e715f70 download/CSWpmmodloaded.gspec -7f8a1917ae4e9e78a025fd5f0764c656 download/CSWpmmodloaded.prototype -bf2830c75b4ce78ebeee7f5ed074ea2a download/Module-Loaded-0.01.tar.gz +cbd3a9721287cdfc630f6db650a74469 download/Module-Loaded-0.02.tar.gz Added: csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/files/changelog.CSW 2009-08-08 00:04:06 UTC (rev 5928) @@ -0,0 +1,5 @@ +pm_modloaded (0.02,REV=2009.08.08) + + * Adopted and updated to 0.02. + + -- Sebastian Kayser Sat, 8 Aug 2009 02:00:38 +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 Sat Aug 8 02:09:55 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:09:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5929] csw/mgar/pkg/cpan/Module-Loaded/trunk/files Message-ID: Revision: 5929 http://gar.svn.sourceforge.net/gar/?rev=5929&view=rev Author: skayser Date: 2009-08-08 00:09:55 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Module-Loaded: deleted gspec/prototype Removed Paths: ------------- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype Deleted: csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec 2009-08-08 00:04:06 UTC (rev 5928) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.gspec 2009-08-08 00:09:55 UTC (rev 5929) @@ -1,10 +0,0 @@ -%var bitname pm_modloaded -%var pkgname CSWpmmodloaded -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2005 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype =================================================================== --- csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype 2009-08-08 00:04:06 UTC (rev 5928) +++ csw/mgar/pkg/cpan/Module-Loaded/trunk/files/CSWpmmodloaded.prototype 2009-08-08 00:09:55 UTC (rev 5929) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Module/Loaded 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Module/Loaded/.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/Module::Loaded.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/Module 0755 root bin -f none /opt/csw/share/perl/csw/Module/Loaded.pm 0444 root 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 Sat Aug 8 02:41:44 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:41:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[5930] csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk Message-ID: Revision: 5930 http://gar.svn.sourceforge.net/gar/?rev=5930&view=rev Author: skayser Date: 2009-08-08 00:41:44 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Locale-Maketext-Simple: switched to mGAR v2, version bump to 0.18 Modified Paths: -------------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/Makefile csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/ Property changes on: csw/mgar/pkg/cpan/Locale-Maketext-Simple/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/Locale-Maketext-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/Makefile 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/Makefile 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,16 +1,31 @@ +# Locale-Maketext-Simple 0.19 lacks Makefile.PL +# Locale-Maketext-Simple 0.20 requires higher MakeMaker rev than we have +# Warning: prerequisite ExtUtils::MakeMaker 6.42 not found. We have 6.30. +# GARNAME = Locale-Maketext-Simple -GARVERSION = 0.16 +GARVERSION = 0.18 CATEGORIES = cpan -AUTHOR = AUTRIJUS +AUTHOR = $(AUTHOR_$(GARVERSION)) +AUTHOR_0.18 = AUDREYT +AUTHOR_0.19 = JESSE +AUTHOR_0.20 = JESSE -DESCRIPTION = simple interface to Locale::Maketext::Lexicon +DESCRIPTION = Simple interface to Locale::Maketext::Lexicon define BLURB This module is a simple wrapper around Locale::Maketext::Lexicon, designed to alleviate the need of creating Language Classes for module authors. endef -DISTFILES = $(call admfiles,CSWpmlclemktxtsimple,depend prototype) +PACKAGES = CSWpmlclemktxtsimple +CATALOGNAME = pm_lclemktxtsimple +ARCHALL = 1 -DEPENDS += cpan/Locale-Maketext-Lexicon +REQUIRED_PKGS = CSWpmlclemktxtlex include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/checksums 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,4 +1 @@ -dca64bd31396619cc431382b83be5c34 download/CSWpmlclemktxtsimple.gspec -7f7bbb166fc021406c83272eea46cbd2 download/CSWpmlclemktxtsimple.depend -f1cc83e95fa3ef7a9f50e6cb4659bd3e download/CSWpmlclemktxtsimple.prototype -d6dd0e79802f30d0eef723ec23021f60 download/Locale-Maketext-Simple-0.16.tar.gz +51cc6dc109bf49cca063f3baa2cfd9e6 download/Locale-Maketext-Simple-0.18.tar.gz Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.depend 2009-08-08 00:41:44 UTC (rev 5930) @@ -1 +0,0 @@ -P CSWpmlclemktxtlex pm_lclemktxtlex - use other catalog formats in Maketext Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.gspec 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,11 +0,0 @@ -%var bitname pm_lclemktxtsimple -%var pkgname CSWpmlclemktxtsimple -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003, 2004 by Autrijus Tang . - -All rights reserved. You can redistribute and/or modify -this bundle under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype 2009-08-08 00:09:55 UTC (rev 5929) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/CSWpmlclemktxtsimple.prototype 2009-08-08 00:41:44 UTC (rev 5930) @@ -1,19 +0,0 @@ -d none /opt/csw/bin 0755 root bin -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/Locale 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Simple 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Simple/.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/man1 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Simple.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/Locale 0755 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext 0755 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Simple.pm 0444 root bin Added: csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Locale-Maketext-Simple/trunk/files/changelog.CSW 2009-08-08 00:41:44 UTC (rev 5930) @@ -0,0 +1,5 @@ +pm_lclemktxtsimple (0.20,REV=2009.08.08) + + * Adopted and updated to 0.18 + + -- Sebastian Kayser Sat, 8 Aug 2009 02:17:02 +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 Sat Aug 8 02:51:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:51:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5931] csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk Message-ID: Revision: 5931 http://gar.svn.sourceforge.net/gar/?rev=5931&view=rev Author: skayser Date: 2009-08-08 00:51:16 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Locale-Maketext-Lexicon: switched to mGAR v2, version bump to 0.77 Modified Paths: -------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.depend csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/ Property changes on: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/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/Locale-Maketext-Lexicon/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/Makefile 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,14 +1,22 @@ GARNAME = Locale-Maketext-Lexicon -GARVERSION = 0.62 +GARVERSION = 0.77 CATEGORIES = cpan -AUTHOR = AUTRIJUS +AUTHOR = DRTECH -DESCRIPTION = use other catalog formats in Maketext +DESCRIPTION = Use other catalog formats in Maketext define BLURB This module provides lexicon-handling modules to read from other localization formats, such as Gettext, Msgcat, and so on. endef -DISTFILES = $(call admfiles,CSWpmlclemktxtlex,depend prototype) +PACKAGES = CSWpmlclemktxtlex +CATALOGNAME = pm_lclemktxtlex +ARCHALL = 1 include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/checksums 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,4 +1 @@ -9e5184d97ddaed8a8970b5b0c218301f download/CSWpmlclemktxtlex.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmlclemktxtlex.depend -5af9ea517938a51ec08fc3ba629d233b download/CSWpmlclemktxtlex.prototype -989642c1a83ddc7f1337d77422ee40cf download/Locale-Maketext-Lexicon-0.62.tar.gz +622dada722fb6db0e49e453c843af83c download/Locale-Maketext-Lexicon-0.77.tar.gz Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.gspec 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,11 +0,0 @@ -%var bitname pm_lclemktxtlex -%var pkgname CSWpmlclemktxtlex -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2002, 2003, 2004 by Autrijus Tang . - -All rights reserved. You can redistribute and/or modify -this bundle under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype 2009-08-08 00:41:44 UTC (rev 5930) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/CSWpmlclemktxtlex.prototype 2009-08-08 00:51:16 UTC (rev 5931) @@ -1,34 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/xgettext.pl 0555 root bin -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/Locale 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Lexicon 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Locale/Maketext/Lexicon/.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/man1 0755 root bin -f none /opt/csw/share/man/man1/xgettext.pl.1 0444 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Extract.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Auto.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Gettext.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Msgcat.3perl 0444 root bin -f none /opt/csw/share/man/man3/Locale::Maketext::Lexicon::Tie.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/Locale 0755 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext 0755 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext/Extract 0755 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Extract.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Extract/Run.pm 0444 root bin -d none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon 0755 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Auto.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Gettext.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Msgcat.pm 0444 root bin -f none /opt/csw/share/perl/csw/Locale/Maketext/Lexicon/Tie.pm 0444 root 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 Sat Aug 8 02:52:50 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 00:52:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[5932] csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/ files/changelog.CSW Message-ID: Revision: 5932 http://gar.svn.sourceforge.net/gar/?rev=5932&view=rev Author: skayser Date: 2009-08-08 00:52:50 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Locale-Maketext-Lexicon: switched to mGAR v2, version bump to 0.77 Added Paths: ----------- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW Added: csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Locale-Maketext-Lexicon/trunk/files/changelog.CSW 2009-08-08 00:52:50 UTC (rev 5932) @@ -0,0 +1,5 @@ +pm_lclemktxtlex (0.77,REV=2009.08.08) + + * Adopted and updated to 0.77 + + -- Sebastian Kayser Sat, 8 Aug 2009 02:47:16 +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 Sat Aug 8 03:09:36 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 01:09:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5933] csw/mgar/pkg/cpan/Params-Check/trunk Message-ID: Revision: 5933 http://gar.svn.sourceforge.net/gar/?rev=5933&view=rev Author: skayser Date: 2009-08-08 01:09:36 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Params-Check: switched to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/cpan/Params-Check/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Params-Check/trunk/ Property changes on: csw/mgar/pkg/cpan/Params-Check/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-Check/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/Makefile 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/Makefile 2009-08-08 01:09:36 UTC (rev 5933) @@ -10,8 +10,16 @@ must be named. endef -DISTFILES += $(call admfiles,CSWpmprmscheck,depend prototype) +PACKAGES = CSWpmprmscheck +CATALOGNAME = pm_prmscheck +ARCHALL = 1 -DEPENDS += cpan/Locale-Maketext-Simple +REQUIRED_PKGS = CSWpmlclemktxtsimple include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Deleted: csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.depend 2009-08-08 01:09:36 UTC (rev 5933) @@ -1 +0,0 @@ -P CSWpmlclemktxtsimple pm_lclemktxtsimple - simple interface to Locale::Maketext::Lexicon Deleted: csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.gspec 2009-08-08 01:09:36 UTC (rev 5933) @@ -1,10 +0,0 @@ -%var bitname pm_prmscheck -%var pkgname CSWpmprmscheck -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype 2009-08-08 00:52:50 UTC (rev 5932) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/CSWpmprmscheck.prototype 2009-08-08 01:09:36 UTC (rev 5933) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Params 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Params/Check 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Params/Check/.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/Params::Check.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/Params 0755 root bin -f none /opt/csw/share/perl/csw/Params/Check.pm 0444 root bin Added: csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Params-Check/trunk/files/changelog.CSW 2009-08-08 01:09:36 UTC (rev 5933) @@ -0,0 +1,5 @@ +pm_prmscheck (0.26,REV=2009.08.08) + + * Adopted and rebuilt using mGAR v2. + + -- Sebastian Kayser Sat, 8 Aug 2009 03:05:22 +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 Sat Aug 8 03:30:52 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 01:30:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[5934] csw/mgar/pkg/cpan Message-ID: Revision: 5934 http://gar.svn.sourceforge.net/gar/?rev=5934&view=rev Author: skayser Date: 2009-08-08 01:30:50 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Parse-CPAN-Meta: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Parse-CPAN-Meta/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/branches/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/tags/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/Makefile csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW Property changes on: csw/mgar/pkg/cpan/Parse-CPAN-Meta/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/Parse-CPAN-Meta/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/Makefile 2009-08-08 01:30:50 UTC (rev 5934) @@ -0,0 +1,21 @@ +GARNAME = Parse-CPAN-Meta +GARVERSION = 1.40 +CATEGORIES = cpan +AUTHOR = SMUELLER + +DESCRIPTION = Parse META.yml and other similar CPAN metadata files +define BLURB + Long description +endef + +PACKAGES = CSWpmparsecpanmeta +CATALOGNAME = pm_parsecpanmeta +ARCHALL = 1 + +include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Added: csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/checksums 2009-08-08 01:30:50 UTC (rev 5934) @@ -0,0 +1 @@ +13038b57d3f253f8851323ba9db0b1a1 download/Parse-CPAN-Meta-1.40.tar.gz Added: csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Parse-CPAN-Meta/trunk/files/changelog.CSW 2009-08-08 01:30:50 UTC (rev 5934) @@ -0,0 +1,5 @@ +pm_parsecpanmeta (1.40,REV=2009.08.08) + + * Initial release. + + -- Sebastian Kayser Sat, 8 Aug 2009 03:27:15 +0200 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 Aug 8 03:47:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 01:47:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5935] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 5935 http://gar.svn.sourceforge.net/gar/?rev=5935&view=rev Author: valholla Date: 2009-08-08 01:47:50 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fixes for class files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums Added Paths: ----------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Removed Paths: ------------- csw/mgar/pkg/sendmail/trunk/files/i.sol10 csw/mgar/pkg/sendmail/trunk/files/i.sol8 csw/mgar/pkg/sendmail/trunk/files/i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-08 01:47:50 UTC (rev 5935) @@ -9,14 +9,17 @@ INSTALLISADIR = $(WORKROOTDIR)/install-$(GAROSREL)-$(MODULATION) WORKDIR = $(WORKROOTDIR)/build-$(GAROSREL)-$(MODULATION) +WORKDIR_FIRSTMOD = $(WORKROOTDIR)/build-$(GAROSREL)-$(firstword $(MODULATIONS)) COOKIEDIR = $(COOKIEROOTDIR)/$(GAROSREL)-$(MODULATION) MASTER_SITES = ftp://ftp.sendmail.org/pub/sendmail/ +MY_CLASSES = CSWsendmail.i.sol8 CSWsendmail.i.sol9 CSWsendmail.i.sol10 + DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 i.sol8 i.sol9 i.sol10 +DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) @@ -35,16 +38,20 @@ REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils ARCHALL_CSWsendmailcommon = 1 SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel -PROTOTYPE_FILTER = (awk \ - '$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ + +PROTOTYPE_FILTER = awk \ + '$$$$2 ~/i.sol8/ { next } \ + $$$$2 ~/i.sol9/ { next } \ + $$$$2 ~/i.sol10/ { next } \ + $$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ - { print }') -PROTOTYPE_FILTER += (fgrep -v "i.sol8";echo "i i.sol8=\$$$$WORKDIR_FIRSTMOD/i.sol8") -PROTOTYPE_FILTER += (fgrep -v "i.sol9";echo "i i.sol9=\$$$$WORKDIR_FIRSTMOD/i.sol9") -PROTOTYPE_FILTER += (fgrep -v "i.sol10";echo "i i.sol10=\$$$$WORKDIR_FIRSTMOD/i.sol10") + { print } \ + END { { print "i i.sol8=CSWsendmail.i.sol8" } \ + { print "i i.sol9=CSWsendmail.i.sol9" } \ + { print "i i.sol10=CSWsendmail.i.sol10" } } ' PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* PKGFILES_CSWsendmailcommon += .*$(mandir)/.* @@ -56,16 +63,16 @@ # patch away GNUism PATCHFILES = patch-CC-M.m4 -CONFIGURE_SCRIPTS = custom -BUILD_SCRIPTS = custom -TEST_SCRIPTS = custom -INSTALL_SCRIPTS = custom +CONFIGURE_SCRIPTS = custom +BUILD_SCRIPTS = custom +TEST_SCRIPTS = custom +INSTALL_SCRIPTS = custom EXTRA_MERGE_SCRIPTS = OS include gar/category.mk ADMSCRIPTS = preremove preinstall space depend i.sol8 i.sol9 i.sol10 -SOLVER = sol$(shell uname -r |sed 's/5\.//') +SOLVER = sol$(shell uname -r |sed 's/5\.//') PLATFORM = $(shell if [ `uname -i` = "i86pc" ] ; then echo i86pc ; else echo sun4 ; fi ) OBJDIR = $(WORKDIR)/$(DISTNAME)/obj.SunOS.$(GAROSREL).$(PLATFORM) LIBFILES = sendmail/sendmail mail.local/mail.local smrsh/smrsh rmail/rmail Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,3 +1,6 @@ +27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 +24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 +b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-08 01:47:50 UTC (rev 5935) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-08 01:47:50 UTC (rev 5935) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-08 01:47:50 UTC (rev 5935) @@ -0,0 +1,23 @@ +# PKGINST parameter provided by installation services +# Move the Solaris 9 version specific files to the base directory. +# The files specific to Solaris release are: +# bin/vacation +# sbin/editmap +# sbin/mailstats +# sbin/makemap +# sbin/praliases +# lib/mail.local +# lib/sendmail +# lib/smrsh +# +echo "Installing class ." +while read src dest +do + # Keep pkgadd happy by copying the file as defined + /usr/bin/cp $src $dest || exit 2 + # Copy the version specific file to the original name + dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 + echo $dest2 + /usr/bin/cp $src $dest2 || exit 2 +done +exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol10 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol10 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol8 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol8 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 Deleted: csw/mgar/pkg/sendmail/trunk/files/i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/i.sol9 2009-08-08 01:30:50 UTC (rev 5934) +++ csw/mgar/pkg/sendmail/trunk/files/i.sol9 2009-08-08 01:47:50 UTC (rev 5935) @@ -1,23 +0,0 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh -# -echo "Installing class ." -while read src dest -do - # Keep pkgadd happy by copying the file as defined - /usr/bin/cp $src $dest || exit 2 - # Copy the version specific file to the original name - dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 - echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 -done -exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 8 04:12:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:12:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[5936] csw/mgar/pkg/cpan/IPC-Cmd/trunk Message-ID: Revision: 5936 http://gar.svn.sourceforge.net/gar/?rev=5936&view=rev Author: skayser Date: 2009-08-08 02:12:20 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/IPC-Cmd: switched to mGAR v2, version bump to 0.46 Modified Paths: -------------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/Makefile csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IPC-Cmd/trunk/ Property changes on: csw/mgar/pkg/cpan/IPC-Cmd/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/IPC-Cmd/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/Makefile 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/Makefile 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,5 +1,5 @@ GARNAME = IPC-Cmd -GARVERSION = 0.36 +GARVERSION = 0.46 CATEGORIES = cpan AUTHOR = KANE @@ -9,11 +9,16 @@ independent but have them still work. endef -DISTFILES += $(call admfiles,CSWpmipccmd,depend prototype) +PACKAGES = CSWpmipccmd +CATALOGNAME = pm_ipccmd +ARCHALL = 1 -DEPENDS += cpan/Params-Check -DEPENDS += cpan/Module-Load-Conditional -DEPENDS += cpan/Locale-Maketext-Simple -DEPENDS += cpan/IPC-Run +REQUIRED_PKGS = CSWpmlclemktxtsimple CSWpmmodloadcond CSWpmprmscheck include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/checksums 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,4 +1 @@ -2d51ca48e5315eb900b656a00734864e download/CSWpmipccmd.gspec -37058b1448f8d0426fc6e3819f75a0ef download/CSWpmipccmd.depend -f3a7041bd33a6a0fbfd59c57af4956a9 download/CSWpmipccmd.prototype -56c6a27022ba5ebc2701364313f751b9 download/IPC-Cmd-0.36.tar.gz +0e35c075e6a4a4d097ead72e7c3b96f0 download/IPC-Cmd-0.46.tar.gz Deleted: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.depend 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,3 +0,0 @@ -P CSWpmlclemktxtsimple pm_lclemktxtsimple - simple interface to Locale::Maketext::Lexicon -P CSWpmmodloadcond pm_modloadcond - Query module informationand load at runtime -P CSWpmprmscheck pm_prmscheck - A generic input parsing/checking mechanism. Deleted: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.gspec 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,10 +0,0 @@ -%var bitname pm_ipccmd -%var pkgname CSWpmipccmd -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype 2009-08-08 01:47:50 UTC (rev 5935) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/CSWpmipccmd.prototype 2009-08-08 02:12:20 UTC (rev 5936) @@ -1,14 +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/IPC/Cmd 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IPC/Cmd/.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/IPC::Cmd.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/IPC 0755 root bin -f none /opt/csw/share/perl/csw/IPC/Cmd.pm 0444 root bin Added: csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/IPC-Cmd/trunk/files/changelog.CSW 2009-08-08 02:12:20 UTC (rev 5936) @@ -0,0 +1,5 @@ +pm_ipccmd (0.46,REV=2009.08.08) + + * Adopted and updated to 0.46 + + -- Sebastian Kayser Sat, 8 Aug 2009 03:14:26 +0200 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 Aug 8 04:24:35 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:24:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5937] csw/mgar/pkg/sudo/trunk Message-ID: Revision: 5937 http://gar.svn.sourceforge.net/gar/?rev=5937&view=rev Author: valholla Date: 2009-08-08 02:24:35 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update to 1.7.2p1 Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile csw/mgar/pkg/sudo/trunk/checksums Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:12:20 UTC (rev 5936) +++ csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:24:35 UTC (rev 5937) @@ -1,7 +1,11 @@ GARNAME = sudo -GARVERSION = 1.7.1 +GARVERSION = 1.7.2 CATEGORIES = utils +RELEASE = p1 +DISTVERSION = $(GARVERSION)$(RELEASE) +DISTNAME = $(GARNAME)-$(DISTVERSION) + DESCRIPTION = Provides limited super user privileges define BLURB Sudo (superuser do) allows a system administrator to give certain users (or @@ -11,7 +15,7 @@ endef MASTER_SITES = ftp://ftp.sudo.ws/pub/sudo/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz PATCHFILES = install.diff # We define upstream file regex so we can be notifed of new @@ -20,7 +24,6 @@ PACKAGES = CSWsudo CSWsudo-common -BUILD64 = 1 CATALOGNAME_CSWsudo = sudo SPKG_DESC_CSWsudo = $(DESCRIPTION) SPKG_SOURCEURL_CSWsudo = http://www.sudo.ws @@ -38,6 +41,7 @@ CONFIGURE_ARGS += --with-logging=both CONFIGURE_ARGS += --with-ignore-dot CONFIGURE_ARGS += --with-env-editor +CONFIGURE_ARGS += --with-project TEST_TARGET = check FIXCONFIG_DIRS = $(DESTDIR)$(libexecdir) @@ -58,3 +62,6 @@ @( cd $(PKGROOT)$(bindir); \ gfind . -type f -name sudo\* -exec gchmod 4755 {} \; ) @$(MAKECOOKIE) + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + Modified: csw/mgar/pkg/sudo/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo/trunk/checksums 2009-08-08 02:12:20 UTC (rev 5936) +++ csw/mgar/pkg/sudo/trunk/checksums 2009-08-08 02:24:35 UTC (rev 5937) @@ -1,3 +1,3 @@ 955d99eda1432c7b7e00d98b91e35a79 download/CSWsudo-common.postinstall 157b2e5e38ca54eb36e0364706bd0292 download/install.diff -af672524b2c854a67612bf4c743f58b8 download/sudo-1.7.1.tar.gz +4449d466a774f5ce401c9c0e3866c026 download/sudo-1.7.2p1.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 Sat Aug 8 04:26:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:26:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[5938] csw/mgar/pkg/cpan/Log-Message/trunk Message-ID: Revision: 5938 http://gar.svn.sourceforge.net/gar/?rev=5938&view=rev Author: skayser Date: 2009-08-08 02:26:06 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Log-Message: switched to mGAR v2, version bump to 0.02 Modified Paths: -------------- csw/mgar/pkg/cpan/Log-Message/trunk/Makefile csw/mgar/pkg/cpan/Log-Message/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Log-Message/trunk/ Property changes on: csw/mgar/pkg/cpan/Log-Message/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/Log-Message/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/Makefile 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/Makefile 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,9 +1,9 @@ GARNAME = Log-Message -GARVERSION = 0.01 +GARVERSION = 0.02 CATEGORIES = cpan AUTHOR = KANE -DESCRIPTION = Generic message storage mechanism. +DESCRIPTION = A generic message storage mechanism define BLURB Log::Message is a generic message storage mechanism. It allows you to store messages on a stack -- either shared or private -- and assign meta-data to @@ -13,9 +13,16 @@ (for example, log it, or die with it) endef -DISTFILES += $(call admfiles,CSWpmlogmessage,depend prototype) +PACKAGES = CSWpmlogmessage +CATALOGNAME = pm_logmessage +ARCHALL = 1 -DEPENDS += cpan/Params-Check -DEPENDS += cpan/Locale-Maketext-Simple +REQUIRED_PKGS = CSWpmlclemktxtsimple CSWpmprmscheck CSWpmmodload include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Log-Message/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/checksums 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/checksums 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,4 +1 @@ -5646fd7e2e86044a7eefdd8604265386 download/CSWpmlogmessage.gspec -9e746d6590ee485748161b97fbc13586 download/CSWpmlogmessage.depend -d1ab71d0f29955c3f70e126787164460 download/CSWpmlogmessage.prototype -f04298e81488a5a39930fd417d47656e download/Log-Message-0.01.tar.gz +fbdd7889a0f6027c79e43c6b8ba3d992 download/Log-Message-0.02.tar.gz Deleted: csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.depend 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,3 +0,0 @@ -P CSWpmlclemktxtsimple pm_lclemktxtsimple - simple interface to Locale::Maketext::Lexicon -P CSWpmmodload pm_modload - Runtime require of both modules and files -P CSWpmprmscheck pm_prmscheck - A generic input parsing/checking mechanism. Deleted: csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.gspec 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,10 +0,0 @@ -%var bitname pm_logmessage -%var pkgname CSWpmlogmessage -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype 2009-08-08 02:24:35 UTC (rev 5937) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/CSWpmlogmessage.prototype 2009-08-08 02:26:06 UTC (rev 5938) @@ -1,22 +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/Log 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Log/Message 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Log/Message/.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/Log::Message.3perl 0444 root bin -f none /opt/csw/share/man/man3/Log::Message::Config.3perl 0444 root bin -f none /opt/csw/share/man/man3/Log::Message::Handlers.3perl 0444 root bin -f none /opt/csw/share/man/man3/Log::Message::Item.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/Log 0755 root bin -d none /opt/csw/share/perl/csw/Log/Message 0755 root bin -f none /opt/csw/share/perl/csw/Log/Message.pm 0444 root bin -f none /opt/csw/share/perl/csw/Log/Message/Config.pm 0444 root bin -f none /opt/csw/share/perl/csw/Log/Message/Handlers.pm 0444 root bin -f none /opt/csw/share/perl/csw/Log/Message/Item.pm 0444 root bin Added: csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Log-Message/trunk/files/changelog.CSW 2009-08-08 02:26:06 UTC (rev 5938) @@ -0,0 +1,5 @@ +pm_logmessage (0.02,REV=2009.08.08) + + * Adopted and updated to 0.02 + + -- Sebastian Kayser Sat, 8 Aug 2009 04:24:10 +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 Sat Aug 8 04:33:48 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:33:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5939] csw/mgar/pkg/cpan/Log-Message-Simple/trunk Message-ID: Revision: 5939 http://gar.svn.sourceforge.net/gar/?rev=5939&view=rev Author: skayser Date: 2009-08-08 02:33:48 +0000 (Sat, 08 Aug 2009) Log Message: ----------- cpan/Log-Message-Simple: switched to mGAR v2, version bump to 0.04 Modified Paths: -------------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/Makefile csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW Removed Paths: ------------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/ Property changes on: csw/mgar/pkg/cpan/Log-Message-Simple/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/Log-Message-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/Makefile 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/Makefile 2009-08-08 02:33:48 UTC (rev 5939) @@ -1,16 +1,24 @@ GARNAME = Log-Message-Simple -GARVERSION = 0.01 +GARVERSION = 0.04 CATEGORIES = cpan AUTHOR = KANE -DESCRIPTION = Standardized logging facilities using the Log::Message module. +DESCRIPTION = Standardized logging facilities using the Log::Message module define BLURB This module provides standardized logging facilities using the Log::Message module. endef -DISTFILES += $(call admfiles,CSWpmlogmsgsimple,depend prototype) +PACKAGES = CSWpmlogmsgsimple +CATALOGNAME = pm_logmsgsimple +ARCHALL = 1 -DEPENDS += cpan/Log-Message +REQUIRED_PKGS = CSWpmlogmessage include gar/category.mk + +post-install-modulated: DOCDEST=$(DESTDIR)$(docdir)/$(CATALOGNAME) +post-install-modulated: + @ginstall -d $(DOCDEST) + @cp $(FILEDIR)/changelog.CSW $(DOCDEST) + @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/checksums 2009-08-08 02:33:48 UTC (rev 5939) @@ -1,4 +1 @@ -1dc5ec3822e3b3156128d30bff62c4bf download/CSWpmlogmsgsimple.gspec -463ea0af707c3af472a83812c6ba8f4d download/CSWpmlogmsgsimple.depend -ba55c2be6f2414813263a8143a141891 download/CSWpmlogmsgsimple.prototype -0c60795da495f6a79d09362e8b4f0061 download/Log-Message-Simple-0.01.tar.gz +29e42e6f2f43592a74fed779bd11c1e6 download/Log-Message-Simple-0.04.tar.gz Deleted: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.depend 2009-08-08 02:33:48 UTC (rev 5939) @@ -1 +0,0 @@ -P CSWpmlogmessage pm_logmessage - Generic message storage mechanism. Deleted: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.gspec 2009-08-08 02:33:48 UTC (rev 5939) @@ -1,10 +0,0 @@ -%var bitname pm_logmsgsimple -%var pkgname CSWpmlogmsgsimple -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module is copyright (c) 2002 Jos Boumans . All -rights reserved. - -This library is free software; you may redistribute and/or modify it -under the same terms as Perl itself. Deleted: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype 2009-08-08 02:26:06 UTC (rev 5938) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/CSWpmlogmsgsimple.prototype 2009-08-08 02:33:48 UTC (rev 5939) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Log/Message 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Log/Message/Simple 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Log/Message/Simple/.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/Log::Message::Simple.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/Log/Message 0755 root bin -f none /opt/csw/share/perl/csw/Log/Message/Simple.pm 0444 root bin Added: csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW =================================================================== --- csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW (rev 0) +++ csw/mgar/pkg/cpan/Log-Message-Simple/trunk/files/changelog.CSW 2009-08-08 02:33:48 UTC (rev 5939) @@ -0,0 +1,5 @@ +pm_logmsgsimple (0.04,REV=2009.08.08) + + * Adopted and updated to 0.04 + + -- Sebastian Kayser Sat, 8 Aug 2009 04:28:48 +0200 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 Aug 8 04:37:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:37:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5940] csw/mgar/pkg/sudo/trunk/Makefile Message-ID: Revision: 5940 http://gar.svn.sourceforge.net/gar/?rev=5940&view=rev Author: valholla Date: 2009-08-08 02:37:51 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix --with-project not to compile for Sol8 Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:33:48 UTC (rev 5939) +++ csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 02:37:51 UTC (rev 5940) @@ -41,7 +41,11 @@ CONFIGURE_ARGS += --with-logging=both CONFIGURE_ARGS += --with-ignore-dot CONFIGURE_ARGS += --with-env-editor -CONFIGURE_ARGS += --with-project +CONFIGURE_ARGS += --disable-path-info +CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog +ifneq ($(GAROSREL),5.8) + CONFIGURE_ARGS += --with-project +endif TEST_TARGET = check FIXCONFIG_DIRS = $(DESTDIR)$(libexecdir) 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 Aug 8 04:53:48 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:53:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5941] csw/mgar/pkg/sudo_ldap/trunk/Makefile Message-ID: Revision: 5941 http://gar.svn.sourceforge.net/gar/?rev=5941&view=rev Author: valholla Date: 2009-08-08 02:53:48 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update for --with-project Modified Paths: -------------- csw/mgar/pkg/sudo_ldap/trunk/Makefile Modified: csw/mgar/pkg/sudo_ldap/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 02:37:51 UTC (rev 5940) +++ csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 02:53:48 UTC (rev 5941) @@ -1,7 +1,11 @@ GARNAME = sudo -GARVERSION = 1.7.1 +GARVERSION = 1.7.2 CATEGORIES = utils +RELEASE = p1 +DISTVERSION = $(GARVERSION)$(RELEASE) +DISTNAME = $(GARNAME)-$(DISTVERSION) + DESCRIPTION = Provides limited super user privileges (LDAP Enabled) define BLURB Sudo (superuser do) allows a system administrator to give certain users (or @@ -11,7 +15,7 @@ endef MASTER_SITES = ftp://ftp.sudo.ws/pub/sudo/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(DISTVERSION).tar.gz PATCHFILES = install.diff # We define upstream file regex so we can be notifed of new @@ -25,7 +29,6 @@ SPKG_SOURCEURL_CSWsudoldap = http://www.sudo.ws REQUIRED_PKGS_CSWsudoldap = CSWsudo-common CSWggettextrt CSWoldaprt -BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-pam CONFIGURE_ARGS += --with-logging=both @@ -33,7 +36,13 @@ CONFIGURE_ARGS += --with-env-editor CONFIGURE_ARGS += --with-ldap=$(prefix) CONFIGURE_ARGS += --with-ldap-conf-file=$(sysconfdir)/ldap.conf +CONFIGURE_ARGS += --disable-path-info +CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog +ifneq ($(GAROSREL),5.8) + CONFIGURE_ARGS += --with-project +endif + TEST_TARGET = check include gar/category.mk @@ -45,3 +54,6 @@ @( cd $(DESTDIR)$(bindir) ; grm sudoedit ) @( cd $(DESTDIR)$(bindir) ; gchmod 4755 sudo.ldap ) @$(MAKECOOKIE) + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From valholla at users.sourceforge.net Sat Aug 8 04:54:46 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 02:54:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[5942] csw/mgar/pkg/sudo_ldap/trunk/checksums Message-ID: Revision: 5942 http://gar.svn.sourceforge.net/gar/?rev=5942&view=rev Author: valholla Date: 2009-08-08 02:54:46 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update checksums Modified Paths: -------------- csw/mgar/pkg/sudo_ldap/trunk/checksums Modified: csw/mgar/pkg/sudo_ldap/trunk/checksums =================================================================== --- csw/mgar/pkg/sudo_ldap/trunk/checksums 2009-08-08 02:53:48 UTC (rev 5941) +++ csw/mgar/pkg/sudo_ldap/trunk/checksums 2009-08-08 02:54:46 UTC (rev 5942) @@ -1,2 +1,2 @@ 157b2e5e38ca54eb36e0364706bd0292 download/install.diff -af672524b2c854a67612bf4c743f58b8 download/sudo-1.7.1.tar.gz +4449d466a774f5ce401c9c0e3866c026 download/sudo-1.7.2p1.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 Sat Aug 8 05:06:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:06:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[5943] csw/mgar/pkg/sudo_ldap/trunk/Makefile Message-ID: Revision: 5943 http://gar.svn.sourceforge.net/gar/?rev=5943&view=rev Author: valholla Date: 2009-08-08 03:06:16 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix ifndef Modified Paths: -------------- csw/mgar/pkg/sudo_ldap/trunk/Makefile Modified: csw/mgar/pkg/sudo_ldap/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 02:54:46 UTC (rev 5942) +++ csw/mgar/pkg/sudo_ldap/trunk/Makefile 2009-08-08 03:06:16 UTC (rev 5943) @@ -38,7 +38,7 @@ CONFIGURE_ARGS += --with-ldap-conf-file=$(sysconfdir)/ldap.conf CONFIGURE_ARGS += --disable-path-info CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog -ifneq ($(GAROSREL),5.8) +ifneq ($(shell uname -r),5.8) CONFIGURE_ARGS += --with-project 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 Sat Aug 8 05:07:36 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:07:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5944] csw/mgar/pkg/sudo/trunk/Makefile Message-ID: Revision: 5944 http://gar.svn.sourceforge.net/gar/?rev=5944&view=rev Author: valholla Date: 2009-08-08 03:07:35 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix ifndef Modified Paths: -------------- csw/mgar/pkg/sudo/trunk/Makefile Modified: csw/mgar/pkg/sudo/trunk/Makefile =================================================================== --- csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 03:06:16 UTC (rev 5943) +++ csw/mgar/pkg/sudo/trunk/Makefile 2009-08-08 03:07:35 UTC (rev 5944) @@ -43,7 +43,7 @@ CONFIGURE_ARGS += --with-env-editor CONFIGURE_ARGS += --disable-path-info CONFIGURE_ARGS += --with-logpath=/var/opt/csw/sudo/logs/sudolog -ifneq ($(GAROSREL),5.8) +ifneq ($(shell uname -r),5.8) CONFIGURE_ARGS += --with-project 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 Sat Aug 8 05:15:38 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:15:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5945] csw/mgar/pkg/squirrelmail/trunk Message-ID: Revision: 5945 http://gar.svn.sourceforge.net/gar/?rev=5945&view=rev Author: valholla Date: 2009-08-08 03:15:38 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update to 1.4.19 Modified Paths: -------------- csw/mgar/pkg/squirrelmail/trunk/Makefile csw/mgar/pkg/squirrelmail/trunk/checksums Modified: csw/mgar/pkg/squirrelmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:07:35 UTC (rev 5944) +++ csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:15:38 UTC (rev 5945) @@ -1,5 +1,5 @@ GARNAME = squirrelmail -GARVERSION = 1.4.17 +GARVERSION = 1.4.19 CATEGORIES = apps DESCRIPTION = A standards-based webmail package written in PHP. Modified: csw/mgar/pkg/squirrelmail/trunk/checksums =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/checksums 2009-08-08 03:07:35 UTC (rev 5944) +++ csw/mgar/pkg/squirrelmail/trunk/checksums 2009-08-08 03:15:38 UTC (rev 5945) @@ -1,4 +1,4 @@ 03fd1d67c03c50575a6ab429b8a3e684 download/CSWsquirrelmail.postinstall e3cf4a632ae736e123d758b331fcc008 download/CSWsquirrelmail.preremove b7a712462d4a1438159e764697d32d45 download/httpd-squirrelmail.conf.CSW -6ff0df8ae0e7f13418ed37ea1c93f6f3 download/squirrelmail-1.4.17.tar.bz2 +b7c5ebf0a57fe3511042a740ff1b5710 download/squirrelmail-1.4.19.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 Sat Aug 8 05:21:16 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:21:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[5946] csw/mgar/pkg/squirrelmail/trunk/Makefile Message-ID: Revision: 5946 http://gar.svn.sourceforge.net/gar/?rev=5946&view=rev Author: valholla Date: 2009-08-08 03:21:16 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix license location Modified Paths: -------------- csw/mgar/pkg/squirrelmail/trunk/Makefile Modified: csw/mgar/pkg/squirrelmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:15:38 UTC (rev 5945) +++ csw/mgar/pkg/squirrelmail/trunk/Makefile 2009-08-08 03:21:16 UTC (rev 5946) @@ -13,7 +13,7 @@ MIME support, address books, and folder manipulation. endef -LICENSE = COPYING +LICENSE = doc/COPYING ARCHALL = 1 MASTER_SITES = $(SF_MIRRORS) 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 Aug 8 05:39:18 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:39:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5947] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 5947 http://gar.svn.sourceforge.net/gar/?rev=5947&view=rev Author: valholla Date: 2009-08-08 03:39:18 +0000 (Sat, 08 Aug 2009) Log Message: ----------- filter out charset.alias and setuid root on */gpg Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 03:21:16 UTC (rev 5946) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 03:39:18 UTC (rev 5947) @@ -35,13 +35,12 @@ CONFIGURE_ARGS += --enable-threads=solaris CONFIGURE_ARGS += --disable-asm +EXTRA_MERGE_EXCLUDE_FILES += .*/charset.alias +PROTOTYPE_FILTER = awk ' $$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } ' + REQUIRED_PKGS_CSWgnupg = CSWbzip2 CSWcurlrt CSWggettextrt CSWiconv REQUIRED_PKGS_CSWgnupg += CSWoldaprt CSWreadline CSWzlib TEST_TARGET = check -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~ /\/opt\/csw\/bin\/gpg$$$$/ { $$$$4 = "4755" } \ - { print }' - 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 Aug 8 05:40:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 03:40:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5948] csw/mgar/pkg/gnupg/trunk/ Message-ID: Revision: 5948 http://gar.svn.sourceforge.net/gar/?rev=5948&view=rev Author: valholla Date: 2009-08-08 03:40:48 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix ignored directories Property Changed: ---------------- csw/mgar/pkg/gnupg/trunk/ Property changes on: csw/mgar/pkg/gnupg/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 Sat Aug 8 06:05:35 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 04:05:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5949] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 5949 http://gar.svn.sourceforge.net/gar/?rev=5949&view=rev Author: valholla Date: 2009-08-08 04:05:35 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix typo in prototype_filter Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 03:40:48 UTC (rev 5948) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 04:05:35 UTC (rev 5949) @@ -36,7 +36,8 @@ CONFIGURE_ARGS += --disable-asm EXTRA_MERGE_EXCLUDE_FILES += .*/charset.alias -PROTOTYPE_FILTER = awk ' $$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } ' +PROTOTYPE_FILTER = awk '$$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } + { print }' REQUIRED_PKGS_CSWgnupg = CSWbzip2 CSWcurlrt CSWggettextrt CSWiconv REQUIRED_PKGS_CSWgnupg += CSWoldaprt CSWreadline CSWzlib 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 Aug 8 06:06:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 04:06:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5950] csw/mgar/pkg/gnupg/trunk/Makefile Message-ID: Revision: 5950 http://gar.svn.sourceforge.net/gar/?rev=5950&view=rev Author: valholla Date: 2009-08-08 04:06:21 +0000 (Sat, 08 Aug 2009) Log Message: ----------- fix typo in prototype_filter Modified Paths: -------------- csw/mgar/pkg/gnupg/trunk/Makefile Modified: csw/mgar/pkg/gnupg/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 04:05:35 UTC (rev 5949) +++ csw/mgar/pkg/gnupg/trunk/Makefile 2009-08-08 04:06:21 UTC (rev 5950) @@ -36,8 +36,7 @@ CONFIGURE_ARGS += --disable-asm EXTRA_MERGE_EXCLUDE_FILES += .*/charset.alias -PROTOTYPE_FILTER = awk '$$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } - { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~/\/gpg$$$$/ { $$$$4 = 4755 } { print }' REQUIRED_PKGS_CSWgnupg = CSWbzip2 CSWcurlrt CSWggettextrt CSWiconv REQUIRED_PKGS_CSWgnupg += CSWoldaprt CSWreadline CSWzlib 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 Aug 8 07:28:22 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Sat, 08 Aug 2009 05:28:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[5951] csw/mgar/pkg/gcc4/trunk/Makefile Message-ID: Revision: 5951 http://gar.svn.sourceforge.net/gar/?rev=5951&view=rev Author: valholla Date: 2009-08-08 05:28:21 +0000 (Sat, 08 Aug 2009) Log Message: ----------- update to 4.4.1 Modified Paths: -------------- csw/mgar/pkg/gcc4/trunk/Makefile Modified: csw/mgar/pkg/gcc4/trunk/Makefile =================================================================== --- csw/mgar/pkg/gcc4/trunk/Makefile 2009-08-08 04:06:21 UTC (rev 5950) +++ csw/mgar/pkg/gcc4/trunk/Makefile 2009-08-08 05:28:21 UTC (rev 5951) @@ -1,5 +1,5 @@ GARNAME = gcc -GARVERSION = 4.3.3 +GARVERSION = 4.4.1 CATEGORIES = lang DESCRIPTION = The GNU Compiler Collection 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 Sun Aug 9 22:10:58 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 09 Aug 2009 20:10:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[5952] csw/mgar/pkg/munin/trunk/files/CSWmuninmaster. postinstall Message-ID: Revision: 5952 http://gar.svn.sourceforge.net/gar/?rev=5952&view=rev Author: j_arndt Date: 2009-08-09 20:10:58 +0000 (Sun, 09 Aug 2009) Log Message: ----------- munin: fixed typo in postinstall script Modified Paths: -------------- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-08 05:28:21 UTC (rev 5951) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-09 20:10:58 UTC (rev 5952) @@ -21,7 +21,7 @@ (3) Add the following line to your Apache configuration - "Normal" mode: Include /etc/opt/csw/munin/apache.conf + "Normal" mode: Include /etc/opt/csw/munin/apache/apache.conf CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf (4) Add the user your webserver is running under (nobody for Apache) to 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 Sun Aug 9 22:16:18 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 09 Aug 2009 20:16:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[5953] csw/mgar/pkg/munin/trunk/checksums Message-ID: Revision: 5953 http://gar.svn.sourceforge.net/gar/?rev=5953&view=rev Author: j_arndt Date: 2009-08-09 20:16:18 +0000 (Sun, 09 Aug 2009) Log Message: ----------- munin: checksums modified Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-09 20:10:58 UTC (rev 5952) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-09 20:16:18 UTC (rev 5953) @@ -1,4 +1,4 @@ -cfe000894b343d2f36f41195b1ac2365 download/CSWmuninmaster.postinstall +473a91d70e616194bdcfd85af8081e15 download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW 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 Aug 10 00:15:13 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 09 Aug 2009 22:15:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5954] csw/mgar/pkg/dbus/trunk/files/cswdbus Message-ID: Revision: 5954 http://gar.svn.sourceforge.net/gar/?rev=5954&view=rev Author: wbonnet Date: 2009-08-09 22:15:12 +0000 (Sun, 09 Aug 2009) Log Message: ----------- Remove config-file argument Modified Paths: -------------- csw/mgar/pkg/dbus/trunk/files/cswdbus Modified: csw/mgar/pkg/dbus/trunk/files/cswdbus =================================================================== --- csw/mgar/pkg/dbus/trunk/files/cswdbus 2009-08-09 20:16:18 UTC (rev 5953) +++ csw/mgar/pkg/dbus/trunk/files/cswdbus 2009-08-09 22:15:12 UTC (rev 5954) @@ -36,7 +36,7 @@ rm -f $DBUS_VAR_RUN_DIR/pid fi - /opt/csw/bin/dbus-daemon --system --config-file=/opt/csw/etc/dbus-1/system.conf + /opt/csw/bin/dbus-daemon --system err=$? if [ $err -ne 0 ]; then echo "dbus failed to start: error $err" 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 Aug 10 00:41:55 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 09 Aug 2009 22:41:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5955] csw/mgar/pkg/dbus/trunk/checksums Message-ID: Revision: 5955 http://gar.svn.sourceforge.net/gar/?rev=5955&view=rev Author: wbonnet Date: 2009-08-09 22:41:55 +0000 (Sun, 09 Aug 2009) Log Message: ----------- Update checksums Modified Paths: -------------- csw/mgar/pkg/dbus/trunk/checksums Modified: csw/mgar/pkg/dbus/trunk/checksums =================================================================== --- csw/mgar/pkg/dbus/trunk/checksums 2009-08-09 22:15:12 UTC (rev 5954) +++ csw/mgar/pkg/dbus/trunk/checksums 2009-08-09 22:41:55 UTC (rev 5955) @@ -2,5 +2,5 @@ 6e26e51243c4551ac222112edf67b5db download/CSWdbus.preinstall 00bb177908f6107ef2f6caa082475f34 download/CSWlibdbus.gspec 1d5dad88ae16c76d47398f8e9c2e09a0 download/CSWlibdbusdev.gspec -2c465012736d7810257573dff4cd04b7 download/cswdbus +9222a44088c837eba62822e330de713f download/cswdbus 39bd582c3b06a261cac44d4cab6fd60b download/dbus-1.2.12.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 Mon Aug 10 10:28:14 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Mon, 10 Aug 2009 08:28:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[5956] csw/mgar/pkg/apache2/trunk Message-ID: Revision: 5956 http://gar.svn.sourceforge.net/gar/?rev=5956&view=rev Author: idogan23 Date: 2009-08-10 08:28:14 +0000 (Mon, 10 Aug 2009) Log Message: ----------- apache2: bump version to 2.2.13 Modified Paths: -------------- csw/mgar/pkg/apache2/trunk/Makefile csw/mgar/pkg/apache2/trunk/checksums csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype Modified: csw/mgar/pkg/apache2/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2/trunk/Makefile 2009-08-09 22:41:55 UTC (rev 5955) +++ csw/mgar/pkg/apache2/trunk/Makefile 2009-08-10 08:28:14 UTC (rev 5956) @@ -1,5 +1,5 @@ GARNAME = httpd -GARVERSION = 2.2.12 +GARVERSION = 2.2.13 CATEGORIES = server DESCRIPTION = A high performance Unix-based HTTP server. Modified: csw/mgar/pkg/apache2/trunk/checksums =================================================================== --- csw/mgar/pkg/apache2/trunk/checksums 2009-08-09 22:41:55 UTC (rev 5955) +++ csw/mgar/pkg/apache2/trunk/checksums 2009-08-10 08:28:14 UTC (rev 5956) @@ -20,11 +20,11 @@ 0dd379f20ceb32fc77bb3a9bf045097f download/CSWapache2c.space 523b1f316a67090dfc08fe7506cb1aa0 download/CSWapache2rt.checkinstall 7546bc4336d9656e5b02e392264ce114 download/CSWapache2rt.gspec -a56d94b2ce92f4b18ff85af0b8e9bda0 download/CSWapache2rt.prototype +602b5bc079c3dbf441e9d0b4e1bc3fc7 download/CSWapache2rt.prototype 308836569bf0cc1be27ac45e3123e0c2 download/apu-iconv.diff a7467a756cbd980d4cfe3c2cfb6a9e35 download/config.layout b3c2086facecc3f898d29f3c8c74da11 download/cswapache2 -17f017b571f88aa60abebfe2945d7caf download/httpd-2.2.12.tar.gz +2803e35be6650f5b739e6e91faa824dd download/httpd-2.2.13.tar.gz d9d1abded665674800f3e5c246a4163f download/httpd-mpm.conf.CSW 796a7d5095ce154c274a2ccfd60ec753 download/httpd-ssl.conf.CSW f0941e5782e4bee45c2c95bd9460796b download/httpd.conf.CSW Modified: csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype =================================================================== --- csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype 2009-08-09 22:41:55 UTC (rev 5955) +++ csw/mgar/pkg/apache2/trunk/files/CSWapache2rt.prototype 2009-08-10 08:28:14 UTC (rev 5956) @@ -5,9 +5,9 @@ s none /opt/csw/apache2/bin/apr-config=apr-1-config s none /opt/csw/apache2/bin/apu-config=apu-1-config d none /opt/csw/apache2/lib 0755 root bin -s none /opt/csw/apache2/lib/libaprutil-1.so=libaprutil-1.so.0.3.8 -s none /opt/csw/apache2/lib/libaprutil-1.so.0=libaprutil-1.so.0.3.8 -s none /opt/csw/apache2/lib/libapr-1.so.0=libapr-1.so.0.3.7 +s none /opt/csw/apache2/lib/libaprutil-1.so=libaprutil-1.so.0.3.9 +s none /opt/csw/apache2/lib/libaprutil-1.so.0=libaprutil-1.so.0.3.9 +s none /opt/csw/apache2/lib/libapr-1.so.0=libapr-1.so.0.3.8 d none /opt/csw/apache2/lib/apr-util-1 0755 root bin s none /opt/csw/apache2/lib/apr-util-1/apr_dbd_sqlite3.so=apr_dbd_sqlite3-1.so s none /opt/csw/apache2/lib/apr-util-1/apr_ldap.so=apr_ldap-1.so @@ -16,9 +16,9 @@ f none /opt/csw/apache2/lib/apr-util-1/apr_dbd_sqlite3.a 0644 root bin f none /opt/csw/apache2/lib/apr-util-1/apr_ldap-1.so 0755 root bin d none /opt/csw/apache2/lib/pkgconfig 0755 root bin -f none /opt/csw/apache2/lib/libapr-1.so.0.3.7 0755 root bin -s none /opt/csw/apache2/lib/libapr-1.so=libapr-1.so.0.3.7 -f none /opt/csw/apache2/lib/libaprutil-1.so.0.3.8 0755 root bin +f none /opt/csw/apache2/lib/libapr-1.so.0.3.8 0755 root bin +s none /opt/csw/apache2/lib/libapr-1.so=libapr-1.so.0.3.8 +f none /opt/csw/apache2/lib/libaprutil-1.so.0.3.9 0755 root bin d none /opt/csw/apache2/man 0755 root bin d none /opt/csw/apache2/man/man8 0755 root bin f none /opt/csw/apache2/man/man8/apxs.8 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 11:00:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 09:00:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5957] csw/mgar/pkg/cpan/libwww-perl/trunk Message-ID: Revision: 5957 http://gar.svn.sourceforge.net/gar/?rev=5957&view=rev Author: dmichelsen Date: 2009-08-10 09:00:07 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/libwww-perl: Change dependency to IO-Compress and update to 5.830 Modified Paths: -------------- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile csw/mgar/pkg/cpan/libwww-perl/trunk/checksums Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-10 08:28:14 UTC (rev 5956) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-10 09:00:07 UTC (rev 5957) @@ -1,5 +1,5 @@ GARNAME = libwww-perl -GARVERSION = 5.826 +GARVERSION = 5.830 CATEGORIES = cpan AUTHOR = GAAS @@ -11,22 +11,12 @@ used. endef -#DISTFILES += $(call admfiles,CSWpmlibwww,) -DISTFILES += COPYING +DISTFILES = COPYING CATALOGNAME = pm_libwww PACKAGES = CSWpmlibwww ARCHALL = 1 -REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWpmcompresszlib CSWpmhtmlfmt CSWpmmimebase64 +REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWiocompress CSWpmhtmlfmt CSWpmmimebase64 -EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod - -DEPENDS += cpan/URI -DEPENDS += cpan/HTML-Parser -DEPENDS += cpan/Crypt-SSLeay -DEPENDS += cpan/Data-Dump - -CONFIGURE_ARGS = - include gar/category.mk Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-08-10 08:28:14 UTC (rev 5956) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/checksums 2009-08-10 09:00:07 UTC (rev 5957) @@ -1,2 +1,2 @@ d6d74a59bf794b8ffc8da8bbf1e4e15a download/COPYING -3f8e1922193b74ffb7d86efdadfbe865 download/libwww-perl-5.826.tar.gz +55049cd17e73c94bee3aee4b65b465c5 download/libwww-perl-5.830.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 Mon Aug 10 11:15:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 09:15:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[5958] csw/mgar/pkg/cpan/PDF-API2/trunk Message-ID: Revision: 5958 http://gar.svn.sourceforge.net/gar/?rev=5958&view=rev Author: dmichelsen Date: 2009-08-10 09:15:39 +0000 (Mon, 10 Aug 2009) Log Message: ----------- PDF-API2/trunk: Prepare for dependency to IO-Compress Modified Paths: -------------- csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile csw/mgar/pkg/cpan/PDF-API2/trunk/checksums Modified: csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile 2009-08-10 09:00:07 UTC (rev 5957) +++ csw/mgar/pkg/cpan/PDF-API2/trunk/Makefile 2009-08-10 09:15:39 UTC (rev 5958) @@ -3,24 +3,17 @@ CATEGORIES = cpan AUTHOR = AREIBENS -DESCRIPTION = create and modify PDF files +DESCRIPTION = Create and modify PDF files define BLURB A Perl Module Chain to faciliate the Creation and Modification of High-Quality "Portable Document Format (aka. PDF)" Files. endef +REQUIRED_PKGS = CSWiocompress + PACKAGES = CSWpmpdfapi2 CATALOGNAME = pm_pdfapi2 -ARCHALL_CSWpmpdfapi2 = 1 +ARCHALL = 1 -REQUIRED_PKGS_CSWpmpdfapi2 += CSWpmcompresszlib - -LICENSE = COPYING - include gar/category.mk - -post-extract: - @chmod o+r $(WORKSRC)/COPYING - @$(MAKECOOKIE) - Modified: csw/mgar/pkg/cpan/PDF-API2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PDF-API2/trunk/checksums 2009-08-10 09:00:07 UTC (rev 5957) +++ csw/mgar/pkg/cpan/PDF-API2/trunk/checksums 2009-08-10 09:15:39 UTC (rev 5958) @@ -1,2 +1 @@ -0771d40713b8d6a5c98635075ee6086b download/CSWpmpdfapi2.gspec 848fb727323390128cac85cc11f52de1 download/PDF-API2-0.73.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 Mon Aug 10 11:41:26 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 09:41:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[5959] csw/mgar/pkg/cpan/Archive-Zip/trunk Message-ID: Revision: 5959 http://gar.svn.sourceforge.net/gar/?rev=5959&view=rev Author: dmichelsen Date: 2009-08-10 09:41:26 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Archive-Zip: Update to new dependency IO-Compress Modified Paths: -------------- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile csw/mgar/pkg/cpan/Archive-Zip/trunk/checksums Modified: csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-10 09:15:39 UTC (rev 5958) +++ csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-10 09:41:26 UTC (rev 5959) @@ -17,13 +17,11 @@ streams inside the files. endef -DISTFILES = COPYING - PACKAGES = CSWpmarchivezip CATALOGNAME = pm_archivezip ARCHALL = 1 -REQUIRED_PKGS = CSWpmcompresszlib +REQUIRED_PKGS = CSWiocompress # 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/cpan/Archive-Zip/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Archive-Zip/trunk/checksums 2009-08-10 09:15:39 UTC (rev 5958) +++ csw/mgar/pkg/cpan/Archive-Zip/trunk/checksums 2009-08-10 09:41:26 UTC (rev 5959) @@ -1,2 +1 @@ 40153666e7538b410e001aa8a810e702 download/Archive-Zip-1.30.tar.gz -d706488da67bf9e146e07b0cc38f1c3f download/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 Mon Aug 10 13:47:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 11:47:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[5960] csw/mgar/pkg/cpan/version/trunk Message-ID: Revision: 5960 http://gar.svn.sourceforge.net/gar/?rev=5960&view=rev Author: dmichelsen Date: 2009-08-10 11:47:07 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/version: Update to 0.7701 Modified Paths: -------------- csw/mgar/pkg/cpan/version/trunk/Makefile csw/mgar/pkg/cpan/version/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.depend csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/version/trunk/ Property changes on: csw/mgar/pkg/cpan/version/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/version/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/version/trunk/Makefile 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/Makefile 2009-08-10 11:47:07 UTC (rev 5960) @@ -1,5 +1,5 @@ GARNAME = version -GARVERSION = 0.70 +GARVERSION = 0.7701 CATEGORIES = cpan AUTHOR = JPEACOCK @@ -10,6 +10,7 @@ 5.10.0. endef -DISTFILES += $(call admfiles,CSWpmversion,depend prototype) +PACKAGES = CSWpmversion +CATALOGNAME = pm_version include gar/category.mk Modified: csw/mgar/pkg/cpan/version/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/version/trunk/checksums 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/checksums 2009-08-10 11:47:07 UTC (rev 5960) @@ -1,4 +1 @@ -5cd9594b812425b324f0c2d70d2ec25f download/CSWpmversion.gspec -882cfc02f0fd6a7892b45bc34a8a9755 download/CSWpmversion.depend -2cf4fc14d3bc922474a9a575e3faaee3 download/CSWpmversion.prototype -cefd6fff47086339b20f0cdb52b0bd75 download/version-0.70.tar.gz +4ee228bb8254660b5f216af708a266cc download/version-0.7701.tar.gz Deleted: csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec =================================================================== --- csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.gspec 2009-08-10 11:47:07 UTC (rev 5960) @@ -1,6 +0,0 @@ -%var bitname pm_version -%var pkgname CSWpmversion -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -This module can be distributed under the same terms as Perl. -Copyright (C) 2004,2005,2006 John Peacock Deleted: csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype =================================================================== --- csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype 2009-08-10 09:41:26 UTC (rev 5959) +++ csw/mgar/pkg/cpan/version/trunk/files/CSWpmversion.prototype 2009-08-10 11:47:07 UTC (rev 5960) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/version 0755 root bin -f none /opt/csw/lib/perl/csw/auto/version/.packlist 0644 root bin -d none /opt/csw/lib/perl/csw/auto/version/vxs 0755 root bin -f none /opt/csw/lib/perl/csw/auto/version/vxs/vxs.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/version/vxs/vxs.so 0555 root bin -d none /opt/csw/lib/perl/csw/version 0755 root bin -f none /opt/csw/lib/perl/csw/version.pm 0444 root bin -f none /opt/csw/lib/perl/csw/version.pod 0444 root bin -f none /opt/csw/lib/perl/csw/version/vxs.pm 0444 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man3 0755 root bin -f none /opt/csw/share/man/man3/version.3 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 Mon Aug 10 13:57:05 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 11:57:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[5961] csw/mgar/pkg/cpan/Algorithm-Diff/trunk Message-ID: Revision: 5961 http://gar.svn.sourceforge.net/gar/?rev=5961&view=rev Author: dmichelsen Date: 2009-08-10 11:57:04 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Algorithm-Diff: Update to 1.1902 Modified Paths: -------------- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/Makefile csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.depend csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/ Property changes on: csw/mgar/pkg/cpan/Algorithm-Diff/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/Algorithm-Diff/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/Makefile 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/Makefile 2009-08-10 11:57:04 UTC (rev 5961) @@ -3,11 +3,14 @@ CATEGORIES = cpan AUTHOR = TYEMQ -DESCRIPTION = compute intelligent differences between two files/lists +DESCRIPTION = Compute intelligent differences between two files/lists define BLURB - Compute `intelligent' differences between two files / lists + Compute 'intelligent' differences between two files / lists endef -DISTFILES = $(call admfiles,CSWpmalgdiff,depend prototype) +PACKAGES = CSWpmalgdiff +CATALOGNAME = pm_algorithmdiff +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/checksums 2009-08-10 11:57:04 UTC (rev 5961) @@ -1,4 +1 @@ -91f4d5a9e41c2c405715ba6a3c6937bd download/CSWpmalgdiff.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmalgdiff.depend -e946ffdb62b964259723853222603cf5 download/CSWpmalgdiff.prototype ff3e17ae485f8adfb8857b183991fbce download/Algorithm-Diff-1.1902.tar.gz Deleted: csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.gspec 2009-08-10 11:57:04 UTC (rev 5961) @@ -1,9 +0,0 @@ -%var bitname pm_algorithmdiff -%var pkgname CSWpmalgdiff -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2000-2002 Ned Konz. 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/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype 2009-08-10 11:47:07 UTC (rev 5960) +++ csw/mgar/pkg/cpan/Algorithm-Diff/trunk/files/CSWpmalgdiff.prototype 2009-08-10 11:57:04 UTC (rev 5961) @@ -1,21 +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/Algorithm 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Algorithm/Diff 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Algorithm/Diff/.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/Algorithm::Diff.3perl 0444 root bin -f none /opt/csw/share/man/man3/Algorithm::DiffOld.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/Algorithm 0755 root bin -f none /opt/csw/share/perl/csw/Algorithm/Diff.pm 0444 root bin -f none /opt/csw/share/perl/csw/Algorithm/DiffOld.pm 0444 root bin -f none /opt/csw/share/perl/csw/Algorithm/cdiff.pl 0555 root bin -f none /opt/csw/share/perl/csw/Algorithm/diff.pl 0555 root bin -f none /opt/csw/share/perl/csw/Algorithm/diffnew.pl 0555 root bin -f none /opt/csw/share/perl/csw/Algorithm/htmldiff.pl 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 Mon Aug 10 14:03:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:03:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5962] csw/mgar/pkg/cpan/Algorithm-Annotate/trunk Message-ID: Revision: 5962 http://gar.svn.sourceforge.net/gar/?rev=5962&view=rev Author: dmichelsen Date: 2009-08-10 12:03:12 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Algorithm-Annotate: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/Makefile csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/ Property changes on: csw/mgar/pkg/cpan/Algorithm-Annotate/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/Algorithm-Annotate/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/Makefile 2009-08-10 11:57:04 UTC (rev 5961) +++ csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/Makefile 2009-08-10 12:03:12 UTC (rev 5962) @@ -3,14 +3,17 @@ CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = represent a series of changes in annotate form +DESCRIPTION = Represent a series of changes in annotate form define BLURB Algorithm::Annotate generates a list that is useful for generating output simliar to cvs annotate. endef -DISTFILES = $(call admfiles,CSWpmalgannotate,depend prototype) +REQUIRED_PKGS = CSWpmalgdiff -DEPENDS += cpan/Algorithm-Diff +PACKAGES = CSWpmalgannotate +CATALOGNAME = pm_algorithmannotate +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums 2009-08-10 11:57:04 UTC (rev 5961) +++ csw/mgar/pkg/cpan/Algorithm-Annotate/trunk/checksums 2009-08-10 12:03:12 UTC (rev 5962) @@ -1,4 +1 @@ -b4ba53cfa3106fcfc734624d77853209 download/CSWpmalgannotate.gspec -afb75d0c51760413788a9a9c2bacb889 download/CSWpmalgannotate.depend -26b7a1b4c7aea96dc843b3e3095cd1e6 download/CSWpmalgannotate.prototype 453395489640e28fc772944ef08d396b download/Algorithm-Annotate-0.10.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 Mon Aug 10 14:13:53 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:13:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5963] csw/mgar/pkg/cpan/YAML-Syck/trunk Message-ID: Revision: 5963 http://gar.svn.sourceforge.net/gar/?rev=5963&view=rev Author: dmichelsen Date: 2009-08-10 12:13:52 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/YAML-Syck: Update to 1.07 Modified Paths: -------------- csw/mgar/pkg/cpan/YAML-Syck/trunk/Makefile csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/YAML-Syck/trunk/ Property changes on: csw/mgar/pkg/cpan/YAML-Syck/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/YAML-Syck/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/YAML-Syck/trunk/Makefile 2009-08-10 12:03:12 UTC (rev 5962) +++ csw/mgar/pkg/cpan/YAML-Syck/trunk/Makefile 2009-08-10 12:13:52 UTC (rev 5963) @@ -1,5 +1,5 @@ GARNAME = YAML-Syck -GARVERSION = 0.82 +GARVERSION = 1.07 CATEGORIES = cpan AUTHOR = AUDREYT @@ -10,6 +10,9 @@ structures to YAML strings, and the other way around. endef -DISTFILES = $(call admfiles,CSWpmyamlsyck,prototype) +PACKAGES = CSWpmyamlsyck +CATALOGNAME = pm_yamlsyck +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums 2009-08-10 12:03:12 UTC (rev 5962) +++ csw/mgar/pkg/cpan/YAML-Syck/trunk/checksums 2009-08-10 12:13:52 UTC (rev 5963) @@ -1,3 +1 @@ -7a4a4b8b8d71a78868406b8b670e892c download/CSWpmyamlsyck.gspec -43c90997d6e8d645aea42bedd82dabc2 download/CSWpmyamlsyck.prototype -ebb765d22bc14bddab4f86a5ade249d9 download/YAML-Syck-0.82.tar.gz +410ef7e24185de2a04390e0543876cad download/YAML-Syck-1.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 Mon Aug 10 14:20:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:20:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5964] csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk Message-ID: Revision: 5964 http://gar.svn.sourceforge.net/gar/?rev=5964&view=rev Author: dmichelsen Date: 2009-08-10 12:20:20 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-via-dynamic: Update to 0.13 Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.depend csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/ Property changes on: csw/mgar/pkg/cpan/PerlIO-via-dynamic/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/PerlIO-via-dynamic/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/Makefile 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/Makefile 2009-08-10 12:20:20 UTC (rev 5964) @@ -1,15 +1,18 @@ GARNAME = PerlIO-via-dynamic -GARVERSION = 0.12 +GARVERSION = 0.13 CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = dynamic PerlIO layers +DESCRIPTION = Dynamic PerlIO layers define BLURB PerlIO::via::dynamic is used for creating dynamic PerlIO layers. It is useful when the behavior or the layer depends on variables. You should not use this module as via layer directly (ie :via(dynamic)). endef -DISTFILES = $(call admfiles,CSWpmperlioviadyn,depend prototype) +PACKAGES = CSWpmperlioviadyn +CATALOGNAME = pm_perlioviadyn +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/checksums 2009-08-10 12:20:20 UTC (rev 5964) @@ -1,4 +1 @@ -c9ffa8d9a13350e20c41463a55456dce download/CSWpmperlioviadyn.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmperlioviadyn.depend -f86c73344ee29443ea4e324652979f81 download/CSWpmperlioviadyn.prototype -2bbb9d61c3e8df006e8bede08ed5c9c1 download/PerlIO-via-dynamic-0.12.tar.gz +3715f57c346f0c185e24fbc8f580b33b download/PerlIO-via-dynamic-0.13.tar.gz Deleted: csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.gspec 2009-08-10 12:20:20 UTC (rev 5964) @@ -1,11 +0,0 @@ -%var bitname pm_perlioviadyn -%var pkgname CSWpmperlioviadyn -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2004 by Chia-liang Kao clkao at clkao.org. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype 2009-08-10 12:13:52 UTC (rev 5963) +++ csw/mgar/pkg/cpan/PerlIO-via-dynamic/trunk/files/CSWpmperlioviadyn.prototype 2009-08-10 12:20:20 UTC (rev 5964) @@ -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/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO/via 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO/via/dynamic 0755 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/via/dynamic/.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/PerlIO::via::dynamic.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/PerlIO 0755 root bin -d none /opt/csw/share/perl/csw/PerlIO/via 0755 root bin -f none /opt/csw/share/perl/csw/PerlIO/via/dynamic.pm 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 Mon Aug 10 14:27:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:27:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[5966] csw/mgar/pkg/cpan/IO-Digest/trunk Message-ID: Revision: 5966 http://gar.svn.sourceforge.net/gar/?rev=5966&view=rev Author: dmichelsen Date: 2009-08-10 12:27:36 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/IO-Digest: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/IO-Digest/trunk/Makefile csw/mgar/pkg/cpan/IO-Digest/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IO-Digest/trunk/ Property changes on: csw/mgar/pkg/cpan/IO-Digest/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-Digest/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/Makefile 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/Makefile 2009-08-10 12:27:36 UTC (rev 5966) @@ -3,15 +3,18 @@ CATEGORIES = cpan AUTHOR = CLKAO -DESCRIPTION = calculate digests while reading or writing +DESCRIPTION = Calculate digests while reading or writing define BLURB This module allows you to calculate digests while reading or writing file handles. This avoids the case you need to reread the same content to compute the digests after written a file. endef -DISTFILES = $(call admfiles,CSWpmiodigest,depend prototype) +REQUIRED_PKGS = pm_perlioviadyn -DEPENDS += cpan/PerlIO-via-dynamic +PACKAGES = CSWpmiodigest +CATALOGNAME = pm_iodigest +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IO-Digest/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/checksums 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/checksums 2009-08-10 12:27:36 UTC (rev 5966) @@ -1,4 +1 @@ -73bb29de3702e55936ab485a809e7934 download/CSWpmiodigest.gspec -4a1434a9bcd77b2aad4f85fac7324071 download/CSWpmiodigest.depend -4e1baeb4fcddf10dddb0e42e3e392d6a download/CSWpmiodigest.prototype 0448841e0559c2c19c7e8001ef087e26 download/IO-Digest-0.10.tar.gz Deleted: csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.depend 2009-08-10 12:27:36 UTC (rev 5966) @@ -1 +0,0 @@ -P CSWpmperlioviadyn pm_perlioviadyn - dynamic PerlIO layers Deleted: csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.gspec 2009-08-10 12:27:36 UTC (rev 5966) @@ -1,11 +0,0 @@ -%var bitname pm_iodigest -%var pkgname CSWpmiodigest -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2004 by Chia-liang Kao clkao at clkao.org. - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype =================================================================== --- csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype 2009-08-10 12:22:49 UTC (rev 5965) +++ csw/mgar/pkg/cpan/IO-Digest/trunk/files/CSWpmiodigest.prototype 2009-08-10 12:27:36 UTC (rev 5966) @@ -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/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/Digest 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IO/Digest/.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::Digest.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 0755 root bin -f none /opt/csw/share/perl/csw/IO/Digest.pm 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 Mon Aug 10 14:22:53 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:22:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[5965] csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk Message-ID: Revision: 5965 http://gar.svn.sourceforge.net/gar/?rev=5965&view=rev Author: dmichelsen Date: 2009-08-10 12:22:49 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-via-symlink: Move to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/ Property changes on: csw/mgar/pkg/cpan/PerlIO-via-symlink/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/PerlIO-via-symlink/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/Makefile 2009-08-10 12:20:20 UTC (rev 5964) +++ csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/Makefile 2009-08-10 12:22:49 UTC (rev 5965) @@ -9,6 +9,9 @@ the file handle. endef -DISTFILES = $(call admfiles,CSWpmperlioviasym,depend prototype) +PACKAGES = CSWpmperlioviasym +CATALOGNAME = pm_perlioviasym +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums 2009-08-10 12:20:20 UTC (rev 5964) +++ csw/mgar/pkg/cpan/PerlIO-via-symlink/trunk/checksums 2009-08-10 12:22:49 UTC (rev 5965) @@ -1,4 +1 @@ -ebe9480bf7785c75b3d9fee6b72a3461 download/CSWpmperlioviasym.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmperlioviasym.depend -375a501d668be713b141bbaad92a9ab1 download/CSWpmperlioviasym.prototype bf33533dba6a48eb459a15df15c8415f download/PerlIO-via-symlink-0.05.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 Mon Aug 10 14:35:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 12:35:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5967] csw/mgar/pkg/cpan Message-ID: Revision: 5967 http://gar.svn.sourceforge.net/gar/?rev=5967&view=rev Author: dmichelsen Date: 2009-08-10 12:35:44 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Digest: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Digest/ csw/mgar/pkg/cpan/Digest/branches/ csw/mgar/pkg/cpan/Digest/tags/ csw/mgar/pkg/cpan/Digest/trunk/ csw/mgar/pkg/cpan/Digest/trunk/Makefile csw/mgar/pkg/cpan/Digest/trunk/checksums csw/mgar/pkg/cpan/Digest/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Digest/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/Digest/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Digest/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Digest/trunk/Makefile 2009-08-10 12:35:44 UTC (rev 5967) @@ -0,0 +1,18 @@ +GARNAME = Digest +GARVERSION = 1.16 +CATEGORIES = cpan +AUTHOR = GAAS + +DESCRIPTION = A simple frontend module for autoloading of various Digest:: modules +define BLURB + This is just a simple frontend module for autoloading of various + Digest:: modules. It also provide documentation of the interface that + all Digest:: modules should provide. +endef + +PACKAGES = CSWpmdigest +CATALOGNAME = pm_digest + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Digest/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Digest/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Digest/trunk/checksums 2009-08-10 12:35:44 UTC (rev 5967) @@ -0,0 +1 @@ +df65b3c12785ff9bbf14521551f0268d download/Digest-1.16.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 Mon Aug 10 15:10:01 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:10:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[5968] csw/mgar/pkg/thunderbird/trunk/Makefile Message-ID: Revision: 5968 http://gar.svn.sourceforge.net/gar/?rev=5968&view=rev Author: wbonnet Date: 2009-08-10 13:10:00 +0000 (Mon, 10 Aug 2009) Log Message: ----------- Add dbus to depends Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-10 12:35:44 UTC (rev 5967) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-10 13:10:00 UTC (rev 5968) @@ -55,6 +55,7 @@ REQUIRED_PKGS_CSWthunderbird += CSWorbit2 REQUIRED_PKGS_CSWthunderbird += CSWpango REQUIRED_PKGS_CSWthunderbird += CSWzlib +REQUIRED_PKGS_CSWthunderbird += CSWdbus PATCHFILES = autoconf.mk.in.diff PATCHFILES += lber-int.h.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 Mon Aug 10 15:26:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:26:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5969] csw/mgar/pkg/cpan/PerlIO-eol/trunk Message-ID: Revision: 5969 http://gar.svn.sourceforge.net/gar/?rev=5969&view=rev Author: dmichelsen Date: 2009-08-10 13:26:34 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-eol: Update to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.depend csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/ Property changes on: csw/mgar/pkg/cpan/PerlIO-eol/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/PerlIO-eol/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:26:34 UTC (rev 5969) @@ -9,6 +9,9 @@ line ending. It works for both input and output handles. endef -DISTFILES = $(call admfiles,CSWpmperlioeol,depend prototype) +PACKAGES = CSWpmperlioeol +CATALOGNAME = pm_perlioeol +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/checksums 2009-08-10 13:26:34 UTC (rev 5969) @@ -1,4 +1 @@ -852586bfa8a27e778c3e6e34e203c762 download/CSWpmperlioeol.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmperlioeol.depend -eda9ef48cd4332c98cf01367c161d3df download/CSWpmperlioeol.prototype 7e11fb1cc3b2a65678714877ae361823 download/PerlIO-eol-0.13.tar.gz Copied: csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING (from rev 5839, csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec) =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/COPYING 2009-08-10 13:26:34 UTC (rev 5969) @@ -0,0 +1,6 @@ +Copyright 2004 by Autrijus Tang . + +All rights reserved. You can redistribute and/or modify +this bundle under the same terms as Perl itself. + +See . Deleted: csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.gspec 2009-08-10 13:26:34 UTC (rev 5969) @@ -1,10 +0,0 @@ -%var bitname pm_perlioeol -%var pkgname CSWpmperlioeol -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2004 by Autrijus Tang . - -All rights reserved. You can redistribute and/or modify -this bundle under the same terms as Perl itself. - -See . Deleted: csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype 2009-08-10 13:10:00 UTC (rev 5968) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/files/CSWpmperlioeol.prototype 2009-08-10 13:26:34 UTC (rev 5969) @@ -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/PerlIO 0755 root bin -f none /opt/csw/lib/perl/csw/PerlIO/eol.pm 0444 root bin -d none /opt/csw/lib/perl/csw/auto 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO 0755 root bin -d none /opt/csw/lib/perl/csw/auto/PerlIO/eol 0755 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/eol/.packlist 0644 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/eol/eol.bs 0444 root bin -f none /opt/csw/lib/perl/csw/auto/PerlIO/eol/eol.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/PerlIO::eol.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 Mon Aug 10 15:28:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:28:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5970] csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile Message-ID: Revision: 5970 http://gar.svn.sourceforge.net/gar/?rev=5970&view=rev Author: dmichelsen Date: 2009-08-10 13:28:24 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/PerlIO-eol: Remove ARCHALL, as there are binary parts in there Modified Paths: -------------- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile Modified: csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:26:34 UTC (rev 5969) +++ csw/mgar/pkg/cpan/PerlIO-eol/trunk/Makefile 2009-08-10 13:28:24 UTC (rev 5970) @@ -12,6 +12,4 @@ PACKAGES = CSWpmperlioeol CATALOGNAME = pm_perlioeol -ARCHALL = 1 - 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 Mon Aug 10 15:43:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:43:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[5971] csw/mgar/pkg/cpan Message-ID: Revision: 5971 http://gar.svn.sourceforge.net/gar/?rev=5971&view=rev Author: dmichelsen Date: 2009-08-10 13:43:45 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Time-Progress: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Time-Progress/ csw/mgar/pkg/cpan/Time-Progress/branches/ csw/mgar/pkg/cpan/Time-Progress/tags/ csw/mgar/pkg/cpan/Time-Progress/trunk/ csw/mgar/pkg/cpan/Time-Progress/trunk/Makefile csw/mgar/pkg/cpan/Time-Progress/trunk/checksums csw/mgar/pkg/cpan/Time-Progress/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Time-Progress/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-Progress/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-Progress/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Time-Progress/trunk/Makefile 2009-08-10 13:43:45 UTC (rev 5971) @@ -0,0 +1,16 @@ +GARNAME = Time-Progress +GARVERSION = 1.5 +CATEGORIES = cpan +AUTHOR = CADE + +DESCRIPTION = Elapsed and estimated finish time reporting +define BLURB + Elapsed and estimated finish time reporting. +endef + +PACKAGES = CSWpmtimeprogress +CATALOGNAME = pm_timeprogress + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Time-Progress/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Time-Progress/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Time-Progress/trunk/checksums 2009-08-10 13:43:45 UTC (rev 5971) @@ -0,0 +1 @@ +fd355af4abcdf2408a829810c797202e download/Time-Progress-1.5.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 Mon Aug 10 15:51:51 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:51:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[5972] csw/mgar/pkg/cpan/Class-Accessor/trunk Message-ID: Revision: 5972 http://gar.svn.sourceforge.net/gar/?rev=5972&view=rev Author: dmichelsen Date: 2009-08-10 13:51:50 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Class-Accessor: Update to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.depend csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/ Property changes on: csw/mgar/pkg/cpan/Class-Accessor/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/Class-Accessor/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,5 +1,5 @@ GARNAME = Class-Accessor -GARVERSION = 0.30 +GARVERSION = 0.33 CATEGORIES = cpan AUTHOR = KASEI @@ -8,6 +8,11 @@ This module automagically generates accessor/mutators for your class. endef -DISTFILES = $(call admfiles,CSWpmclsaccessor,depend prototype) +DISTFILES = COPYING +PACKAGES = CSWpmclsaccessor +CATALOGNAME = pm_clsaccessor + +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,4 +1,2 @@ -a47bb4d0ccb587000449d24310116fe5 download/CSWpmclsaccessor.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmclsaccessor.depend -27f4a60875a401cfefe73c0b29f1a711 download/CSWpmclsaccessor.prototype -7e880c9493e42154d8f636c9e5bc9c0a download/Class-Accessor-0.30.tar.gz +971cfe5fa9ade2b3c9a2adaa9f653888 download/COPYING +574c4b8e42d52f6980b4d2e258746f7b download/Class-Accessor-0.33.tar.gz Copied: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING (from rev 5970, csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec) =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING 2009-08-10 13:51:50 UTC (rev 5972) @@ -0,0 +1,5 @@ +Copyright 2006 Marty Pauley + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. That means either (a) the GNU +General Public License or (b) the Artistic License. Deleted: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.gspec 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,10 +0,0 @@ -%var bitname pm_clsaccessor -%var pkgname CSWpmclsaccessor -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2006 Marty Pauley - -This program is free software; you can redistribute it and/or modify it -under the same terms as Perl itself. That means either (a) the GNU -General Public License or (b) the Artistic License. Deleted: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype 2009-08-10 13:43:45 UTC (rev 5971) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/CSWpmclsaccessor.prototype 2009-08-10 13:51:50 UTC (rev 5972) @@ -1,18 +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/Class 0755 root bin -d none /opt/csw/lib/perl/csw/auto/Class/Accessor 0755 root bin -f none /opt/csw/lib/perl/csw/auto/Class/Accessor/.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/Class::Accessor.3perl 0444 root bin -f none /opt/csw/share/man/man3/Class::Accessor::Fast.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/Class 0755 root bin -d none /opt/csw/share/perl/csw/Class/Accessor 0755 root bin -f none /opt/csw/share/perl/csw/Class/Accessor.pm 0444 root bin -f none /opt/csw/share/perl/csw/Class/Accessor/Fast.pm 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 Mon Aug 10 15:53:04 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 13:53:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[5973] csw/mgar/pkg/cpan Message-ID: Revision: 5973 http://gar.svn.sourceforge.net/gar/?rev=5973&view=rev Author: dmichelsen Date: 2009-08-10 13:53:04 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cpan/Sub-Name: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Sub-Name/ csw/mgar/pkg/cpan/Sub-Name/branches/ csw/mgar/pkg/cpan/Sub-Name/tags/ csw/mgar/pkg/cpan/Sub-Name/trunk/ csw/mgar/pkg/cpan/Sub-Name/trunk/Makefile csw/mgar/pkg/cpan/Sub-Name/trunk/checksums csw/mgar/pkg/cpan/Sub-Name/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Sub-Name/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/Sub-Name/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Sub-Name/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Sub-Name/trunk/Makefile 2009-08-10 13:53:04 UTC (rev 5973) @@ -0,0 +1,16 @@ +GARNAME = Sub-Name +GARVERSION = 0.04 +CATEGORIES = cpan +AUTHOR = XMATH + +DESCRIPTION = (re)name a sub +define BLURB + Assigns a new name to referenced sub. If package specification is + omitted in the name, then the current package is used. The return value + is the sub. +endef + +PACKAGES = CSWpmsubname +CATALOGNAME = pm_subname + +include gar/category.mk Added: csw/mgar/pkg/cpan/Sub-Name/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Sub-Name/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Sub-Name/trunk/checksums 2009-08-10 13:53:04 UTC (rev 5973) @@ -0,0 +1 @@ +bde2bacba0c701f249135ada3c6cf699 download/Sub-Name-0.04.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 Mon Aug 10 17:10:15 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 10 Aug 2009 15:10:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[5974] csw/mgar/pkg/cswclassutils/trunk Message-ID: Revision: 5974 http://gar.svn.sourceforge.net/gar/?rev=5974&view=rev Author: bonivart Date: 2009-08-10 15:10:14 +0000 (Mon, 10 Aug 2009) Log Message: ----------- cswclassutils: fix bugs 3764 and 3785 Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/Makefile csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf Modified: csw/mgar/pkg/cswclassutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-08-10 13:53:04 UTC (rev 5973) +++ csw/mgar/pkg/cswclassutils/trunk/Makefile 2009-08-10 15:10:14 UTC (rev 5974) @@ -1,5 +1,5 @@ GARNAME = cswclassutils -GARVERSION = 1.17 +GARVERSION = 1.18 CATEGORIES = utils DESCRIPTION = CSW class action utilities Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-08-10 13:53:04 UTC (rev 5973) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2009-08-10 15:10:14 UTC (rev 5974) @@ -5,19 +5,22 @@ # $Id$ # # Original concept by Philip Brown -# Written by Peter Bonivart +# Written and maintained by Peter Bonivart # # 2008-04-21 First release # 2009-03-28 Added support for refresh # 2009-04-21 Do not create rc links unless enabled (Bug ID 0003633), # Persistent state across upgrades (Bug ID 0003634) # 2009-04-22 Fix bug when starting packages with multiple services (Ihsan Dogan) -# 2009-04-24 Temporarily disabled the "persistent state" code until it can be used -# per service, not just per package -# 2009-05-28 Enabled persistent state code again after receiving patch from Yann. +# 2009-04-24 Temporarily disabled the "persistent state" code until it can be +# used per service, not just per package +# 2009-05-28 Enabled persistent state code again after receiving patch +# from Yann. # Support AUTOENABLE to force no start regardless of # local csw.conf (Bug ID 0003635). # Support custom manifests (Bug ID 0003636) +# 2009-08-05 Set new timeout values for manifest (Bug ID 0003764) +# 2009-08-10 Fix autoenable bug (Bug ID 0003785) DEBUG= # clear to disable debug, set to anything to enable SVCDIR=/var/opt/csw/svc @@ -76,9 +79,10 @@ if [ "$autoenable_daemons" = "no" ]; then daemon=no fi - if [ "$autoenable_$service" = "no" ]; then + eval autoenable_service="\$autoenable_$service" + if [ "$autoenable_service" = "no" ]; then daemon=no - elif [ "$autoenable_$service" = "yes" ]; then + elif [ "$autoenable_service" = "yes" ]; then daemon=yes fi @@ -158,14 +162,14 @@ type='method' name='start' exec='$SVCDIR/method/svc-$service start' - timeout_seconds='-1'> + timeout_seconds='120'> + timeout_seconds='60'> EOF @@ -177,7 +181,7 @@ type='method' name='restart' exec='$SVCDIR/method/svc-$service restart' - timeout_seconds='-1'> + timeout_seconds='180'> EOF @@ -190,7 +194,7 @@ type='method' name='refresh' exec='$SVCDIR/method/svc-$service refresh' - timeout_seconds='-1'> + timeout_seconds='60'> EOF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:06:40 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:06:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[5975] csw/mgar/pkg/speex/trunk Message-ID: Revision: 5975 http://gar.svn.sourceforge.net/gar/?rev=5975&view=rev Author: dmichelsen Date: 2009-08-10 16:06:40 +0000 (Mon, 10 Aug 2009) Log Message: ----------- speex: Add patch to honour getopt.c Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile csw/mgar/pkg/speex/trunk/checksums Added Paths: ----------- csw/mgar/pkg/speex/trunk/files/speex-getopt.patch.bz2 Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 15:10:14 UTC (rev 5974) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 16:06:40 UTC (rev 5975) @@ -13,6 +13,26 @@ MASTER_SITES = http://downloads.xiph.org/releases/speex/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +# The important lines are these: +# +# diff -Naur speex-1.2rc1.orig/src/Makefile.am speex-1.2rc1.patched/src/Makefile.am +# --- speex-1.2rc1.orig/src/Makefile.am 2008-06-02 10:21:21.000000000 +0200 +# +++ speex-1.2rc1.patched/src/Makefile.am 2009-08-10 16:44:45.255831787 +0200 +# @@ -18,8 +18,8 @@ +# +# speexenc_SOURCES = speexenc.c wav_io.c skeleton.c +# speexenc_LDADD = $(top_builddir)/libspeex/libspeex.la $(top_builddir)/libspeex/libspeexdsp.la \ +# - $(OGG_LIBS) @FFT_LIBS@ +# + $(OGG_LIBS) @FFT_LIBS@ $(LIBOBJS) +# +# speexdec_SOURCES = speexdec.c wav_io.c +# speexdec_LDADD = $(top_builddir)/libspeex/libspeex.la \ +# - $(OGG_LIBS) @FFT_LIBS@ +# + $(OGG_LIBS) @FFT_LIBS@ $(LIBOBJS) +# +# All the other stuff is generated (and the newlines on getopt*.c were stripped of ^M) +PATCHFILES = speex-getopt.patch.bz2 + PACKAGES = CSWspeex CATALOGNAME = libspeex REQUIRED_PKGS = CSWlibogg @@ -24,7 +44,7 @@ UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz # 64-bit doesn't build on x86. -# BUILD64 = 1 +BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) TEST_SCRIPTS = Modified: csw/mgar/pkg/speex/trunk/checksums =================================================================== --- csw/mgar/pkg/speex/trunk/checksums 2009-08-10 15:10:14 UTC (rev 5974) +++ csw/mgar/pkg/speex/trunk/checksums 2009-08-10 16:06:40 UTC (rev 5975) @@ -1 +1,2 @@ c4438b22c08e5811ff10e2b06ee9b9ae download/speex-1.2rc1.tar.gz +fe24237dc5e9cea5d5896dffa10c6c06 download/speex-getopt.patch.bz2 Added: csw/mgar/pkg/speex/trunk/files/speex-getopt.patch.bz2 =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/speex/trunk/files/speex-getopt.patch.bz2 ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:16:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:16:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[5976] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 5976 http://gar.svn.sourceforge.net/gar/?rev=5976&view=rev Author: dmichelsen Date: 2009-08-10 16:16:27 +0000 (Mon, 10 Aug 2009) Log Message: ----------- mGAR v2: Add INSTALL_OVERRIDE_VARS 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-08-10 16:06:40 UTC (rev 5975) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-10 16:16:27 UTC (rev 5976) @@ -581,17 +581,17 @@ # just run make install and hope for the best. install-%/Makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/GNUmakefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) # Ruby makefiles This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:17:41 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:17:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[5977] csw/mgar/gar/v2/gar.lib.mk Message-ID: Revision: 5977 http://gar.svn.sourceforge.net/gar/?rev=5977&view=rev Author: dmichelsen Date: 2009-08-10 16:17:41 +0000 (Mon, 10 Aug 2009) Log Message: ----------- mGAR v2: Add INSTALL_OVERRIDE_VARS_* 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-08-10 16:16:27 UTC (rev 5976) +++ csw/mgar/gar/v2/gar.lib.mk 2009-08-10 16:17:41 UTC (rev 5977) @@ -581,17 +581,17 @@ # just run make install and hope for the best. install-%/Makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$(INSTALL_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/makefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$(INSTALL_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) install-%/GNUmakefile: @echo " ==> Running make install in $*" - @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$($(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install + @$(INSTALL_ENV) $(MAKE) DESTDIR=$(DESTDIR) $(foreach TTT,$(INSTALL_OVERRIDE_VARS),$(TTT)="$(INSTALL_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(INSTALL_OVERRIDE_DIRS),$(TTT)="$(DESTDIR)$($(TTT))") -C $* $(INSTALL_ARGS) install @$(MAKECOOKIE) # Ruby makefiles This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 10 18:23:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 16:23:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5978] csw/mgar/pkg/speex/trunk/Makefile Message-ID: Revision: 5978 http://gar.svn.sourceforge.net/gar/?rev=5978&view=rev Author: dmichelsen Date: 2009-08-10 16:23:07 +0000 (Mon, 10 Aug 2009) Log Message: ----------- speex: Adjust INSTALL_OVERRIDE_VARS_* to latest GAR patch Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 16:17:41 UTC (rev 5977) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-10 16:23:07 UTC (rev 5978) @@ -48,4 +48,7 @@ CONFIGURE_ARGS = $(DIRPATHS) TEST_SCRIPTS = +INSTALL_OVERRIDE_VARS = PACKAGE +INSTALL_OVERRIDE_VAR_PACKAGE = libspeex + 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 Mon Aug 10 22:52:24 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 10 Aug 2009 20:52:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[5979] csw/mgar/pkg/gtk2/trunk/Makefile Message-ID: Revision: 5979 http://gar.svn.sourceforge.net/gar/?rev=5979&view=rev Author: dmichelsen Date: 2009-08-10 20:52:24 +0000 (Mon, 10 Aug 2009) Log Message: ----------- gtk2: Remove dependency to libgsf and libcroco as it is required for the librsvg loader and not gtk2 itself Modified Paths: -------------- csw/mgar/pkg/gtk2/trunk/Makefile Modified: csw/mgar/pkg/gtk2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-10 16:23:07 UTC (rev 5978) +++ csw/mgar/pkg/gtk2/trunk/Makefile 2009-08-10 20:52:24 UTC (rev 5979) @@ -37,7 +37,6 @@ PREREQUISITE_PKGS = CSWbash REQUIRED_PKGS_CSWgtk2 = CSWjasper CSWfconfig CSWftype2 CSWggettextrt CSWglib2 CSWjpeg CSWlibatk REQUIRED_PKGS_CSWgtk2 += CSWlibcairo CSWlibx11 CSWlibxrender CSWpango CSWpng CSWtiff CSWzlib -REQUIRED_PKGS_CSWgtk2 += CSWlibgsf CSWlibcroco REQUIRED_PKGS_CSWgtk2devel = CSWgtk2 CSWglib2devel REQUIRED_PKGS_CSWgtk2devel += CSWlibcairodevel CSWlibx11devel CSWlibxrenderdevel CSWpangodevel 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 Aug 11 08:27:57 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 11 Aug 2009 06:27:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[5980] csw/mgar/pkg/irssi/trunk Message-ID: Revision: 5980 http://gar.svn.sourceforge.net/gar/?rev=5980&view=rev Author: idogan23 Date: 2009-08-11 06:27:57 +0000 (Tue, 11 Aug 2009) Log Message: ----------- irssi: bump versin to 0.8.14 Modified Paths: -------------- csw/mgar/pkg/irssi/trunk/Makefile csw/mgar/pkg/irssi/trunk/checksums Modified: csw/mgar/pkg/irssi/trunk/Makefile =================================================================== --- csw/mgar/pkg/irssi/trunk/Makefile 2009-08-10 20:52:24 UTC (rev 5979) +++ csw/mgar/pkg/irssi/trunk/Makefile 2009-08-11 06:27:57 UTC (rev 5980) @@ -1,5 +1,5 @@ GARNAME = irssi -GARVERSION = 0.8.13 +GARVERSION = 0.8.14 CATEGORIES = apps DESCRIPTION = IRC client with IPv6, proxy, bot, socks and Perl support @@ -13,7 +13,6 @@ MASTER_SITES = http://www.irssi.org/files/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -#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 Modified: csw/mgar/pkg/irssi/trunk/checksums =================================================================== --- csw/mgar/pkg/irssi/trunk/checksums 2009-08-10 20:52:24 UTC (rev 5979) +++ csw/mgar/pkg/irssi/trunk/checksums 2009-08-11 06:27:57 UTC (rev 5980) @@ -1,2 +1 @@ -226f194576895ff3075c164523806d06 download/irssi-0.8.13.tar.gz -981f1b2ee1c132d0f0330724bfe601c3 download/CSWirssi.gspec +7d9437f53209a61af4fe4c9c5528ffa7 download/irssi-0.8.14.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 Aug 11 08:29:03 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 11 Aug 2009 06:29:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[5981] csw/mgar/pkg/irssi/trunk/Makefile Message-ID: Revision: 5981 http://gar.svn.sourceforge.net/gar/?rev=5981&view=rev Author: idogan23 Date: 2009-08-11 06:29:02 +0000 (Tue, 11 Aug 2009) Log Message: ----------- irssi: small typo fix Modified Paths: -------------- csw/mgar/pkg/irssi/trunk/Makefile Modified: csw/mgar/pkg/irssi/trunk/Makefile =================================================================== --- csw/mgar/pkg/irssi/trunk/Makefile 2009-08-11 06:27:57 UTC (rev 5980) +++ csw/mgar/pkg/irssi/trunk/Makefile 2009-08-11 06:29:02 UTC (rev 5981) @@ -30,7 +30,7 @@ EXTRA_MERGE_EXCLUDE_FILES = .*~ .*perllocal\.pod -REQUIRED_PKGS = CSWglib2 +REQUIRED_PKGS += CSWglib2 REQUIRED_PKGS += CSWiconv REQUIRED_PKGS += CSWosslrt REQUIRED_PKGS += CSWperl 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 Aug 11 11:35:49 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 09:35:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[5982] csw/mgar/pkg/cpan/Pod-Coverage/trunk Message-ID: Revision: 5982 http://gar.svn.sourceforge.net/gar/?rev=5982&view=rev Author: dmichelsen Date: 2009-08-11 09:35:49 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Pod-Coverage: Update to 0.20 Modified Paths: -------------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/Makefile csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec Property Changed: ---------------- csw/mgar/pkg/cpan/Pod-Coverage/trunk/ Property changes on: csw/mgar/pkg/cpan/Pod-Coverage/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/Pod-Coverage/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/Makefile 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/Makefile 2009-08-11 09:35:49 UTC (rev 5982) @@ -1,9 +1,9 @@ GARNAME = Pod-Coverage -GARVERSION = 0.19 +GARVERSION = 0.20 CATEGORIES = cpan AUTHOR = RCLAMP -DESCRIPTION = checks if the documentation of a module is comprehensive +DESCRIPTION = Checks if the documentation of a module is comprehensive define BLURB Developers hate writing documentation. They'd hate it even more if their computer tattled on them, but maybe they'll be even more thankful in the @@ -12,9 +12,14 @@ comprehensive. endef -DISTFILES += $(call admfiles,CSWpmpodcoverage,depend) +PREREQUISITE_PKS = CSWpmmodulebuild CSWpmtestpod +REQUIRED_PKGS = CSWpmdevelsymdump -DEPENDS += cpan/Devel-Symdump -BUILDDEPS += cpan/Module-Build +DISTFILES = COPYING +PACKAGES = CSWpmpodcoverage +CATALOGNAME = pm_podcoverage + +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/checksums 2009-08-11 09:35:49 UTC (rev 5982) @@ -1,3 +1,2 @@ -f7117ed88530573051732083dcc8d80f download/CSWpmpodcoverage.gspec -390e452748350e68e6e2898819e7e9af download/CSWpmpodcoverage.depend -93af52dac8bafed7702ed290d988ffa4 download/Pod-Coverage-0.19.tar.gz +da39a7d3f29739d1c018d0f1dc6ff5e2 download/COPYING +292a5b8d3a93597af441d3e6467b8ad6 download/Pod-Coverage-0.20.tar.gz Copied: csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING (from rev 5970, csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec) =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/COPYING 2009-08-11 09:35:49 UTC (rev 5982) @@ -0,0 +1,3 @@ +Copyright (c) 2001, 2003, 2004, 2006 Richard Clamp, Michael +Stevens. 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/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.depend 2009-08-11 09:35:49 UTC (rev 5982) @@ -1 +0,0 @@ -P CSWpmdevelsymdump pm_develsymdump - dump symbol names or the symbol table Deleted: csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec =================================================================== --- csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec 2009-08-11 06:29:02 UTC (rev 5981) +++ csw/mgar/pkg/cpan/Pod-Coverage/trunk/files/CSWpmpodcoverage.gspec 2009-08-11 09:35:49 UTC (rev 5982) @@ -1,8 +0,0 @@ -%var bitname pm_podcoverage -%var pkgname CSWpmpodcoverage -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2001, 2003, 2004, 2006 Richard Clamp, Michael -Stevens. 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 dmichelsen at users.sourceforge.net Tue Aug 11 11:50:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 09:50:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5983] csw/mgar/pkg/libfaac/trunk/Makefile Message-ID: Revision: 5983 http://gar.svn.sourceforge.net/gar/?rev=5983&view=rev Author: dmichelsen Date: 2009-08-11 09:50:47 +0000 (Tue, 11 Aug 2009) Log Message: ----------- libfaac: Fix SOURCEURL and simplify defines Modified Paths: -------------- csw/mgar/pkg/libfaac/trunk/Makefile Modified: csw/mgar/pkg/libfaac/trunk/Makefile =================================================================== --- csw/mgar/pkg/libfaac/trunk/Makefile 2009-08-11 09:35:49 UTC (rev 5982) +++ csw/mgar/pkg/libfaac/trunk/Makefile 2009-08-11 09:50:47 UTC (rev 5983) @@ -13,9 +13,10 @@ DISTNAME = $(SF_PROJ)-$(GARVERSION) PACKAGES = CSWfaac -CATALOGNAME_CSWfaac = $(GARNAME) -SPKG_DESC_CSWfaac = $(DESCRIPTION) +CATALOGNAME = $(GARNAME) +SPKG_SOURCEURL = http://www.audiocoding.com/ + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(SF_PROJ)-(\d+(?:\.\d+)*).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 Tue Aug 11 14:19:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 12:19:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[5984] csw/mgar/pkg/cpan Message-ID: Revision: 5984 http://gar.svn.sourceforge.net/gar/?rev=5984&view=rev Author: dmichelsen Date: 2009-08-11 12:19:35 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/SVN-Dump: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/SVN-Dump/ csw/mgar/pkg/cpan/SVN-Dump/branches/ csw/mgar/pkg/cpan/SVN-Dump/tags/ csw/mgar/pkg/cpan/SVN-Dump/trunk/ csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums csw/mgar/pkg/cpan/SVN-Dump/trunk/files/ Property changes on: csw/mgar/pkg/cpan/SVN-Dump/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/SVN-Dump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile 2009-08-11 12:19:35 UTC (rev 5984) @@ -0,0 +1,15 @@ +GARNAME = SVN-Dump +GARVERSION = 0.04 +CATEGORIES = cpan +AUTHOR = BOOK + +DESCRIPTION = A Perl interface to Subversion dumps +define BLURB +endef + +PACKAGES = CSWpmsvndump +CATALOGNAME = pmsvndump + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/SVN-Dump/trunk/checksums 2009-08-11 12:19:35 UTC (rev 5984) @@ -0,0 +1 @@ +ecef25f8facce359fcec9ab1f341da36 download/SVN-Dump-0.04.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 Aug 11 14:31:17 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 12:31:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[5985] csw/mgar/pkg/cpan Message-ID: Revision: 5985 http://gar.svn.sourceforge.net/gar/?rev=5985&view=rev Author: dmichelsen Date: 2009-08-11 12:31:17 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Compress-Bzip2: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Compress-Bzip2/ csw/mgar/pkg/cpan/Compress-Bzip2/branches/ csw/mgar/pkg/cpan/Compress-Bzip2/tags/ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/Makefile csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums csw/mgar/pkg/cpan/Compress-Bzip2/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Compress-Bzip2/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/Compress-Bzip2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Compress-Bzip2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/Makefile 2009-08-11 12:31:17 UTC (rev 5985) @@ -0,0 +1,15 @@ +GARNAME = Compress-Bzip2 +GARVERSION = 2.09 +CATEGORIES = cpan +AUTHOR = ARJAY + +DESCRIPTION = Interface to Bzip2 compression library +define BLURB +endef + +REQUIRED_PKGS = CSWbzip2 + +PACKAGES = CSWpmcompressbzip2 +CATALOGNAME = pm_compressbzip2 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Compress-Bzip2/trunk/checksums 2009-08-11 12:31:17 UTC (rev 5985) @@ -0,0 +1 @@ +1699fde3e86f2a036f135ae606d456bf download/Compress-Bzip2-2.09.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 Aug 11 14:42:55 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 12:42:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[5986] csw/mgar/pkg/cpan Message-ID: Revision: 5986 http://gar.svn.sourceforge.net/gar/?rev=5986&view=rev Author: dmichelsen Date: 2009-08-11 12:42:55 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/PerlIO-gzip: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/PerlIO-gzip/ csw/mgar/pkg/cpan/PerlIO-gzip/branches/ csw/mgar/pkg/cpan/PerlIO-gzip/tags/ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/Makefile csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums csw/mgar/pkg/cpan/PerlIO-gzip/trunk/files/ Property changes on: csw/mgar/pkg/cpan/PerlIO-gzip/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/PerlIO-gzip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/PerlIO-gzip/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/Makefile 2009-08-11 12:42:55 UTC (rev 5986) @@ -0,0 +1,15 @@ +GARNAME = PerlIO-gzip +GARVERSION = 0.18 +CATEGORIES = cpan +AUTHOR = NWCLARK + +DESCRIPTION = Perl extension to provide a PerlIO layer to gzip/gunzip +define BLURB +endef + +REQUIRED_PKGS = CSWzlib + +PACKAGES = CSWpmperliogzip +CATALOGNAME = pm_perliogzip + +include gar/category.mk Added: csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/PerlIO-gzip/trunk/checksums 2009-08-11 12:42:55 UTC (rev 5986) @@ -0,0 +1 @@ +933fdf283a0d2739f7630420569e3b24 download/PerlIO-gzip-0.18.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 Aug 11 19:32:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:32:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5987] csw/mgar/pkg/cpan Message-ID: Revision: 5987 http://gar.svn.sourceforge.net/gar/?rev=5987&view=rev Author: dmichelsen Date: 2009-08-11 17:32:38 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Cairo: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Cairo/ csw/mgar/pkg/cpan/Cairo/branches/ csw/mgar/pkg/cpan/Cairo/tags/ csw/mgar/pkg/cpan/Cairo/trunk/ csw/mgar/pkg/cpan/Cairo/trunk/Makefile csw/mgar/pkg/cpan/Cairo/trunk/checksums csw/mgar/pkg/cpan/Cairo/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Cairo/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/Cairo/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Cairo/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Cairo/trunk/Makefile 2009-08-11 17:32:38 UTC (rev 5987) @@ -0,0 +1,27 @@ +GARNAME = Cairo +GARVERSION = 1.061 +CATEGORIES = cpan +AUTHOR = TSCH + +DESCRIPTION = Perl interface to the cairo library +define BLURB +endef + +# 3/73 skipped: Test::Number::Delta not available +# all skipped: need Cairo with FreeType support and Font::FreeType +PREREQUISITE_PKGS = CSWlibcairodevel +REQUIRED_PKGS = CSWfconfig CSWftype2 CSWlibcairo CSWzlib + +PACKAGES = CSWpmcairo +CATALOGNAME = pm_cairo + +EXTRA_INC = $(prefix)/X11/include +EXTRA_LIB = $(prefix)/X11/lib +EXTRA_PKG_CONFIG_DIRS = $(prefix)/X11/lib + +include gar/category.mk + + + + + Added: csw/mgar/pkg/cpan/Cairo/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Cairo/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Cairo/trunk/checksums 2009-08-11 17:32:38 UTC (rev 5987) @@ -0,0 +1 @@ +08cd5e847f61858651fc4de769066e88 download/Cairo-1.061.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 Aug 11 19:45:13 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:45:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[5988] csw/mgar/gar/v2/categories/cpan/category.mk Message-ID: Revision: 5988 http://gar.svn.sourceforge.net/gar/?rev=5988&view=rev Author: dmichelsen Date: 2009-08-11 17:45:12 +0000 (Tue, 11 Aug 2009) Log Message: ----------- mGAR v2: Add special args to cpan-category Modified Paths: -------------- csw/mgar/gar/v2/categories/cpan/category.mk Modified: csw/mgar/gar/v2/categories/cpan/category.mk =================================================================== --- csw/mgar/gar/v2/categories/cpan/category.mk 2009-08-11 17:32:38 UTC (rev 5987) +++ csw/mgar/gar/v2/categories/cpan/category.mk 2009-08-11 17:45:12 UTC (rev 5988) @@ -62,7 +62,7 @@ INSTALL_ENV += PERL5LIB=$(PERL5LIB) # Configure a target using Makefile.PL -PERL_CONFIGURE_ARGS ?= INSTALLDIRS=vendor +PERL_CONFIGURE_ARGS ?= INSTALLDIRS=vendor $(EXTRA_PERL_CONFIGURE_ARGS) configure-%/Makefile.PL: @echo " ==> Running Makefile.PL in $*" @( cd $* ; \ @@ -70,7 +70,7 @@ $(CONFIGURE_ARGS) $(PERL_CONFIGURE_ARGS) ) @$(MAKECOOKIE) -PERLBUILD_CONFIGURE_ARGS ?= installdirs=vendor +PERLBUILD_CONFIGURE_ARGS ?= installdirs=vendor $(EXTRA_PERLBUILD_CONFIGURE_ARGS) configure-%/Build.PL: @echo " ==> Running Build.PL in $*" @( cd $* ; \ 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 Aug 11 19:48:34 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:48:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[5989] csw/mgar/pkg/cpan Message-ID: Revision: 5989 http://gar.svn.sourceforge.net/gar/?rev=5989&view=rev Author: dmichelsen Date: 2009-08-11 17:48:34 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Font-Freetype: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Font-Freetype/ csw/mgar/pkg/cpan/Font-Freetype/branches/ csw/mgar/pkg/cpan/Font-Freetype/tags/ csw/mgar/pkg/cpan/Font-Freetype/trunk/ csw/mgar/pkg/cpan/Font-Freetype/trunk/Makefile csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums csw/mgar/pkg/cpan/Font-Freetype/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Font-Freetype/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/Font-Freetype/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Font-Freetype/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Font-Freetype/trunk/Makefile 2009-08-11 17:48:34 UTC (rev 5989) @@ -0,0 +1,21 @@ +GARNAME = Font-FreeType +GARVERSION = 0.03 +CATEGORIES = cpan +AUTHOR = GEOFFR + +DESCRIPTION = Read font files and render glyphs from Perl using FreeType2 +define BLURB +endef + +REQUIRED_PKGS = CSWftype2 + +PACKAGES = CSWpmfontfreetype +CATALOGNAME = pm_fontfreetype + +EXTRA_PERL_CONFIGURE_ARGS = INC=-I$(includedir)/freetype2 + +# There are a lot of failed tests, however, it looks like the tests +# are somewhat broken, so skip for now. +SKIPTEST ?= 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Font-Freetype/trunk/checksums 2009-08-11 17:48:34 UTC (rev 5989) @@ -0,0 +1 @@ +47b9483c92f1b2df0bbb5258a6a596b2 download/Font-FreeType-0.03.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 Aug 11 19:57:08 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 17:57:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[5990] csw/mgar/pkg/cpan Message-ID: Revision: 5990 http://gar.svn.sourceforge.net/gar/?rev=5990&view=rev Author: dmichelsen Date: 2009-08-11 17:57:07 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Config-Tiny: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Config-Tiny/ csw/mgar/pkg/cpan/Config-Tiny/branches/ csw/mgar/pkg/cpan/Config-Tiny/tags/ csw/mgar/pkg/cpan/Config-Tiny/trunk/ csw/mgar/pkg/cpan/Config-Tiny/trunk/Makefile csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums csw/mgar/pkg/cpan/Config-Tiny/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Config-Tiny/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/Config-Tiny/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Config-Tiny/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Config-Tiny/trunk/Makefile 2009-08-11 17:57:07 UTC (rev 5990) @@ -0,0 +1,15 @@ +GARNAME = Config-Tiny +GARVERSION = 2.12 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Read/Write .ini style files with as little code as possible +define BLURB +endef + +PACKAGES = CSWpmconfigtiny +CATALOGNAME = pm_configtiny + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Config-Tiny/trunk/checksums 2009-08-11 17:57:07 UTC (rev 5990) @@ -0,0 +1 @@ +1df5a4ff37cd1d80532ddbe28015d1f0 download/Config-Tiny-2.12.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 Aug 11 20:02:47 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:02:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[5991] csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile Message-ID: Revision: 5991 http://gar.svn.sourceforge.net/gar/?rev=5991&view=rev Author: dmichelsen Date: 2009-08-11 18:02:47 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Test-ClassAPI: Added prerequisuites Modified Paths: -------------- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile Modified: csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile 2009-08-11 17:57:07 UTC (rev 5990) +++ csw/mgar/pkg/cpan/Test-ClassAPI/trunk/Makefile 2009-08-11 18:02:47 UTC (rev 5991) @@ -11,15 +11,11 @@ module aims to provide such a capability. endef +REQUIRED_PKGS = CSWpmclassinspector CSWpmconfigtiny CSWpmparamsutil + PACKAGES = CSWpmtestclassapi CATALOGNAME = pm_testclassapi -#Warning: prerequisite Class::Inspector 1.12 not found. -#Warning: prerequisite Config::Tiny 2.00 not found. -#Warning: prerequisite ExtUtils::MakeMaker 6.42 not found. We have 6.30. -#Warning: prerequisite Params::Util 1.00 not found. - - ARCHALL = 1 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 Tue Aug 11 20:13:21 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:13:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[5992] csw/mgar/pkg/cpan Message-ID: Revision: 5992 http://gar.svn.sourceforge.net/gar/?rev=5992&view=rev Author: dmichelsen Date: 2009-08-11 18:13:18 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/Test-Script: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-Script/ csw/mgar/pkg/cpan/Test-Script/branches/ csw/mgar/pkg/cpan/Test-Script/tags/ csw/mgar/pkg/cpan/Test-Script/trunk/ csw/mgar/pkg/cpan/Test-Script/trunk/Makefile csw/mgar/pkg/cpan/Test-Script/trunk/checksums csw/mgar/pkg/cpan/Test-Script/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-Script/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/Test-Script/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Script/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-Script/trunk/Makefile 2009-08-11 18:13:18 UTC (rev 5992) @@ -0,0 +1,17 @@ +GARNAME = Test-Script +GARVERSION = 1.03 +CATEGORIES = cpan +AUTHOR = ADAMK + +DESCRIPTION = Cross-platform basic tests for scripts +define BLURB +endef + +REQUIRED_PKGS = CSWpmipcrun3 + +PACKAGES = CSWpmtestscript +CATALOGNAME = pm_testscript + +ARCHALL = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-Script/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Script/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-Script/trunk/checksums 2009-08-11 18:13:18 UTC (rev 5992) @@ -0,0 +1 @@ +fa3018d63bc54ebb8d4d244fb1dc4c35 download/Test-Script-1.03.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 Aug 11 20:14:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:14:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[5993] csw/mgar/pkg/cpan/IPC-Run3/trunk Message-ID: Revision: 5993 http://gar.svn.sourceforge.net/gar/?rev=5993&view=rev Author: dmichelsen Date: 2009-08-11 18:14:37 +0000 (Tue, 11 Aug 2009) Log Message: ----------- IPC-Run3: Update to 0.043 Modified Paths: -------------- csw/mgar/pkg/cpan/IPC-Run3/trunk/Makefile csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.depend csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype Property Changed: ---------------- csw/mgar/pkg/cpan/IPC-Run3/trunk/ Property changes on: csw/mgar/pkg/cpan/IPC-Run3/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/IPC-Run3/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/Makefile 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/Makefile 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,9 +1,9 @@ GARNAME = IPC-Run3 -GARVERSION = 0.01 +GARVERSION = 0.043 CATEGORIES = cpan -AUTHOR = RBS +AUTHOR = RJBS -DESCRIPTION = run a subprocess in batch mode +DESCRIPTION = Run a subprocess with input/ouput redirection define BLURB This module allows you to run a subprocess and redirect stdin, stdout, and/or stderr to files and perl data structures. It aims to satisfy 99% of @@ -11,6 +11,9 @@ API and none of the bloat and rarely used features of IPC::Run. endef -DISTFILES = $(call admfiles,CSWpmipcrun3,depend prototype) +PACKAGES = CSWpmipcrun3 +CATALOGNAME = pm_ipcrun3 +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/checksums 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,4 +1 @@ -d8da64e635f79c8b8791334522f01fc7 download/CSWpmipcrun3.gspec -6e0d583c86d7f74b43769810714242aa download/CSWpmipcrun3.depend -d8e117484649231e470268725188cc00 download/CSWpmipcrun3.prototype -d518846b8fdd1ec7188f384e9bb900e3 download/IPC-Run3-0.01.tar.gz +ef3c073f900bcc9c3e30e91f1fc00fda download/IPC-Run3-0.043.tar.gz Deleted: csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.gspec 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,6 +0,0 @@ -%var bitname pm_ipcrun3 -%var pkgname CSWpmipcrun3 -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright 2003, R. Barrie Slaymaker, Jr., All Rights Reserved Deleted: csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype =================================================================== --- csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype 2009-08-11 18:13:18 UTC (rev 5992) +++ csw/mgar/pkg/cpan/IPC-Run3/trunk/files/CSWpmipcrun3.prototype 2009-08-11 18:14:37 UTC (rev 5993) @@ -1,26 +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/IPC 0755 root bin -d none /opt/csw/lib/perl/csw/auto/IPC/Run3 0755 root bin -f none /opt/csw/lib/perl/csw/auto/IPC/Run3/.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/IPC::Run3.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfArrayBuffer.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfLogReader.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfLogger.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfPP.3perl 0444 root bin -f none /opt/csw/share/man/man3/IPC::Run3::ProfReporter.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/IPC 0755 root bin -d none /opt/csw/share/perl/csw/IPC/Run3 0755 root bin -f none /opt/csw/share/perl/csw/IPC/Run3.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfArrayBuffer.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfLogReader.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfLogger.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfPP.pm 0444 root bin -f none /opt/csw/share/perl/csw/IPC/Run3/ProfReporter.pm 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 Tue Aug 11 20:16:42 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 11 Aug 2009 18:16:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[5994] csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile Message-ID: Revision: 5994 http://gar.svn.sourceforge.net/gar/?rev=5994&view=rev Author: dmichelsen Date: 2009-08-11 18:16:42 +0000 (Tue, 11 Aug 2009) Log Message: ----------- cpan/SVN-Dump: Fix catalog name Modified Paths: -------------- csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile Modified: csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile 2009-08-11 18:14:37 UTC (rev 5993) +++ csw/mgar/pkg/cpan/SVN-Dump/trunk/Makefile 2009-08-11 18:16:42 UTC (rev 5994) @@ -8,7 +8,7 @@ endef PACKAGES = CSWpmsvndump -CATALOGNAME = pmsvndump +CATALOGNAME = pm_svndump ARCHALL = 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 Wed Aug 12 14:11:31 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 12 Aug 2009 12:11:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[5995] csw/mgar/pkg/spamassassin/trunk/Makefile Message-ID: Revision: 5995 http://gar.svn.sourceforge.net/gar/?rev=5995&view=rev Author: bonivart Date: 2009-08-12 12:11:31 +0000 (Wed, 12 Aug 2009) Log Message: ----------- spamassassin: move to mGAR v2 and cswclassutils Modified Paths: -------------- csw/mgar/pkg/spamassassin/trunk/Makefile Modified: csw/mgar/pkg/spamassassin/trunk/Makefile =================================================================== --- csw/mgar/pkg/spamassassin/trunk/Makefile 2009-08-11 18:16:42 UTC (rev 5994) +++ csw/mgar/pkg/spamassassin/trunk/Makefile 2009-08-12 12:11:31 UTC (rev 5995) @@ -12,7 +12,6 @@ MASTER_SITES = http://apache.jumper.nu/spamassassin/source/ DISTFILES = $(SPKG_NAME)-$(GARVERSION).tar.gz -#DISTFILES += $(call admfiles,CSWspamassassin,checkinstall depend postinstall) LICENSE = $(WORKDIR)/$(SPKG_NAME)-$(GARVERSION)/LICENSE @@ -61,8 +60,8 @@ test-custom: @echo " ==> Testing $(GARNAME) (custom)" -# @( cd $(WORKSRC) ; \ -# gmake test ) + @( cd $(WORKSRC) ; \ + gmake test ) @$(MAKECOOKIE) install-custom: @@ -76,9 +75,6 @@ @ginstall -m 644 $(FILEDIR)/CSWspamassassin.cswusergroup $(DESTDIR)$(sysconfdir)/CSWspamassassin/cswusergroup @cp $(FILEDIR)/CSWspamassassin.README.CSW $(DESTDIR)$(docdir)/$(GARNAME)/README.CSW @cp $(FILEDIR)/CSWspamassassin.README.spamd $(DESTDIR)$(docdir)/$(GARNAME)/README.spamd -# @cp $(FILEDIR)/CSWspamassassin.cswspamd $(DESTDIR)$(docdir)/$(GARNAME)/cswspamd -# @cp $(FILEDIR)/CSWspamassassin.spamd.xml.CSW $(DESTDIR)$(docdir)/$(GARNAME)/spamd.xml.CSW -# @cp $(FILEDIR)/CSWspamassassin.svc-spamd.CSW $(DESTDIR)$(docdir)/$(GARNAME)/svc-spamd.CSW @( cd $(WORKSRC) ; \ gmake install ) @( cd $(WORKSRC) ; \ 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 Aug 12 15:02:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 12 Aug 2009 13:02:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[5996] csw/mgar/pkg/diffstat/trunk Message-ID: Revision: 5996 http://gar.svn.sourceforge.net/gar/?rev=5996&view=rev Author: dmichelsen Date: 2009-08-12 13:02:45 +0000 (Wed, 12 Aug 2009) Log Message: ----------- diffstat: Update to 1.48 Modified Paths: -------------- csw/mgar/pkg/diffstat/trunk/Makefile csw/mgar/pkg/diffstat/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch Modified: csw/mgar/pkg/diffstat/trunk/Makefile =================================================================== --- csw/mgar/pkg/diffstat/trunk/Makefile 2009-08-12 12:11:31 UTC (rev 5995) +++ csw/mgar/pkg/diffstat/trunk/Makefile 2009-08-12 13:02:45 UTC (rev 5996) @@ -1,15 +1,13 @@ GARNAME = diffstat -GARVERSION = 1.47 +GARVERSION = 1.48 CATEGORIES = utils DESCRIPTION = A utility which provides statistics based on the output of diff define BLURB - Long description endef MASTER_SITES = ftp://invisible-island.net/diffstat/ DISTFILES = $(GARNAME).tar.gz -PATCHFILES = diffstat-47a.patch # We define upstream file regex so we can be notifed of new upstream software release #UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz Modified: csw/mgar/pkg/diffstat/trunk/checksums =================================================================== --- csw/mgar/pkg/diffstat/trunk/checksums 2009-08-12 12:11:31 UTC (rev 5995) +++ csw/mgar/pkg/diffstat/trunk/checksums 2009-08-12 13:02:45 UTC (rev 5996) @@ -1,2 +1 @@ -c6d221ff4a032e1bbf227f5936a7841a download/diffstat.tar.gz -bf7a4c239bcda213108b1de32ba8191d download/diffstat-47a.patch +8593e79189dd4b9c4ec32862e19d716c download/diffstat.tar.gz Deleted: csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch =================================================================== --- csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch 2009-08-12 12:11:31 UTC (rev 5995) +++ csw/mgar/pkg/diffstat/trunk/files/diffstat-47a.patch 2009-08-12 13:02:45 UTC (rev 5996) @@ -1,141 +0,0 @@ -# patch by Thomas E. Dickey -# created Mon Mar 30 19:22:01 UTC 2009 -# ------------------------------------------------------------------------------ -# CHANGES | 6 ++++++ -# aclocal.m4 | 4 ++-- -# configure | 28 ++++++++++++++-------------- -# 3 files changed, 22 insertions(+), 16 deletions(-) -# ------------------------------------------------------------------------------ -Index: CHANGES ---- diffstat-47+/CHANGES 2009-03-29 17:53:16.000000000 +0000 -+++ diffstat-47a/CHANGES 2009-03-30 19:21:17.000000000 +0000 -@@ -1,3 +1,9 @@ -+??-???-???? -+ diffstat 1.48 -+ -+ fix typo in configure --with-install-prefix option (report by -+ Dagobert Michelsen). -+ - 29-Mar-2009 - diffstat 1.47 - -Index: aclocal.m4 -Prereq: 1.11 ---- diffstat-47+/aclocal.m4 2007-08-26 14:15:33.000000000 +0000 -+++ diffstat-47a/aclocal.m4 2009-03-30 19:13:25.000000000 +0000 -@@ -1,4 +1,4 @@ --dnl $Id: aclocal.m4,v 1.11 2007/08/26 14:15:33 tom Exp $ -+dnl $Id: aclocal.m4,v 1.12 2009/03/30 19:13:25 tom Exp $ - dnl autoconf macros for 'diffstat' - dnl - dnl Copyright 2003-2006,2007 Thomas E. Dickey -@@ -882,7 +882,7 @@ - [cf_opt_with_install_prefix=${DESTDIR-no}]) - AC_MSG_RESULT($cf_opt_with_install_prefix) - if test "$cf_opt_with_install_prefix" != no ; then -- CF_PATH_SYNTAX($cf_opt_with_install_prefix) -+ CF_PATH_SYNTAX(cf_opt_with_install_prefix) - DESTDIR=$cf_opt_with_install_prefix - fi - AC_SUBST(DESTDIR) -Index: configure ---- diffstat-47+/configure 2007-08-26 18:36:32.000000000 +0000 -+++ diffstat-47a/configure 2009-03-30 19:13:41.000000000 +0000 -@@ -1,7 +1,7 @@ - #! /bin/sh - # From configure.in Revision: 1.12 . - # Guess values for system-dependent variables and create Makefiles. --# Generated by Autoconf 2.52.20061216. -+# Generated by Autoconf 2.52.20081225. - # - # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 - # Free Software Foundation, Inc. -@@ -749,7 +749,7 @@ - running configure, to aid debugging if configure makes a mistake. - - It was created by $as_me, which was --generated by GNU Autoconf 2.52.20061216. Invocation command line was -+generated by GNU Autoconf 2.52.20081225. Invocation command line was - - $ $0 $@ - -@@ -1324,7 +1324,7 @@ - ls a.out conftest 2>/dev/null; - ls a.* conftest.* 2>/dev/null`; do - case $ac_file in -- *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;; -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.dbg | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - a.out ) # We found the default executable, but exeext='' is most - # certainly right. - break;; -@@ -1398,7 +1398,7 @@ - # `rm'. - for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do - case $ac_file in -- *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;; -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.dbg | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext - break;; -@@ -1443,7 +1443,7 @@ - (exit $ac_status); }; then - for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do - case $ac_file in -- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;; -+ *.$ac_ext | *.xcoff | *.tds | *.d | *.dbg | *.pdb | *.xSYM | *.map | *.inf ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -@@ -2162,7 +2162,7 @@ - cf_path_syntax="$ac_default_prefix" - fi - --case ".$$cf_opt_with_install_prefix" in #(vi -+case ".$cf_opt_with_install_prefix" in #(vi - .\$\(*\)*|.\'*\'*) #(vi - ;; - ..|./*|.\\*) #(vi -@@ -2170,19 +2170,19 @@ - .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX - ;; - .\${*prefix}*) #(vi -- eval $cf_opt_with_install_prefix="$$cf_opt_with_install_prefix" -- case ".$$cf_opt_with_install_prefix" in #(vi -+ eval cf_opt_with_install_prefix="$cf_opt_with_install_prefix" -+ case ".$cf_opt_with_install_prefix" in #(vi - .NONE/*) -- $cf_opt_with_install_prefix=`echo $$cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` -+ cf_opt_with_install_prefix=`echo $cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` - ;; - esac - ;; #(vi - .no|.NONE/*) -- $cf_opt_with_install_prefix=`echo $$cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` -+ cf_opt_with_install_prefix=`echo $cf_opt_with_install_prefix | sed -e s%NONE%$cf_path_syntax%` - ;; - *) -- { { echo "$as_me:2184: error: expected a pathname, not \"$$cf_opt_with_install_prefix\"" >&5 --echo "$as_me: error: expected a pathname, not \"$$cf_opt_with_install_prefix\"" >&2;} -+ { { echo "$as_me:2184: error: expected a pathname, not \"$cf_opt_with_install_prefix\"" >&5 -+echo "$as_me: error: expected a pathname, not \"$cf_opt_with_install_prefix\"" >&2;} - { (exit 1); exit 1; }; } - ;; - esac -@@ -4778,7 +4778,7 @@ - cat >>$CONFIG_STATUS < Revision: 5997 http://gar.svn.sourceforge.net/gar/?rev=5997&view=rev Author: bdwalton Date: 2009-08-12 14:46:26 +0000 (Wed, 12 Aug 2009) Log Message: ----------- initial commit; seemingly working package already Added Paths: ----------- csw/mgar/pkg/yaml-mode/ csw/mgar/pkg/yaml-mode/branches/ csw/mgar/pkg/yaml-mode/tags/ csw/mgar/pkg/yaml-mode/trunk/ csw/mgar/pkg/yaml-mode/trunk/Makefile csw/mgar/pkg/yaml-mode/trunk/checksums csw/mgar/pkg/yaml-mode/trunk/files/ Property changes on: csw/mgar/pkg/yaml-mode/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/yaml-mode/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/Makefile (rev 0) +++ csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 14:46:26 UTC (rev 5997) @@ -0,0 +1,54 @@ +GARNAME = yaml-mode +GARVERSION = 0.0.3 +CATEGORIES = xtra + +PACKAGES = CSWyamlmode + +CATALOGNAME_CSWyamlmode = yaml_mode + +REQUIRED_PKGS_CSWphpmode = CSWemacscommon + +ARCHALL_CSWyamlmode = 1 + +DESCRIPTION = A YAML mode for Emacs +define BLURB +This is a major mode for editing files in the YAML data +serialization format. It was initially developed by Yoshiki +Kurihara and many features were added by Marshall Vandegrift. As +YAML and Python share the fact that indentation determines +structure, this mode provides indentation and indentation command +behavior very similar to that of python-mode. +endef + +MASTER_SITES = http://tweedle-dee.org/svn/emacs.d/site-lisp/ +DISTFILES = $(GARNAME).el + +# 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 = + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +COMPILE_ELISP = 1 +ELISP_DIR = /opt/csw/share/emacs/site-lisp + +include gar/category.mk + +cp-extract-yaml-mode.el: $(WORKSRC) + @echo " ===> Copying yaml-mode.el into work source directory." + @cp $(DOWNLOADDIR)/yaml-mode.el $(WORKSRC) + @$(MAKECOOKIE) + +install-custom: + @( cd $(WORKSRC); \ + gmkdir -p $(DESTDIR)$(ELISP_DIR); \ + cp yaml-mode.el $(DESTDIR)$(ELISP_DIR) ) + @$(MAKECOOKIE) \ No newline at end of file Added: csw/mgar/pkg/yaml-mode/trunk/checksums =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/checksums (rev 0) +++ csw/mgar/pkg/yaml-mode/trunk/checksums 2009-08-12 14:46:26 UTC (rev 5997) @@ -0,0 +1 @@ +e7440fc74ef71a98429fe8bc0e3f6244 download/yaml-mode.el 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 Aug 12 17:11:40 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 15:11:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[5998] csw/mgar/pkg/python/trunk/Makefile Message-ID: Revision: 5998 http://gar.svn.sourceforge.net/gar/?rev=5998&view=rev Author: valholla Date: 2009-08-12 15:11:39 +0000 (Wed, 12 Aug 2009) Log Message: ----------- force to Studio 12 for non solaris 8 builds Modified Paths: -------------- csw/mgar/pkg/python/trunk/Makefile Modified: csw/mgar/pkg/python/trunk/Makefile =================================================================== --- csw/mgar/pkg/python/trunk/Makefile 2009-08-12 14:46:26 UTC (rev 5997) +++ csw/mgar/pkg/python/trunk/Makefile 2009-08-12 15:11:39 UTC (rev 5998) @@ -54,6 +54,10 @@ COMPILER_EXPORTS += BASECFLAGS +ifneq ($(shell uname -r), 5.8) + GARCOMPILER = SOS12 +endif + NOISALIST = 1 LD_OPTIONS = -R/opt/csw/lib export LD_OPTIONS 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 Aug 12 17:49:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 15:49:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[5999] csw/mgar/pkg/pysetuptools/trunk/Makefile Message-ID: Revision: 5999 http://gar.svn.sourceforge.net/gar/?rev=5999&view=rev Author: valholla Date: 2009-08-12 15:49:25 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix dependency on pydistutils Modified Paths: -------------- csw/mgar/pkg/pysetuptools/trunk/Makefile Modified: csw/mgar/pkg/pysetuptools/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:11:39 UTC (rev 5998) +++ csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:49:25 UTC (rev 5999) @@ -15,7 +15,7 @@ MASTER_SITES = http://cheeseshop.python.org/packages/source/s/setuptools/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -REQUIRED_PKGS_CSWpysetuptools = CSWpython +REQUIRED_PKGS_CSWpysetuptools = CSWpython CSWpydistutils PACKAGES = CSWpysetuptools CATALOGNAME_CSWpysetuptools = pysetuptools SPKG_DESC_CSWpysetuptools = Distribution Utiltiies for Python 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 Aug 12 17:51:44 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 15:51:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[6000] csw/mgar/pkg/pysetuptools/trunk/Makefile Message-ID: Revision: 6000 http://gar.svn.sourceforge.net/gar/?rev=6000&view=rev Author: valholla Date: 2009-08-12 15:51:44 +0000 (Wed, 12 Aug 2009) Log Message: ----------- ENABLE_CHECK to 0 pydistutils dependency is not installed Modified Paths: -------------- csw/mgar/pkg/pysetuptools/trunk/Makefile Modified: csw/mgar/pkg/pysetuptools/trunk/Makefile =================================================================== --- csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:49:25 UTC (rev 5999) +++ csw/mgar/pkg/pysetuptools/trunk/Makefile 2009-08-12 15:51:44 UTC (rev 6000) @@ -25,6 +25,8 @@ SPKG_CLASSES = none cswpycompile REQUIRED_PKGS += CSWcswclassutils +ENABLE_CHECK = 0 + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)(\d+(?:\.\d+)*) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Wed Aug 12 18:02:15 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Wed, 12 Aug 2009 16:02:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[6001] csw/mgar/pkg Message-ID: Revision: 6001 http://gar.svn.sourceforge.net/gar/?rev=6001&view=rev Author: wbonnet Date: 2009-08-12 16:02:15 +0000 (Wed, 12 Aug 2009) Log Message: ----------- Initial commit Added Paths: ----------- csw/mgar/pkg/seamonkey/ csw/mgar/pkg/seamonkey/branches/ csw/mgar/pkg/seamonkey/tags/ csw/mgar/pkg/seamonkey/trunk/ csw/mgar/pkg/seamonkey/trunk/Makefile csw/mgar/pkg/seamonkey/trunk/checksums csw/mgar/pkg/seamonkey/trunk/files/ Property changes on: csw/mgar/pkg/seamonkey/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/seamonkey/trunk/Makefile =================================================================== --- csw/mgar/pkg/seamonkey/trunk/Makefile (rev 0) +++ csw/mgar/pkg/seamonkey/trunk/Makefile 2009-08-12 16:02:15 UTC (rev 6001) @@ -0,0 +1,103 @@ +GARNAME = seamonkey +GARVERSION = 1.1.17 +CATEGORIES = x11 +DISTNAME = $(GARNAME) + +DESCRIPTION = Seamonkey all-in-one internet application suite +define BLURB +Web-browser, advanced e-mail and newsgroup client, IRC chat client, and HTML editing made simple -- all your Internet needs in one application. +endef + +DISTFILES = $(GARNAME)-$(GARVERSION).source.tar.bz2 +# DISTFILES += CSWseamonkey.postremove CSWseamonkey.postinstall + +# 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/seamonkey/releases/$(GARVERSION)/ +UPSTREAM_MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/seamonkey/releases/ + +PACKAGES = CSWseamonkey +CATALOGNAME_CSWseamonkey = $(GARNAME) +SPKG_DESC_CSWseamonkey = $(DESCRIPTION) + +# REQUIRED_PKGS_CSWseamonkey = CSWdbusglib +# REQUIRED_PKGS_CSWseamonkey += CSWfconfig +# REQUIRED_PKGS_CSWseamonkey += CSWftype2 +# REQUIRED_PKGS_CSWseamonkey += CSWgconf2 +# REQUIRED_PKGS_CSWseamonkey += CSWglib2 +# REQUIRED_PKGS_CSWseamonkey += CSWgnomevfs2 +# REQUIRED_PKGS_CSWseamonkey += CSWgtk2 +# REQUIRED_PKGS_CSWseamonkey += CSWlibatk +# REQUIRED_PKGS_CSWseamonkey += CSWlibcairo +# REQUIRED_PKGS_CSWseamonkey += CSWlibdbus +# REQUIRED_PKGS_CSWseamonkey += CSWlibgnome +# REQUIRED_PKGS_CSWseamonkey += CSWlibx11 +# REQUIRED_PKGS_CSWseamonkey += CSWlibxrender +# REQUIRED_PKGS_CSWseamonkey += CSWpango +# REQUIRED_PKGS_CSWseamonkey += CSWsqlite3rt + +# Defines the list of patches to be applied to the sources +# PATCHFILES = autoconf.mk.in.diff +# PATCHFILES += configure.diff +# PATCHFILES += nsPluginsDirUnix.cpp.diff +# PATCHFILES += packager.mk.diff +# PATCHFILES += jemalloc.c.diff +# PATCHFILES += nsMathUtils.h.diff +# PATCHFILES += file_id.cc.diff +# PATCHFILES += md5.h.diff +# PATCHFILES += solaris_lwp.h.diff +# PATCHFILES += nsNativeApSuportUnix.cpp.diff +# PATCHFILES += nsExceptionHandler.cpp.diff + +# pkg-config options +EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig + +PERL=/opt/csw/bin/perl +CXXFLAGS +=-xlibmil -xlibmopt -features=tmplife -norunpath +CFLAGS +=-xlibmil -D__solaris__ +CFLAGS += -DG_HAVE_ISO_VARARGS +CXXFLAGS += -DG_HAVE_ISO_VARARGS +CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include +XCFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + +EXTRA_CONFIGURE_EXPORTS = XCFLAGS + +LDFLAGS+=-L/usr/lib/lwp -L/opt/csw/mozilla/seamonkey/lib -R/opt/csw/mozilla/seamonkey/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 + +export PERL CFLAGS CXXFLAGS LDFLAGS + +CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/seamonkey --disable-crashreporter + +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 $(WORK_BUILD) +# @cp $(FILEDIR)/stdbool.h $(WORK_BUILD)/memory/jemalloc + @$(MAKECOOKIE) + +pre-configure: + @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig + +pre-install: + ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) + ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/seamonkey/bin/seamonkey . ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) + ( cp $(WORK_BUILD)/other-licenses/branding/seamonkey/mozicon128.png $(WORK_INSTALL)/opt/csw/share/pixmaps/seamonkey.png ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/applications ) + ( cp $(FILEDIR)/seamonkey.desktop $(WORK_INSTALL)/opt/csw/share/applications/seamonkey.desktop ) + ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) + ( cp $(FILEDIR)/seamonkey.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/seamonkey.keys ) + +post-install: + ( gfind $(WORK_INSTALL)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) + ( 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/seamonkey -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) + ( gfind $(WORK_INSTALL)/opt/csw/mozilla/seamonkey -name "*.jar" -exec bash -c "`pwd`/removeBuildPathFromJar.sh {} `pwd` $(WORKDIR) $(DISTNAME)" \; ) + +include gar/category.mk Added: csw/mgar/pkg/seamonkey/trunk/checksums =================================================================== --- csw/mgar/pkg/seamonkey/trunk/checksums (rev 0) +++ csw/mgar/pkg/seamonkey/trunk/checksums 2009-08-12 16:02:15 UTC (rev 6001) @@ -0,0 +1 @@ +9eba600ba6ca522b8eada9a0a8e890e2 download/seamonkey-1.1.17.source.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 Wed Aug 12 18:47:50 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 16:47:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[6002] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6002 http://gar.svn.sourceforge.net/gar/?rev=6002&view=rev Author: valholla Date: 2009-08-12 16:47:50 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix for class Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 16:02:15 UTC (rev 6001) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 16:47:50 UTC (rev 6002) @@ -37,7 +37,6 @@ REQUIRED_PKGS_CSWsendmail = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils CSWsendmailcommon REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils ARCHALL_CSWsendmailcommon = 1 -SPKG_CLASSES_CSWsendmail = none cswinitsmf cswosrel PROTOTYPE_FILTER = awk \ '$$$$2 ~/i.sol8/ { next } \ 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 Aug 12 19:02:43 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:02:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[6003] csw/mgar/pkg/sendmail/trunk/files/CSWsendmail. checkinstall Message-ID: Revision: 6003 http://gar.svn.sourceforge.net/gar/?rev=6003&view=rev Author: valholla Date: 2009-08-12 17:02:43 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix checkinstall Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 16:47:50 UTC (rev 6002) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 17:02:43 UTC (rev 6003) @@ -15,7 +15,7 @@ # Make env variables available to other packaging scripts cat >$1 < Revision: 6004 http://gar.svn.sourceforge.net/gar/?rev=6004&view=rev Author: bdwalton Date: 2009-08-12 17:04:24 +0000 (Wed, 12 Aug 2009) Log Message: ----------- add license; use pre-defined $(lispdir) Modified Paths: -------------- csw/mgar/pkg/yaml-mode/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt Modified: csw/mgar/pkg/yaml-mode/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:02:43 UTC (rev 6003) +++ csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:04:24 UTC (rev 6004) @@ -38,17 +38,17 @@ INSTALL_SCRIPTS = custom COMPILE_ELISP = 1 -ELISP_DIR = /opt/csw/share/emacs/site-lisp include gar/category.mk cp-extract-yaml-mode.el: $(WORKSRC) @echo " ===> Copying yaml-mode.el into work source directory." @cp $(DOWNLOADDIR)/yaml-mode.el $(WORKSRC) + @cp $(FILEDIR)/gpl* $(WORKSRC)/COPYING @$(MAKECOOKIE) install-custom: @( cd $(WORKSRC); \ - gmkdir -p $(DESTDIR)$(ELISP_DIR); \ - cp yaml-mode.el $(DESTDIR)$(ELISP_DIR) ) + gmkdir -p $(DESTDIR)$(lispdir); \ + cp yaml-mode.el $(DESTDIR)$(lispdir) ) @$(MAKECOOKIE) \ No newline at end of file Added: csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt (rev 0) +++ csw/mgar/pkg/yaml-mode/trunk/files/gpl-2.0.txt 2009-08-12 17:04:24 UTC (rev 6004) @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 Lesser 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 + + 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) + + 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., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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) year 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 Lesser General +Public License instead of this License. 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 Aug 12 19:10:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:10:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6005] csw/mgar/pkg/sendmail/trunk/files/CSWsendmail. checkinstall Message-ID: Revision: 6005 http://gar.svn.sourceforge.net/gar/?rev=6005&view=rev Author: valholla Date: 2009-08-12 17:10:29 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix checkinstall Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 17:04:24 UTC (rev 6004) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.checkinstall 2009-08-12 17:10:29 UTC (rev 6005) @@ -4,18 +4,21 @@ trap `exit 3` 15 # Assign Solaris release class to install release specific files -if [ `uname -r` = 5.8 ]; then +if [ `uname -r` = 5.8 ] +then CLASSES='none sol8 cswinitsmf' -elif [ `uname -r` = 5.9 ]; then +elif [ `uname -r` = 5.9 ] +then CLASSES='none sol9 cswinitsmf' -elif [ `uname -r` = 5.10 ]; then +elif [ `uname -r` = 5.10 ] +then CLASSES='none sol10 cswinitsmf' fi # Make env variables available to other packaging scripts cat >$1 < Revision: 6006 http://gar.svn.sourceforge.net/gar/?rev=6006&view=rev Author: bdwalton Date: 2009-08-12 17:23:29 +0000 (Wed, 12 Aug 2009) Log Message: ----------- yaml-mode: set deps on correct package name Modified Paths: -------------- csw/mgar/pkg/yaml-mode/trunk/Makefile Modified: csw/mgar/pkg/yaml-mode/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:10:29 UTC (rev 6005) +++ csw/mgar/pkg/yaml-mode/trunk/Makefile 2009-08-12 17:23:29 UTC (rev 6006) @@ -6,7 +6,7 @@ CATALOGNAME_CSWyamlmode = yaml_mode -REQUIRED_PKGS_CSWphpmode = CSWemacscommon +REQUIRED_PKGS_CSWyamlmode = CSWemacscommon ARCHALL_CSWyamlmode = 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 Wed Aug 12 19:23:34 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:23:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[6007] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6007 http://gar.svn.sourceforge.net/gar/?rev=6007&view=rev Author: valholla Date: 2009-08-12 17:23:34 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix missing checkinstall Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:23:29 UTC (rev 6006) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:23:34 UTC (rev 6007) @@ -19,7 +19,7 @@ DISTFILES = $(GARNAME).$(GARVERSION).tar.gz DISTFILES += README.CSW sendmail.schema DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh -DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) +DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) CSWsendmail.checkinstall DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) 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 Aug 12 19:24:31 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:24:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6008] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6008 http://gar.svn.sourceforge.net/gar/?rev=6008&view=rev Author: valholla Date: 2009-08-12 17:24:31 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix missing checkinstall checksum Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:23:34 UTC (rev 6007) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:24:31 UTC (rev 6008) @@ -1,3 +1,4 @@ +a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall 27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 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 Aug 12 19:26:51 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:26:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[6009] csw/mgar/pkg/munin/trunk Message-ID: Revision: 6009 http://gar.svn.sourceforge.net/gar/?rev=6009&view=rev Author: j_arndt Date: 2009-08-12 17:26:51 +0000 (Wed, 12 Aug 2009) Log Message: ----------- munin: typos fixed in postinstall script Modified Paths: -------------- csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-12 17:24:31 UTC (rev 6008) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-12 17:26:51 UTC (rev 6009) @@ -1,4 +1,4 @@ -473a91d70e616194bdcfd85af8081e15 download/CSWmuninmaster.postinstall +929bda5dc234904152566ab8865082db download/CSWmuninmaster.postinstall f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-12 17:24:31 UTC (rev 6008) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-12 17:26:51 UTC (rev 6009) @@ -9,9 +9,9 @@ To get Munin running, please follow these steps: -(1) Append the following line to the crontab of the user 'munin':" +(1) Append the following line to the crontab of the user 'munin': - 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron" + 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron (2) Edit the Apache configuration for Munin: "Normal" mode: /etc/opt/csw/munin/apache/apache.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 Wed Aug 12 19:39:23 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:39:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[6010] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6010 http://gar.svn.sourceforge.net/gar/?rev=6010&view=rev Author: valholla Date: 2009-08-12 17:39:22 +0000 (Wed, 12 Aug 2009) Log Message: ----------- tweaks Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:39:22 UTC (rev 6010) @@ -112,12 +112,11 @@ @# install the libraries @( for file in $(LIBFILES) ; do \ - ginstall -m 755 $(OBJDIR)/$$file $(DESTDIR)$(libdir) ; \ + ginstall -c -m 755 $(OBJDIR)/$$file $(DESTDIR)$(libdir) ; \ done ) @# install the binaries ginstall -m 755 $(OBJDIR)/$(BINFILES) $(DESTDIR)$(bindir) - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/newaliases ( for file in $(SBINFILES) ; do \ ginstall -m 755 $(OBJDIR)/$$file $(DESTDIR)$(sbindir) ; \ done ) @@ -133,6 +132,12 @@ mv $(DESTDIR)$(sbindir)/$$file $(DESTDIR)$(sbindir)/$(SOLVER).$$file;\ done ) + @# create links in bindir + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/newaliases + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/mailq + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/purgestats + ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/hoststat + @# install manpages ( for file in $(MANFILES1) ; do \ ginstall -m 644 $(OBJDIR)/$$file $(DESTDIR)$(mandir)/man1 ; \ Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-12 17:39:22 UTC (rev 6010) @@ -19,5 +19,6 @@ dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-12 17:39:22 UTC (rev 6010) @@ -19,5 +19,6 @@ dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-12 17:26:51 UTC (rev 6009) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-12 17:39:22 UTC (rev 6010) @@ -19,5 +19,6 @@ dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 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 Aug 12 19:40:26 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:40:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[6011] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6011 http://gar.svn.sourceforge.net/gar/?rev=6011&view=rev Author: valholla Date: 2009-08-12 17:40:26 +0000 (Wed, 12 Aug 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:39:22 UTC (rev 6010) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-12 17:40:26 UTC (rev 6011) @@ -1,7 +1,7 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -27994344f69c7c92382d57264c7debf8 download/CSWsendmail.i.sol10 -24ffe87e0881ffa3e0495eeede9a0602 download/CSWsendmail.i.sol8 -b3510dc2ae95e585bc922cab8c89b8f0 download/CSWsendmail.i.sol9 +10454c9eb3d165f2f22c2b9455bcfdcc download/CSWsendmail.i.sol10 +54c255c3fce635ee7d8ac11a75ba25f7 download/CSWsendmail.i.sol8 +b78ddd9dc3835093e6994cd57d9e6824 download/CSWsendmail.i.sol9 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space 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 Aug 12 19:55:58 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Wed, 12 Aug 2009 17:55:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[6012] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6012 http://gar.svn.sourceforge.net/gar/?rev=6012&view=rev Author: valholla Date: 2009-08-12 17:55:57 +0000 (Wed, 12 Aug 2009) Log Message: ----------- tweaks for install Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:40:26 UTC (rev 6011) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-12 17:55:57 UTC (rev 6012) @@ -132,12 +132,6 @@ mv $(DESTDIR)$(sbindir)/$$file $(DESTDIR)$(sbindir)/$(SOLVER).$$file;\ done ) - @# create links in bindir - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/newaliases - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/mailq - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/purgestats - ln -s $(libdir)/sendmail $(DESTDIR)$(bindir)/hoststat - @# install manpages ( for file in $(MANFILES1) ; do \ ginstall -m 644 $(OBJDIR)/$$file $(DESTDIR)$(mandir)/man1 ; \ @@ -167,6 +161,12 @@ @$(MAKECOOKIE) merge-OS: + @# create links in bindir + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/newaliases + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/mailq + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/purgestats + ln -s $(libdir)/sendmail $(PKGROOT)$(bindir)/hoststat + @# Install the other install trees ( for dir in `ls -d $(abspath $(WORKROOTDIR)/install*-$(MODULATION))` ; do \ ( if [ "x`echo $$dir |sed "s/.*install-\(5.[0-9]*\)-$(MODULATION).*/\1/"`x" != "x$(GAROSREL)x" ]; then \ 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 Aug 13 09:30:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:30:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[6013] csw/mgar/pkg/cswutils/trunk/Makefile Message-ID: Revision: 6013 http://gar.svn.sourceforge.net/gar/?rev=6013&view=rev Author: dmichelsen Date: 2009-08-13 07:30:35 +0000 (Thu, 13 Aug 2009) Log Message: ----------- cswutils: Update version Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2009-08-12 17:55:57 UTC (rev 6012) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2009-08-13 07:30:35 UTC (rev 6013) @@ -1,5 +1,5 @@ GARNAME = cswutils -GARVERSION = 1.14.2 +GARVERSION = 1.14.3 CATEGORIES = utils DESCRIPTION = Utilities for CSW maintainers 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 Aug 13 09:49:03 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:49:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[6014] csw/mgar/pkg/speex/trunk/Makefile Message-ID: Revision: 6014 http://gar.svn.sourceforge.net/gar/?rev=6014&view=rev Author: dmichelsen Date: 2009-08-13 07:49:03 +0000 (Thu, 13 Aug 2009) Log Message: ----------- speex: Fix revision in package name Modified Paths: -------------- csw/mgar/pkg/speex/trunk/Makefile Modified: csw/mgar/pkg/speex/trunk/Makefile =================================================================== --- csw/mgar/pkg/speex/trunk/Makefile 2009-08-13 07:30:35 UTC (rev 6013) +++ csw/mgar/pkg/speex/trunk/Makefile 2009-08-13 07:49:03 UTC (rev 6014) @@ -3,7 +3,8 @@ # $Id$ GARNAME = speex -GARVERSION = 1.2rc1 +GARVERSION = 1.2 +REV = rc1 CATEGORIES = lib DESCRIPTION = Speex audio codec support library @@ -11,7 +12,7 @@ endef MASTER_SITES = http://downloads.xiph.org/releases/speex/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-$(GARVERSION)$(REV).tar.gz # The important lines are these: # @@ -43,6 +44,8 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION)$(REV) + # 64-bit doesn't build on x86. BUILD64 = 1 CONFIGURE_ARGS = $(DIRPATHS) @@ -52,3 +55,6 @@ INSTALL_OVERRIDE_VAR_PACKAGE = libspeex include gar/category.mk + +SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) + 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 Aug 13 09:49:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:49:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6015] csw/mgar/pkg/curl/trunk Message-ID: Revision: 6015 http://gar.svn.sourceforge.net/gar/?rev=6015&view=rev Author: dmichelsen Date: 2009-08-13 07:49:18 +0000 (Thu, 13 Aug 2009) Log Message: ----------- curl: Update to 7.19.6 Modified Paths: -------------- csw/mgar/pkg/curl/trunk/Makefile csw/mgar/pkg/curl/trunk/checksums Modified: csw/mgar/pkg/curl/trunk/Makefile =================================================================== --- csw/mgar/pkg/curl/trunk/Makefile 2009-08-13 07:49:03 UTC (rev 6014) +++ csw/mgar/pkg/curl/trunk/Makefile 2009-08-13 07:49:18 UTC (rev 6015) @@ -1,5 +1,5 @@ GARNAME = curl -GARVERSION = 7.19.5 +GARVERSION = 7.19.6 CATEGORIES = net DESCRIPTION = Command line tool and library for client-side URL transfers. Modified: csw/mgar/pkg/curl/trunk/checksums =================================================================== --- csw/mgar/pkg/curl/trunk/checksums 2009-08-13 07:49:03 UTC (rev 6014) +++ csw/mgar/pkg/curl/trunk/checksums 2009-08-13 07:49:18 UTC (rev 6015) @@ -1,4 +1,4 @@ -426d161661dce70c8ea9ad8f553363a3 download/curl-7.19.5.tar.bz2 +8402c1f654c51ad7287aad57c3aa79be download/curl-7.19.6.tar.bz2 5aebb27149d80000d1107b58d65b551b download/curlbuild.h a09fcad6dfcd9636061dfab7598357be download/libcurl.so.2.0.2.i b46b41659b805013740eeb76e759af4b download/libcurl.so.2.0.2.s 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 Aug 13 09:52:18 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 13 Aug 2009 07:52:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6016] csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile Message-ID: Revision: 6016 http://gar.svn.sourceforge.net/gar/?rev=6016&view=rev Author: bonivart Date: 2009-08-13 07:52:18 +0000 (Thu, 13 Aug 2009) Log Message: ----------- Archive-Zip: fix dep to pm_iocompress, add license Modified Paths: -------------- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile Modified: csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-13 07:49:18 UTC (rev 6015) +++ csw/mgar/pkg/cpan/Archive-Zip/trunk/Makefile 2009-08-13 07:52:18 UTC (rev 6016) @@ -20,8 +20,9 @@ PACKAGES = CSWpmarchivezip CATALOGNAME = pm_archivezip ARCHALL = 1 +LICENSE = LICENSE -REQUIRED_PKGS = CSWiocompress +REQUIRED_PKGS = CSWpmiocompress # 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 bonivart at users.sourceforge.net Thu Aug 13 10:13:19 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 13 Aug 2009 08:13:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[6017] csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile Message-ID: Revision: 6017 http://gar.svn.sourceforge.net/gar/?rev=6017&view=rev Author: bonivart Date: 2009-08-13 08:13:19 +0000 (Thu, 13 Aug 2009) Log Message: ----------- libwww-perl: fix dep Modified Paths: -------------- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile Modified: csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-13 07:52:18 UTC (rev 6016) +++ csw/mgar/pkg/cpan/libwww-perl/trunk/Makefile 2009-08-13 08:13:19 UTC (rev 6017) @@ -17,6 +17,6 @@ PACKAGES = CSWpmlibwww ARCHALL = 1 -REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWiocompress CSWpmhtmlfmt CSWpmmimebase64 +REQUIRED_PKGS = CSWpmhtmltagset CSWpmuri CSWpmhtmlparser CSWpmiocompress CSWpmhtmlfmt CSWpmmimebase64 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 Aug 13 10:23:35 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 08:23:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[6018] csw/mgar/pkg/cpan/Archive-Tar/trunk Message-ID: Revision: 6018 http://gar.svn.sourceforge.net/gar/?rev=6018&view=rev Author: dmichelsen Date: 2009-08-13 08:23:35 +0000 (Thu, 13 Aug 2009) Log Message: ----------- cpan/Archive-Tar: Update to 1.52 Modified Paths: -------------- csw/mgar/pkg/cpan/Archive-Tar/trunk/Makefile csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums Property Changed: ---------------- csw/mgar/pkg/cpan/Archive-Tar/trunk/ Property changes on: csw/mgar/pkg/cpan/Archive-Tar/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/Archive-Tar/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Archive-Tar/trunk/Makefile 2009-08-13 08:13:19 UTC (rev 6017) +++ csw/mgar/pkg/cpan/Archive-Tar/trunk/Makefile 2009-08-13 08:23:35 UTC (rev 6018) @@ -1,9 +1,9 @@ GARNAME = Archive-Tar -GARVERSION = 1.30 +GARVERSION = 1.52 CATEGORIES = cpan AUTHOR = KANE -DESCRIPTION = module for manipulations of tar archives +DESCRIPTION = Module for manipulations of tar archives define BLURB Archive::Tar provides an object oriented mechanism for handling tar files. It provides class methods for quick and easy files handling while also @@ -12,8 +12,11 @@ compressed or gzipped tar files. endef -DISTFILES += $(call admfiles,CSWpmarchivetar,depend prototype) +REQUIRED_PKGS = CSWpmiozlib CSWpmiocompress CSWpmpkgconst CSWpmtextdiff -DEPENDS += cpan/IO-Zlib +PACKAGES = CSWpmarchivetar +CATALOGNAME = pm_archivetar +ARCHALL = 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums 2009-08-13 08:13:19 UTC (rev 6017) +++ csw/mgar/pkg/cpan/Archive-Tar/trunk/checksums 2009-08-13 08:23:35 UTC (rev 6018) @@ -1,4 +1 @@ -4d289076aaa5a98f8c6c469bcee3b321 download/CSWpmarchivetar.gspec -a4b49c92995dbe9ff3c4b5cceceab0f5 download/CSWpmarchivetar.depend -775d378c9530a63f9d340c3b552d75ee download/CSWpmarchivetar.prototype -89604ea8fadc990c7bb668259dacb439 download/Archive-Tar-1.30.tar.gz +a2bcf46c095f6b4ea747fc978a72d0da download/Archive-Tar-1.52.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 Aug 13 11:26:28 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 13 Aug 2009 09:26:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6019] csw/mgar/pkg/dhcp/trunk Message-ID: Revision: 6019 http://gar.svn.sourceforge.net/gar/?rev=6019&view=rev Author: bonivart Date: 2009-08-13 09:26:28 +0000 (Thu, 13 Aug 2009) Log Message: ----------- dhcp: update to 4.1.1 beta 2 Modified Paths: -------------- csw/mgar/pkg/dhcp/trunk/Makefile csw/mgar/pkg/dhcp/trunk/checksums Modified: csw/mgar/pkg/dhcp/trunk/Makefile =================================================================== --- csw/mgar/pkg/dhcp/trunk/Makefile 2009-08-13 08:23:35 UTC (rev 6018) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2009-08-13 09:26:28 UTC (rev 6019) @@ -1,5 +1,5 @@ GARNAME = dhcp -GARVERSION = 4.1.1b1 +GARVERSION = 4.1.1b2 CATEGORIES = net DESCRIPTION = ISC DHCP reference implementation @@ -16,6 +16,7 @@ PACKAGES = CSWdhcp CSWdhcpdevel CATALOGNAME_CSWdhcpdevel = dhcp_devel SPKG_DESC_CSWdhcp = ISC DHCP reference implementation +LICENSE = LICENSE REQUIRED_PKGS_CSWdhcp = CSWcswclassutils CSWosslrt REQUIRED_PKGS_CSWdhcpdevel = CSWdhcp @@ -61,7 +62,6 @@ mv dhcpd.conf dhcpd.conf.CSW ; \ mv dhclient.conf dhclient.conf.CSW ) @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) - @cp $(WORKSRC)/LICENSE $(DESTDIR)$(docdir)/$(GARNAME) @cp $(FILEDIR)/CSWdhcp.README.CSW $(DESTDIR)$(docdir)/$(GARNAME)/README.CSW @ginstall -d $(DESTDIR)/var/opt/csw/$(GARNAME)/db @touch $(DESTDIR)/var/opt/csw/$(GARNAME)/db/dhcpd.leases.CSW Modified: csw/mgar/pkg/dhcp/trunk/checksums =================================================================== --- csw/mgar/pkg/dhcp/trunk/checksums 2009-08-13 08:23:35 UTC (rev 6018) +++ csw/mgar/pkg/dhcp/trunk/checksums 2009-08-13 09:26:28 UTC (rev 6019) @@ -1 +1 @@ -20ee8a5328af03d528414d06883973fc download/dhcp-4.1.1b1.tar.gz +b85b23edc74514712139b860f74bc650 download/dhcp-4.1.1b2.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 Aug 13 11:50:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 09:50:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6020] csw/mgar/pkg/rcs/trunk/Makefile Message-ID: Revision: 6020 http://gar.svn.sourceforge.net/gar/?rev=6020&view=rev Author: dmichelsen Date: 2009-08-13 09:50:48 +0000 (Thu, 13 Aug 2009) Log Message: ----------- rcs: Force use of CSWdiffutils Modified Paths: -------------- csw/mgar/pkg/rcs/trunk/Makefile Modified: csw/mgar/pkg/rcs/trunk/Makefile =================================================================== --- csw/mgar/pkg/rcs/trunk/Makefile 2009-08-13 09:26:28 UTC (rev 6019) +++ csw/mgar/pkg/rcs/trunk/Makefile 2009-08-13 09:50:48 UTC (rev 6020) @@ -12,14 +12,21 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +REQUIRED_PKGS = CSWdiffutils + man1dir = $(mandir)/man1 man5dir = $(mandir)/man5 +DIFF = $(bindir)/gdiff +DIFF3 = $(bindir)/gdiff3 + NORUNPATH = 1 CONFIGURE_ARGS = --prefix=$(prefix) +CONFIGURE_ARGS += --with-diffutils TEST_TARGET = INSTALL_OVERRIDE_DIRS = prefix man1dir man5dir +BUILD_OVERRIDE_DIRS = DIFF DIFF3 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 Aug 13 14:58:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 13 Aug 2009 12:58:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[6021] csw/mgar/gar/v2/gar.mk Message-ID: Revision: 6021 http://gar.svn.sourceforge.net/gar/?rev=6021&view=rev Author: dmichelsen Date: 2009-08-13 12:58:39 +0000 (Thu, 13 Aug 2009) Log Message: ----------- mGAR v2: Fixes for consistent use of EXTRA_MERGE_* Modified Paths: -------------- csw/mgar/gar/v2/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-13 09:50:48 UTC (rev 6020) +++ csw/mgar/gar/v2/gar.mk 2009-08-13 12:58:39 UTC (rev 6021) @@ -522,9 +522,9 @@ MERGE_SCRIPTS_isa-$(ISA_DEFAULT) ?= copy-all $(EXTRA_MERGE_SCRIPTS_$(ISA_DEFAULT)) $(EXTRA_MERGE_SCRIPTS) else ISAEXEC_DIRS ?= $(if $(NO_ISAEXEC),,$(bindir) $(sbindir) $(libexecdir)) -MERGE_DIRS_isa-$(ISA_DEFAULT) ?= +MERGE_DIRS_isa-$(ISA_DEFAULT) ?= $(EXTRA_MERGE_DIRS) $(EXTRA_MERGE_DIRS_isa-$(ISA_DEFAULT)) MERGE_DIRS_isa-$(ISA) ?= $(bindir) $(sbindir) $(libexecdir) $(libdir) $(EXTRA_MERGE_DIRS) $(EXTRA_MERGE_DIRS_isa-$(ISA)) -MERGE_SCRIPTS_isa-$(ISA_DEFAULT) ?= copy-relocate $(EXTRA_MERGE_SCRIPTS_isa-$(ISA)) $(EXTRA_MERGE_SCRIPTS) +MERGE_SCRIPTS_isa-$(ISA_DEFAULT) ?= copy-relocate $(EXTRA_MERGE_SCRIPTS_isa-$(ISA_DEFAULT)) $(EXTRA_MERGE_SCRIPTS) MERGE_SCRIPTS_isa-$(ISA) ?= copy-relocated-only $(EXTRA_MERGE_SCRIPTS_isa-$(ISA)) $(EXTRA_MERGE_SCRIPTS) 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 Thu Aug 13 15:40:51 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 13:40:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[6022] csw/mgar/pkg/libssh2/trunk Message-ID: Revision: 6022 http://gar.svn.sourceforge.net/gar/?rev=6022&view=rev Author: valholla Date: 2009-08-13 13:40:51 +0000 (Thu, 13 Aug 2009) Log Message: ----------- update to version 1.2 Modified Paths: -------------- csw/mgar/pkg/libssh2/trunk/Makefile csw/mgar/pkg/libssh2/trunk/checksums Modified: csw/mgar/pkg/libssh2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libssh2/trunk/Makefile 2009-08-13 12:58:39 UTC (rev 6021) +++ csw/mgar/pkg/libssh2/trunk/Makefile 2009-08-13 13:40:51 UTC (rev 6022) @@ -1,5 +1,5 @@ GARNAME = libssh2 -GARVERSION = 1.1 +GARVERSION = 1.2 CATEGORIES = lib DESCRIPTION = A Library Implementing the SSH2 Protocol. @@ -10,7 +10,7 @@ SECSH-PUBLICKEY. endef -MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES = http://www.libssh2.org/download/ SPKG_SOURCEURL = http://www.libssh2.org DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz @@ -20,6 +20,7 @@ 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 Modified: csw/mgar/pkg/libssh2/trunk/checksums =================================================================== --- csw/mgar/pkg/libssh2/trunk/checksums 2009-08-13 12:58:39 UTC (rev 6021) +++ csw/mgar/pkg/libssh2/trunk/checksums 2009-08-13 13:40:51 UTC (rev 6022) @@ -1 +1 @@ -f8a3eb9bb814e0a5a2bb76a5423f5129 download/libssh2-1.1.tar.gz +751f4b5b5d8091f84cfe25fa52226cf9 download/libssh2-1.2.tar.gz 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 Aug 13 22:09:48 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 13 Aug 2009 20:09:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6023] csw/mgar/pkg/munin/trunk Message-ID: Revision: 6023 http://gar.svn.sourceforge.net/gar/?rev=6023&view=rev Author: j_arndt Date: 2009-08-13 20:09:48 +0000 (Thu, 13 Aug 2009) Log Message: ----------- munin: changed file location, minor fixes Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-13 20:09:48 UTC (rev 6023) @@ -89,4 +89,7 @@ @ginstall -m 644 $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/pkg/CSWmuninnode/cswusergroup @ginstall -d $(DESTDIR)/etc/opt/csw/init.d @ginstall -m 755 $(FILEDIR)/cswmuninnode $(DESTDIR)/etc/opt/csw/init.d/cswmuninnode + @ginstall -d $(DESTDIR)/opt/csw/share/munin/fonts + @ginstall -m 644 $(DESTDIR)/opt/csw/libexec/munin/VeraMono.ttf $(DESTDIR)/opt/csw/share/munin/fonts/VeraMono.ttf + @rm $(DESTDIR)/opt/csw/libexec/munin/VeraMono.ttf @$(MAKECOOKIE) Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/checksums 2009-08-13 20:09:48 UTC (rev 6023) @@ -1,5 +1,5 @@ -929bda5dc234904152566ab8865082db download/CSWmuninmaster.postinstall -f542a35d07f20348daa1460d32911d0a download/CSWmuninmaster.prototype +b494ca780b9becd6a8611e255e606dd4 download/CSWmuninmaster.postinstall +29939c1794e6c602d54effac74e5c89d download/CSWmuninmaster.prototype 6cb29ccba599b5ddcea7581197bf986d download/CSWmuninnode.prototype e6bafa4aa3cba7fc16e444ad168b4cd1 download/README.CSW 59409f4b412953283c3df4546fd4886c download/apache-munin-cgi.conf.CSW @@ -7,7 +7,7 @@ 50fa4a545f878d79e219891c6ac8d2d2 download/cswusergroup 4eb0923e09f12335da8249ab7923e250 download/makefile.config.diff 3ea1ba00633ac52c3a25306c3c9c52e0 download/makefile.diff -f44022c818a112b1121d10e1112e107e download/munin-graph.in.diff +064e12aa12bc7d4cb312b576ae658d1e download/munin-graph.in.diff ce97aa8e741383039fb365d1a322f3e7 download/munin-node.conf.in.diff 4688659429fbebf8cafcc8eb8a1ee870 download/munin-update.in.diff 737e3e3d2f68015dfb4e857909cde7da download/munin.conf.in.diff Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.postinstall 2009-08-13 20:09:48 UTC (rev 6023) @@ -14,19 +14,23 @@ 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /bin/test -x /opt/csw/bin/munin-cron && /opt/csw/bin/munin-cron (2) Edit the Apache configuration for Munin: - "Normal" mode: /etc/opt/csw/munin/apache/apache.conf + "Normal" mode: /etc/opt/csw/munin/apache/apache-munin.conf CGI mode: /etc/opt/csw/munin/apache/apache-munin-cgi.conf (These files should work by default) -(3) Add the following line to your Apache configuration +(3) Add the following line to your Apache configuration: - "Normal" mode: Include /etc/opt/csw/munin/apache/apache.conf + "Normal" mode: Include /etc/opt/csw/munin/apache/apache-munin.conf CGI mode: Include /etc/opt/csw/munin/apache/apache-munin-cgi.conf (4) Add the user your webserver is running under (nobody for Apache) to the group "munin" +(5) Restart your webserver: + + svcadm restart cswapache2 + # # # Modified: csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/files/CSWmuninmaster.prototype 2009-08-13 20:09:48 UTC (rev 6023) @@ -3,7 +3,7 @@ f cswpreserveconf /etc/opt/csw/munin/munin.conf.CSW 0644 root bin f none /opt/csw/bin/munin-check 0755 root bin f none /opt/csw/bin/munin-cron 0755 root bin -f none /opt/csw/libexec/munin/VeraMono.ttf 0755 root bin +f none /opt/csw/share/munin/fonts/VeraMono.ttf 0644 root bin f none /opt/csw/libexec/munin/munin-graph 0755 root bin f none /opt/csw/libexec/munin/munin-html 0755 root bin f none /opt/csw/libexec/munin/munin-limits 0755 root bin Modified: csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff =================================================================== --- csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff 2009-08-13 13:40:51 UTC (rev 6022) +++ csw/mgar/pkg/munin/trunk/files/munin-graph.in.diff 2009-08-13 20:09:48 UTC (rev 6023) @@ -1,12 +1,16 @@ diff --speed-large-files --minimal -Nru munin-1.3.4.orig/server/munin-graph.in munin-1.3.4/server/munin-graph.in --- munin-1.3.4.orig/server/munin-graph.in 2008-03-08 02:42:40.000000000 +0100 -+++ munin-1.3.4/server/munin-graph.in 2009-07-07 10:51:42.606467982 +0200 -@@ -827,7 +827,7 @@ ++++ munin-1.3.4/server/munin-graph.in 2009-08-13 20:59:35.901535076 +0200 +@@ -827,9 +827,9 @@ my @complete = (); if ($RRDkludge) { push (@complete, - '--font' ,'LEGEND:7:@@LIBDIR@@/VeraMono.ttf', +- '--font' ,'UNIT:7:@@LIBDIR@@/VeraMono.ttf', +- '--font' ,'AXIS:7:@@LIBDIR@@/VeraMono.ttf'); + '--font' ,'LEGEND:7:@@LIBDIR@@/monospace', - '--font' ,'UNIT:7:@@LIBDIR@@/VeraMono.ttf', - '--font' ,'AXIS:7:@@LIBDIR@@/VeraMono.ttf'); ++ '--font' ,'UNIT:7:/opt/csw/share/munin/fonts/VeraMono.ttf', ++ '--font' ,'AXIS:7:/opt/csw/share/munin/fonts/VeraMono.ttf'); } + push(@complete,'-W', $watermark) if $RRDs::VERSION >= 1.2; + 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 Aug 13 22:53:29 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 20:53:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6024] csw/mgar/pkg/subversion/trunk Message-ID: Revision: 6024 http://gar.svn.sourceforge.net/gar/?rev=6024&view=rev Author: valholla Date: 2009-08-13 20:53:28 +0000 (Thu, 13 Aug 2009) Log Message: ----------- update to 1.6.4 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-08-13 20:09:48 UTC (rev 6023) +++ csw/mgar/pkg/subversion/trunk/Makefile 2009-08-13 20:53:28 UTC (rev 6024) @@ -1,5 +1,5 @@ GARNAME = subversion -DISTVERSION = 1.6.3 +DISTVERSION = 1.6.4 GARVERSION = $(subst -,,$(DISTVERSION)) CATEGORIES = utils @@ -100,7 +100,7 @@ CONFIGURE_ARGS = $(DIRPATHS) --libdir=$(SVNLIB) --libexecdir=$(SVNLIB) CONFIGURE_ARGS += --disable-mod-activation CONFIGURE_ARGS += --disable-static -CONFIGURE_ARGS += --with-berkeley-db=db.h:/opt/csw/include:/opt/csw/lib:db-4.7 +CONFIGURE_ARGS += --with-berkeley-db=db.h:/opt/csw/include:/opt/csw/lib:db CONFIGURE_ARGS += --enable-javahl CONFIGURE_ARGS += --with-apr=$(prefix)/apache2/bin/apr-config CONFIGURE_ARGS += --with-apr-util=$(prefix)/apache2/bin/apu-config Modified: csw/mgar/pkg/subversion/trunk/checksums =================================================================== --- csw/mgar/pkg/subversion/trunk/checksums 2009-08-13 20:09:48 UTC (rev 6023) +++ csw/mgar/pkg/subversion/trunk/checksums 2009-08-13 20:53:28 UTC (rev 6024) @@ -4,6 +4,6 @@ 41ec540885de7c34625768aa1fb9682b download/fixme.sh f107831ad0c702ff32e51df6a207237b download/httpd-svn.conf.CSW f0aa58c145ae99f8e4d72499ab826169 download/javahl_headers_for_nested_classes.diff -8bf7637ac99368db0890e3f085fa690d download/subversion-1.6.3.tar.bz2 +11e3fa838c9a558cadc378f2807572e2 download/subversion-1.6.4.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 valholla at users.sourceforge.net Thu Aug 13 23:22:24 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 21:22:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[6025] csw/mgar/pkg/sendmail/trunk/files Message-ID: Revision: 6025 http://gar.svn.sourceforge.net/gar/?rev=6025&view=rev Author: valholla Date: 2009-08-13 21:22:21 +0000 (Thu, 13 Aug 2009) Log Message: ----------- file tweaks Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/cswsendmail csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW Modified: csw/mgar/pkg/sendmail/trunk/files/cswsendmail =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-13 20:53:28 UTC (rev 6024) +++ csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-13 21:22:21 UTC (rev 6025) @@ -6,13 +6,13 @@ #ident "@(#)sendmail 1.19 01/12/05 SMI" # Modified for CSW by Alex Moore 01/01/2004 +CSW_DIR="/opt/csw" ERRMSG1='WARNING: /var/mail is NFS-mounted without setting actimeo=0,' ERRMSG2='this can cause mailbox locking and access problems.' SERVER_PID_FILE="/var/run/sendmail.pid" -CLIENT_PID_FILE="/opt/csw/var/spool/clientmqueue/sm-client.pid" -DEFAULT_FILE="/opt/csw/etc/default/sendmail" -ALIASES_FILE="/opt/csw/etc/mail/aliases" -CSW_DIR="/opt/csw" +CLIENT_PID_FILE="/var${CSW_DIR}/spool/clientmqueue/sm-client.pid" +DEFAULT_FILE="${CSW_DIR}/etc/default/sendmail" +ALIASES_FILE="${CSW_DIR}/etc/mail/aliases" check_queue_interval_syntax() { @@ -34,14 +34,14 @@ ;; 'start') - if [ -f $CSW_DIR/lib/sendmail -a -f $CSW_DIR/etc/mail/sendmail.cf ]; then - if [ ! -d $CSW_DIR/var/spool/mqueue ]; then - /usr/bin/mkdir -pm 0750 $CSW_DIR/var/spool/mqueue - /usr/bin/chown root:bin $CSW_DIR/var/spool/mqueue + if [ -f ${CSW_DIR}/lib/sendmail -a -f ${CSW_DIR}/etc/mail/sendmail.cf ]; then + if [ ! -d /var${CSW_DIR}/spool/mqueue ]; then + /usr/bin/mkdir -pm 0750 /var${CSW_DIR}/spool/mqueue + /usr/bin/chown root:bin /var${CSW_DIR}/spool/mqueue fi if [ ! -f $ALIASES_FILE.db ] && [ ! -f $ALIASES_FILE.dir ] \ && [ ! -f $ALIASES_FILE.pag ]; then - $CSW_DIR/bin/newaliases + ${CSW_DIR}/bin/newaliases fi MODE="-bd" [ -f $DEFAULT_FILE ] && . $DEFAULT_FILE @@ -62,8 +62,8 @@ fi check_queue_interval_syntax $CLIENTQUEUEINTERVAL CLIENTQUEUEINTERVAL=$answer - $CSW_DIR/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & - $CSW_DIR/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & + ${CSW_DIR}/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & + ${CSW_DIR}/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & # # ETRN_HOSTS should be of the form # "s1:c1.1,c1.2 s2:c2.1 s3:c3.1,c3.2,c3.3" Modified: csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-13 20:53:28 UTC (rev 6024) +++ csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-13 21:22:21 UTC (rev 6025) @@ -65,7 +65,7 @@ Cwlocalhost # file containing names of hosts for which we receive email -Fw/etc/mail/local-host-names +Fw/opt/csw/etc/mail/local-host-names # my official domain name # ... define this only if sendmail cannot automatically determine your domain @@ -94,7 +94,7 @@ # Hosts for which relaying is permitted ($=R) -FR-o /etc/mail/relay-domains +FR-o /opt/csw/etc/mail/relay-domains # arithmetic map Karith arith @@ -139,7 +139,7 @@ O AliasWait=10 # location of alias file -O AliasFile=/etc/mail/aliases +O AliasFile=/opt/csw/etc/mail/aliases # minimum number of free blocks on filesystem O MinFreeBlocks=100 @@ -160,7 +160,7 @@ O DeliveryMode=background # error message header/file -#O ErrorHeader=/etc/mail/error-header +#O ErrorHeader=/opt/csw/etc/mail/error-header # error mode #O ErrorMode=print @@ -181,7 +181,7 @@ #O MaxHopCount=25 # location of help file -O HelpFile=/etc/mail/helpfile +O HelpFile=/opt/csw/etc/mail/helpfile # ignore dots as terminators in incoming messages? #O IgnoreDots=False @@ -335,7 +335,7 @@ #O DefaultUser=mailnull # list of locations of user database file (null means no lookup) -#O UserDatabaseSpec=/etc/mail/userdb +#O UserDatabaseSpec=/opt/csw/etc/mail/userdb # fallback MX host #O FallbackMXhost=fall.back.host.net @@ -383,7 +383,7 @@ #O DefaultCharSet=unknown-8bit # service switch file (name hardwired on Solaris, Ultrix, OSF/1, others) -#O ServiceSwitchFile=/etc/mail/service.switch +#O ServiceSwitchFile=/opt/csw/etc/mail/service.switch # hosts file (normally /etc/hosts) #O HostsFile=/etc/hosts @@ -497,7 +497,7 @@ #O AuthRealm # default authentication information for outgoing connections -#O DefaultAuthInfo=/etc/mail/default-auth-info +#O DefaultAuthInfo=/opt/csw/etc/mail/default-auth-info # SMTP AUTH flags #O AuthOptions @@ -557,7 +557,7 @@ ##################### # this is equivalent to setting class "t" -#Ft/etc/mail/trusted-users +#Ft/opt/csw/etc/mail/trusted-users Troot Tdaemon Tuucp Modified: csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-13 20:53:28 UTC (rev 6024) +++ csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-13 21:22:21 UTC (rev 6025) @@ -86,7 +86,7 @@ # Hosts for which relaying is permitted ($=R) -FR-o /etc/mail/relay-domains +FR-o /opt/csw/etc/mail/relay-domains # arithmetic map Karith arith @@ -131,7 +131,7 @@ O AliasWait=10 # location of alias file -#O AliasFile=/etc/mail/aliases +#O AliasFile=/opt/csw/etc/mail/aliases # minimum number of free blocks on filesystem O MinFreeBlocks=100 @@ -152,7 +152,7 @@ O DeliveryMode=i # error message header/file -#O ErrorHeader=/etc/mail/error-header +#O ErrorHeader=/opt/csw/etc/mail/error-header # error mode #O ErrorMode=print @@ -173,7 +173,7 @@ #O MaxHopCount=25 # location of help file -O HelpFile=/etc/mail/helpfile +O HelpFile=/opt/csw/etc/mail/helpfile # ignore dots as terminators in incoming messages? #O IgnoreDots=False @@ -327,7 +327,7 @@ #O DefaultUser=mailnull # list of locations of user database file (null means no lookup) -#O UserDatabaseSpec=/etc/mail/userdb +#O UserDatabaseSpec=/opt/csw/etc/mail/userdb # fallback MX host #O FallbackMXhost=fall.back.host.net @@ -375,7 +375,7 @@ #O DefaultCharSet=unknown-8bit # service switch file (name hardwired on Solaris, Ultrix, OSF/1, others) -#O ServiceSwitchFile=/etc/mail/service.switch +#O ServiceSwitchFile=/opt/csw/etc/mail/service.switch # hosts file (normally /etc/hosts) #O HostsFile=/etc/hosts @@ -489,7 +489,7 @@ #O AuthRealm # default authentication information for outgoing connections -#O DefaultAuthInfo=/etc/mail/default-auth-info +#O DefaultAuthInfo=/opt/csw/etc/mail/default-auth-info # SMTP AUTH flags #O AuthOptions @@ -549,7 +549,7 @@ ##################### # this is equivalent to setting class "t" -#Ft/etc/mail/trusted-users +#Ft/opt/csw/etc/mail/trusted-users Troot Tdaemon Tuucp 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 Aug 13 23:25:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Thu, 13 Aug 2009 21:25:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6026] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6026 http://gar.svn.sourceforge.net/gar/?rev=6026&view=rev Author: valholla Date: 2009-08-13 21:25:20 +0000 (Thu, 13 Aug 2009) Log Message: ----------- update checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-13 21:22:21 UTC (rev 6025) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-13 21:25:20 UTC (rev 6026) @@ -9,15 +9,15 @@ e89e68f3e0ae84d665c4ab898a8f3325 download/Sun-sendmail-deactivate.sh 1c3a63f98171aa28a2714995ee938a2c download/Sun-sendmail-reactivate.sh 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW -2592f7d191867c1d1c63ff16d818dcb5 download/cswsendmail +f29185ffb69e60c500f4b791894a12fa download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz -3c970e5b4e9831a8774906ed36e11f52 download/sendmail.cf.CSW +83532fac66f749a1532d461ce6bb2791 download/sendmail.cf.CSW 48851e45dca2a65a77f64f738bbf8d20 download/sendmail.schema ae82c974452cfdc7b4c5be2576154cdf download/site.config.m4 d41d8cd98f00b204e9800998ecf8427e download/sm-client.st.CSW d41d8cd98f00b204e9800998ecf8427e download/statistics.CSW -b64521d2a1365dc3f5f93b332e026054 download/submit.cf.CSW +3fe39c11ac0598f3f9fa26b2676a2704 download/submit.cf.CSW d41d8cd98f00b204e9800998ecf8427e download/trusted-users.CSW This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Aug 14 02:50:55 2009 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 14 Aug 2009 00:50:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6027] csw/mgar/pkg/git/trunk/Makefile Message-ID: Revision: 6027 http://gar.svn.sourceforge.net/gar/?rev=6027&view=rev Author: bdwalton Date: 2009-08-14 00:50:54 +0000 (Fri, 14 Aug 2009) Log Message: ----------- bump to 1.6.4, enable new asciidoc option Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2009-08-13 21:25:20 UTC (rev 6026) +++ csw/mgar/pkg/git/trunk/Makefile 2009-08-14 00:50:54 UTC (rev 6027) @@ -1,5 +1,5 @@ GARNAME = git -GARVERSION = 1.6.3.3 +GARVERSION = 1.6.4 #xPATCHLEVEL = rc3 CATEGORIES = devel @@ -102,6 +102,7 @@ BUILD_ARGS = MSGFMT=gmsgfmt SHELL_PATH=/opt/csw/bin/bash \ ETC_GITCONFIG=$(sysconfdir)/gitconfig V=1 \ + ASCIIDOC_NO_ROFF=YesPlease \ all doc INSTALL_ARGS = ETC_GITCONFIG=$(sysconfdir)/gitconfig \ 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 Aug 14 21:48:18 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 19:48:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6028] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6028 http://gar.svn.sourceforge.net/gar/?rev=6028&view=rev Author: valholla Date: 2009-08-14 19:48:18 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweak pacakge install Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/cswsendmail csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW Added Paths: ----------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 19:48:18 UTC (rev 6028) @@ -17,26 +17,24 @@ MY_CLASSES = CSWsendmail.i.sol8 CSWsendmail.i.sol9 CSWsendmail.i.sol10 DISTFILES = $(GARNAME).$(GARVERSION).tar.gz -DISTFILES += README.CSW sendmail.schema +DISTFILES += README.CSW sendmail.schema CSWsendmail.postinstall DISTFILES += Sun-sendmail-deactivate.sh Sun-sendmail-reactivate.sh DISTFILES += cswsendmail site.config.m4 $(MY_CLASSES) CSWsendmail.checkinstall DISTFILES += CSWsendmail.preremove CSWsendmail.preinstall CSWsendmail.space DISTFILES += $(foreach FILE,$(shell cd $(FILEDIR) && ls *.CSW),$(FILE)) -# We define upstream file regex so we can be notifed of new upstream software release +# We define upstream file regex so we can be notifed of +# new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz # we require -PACKAGES = CSWsendmail CSWsendmailcommon +PACKAGES = CSWsendmail SPKG_SOURCEURL = http://www.sendmail.org/ SPKG_DESC_CSWsendmail = $(DESCRIPTION) -SPKG_DESC_CSWsendmailcommon = $(DESCRIPTION) common files CATALOGNAME_CSWsendmail = sendmail -CATALOGNAME_CSWsendmailcommon = sendmail_common -REQUIRED_PKGS_CSWsendmail = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils CSWsendmailcommon -REQUIRED_PKGS_CSWsendmailcommon = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap CSWcswclassutils -ARCHALL_CSWsendmailcommon = 1 +REQUIRED_PKGS_CSWsendmail = CSWbdb CSWoldaprt CSWosslrt CSWsasl CSWtcpwrap +REQUIRED_PKGS_CSWsendmail = CSWcswclassutils PROTOTYPE_FILTER = awk \ '$$$$2 ~/i.sol8/ { next } \ @@ -52,11 +50,6 @@ { print "i i.sol9=CSWsendmail.i.sol9" } \ { print "i i.sol10=CSWsendmail.i.sol10" } } ' -PKGFILES_CSWsendmailcommon = .*$(sharedstatedir)/.* -PKGFILES_CSWsendmailcommon += .*$(mandir)/.* -PKGFILES_CSWsendmailcommon += .*$(sysconfdir)/.* -PKGFILES_CSWsendmailcommon += .*/clientmqueue/.* - ENABLE_CHECK = 0 # patch away GNUism @@ -108,7 +101,6 @@ ginstall -d $(DESTDIR)/var/opt/csw/spool/clientmqueue ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d - ginstall -d $(DESTDIR)$(sysconfdir)/mail @# install the libraries @( for file in $(LIBFILES) ; do \ @@ -154,9 +146,9 @@ @# install configurations, XXX missing submit.cf/sendmail.cf ( for file in `cd $(DOWNLOADDIR) && ls *.CSW`; do \ ginstall -m 644 $(DOWNLOADDIR)/$$file \ - $(DESTDIR)$(sysconfdir)/mail/$$file; \ + $(DESTDIR)/etc/mail/$$file; \ done ) - ( mv $(DESTDIR)$(sysconfdir)/mail/sm-client.st.CSW \ + ( mv $(DESTDIR)/etc/mail/sm-client.st.CSW \ $(DESTDIR)/var/opt/csw/spool/clientmqueue/ ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 19:48:18 UTC (rev 6028) @@ -1,7 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -10454c9eb3d165f2f22c2b9455bcfdcc download/CSWsendmail.i.sol10 -54c255c3fce635ee7d8ac11a75ba25f7 download/CSWsendmail.i.sol8 -b78ddd9dc3835093e6994cd57d9e6824 download/CSWsendmail.i.sol9 +0aab5819ec16ce027de89639ab07b92b download/CSWsendmail.i.sol10 +f7f3ab3921489804a0101689113eb1fd download/CSWsendmail.i.sol8 +d3a9427469f567764de86282d1df4666 download/CSWsendmail.i.sol9 +4481ed1568f2b46138aeaa3ef54567f6 download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space @@ -9,15 +10,15 @@ e89e68f3e0ae84d665c4ab898a8f3325 download/Sun-sendmail-deactivate.sh 1c3a63f98171aa28a2714995ee938a2c download/Sun-sendmail-reactivate.sh 2bfc78e0f774b7168e29628b6a18570a download/aliases.CSW -f29185ffb69e60c500f4b791894a12fa download/cswsendmail +f6aaf64942df693bfea12419f3746fc0 download/cswsendmail c816378b3028cbab410f72168b571775 download/helpfile.CSW d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz -83532fac66f749a1532d461ce6bb2791 download/sendmail.cf.CSW +c4519ecd5cfddf608928f002f5bca295 download/sendmail.cf.CSW 48851e45dca2a65a77f64f738bbf8d20 download/sendmail.schema ae82c974452cfdc7b4c5be2576154cdf download/site.config.m4 d41d8cd98f00b204e9800998ecf8427e download/sm-client.st.CSW d41d8cd98f00b204e9800998ecf8427e download/statistics.CSW -3fe39c11ac0598f3f9fa26b2676a2704 download/submit.cf.CSW +d26b6dfacd01430158a881c026f61dab download/submit.cf.CSW d41d8cd98f00b204e9800998ecf8427e download/trusted-users.CSW Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 19:48:18 UTC (rev 6028) @@ -20,5 +20,6 @@ echo $dest2 /usr/bin/cp $src $dest2 || exit 2 /usr/bin/chmod 0755 $dest2 -done +done | /usr/sbin/installf -c sol10 $PKGINST - +/usr/sbin/installf -f -c sol10 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 19:48:18 UTC (rev 6028) @@ -20,5 +20,6 @@ echo $dest2 /usr/bin/cp $src $dest2 || exit 2 /usr/bin/chmod 0755 $dest2 -done +done | /usr/sbin/installf -c sol8 $PKGINST - +/usr/sbin/installf -f -c sol8 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 19:48:18 UTC (rev 6028) @@ -20,5 +20,7 @@ echo $dest2 /usr/bin/cp $src $dest2 || exit 2 /usr/bin/chmod 0755 $dest2 -done +done | /usr/sbin/installf -c sol9 $PKGINST - +/usr/sbin/installf -f -c sol9 $PKGINST + exit 0 Added: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall (rev 0) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 19:48:18 UTC (rev 6028) @@ -0,0 +1,19 @@ +#!/bin/sh +PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin + +CONFDIR=/etc/mail + +for file in `cd ${CONFDIR} && ls *.CSW 2>/dev/null` +do + real_file="`echo ${file} |sed 's/\.CSW$//'`" + if [ ! -f ${CONFDIR}/${real_file} ] + then + cp ${CONFDIR}/${file} ${CONFDIR}/${real_file} + else + echo "Preserving ${real_file}..." + fi +done + +exit 0 + + Modified: csw/mgar/pkg/sendmail/trunk/files/cswsendmail =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/cswsendmail 2009-08-14 19:48:18 UTC (rev 6028) @@ -6,13 +6,12 @@ #ident "@(#)sendmail 1.19 01/12/05 SMI" # Modified for CSW by Alex Moore 01/01/2004 -CSW_DIR="/opt/csw" ERRMSG1='WARNING: /var/mail is NFS-mounted without setting actimeo=0,' ERRMSG2='this can cause mailbox locking and access problems.' SERVER_PID_FILE="/var/run/sendmail.pid" -CLIENT_PID_FILE="/var${CSW_DIR}/spool/clientmqueue/sm-client.pid" -DEFAULT_FILE="${CSW_DIR}/etc/default/sendmail" -ALIASES_FILE="${CSW_DIR}/etc/mail/aliases" +CLIENT_PID_FILE="/var/opt/csw/spool/clientmqueue/sm-client.pid" +DEFAULT_FILE="/opt/csw/etc/default/sendmail" +ALIASES_FILE="/opt/csw/etc/mail/aliases" check_queue_interval_syntax() { @@ -34,14 +33,14 @@ ;; 'start') - if [ -f ${CSW_DIR}/lib/sendmail -a -f ${CSW_DIR}/etc/mail/sendmail.cf ]; then - if [ ! -d /var${CSW_DIR}/spool/mqueue ]; then - /usr/bin/mkdir -pm 0750 /var${CSW_DIR}/spool/mqueue - /usr/bin/chown root:bin /var${CSW_DIR}/spool/mqueue + if [ -f /opt/csw/lib/sendmail -a -f /opt/csw/etc/mail/sendmail.cf ]; then + if [ ! -d /var/opt/csw/spool/mqueue ]; then + /usr/bin/mkdir -pm 0750 /var/opt/csw/spool/mqueue + /usr/bin/chown root:bin /var/opt/csw/spool/mqueue fi if [ ! -f $ALIASES_FILE.db ] && [ ! -f $ALIASES_FILE.dir ] \ && [ ! -f $ALIASES_FILE.pag ]; then - ${CSW_DIR}/bin/newaliases + /opt/csw/bin/newaliases fi MODE="-bd" [ -f $DEFAULT_FILE ] && . $DEFAULT_FILE @@ -62,8 +61,8 @@ fi check_queue_interval_syntax $CLIENTQUEUEINTERVAL CLIENTQUEUEINTERVAL=$answer - ${CSW_DIR}/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & - ${CSW_DIR}/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & + /opt/csw/lib/sendmail -L sm-mta $MODE -q$QUEUEOPTION$QUEUEINTERVAL $OPTIONS & + /opt/csw/lib/sendmail -L sm-msp -Ac -q$CLIENTQUEUEINTERVAL $CLIENTOPTIONS & # # ETRN_HOSTS should be of the form # "s1:c1.1,c1.2 s2:c2.1 s3:c3.1,c3.2,c3.3" @@ -99,7 +98,7 @@ kill `head -1 $CLIENT_PID_FILE` rm -f $CLIENT_PID_FILE fi - /usr/bin/pkill -x -u 0 sendmail + /usr/bin/pkill -x -u smmsp sendmail ;; *) Modified: csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 19:48:18 UTC (rev 6028) @@ -44,7 +44,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10/Berkeley +V10 # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred Modified: csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 00:50:54 UTC (rev 6027) +++ csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 19:48:18 UTC (rev 6028) @@ -38,7 +38,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10/Berkeley +V10 # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred 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 Aug 14 22:15:18 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 20:15:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6029] csw/mgar/pkg/sendmail/trunk/Makefile Message-ID: Revision: 6029 http://gar.svn.sourceforge.net/gar/?rev=6029&view=rev Author: valholla Date: 2009-08-14 20:15:18 +0000 (Fri, 14 Aug 2009) Log Message: ----------- fix missing dir Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 19:48:18 UTC (rev 6028) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 20:15:18 UTC (rev 6029) @@ -101,6 +101,7 @@ ginstall -d $(DESTDIR)/var/opt/csw/spool/clientmqueue ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d + ginstall -d $(DESTDIR)/etc/mail @# install the libraries @( for file in $(LIBFILES) ; do \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Fri Aug 14 22:34:56 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Fri, 14 Aug 2009 20:34:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[6030] csw/mgar/pkg/ldns/trunk Message-ID: Revision: 6030 http://gar.svn.sourceforge.net/gar/?rev=6030&view=rev Author: idogan23 Date: 2009-08-14 20:34:56 +0000 (Fri, 14 Aug 2009) Log Message: ----------- ldns: bump version to 1.6.1 Modified Paths: -------------- csw/mgar/pkg/ldns/trunk/Makefile csw/mgar/pkg/ldns/trunk/checksums Modified: csw/mgar/pkg/ldns/trunk/Makefile =================================================================== --- csw/mgar/pkg/ldns/trunk/Makefile 2009-08-14 20:15:18 UTC (rev 6029) +++ csw/mgar/pkg/ldns/trunk/Makefile 2009-08-14 20:34:56 UTC (rev 6030) @@ -1,5 +1,5 @@ GARNAME = ldns -GARVERSION = 1.6.0 +GARVERSION = 1.6.1 CATEGORIES = lib DESCRIPTION = A library for programs conforming to DNS RFCs and drafts Modified: csw/mgar/pkg/ldns/trunk/checksums =================================================================== --- csw/mgar/pkg/ldns/trunk/checksums 2009-08-14 20:15:18 UTC (rev 6029) +++ csw/mgar/pkg/ldns/trunk/checksums 2009-08-14 20:34:56 UTC (rev 6030) @@ -1,2 +1,2 @@ b5516aacfa819947cbfb6d0c34f0c546 download/CSWldns.doxyparse.diff -cd0d4d34a60d018fbfedae6d3ee4049b download/ldns-1.6.0.tar.gz +a44dafecdcc49aaea5d20ae15bc738c0 download/ldns-1.6.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 Fri Aug 14 23:17:33 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:17:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[6031] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6031 http://gar.svn.sourceforge.net/gar/?rev=6031&view=rev Author: valholla Date: 2009-08-14 21:17:32 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweaks Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW csw/mgar/pkg/sendmail/trunk/files/site.config.m4 csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 21:17:32 UTC (rev 6031) @@ -101,7 +101,7 @@ ginstall -d $(DESTDIR)/var/opt/csw/spool/clientmqueue ginstall -d $(DESTDIR)$(sharedstatedir)/mail ginstall -d $(DESTDIR)/etc/opt/csw/init.d - ginstall -d $(DESTDIR)/etc/mail + ginstall -d $(DESTDIR)$(sysconfdir)/mail @# install the libraries @( for file in $(LIBFILES) ; do \ @@ -147,9 +147,9 @@ @# install configurations, XXX missing submit.cf/sendmail.cf ( for file in `cd $(DOWNLOADDIR) && ls *.CSW`; do \ ginstall -m 644 $(DOWNLOADDIR)/$$file \ - $(DESTDIR)/etc/mail/$$file; \ + $(DESTDIR)$(sysconfdir)/mail/$$file; \ done ) - ( mv $(DESTDIR)/etc/mail/sm-client.st.CSW \ + ( mv $(DESTDIR)$(sysconfdir)/mail/sm-client.st.CSW \ $(DESTDIR)/var/opt/csw/spool/clientmqueue/ ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,8 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -0aab5819ec16ce027de89639ab07b92b download/CSWsendmail.i.sol10 -f7f3ab3921489804a0101689113eb1fd download/CSWsendmail.i.sol8 -d3a9427469f567764de86282d1df4666 download/CSWsendmail.i.sol9 -4481ed1568f2b46138aeaa3ef54567f6 download/CSWsendmail.postinstall +255bd920bcc53ac59c77baaddaef4a9a download/CSWsendmail.i.sol10 +03b75dfa8a856c960798b9080ec665b6 download/CSWsendmail.i.sol8 +e81aadce9e5c295e3aed9c06dff25426 download/CSWsendmail.i.sol9 +a1d58264002e59e2f3ee6694a925c154 download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space @@ -15,10 +15,10 @@ d41d8cd98f00b204e9800998ecf8427e download/local-host-names.CSW 95c787a371c63caebc5d76faddba08e4 download/patch-CC-M.m4 a5ee5d26e1f546a2da5fb9a513bd6bce download/sendmail.8.14.3.tar.gz -c4519ecd5cfddf608928f002f5bca295 download/sendmail.cf.CSW +83532fac66f749a1532d461ce6bb2791 download/sendmail.cf.CSW 48851e45dca2a65a77f64f738bbf8d20 download/sendmail.schema -ae82c974452cfdc7b4c5be2576154cdf download/site.config.m4 +4dd792981f89ffa8b4602999a7c79441 download/site.config.m4 d41d8cd98f00b204e9800998ecf8427e download/sm-client.st.CSW d41d8cd98f00b204e9800998ecf8427e download/statistics.CSW -d26b6dfacd01430158a881c026f61dab download/submit.cf.CSW +3fe39c11ac0598f3f9fa26b2676a2704 download/submit.cf.CSW d41d8cd98f00b204e9800998ecf8427e download/trusted-users.CSW Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,14 +1,3 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh # echo "Installing class ." while read src dest @@ -18,8 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 + /usr/bin/mv $src $dest2 || exit 2 + /usr/bin/chmod 0755 $dest2 || exit 2 + /usr/sbin/removef -c sol10 $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol10 $PKGINST - /usr/sbin/installf -f -c sol10 $PKGINST +/usr/sbin/removef -f -c sol10 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,14 +1,3 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh # echo "Installing class ." while read src dest @@ -19,7 +8,9 @@ dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 + /usr/bin/chmod 0755 $dest2 || exit 2 + /usr/sbin/removef -c sol8 $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol8 $PKGINST - /usr/sbin/installf -f -c sol8 $PKGINST +/usr/sbin/removef -f -c sol8 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,14 +1,3 @@ -# PKGINST parameter provided by installation services -# Move the Solaris 9 version specific files to the base directory. -# The files specific to Solaris release are: -# bin/vacation -# sbin/editmap -# sbin/mailstats -# sbin/makemap -# sbin/praliases -# lib/mail.local -# lib/sendmail -# lib/smrsh # echo "Installing class ." while read src dest @@ -19,8 +8,10 @@ dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 + /usr/bin/chmod 0755 $dest2 || exit 2 + /usr/sbin/removef -c sol9 $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol9 $PKGINST - /usr/sbin/installf -f -c sol9 $PKGINST +/usr/sbin/removef -f -c sol9 $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:17:32 UTC (rev 6031) @@ -1,7 +1,7 @@ #!/bin/sh PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin -CONFDIR=/etc/mail +CONFDIR=/opt/csw/etc/mail for file in `cd ${CONFDIR} && ls *.CSW 2>/dev/null` do @@ -14,6 +14,11 @@ fi done +echo "** IMPORTANT **" +echo "This package no longer replaces Sun's sendmail files." +echo "Be sure to Deactivate Sun's Sendmail program." +echo + exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/sendmail.cf.CSW 2009-08-14 21:17:32 UTC (rev 6031) @@ -44,7 +44,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10 +V10/Berkeley # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred Modified: csw/mgar/pkg/sendmail/trunk/files/site.config.m4 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/site.config.m4 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/site.config.m4 2009-08-14 21:17:32 UTC (rev 6031) @@ -21,14 +21,14 @@ APPENDDEF(`confLIBDIRS', `-L/opt/csw/lib -R/opt/csw/lib') APPENDDEF(`confINCDIRS', `-I/opt/csw/include') APPENDDEF(`conf_sendmail_ENVDEF', `-I/opt/csw/include') -dnl we should not need this.. -dnl APPENDDEF(`confLIBDIRS', `-L/opt/csw/bdb44/lib -R/opt/csw/bdb44/lib') -dnl APPENDDEF(`confINCDIRS', `-I/opt/csw/bdb44/include') dnl ### add NIS/NIS+ support APPENDDEF(`confENVDEF', `-DNIS') APPENDDEF(`confENVDEF', `-DNISPLUS') +dnl ### use our sendmail.cf path +APPENDDEF(`confENVDEF', `-DUSE_VENDOR_CF_PATH') + dnl ### add LDAP support APPENDDEF(`conf_libsm_ENVDEF', `-DLDAPMAP') APPENDDEF(`conf_sendmail_ENVDEF', `-DLDAPMAP') Modified: csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 20:34:56 UTC (rev 6030) +++ csw/mgar/pkg/sendmail/trunk/files/submit.cf.CSW 2009-08-14 21:17:32 UTC (rev 6031) @@ -38,7 +38,7 @@ ##### $Id: proto.m4,v 8.734 2008/01/24 23:42:01 ca Exp $ ##### # level 10 config file format -V10 +V10/Berkeley # override file safeties - setting this option compromises system security, # addressing the actual file configuration problem is preferred 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 Aug 14 23:30:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:30:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6032] csw/mgar/pkg/sendmail/trunk/files Message-ID: Revision: 6032 http://gar.svn.sourceforge.net/gar/?rev=6032&view=rev Author: valholla Date: 2009-08-14 21:30:21 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweak class files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:17:32 UTC (rev 6031) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:30:21 UTC (rev 6032) @@ -7,10 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 - /usr/bin/mv $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 || exit 2 - /usr/sbin/removef -c sol10 $PKGINST $src >/dev/null || exit 2 + /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/rm -f $src + /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol10 $PKGINST - /usr/sbin/installf -f -c sol10 $PKGINST -/usr/sbin/removef -f -c sol10 $PKGINST +/usr/sbin/removef -f $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:17:32 UTC (rev 6031) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:30:21 UTC (rev 6032) @@ -7,10 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 || exit 2 - /usr/sbin/removef -c sol8 $PKGINST $src >/dev/null || exit 2 + /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/rm -f $src + /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol8 $PKGINST - /usr/sbin/installf -f -c sol8 $PKGINST -/usr/sbin/removef -f -c sol8 $PKGINST +/usr/sbin/removef -f $PKGINST exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:17:32 UTC (rev 6031) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:30:21 UTC (rev 6032) @@ -7,11 +7,10 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 - /usr/bin/cp $src $dest2 || exit 2 - /usr/bin/chmod 0755 $dest2 || exit 2 - /usr/sbin/removef -c sol9 $PKGINST $src >/dev/null || exit 2 + /usr/bin/cp -p $src $dest2 || exit 2 + /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 done | /usr/sbin/installf -c sol9 $PKGINST - /usr/sbin/installf -f -c sol9 $PKGINST -/usr/sbin/removef -f -c sol9 $PKGINST +/usr/sbin/removef -f $PKGINST 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 Aug 14 23:31:12 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:31:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[6033] csw/mgar/pkg/sendmail/trunk/checksums Message-ID: Revision: 6033 http://gar.svn.sourceforge.net/gar/?rev=6033&view=rev Author: valholla Date: 2009-08-14 21:31:12 +0000 (Fri, 14 Aug 2009) Log Message: ----------- fix checksums Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:30:21 UTC (rev 6032) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:31:12 UTC (rev 6033) @@ -1,7 +1,7 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -255bd920bcc53ac59c77baaddaef4a9a download/CSWsendmail.i.sol10 -03b75dfa8a856c960798b9080ec665b6 download/CSWsendmail.i.sol8 -e81aadce9e5c295e3aed9c06dff25426 download/CSWsendmail.i.sol9 +ab9a267a567696147a4338fc227c1493 download/CSWsendmail.i.sol10 +776bf7c6af3389b9ba7369188a35c61f download/CSWsendmail.i.sol8 +da276cb497e869ddcd478e4a0c39329b download/CSWsendmail.i.sol9 a1d58264002e59e2f3ee6694a925c154 download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove 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 Aug 14 23:55:25 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 21:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6034] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6034 http://gar.svn.sourceforge.net/gar/?rev=6034&view=rev Author: valholla Date: 2009-08-14 21:55:24 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweaking pacakge files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:55:24 UTC (rev 6034) @@ -1,8 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -ab9a267a567696147a4338fc227c1493 download/CSWsendmail.i.sol10 -776bf7c6af3389b9ba7369188a35c61f download/CSWsendmail.i.sol8 -da276cb497e869ddcd478e4a0c39329b download/CSWsendmail.i.sol9 -a1d58264002e59e2f3ee6694a925c154 download/CSWsendmail.postinstall +010a319390da36f704b929bc39ec3cd4 download/CSWsendmail.i.sol10 +f710fa2b1715480eea79242d4e31564c download/CSWsendmail.i.sol8 +7becfceb90cc0dcf719312f6754342bb download/CSWsendmail.i.sol9 +1e48aef4cf17d99098a666f2cfd219fd download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:55:24 UTC (rev 6034) @@ -8,9 +8,5 @@ dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 /usr/bin/cp -p $src $dest2 || exit 2 - /usr/bin/rm -f $src - /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 -done | /usr/sbin/installf -c sol10 $PKGINST - -/usr/sbin/installf -f -c sol10 $PKGINST -/usr/sbin/removef -f $PKGINST +done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:55:24 UTC (rev 6034) @@ -8,9 +8,5 @@ dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 /usr/bin/cp -p $src $dest2 || exit 2 - /usr/bin/rm -f $src - /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 -done | /usr/sbin/installf -c sol8 $PKGINST - -/usr/sbin/installf -f -c sol8 $PKGINST -/usr/sbin/removef -f $PKGINST +done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:55:24 UTC (rev 6034) @@ -8,9 +8,6 @@ dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 /usr/bin/cp -p $src $dest2 || exit 2 - /usr/sbin/removef $PKGINST $src >/dev/null || exit 2 -done | /usr/sbin/installf -c sol9 $PKGINST - -/usr/sbin/installf -f -c sol9 $PKGINST -/usr/sbin/removef -f $PKGINST +done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:31:12 UTC (rev 6033) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:55:24 UTC (rev 6034) @@ -2,6 +2,7 @@ PATH=/bin:/usr/bin:/opt/csw/bin:/sbin:/usr/sbin:/opt/csw/sbin CONFDIR=/opt/csw/etc/mail +SOLVER="sol`uname -r |sed 's/5\.//'`" for file in `cd ${CONFDIR} && ls *.CSW 2>/dev/null` do @@ -14,10 +15,37 @@ fi done -echo "** IMPORTANT **" -echo "This package no longer replaces Sun's sendmail files." -echo "Be sure to Deactivate Sun's Sendmail program." -echo +## Fixing package Dtabase +echo "Notify Package Dtabase about file renaming" +installf -c ${SOLVER} $PKGINST /opt/csw/bin/vacation +installf -c ${SOLVER} $PKGINST /opt/csw/lib/mail.local +installf -c ${SOLVER} $PKGINST /opt/csw/lib/rmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/sendmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/smrsh +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/mailstats +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/praliases +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/editmap +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/makemap +installf -f -c ${SOLVER} $PKGINST +rm -f /opt/csw/bin/${SOLVER}.vacation +removef $PKGINST /opt/csw/bin/${SOLVER}.vacation +rm -f /opt/csw/lib/${SOLVER}.mail.local +removef $PKGINST /opt/csw/lib/${SOLVER}.mail.local +rm -f /opt/csw/lib/${SOLVER}.rmail +removef $PKGINST /opt/csw/lib/${SOLVER}.rmail +rm -f /opt/csw/lib/${SOLVER}.sendmail +removef $PKGINST /opt/csw/lib/${SOLVER}.sendmail +rm -f /opt/csw/lib/${SOLVER}.smrsh +removef $PKGINST /opt/csw/lib/${SOLVER}.smrsh +rm -f /opt/csw/sbin/${SOLVER}.mailstats +removef $PKGINST /opt/csw/sbin/${SOLVER}.mailstats +rm -f /opt/csw/sbin/${SOLVER}.praliases +removef $PKGINST /opt/csw/sbin/${SOLVER}.praliases +rm -f /opt/csw/sbin/${SOLVER}.editmap +removef $PKGINST /opt/csw/sbin/${SOLVER}.editmap +rm -f /opt/csw/sbin/${SOLVER}.makemap +removef $PKGINST /opt/csw/sbin/${SOLVER}.makemap +removef -f $PKGINST 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 Sat Aug 15 00:32:21 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 14 Aug 2009 22:32:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6035] csw/mgar/pkg/sendmail/trunk Message-ID: Revision: 6035 http://gar.svn.sourceforge.net/gar/?rev=6035&view=rev Author: valholla Date: 2009-08-14 22:32:21 +0000 (Fri, 14 Aug 2009) Log Message: ----------- tweaks pacakge files Modified Paths: -------------- csw/mgar/pkg/sendmail/trunk/Makefile csw/mgar/pkg/sendmail/trunk/checksums csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall Modified: csw/mgar/pkg/sendmail/trunk/Makefile =================================================================== --- csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/Makefile 2009-08-14 22:32:21 UTC (rev 6035) @@ -44,7 +44,6 @@ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \ $$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ - $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print } \ END { { print "i i.sol8=CSWsendmail.i.sol8" } \ { print "i i.sol9=CSWsendmail.i.sol9" } \ Modified: csw/mgar/pkg/sendmail/trunk/checksums =================================================================== --- csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/checksums 2009-08-14 22:32:21 UTC (rev 6035) @@ -1,8 +1,8 @@ a9885ac08bd1f1d08e1e6fe0c5608408 download/CSWsendmail.checkinstall -010a319390da36f704b929bc39ec3cd4 download/CSWsendmail.i.sol10 -f710fa2b1715480eea79242d4e31564c download/CSWsendmail.i.sol8 -7becfceb90cc0dcf719312f6754342bb download/CSWsendmail.i.sol9 -1e48aef4cf17d99098a666f2cfd219fd download/CSWsendmail.postinstall +c3da08ce0fb744123b3389dfdcaa22f7 download/CSWsendmail.i.sol10 +d0ddc9602bfbefac87467a418cc577cb download/CSWsendmail.i.sol8 +81131c94c1b339f08474bfc6a1ed934c download/CSWsendmail.i.sol9 +bd7692abc055a1da40d938379e92b12f download/CSWsendmail.postinstall 4c53e32ed6b4ac66c35d5079ebcb548d download/CSWsendmail.preinstall 644a174b1a1e74ef8655ea0002aff8f7 download/CSWsendmail.preremove f49c3339aa897df97abf1baf54582fb8 download/CSWsendmail.space Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol10 2009-08-14 22:32:21 UTC (rev 6035) @@ -7,6 +7,6 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol10.//g'`" || exit 2 echo $dest2 - /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/cp $src $dest2 || exit 2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol8 2009-08-14 22:32:21 UTC (rev 6035) @@ -7,6 +7,6 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol8.//g'`" || exit 2 echo $dest2 - /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/cp $src $dest2 || exit 2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.i.sol9 2009-08-14 22:32:21 UTC (rev 6035) @@ -7,7 +7,7 @@ # Copy the version specific file to the original name dest2="`echo $dest | sed 's/sol9.//g'`" || exit 2 echo $dest2 - /usr/bin/cp -p $src $dest2 || exit 2 + /usr/bin/cp $src $dest2 || exit 2 done exit 0 Modified: csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall =================================================================== --- csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 21:55:24 UTC (rev 6034) +++ csw/mgar/pkg/sendmail/trunk/files/CSWsendmail.postinstall 2009-08-14 22:32:21 UTC (rev 6035) @@ -15,34 +15,71 @@ fi done -## Fixing package Dtabase -echo "Notify Package Dtabase about file renaming" -installf -c ${SOLVER} $PKGINST /opt/csw/bin/vacation -installf -c ${SOLVER} $PKGINST /opt/csw/lib/mail.local -installf -c ${SOLVER} $PKGINST /opt/csw/lib/rmail -installf -c ${SOLVER} $PKGINST /opt/csw/lib/sendmail -installf -c ${SOLVER} $PKGINST /opt/csw/lib/smrsh -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/mailstats -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/praliases -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/editmap -installf -c ${SOLVER} $PKGINST /opt/csw/sbin/makemap +echo "Updating Package Dtabase for /opt/csw/bin/vacation" +chmod 0555 /opt/csw/bin/vacation +chown root:bin /opt/csw/bin/vacation +installf -c ${SOLVER} $PKGINST /opt/csw/bin/vacation f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/mail.local" +chown root:bin /opt/csw/lib/mail.local +chmod 0555 /opt/csw/lib/mail.local +installf -c ${SOLVER} $PKGINST /opt/csw/lib/mail.local f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/rmail" +chown root:bin /opt/csw/lib/rmail +chmod 0555 /opt/csw/lib/rmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/rmail f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/sendmail" +chown root:smmsp /opt/csw/lib/sendmail +chmod 2555 /opt/csw/lib/sendmail +installf -c ${SOLVER} $PKGINST /opt/csw/lib/sendmail f 2555 root smmsp || exit 2 +echo "Updating Package Dtabase for /opt/csw/lib/smrsh" +chown root:bin /opt/csw/lib/smrsh +chmod 0555 /opt/csw/lib/smrsh +installf -c ${SOLVER} $PKGINST /opt/csw/lib/smrsh f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/mailstats" +chown root:bin /opt/csw/sbin/mailstats +chmod 0555 /opt/csw/sbin/mailstats +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/mailstats f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/praliases" +chown root:bin /opt/csw/sbin/praliases +chmod 0555 /opt/csw/sbin/praliases +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/praliases f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/editmap" +chown root:bin /opt/csw/sbin/editmap +chmod 0555 /opt/csw/sbin/editmap +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/editmap f 0555 root bin || exit 2 +echo "Updating Package Dtabase for /opt/csw/sbin/makemap" +chown root:bin /opt/csw/sbin/makemap +chmod 0555 /opt/csw/sbin/makemap +installf -c ${SOLVER} $PKGINST /opt/csw/sbin/makemap f 0555 root bin || exit 2 + installf -f -c ${SOLVER} $PKGINST + +## Cleanup of OS Versioned Class files +echo "Updating Pacakge Database for /opt/csw/bin/${SOLVER}.vacation" rm -f /opt/csw/bin/${SOLVER}.vacation removef $PKGINST /opt/csw/bin/${SOLVER}.vacation +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.mail.local" rm -f /opt/csw/lib/${SOLVER}.mail.local removef $PKGINST /opt/csw/lib/${SOLVER}.mail.local +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.rmail" rm -f /opt/csw/lib/${SOLVER}.rmail removef $PKGINST /opt/csw/lib/${SOLVER}.rmail +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.sendmail" rm -f /opt/csw/lib/${SOLVER}.sendmail removef $PKGINST /opt/csw/lib/${SOLVER}.sendmail +echo "Updating Pacakge Database for /opt/csw/lib/${SOLVER}.smrsh" rm -f /opt/csw/lib/${SOLVER}.smrsh removef $PKGINST /opt/csw/lib/${SOLVER}.smrsh +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.mailstats" rm -f /opt/csw/sbin/${SOLVER}.mailstats removef $PKGINST /opt/csw/sbin/${SOLVER}.mailstats +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.praliases" rm -f /opt/csw/sbin/${SOLVER}.praliases removef $PKGINST /opt/csw/sbin/${SOLVER}.praliases +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.editmap" rm -f /opt/csw/sbin/${SOLVER}.editmap removef $PKGINST /opt/csw/sbin/${SOLVER}.editmap +echo "Updating Pacakge Database for /opt/csw/sbin/${SOLVER}.makemap" rm -f /opt/csw/sbin/${SOLVER}.makemap removef $PKGINST /opt/csw/sbin/${SOLVER}.makemap removef -f $PKGINST This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From rthurner at users.sourceforge.net Sat Aug 15 11:23:09 2009 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 15 Aug 2009 09:23:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[6036] csw/mgar/pkg Message-ID: Revision: 6036 http://gar.svn.sourceforge.net/gar/?rev=6036&view=rev Author: rthurner Date: 2009-08-15 09:23:09 +0000 (Sat, 15 Aug 2009) Log Message: ----------- ipython, first version. gives a core dump when running Added Paths: ----------- csw/mgar/pkg/ipython/ csw/mgar/pkg/ipython/branches/ csw/mgar/pkg/ipython/tags/ csw/mgar/pkg/ipython/trunk/ csw/mgar/pkg/ipython/trunk/Makefile csw/mgar/pkg/ipython/trunk/checksums csw/mgar/pkg/ipython/trunk/files/ Property changes on: csw/mgar/pkg/ipython/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/ipython/trunk/Makefile =================================================================== --- csw/mgar/pkg/ipython/trunk/Makefile (rev 0) +++ csw/mgar/pkg/ipython/trunk/Makefile 2009-08-15 09:23:09 UTC (rev 6036) @@ -0,0 +1,39 @@ +GARNAME = ipython +GARVERSION = 0.10 +CATEGORIES = lang + +DESCRIPTION = Python toolkit for generation of output for the web +define BLURB + Genshi is a Python library that provides an integrated set of + components for parsing, generating, and processing HTML, XML + or other textual content for output generation on the web +endef + +MASTER_SITES = http://ipython.scipy.org/dist/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +ARCHALL_CSWipython = 1 +PACKAGES = CSWipython +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc +# comment what this does or remove it +# PROTOTYPE_FILTER = awk '$$$$3 ~ /.*\.py$$$$/ { $$$$2 = "cswpycompile" } { print }' +SPKG_CLASSES = none cswpycompile +REQUIRED_PKGS += CSWcswclassutils + +REQUIRED_PKGS_CSWipython = CSWpython-rt +CATALOGNAME_CSWipython = ipython +SPKG_DESC_CSWipython = $(DESCRIPTION) + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = $(WORKSRC)/setup.py +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/setup.py + +INSTALL_ARGS += --root=$(DESTDIR) + +include gar/category.mk + Added: csw/mgar/pkg/ipython/trunk/checksums =================================================================== --- csw/mgar/pkg/ipython/trunk/checksums (rev 0) +++ csw/mgar/pkg/ipython/trunk/checksums 2009-08-15 09:23:09 UTC (rev 6036) @@ -0,0 +1 @@ +dd10cd1b622c16c1afca2239fcc0dfdf download/ipython-0.10.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Aug 16 11:17:25 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 16 Aug 2009 09:17:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6037] csw/mgar/pkg/bdb4/trunk/Makefile Message-ID: Revision: 6037 http://gar.svn.sourceforge.net/gar/?rev=6037&view=rev Author: dmichelsen Date: 2009-08-16 09:17:24 +0000 (Sun, 16 Aug 2009) Log Message: ----------- bdb4: Fix SOURCEURL Modified Paths: -------------- csw/mgar/pkg/bdb4/trunk/Makefile Modified: csw/mgar/pkg/bdb4/trunk/Makefile =================================================================== --- csw/mgar/pkg/bdb4/trunk/Makefile 2009-08-15 09:23:09 UTC (rev 6036) +++ csw/mgar/pkg/bdb4/trunk/Makefile 2009-08-16 09:17:24 UTC (rev 6037) @@ -2,7 +2,7 @@ GARVERSION = 4.2.52 CATEGORIES = lib -DESCRIPTION = Provides embedded database support for applications +DESCRIPTION = This is a stub to BerkeleyDB 4.7 libraries from CSWbdb define BLURB Berkeley DB (libdb) is a programmatic toolkit that provides embedded database support for both traditional and client/server applications. It includes @@ -13,18 +13,20 @@ (MSVC 4, 5 and 6). endef -MASTER_SITES = ftp://ftp.sleepycat.com/releases/ +REQUIRED_PKGS = CSWbdb + +PACKAGES = CSWbdb4 +CATALOGNAME = berkeleydb4 + +SPKG_SOURCEURL = http://www.oracle.com/technology/software/products/berkeley-db/db/index.html + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = INSTALL_SCRIPTS = custom-$(GARCH) custom-all TEST_SCRIPTS = ENABLE_CHECK = 0 -PACKAGES = CSWbdb4 -SPKG_DESC = Embedded database libraries and utilities -CATALOGNAME = berkeleydb4 -REQUIRED_PKGS = CSWbdb include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Aug 17 15:10:30 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 17 Aug 2009 13:10:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6038] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 6038 http://gar.svn.sourceforge.net/gar/?rev=6038&view=rev Author: bonivart Date: 2009-08-17 13:10:30 +0000 (Mon, 17 Aug 2009) Log Message: ----------- perl: add MERGE_EXCLUDE_STATICLIBS to fix XS compilation (Dago) Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-16 09:17:24 UTC (rev 6037) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-17 13:10:30 UTC (rev 6038) @@ -118,6 +118,9 @@ # Tests take a long time TEST_SCRIPTS = +# Do not exclude static libs as at least DynaLoader.a is needed for XS compilation +MERGE_EXCLUDE_STATICLIBS = + include gar/category.mk ifneq ($(CORE_UPDATES),) POST_TARGETS = install-core-updates This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 17:18:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 15:18:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6039] csw/mgar/pkg/bdb4/trunk/ Message-ID: Revision: 6039 http://gar.svn.sourceforge.net/gar/?rev=6039&view=rev Author: wahwah Date: 2009-08-17 15:18:05 +0000 (Mon, 17 Aug 2009) Log Message: ----------- bdb4: s/sf\.net/sourceforge.net/ Property Changed: ---------------- csw/mgar/pkg/bdb4/trunk/ Property changes on: csw/mgar/pkg/bdb4/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 bonivart at users.sourceforge.net Mon Aug 17 17:29:32 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 17 Aug 2009 15:29:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6040] csw/mgar/pkg/perl/trunk/Makefile Message-ID: Revision: 6040 http://gar.svn.sourceforge.net/gar/?rev=6040&view=rev Author: bonivart Date: 2009-08-17 15:29:32 +0000 (Mon, 17 Aug 2009) Log Message: ----------- perl: do not remove core ExtUtils since some things are removed (e.g. ExtUtils::Embed) from the update Modified Paths: -------------- csw/mgar/pkg/perl/trunk/Makefile Modified: csw/mgar/pkg/perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2009-08-17 15:18:05 UTC (rev 6039) +++ csw/mgar/pkg/perl/trunk/Makefile 2009-08-17 15:29:32 UTC (rev 6040) @@ -51,7 +51,7 @@ MASTER_SITES += $(CPAN_FIRST_MIRROR)/M/MS/MSCHWERN/ CORE_UPDATES += ExtUtils-MakeMaker-6.54 -CORE_OBSOLETE += ExtUtils/* +#CORE_OBSOLETE += ExtUtils/* DISTFILES += $(foreach N,$(CORE_UPDATES),$(N).tar.gz) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 20:49:35 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 18:49:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[6041] csw/mgar/pkg/mocha/ Message-ID: Revision: 6041 http://gar.svn.sourceforge.net/gar/?rev=6041&view=rev Author: wahwah Date: 2009-08-17 18:49:35 +0000 (Mon, 17 Aug 2009) Log Message: ----------- mocha: Copying the template. Added Paths: ----------- csw/mgar/pkg/mocha/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 21:55:46 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 19:55:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6042] csw/mgar/pkg/rake/trunk Message-ID: Revision: 6042 http://gar.svn.sourceforge.net/gar/?rev=6042&view=rev Author: wahwah Date: 2009-08-17 19:55:42 +0000 (Mon, 17 Aug 2009) Log Message: ----------- rake: update to 0.8.7 Modified Paths: -------------- csw/mgar/pkg/rake/trunk/Makefile csw/mgar/pkg/rake/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/rake/trunk/files/CSWrake.depend csw/mgar/pkg/rake/trunk/files/CSWrake.gspec csw/mgar/pkg/rake/trunk/files/CSWrake.prototype Property Changed: ---------------- csw/mgar/pkg/rake/trunk/ csw/mgar/pkg/rake/trunk/Makefile Property changes on: csw/mgar/pkg/rake/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/rake/trunk/Makefile =================================================================== --- csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,5 +1,9 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = rake -GARVERSION = 0.6.0 +GARVERSION = 0.8.7 CATEGORIES = devel DESCRIPTION = Simple ruby build program similar to make @@ -9,10 +13,11 @@ (is that a tab or a space?) endef -MASTER_SITES = http://rubyforge.org/frs/download.php/5924/ +MASTER_SITES = http://rubyforge.org/frs/download.php/56872/ DISTFILES = $(GARNAME)-$(GARVERSION).tgz -DISTFILES += CSWrake.gspec CSWrake.depend CSWrake.prototype +LICENSE = MIT-LICENSE + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -31,4 +36,3 @@ @mkdir -p $(DESTDIR)$(docdir) @cp -R $(WORKSRC)/doc $(DESTDIR)$(docdir)/rake @$(MAKECOOKIE) - Property changes on: csw/mgar/pkg/rake/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: csw/mgar/pkg/rake/trunk/checksums =================================================================== --- csw/mgar/pkg/rake/trunk/checksums 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/checksums 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,4 +1 @@ -75885e7b90f7d9829b25eaff9338b4c6 download/rake-0.6.0.tgz -6e4a0e8c946e533be7fa49b572b5d170 download/CSWrake.gspec -e7008a946bb7e696418e34c41ca9a109 download/CSWrake.depend -2d2ed9030701f59760dcbac0d0ac6602 download/CSWrake.prototype +85fafa95ef43cd2189f9124510b5caa6 download/rake-0.8.7.tgz Deleted: csw/mgar/pkg/rake/trunk/files/CSWrake.depend =================================================================== --- csw/mgar/pkg/rake/trunk/files/CSWrake.depend 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/files/CSWrake.depend 2009-08-17 19:55:42 UTC (rev 6042) @@ -1 +0,0 @@ -P CSWruby ruby - An object-oriented language for quick and easy programming. Deleted: csw/mgar/pkg/rake/trunk/files/CSWrake.gspec =================================================================== --- csw/mgar/pkg/rake/trunk/files/CSWrake.gspec 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/files/CSWrake.gspec 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,5 +0,0 @@ -%var bitname rake -%var pkgname CSWrake -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/MIT-LICENSE Deleted: csw/mgar/pkg/rake/trunk/files/CSWrake.prototype =================================================================== --- csw/mgar/pkg/rake/trunk/files/CSWrake.prototype 2009-08-17 18:49:35 UTC (rev 6041) +++ csw/mgar/pkg/rake/trunk/files/CSWrake.prototype 2009-08-17 19:55:42 UTC (rev 6042) @@ -1,49 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/rake 0755 root bin -d none /opt/csw/lib 0755 root bin -d none /opt/csw/lib/ruby 0755 root bin -d none /opt/csw/lib/ruby/site_ruby 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8 0755 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/rake 0755 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/classic_namespace.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/clean.rb 0644 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib 0755 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/compositepublisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/ftptools.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/publisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/rubyforgepublisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/sshpublisher.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/contrib/sys.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/gempackagetask.rb 0644 root bin -d none /opt/csw/lib/ruby/site_ruby/1.8/rake/loaders 0755 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/loaders/makefile.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/packagetask.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/rake_test_loader.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/rdoctask.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/ruby182_test_unit_fix.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/runtest.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/tasklib.rb 0644 root bin -f none /opt/csw/lib/ruby/site_ruby/1.8/rake/testtask.rb 0644 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/doc 0755 root bin -d none /opt/csw/share/doc/rake 0755 root bin -d none /opt/csw/share/doc/rake/example 0755 root bin -f none /opt/csw/share/doc/rake/example/Rakefile1 0644 root bin -f none /opt/csw/share/doc/rake/example/Rakefile2 0644 root bin -f none /opt/csw/share/doc/rake/example/a.c 0644 root bin -f none /opt/csw/share/doc/rake/example/b.c 0644 root bin -f none /opt/csw/share/doc/rake/example/main.c 0644 root bin -f none /opt/csw/share/doc/rake/glossary.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/jamis.rb 0600 root bin -f none /opt/csw/share/doc/rake/proto_rake.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/rake.1.gz 0600 root bin -f none /opt/csw/share/doc/rake/rakefile.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/rational.rdoc 0644 root bin -d none /opt/csw/share/doc/rake/release_notes 0755 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.4.14.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.4.15.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.5.0.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.5.3.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.5.4.rdoc 0644 root bin -f none /opt/csw/share/doc/rake/release_notes/rake-0.6.0.rdoc 0644 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 22:22:27 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 20:22:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[6043] csw/mgar/pkg/mocha/trunk Message-ID: Revision: 6043 http://gar.svn.sourceforge.net/gar/?rev=6043&view=rev Author: wahwah Date: 2009-08-17 20:22:20 +0000 (Mon, 17 Aug 2009) Log Message: ----------- mocha: Initial commit Modified Paths: -------------- csw/mgar/pkg/mocha/trunk/Makefile csw/mgar/pkg/mocha/trunk/checksums Modified: csw/mgar/pkg/mocha/trunk/Makefile =================================================================== --- csw/mgar/pkg/mocha/trunk/Makefile 2009-08-17 19:55:42 UTC (rev 6042) +++ csw/mgar/pkg/mocha/trunk/Makefile 2009-08-17 20:22:20 UTC (rev 6043) @@ -2,181 +2,37 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = mocha +GARVERSION = 0.9.7 CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = a library for mocking and stubbing using a syntax like that of JMock define BLURB - + Mocha is a library for mocking and stubbing using a syntax like that of + JMock. It can be used with many testing frameworks e.g. Test::Unit, RSpec, + test/spec, expectations, Dust, MiniTest and even JtestR. Mocha provides + a unified, simple and readable syntax for both traditional mocking and + partial mocking. endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://mocha.rubyforge.org/ +MASTER_SITES = http://rubyforge.org/frs/download.php/59668/ +DISTFILES = $(GARNAME)-$(GARVERSION).tgz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true +ARCHALL = 0 +REQUIRED_PKGS = CSWruby +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWrake +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +INSTALL_SCRIPTS = ruby +TEST_SCRIPTS = -#include gar/category.mk +install-ruby: + gfind $(WORKSRC) -name '._*' -exec rm {} \; + ginstall -d -m 755 $(DESTDIR)$(libdir)/ruby/site_ruby/1.8 + (cd $(WORKSRC)/lib; gcp -a * $(DESTDIR)$(libdir)/ruby/site_ruby/1.8) + # TODO(maciej): Use the provided gem specification for installation. + # (cd $(WORKSRC)/lib; \ + # rake gem; \ + # gem install --install-dir=$(DESTDIR) --local ./pkg/$(GARNAME)-$(GARVERSION).gem) + @$(MAKECOOKIE) + +include gar/category.mk Modified: csw/mgar/pkg/mocha/trunk/checksums =================================================================== --- csw/mgar/pkg/mocha/trunk/checksums 2009-08-17 19:55:42 UTC (rev 6042) +++ csw/mgar/pkg/mocha/trunk/checksums 2009-08-17 20:22:20 UTC (rev 6043) @@ -0,0 +1 @@ +a483014a0ef3b3f8ae6ddb6fa333b163 download/mocha-0.9.7.tgz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 17 22:26:55 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 17 Aug 2009 20:26:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6044] csw/mgar/pkg/rake/trunk/Makefile Message-ID: Revision: 6044 http://gar.svn.sourceforge.net/gar/?rev=6044&view=rev Author: wahwah Date: 2009-08-17 20:26:55 +0000 (Mon, 17 Aug 2009) Log Message: ----------- rake: ARCHALL = 1 Modified Paths: -------------- csw/mgar/pkg/rake/trunk/Makefile Modified: csw/mgar/pkg/rake/trunk/Makefile =================================================================== --- csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 20:22:20 UTC (rev 6043) +++ csw/mgar/pkg/rake/trunk/Makefile 2009-08-17 20:26:55 UTC (rev 6044) @@ -17,6 +17,7 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tgz LICENSE = MIT-LICENSE +ARCHALL = 1 # 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 idogan23 at users.sourceforge.net Tue Aug 18 08:15:47 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 18 Aug 2009 06:15:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[6045] csw/mgar/pkg/nsd/trunk Message-ID: Revision: 6045 http://gar.svn.sourceforge.net/gar/?rev=6045&view=rev Author: idogan23 Date: 2009-08-18 06:15:47 +0000 (Tue, 18 Aug 2009) Log Message: ----------- nsd: bump version to 3.2.3 Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile csw/mgar/pkg/nsd/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2009-08-17 20:26:55 UTC (rev 6044) +++ csw/mgar/pkg/nsd/trunk/Makefile 2009-08-18 06:15:47 UTC (rev 6045) @@ -1,5 +1,5 @@ GARNAME = nsd -GARVERSION = 3.2.2 +GARVERSION = 3.2.3 CATEGORIES = server DESCRIPTION = An authoritative only non-recursive name server @@ -30,8 +30,6 @@ SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } { print }' -PATCHFILES = Makefile.in.diff - CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-ssl=/opt/csw CONFIGURE_ARGS += --with-pidfile=/var/run/nsd.pid Modified: csw/mgar/pkg/nsd/trunk/checksums =================================================================== --- csw/mgar/pkg/nsd/trunk/checksums 2009-08-17 20:26:55 UTC (rev 6044) +++ csw/mgar/pkg/nsd/trunk/checksums 2009-08-18 06:15:47 UTC (rev 6045) @@ -1,4 +1,4 @@ bc1f6a6a33f1204454cf013273f0521c download/Makefile.in.diff 0eece57abde9d1cef8a962461b453d03 download/cswnsd 7a7560acb5d56847ea16fb8cd77b6ca5 download/cswusergroup -a0dcb0a3b3c1a8d386125eeafe403f58 download/nsd-3.2.2.tar.gz +5ddb35dfb7da0defb82cda4f7388cba2 download/nsd-3.2.3.tar.gz Deleted: csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff =================================================================== --- csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff 2009-08-17 20:26:55 UTC (rev 6044) +++ csw/mgar/pkg/nsd/trunk/files/Makefile.in.diff 2009-08-18 06:15:47 UTC (rev 6045) @@ -1,14 +0,0 @@ -diff --speed-large-files --minimal -Nru nsd-3.2.2.orig/Makefile.in nsd-3.2.2/Makefile.in ---- nsd-3.2.2.orig/Makefile.in 2009-04-03 13:56:43.000000000 +0200 -+++ nsd-3.2.2/Makefile.in 2009-05-24 14:18:20.279730811 +0200 -@@ -318,8 +318,8 @@ - install: all - $(INSTALL) -d $(DESTDIR)$(sbindir) - $(INSTALL) -d $(DESTDIR)$(configdir) -- $(INSTALL) -d $(DESTDIR)$(piddir) -- $(INSTALL) -d $(DESTDIR)$(dbdir) -+# $(INSTALL) -d $(DESTDIR)$(piddir) -+# $(INSTALL) -d $(DESTDIR)$(dbdir) - $(INSTALL) -d $(DESTDIR)$(mandir) - $(INSTALL) -d $(DESTDIR)$(mandir)/man8 - $(INSTALL) -d $(DESTDIR)$(mandir)/man5 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 Aug 18 08:37:41 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Tue, 18 Aug 2009 06:37:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6046] csw/mgar/pkg/nsd/trunk/Makefile Message-ID: Revision: 6046 http://gar.svn.sourceforge.net/gar/?rev=6046&view=rev Author: idogan23 Date: 2009-08-18 06:37:41 +0000 (Tue, 18 Aug 2009) Log Message: ----------- nsd: removed dist file entry for an old patch Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2009-08-18 06:15:47 UTC (rev 6045) +++ csw/mgar/pkg/nsd/trunk/Makefile 2009-08-18 06:37:41 UTC (rev 6046) @@ -25,7 +25,6 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += cswusergroup DISTFILES += cswnsd -DISTFILES += Makefile.in.diff SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } { print }' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 13:53:24 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 11:53:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[6047] csw/mgar/pkg/rspec/ Message-ID: Revision: 6047 http://gar.svn.sourceforge.net/gar/?rev=6047&view=rev Author: wahwah Date: 2009-08-18 11:53:24 +0000 (Tue, 18 Aug 2009) Log Message: ----------- rpec: copying the template Added Paths: ----------- csw/mgar/pkg/rspec/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 17:41:43 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 15:41:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[6048] csw/mgar/pkg/rubygems/trunk Message-ID: Revision: 6048 http://gar.svn.sourceforge.net/gar/?rev=6048&view=rev Author: wahwah Date: 2009-08-18 15:41:43 +0000 (Tue, 18 Aug 2009) Log Message: ----------- rubygems: version bump to 1.3.5, removed the scripts directory Modified Paths: -------------- csw/mgar/pkg/rubygems/trunk/Makefile csw/mgar/pkg/rubygems/trunk/checksums Modified: csw/mgar/pkg/rubygems/trunk/Makefile =================================================================== --- csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 11:53:24 UTC (rev 6047) +++ csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 15:41:43 UTC (rev 6048) @@ -1,5 +1,5 @@ GARNAME = rubygems -GARVERSION = 1.3.1 +GARVERSION = 1.3.5 CATEGORIES = xtra DESCRIPTION = Ruby package manager @@ -10,7 +10,7 @@ SPKG_SOURCEURL = http://rubyforge.org/projects/rubygems/ -MASTER_SITES = http://rubyforge.org/frs/download.php/45905/ +MASTER_SITES = http://rubyforge.org/frs/download.php/60718/ DISTFILES = $(GARNAME)-$(GARVERSION).tgz @@ -43,6 +43,4 @@ @gcp -v $(WORKSRC)/README $(DESTDIR)$(docdir)/$(GARNAME) @gcp -v $(WORKSRC)/LICENSE.txt $(DESTDIR)$(docdir)/$(GARNAME) @gcp -v $(WORKSRC)/GPL.txt $(DESTDIR)$(docdir)/$(GARNAME) - @gcp -vr $(WORKSRC)/scripts $(DESTDIR)$(docdir)/$(GARNAME) @$(MAKECOOKIE) - Modified: csw/mgar/pkg/rubygems/trunk/checksums =================================================================== --- csw/mgar/pkg/rubygems/trunk/checksums 2009-08-18 11:53:24 UTC (rev 6047) +++ csw/mgar/pkg/rubygems/trunk/checksums 2009-08-18 15:41:43 UTC (rev 6048) @@ -1 +1 @@ -a04ee6f6897077c5b75f5fd1e134c5a9 download/rubygems-1.3.1.tgz +6e317335898e73beab15623cdd5f8cff download/rubygems-1.3.5.tgz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 18:41:02 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 16:41:02 +0000 Subject: [csw-devel] SF.net SVN: gar:[6049] csw/mgar/pkg/cups/branches/cups-with-classutils/ Makefile Message-ID: Revision: 6049 http://gar.svn.sourceforge.net/gar/?rev=6049&view=rev Author: wahwah Date: 2009-08-18 16:41:02 +0000 (Tue, 18 Aug 2009) Log Message: ----------- cups: Marking cupsd{ev,oc} architecture-independent Modified Paths: -------------- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile Modified: csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile =================================================================== --- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-18 15:41:43 UTC (rev 6048) +++ csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-18 16:41:02 UTC (rev 6049) @@ -35,6 +35,9 @@ PACKAGES = CSWlibcups CSWcupsd CSWcupsclient CSWcupsdoc CSWcupsdev CSWcups +ARCHALL_CSWcupsdoc = 1 +ARCHALL_CSWcupsdev = 1 + REQUIRED_PKGS_CSWcups = CSWcswclassutils CSWcupsd CSWcupsclient CSWcupsdoc REQUIRED_PKGS_CSWcups += CSWcupsdev REQUIRED_PKGS_CSWcupsd = CSWcswclassutils CSWlibcups CSWoldaprt CSWzlib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 18 19:21:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 18 Aug 2009 17:21:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6050] csw/mgar/pkg/rubygems/trunk/Makefile Message-ID: Revision: 6050 http://gar.svn.sourceforge.net/gar/?rev=6050&view=rev Author: wahwah Date: 2009-08-18 17:21:03 +0000 (Tue, 18 Aug 2009) Log Message: ----------- rubygems: Destination directory fix Modified Paths: -------------- csw/mgar/pkg/rubygems/trunk/Makefile Modified: csw/mgar/pkg/rubygems/trunk/Makefile =================================================================== --- csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 16:41:02 UTC (rev 6049) +++ csw/mgar/pkg/rubygems/trunk/Makefile 2009-08-18 17:21:03 UTC (rev 6050) @@ -33,7 +33,7 @@ install-custom: ( cd $(WORKSRC) ; \ - ruby ./setup.rb --destdir=$(DESTDIR)/$(prefix); ) + ruby ./setup.rb --destdir=$(DESTDIR); ) @$(MAKECOOKIE) post-install-modulated: copy-contrib 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 Aug 19 11:05:07 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 09:05:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[6051] csw/mgar/pkg/neon/trunk Message-ID: Revision: 6051 http://gar.svn.sourceforge.net/gar/?rev=6051&view=rev Author: dmichelsen Date: 2009-08-19 09:05:07 +0000 (Wed, 19 Aug 2009) Log Message: ----------- neon: Update to 0.28.6 and dynamic gspec Modified Paths: -------------- csw/mgar/pkg/neon/trunk/Makefile csw/mgar/pkg/neon/trunk/checksums Added Paths: ----------- csw/mgar/pkg/neon/trunk/files/COPYING Removed Paths: ------------- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec csw/mgar/pkg/neon/trunk/files/CSWneon.gspec Modified: csw/mgar/pkg/neon/trunk/Makefile =================================================================== --- csw/mgar/pkg/neon/trunk/Makefile 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/Makefile 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,9 +1,9 @@ GARNAME = neon -GARVERSION = 0.28.5 +GARVERSION = 0.28.6 CATEGORIES = lib EXTRA_MODULATORS = GARVERSION -MODULATIONS_GARVERSION = 0.26.4 0.28.5 +MODULATIONS_GARVERSION = 0.26.4 0.28.6 DESCRIPTION = Neon HTTP and WebDAV client library define BLURB @@ -16,9 +16,15 @@ MASTER_SITES = http://www.webdav.org/$(GARNAME)/ SOURCEFILES = $(foreach VERSION,$(MODULATIONS_GARVERSION), $(GARNAME)-$(VERSION).tar.gz) DISTFILES = $(SOURCEFILES) -DISTFILES += $(call admfiles,CSWneon,) -DISTFILES += $(call admfiles,CSWneon-devel,) +DISTFILES += COPYING +NOEXTRACT = $(filter-out $(GARNAME)-$(GARVERSION).tar.gz,$(SOURCEFILES)) + +PACKAGES = CSWneon CSWneon-devel + +CATALOGNAME_CSWneon = neon +CATALOGNAME_CSWneon-devel = neon_devel + REQUIRED_PKGS_CSWneon = CSWexpat CSWkrb5lib CSWosslrt CSWzlib CSWggettextrt REQUIRED_PKGS_CSWneon-devel = CSWneon @@ -36,23 +42,27 @@ BUILD64 = 1 NO_ISAEXEC = 1 +# Omit version number suffix on docdir +INSTALL_OVERRIDE_VARS = docdir +INSTALL_OVERRIDE_VAR_docdir = $(datadir)/doc/neon + MERGE_SCRIPTS_isa-i386-garversion-0.26.4 = copy-only MERGE_DIRS_isa-i386-garversion-0.26.4 = $(libdir) MERGE_SCRIPTS_isa-amd64-garversion-0.26.4 = copy-relocated-only MERGE_DIRS_isa-amd64-garversion-0.26.4 = $(libdir) -MERGE_SCRIPTS_isa-i386-garversion-0.28.5 = copy-all -MERGE_SCRIPTS_isa-amd64-garversion-0.28.5 = copy-relocated-only -MERGE_DIRS_isa-amd64-garversion-0.28.5 = $(bindir) $(sbindir) $(libexecdir) $(libdir) +MERGE_SCRIPTS_isa-i386-garversion-0.28.6 = copy-all +MERGE_SCRIPTS_isa-amd64-garversion-0.28.6 = copy-relocated-only +MERGE_DIRS_isa-amd64-garversion-0.28.6 = $(bindir) $(sbindir) $(libexecdir) $(libdir) MERGE_SCRIPTS_isa-sparcv8-garversion-0.26.4 = copy-only MERGE_DIRS_isa-sparcv8-garversion-0.26.4 = $(libdir) MERGE_SCRIPTS_isa-sparcv9-garversion-0.26.4 = copy-relocated-only MERGE_DIRS_isa-sparcv9-garversion-0.26.4 = $(libdir) -MERGE_SCRIPTS_isa-sparcv8-garversion-0.28.5 = copy-all -MERGE_SCRIPTS_isa-sparcv9-garversion-0.28.5 = copy-relocated-only -MERGE_DIRS_isa-sparcv9-garversion-0.28.5 = $(bindir) $(sbindir) $(libexecdir) $(libdir) +MERGE_SCRIPTS_isa-sparcv8-garversion-0.28.6 = copy-all +MERGE_SCRIPTS_isa-sparcv9-garversion-0.28.6 = copy-relocated-only +MERGE_DIRS_isa-sparcv9-garversion-0.28.6 = $(bindir) $(sbindir) $(libexecdir) $(libdir) PKGFILES_CSWneon-devel = $(PKGFILES_DEVEL) Modified: csw/mgar/pkg/neon/trunk/checksums =================================================================== --- csw/mgar/pkg/neon/trunk/checksums 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/checksums 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,4 +1,3 @@ -5e17c5dc62032a174e4e39fa33720aff download/CSWneon-devel.gspec -643aa565e0d9f38f0153ab72b6dc5621 download/CSWneon.gspec +4ef5552e8930ef82b1f56c2712f8ed1e download/COPYING 2d11fff51ffa856fc6b5d4bd801d6cc4 download/neon-0.26.4.tar.gz -8c160bc0e358a3b58645acbba40fe873 download/neon-0.28.5.tar.gz +252578ed555552b71d15909641484951 download/neon-0.28.6.tar.gz Copied: csw/mgar/pkg/neon/trunk/files/COPYING (from rev 5970, csw/mgar/pkg/neon/trunk/files/CSWneon.gspec) =================================================================== --- csw/mgar/pkg/neon/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/neon/trunk/files/COPYING 2009-08-19 09:05:07 UTC (rev 6051) @@ -0,0 +1,12 @@ +neon is licensed under the GNU Library GPL; see src/COPYING.LIB for +full details. The manual is licensed under the terms of the GNU FDL; +see doc/fdl.sgml or the generated documentation. The autoconf macros +in the "macros" directory are under a more liberal license, see each +file for details. The test suite is licensed under the GNU GPL; see +test/COPYING for full details. + +neon is Copyright (C) 1999-2003 Joe Orton +Portions are: +Copyright (C) 1999-2000 Tommi Komulainen +Copyright (C) 1999-2000, Peter Boos +Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/files/CSWneon-devel.gspec 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,17 +0,0 @@ -%var bitname neon_devel -%var pkgname CSWneon-devel -%var desc Neon HTTP and WebDAV development support -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -neon is licensed under the GNU Library GPL; see src/COPYING.LIB for -full details. The manual is licensed under the terms of the GNU FDL; -see doc/fdl.sgml or the generated documentation. The autoconf macros -in the "macros" directory are under a more liberal license, see each -file for details. The test suite is licensed under the GNU GPL; see -test/COPYING for full details. - -neon is Copyright (C) 1999-2003 Joe Orton -Portions are: -Copyright (C) 1999-2000 Tommi Komulainen -Copyright (C) 1999-2000, Peter Boos -Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. Deleted: csw/mgar/pkg/neon/trunk/files/CSWneon.gspec =================================================================== --- csw/mgar/pkg/neon/trunk/files/CSWneon.gspec 2009-08-18 17:21:03 UTC (rev 6050) +++ csw/mgar/pkg/neon/trunk/files/CSWneon.gspec 2009-08-19 09:05:07 UTC (rev 6051) @@ -1,16 +0,0 @@ -%var bitname neon -%var pkgname CSWneon -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright -neon is licensed under the GNU Library GPL; see src/COPYING.LIB for -full details. The manual is licensed under the terms of the GNU FDL; -see doc/fdl.sgml or the generated documentation. The autoconf macros -in the "macros" directory are under a more liberal license, see each -file for details. The test suite is licensed under the GNU GPL; see -test/COPYING for full details. - -neon is Copyright (C) 1999-2003 Joe Orton -Portions are: -Copyright (C) 1999-2000 Tommi Komulainen -Copyright (C) 1999-2000, Peter Boos -Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 19 13:24:28 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 11:24:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6052] csw/mgar/pkg/buildbot/trunk Message-ID: Revision: 6052 http://gar.svn.sourceforge.net/gar/?rev=6052&view=rev Author: wahwah Date: 2009-08-19 11:24:28 +0000 (Wed, 19 Aug 2009) Log Message: ----------- buildbot: Adapting the package version and revision numbers to the guidelines Modified Paths: -------------- csw/mgar/pkg/buildbot/trunk/Makefile csw/mgar/pkg/buildbot/trunk/checksums Added Paths: ----------- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch Modified: csw/mgar/pkg/buildbot/trunk/Makefile =================================================================== --- csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 09:05:07 UTC (rev 6051) +++ csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 11:24:28 UTC (rev 6052) @@ -3,7 +3,8 @@ # $Id$ GARNAME = buildbot -GARVERSION = 0.7.11p1 +GARVERSION = 0.7.11 +PATCHLEVEL = p1 CATEGORIES = utils DESCRIPTION = A system to automate the compile/test cycle @@ -17,12 +18,13 @@ to test their changes everywhere before checkin will at least know shortly afterwards whether they have broken the build or not. Warning counts, lint checks, image size, compile time, and other build parameters can be tracked - over time, are more visible, and are therefore easier to improve. + over time, are more visible, and are therefore easier to improve. endef MASTER_SITES = $(SF_MIRROR) -PATCHFILES = tail-$(GARVERSION).patch -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz $(PATCHFILES) +PATCHFILES = tail-$(GARVERSION)$(PATCHLEVEL).patch +PATCHFILES += debug-$(GARVERSION)$(PATCHLEVEL).patch +DISTFILES = $(GARNAME)-$(GARVERSION)$(PATCHLEVEL).tar.gz $(PATCHFILES) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -32,19 +34,29 @@ REQUIRED_PKGS = CSWcswclassutils CSWpython CSWtwisted CSWzope CSWtextutils ARCHALL = 1 -CONFIGURE_SCRIPTS = +CONFIGURE_SCRIPTS = BUILD_SCRIPTS = buildbot -TEST_SCRIPTS = +TEST_SCRIPTS = INSTALL_SCRIPTS = buildbot PROTOTYPE_FILTER = awk ' \ - $$$$3 ~/.*\.py$$$$/ { $$$$2 = "pycompile" } \ + $$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } \ { print }' +WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION)$(PATCHLEVEL) + build-buildbot: (cd $(WORKSRC); python setup.py build) + @$(MAKECOOKIE) install-buildbot: (cd $(WORKSRC); python setup.py install --root=$(DESTDIR)) + @$(MAKECOOKIE) +post-install-modulated: + gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; + @$(MAKECOOKIE) + include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) Modified: csw/mgar/pkg/buildbot/trunk/checksums =================================================================== --- csw/mgar/pkg/buildbot/trunk/checksums 2009-08-19 09:05:07 UTC (rev 6051) +++ csw/mgar/pkg/buildbot/trunk/checksums 2009-08-19 11:24:28 UTC (rev 6052) @@ -1,2 +1,3 @@ 2f83cd6562f0288ec4f4d77027f3090f download/buildbot-0.7.11p1.tar.gz +4c70db04b3514157aa746370ad282eeb download/debug-0.7.11p1.patch a39720c9a13d73bbda054938d6a98c47 download/tail-0.7.11p1.patch Added: csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch (rev 0) +++ csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch 2009-08-19 11:24:28 UTC (rev 6052) @@ -0,0 +1,25 @@ +diff -ru buildbot-0.7.11p1.orig/buildbot/changes/changes.py buildbot-0.7.11p1/buildbot/changes/changes.py +--- buildbot-0.7.11p1.orig/buildbot/changes/changes.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/changes/changes.py 2009-07-30 13:30:01.632031291 +0100 +@@ -73,6 +73,9 @@ + self.files = files[:] + self.files.sort() + ++ def __repr__(self): ++ return "branch(%s) at %s by %s" % (self.branch, self.revision, self.who) ++ + def asText(self): + data = "" + data += self.getFileContents() +diff -ru buildbot-0.7.11p1.orig/buildbot/scheduler.py buildbot-0.7.11p1/buildbot/scheduler.py +--- buildbot-0.7.11p1.orig/buildbot/scheduler.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/scheduler.py 2009-07-30 16:56:59.195283110 +0100 +@@ -287,6 +287,8 @@ + + def addChange(self, change): + branch = change.branch ++ log.msg("branch = %s" % repr(branch)) ++ log.msg("self.branches = %s" % repr(self.branches)) + if self.branches is not None and branch not in self.branches: + log.msg("%s ignoring off-branch %s" % (self, change)) + return 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 Aug 19 13:28:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 11:28:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6053] csw/mgar/pkg/wget/trunk Message-ID: Revision: 6053 http://gar.svn.sourceforge.net/gar/?rev=6053&view=rev Author: dmichelsen Date: 2009-08-19 11:28:47 +0000 (Wed, 19 Aug 2009) Log Message: ----------- wget: Some minor GAR fixes Modified Paths: -------------- csw/mgar/pkg/wget/trunk/Makefile csw/mgar/pkg/wget/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/wget/trunk/files/CSWwget.gspec Modified: csw/mgar/pkg/wget/trunk/Makefile =================================================================== --- csw/mgar/pkg/wget/trunk/Makefile 2009-08-19 11:24:28 UTC (rev 6052) +++ csw/mgar/pkg/wget/trunk/Makefile 2009-08-19 11:28:47 UTC (rev 6053) @@ -13,15 +13,14 @@ whole file has been retrieved. endef -MASTER_SITES = http://www.gnu.org/software/wget/ +MASTER_SITES = $(GNU_MIRROR) DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWwget) -UPSTREAM_MASTER_SITES = $(GNU_MIRROR) - # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 +SPKG_SOURCEURL = http://www.gnu.org/software/wget/ + EXTRA_MODULATORS = STATIC MODULATIONS_STATIC = disable enable @@ -36,29 +35,21 @@ CONFIGURE_ARGS += $(EXTRA_CONFIGURE_STATIC-$(STATIC)) TEST_TARGET = check -REQUIRED_PKGS = CSWosslrt CSWcswclassutils +REQUIRED_PKGS = CSWosslrt -SPKG_CLASSES = none cswcpsampleconf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/wgetrc.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } { print }' +SAMPLECONF = $(sysconfdir)/wgetrc.CSW +EXTRA_PAX_ARGS = -s ",^\(.$(sysconfdir)/wgetrc\)\$$,\1.CSW,p" MERGE_SCRIPTS_isa-sparcv8-static-disable = copy-all - MERGE_SCRIPTS_isa-sparcv8-static-enable = rename-wget copy-only + MERGE_SCRIPTS_isa-sparcv8-static-enable = copy-static-wget-only MERGE_DIRS_isa-sparcv8-static-enable = $(bindir) MERGE_SCRIPTS_isa-i386-static-disable = copy-all MERGE_SCRIPTS_isa-i386-static-enable = rename-wget copy-only MERGE_DIRS_isa-i386-static-enable = $(bindir) -merge-rename-wget: - @mv $(DESTDIR)$(bindir)/wget $(DESTDIR)$(bindir)/wget.static +merge-copy-static-wget-only: + ginstall $(INSTALLISADIR)$(bindir)/wget $(PKGROOT)$(bindir)/wget.static + @$(MAKECOOKIE) -post-install-modulated: - (cd $(DESTDIR)$(prefix)/etc; \ - for i in wgetrc; do \ - if [ -r "$$i" ]; then \ - echo "$$i -> $$i.CSW"; \ - mv "$$i" "$$i.CSW"; \ - fi \ - done) - include gar/category.mk Modified: csw/mgar/pkg/wget/trunk/checksums =================================================================== --- csw/mgar/pkg/wget/trunk/checksums 2009-08-19 11:24:28 UTC (rev 6052) +++ csw/mgar/pkg/wget/trunk/checksums 2009-08-19 11:28:47 UTC (rev 6053) @@ -1,2 +1 @@ f5076a8c2ec2b7f334cb6e3059820f9c download/wget-1.11.4.tar.bz2 -0232e26f1324e2b2c0c6c1ab4bf3f2e3 download/CSWwget.gspec Deleted: csw/mgar/pkg/wget/trunk/files/CSWwget.gspec =================================================================== --- csw/mgar/pkg/wget/trunk/files/CSWwget.gspec 2009-08-19 11:24:28 UTC (rev 6052) +++ csw/mgar/pkg/wget/trunk/files/CSWwget.gspec 2009-08-19 11:28:47 UTC (rev 6053) @@ -1,4 +0,0 @@ -%var bitname wget -%var pkgname CSWwget -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 19 13:34:29 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 11:34:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6054] csw/mgar/pkg/buildbot/trunk/Makefile Message-ID: Revision: 6054 http://gar.svn.sourceforge.net/gar/?rev=6054&view=rev Author: wahwah Date: 2009-08-19 11:34:29 +0000 (Wed, 19 Aug 2009) Log Message: ----------- buildbot: cleaning up BLURB Modified Paths: -------------- csw/mgar/pkg/buildbot/trunk/Makefile Modified: csw/mgar/pkg/buildbot/trunk/Makefile =================================================================== --- csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 11:28:47 UTC (rev 6053) +++ csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-19 11:34:29 UTC (rev 6054) @@ -11,14 +11,15 @@ define BLURB The BuildBot is a system to automate the compile/test cycle required by most software projects to validate code changes. By automatically rebuilding and - testing the tree each time something has changed, build problems are pinpointed - quickly, before other developers are inconvenienced by the failure. The guilty - developer can be identified and harassed without human intervention. By running - the builds on a variety of platforms, developers who do not have the facilities - to test their changes everywhere before checkin will at least know shortly - afterwards whether they have broken the build or not. Warning counts, lint - checks, image size, compile time, and other build parameters can be tracked - over time, are more visible, and are therefore easier to improve. + testing the tree each time something has changed, build problems are + pinpointed quickly, before other developers are inconvenienced by the + failure. The guilty developer can be identified and harassed without human + intervention. By running the builds on a variety of platforms, developers who + do not have the facilities to test their changes everywhere before checkin + will at least know shortly afterwards whether they have broken the build or + not. Warning counts, lint checks, image size, compile time, and other build + parameters can be tracked over time, are more visible, and are therefore + easier to improve. endef MASTER_SITES = $(SF_MIRROR) @@ -26,7 +27,6 @@ PATCHFILES += debug-$(GARVERSION)$(PATCHLEVEL).patch DISTFILES = $(GARNAME)-$(GARVERSION)$(PATCHLEVEL).tar.gz $(PATCHFILES) -# 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 cswpycompile 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 Aug 19 14:45:48 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 12:45:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6055] csw/mgar/pkg/tcl/trunk Message-ID: Revision: 6055 http://gar.svn.sourceforge.net/gar/?rev=6055&view=rev Author: dmichelsen Date: 2009-08-19 12:45:48 +0000 (Wed, 19 Aug 2009) Log Message: ----------- tcl: Update to 8.5.7 and dynamic gspec Modified Paths: -------------- csw/mgar/pkg/tcl/trunk/Makefile csw/mgar/pkg/tcl/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec Modified: csw/mgar/pkg/tcl/trunk/Makefile =================================================================== --- csw/mgar/pkg/tcl/trunk/Makefile 2009-08-19 11:34:29 UTC (rev 6054) +++ csw/mgar/pkg/tcl/trunk/Makefile 2009-08-19 12:45:48 UTC (rev 6055) @@ -1,5 +1,5 @@ GARNAME = tcl -GARVERSION = 8.4.19 +GARVERSION = 8.5.7 CATEGORIES = lang DESCRIPTION = Tcl programming language @@ -11,7 +11,6 @@ DISTNAME = $(GARNAME)$(GARVERSION) DISTFILES = $(DISTNAME)-src.tar.gz -DISTFILES += $(call admfiles,CSWtcl,) SPKG_SOURCEURL = http://www.tcl.tk/ Modified: csw/mgar/pkg/tcl/trunk/checksums =================================================================== --- csw/mgar/pkg/tcl/trunk/checksums 2009-08-19 11:34:29 UTC (rev 6054) +++ csw/mgar/pkg/tcl/trunk/checksums 2009-08-19 12:45:48 UTC (rev 6055) @@ -1,2 +1 @@ -ade2c033a7b545ee108f3fdfeb629fcf download/tcl8.4.19-src.tar.gz -28b60464911afb80f9006d8734868438 download/CSWtcl.gspec +f70ad8f78b5e4a9f792fe101f22b125f download/tcl8.5.7-src.tar.gz Deleted: csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec =================================================================== --- csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-08-19 11:34:29 UTC (rev 6054) +++ csw/mgar/pkg/tcl/trunk/files/CSWtcl.gspec 2009-08-19 12:45:48 UTC (rev 6055) @@ -1,4 +0,0 @@ -%var bitname tcl -%var pkgname CSWtcl -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/license.terms This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Aug 19 15:05:37 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 19 Aug 2009 13:05:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[6056] csw/mgar/pkg/libxml2/trunk Message-ID: Revision: 6056 http://gar.svn.sourceforge.net/gar/?rev=6056&view=rev Author: dmichelsen Date: 2009-08-19 13:05:37 +0000 (Wed, 19 Aug 2009) Log Message: ----------- libxml2: Update to 2.7.3, move to dynamic gspec and refactor renaming Modified Paths: -------------- csw/mgar/pkg/libxml2/trunk/Makefile csw/mgar/pkg/libxml2/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec Modified: csw/mgar/pkg/libxml2/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxml2/trunk/Makefile 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/Makefile 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,5 +1,5 @@ GARNAME = libxml2 -GARVERSION = 2.7.2 +GARVERSION = 2.7.3 CATEGORIES = lib DESCRIPTION = XML Parser Library @@ -8,14 +8,21 @@ endef MASTER_SITES = ftp://xmlsoft.org/libxml2/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWpylibxml2,depend) -DISTFILES += $(call admfiles,CSWlibxml2,depend) -DISTFILES += $(call admfiles,CSWlibxml2devel,depend) +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 +PACKAGES = CSWlibxml2 CSWlibxml2devel CSWpylibxml2 + +CATALOGNAME_CSWlibxml2 = libxml2 +CATALOGNAME_CSWlibxml2devel = libxml2_devel +CATALOGNAME_CSWpylibxml2 = pylibxml2 + +REQUIRED_PKGS_CSWlibxml2 = CSWiconv CSWzlib +REQUIRED_PKGS_CSWlibxml2devel = CSWlibxml2 +REQUIRED_PKGS_CSWpylibxml2 = CSWpython CSWlibxml2 + # We don't have 64 bit Python yet CONFIGURE_ARGS_32 = --with-python=$(prefix) CONFIGURE_ARGS_64 = --without-python @@ -26,18 +33,24 @@ CONFIGURE_ARGS = $(DIRPATHS) $(CONFIGURE_ARGS_$(MEMORYMODEL)) BUILD64 = 1 - NO_ISAEXEC = 1 -MERGE_EXCLUDE_FILES = .*\.la +# Skip 64 bit binaries - they are just big and gain nothing +MERGE_DIRS_isa-sparcv9 = $(libdir) +MERGE_DIRS_isa-amd64 = $(libdir) + +EXTRA_PAX_ARGS = -s ",^\.$(docdir)/libxml2-$(GARVERSION),.$(docdir)/libxml2,p" +EXTRA_PAX_ARGS += -s ",^\.$(docdir)/libxml2-python-$(GARVERSION),.$(docdir)/pylibxml2,p" +EXTRA_PAX_ARGS += -s ",^\.$(libdir)/python[^/]*,.$(libdir)/python,p" + PKGFILES_CSWlibxml2devel = $(PKGFILES_DEVEL) -PKGFILES_CSWlibxml2devel += $(docdir)/libxml2-$(GARVERSION)/.* +PKGFILES_CSWlibxml2devel += $(docdir)/libxml2/.* PKGFILES_CSWlibxml2devel += $(sharedstatedir)/gtk-doc/.* PKGFILES_CSWlibxml2devel += $(libdir)/xml2Conf.sh PKGFILES_CSWlibxml2devel += $(call isadirs,$(libdir),xml2Conf.sh) PKGFILES_CSWpylibxml2 = $(libdir)/python/.* -PKGFILES_CSWpylibxml2 += $(docdir)/libxml2-python-$(GARVERSION)/.* +PKGFILES_CSWpylibxml2 += $(docdir)/pylibxml2/.* include gar/category.mk Modified: csw/mgar/pkg/libxml2/trunk/checksums =================================================================== --- csw/mgar/pkg/libxml2/trunk/checksums 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/checksums 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,7 +1 @@ -dc43ff7ae6aded45f578c87b7b0c8766 download/libxml2-2.7.2.tar.gz -590a7d5677be4f5c67a52b08eba6fb2b download/CSWpylibxml2.gspec -dd8c26f51eb9a53545b4cd914b40675b download/CSWpylibxml2.depend -f07ada794bee08b0d3ec7dcd68d1e0ac download/CSWlibxml2.gspec -115241717779eb81926e5ff971d7fbd7 download/CSWlibxml2.depend -0633f70c4570a204284c219c02a3c00e download/CSWlibxml2devel.gspec -915b1265ec08b5efcfedb03ade19040f download/CSWlibxml2devel.depend +8f4fda3969237c2a33bdb1583b5d06b2 download/libxml2-2.7.3.tar.gz Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.depend 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,2 +0,0 @@ -P CSWiconv libiconv - GNU iconv library -P CSWzlib zlib - Zlib Data Compression Library Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2.gspec 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,4 +0,0 @@ -%var bitname libxml2 -%var pkgname CSWlibxml2 -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.depend 2009-08-19 13:05:37 UTC (rev 6056) @@ -1 +0,0 @@ -P CSWlibxml2 libxml2 - XML Parser Library Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWlibxml2devel.gspec 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,4 +0,0 @@ -%var bitname libxml2_devel -%var pkgname CSWlibxml2devel -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC_FIRSTMOD}/COPYING Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.depend 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,2 +0,0 @@ -P CSWlibxml2 libxml2 - XML Parser Library -P CSWpython python - A high-level scripting language. Deleted: csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec =================================================================== --- csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec 2009-08-19 12:45:48 UTC (rev 6055) +++ csw/mgar/pkg/libxml2/trunk/files/CSWpylibxml2.gspec 2009-08-19 13:05:37 UTC (rev 6056) @@ -1,4 +0,0 @@ -%var bitname pylibxml2 -%var pkgname CSWpylibxml2 -%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 wahwah at users.sourceforge.net Wed Aug 19 19:40:07 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 17:40:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[6057] csw/mgar/pkg/mysql5 Message-ID: Revision: 6057 http://gar.svn.sourceforge.net/gar/?rev=6057&view=rev Author: wahwah Date: 2009-08-19 17:40:06 +0000 (Wed, 19 Aug 2009) Log Message: ----------- mysql5: moving the legacy directory to branches Added Paths: ----------- csw/mgar/pkg/mysql5/branches/legacy/ Removed Paths: ------------- csw/mgar/pkg/mysql5/trunk/legacy/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 19 20:23:41 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 19 Aug 2009 18:23:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6058] csw/mgar/pkg/mysql5/branches/mysql-5.0.x/ Message-ID: Revision: 6058 http://gar.svn.sourceforge.net/gar/?rev=6058&view=rev Author: wahwah Date: 2009-08-19 18:23:41 +0000 (Wed, 19 Aug 2009) Log Message: ----------- mysql5: Copying mysql-5.1 to branches/mysql-5.0.x Added Paths: ----------- csw/mgar/pkg/mysql5/branches/mysql-5.0.x/ 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 Aug 20 05:36:33 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 20 Aug 2009 03:36:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[6059] csw/mgar/pkg/munin/trunk/Makefile Message-ID: Revision: 6059 http://gar.svn.sourceforge.net/gar/?rev=6059&view=rev Author: j_arndt Date: 2009-08-20 03:36:32 +0000 (Thu, 20 Aug 2009) Log Message: ----------- munin: fixed typo in dependencies in Makefile Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2009-08-19 18:23:41 UTC (rev 6058) +++ csw/mgar/pkg/munin/trunk/Makefile 2009-08-20 03:36:32 UTC (rev 6059) @@ -44,8 +44,8 @@ ARCHALL_CSWmuninnode = 1 REQUIRED_PKGS_CSWmuninmaster = CSWpmnetserver CSWperl CSWpython CSWpmparserecdescent -REQUIRED_PKGS_CSWmuninmaster = CSWpmhtmltmpl CSWpmdatemanip CSWpmmd5 CSWrrd CSWapache2 -REQUIRED_PKGS_CSWmuninmaster = CSWcswclassutils +REQUIRED_PKGS_CSWmuninmaster += CSWpmhtmltmpl CSWpmdatemanip CSWpmmd5 CSWrrd CSWapache2 +REQUIRED_PKGS_CSWmuninmaster += CSWcswclassutils REQUIRED_PKGS_CSWmuninnode = CSWpmdbi CSWpmnetsnmp CSWpmnetserver CSWperl CSWtop CSWcswclassutils 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 Aug 20 18:23:15 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Thu, 20 Aug 2009 16:23:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[6060] csw/mgar/pkg Message-ID: Revision: 6060 http://gar.svn.sourceforge.net/gar/?rev=6060&view=rev Author: bonivart Date: 2009-08-20 16:23:15 +0000 (Thu, 20 Aug 2009) Log Message: ----------- filezilla: initial commit Added Paths: ----------- csw/mgar/pkg/filezilla/ csw/mgar/pkg/filezilla/branches/ csw/mgar/pkg/filezilla/tags/ csw/mgar/pkg/filezilla/trunk/ csw/mgar/pkg/filezilla/trunk/Makefile csw/mgar/pkg/filezilla/trunk/checksums csw/mgar/pkg/filezilla/trunk/files/ Property changes on: csw/mgar/pkg/filezilla/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/filezilla/trunk/Makefile =================================================================== --- csw/mgar/pkg/filezilla/trunk/Makefile (rev 0) +++ csw/mgar/pkg/filezilla/trunk/Makefile 2009-08-20 16:23:15 UTC (rev 6060) @@ -0,0 +1,19 @@ +GARNAME = filezilla +GARVERSION = 3.2.7 +CATEGORIES = utils + +DESCRIPTION = Cross-platform FTP, FTPS and SFTP client +define BLURB + FileZilla Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with + lots of useful features and an intuitive graphical user interface. +endef + +MASTER_SITES = http://d10xg45o6p6dbl.cloudfront.net/projects/f/filezilla/ +DISTFILES = FileZilla_$(GARVERSION)_src.tar.bz2 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = FileZilla_(\d+(?:\.\d+)*)_src.tar.bz2 + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/filezilla/trunk/checksums =================================================================== --- csw/mgar/pkg/filezilla/trunk/checksums (rev 0) +++ csw/mgar/pkg/filezilla/trunk/checksums 2009-08-20 16:23:15 UTC (rev 6060) @@ -0,0 +1 @@ +fcbcb291ec6f4dd821670a4498b5ad35 download/FileZilla_3.2.7_src.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 21:44:30 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 19:44:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6061] csw/mgar/pkg Message-ID: Revision: 6061 http://gar.svn.sourceforge.net/gar/?rev=6061&view=rev Author: wahwah Date: 2009-08-20 19:44:30 +0000 (Thu, 20 Aug 2009) Log Message: ----------- myodbc: Initial commit Modified Paths: -------------- csw/mgar/pkg/myodbc/trunk/Makefile csw/mgar/pkg/myodbc/trunk/checksums Added Paths: ----------- csw/mgar/pkg/myodbc/ Modified: csw/mgar/pkg/myodbc/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-20 16:23:15 UTC (rev 6060) +++ csw/mgar/pkg/myodbc/trunk/Makefile 2009-08-20 19:44:30 UTC (rev 6061) @@ -2,181 +2,43 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = myodbc +GARVERSION = 3.51.27 +PATCHLEVEL = r695 +DL_NAME = mysql-connector-odbc CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = MySQL Connector/ODBC 3.51 define BLURB - + This provides database connectivity for mysql, best used together with unixODBC endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -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 -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true +SPKG_SOURCEURL = http://dev.mysql.com/downloads/connector/odbc/3.51.html#source +MASTER_SITES = http://mirror.trouble-free.net/mysql_mirror//Downloads/Connector-ODBC/3.51/ +MASTER_SITES += ftp://mirror.anl.gov/pub/mysql//Downloads/Connector-ODBC/3.51/ +MASTER_SITES += http://opensource.become.com/mysql/Downloads/Connector-ODBC/3.51/ +MASTER_SITES += ftp://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.0/ +DISTFILES = $(DL_NAME)-$(GARVERSION)$(PATCHLEVEL).tar.gz +DISTFILES += mysql-5.0.84.tar.gz +UFILES_REGEX = $(DL_NAME)-(\d+(?:\.\d+)*)r(\d+).tar.gz +CATALOGNAME = myodbc -#include gar/category.mk +sysconfdir = /etc/opt/csw +localstatedir = /var/opt/csw + +REQUIRED_PKGS = CSWiconv +REQUIRED_PKGS += CSWlibtoolrt +REQUIRED_PKGS += CSWmysql5devel +REQUIRED_PKGS += CSWmysql5rt +REQUIRED_PKGS += CSWunixodbc +REQUIRED_PKGS += CSWzlib + +PREREQUISITE_PKGS = $(REQUIRED_PKGS) +# The tests act weird. They require a shared library that doesn't get built at all. +TEST_SCRIPTS = +WORKSRC = $(WORKDIR)/$(DL_NAME)-$(GARVERSION)$(PATCHLEVEL) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-unixODBC=/opt/csw --with-mysql-path=/opt/csw/mysql5 --enable-gui=no +CONFIGURE_ARGS += --with-odbc-ini=/etc/opt/csw +EXTRA_INC = $(abspath $(WORKDIR))/mysql-5.0.84/include +include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) Modified: csw/mgar/pkg/myodbc/trunk/checksums =================================================================== --- csw/mgar/pkg/template/trunk/checksums 2009-08-20 16:23:15 UTC (rev 6060) +++ csw/mgar/pkg/myodbc/trunk/checksums 2009-08-20 19:44:30 UTC (rev 6061) @@ -0,0 +1,2 @@ +671348f1a5b078da9ca76f97e1fda325 download/mysql-5.0.84.tar.gz +bb3df0778a7dc99d88ce1146ea709cbe download/mysql-connector-odbc-3.51.27r695.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 21:45:17 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 19:45:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[6062] csw/mgar/pkg/myodbc3/ Message-ID: Revision: 6062 http://gar.svn.sourceforge.net/gar/?rev=6062&view=rev Author: wahwah Date: 2009-08-20 19:45:17 +0000 (Thu, 20 Aug 2009) Log Message: ----------- myodbc3: Removing, 'myodbc' is going to be used. Removed Paths: ------------- csw/mgar/pkg/myodbc3/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 22:02:48 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 20:02:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6063] csw/mgar/pkg/wxwidgets/ Message-ID: Revision: 6063 http://gar.svn.sourceforge.net/gar/?rev=6063&view=rev Author: wahwah Date: 2009-08-20 20:02:48 +0000 (Thu, 20 Aug 2009) Log Message: ----------- wxwidgets: Copying the template Added Paths: ----------- csw/mgar/pkg/wxwidgets/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 20 22:42:47 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 20 Aug 2009 20:42:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[6064] csw/mgar/pkg/wxwidgets/trunk Message-ID: Revision: 6064 http://gar.svn.sourceforge.net/gar/?rev=6064&view=rev Author: wahwah Date: 2009-08-20 20:42:46 +0000 (Thu, 20 Aug 2009) Log Message: ----------- wxwidgets: Some preliminary work is done. It doesn't compile for me. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile csw/mgar/pkg/wxwidgets/trunk/checksums Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-20 20:02:48 UTC (rev 6063) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-20 20:42:46 UTC (rev 6064) @@ -11,8 +11,8 @@ ## For more information about GAR variables, please see: ## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference ## -GARNAME = mypkg -GARVERSION = 1.0 +GARNAME = wxWidgets +GARVERSION = 2.8.10 ## ## The category that your software fits in. This is not a descriptive field, but ## influences the build process. Depending on the CATEGORIES setting, different @@ -25,7 +25,7 @@ CATEGORIES = lib ## ## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = +DESCRIPTION = A portable widget library ## ## A longer description of the package. This is only for descriptive purposes ## inside the Makefile and is not used elsewhere. @@ -39,12 +39,12 @@ ## ## Whitespace-separated list of URLs to download the source package from. ## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = +MASTER_SITES = $(SF_MIRRORS) ## ## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the ## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge ## project name of the software you wish to download. -## SF_PROJ = +SF_PROJ = wxwindows ## ## A list of space separated patch filenames from files/ that are to be applied ## to the extracted software before the ./configure stage. Patches need to be @@ -61,7 +61,7 @@ ## ## Catalog name is the name to be used with pkg{-get,util} -i . ## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = +CATALOGNAME = wxwidgets ## ## Set to 1 to mark the package as architecture-independent. ## ARCHALL = 0 @@ -120,10 +120,10 @@ ## INITSMF = ## USERGROUP = ## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = +REQUIRED_PKGS = CSWgtk2 ## ## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel ## ## When using non-empty $(PACKAGES): ## REQUIRED_PKGS_CSWpkgname = @@ -157,13 +157,16 @@ ## BUILD_ARGS = ## ## Arguments passed to the ./configure script. -CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex +CONFIGURE_ARGS += --disable-unicode --with-opengl ## ## BUILD64 = ## CONFIGURE_ENV = -## EXTRA_CFLAGS = +EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt +## -L/opt/csw/lib -R/opt/csw/lib ## EXTRA_LDFLAGS = -## EXTRA_INC = +## EXTRA_INC = /opt/csw/include/gtk-2.0 ## EXTRA_LIB = ## GARFLAVOR = ## INSTALL_ARGS = @@ -173,10 +176,5 @@ ## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. ## GARCOMPILER = SOS11 ## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig +include gar/category.mk Modified: csw/mgar/pkg/wxwidgets/trunk/checksums =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-20 20:02:48 UTC (rev 6063) +++ csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-20 20:42:46 UTC (rev 6064) @@ -0,0 +1 @@ +05b32ca051651f4b1885a90f62969faf download/wxWidgets-2.8.10.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Fri Aug 21 10:35:03 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Fri, 21 Aug 2009 08:35:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[6065] csw/mgar/pkg/wxwidgets/trunk Message-ID: Revision: 6065 http://gar.svn.sourceforge.net/gar/?rev=6065&view=rev Author: wahwah Date: 2009-08-21 08:35:02 +0000 (Fri, 21 Aug 2009) Log Message: ----------- wxwidgets: Got the configuration phase to complete Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile csw/mgar/pkg/wxwidgets/trunk/checksums Added Paths: ----------- csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch csw/mgar/pkg/wxwidgets/trunk/files/0002-Fixing-retarded-checks-for-libGL.patch Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-20 20:42:46 UTC (rev 6064) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-21 08:35:02 UTC (rev 6065) @@ -2,6 +2,13 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +# It's a work in progress! +# +# Done: configuration phase completes now. +# TODO: +# - Make sure the compilation phase completes +# - Split the installed files into separate packages + ## This file contains comments to guide you through various GAR settings. ## Please remove unnecessary comments before committing your code to the code ## repository. The comments to remove are marked with double hashes. @@ -30,16 +37,16 @@ ## A longer description of the package. This is only for descriptive purposes ## inside the Makefile and is not used elsewhere. define BLURB - endef ## ## Upstream URL that should show up in the VENDOR field as well as on ## http://opencsw.org/packages/. -SPKG_SOURCEURL = +SPKG_SOURCEURL = http://www.wxwidgets.org/ ## ## Whitespace-separated list of URLs to download the source package from. ## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES = $(SF_MIRRORS) +MASTER_SITES += http://trac.wxwidgets.org/raw-attachment/ticket/10660/ ## ## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the ## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge @@ -49,12 +56,14 @@ ## A list of space separated patch filenames from files/ that are to be applied ## to the extracted software before the ./configure stage. Patches need to be ## included in the DISTFILES variable as well. -## PATCHFILES = +PATCHFILES = 0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch +PATCHFILES += 0002-Fixing-retarded-checks-for-libGL.patch ## ## Whitespace-separated list of files which comprise this build. mGAR will look ## for the files in the $(FILEDIR) (trunk/files) directory and on the ## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += $(PATCHFILES) ## ## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -166,8 +175,8 @@ EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt ## -L/opt/csw/lib -R/opt/csw/lib ## EXTRA_LDFLAGS = -## EXTRA_INC = /opt/csw/include/gtk-2.0 -## EXTRA_LIB = +EXTRA_INC = /opt/csw/X11/include +EXTRA_LIB = /opt/csw/X11/lib ## GARFLAVOR = ## INSTALL_ARGS = ## OPT_FLAGS_SOS = -xO3 @@ -177,4 +186,5 @@ ## GARCOMPILER = SOS11 ## PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig + include gar/category.mk Modified: csw/mgar/pkg/wxwidgets/trunk/checksums =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-20 20:42:46 UTC (rev 6064) +++ csw/mgar/pkg/wxwidgets/trunk/checksums 2009-08-21 08:35:02 UTC (rev 6065) @@ -1 +1,3 @@ +7830ab8006ade9b14567341b5481eadd download/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch +45df2933ed2fa53f229feda01467db81 download/0002-Fixing-retarded-checks-for-libGL.patch 05b32ca051651f4b1885a90f62969faf download/wxWidgets-2.8.10.tar.gz Added: csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch (rev 0) +++ csw/mgar/pkg/wxwidgets/trunk/files/0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch 2009-08-21 08:35:02 UTC (rev 6065) @@ -0,0 +1,3566 @@ +From 3f9876856278a83d9f15e3d3be8ac1b037356a15 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Fri, 21 Aug 2009 08:49:59 +0200 +Subject: [PATCH] Patches from http://trac.wxwidgets.org/ticket/10660 + +--- + Makefile.in | 128 +++++++------- + build/bakefiles/common.bkl | 2 + + include/wx/afterstd.h | 11 + + include/wx/arrstr.h | 4 +- + include/wx/artprov.h | 6 +- + include/wx/beforestd.h | 10 + + include/wx/buffer.h | 2 +- + include/wx/cocoa/dirdlg.h | 2 +- + include/wx/confbase.h | 4 +- + include/wx/cppunit.h | 2 +- + include/wx/cshelp.h | 2 +- + include/wx/datectrl.h | 2 +- + include/wx/datetime.h | 42 ++-- + include/wx/dbgrid.h | 6 +- + include/wx/dbtable.h | 2 +- + include/wx/dcbuffer.h | 6 +- + include/wx/dcmirror.h | 6 +- + include/wx/debug.h | 6 +- + include/wx/debugrpt.h | 2 +- + include/wx/defs.h | 18 +- + include/wx/dynlib.h | 2 +- + include/wx/dynload.h | 2 +- + include/wx/event.h | 4 +- + include/wx/ffile.h | 4 +- + include/wx/filefn.h | 2 +- + include/wx/filename.h | 4 +- + include/wx/generic/calctrl.h | 6 +- + include/wx/generic/combo.h | 4 +- + include/wx/generic/grid.h | 14 +- + include/wx/generic/gridctrl.h | 4 +- + include/wx/generic/spinctlg.h | 8 +- + include/wx/generic/splitter.h | 2 +- + include/wx/glcanvas.h | 2 +- + include/wx/gtk/checklst.h | 6 +- + include/wx/gtk/spinctrl.h | 4 +- + include/wx/gtk1/checklst.h | 6 +- + include/wx/gtk1/spinctrl.h | 4 +- + include/wx/imagbmp.h | 26 ++-- + include/wx/image.h | 12 +- + include/wx/imagtiff.h | 8 +- + include/wx/intl.h | 16 +- + include/wx/list.h | 2 +- + include/wx/longlong.h | 8 +- + include/wx/mimetype.h | 6 +- + include/wx/module.h | 2 +- + include/wx/msgdlg.h | 4 +- + include/wx/object.h | 2 +- + include/wx/palette.h | 2 +- + include/wx/private/fileback.h | 2 +- + include/wx/protocol/ftp.h | 2 +- + include/wx/recguard.h | 2 +- + include/wx/selstore.h | 2 +- + include/wx/sound.h | 2 +- + include/wx/spinbutt.h | 2 +- + include/wx/stopwatch.h | 2 +- + include/wx/string.h | 30 ++-- + include/wx/tbarbase.h | 4 +- + include/wx/thrimpl.cpp | 22 +- + include/wx/tokenzr.h | 2 +- + include/wx/univ/button.h | 8 +- + include/wx/univ/checkbox.h | 6 +- + include/wx/univ/checklst.h | 2 +- + include/wx/univ/combobox.h | 6 +- + include/wx/univ/control.h | 4 +- + include/wx/univ/inpcons.h | 2 +- + include/wx/univ/inphand.h | 30 ++-- + include/wx/univ/listbox.h | 36 ++-- + include/wx/univ/menuitem.h | 4 +- + include/wx/univ/notebook.h | 6 +- + include/wx/univ/scrolbar.h | 18 +- + include/wx/univ/slider.h | 20 +- + include/wx/univ/spinbutt.h | 4 +- + include/wx/univ/textctrl.h | 52 +++--- + include/wx/univ/toolbar.h | 4 +- + include/wx/univ/toplevel.h | 12 +- + include/wx/valtext.h | 4 +- + include/wx/vector.h | 2 +- + include/wx/version.h | 4 +- + include/wx/vlbox.h | 4 +- + include/wx/wfstream.h | 4 +- + include/wx/wxchar.h | 32 ++-- + include/wx/x11/textctrl.h | 50 +++--- + include/wx/xrc/xmlres.h | 2 +- + utils/wxrc/wxrc.cpp | 414 ++++++++++++++++++++-------------------- + 84 files changed, 631 insertions(+), 600 deletions(-) + +diff --git a/Makefile.in b/Makefile.in +index 8c1a03e..175a0fb 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -75,7 +75,7 @@ WX_RELEASE = 2.8 + WX_RELEASE_NODOT = 28 + WX_VERSION = $(WX_RELEASE).10 + LIBDIRNAME = $(wx_top_builddir)/lib +-WXREGEX_CFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(____SHARED) \ ++WXREGEX_CFLAGS = -D__WX$(TOOLKIT)__ -DWXBUILDING $(__WXUNIV_DEFINE_p) $(____SHARED) \ + $(CPPFLAGS) $(CFLAGS) + WXREGEX_OBJECTS = \ + wxregex_regcomp.o \ +@@ -676,17 +676,17 @@ ALL_BASE_SOURCES = \ + src/common/dbtable.cpp + MONODLL_CFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=1 \ + -DWXMAKINGDLL $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + MONODLL_CXXFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 -DWXMAKINGDLL $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + MONODLL_OBJCXXFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 -DWXMAKINGDLL $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + MONODLL_OBJECTS = \ +@@ -781,17 +781,17 @@ MONODLL_OBJECTS = \ + MONODLL_ODEP = $(_____pch_wxprec_monodll_wx_wxprec_h_gch___depname) + MONOLIB_CFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=1 $(CPPFLAGS) \ + $(CFLAGS) + MONOLIB_CXXFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 $(CPPFLAGS) $(CXXFLAGS) + MONOLIB_OBJCXXFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=1 $(CPPFLAGS) $(OBJCXXFLAGS) + MONOLIB_OBJECTS = \ +@@ -885,12 +885,12 @@ MONOLIB_OBJECTS = \ + MONOLIB_ODEP = $(_____pch_wxprec_monolib_wx_wxprec_h_gch___depname) + BASEDLL_CFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 \ + -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + BASEDLL_CXXFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(PIC_FLAG) $(CPPFLAGS) \ + $(CXXFLAGS) +@@ -971,12 +971,12 @@ BASEDLL_OBJECTS = \ + BASEDLL_ODEP = $(_____pch_wxprec_basedll_wx_wxprec_h_gch___depname) + BASELIB_CFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 \ + -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS) + BASELIB_CXXFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) $(CXXFLAGS) + BASELIB_OBJECTS = \ +@@ -1055,7 +1055,7 @@ BASELIB_OBJECTS = \ + BASELIB_ODEP = $(_____pch_wxprec_baselib_wx_wxprec_h_gch___depname) + NETDLL_CXXFLAGS = $(__netdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXUSINGDLL \ + -DWXMAKINGDLL_NET $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + NETDLL_OBJECTS = \ +@@ -1074,7 +1074,7 @@ NETDLL_OBJECTS = \ + NETDLL_ODEP = $(_____pch_wxprec_netdll_wx_wxprec_h_gch___depname) + NETLIB_CXXFLAGS = $(__netlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 $(CPPFLAGS) \ + $(CXXFLAGS) + NETLIB_OBJECTS = \ +@@ -1092,18 +1092,18 @@ NETLIB_OBJECTS = \ + NETLIB_ODEP = $(_____pch_wxprec_netlib_wx_wxprec_h_gch___depname) + COREDLL_CFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + COREDLL_CXXFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) \ + $(CXXFLAGS) + COREDLL_OBJCXXFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) \ + $(OBJCXXFLAGS) +@@ -1119,17 +1119,17 @@ COREDLL_OBJECTS = \ + COREDLL_ODEP = $(_____pch_wxprec_coredll_wx_wxprec_h_gch___depname) + CORELIB_CFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=0 $(CPPFLAGS) \ + $(CFLAGS) + CORELIB_CXXFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=0 $(CPPFLAGS) $(CXXFLAGS) + CORELIB_OBJCXXFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_BASE=0 $(CPPFLAGS) $(OBJCXXFLAGS) + CORELIB_OBJECTS = \ +@@ -1143,17 +1143,17 @@ CORELIB_OBJECTS = \ + CORELIB_ODEP = $(_____pch_wxprec_corelib_wx_wxprec_h_gch___depname) + ADVDLL_CFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS) + ADVDLL_CXXFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + ADVDLL_OBJCXXFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + ADVDLL_OBJECTS = \ +@@ -1163,15 +1163,15 @@ ADVDLL_OBJECTS = \ + ADVDLL_ODEP = $(_____pch_wxprec_advdll_wx_wxprec_h_gch___depname) + ADVLIB_CFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CFLAGS) + ADVLIB_CXXFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + ADVLIB_OBJCXXFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(OBJCXXFLAGS) + ADVLIB_OBJECTS = \ +@@ -1180,12 +1180,12 @@ ADVLIB_OBJECTS = \ + ADVLIB_ODEP = $(_____pch_wxprec_advlib_wx_wxprec_h_gch___depname) + MEDIADLL_CXXFLAGS = $(__mediadll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_MEDIA $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + MEDIADLL_OBJCXXFLAGS = $(__mediadll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_MEDIA $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + MEDIADLL_OBJECTS = \ +@@ -1195,12 +1195,12 @@ MEDIADLL_OBJECTS = \ + MEDIADLL_ODEP = $(_____pch_wxprec_mediadll_wx_wxprec_h_gch___depname) + MEDIALIB_CXXFLAGS = $(__medialib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + MEDIALIB_OBJCXXFLAGS = $(__medialib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(OBJCXXFLAGS) + MEDIALIB_OBJECTS = \ +@@ -1209,7 +1209,7 @@ MEDIALIB_OBJECTS = \ + MEDIALIB_ODEP = $(_____pch_wxprec_medialib_wx_wxprec_h_gch___depname) + ODBCDLL_CXXFLAGS = $(__odbcdll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_ODBC $(PIC_FLAG) $(CPPFLAGS) \ + $(CXXFLAGS) +@@ -1220,7 +1220,7 @@ ODBCDLL_OBJECTS = \ + ODBCDLL_ODEP = $(_____pch_wxprec_odbcdll_wx_wxprec_h_gch___depname) + ODBCLIB_CXXFLAGS = $(__odbclib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DwxUSE_GUI=0 $(CPPFLAGS) $(CXXFLAGS) + ODBCLIB_OBJECTS = \ +@@ -1229,7 +1229,7 @@ ODBCLIB_OBJECTS = \ + ODBCLIB_ODEP = $(_____pch_wxprec_odbclib_wx_wxprec_h_gch___depname) + DBGRIDDLL_CXXFLAGS = $(__dbgriddll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_DBGRID $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + DBGRIDDLL_OBJECTS = \ +@@ -1238,7 +1238,7 @@ DBGRIDDLL_OBJECTS = \ + DBGRIDDLL_ODEP = $(_____pch_wxprec_dbgriddll_wx_wxprec_h_gch___depname) + DBGRIDLIB_CXXFLAGS = $(__dbgridlib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + DBGRIDLIB_OBJECTS = \ +@@ -1246,7 +1246,7 @@ DBGRIDLIB_OBJECTS = \ + DBGRIDLIB_ODEP = $(_____pch_wxprec_dbgridlib_wx_wxprec_h_gch___depname) + HTMLDLL_CXXFLAGS = $(__htmldll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_HTML $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + HTMLDLL_OBJECTS = \ +@@ -1278,7 +1278,7 @@ HTMLDLL_OBJECTS = \ + HTMLDLL_ODEP = $(_____pch_wxprec_htmldll_wx_wxprec_h_gch___depname) + HTMLLIB_CXXFLAGS = $(__htmllib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + HTMLLIB_OBJECTS = \ +@@ -1309,7 +1309,7 @@ HTMLLIB_OBJECTS = \ + HTMLLIB_ODEP = $(_____pch_wxprec_htmllib_wx_wxprec_h_gch___depname) + QADLL_CXXFLAGS = $(__qadll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_QA $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + QADLL_OBJECTS = \ +@@ -1319,7 +1319,7 @@ QADLL_OBJECTS = \ + QADLL_ODEP = $(_____pch_wxprec_qadll_wx_wxprec_h_gch___depname) + QALIB_CXXFLAGS = $(__qalib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + QALIB_OBJECTS = \ + qalib_debugrpt.o \ +@@ -1327,7 +1327,7 @@ QALIB_OBJECTS = \ + QALIB_ODEP = $(_____pch_wxprec_qalib_wx_wxprec_h_gch___depname) + XMLDLL_CXXFLAGS = $(__xmldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXUSINGDLL \ + -DWXMAKINGDLL_XML $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + XMLDLL_OBJECTS = \ +@@ -1337,7 +1337,7 @@ XMLDLL_OBJECTS = \ + XMLDLL_ODEP = $(_____pch_wxprec_xmldll_wx_wxprec_h_gch___depname) + XMLLIB_CXXFLAGS = $(__xmllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 $(CPPFLAGS) \ + $(CXXFLAGS) + XMLLIB_OBJECTS = \ +@@ -1346,7 +1346,7 @@ XMLLIB_OBJECTS = \ + XMLLIB_ODEP = $(_____pch_wxprec_xmllib_wx_wxprec_h_gch___depname) + XRCDLL_CXXFLAGS = $(__xrcdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_XRC $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + XRCDLL_OBJECTS = \ +@@ -1410,7 +1410,7 @@ XRCDLL_OBJECTS = \ + XRCDLL_ODEP = $(_____pch_wxprec_xrcdll_wx_wxprec_h_gch___depname) + XRCLIB_CXXFLAGS = $(__xrclib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + XRCLIB_OBJECTS = \ + xrclib_xh_animatctrl.o \ +@@ -1472,7 +1472,7 @@ XRCLIB_OBJECTS = \ + XRCLIB_ODEP = $(_____pch_wxprec_xrclib_wx_wxprec_h_gch___depname) + AUIDLL_CXXFLAGS = $(__auidll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_AUI $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + AUIDLL_OBJECTS = \ +@@ -1486,7 +1486,7 @@ AUIDLL_OBJECTS = \ + AUIDLL_ODEP = $(_____pch_wxprec_auidll_wx_wxprec_h_gch___depname) + AUILIB_CXXFLAGS = $(__auilib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + AUILIB_OBJECTS = \ + auilib_framemanager.o \ +@@ -1498,7 +1498,7 @@ AUILIB_OBJECTS = \ + AUILIB_ODEP = $(_____pch_wxprec_auilib_wx_wxprec_h_gch___depname) + RICHTEXTDLL_CXXFLAGS = $(__richtextdll_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + -DWXUSINGDLL -DWXMAKINGDLL_RICHTEXT $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + RICHTEXTDLL_OBJECTS = \ +@@ -1515,7 +1515,7 @@ RICHTEXTDLL_OBJECTS = \ + RICHTEXTDLL_ODEP = $(_____pch_wxprec_richtextdll_wx_wxprec_h_gch___depname) + RICHTEXTLIB_CXXFLAGS = $(__richtextlib_PCH_INC) -D__WX$(TOOLKIT)__ \ + $(__WXUNIV_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \ +- $(__THREAD_DEFINE_p) $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ ++ $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) \ + $(__INC_ZLIB_p) $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) \ + $(CPPFLAGS) $(CXXFLAGS) + RICHTEXTLIB_OBJECTS = \ +@@ -1531,12 +1531,12 @@ RICHTEXTLIB_OBJECTS = \ + RICHTEXTLIB_ODEP = $(_____pch_wxprec_richtextlib_wx_wxprec_h_gch___depname) + GLDLL_CXXFLAGS = $(__gldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_GL $(PIC_FLAG) $(CPPFLAGS) $(CXXFLAGS) + GLDLL_OBJCXXFLAGS = $(__gldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL \ + -DWXMAKINGDLL_GL $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS) + GLDLL_OBJECTS = \ +@@ -1545,11 +1545,11 @@ GLDLL_OBJECTS = \ + GLDLL_ODEP = $(_____pch_wxprec_gldll_wx_wxprec_h_gch___depname) + GLLIB_CXXFLAGS = $(__gllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(CXXFLAGS) + GLLIB_OBJCXXFLAGS = $(__gllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \ + $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \ +- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ ++ -DWXBUILDING $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \ + $(__INC_ODBC_p) $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(OBJCXXFLAGS) + GLLIB_OBJECTS = \ + $(__OPENGL_SRC_OBJECTS_1) +@@ -12660,7 +12660,7 @@ wxexpat_xmltok.o: $(srcdir)/src/expat/lib/xmltok.c + $(CCC) -c -o $@ $(WXEXPAT_CFLAGS) $(srcdir)/src/expat/lib/xmltok.c + + monodll_version_rc.o: $(srcdir)/src/msw/version.rc $(MONODLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_BASE=1 --define WXMAKINGDLL ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_BASE=1 --define WXMAKINGDLL + + monodll_appbase.o: $(srcdir)/src/common/appbase.cpp $(MONODLL_ODEP) + $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/common/appbase.cpp +@@ -20937,7 +20937,7 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP) + @COND_PLATFORM_MACOSX_1_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/html/chm.cpp + + basedll_version_rc.o: $(srcdir)/src/msw/version.rc $(BASEDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1 ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1 + + basedll_appbase.o: $(srcdir)/src/common/appbase.cpp $(BASEDLL_ODEP) + $(CXXC) -c -o $@ $(BASEDLL_CXXFLAGS) $(srcdir)/src/common/appbase.cpp +@@ -22122,7 +22122,7 @@ baselib_uma.o: $(srcdir)/src/mac/carbon/uma.cpp $(BASELIB_ODEP) + @COND_PLATFORM_MACOSX_1@ $(CXXC) -c -o $@ $(BASELIB_CXXFLAGS) $(srcdir)/src/unix/utilsunx.cpp + + netdll_version_rc.o: $(srcdir)/src/msw/version.rc $(NETDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET + + netdll_fs_inet.o: $(srcdir)/src/common/fs_inet.cpp $(NETDLL_ODEP) + $(CXXC) -c -o $@ $(NETDLL_CXXFLAGS) $(srcdir)/src/common/fs_inet.cpp +@@ -22227,7 +22227,7 @@ netlib_carbon_gsocket.o: $(srcdir)/src/mac/carbon/gsocket.cpp $(NETLIB_ODEP) + @COND_PLATFORM_OS2_1@ $(CXXC) -c -o $@ $(NETLIB_CXXFLAGS) $(srcdir)/src/unix/gsocket.cpp + + coredll_version_rc.o: $(srcdir)/src/msw/version.rc $(COREDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0 ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0 + + coredll_event.o: $(srcdir)/src/common/event.cpp $(COREDLL_ODEP) + $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/common/event.cpp +@@ -28158,7 +28158,7 @@ corelib_win32.o: $(srcdir)/src/univ/themes/win32.cpp $(CORELIB_ODEP) + @COND_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/vscroll.cpp + + advdll_version_rc.o: $(srcdir)/src/msw/version.rc $(ADVDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_ADV ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_ADV + + advdll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(ADVDLL_ODEP) + $(CXXC) -c -o $@ $(ADVDLL_CXXFLAGS) $(srcdir)/src/unix/sound_sdl.cpp +@@ -28581,7 +28581,7 @@ advlib_wizard.o: $(srcdir)/src/generic/wizard.cpp $(ADVLIB_ODEP) + @COND_TOOLKIT_WINCE_WXUNIV_0@ $(CXXC) -c -o $@ $(ADVLIB_CXXFLAGS) $(srcdir)/src/msw/datectrl.cpp + + mediadll_version_rc.o: $(srcdir)/src/msw/version.rc $(MEDIADLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_MEDIA ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_MEDIA + + mediadll_mediactrlcmn.o: $(srcdir)/src/common/mediactrlcmn.cpp $(MEDIADLL_ODEP) + $(CXXC) -c -o $@ $(MEDIADLL_CXXFLAGS) $(srcdir)/src/common/mediactrlcmn.cpp +@@ -28668,7 +28668,7 @@ medialib_cocoa_mediactrl.o: $(srcdir)/src/cocoa/mediactrl.mm $(MEDIALIB_ODEP) + @COND_TOOLKIT_X11@ $(CXXC) -c -o $@ $(MEDIALIB_CXXFLAGS) $(srcdir)/src/unix/mediactrl.cpp + + odbcdll_version_rc.o: $(srcdir)/src/msw/version.rc $(ODBCDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_odbc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_ODBC ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_odbc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_ODBC + + odbcdll_db.o: $(srcdir)/src/common/db.cpp $(ODBCDLL_ODEP) + $(CXXC) -c -o $@ $(ODBCDLL_CXXFLAGS) $(srcdir)/src/common/db.cpp +@@ -28683,7 +28683,7 @@ odbclib_dbtable.o: $(srcdir)/src/common/dbtable.cpp $(ODBCLIB_ODEP) + $(CXXC) -c -o $@ $(ODBCLIB_CXXFLAGS) $(srcdir)/src/common/dbtable.cpp + + dbgriddll_version_rc.o: $(srcdir)/src/msw/version.rc $(DBGRIDDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_dbgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_DBGRID ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_dbgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_DBGRID + + dbgriddll_dbgrid.o: $(srcdir)/src/common/dbgrid.cpp $(DBGRIDDLL_ODEP) + $(CXXC) -c -o $@ $(DBGRIDDLL_CXXFLAGS) $(srcdir)/src/common/dbgrid.cpp +@@ -28692,7 +28692,7 @@ dbgridlib_dbgrid.o: $(srcdir)/src/common/dbgrid.cpp $(DBGRIDLIB_ODEP) + $(CXXC) -c -o $@ $(DBGRIDLIB_CXXFLAGS) $(srcdir)/src/common/dbgrid.cpp + + htmldll_version_rc.o: $(srcdir)/src/msw/version.rc $(HTMLDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_HTML ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_HTML + + htmldll_helpbest.o: $(srcdir)/src/msw/helpbest.cpp $(HTMLDLL_ODEP) + $(CXXC) -c -o $@ $(HTMLDLL_CXXFLAGS) $(srcdir)/src/msw/helpbest.cpp +@@ -28851,7 +28851,7 @@ htmllib_htmllbox.o: $(srcdir)/src/generic/htmllbox.cpp $(HTMLLIB_ODEP) + @COND_PLATFORM_MACOSX_1@ $(CXXC) -c -o $@ $(HTMLLIB_CXXFLAGS) $(srcdir)/src/html/chm.cpp + + qadll_version_rc.o: $(srcdir)/src/msw/version.rc $(QADLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_QA ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_QA + + qadll_debugrpt.o: $(srcdir)/src/common/debugrpt.cpp $(QADLL_ODEP) + $(CXXC) -c -o $@ $(QADLL_CXXFLAGS) $(srcdir)/src/common/debugrpt.cpp +@@ -28866,7 +28866,7 @@ qalib_dbgrptg.o: $(srcdir)/src/generic/dbgrptg.cpp $(QALIB_ODEP) + $(CXXC) -c -o $@ $(QALIB_CXXFLAGS) $(srcdir)/src/generic/dbgrptg.cpp + + xmldll_version_rc.o: $(srcdir)/src/msw/version.rc $(XMLDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML + + xmldll_xml.o: $(srcdir)/src/xml/xml.cpp $(XMLDLL_ODEP) + $(CXXC) -c -o $@ $(XMLDLL_CXXFLAGS) $(srcdir)/src/xml/xml.cpp +@@ -28881,7 +28881,7 @@ xmllib_xtixml.o: $(srcdir)/src/common/xtixml.cpp $(XMLLIB_ODEP) + $(CXXC) -c -o $@ $(XMLLIB_CXXFLAGS) $(srcdir)/src/common/xtixml.cpp + + xrcdll_version_rc.o: $(srcdir)/src/msw/version.rc $(XRCDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_XRC ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_XRC + + xrcdll_xh_animatctrl.o: $(srcdir)/src/xrc/xh_animatctrl.cpp $(XRCDLL_ODEP) + $(CXXC) -c -o $@ $(XRCDLL_CXXFLAGS) $(srcdir)/src/xrc/xh_animatctrl.cpp +@@ -29220,7 +29220,7 @@ xrclib_xmlrsall.o: $(srcdir)/src/xrc/xmlrsall.cpp $(XRCLIB_ODEP) + $(CXXC) -c -o $@ $(XRCLIB_CXXFLAGS) $(srcdir)/src/xrc/xmlrsall.cpp + + auidll_version_rc.o: $(srcdir)/src/msw/version.rc $(AUIDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_AUI ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_AUI + + auidll_framemanager.o: $(srcdir)/src/aui/framemanager.cpp $(AUIDLL_ODEP) + $(CXXC) -c -o $@ $(AUIDLL_CXXFLAGS) $(srcdir)/src/aui/framemanager.cpp +@@ -29259,7 +29259,7 @@ auilib_auibar.o: $(srcdir)/src/aui/auibar.cpp $(AUILIB_ODEP) + $(CXXC) -c -o $@ $(AUILIB_CXXFLAGS) $(srcdir)/src/aui/auibar.cpp + + richtextdll_version_rc.o: $(srcdir)/src/msw/version.rc $(RICHTEXTDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT + + richtextdll_richtextctrl.o: $(srcdir)/src/richtext/richtextctrl.cpp $(RICHTEXTDLL_ODEP) + $(CXXC) -c -o $@ $(RICHTEXTDLL_CXXFLAGS) $(srcdir)/src/richtext/richtextctrl.cpp +@@ -29316,7 +29316,7 @@ richtextlib_richtextprint.o: $(srcdir)/src/richtext/richtextprint.cpp $(RICHTEXT + $(CXXC) -c -o $@ $(RICHTEXTLIB_CXXFLAGS) $(srcdir)/src/richtext/richtextprint.cpp + + gldll_version_rc.o: $(srcdir)/src/msw/version.rc $(GLDLL_ODEP) +- $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_GL ++ $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_58) $(__EXCEPTIONS_DEFINE_p_57) $(__RTTI_DEFINE_p_57) $(__THREAD_DEFINE_p_57) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_p_57) $(__INC_JPEG_p_58) $(__INC_PNG_p_57) $(__INC_ZLIB_p_59) $(__INC_ODBC_p_57) $(__INC_REGEX_p_57) $(__INC_EXPAT_p_57) --define WXUSINGDLL --define WXMAKINGDLL_GL + + gldll_carbon_glcanvas.o: $(srcdir)/src/mac/carbon/glcanvas.cpp $(GLDLL_ODEP) + $(CXXC) -c -o $@ $(GLDLL_CXXFLAGS) $(srcdir)/src/mac/carbon/glcanvas.cpp +diff --git a/build/bakefiles/common.bkl b/build/bakefiles/common.bkl +index 25cc25f..338fdad 100644 +--- a/build/bakefiles/common.bkl ++++ b/build/bakefiles/common.bkl +@@ -592,6 +592,8 @@ $(TAB)$(VC_COMPILER) /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\r + $(wxwin.mkLibName(wxid)) + $(WXLIBNAME) + ++ WXBUILDING ++ + + + $(WXTOPDIR)src/common/dummy.cpp +diff --git a/include/wx/afterstd.h b/include/wx/afterstd.h +index 4c1d4a5..a1ad8d1 100644 +--- a/include/wx/afterstd.h ++++ b/include/wx/afterstd.h +@@ -46,3 +46,14 @@ + #endif + #endif + ++#if defined(__SUNPRO_CC) || defined(__SUNPRO_C) ++#ifndef _T ++#if !wxUSE_UNICODE ++#define _T(x) x ++#else /* Unicode */ ++/* use wxCONCAT_HELPER so that x could be expanded if it's a macro */ ++#define _T(x) wxCONCAT_HELPER(L, x) ++#endif /* ASCII/Unicode */ ++#endif /* !defined(_T) */ ++ ++#endif /* defined(__SUNPRO_CC) || defined(__SUNPRO_C) */ +diff --git a/include/wx/arrstr.h b/include/wx/arrstr.h +index 0f1b908..d669dc6 100644 +--- a/include/wx/arrstr.h ++++ b/include/wx/arrstr.h +@@ -152,7 +152,7 @@ public: + wxString& Item(size_t nIndex) const + { + wxASSERT_MSG( nIndex < m_nCount, +- _T("wxArrayString: index out of bounds") ); ++ wxT("wxArrayString: index out of bounds") ); + + return *(wxString *)&(m_pItems[nIndex]); + } +@@ -163,7 +163,7 @@ public: + wxString& Last() const + { + wxASSERT_MSG( !IsEmpty(), +- _T("wxArrayString: index out of bounds") ); ++ wxT("wxArrayString: index out of bounds") ); + return Item(Count() - 1); + } + +diff --git a/include/wx/artprov.h b/include/wx/artprov.h +index 1d026a7..e6df4f3 100644 +--- a/include/wx/artprov.h ++++ b/include/wx/artprov.h +@@ -27,10 +27,10 @@ class wxArtProviderModule; + typedef wxString wxArtClient; + typedef wxString wxArtID; + +-#define wxART_MAKE_CLIENT_ID_FROM_STR(id) (id + _T("_C")) +-#define wxART_MAKE_CLIENT_ID(id) _T(#id) _T("_C") ++#define wxART_MAKE_CLIENT_ID_FROM_STR(id) (id + wxT("_C")) ++#define wxART_MAKE_CLIENT_ID(id) wxT(#id) wxT("_C") + #define wxART_MAKE_ART_ID_FROM_STR(id) (id) +-#define wxART_MAKE_ART_ID(id) _T(#id) ++#define wxART_MAKE_ART_ID(id) wxT(#id) + + // ---------------------------------------------------------------------------- + // Art clients +diff --git a/include/wx/beforestd.h b/include/wx/beforestd.h +index aacfc7c..609073c 100644 +--- a/include/wx/beforestd.h ++++ b/include/wx/beforestd.h +@@ -63,3 +63,13 @@ + #pragma warning(disable:4786) + #endif // VC++ < 7 + ++#if defined(__SUNPRO_CC) || defined(__SUNPRO_C) ++#undef _T ++#endif // SUNCC ++ ++#if defined (WXBUILDING) ++#if defined(__SUNPRO_CC) || defined(__SUNPRO_C) ++#undef _T ++#endif /* SUNCC */ ++#endif /* WXBUILDING */ ++ +diff --git a/include/wx/buffer.h b/include/wx/buffer.h +index 605f4f1..f169f22 100644 +--- a/include/wx/buffer.h ++++ b/include/wx/buffer.h +@@ -286,7 +286,7 @@ public: + // Other ways to append to the buffer + void AppendByte(char data) + { +- wxCHECK_RET( m_bufdata->m_data, _T("invalid wxMemoryBuffer") ); ++ wxCHECK_RET( m_bufdata->m_data, wxT("invalid wxMemoryBuffer") ); + + m_bufdata->ResizeIfNeeded(m_bufdata->m_len + 1); + *(((char*)m_bufdata->m_data) + m_bufdata->m_len) = data; +diff --git a/include/wx/cocoa/dirdlg.h b/include/wx/cocoa/dirdlg.h +index 3c5b8dc..084d561 100644 +--- a/include/wx/cocoa/dirdlg.h ++++ b/include/wx/cocoa/dirdlg.h +@@ -26,7 +26,7 @@ class WXDLLEXPORT wxDirDialog: public wxDirDialogBase + public: + wxDirDialog(wxWindow *parent, + const wxString& message = wxDirSelectorPromptStr, +- const wxString& defaultPath = _T(""), ++ const wxString& defaultPath = wxT(""), + long style = wxDD_DEFAULT_STYLE, + const wxPoint& pos = wxDefaultPosition, + const wxSize& size = wxDefaultSize, +diff --git a/include/wx/confbase.h b/include/wx/confbase.h +index 9e0cf54..2941b8a 100644 +--- a/include/wx/confbase.h ++++ b/include/wx/confbase.h +@@ -30,13 +30,13 @@ class WXDLLIMPEXP_FWD_BASE wxArrayString; + + /// separates group and entry names (probably shouldn't be changed) + #ifndef wxCONFIG_PATH_SEPARATOR +- #define wxCONFIG_PATH_SEPARATOR _T('/') ++ #define wxCONFIG_PATH_SEPARATOR wxT('/') + #endif + + /// introduces immutable entries + // (i.e. the ones which can't be changed from the local config file) + #ifndef wxCONFIG_IMMUTABLE_PREFIX +- #define wxCONFIG_IMMUTABLE_PREFIX _T('!') ++ #define wxCONFIG_IMMUTABLE_PREFIX wxT('!') + #endif + + #if wxUSE_CONFIG +diff --git a/include/wx/cppunit.h b/include/wx/cppunit.h +index c70cfbd..18266f8 100644 +--- a/include/wx/cppunit.h ++++ b/include/wx/cppunit.h +@@ -69,7 +69,7 @@ + if (Condition) \ + { anyTest; } \ + else \ +- wxLogInfo(wxString::Format(_T("skipping: %s.%s\n reason: %s equals false\n"), \ ++ wxLogInfo(wxString::Format(wxT("skipping: %s.%s\n reason: %s equals false\n"), \ + wxString(suiteName, wxConvUTF8).c_str(), \ + wxString(#testMethod, wxConvUTF8).c_str(), \ + wxString(#Condition, wxConvUTF8).c_str())) +diff --git a/include/wx/cshelp.h b/include/wx/cshelp.h +index f77ac4f..4cee508 100644 +--- a/include/wx/cshelp.h ++++ b/include/wx/cshelp.h +@@ -134,7 +134,7 @@ public: + const wxPoint& pt, + wxHelpEvent::Origin origin) + { +- wxCHECK_MSG( window, false, _T("window must not be NULL") ); ++ wxCHECK_MSG( window, false, wxT("window must not be NULL") ); + + m_helptextAtPoint = pt; + m_helptextOrigin = origin; +diff --git a/include/wx/datectrl.h b/include/wx/datectrl.h +index 0da1277..085a8d1 100644 +--- a/include/wx/datectrl.h ++++ b/include/wx/datectrl.h +@@ -19,7 +19,7 @@ + #include "wx/control.h" // the base class + #include "wx/datetime.h" + +-#define wxDatePickerCtrlNameStr _T("datectrl") ++#define wxDatePickerCtrlNameStr wxT("datectrl") + + // wxDatePickerCtrl styles + enum +diff --git a/include/wx/datetime.h b/include/wx/datetime.h +index e74dde1..cf6c024 100644 +--- a/include/wx/datetime.h ++++ b/include/wx/datetime.h +@@ -951,37 +951,37 @@ public: + + inline bool operator<(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() < dt.GetValue(); + } + + inline bool operator<=(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() <= dt.GetValue(); + } + + inline bool operator>(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() > dt.GetValue(); + } + + inline bool operator>=(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() >= dt.GetValue(); + } + + inline bool operator==(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() == dt.GetValue(); + } + + inline bool operator!=(const wxDateTime& dt) const + { +- wxASSERT_MSG( IsValid() && dt.IsValid(), _T("invalid wxDateTime") ); ++ wxASSERT_MSG( IsValid() && dt.IsValid(), wxT("invalid wxDateTime") ); + return GetValue() != dt.GetValue(); + } + +@@ -1075,15 +1075,15 @@ public: + wxString Format(const wxChar *format = wxDefaultDateTimeFormat, + const TimeZone& tz = Local) const; + // preferred date representation for the current locale +- wxString FormatDate() const { return Format(_T("%x")); } ++ wxString FormatDate() const { return Format(wxT("%x")); } + // preferred time representation for the current locale +- wxString FormatTime() const { return Format(_T("%X")); } ++ wxString FormatTime() const { return Format(wxT("%X")); } + // returns the string representing the date in ISO 8601 format + // (YYYY-MM-DD) +- wxString FormatISODate() const { return Format(_T("%Y-%m-%d")); } ++ wxString FormatISODate() const { return Format(wxT("%Y-%m-%d")); } + // returns the string representing the time in ISO 8601 format + // (HH:MM:SS) +- wxString FormatISOTime() const { return Format(_T("%H:%M:%S")); } ++ wxString FormatISOTime() const { return Format(wxT("%H:%M:%S")); } + + // implementation + // ------------------------------------------------------------------------ +@@ -1647,7 +1647,7 @@ inline wxDateTime::wxDateTime(double jdn) + + inline wxDateTime& wxDateTime::Set(const Tm& tm) + { +- wxASSERT_MSG( tm.IsValid(), _T("invalid broken down date/time") ); ++ wxASSERT_MSG( tm.IsValid(), wxT("invalid broken down date/time") ); + + return Set(tm.mday, (Month)tm.mon, tm.year, + tm.hour, tm.min, tm.sec, tm.msec); +@@ -1678,14 +1678,14 @@ inline wxDateTime::wxDateTime(wxDateTime_t day, + + inline wxLongLong wxDateTime::GetValue() const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + return m_time; + } + + inline time_t wxDateTime::GetTicks() const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + if ( !IsInStdRange() ) + { + return (time_t)-1; +@@ -1753,21 +1753,21 @@ inline wxDateTime wxDateTime::GetYearDay(wxDateTime_t yday) const + + inline bool wxDateTime::IsEqualTo(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return m_time == datetime.m_time; + } + + inline bool wxDateTime::IsEarlierThan(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return m_time < datetime.m_time; + } + + inline bool wxDateTime::IsLaterThan(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return m_time > datetime.m_time; + } +@@ -1824,14 +1824,14 @@ inline bool wxDateTime::IsEqualUpTo(const wxDateTime& dt, + + inline wxDateTime wxDateTime::Add(const wxTimeSpan& diff) const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + return wxDateTime(m_time + diff.GetValue()); + } + + inline wxDateTime& wxDateTime::Add(const wxTimeSpan& diff) + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + m_time += diff.GetValue(); + +@@ -1845,14 +1845,14 @@ inline wxDateTime& wxDateTime::operator+=(const wxTimeSpan& diff) + + inline wxDateTime wxDateTime::Subtract(const wxTimeSpan& diff) const + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + return wxDateTime(m_time - diff.GetValue()); + } + + inline wxDateTime& wxDateTime::Subtract(const wxTimeSpan& diff) + { +- wxASSERT_MSG( IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime")); + + m_time -= diff.GetValue(); + +@@ -1866,7 +1866,7 @@ inline wxDateTime& wxDateTime::operator-=(const wxTimeSpan& diff) + + inline wxTimeSpan wxDateTime::Subtract(const wxDateTime& datetime) const + { +- wxASSERT_MSG( IsValid() && datetime.IsValid(), _T("invalid wxDateTime")); ++ wxASSERT_MSG( IsValid() && datetime.IsValid(), wxT("invalid wxDateTime")); + + return wxTimeSpan(GetValue() - datetime.GetValue()); + } +diff --git a/include/wx/dbgrid.h b/include/wx/dbgrid.h +index 4e8655c..7e3b513 100644 +--- a/include/wx/dbgrid.h ++++ b/include/wx/dbgrid.h +@@ -23,7 +23,7 @@ + #include "wx/grid.h" + #include "wx/dbkeyg.h" + +-#define wxGRID_VALUE_DBAUTO _T("dbauto") ++#define wxGRID_VALUE_DBAUTO wxT("dbauto") + + WX_DECLARE_USER_EXPORTED_OBJARRAY(GenericKey,keyarray,WXDLLIMPEXP_DBGRID); + +@@ -119,12 +119,12 @@ public: + + virtual int GetNumberRows() + { +- wxLogDebug(_T(" GetNumberRows() = %i"),m_rowtotal); ++ wxLogDebug(wxT(" GetNumberRows() = %i"),m_rowtotal); + return m_rowtotal; + } + virtual int GetNumberCols() + { +- wxLogDebug(_T(" GetNumberCols() = %i"),m_nocols); ++ wxLogDebug(wxT(" GetNumberCols() = %i"),m_nocols); + return m_nocols; + } + virtual bool IsEmptyCell(int row, int col) ; +diff --git a/include/wx/dbtable.h b/include/wx/dbtable.h +index 1bbef54..9fb6260 100644 +--- a/include/wx/dbtable.h ++++ b/include/wx/dbtable.h +@@ -305,7 +305,7 @@ public: + HSTMT *NewCursor(bool setCursor = false, bool bindColumns = true) { return GetNewCursor(setCursor,bindColumns); } + #endif + +- ULONG Count(const wxString &args=_T("*")); ++ ULONG Count(const wxString &args=wxT("*")); + int DB_STATUS(void) { return(pDb->DB_STATUS); } + + bool IsColNull(UWORD colNumber) const; +diff --git a/include/wx/dcbuffer.h b/include/wx/dcbuffer.h +index 46c28ba..7249235 100644 +--- a/include/wx/dcbuffer.h ++++ b/include/wx/dcbuffer.h +@@ -100,8 +100,8 @@ public: + // blitting to) is destroyed. + void UnMask() + { +- wxCHECK_RET( m_dc, _T("no underlying wxDC?") ); +- wxASSERT_MSG( m_buffer && m_buffer->IsOk(), _T("invalid backing store") ); ++ wxCHECK_RET( m_dc, wxT("no underlying wxDC?") ); ++ wxASSERT_MSG( m_buffer && m_buffer->IsOk(), wxT("invalid backing store") ); + + wxCoord x = 0, + y = 0; +@@ -122,7 +122,7 @@ private: + // common part of Init()s + void InitCommon(wxDC *dc, int style) + { +- wxASSERT_MSG( !m_dc, _T("wxBufferedDC already initialised") ); ++ wxASSERT_MSG( !m_dc, wxT("wxBufferedDC already initialised") ); + + m_dc = dc; + m_style = style; +diff --git a/include/wx/dcmirror.h b/include/wx/dcmirror.h +index bc15a39..3b9dcb9 100644 +--- a/include/wx/dcmirror.h ++++ b/include/wx/dcmirror.h +@@ -135,7 +135,7 @@ protected: + wxCoord x2, wxCoord y2, + wxCoord xc, wxCoord yc) + { +- wxFAIL_MSG( _T("this is probably wrong") ); ++ wxFAIL_MSG( wxT("this is probably wrong") ); + + m_dc.DoDrawArc(GetX(x1, y1), GetY(x1, y1), + GetX(x2, y2), GetY(x2, y2), +@@ -152,7 +152,7 @@ protected: + virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, + double sa, double ea) + { +- wxFAIL_MSG( _T("this is probably wrong") ); ++ wxFAIL_MSG( wxT("this is probably wrong") ); + + m_dc.DoDrawEllipticArc(GetX(x, y), GetY(x, y), + GetX(w, h), GetY(w, h), +@@ -256,7 +256,7 @@ protected: + + virtual void DoSetClippingRegionAsRegion(const wxRegion& WXUNUSED(region)) + { +- wxFAIL_MSG( _T("not implemented") ); ++ wxFAIL_MSG( wxT("not implemented") ); + } + + virtual void DoSetClippingRegion(wxCoord x, wxCoord y, +diff --git a/include/wx/debug.h b/include/wx/debug.h +index fd389d5..7e07377 100644 +--- a/include/wx/debug.h ++++ b/include/wx/debug.h +@@ -123,13 +123,13 @@ + if ( cond ) \ + {} \ + else \ +- wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, _T(#cond), msg) ++ wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, wxT(#cond), msg) + #else + #define wxASSERT_MSG(cond, msg) \ + if ( cond ) \ + ; \ + else \ +- wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, _T(#cond), msg) ++ wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, wxT(#cond), msg) + #endif + + /* special form of assert: always triggers it (in debug mode) */ +@@ -140,7 +140,7 @@ + + /* FAIL with some message and a condition */ + #define wxFAIL_COND_MSG(cond, msg) \ +- wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, _T(cond), msg) ++ wxOnAssert(__TFILE__, __LINE__, __WXFUNCTION__, wxT(cond), msg) + + /* An assert helper used to avoid warning when testing constant expressions, */ + /* i.e. wxASSERT( sizeof(int) == 4 ) can generate a compiler warning about */ +diff --git a/include/wx/debugrpt.h b/include/wx/debugrpt.h +index a50f1cb..d2b57d5 100644 +--- a/include/wx/debugrpt.h ++++ b/include/wx/debugrpt.h +@@ -161,7 +161,7 @@ public: + wxDebugReportUpload(const wxString& url, + const wxString& input, + const wxString& action, +- const wxString& curl = _T("curl")); ++ const wxString& curl = wxT("curl")); + + protected: + virtual bool DoProcess(); +diff --git a/include/wx/defs.h b/include/wx/defs.h +index 0e2ca0c..5e1ae54 100644 +--- a/include/wx/defs.h ++++ b/include/wx/defs.h +@@ -915,28 +915,28 @@ inline void *wxUIntToPtr(wxUIntPtr p) + #if (defined(__VISUALC__) && defined(__WIN32__)) + #define wxLongLong_t __int64 + #define wxLongLongSuffix i64 +- #define wxLongLongFmtSpec _T("I64") ++ #define wxLongLongFmtSpec wxT("I64") + #elif defined(__BORLANDC__) && defined(__WIN32__) && (__BORLANDC__ >= 0x520) + #define wxLongLong_t __int64 + #define wxLongLongSuffix i64 +- #define wxLongLongFmtSpec _T("L") ++ #define wxLongLongFmtSpec wxT("L") + #elif (defined(__WATCOMC__) && (defined(__WIN32__) || defined(__DOS__) || defined(__OS2__))) + #define wxLongLong_t __int64 + #define wxLongLongSuffix i64 +- #define wxLongLongFmtSpec _T("L") ++ #define wxLongLongFmtSpec wxT("L") + #elif defined(__DIGITALMARS__) + #define wxLongLong_t __int64 + #define wxLongLongSuffix LL +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #elif defined(__MINGW32__) + #define wxLongLong_t long long + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("I64") ++ #define wxLongLongFmtSpec wxT("I64") + #elif defined(__MWERKS__) + #if __option(longlong) + #define wxLongLong_t long long + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #else + #error "The 64 bit integer support in CodeWarrior has been disabled." + #error "See the documentation on the 'longlong' pragma." +@@ -944,7 +944,7 @@ inline void *wxUIntToPtr(wxUIntPtr p) + #elif defined(__WXPALMOS__) + #define wxLongLong_t int64_t + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #elif defined(__VISAGECPP__) && __IBMCPP__ >= 400 + #define wxLongLong_t long long + #elif (defined(SIZEOF_LONG_LONG) && SIZEOF_LONG_LONG >= 8) || \ +@@ -954,11 +954,11 @@ inline void *wxUIntToPtr(wxUIntPtr p) + (defined(__DJGPP__) && __DJGPP__ >= 2) + #define wxLongLong_t long long + #define wxLongLongSuffix ll +- #define wxLongLongFmtSpec _T("ll") ++ #define wxLongLongFmtSpec wxT("ll") + #elif defined(SIZEOF_LONG) && (SIZEOF_LONG == 8) + #define wxLongLong_t long + #define wxLongLongSuffix l +- #define wxLongLongFmtSpec _T("l") ++ #define wxLongLongFmtSpec wxT("l") + #define wxLongLongIsLong + #endif + +diff --git a/include/wx/dynlib.h b/include/wx/dynlib.h +index 3552bdc..eefd49f 100644 +--- a/include/wx/dynlib.h ++++ b/include/wx/dynlib.h +@@ -116,7 +116,7 @@ enum wxPluginCategory + // type only once, as the first parameter, and creating a variable of this type + // called "pfn" initialized with the "name" from the "dynlib" + #define wxDYNLIB_FUNCTION(type, name, dynlib) \ +- type pfn ## name = (type)(dynlib).GetSymbol(_T(#name)) ++ type pfn ## name = (type)(dynlib).GetSymbol(wxT(#name)) + + // ---------------------------------------------------------------------------- + // wxDynamicLibraryDetails: contains details about a loaded wxDynamicLibrary +diff --git a/include/wx/dynload.h b/include/wx/dynload.h +index 68c63c1..3c40113 100644 +--- a/include/wx/dynload.h ++++ b/include/wx/dynload.h +@@ -71,7 +71,7 @@ public: + void RefObj() { ++m_objcount; } + void UnrefObj() + { +- wxASSERT_MSG( m_objcount > 0, _T("Too many objects deleted??") ); ++ wxASSERT_MSG( m_objcount > 0, wxT("Too many objects deleted??") ); + --m_objcount; + } + +diff --git a/include/wx/event.h b/include/wx/event.h +index 26fab62..351d04f 100644 +--- a/include/wx/event.h ++++ b/include/wx/event.h +@@ -451,7 +451,7 @@ public: + wxPropagateOnce(wxEvent& event) : m_event(event) + { + wxASSERT_MSG( m_event.m_propagationLevel > 0, +- _T("shouldn't be used unless ShouldPropagate()!") ); ++ wxT("shouldn't be used unless ShouldPropagate()!") ); + + m_event.m_propagationLevel--; + } +@@ -1398,7 +1398,7 @@ public: + // m_loggingOff flag is only used by wxEVT_[QUERY_]END_SESSION, it + // doesn't make sense for wxEVT_CLOSE_WINDOW + wxASSERT_MSG( m_eventType != wxEVT_CLOSE_WINDOW, +- _T("this flag is for end session events only") ); ++ wxT("this flag is for end session events only") ); + + return m_loggingOff; + } +diff --git a/include/wx/ffile.h b/include/wx/ffile.h +index c3dda75..5577484 100644 +--- a/include/wx/ffile.h ++++ b/include/wx/ffile.h +@@ -37,13 +37,13 @@ public: + // def ctor + wxFFile() { m_fp = NULL; } + // open specified file (may fail, use IsOpened()) +- wxFFile(const wxChar *filename, const wxChar *mode = _T("r")); ++ wxFFile(const wxChar *filename, const wxChar *mode = wxT("r")); + // attach to (already opened) file + wxFFile(FILE *lfp) { m_fp = lfp; } + + // open/close + // open a file (existing or not - the mode controls what happens) +- bool Open(const wxChar *filename, const wxChar *mode = _T("r")); ++ bool Open(const wxChar *filename, const wxChar *mode = wxT("r")); + // closes the opened file (this is a NOP if not opened) + bool Close(); + +diff --git a/include/wx/filefn.h b/include/wx/filefn.h +index 56c01c7..0e35b39 100644 +--- a/include/wx/filefn.h ++++ b/include/wx/filefn.h +@@ -406,7 +406,7 @@ enum wxFileKind + #define wxHAS_LARGE_FFILES + #endif + #else +- #define wxFileOffsetFmtSpec _T("") ++ #define wxFileOffsetFmtSpec wxT("") + #endif + // functions + #define wxClose close +diff --git a/include/wx/filename.h b/include/wx/filename.h +index 0a3abb5..c156e73 100644 +--- a/include/wx/filename.h ++++ b/include/wx/filename.h +@@ -488,10 +488,10 @@ public: + static wxULongLong GetSize(const wxString &file); + + // returns the size in a human readable form +- wxString GetHumanReadableSize(const wxString &nullsize = wxGetTranslation(_T("Not available")), ++ wxString GetHumanReadableSize(const wxString &nullsize = wxGetTranslation(wxT("Not available")), + int precision = 1) const; + static wxString GetHumanReadableSize(const wxULongLong &sz, +- const wxString &nullsize = wxGetTranslation(_T("Not available")), ++ const wxString &nullsize = wxGetTranslation(wxT("Not available")), + int precision = 1); + + +diff --git a/include/wx/generic/calctrl.h b/include/wx/generic/calctrl.h +index 43b854c..a525a4b 100644 +--- a/include/wx/generic/calctrl.h ++++ b/include/wx/generic/calctrl.h +@@ -19,7 +19,7 @@ class WXDLLIMPEXP_FWD_CORE wxComboBox; + class WXDLLIMPEXP_FWD_CORE wxStaticText; + class WXDLLIMPEXP_FWD_CORE wxSpinCtrl; + +-#define wxCalendarNameStr _T("CalendarCtrl") ++#define wxCalendarNameStr wxT("CalendarCtrl") + + // ---------------------------------------------------------------------------- + // wxCalendarCtrl: a control allowing the user to pick a date interactively +@@ -124,14 +124,14 @@ public: + + wxCalendarDateAttr *GetAttr(size_t day) const + { +- wxCHECK_MSG( day > 0 && day < 32, NULL, _T("invalid day") ); ++ wxCHECK_MSG( day > 0 && day < 32, NULL, wxT("invalid day") ); + + return m_attrs[day - 1]; + } + + void SetAttr(size_t day, wxCalendarDateAttr *attr) + { +- wxCHECK_RET( day > 0 && day < 32, _T("invalid day") ); ++ wxCHECK_RET( day > 0 && day < 32, wxT("invalid day") ); + + delete m_attrs[day - 1]; + m_attrs[day - 1] = attr; +diff --git a/include/wx/generic/combo.h b/include/wx/generic/combo.h +index 1b25185..06814aa 100644 +--- a/include/wx/generic/combo.h ++++ b/include/wx/generic/combo.h +@@ -26,8 +26,8 @@ + // all actions of single line text controls are supported + + // popup/dismiss the choice window +-#define wxACTION_COMBOBOX_POPUP _T("popup") +-#define wxACTION_COMBOBOX_DISMISS _T("dismiss") ++#define wxACTION_COMBOBOX_POPUP wxT("popup") ++#define wxACTION_COMBOBOX_DISMISS wxT("dismiss") + + #endif + +diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h +index e84bb7d..fb308ed 100644 +--- a/include/wx/generic/grid.h ++++ b/include/wx/generic/grid.h +@@ -42,11 +42,11 @@ extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxGridNameStr[]; + #define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16 + + // type names for grid table values +-#define wxGRID_VALUE_STRING _T("string") +-#define wxGRID_VALUE_BOOL _T("bool") +-#define wxGRID_VALUE_NUMBER _T("long") +-#define wxGRID_VALUE_FLOAT _T("double") +-#define wxGRID_VALUE_CHOICE _T("choice") ++#define wxGRID_VALUE_STRING wxT("string") ++#define wxGRID_VALUE_BOOL wxT("bool") ++#define wxGRID_VALUE_NUMBER wxT("long") ++#define wxGRID_VALUE_FLOAT wxT("double") ++#define wxGRID_VALUE_CHOICE wxT("choice") + + #define wxGRID_VALUE_TEXT wxGRID_VALUE_STRING + #define wxGRID_VALUE_LONG wxGRID_VALUE_NUMBER +@@ -472,7 +472,7 @@ protected: + + // string representation of m_valueOld + wxString GetString() const +- { return wxString::Format(_T("%ld"), m_valueOld); } ++ { return wxString::Format(wxT("%ld"), m_valueOld); } + + private: + int m_min, +@@ -552,7 +552,7 @@ public: + + // set the string values returned by GetValue() for the true and false + // states, respectively +- static void UseStringValues(const wxString& valueTrue = _T("1"), ++ static void UseStringValues(const wxString& valueTrue = wxT("1"), + const wxString& valueFalse = wxEmptyString); + + // return true if the given string is equal to the string representation of +diff --git a/include/wx/generic/gridctrl.h b/include/wx/generic/gridctrl.h +index 2581fd2..477e0f1 100644 +--- a/include/wx/generic/gridctrl.h ++++ b/include/wx/generic/gridctrl.h +@@ -16,8 +16,8 @@ + + #if wxUSE_GRID + +-#define wxGRID_VALUE_CHOICEINT _T("choiceint") +-#define wxGRID_VALUE_DATETIME _T("datetime") ++#define wxGRID_VALUE_CHOICEINT wxT("choiceint") ++#define wxGRID_VALUE_DATETIME wxT("datetime") + + #if wxUSE_DATETIME + +diff --git a/include/wx/generic/spinctlg.h b/include/wx/generic/spinctlg.h +index 7874e44..9719432 100644 +--- a/include/wx/generic/spinctlg.h ++++ b/include/wx/generic/spinctlg.h +@@ -41,7 +41,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Init(); + Create(parent, id, value, pos, size, style, min, max, initial, name); +@@ -54,7 +54,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")); ++ const wxString& name = wxT("wxSpinCtrl")); + + virtual ~wxSpinCtrl(); + +@@ -125,7 +125,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Create(parent, id, value, pos, size, style, min, max, initial, name); + } +@@ -137,7 +137,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + SetRange(min, max); + +diff --git a/include/wx/generic/splitter.h b/include/wx/generic/splitter.h +index ac651f2..d5927a6 100644 +--- a/include/wx/generic/splitter.h ++++ b/include/wx/generic/splitter.h +@@ -91,7 +91,7 @@ public: + void SetSplitMode(int mode) + { + wxASSERT_MSG( mode == wxSPLIT_VERTICAL || mode == wxSPLIT_HORIZONTAL, +- _T("invalid split mode") ); ++ wxT("invalid split mode") ); + + m_splitMode = (wxSplitMode)mode; + } +diff --git a/include/wx/glcanvas.h b/include/wx/glcanvas.h +index 25e2eac..c6ed1c8 100644 +--- a/include/wx/glcanvas.h ++++ b/include/wx/glcanvas.h +@@ -44,7 +44,7 @@ enum + WX_GL_MIN_ACCUM_ALPHA /* use alpha buffer with most bits (> MIN_ACCUM_ALPHA bits) */ + }; + +-#define wxGLCanvasName _T("GLCanvas") ++#define wxGLCanvasName wxT("GLCanvas") + + #if defined(__WXMSW__) + #include "wx/msw/glcanvas.h" +diff --git a/include/wx/gtk/checklst.h b/include/wx/gtk/checklst.h +index fa89477..2c1ff65 100644 +--- a/include/wx/gtk/checklst.h ++++ b/include/wx/gtk/checklst.h +@@ -18,10 +18,10 @@ + // there is no "right" choice of the checkbox indicators, so allow the user to + // define them himself if he wants + #ifndef wxCHECKLBOX_CHECKED +- #define wxCHECKLBOX_CHECKED _T('x') +- #define wxCHECKLBOX_UNCHECKED _T(' ') ++ #define wxCHECKLBOX_CHECKED wxT('x') ++ #define wxCHECKLBOX_UNCHECKED wxT(' ') + +- #define wxCHECKLBOX_STRING _T("[ ] ") ++ #define wxCHECKLBOX_STRING wxT("[ ] ") + #endif + + //----------------------------------------------------------------------------- +diff --git a/include/wx/gtk/spinctrl.h b/include/wx/gtk/spinctrl.h +index 2929f7f..8fc1dc9 100644 +--- a/include/wx/gtk/spinctrl.h ++++ b/include/wx/gtk/spinctrl.h +@@ -26,7 +26,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Create(parent, id, value, pos, size, style, min, max, initial, name); + } +@@ -38,7 +38,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")); ++ const wxString& name = wxT("wxSpinCtrl")); + + void SetValue(const wxString& text); + void SetSelection(long from, long to); +diff --git a/include/wx/gtk1/checklst.h b/include/wx/gtk1/checklst.h +index 5a9b8cb..de75b1f 100644 +--- a/include/wx/gtk1/checklst.h ++++ b/include/wx/gtk1/checklst.h +@@ -18,10 +18,10 @@ + // there is no "right" choice of the checkbox indicators, so allow the user to + // define them himself if he wants + #ifndef wxCHECKLBOX_CHECKED +- #define wxCHECKLBOX_CHECKED _T('x') +- #define wxCHECKLBOX_UNCHECKED _T(' ') ++ #define wxCHECKLBOX_CHECKED wxT('x') ++ #define wxCHECKLBOX_UNCHECKED wxT(' ') + +- #define wxCHECKLBOX_STRING _T("[ ] ") ++ #define wxCHECKLBOX_STRING wxT("[ ] ") + #endif + + //----------------------------------------------------------------------------- +diff --git a/include/wx/gtk1/spinctrl.h b/include/wx/gtk1/spinctrl.h +index 7c94538..2c60b77 100644 +--- a/include/wx/gtk1/spinctrl.h ++++ b/include/wx/gtk1/spinctrl.h +@@ -32,7 +32,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")) ++ const wxString& name = wxT("wxSpinCtrl")) + { + Create(parent, id, value, pos, size, style, min, max, initial, name); + } +@@ -44,7 +44,7 @@ public: + const wxSize& size = wxDefaultSize, + long style = wxSP_ARROW_KEYS, + int min = 0, int max = 100, int initial = 0, +- const wxString& name = _T("wxSpinCtrl")); ++ const wxString& name = wxT("wxSpinCtrl")); + + void SetValue(const wxString& text); + void SetSelection(long from, long to); +diff --git a/include/wx/imagbmp.h b/include/wx/imagbmp.h +index b7a5222..780736b 100644 +--- a/include/wx/imagbmp.h ++++ b/include/wx/imagbmp.h +@@ -14,7 +14,7 @@ + + // defines for saving the BMP file in different formats, Bits Per Pixel + // USE: wximage.SetOption( wxIMAGE_OPTION_BMP_FORMAT, wxBMP_xBPP ); +-#define wxIMAGE_OPTION_BMP_FORMAT wxString(_T("wxBMP_FORMAT")) ++#define wxIMAGE_OPTION_BMP_FORMAT wxString(wxT("wxBMP_FORMAT")) + + // These two options are filled in upon reading CUR file and can (should) be + // specified when saving a CUR file - they define the hotspot of the cursor: +@@ -52,10 +52,10 @@ class WXDLLEXPORT wxBMPHandler : public wxImageHandler + public: + wxBMPHandler() + { +- m_name = _T("Windows bitmap file"); +- m_extension = _T("bmp"); ++ m_name = wxT("Windows bitmap file"); ++ m_extension = wxT("bmp"); + m_type = wxBITMAP_TYPE_BMP; +- m_mime = _T("image/x-bmp"); ++ m_mime = wxT("image/x-bmp"); + } + + #if wxUSE_STREAMS +@@ -86,10 +86,10 @@ class WXDLLEXPORT wxICOHandler : public wxBMPHandler + public: + wxICOHandler() + { +- m_name = _T("Windows icon file"); +- m_extension = _T("ico"); ++ m_name = wxT("Windows icon file"); ++ m_extension = wxT("ico"); + m_type = wxBITMAP_TYPE_ICO; +- m_mime = _T("image/x-ico"); ++ m_mime = wxT("image/x-ico"); + } + + #if wxUSE_STREAMS +@@ -115,10 +115,10 @@ class WXDLLEXPORT wxCURHandler : public wxICOHandler + public: + wxCURHandler() + { +- m_name = _T("Windows cursor file"); +- m_extension = _T("cur"); ++ m_name = wxT("Windows cursor file"); ++ m_extension = wxT("cur"); + m_type = wxBITMAP_TYPE_CUR; +- m_mime = _T("image/x-cur"); ++ m_mime = wxT("image/x-cur"); + } + + // VS: This handler's meat is implemented inside wxICOHandler (the two +@@ -142,10 +142,10 @@ class WXDLLEXPORT wxANIHandler : public wxCURHandler + public: + wxANIHandler() + { +- m_name = _T("Windows animated cursor file"); +- m_extension = _T("ani"); ++ m_name = wxT("Windows animated cursor file"); ++ m_extension = wxT("ani"); + m_type = wxBITMAP_TYPE_ANI; +- m_mime = _T("image/x-ani"); ++ m_mime = wxT("image/x-ani"); + } + + +diff --git a/include/wx/image.h b/include/wx/image.h +index 8048da4..f7f58a4 100644 +--- a/include/wx/image.h ++++ b/include/wx/image.h +@@ -27,14 +27,14 @@ + // which breaks the compilation below + #undef index + +-#define wxIMAGE_OPTION_QUALITY wxString(_T("quality")) +-#define wxIMAGE_OPTION_FILENAME wxString(_T("FileName")) ++#define wxIMAGE_OPTION_QUALITY wxString(wxT("quality")) ++#define wxIMAGE_OPTION_FILENAME wxString(wxT("FileName")) + +-#define wxIMAGE_OPTION_RESOLUTION wxString(_T("Resolution")) +-#define wxIMAGE_OPTION_RESOLUTIONX wxString(_T("ResolutionX")) +-#define wxIMAGE_OPTION_RESOLUTIONY wxString(_T("ResolutionY")) ++#define wxIMAGE_OPTION_RESOLUTION wxString(wxT("Resolution")) ++#define wxIMAGE_OPTION_RESOLUTIONX wxString(wxT("ResolutionX")) ++#define wxIMAGE_OPTION_RESOLUTIONY wxString(wxT("ResolutionY")) + +-#define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(_T("ResolutionUnit")) ++#define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(wxT("ResolutionUnit")) + + // constants used with wxIMAGE_OPTION_RESOLUTIONUNIT + enum +diff --git a/include/wx/imagtiff.h b/include/wx/imagtiff.h +index d236b75..d807ae7 100644 +--- a/include/wx/imagtiff.h ++++ b/include/wx/imagtiff.h +@@ -21,10 +21,10 @@ + #include "wx/image.h" + + // defines for wxImage::SetOption +-#define wxIMAGE_OPTION_BITSPERSAMPLE wxString(_T("BitsPerSample")) +-#define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(_T("SamplesPerPixel")) +-#define wxIMAGE_OPTION_COMPRESSION wxString(_T("Compression")) +-#define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(_T("ImageDescriptor")) ++#define wxIMAGE_OPTION_BITSPERSAMPLE wxString(wxT("BitsPerSample")) ++#define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(wxT("SamplesPerPixel")) ++#define wxIMAGE_OPTION_COMPRESSION wxString(wxT("Compression")) ++#define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(wxT("ImageDescriptor")) + + class WXDLLEXPORT wxTIFFHandler: public wxImageHandler + { +diff --git a/include/wx/intl.h b/include/wx/intl.h +index 02bef05..311281a 100644 +--- a/include/wx/intl.h ++++ b/include/wx/intl.h +@@ -45,13 +45,13 @@ enum wxLayoutDirection + // --keyword="_" --keyword="wxPLURAL:1,2" options + // to extract the strings from the sources) + #ifndef WXINTL_NO_GETTEXT_MACRO +- #define _(s) wxGetTranslation(_T(s)) +- #define wxPLURAL(sing, plur, n) wxGetTranslation(_T(sing), _T(plur), n) ++ #define _(s) wxGetTranslation(wxT(s)) ++ #define wxPLURAL(sing, plur, n) wxGetTranslation(wxT(sing), wxT(plur), n) + #endif + + // another one which just marks the strings for extraction, but doesn't + // perform the translation (use -kwxTRANSLATE with xgettext!) +-#define wxTRANSLATE(str) _T(str) ++#define wxTRANSLATE(str) wxT(str) + + // ---------------------------------------------------------------------------- + // forward decls +@@ -603,12 +603,12 @@ wxGetTranslation(const wxChar *sz1, const wxChar *sz2, + + #if !defined(WXINTL_NO_GETTEXT_MACRO) + #if !defined(_) +- #define _(s) (_T(s)) ++ #define _(s) (wxT(s)) + #endif +- #define wxPLURAL(sing, plur, n) ((n) == 1 ? _T(sing) : _T(plur)) ++ #define wxPLURAL(sing, plur, n) ((n) == 1 ? wxT(sing) : wxT(plur)) + #endif + +-#define wxTRANSLATE(str) _T(str) ++#define wxTRANSLATE(str) wxT(str) + + inline const wxChar * + wxGetTranslation(const wxChar *sz, const wxChar * WXUNUSED(domain) = NULL) +@@ -622,10 +622,10 @@ wxGetTranslation(const wxChar *sz, const wxChar * WXUNUSED(domain) = NULL) + // wxTRANSLATE) too + #if !defined(WXINTL_NO_GETTEXT_MACRO) + #if !defined(gettext_noop) +- #define gettext_noop(str) _T(str) ++ #define gettext_noop(str) wxT(str) + #endif + #if !defined(N_) +- #define N_(s) _T(s) ++ #define N_(s) wxT(s) + #endif + #endif + +diff --git a/include/wx/list.h b/include/wx/list.h +index 4b5ae06..b0c2e18 100644 +--- a/include/wx/list.h ++++ b/include/wx/list.h +@@ -207,7 +207,7 @@ private: + bool operator==(const compatibility_iterator& i) const \ + { \ + wxASSERT_MSG( m_list && i.m_list, \ +- _T("comparing invalid iterators is illegal") ); \ ++ wxT("comparing invalid iterators is illegal") ); \ + return (m_list == i.m_list) && (m_iter == i.m_iter); \ + } \ + bool operator!=(const compatibility_iterator& i) const \ +diff --git a/include/wx/longlong.h b/include/wx/longlong.h +index 0bead47..9210228 100644 +--- a/include/wx/longlong.h ++++ b/include/wx/longlong.h +@@ -177,7 +177,7 @@ public: + long ToLong() const + { + wxASSERT_MSG( (m_ll >= LONG_MIN) && (m_ll <= LONG_MAX), +- _T("wxLongLong to long conversion loss of precision") ); ++ wxT("wxLongLong to long conversion loss of precision") ); + + return wx_truncate_cast(long, m_ll); + } +@@ -405,7 +405,7 @@ public: + unsigned long ToULong() const + { + wxASSERT_MSG( m_ll <= LONG_MAX, +- _T("wxULongLong to long conversion loss of precision") ); ++ wxT("wxULongLong to long conversion loss of precision") ); + + return wx_truncate_cast(unsigned long, m_ll); + } +@@ -683,7 +683,7 @@ public: + long ToLong() const + { + wxASSERT_MSG( (m_hi == 0l) || (m_hi == -1l), +- _T("wxLongLong to long conversion loss of precision") ); ++ wxT("wxLongLong to long conversion loss of precision") ); + + return (long)m_lo; + } +@@ -908,7 +908,7 @@ public: + unsigned long ToULong() const + { + wxASSERT_MSG( m_hi == 0ul, +- _T("wxULongLong to long conversion loss of precision") ); ++ wxT("wxULongLong to long conversion loss of precision") ); + + return (unsigned long)m_lo; + } +diff --git a/include/wx/mimetype.h b/include/wx/mimetype.h +index 2ebf996..8eee00d 100644 +--- a/include/wx/mimetype.h ++++ b/include/wx/mimetype.h +@@ -51,12 +51,12 @@ class WXDLLIMPEXP_BASE wxMimeType : public wxString + public: + // all string ctors here + +- wxString GetType() const { return BeforeFirst(_T('/')); } +- wxString GetSubType() const { return AfterFirst(_T('/')); } ++ wxString GetType() const { return BeforeFirst(wxT('/')); } ++ wxString GetSubType() const { return AfterFirst(wxT('/')); } + + void SetSubType(const wxString& subtype) + { +- *this = GetType() + _T('/') + subtype; ++ *this = GetType() + wxT('/') + subtype; + } + + bool Matches(const wxMimeType& wildcard) +diff --git a/include/wx/module.h b/include/wx/module.h +index 7394f4e..b4d0abc 100644 +--- a/include/wx/module.h ++++ b/include/wx/module.h +@@ -68,7 +68,7 @@ protected: + // after that + void AddDependency(wxClassInfo *dep) + { +- wxCHECK_RET( dep, _T("NULL module dependency") ); ++ wxCHECK_RET( dep, wxT("NULL module dependency") ); + + m_dependencies.Add(dep); + } +diff --git a/include/wx/msgdlg.h b/include/wx/msgdlg.h +index d225726..a2ce2a8 100644 +--- a/include/wx/msgdlg.h ++++ b/include/wx/msgdlg.h +@@ -23,10 +23,10 @@ protected: + void SetMessageDialogStyle(long style) + { + wxASSERT_MSG( ((style & wxYES_NO) == wxYES_NO) || ((style & wxYES_NO) == 0), +- _T("wxYES and wxNO may only be used together in wxMessageDialog") ); ++ wxT("wxYES and wxNO may only be used together in wxMessageDialog") ); + + wxASSERT_MSG( (style & wxID_OK) != wxID_OK, +- _T("wxMessageBox: Did you mean wxOK (and not wxID_OK)?") ); ++ wxT("wxMessageBox: Did you mean wxOK (and not wxID_OK)?") ); + + m_dialogStyle = style; + } +diff --git a/include/wx/object.h b/include/wx/object.h +index d46efcf..b7fda24 100644 +--- a/include/wx/object.h ++++ b/include/wx/object.h +@@ -311,7 +311,7 @@ name##PluginSentinel m_pluginsentinel; + #ifdef __WXDEBUG__ + inline void* wxCheckCast(void *ptr) + { +- wxASSERT_MSG( ptr, _T("wxStaticCast() used incorrectly") ); ++ wxASSERT_MSG( ptr, wxT("wxStaticCast() used incorrectly") ); + return ptr; + } + #define wxStaticCast(obj, className) \ +diff --git a/include/wx/palette.h b/include/wx/palette.h +index 9a09456..43757ab 100644 +--- a/include/wx/palette.h ++++ b/include/wx/palette.h +@@ -27,7 +27,7 @@ public: + + virtual bool Ok() const { return IsOk(); } + virtual bool IsOk() const = 0; +- virtual int GetColoursCount() const { wxFAIL_MSG( _T("not implemented") ); return 0; } ++ virtual int GetColoursCount() const { wxFAIL_MSG( wxT("not implemented") ); return 0; } + }; + + #if defined(__WXPALMOS__) +diff --git a/include/wx/private/fileback.h b/include/wx/private/fileback.h +index 534a0f3..7f5e722 100644 +--- a/include/wx/private/fileback.h ++++ b/include/wx/private/fileback.h +@@ -33,7 +33,7 @@ public: + // backing file is never created and the backing is done with memory. + wxBackingFile(wxInputStream *stream, + size_t bufsize = DefaultBufSize, +- const wxString& prefix = _T("wxbf")); ++ const wxString& prefix = wxT("wxbf")); + + wxBackingFile() : m_impl(NULL) { } + ~wxBackingFile(); +diff --git a/include/wx/protocol/ftp.h b/include/wx/protocol/ftp.h +index b074e15..0c5cfbc 100644 +--- a/include/wx/protocol/ftp.h ++++ b/include/wx/protocol/ftp.h +@@ -175,7 +175,7 @@ protected: + + // the trace mask used by assorted wxLogTrace() in ftp code, do + // wxLog::AddTraceMask(FTP_TRACE_MASK) to see them in output +-#define FTP_TRACE_MASK _T("ftp") ++#define FTP_TRACE_MASK wxT("ftp") + + #endif // wxUSE_PROTOCOL_FTP + +diff --git a/include/wx/recguard.h b/include/wx/recguard.h +index f2c6ffe..8133a12 100644 @@ Diff output truncated at 100000 characters. @@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Fri Aug 21 12:15:29 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Fri, 21 Aug 2009 10:15:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6066] csw/mgar/pkg/nagios/trunk Message-ID: Revision: 6066 http://gar.svn.sourceforge.net/gar/?rev=6066&view=rev Author: j_arndt Date: 2009-08-21 10:15:29 +0000 (Fri, 21 Aug 2009) Log Message: ----------- nagios: update to 3.2.0, switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/nagios/trunk/Makefile csw/mgar/pkg/nagios/trunk/checksums csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype csw/mgar/pkg/nagios/trunk/files/configure.diff csw/mgar/pkg/nagios/trunk/files/patch.diff Removed Paths: ------------- csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec Modified: csw/mgar/pkg/nagios/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios/trunk/Makefile 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/Makefile 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,5 +1,5 @@ GARNAME = nagios -GARVERSION = 3.0.6 +GARVERSION = 3.2.0 CATEGORIES = apps DESCRIPTION = nagios network monitoring base package (no plugins) @@ -9,23 +9,27 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWnagios,checkinstall preinstall preremove prototype ) +#DISTFILES += $(call admfiles,CSWnagios,checkinstall preinstall preremove prototype ) +DISTFILES += CSWnagios.checkinstall CSWnagios.preinstall CSWnagios.preremove CSWnagios.prototype DISTFILES += cswnagios PATCHFILES = patch.diff # cgi/cmd.c - GNU macro __attribute__ unknown to compiler # http://article.gmane.org/gmane.network.nagios.devel/4726 # (Error 2) -PATCHFILES += configure.diff # configure.in - # http://unix.derkeiler.com/Mailing-Lists/SunManagers/2004-11/0424.html - # -lsunmath is needed in configure for checking of libgd +PATCHFILES += configure.diff # configure PATCHFILES += install-opts.diff # sets in every Makefile.in "INSTALL_OPT="" (empty) # necessary, so ginstall doesn't get -o and -g options +PACKAGES = CSWnagios +CATALOGNAME = nagios + REQUIRED_PKGS_CSWnagios = CSWapache2 CSWgd CSWglib2 CSWiconv CSWjpeg CSWlibtoolrt CSWggettextrt -REQUIRED_PKGS_CSWnagios += CSWosslrt CSWperl CSWpng CSWzlib CSWnagiosp CSWcswclassutils +REQUIRED_PKGS_CSWnagios += CSWosslrt CSWperl CSWpng CSWzlib CSWnagiosp CSWap2modphp5 CSWcswclassutils SPKG_CLASSES = none cswpreserveconf cswinitsmf +NOISALIST = 1 + prefix = $(BUILD_PREFIX)/nagios libexecdir = $(BUILD_PREFIX)/libexec/nagios-plugins @@ -35,9 +39,12 @@ CONFIGURE_ARGS += --with-command-user=nagios CONFIGURE_ARGS += --with-command-group=nagios CONFIGURE_ARGS += --with-httpd-conf=$(sysconfdir) +CONFIGURE_ARGS += --with-gd-lib-dir=$(BUILD_PREFIX)/lib +CONFIGURE_ARGS += --with-gd-lib-inc=$(BUILD_PREFIX)/inc CONFIGURE_ARGS += --enable-embedded-perl EXTRA_LIB = $(BUILD_PREFIX)/lib +EXTRA_INC = $(BUILD_PREFIX)/include BUILD_ARGS = all @@ -49,6 +56,9 @@ #INSTALL_ARGS += install-config INSTALL_ARGS += install-commandmode +LD_OPTIONS += -R/opt/csw/lib +LD_OPTIONS -= -R/opt/csw/nagios/lib + include gar/category.mk DOCS = Changelog INSTALLING README UPGRADING Modified: csw/mgar/pkg/nagios/trunk/checksums =================================================================== --- csw/mgar/pkg/nagios/trunk/checksums 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/checksums 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,10 +1,9 @@ -900e3f4164f4b2a18485420eeaefe812 download/nagios-3.0.6.tar.gz -725a49b8ec806a8d0c817fe4c1208b3c download/CSWnagios.gspec e407a4b179bd7de72b3e8c21f309f9b7 download/CSWnagios.checkinstall 47cc36016f5518dfd5614b870f56e944 download/CSWnagios.preinstall 92437323de0cceaa58c6238ec9e6c954 download/CSWnagios.preremove -a238294a9fc50821dd134b2a50fff545 download/CSWnagios.prototype +42672e3ae1e539bf9747f369cb4db7f1 download/CSWnagios.prototype +e493345589ac2c592c2b958499bc8c20 download/configure.diff d3b39178a60cf866a243d4d8f8eabb9b download/cswnagios -0ef601e30d01a511822dd27df6b0e531 download/patch.diff -4faa5ec86586be23dfbbd9165f50046d download/configure.diff f3161bcb7c65f89707ee37b0a8d861d5 download/install-opts.diff +3566167cc60ddeaad34e7d2e26ed4a58 download/nagios-3.2.0.tar.gz +91407bdea2047b6ff5a1542550933144 download/patch.diff Deleted: csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec =================================================================== --- csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/CSWnagios.gspec 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,3 +0,0 @@ -%var bitname nagios -%var pkgname CSWnagios -%include url file://%{PKGLIB}/csw_dyndepend.gspec Modified: csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype =================================================================== --- csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/CSWnagios.prototype 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,395 +1,397 @@ +d none /opt/csw/libexec 0755 root bin +d none /opt/csw/libexec/nagios-plugins 0755 nagios nagios d none /opt/csw/nagios 0755 root bin d none /opt/csw/nagios/bin 0755 nagios nagios -f none /opt/csw/nagios/bin/nagios 0774 nagios nagios -f none /opt/csw/nagios/bin/nagiostats 0774 nagios nagios -f none /opt/csw/nagios/bin/p1.pl 0664 nagios nagios +f none /opt/csw/nagios/bin/nagios 0754 nagios nagios +f none /opt/csw/nagios/bin/nagiostats 0754 nagios nagios d none /opt/csw/nagios/etc 0755 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/cgi.cfg.CSW 0664 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/cgi.cfg.CSW 0644 nagios nagios f none /opt/csw/nagios/etc/httpd-nagios.conf 0644 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/nagios.cfg.CSW 0664 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/nagios.cfg.CSW 0644 nagios nagios d none /opt/csw/nagios/etc/objects 0755 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/commands.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/contacts.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/localhost.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/printer.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/switch.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/templates.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/timeperiods.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/objects/windows.cfg.CSW 0664 nagios nagios -f cswpreserveconf /opt/csw/nagios/etc/resource.cfg.CSW 0660 nagios nagios -d none /opt/csw/nagios/libexec 0755 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/commands.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/contacts.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/localhost.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/printer.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/switch.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/templates.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/timeperiods.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/objects/windows.cfg.CSW 0644 nagios nagios +f cswpreserveconf /opt/csw/nagios/etc/resource.cfg.CSW 0640 nagios nagios d none /opt/csw/nagios/sbin 0755 nagios nagios -f none /opt/csw/nagios/sbin/avail.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/cmd.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/config.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/extinfo.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/histogram.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/history.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/notifications.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/outages.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/showlog.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/status.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/statusmap.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/statuswml.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/statuswrl.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/summary.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/tac.cgi 0775 nagios nagios -f none /opt/csw/nagios/sbin/trends.cgi 0775 nagios nagios +f none /opt/csw/nagios/sbin/avail.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/cmd.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/config.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/extinfo.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/histogram.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/history.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/notifications.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/outages.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/showlog.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/status.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/statusmap.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/statuswml.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/statuswrl.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/summary.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/tac.cgi 0755 nagios nagios +f none /opt/csw/nagios/sbin/trends.cgi 0755 nagios nagios d none /opt/csw/nagios/share 0755 nagios nagios +f none /opt/csw/nagios/share/config.inc.php 0644 nagios nagios d none /opt/csw/nagios/share/contexthelp 0755 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/A7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/B1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/C1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/D1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/E1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/F1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/G6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/H8.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I8.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/I9.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/J1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/K1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L10.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L11.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L12.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L13.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L7.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L8.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/L9.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/M6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N1.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N2.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N3.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N4.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N5.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N6.html 0664 nagios nagios -f none /opt/csw/nagios/share/contexthelp/N7.html 0664 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/A7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/B1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/C1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/D1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/E1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/F1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/G6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/H8.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I8.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/I9.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/J1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/K1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L10.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L11.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L12.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L13.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L7.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L8.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/L9.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/M6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N1.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N2.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N3.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N4.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N5.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N6.html 0644 nagios nagios +f none /opt/csw/nagios/share/contexthelp/N7.html 0644 nagios nagios d none /opt/csw/nagios/share/docs 0755 nagios nagios -f none /opt/csw/nagios/share/docs/about.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/activechecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/adaptive.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/addons.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/beginners.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cachedchecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgiauth.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgiincludes.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgis.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/cgisecurity.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/checkscheduling.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/clusters.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/config.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/configcgi.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/configmain.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/configobject.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/customobjectvars.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/dependencies.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/dependencychecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/distributed.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/downtime.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/embeddedperl.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/epnplugins.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/escalations.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/eventhandlers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/extcommands.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/faststartup.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/flapping.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/freshness.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/funstuff.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/hostchecks.html 0664 nagios nagios +f none /opt/csw/nagios/share/docs/about.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/activechecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/adaptive.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/addons.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/beginners.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cachedchecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgiauth.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgiincludes.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgis.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/cgisecurity.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/checkscheduling.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/clusters.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/config.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/configcgi.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/configmain.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/configobject.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/customobjectvars.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/dependencies.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/dependencychecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/distributed.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/downtime.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/embeddedperl.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/epnplugins.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/escalations.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/eventhandlers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/extcommands.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/faststartup.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/flapping.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/freshness.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/funstuff.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/hostchecks.html 0644 nagios nagios d none /opt/csw/nagios/share/docs/images 0755 nagios nagios -f none /opt/csw/nagios/share/docs/images/activechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cachedcheckgraphs.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cachedchecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cachedchecks1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-avail-a.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-avail-b.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-cmd.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-config.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-a.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-b.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-c.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-extinfo-d.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-histogram.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-history.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-notifications.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-outages.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-showlog.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-a.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-b.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-c.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-status-d.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-statusmap.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-statuswml.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-statuswrl.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-summary.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-tac.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/cgi-trends.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/checkmark.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/checktiming.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/configoverview.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/distributed.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/downtime.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/epn.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/eventhandlers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/externalcommands.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/fast-startup.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/fast-startup1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/fast-startup2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/freshness.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/host-dependencies.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/important.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/integrationoverview.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/interleaved1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/interleaved2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/interleaved3.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/logofullsize.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/monitoring-printers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/monitoring-routers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/monitoring-windows.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-activehostchecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-activelychecked.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-activeservicechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-cachedchecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-commandbuffers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-externalcommands.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-hostperfstats.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-hoststatechange.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-passivechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-passivelychecked.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-serviceperfstats.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/mrtg-servicestatechange.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/multiple-templates1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/multiple-templates2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nagios.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/ndoutils.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/network-outage1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/network-outage2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/noninterleaved1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/noninterleaved2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/note.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nrpe.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nsca.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/nscpp.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-commands.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-contacts.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-hosts.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-services.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/objects-timeperiods.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/passivechecks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/passivehosttranslation.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/plugins.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/predictive-dependency-checks.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/printer.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability3.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/reachability4.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/redudancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/redundancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security1.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/security3.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/seealso.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/service-dependencies.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/statetransitions.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/statetransitions2.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/stoprestart.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/switch.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/tcpwrappers.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/tip.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/tuning.png 0664 nagios nagios -f none /opt/csw/nagios/share/docs/images/upto.gif 0664 nagios nagios -f none /opt/csw/nagios/share/docs/index.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/int-snmptrap.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/int-tcpwrappers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/integration.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/largeinstalltweaks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/macrolist.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/macros.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-linux.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-netware.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-printers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-publicservices.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-routers.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/monitoring-windows.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/mrtggraphs.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/nagiostats.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/networkreachability.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/notifications.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/objectdefinitions.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/objectinheritance.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/objecttricks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/oncallrotation.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/passivechecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/passivestatetranslation.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/perfdata.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/pluginapi.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/plugins.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart-fedora.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart-opensuse.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart-ubuntu.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/quickstart.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/redundancy.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/robots.txt 0664 nagios nagios -f none /opt/csw/nagios/share/docs/security.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/servicechecks.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/stalking.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/startstop.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/statetypes.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/timeperiods.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/toc.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/tuning.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/upgrading.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/verifyconfig.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/volatileservices.html 0664 nagios nagios -f none /opt/csw/nagios/share/docs/whatsnew.html 0664 nagios nagios +f none /opt/csw/nagios/share/docs/images/activechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cachedcheckgraphs.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cachedchecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cachedchecks1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-avail-a.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-avail-b.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-cmd.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-config.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-a.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-b.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-c.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-extinfo-d.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-histogram.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-history.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-notifications.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-outages.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-showlog.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-a.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-b.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-c.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-status-d.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-statusmap.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-statuswml.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-statuswrl.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-summary.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-tac.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/cgi-trends.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/checkmark.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/checktiming.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/configoverview.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/distributed.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/downtime.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/epn.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/eventhandlers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/externalcommands.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/fast-startup.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/fast-startup1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/fast-startup2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/freshness.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/host-dependencies.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/important.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/integrationoverview.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/interleaved1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/interleaved2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/interleaved3.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/logofullsize.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/monitoring-printers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/monitoring-routers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/monitoring-windows.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-activehostchecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-activelychecked.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-activeservicechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-cachedchecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-commandbuffers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-externalcommands.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-hostperfstats.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-hoststatechange.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-passivechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-passivelychecked.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-serviceperfstats.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/mrtg-servicestatechange.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/multiple-templates1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/multiple-templates2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nagios.jpg 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nagiosexchange.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nagiossupport.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/ndoutils.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/network-outage1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/network-outage2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/noninterleaved1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/noninterleaved2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/note.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nrpe.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nsca.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/nscpp.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-commands.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-contacts.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-hosts.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-services.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/objects-timeperiods.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/passivechecks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/passivehosttranslation.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/plugins.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/predictive-dependency-checks.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/printer.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability3.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/reachability4.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/redudancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/redundancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security1.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/security3.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/seealso.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/service-dependencies.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/statetransitions.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/statetransitions2.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/stoprestart.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/switch.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/tcpwrappers.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/tip.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/tuning.png 0644 nagios nagios +f none /opt/csw/nagios/share/docs/images/upto.gif 0644 nagios nagios +f none /opt/csw/nagios/share/docs/index.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/int-snmptrap.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/int-tcpwrappers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/integration.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/knownissues.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/largeinstalltweaks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/macrolist.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/macros.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-linux.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-netware.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-printers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-publicservices.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-routers.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/monitoring-windows.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/mrtggraphs.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/nagiostats.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/networkreachability.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/notifications.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/objectdefinitions.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/objectinheritance.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/objecttricks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/oncallrotation.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/passivechecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/passivestatetranslation.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/perfdata.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/pluginapi.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/plugins.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart-fedora.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart-opensuse.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart-ubuntu.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/quickstart.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/redundancy.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/robots.txt 0644 nagios nagios +f none /opt/csw/nagios/share/docs/security.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/servicechecks.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/stalking.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/startstop.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/statetypes.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/timeperiods.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/toc.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/tuning.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/upgrading.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/verifyconfig.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/volatileservices.html 0644 nagios nagios +f none /opt/csw/nagios/share/docs/whatsnew.html 0644 nagios nagios d none /opt/csw/nagios/share/images 0755 nagios nagios -f none /opt/csw/nagios/share/images/NagiosEnterprises-whitebg-112x46.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/ack.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/action.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/command.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/comment.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/contexthelp1.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/contexthelp2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/critical.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/delay.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/delete.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/detail.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/disabled.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/down.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/downtime.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/empty.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/enabled.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/extinfo.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/favicon.ico 0664 nagios nagios -f none /opt/csw/nagios/share/images/flapping.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/globe-support-150x150.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/greendot.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/histogram.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/history.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/hostevent.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/info.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/left.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/logofullsize.png 0664 nagios nagios +f none /opt/csw/nagios/share/images/NagiosEnterprises-whitebg-112x46.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/ack.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/action.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/command.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/comment.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/contexthelp1.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/contexthelp2.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/critical.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/delay.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/delete.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/detail.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/disabled.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/down.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/downtime.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/empty.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/enabled.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/extinfo.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/favicon.ico 0644 nagios nagios +f none /opt/csw/nagios/share/images/flapping.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/globe-support-150x150.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/greendot.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/histogram.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/history.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/hostevent.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/info.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/left.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/logofullsize.png 0644 nagios nagios d none /opt/csw/nagios/share/images/logos 0755 nagios nagios -f none /opt/csw/nagios/share/images/logos/nagios.gd2 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/nagios.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/nagiosvrml.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/unknown.gd2 0664 nagios nagios -f none /opt/csw/nagios/share/images/logos/unknown.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/logrotate.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/ndisabled.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/noack.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/notes.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/notify.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/orangedot.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/passiveonly.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/recovery.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/redudancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/redundancy.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/restart.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/right.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/sblogo.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/images/serviceevent.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/splunk1.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/splunk2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/start.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status3.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/status4.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/stop.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacdisabled.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacdisabled.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacenabled.jpg 0664 nagios nagios -f none /opt/csw/nagios/share/images/tacenabled.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/thermcrit.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/thermok.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/thermwarn.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/trends.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/trendshost.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/trendssvc.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/unknown.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/up.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/warning.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/weblogo1.png 0664 nagios nagios -f none /opt/csw/nagios/share/images/zoom1.gif 0664 nagios nagios -f none /opt/csw/nagios/share/images/zoom2.gif 0664 nagios nagios -f none /opt/csw/nagios/share/index.html 0664 nagios nagios -f none /opt/csw/nagios/share/main.html 0664 nagios nagios +f none /opt/csw/nagios/share/images/logos/nagios.gd2 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/nagios.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/nagiosvrml.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/unknown.gd2 0644 nagios nagios +f none /opt/csw/nagios/share/images/logos/unknown.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/logrotate.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/ndisabled.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/noack.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/notes.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/notify.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/orangedot.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/passiveonly.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/recovery.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/redudancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/redundancy.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/restart.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/right.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/sblogo.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/serviceevent.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/sflogo.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/splunk1.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/splunk2.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/start.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status2.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status3.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/status4.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/stop.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacdisabled.jpg 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacdisabled.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacenabled.jpg 0644 nagios nagios +f none /opt/csw/nagios/share/images/tacenabled.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/thermcrit.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/thermok.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/thermwarn.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/trends.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/trendshost.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/trendssvc.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/unknown.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/up.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/warning.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/weblogo1.png 0644 nagios nagios +f none /opt/csw/nagios/share/images/zoom1.gif 0644 nagios nagios +f none /opt/csw/nagios/share/images/zoom2.gif 0644 nagios nagios +d none /opt/csw/nagios/share/includes 0755 nagios nagios +f none /opt/csw/nagios/share/includes/utils.inc.php 0644 nagios nagios +f none /opt/csw/nagios/share/index.php 0644 nagios nagios +f none /opt/csw/nagios/share/main.php 0644 nagios nagios d none /opt/csw/nagios/share/media 0755 nagios nagios -f none /opt/csw/nagios/share/robots.txt 0664 nagios nagios -f none /opt/csw/nagios/share/side.html 0664 nagios nagios +f none /opt/csw/nagios/share/robots.txt 0644 nagios nagios +f none /opt/csw/nagios/share/side.php 0644 nagios nagios d none /opt/csw/nagios/share/ssi 0755 nagios nagios d none /opt/csw/nagios/share/stylesheets 0755 nagios nagios -f none /opt/csw/nagios/share/stylesheets/avail.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/checksanity.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/cmd.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/common.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/config.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/extinfo.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/histogram.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/history.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/ministatus.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/notifications.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/outages.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/showlog.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/status.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/statusmap.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/summary.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/tac.css 0664 nagios nagios -f none /opt/csw/nagios/share/stylesheets/trends.css 0664 nagios nagios +f none /opt/csw/nagios/share/stylesheets/avail.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/checksanity.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/cmd.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/common.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/config.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/extinfo.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/histogram.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/history.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/ministatus.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/notifications.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/outages.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/showlog.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/status.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/statusmap.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/summary.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/tac.css 0644 nagios nagios +f none /opt/csw/nagios/share/stylesheets/trends.css 0644 nagios nagios d none /opt/csw/nagios/var 0755 nagios nagios +d none /opt/csw/nagios/var/archives 0755 nagios nagios +d none /opt/csw/nagios/var/rw 0755 nagios nagios d none /opt/csw/nagios/var/spool 0755 nagios nagios -d none /opt/csw/nagios/var/archives 0755 nagios nagios -d none /opt/csw/nagios/var/rw 2770 nagios nagioscm d none /opt/csw/nagios/var/spool/checkresults 0755 nagios nagios d none /opt/csw/share/doc/nagios 0755 root bin -f none /opt/csw/share/doc/nagios/Changelog 0644 root bin +f none /opt/csw/share/doc/nagios/Changelog 0644 root bin f none /opt/csw/share/doc/nagios/INSTALLING 0644 root bin +f none /opt/csw/share/doc/nagios/LICENSE 0644 root bin f none /opt/csw/share/doc/nagios/README 0644 root bin f none /opt/csw/share/doc/nagios/UPGRADING 0644 root bin -f none /opt/csw/share/doc/nagios/LICENSE 0644 root bin f cswinitsmf /etc/opt/csw/init.d/cswnagios 0755 root bin -i checkinstall=CSWnagios.checkinstall -i preinstall=CSWnagios.preinstall -i depend=CSWnagios.depend -i pkginfo=CSWnagios.pkginfo -i preremove=CSWnagios.preremove Modified: csw/mgar/pkg/nagios/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/nagios/trunk/files/configure.diff 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/configure.diff 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,12 +1,12 @@ -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/configure nagios-3.0.6/configure ---- nagios-3.0.6.orig/configure 2008-12-02 04:48:17.000000000 +0100 -+++ nagios-3.0.6/configure 2008-12-16 16:48:29.610038929 +0100 -@@ -5848,7 +5848,7 @@ - echo $ECHO_N "(cached) $ECHO_C" >&6 - else - ac_save_LIBS="$LIBS" -- LIBS="-lgd $ICONV -lpng -ljpeg -lz -lm $LIBS" -+ LIBS="-lgd $ICONV -lpng -ljpeg -lz -lm -lsunmath $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/configure nagios-3.2.0/configure +--- nagios-3.2.0.orig/configure 2009-08-12 20:28:10.000000000 +0200 ++++ nagios-3.2.0/configure 2009-08-15 22:09:52.647057188 +0200 +@@ -7754,7 +7754,7 @@ + s, at CPP@,$CPP,;t t + s, at EGREP@,$EGREP,;t t + s, at SNPRINTF_O@,$SNPRINTF_O,;t t +-s, at SOCKETLIBS@,$SOCKETLIBS,;t t ++s, at SOCKETLIBS@,-lnsl -lsocket,;t t + s, at THREADLIBS@,$THREADLIBS,;t t + s, at nagios_user@,$nagios_user,;t t + s, at nagios_grp@,$nagios_grp,;t t Modified: csw/mgar/pkg/nagios/trunk/files/patch.diff =================================================================== --- csw/mgar/pkg/nagios/trunk/files/patch.diff 2009-08-21 08:35:02 UTC (rev 6065) +++ csw/mgar/pkg/nagios/trunk/files/patch.diff 2009-08-21 10:15:29 UTC (rev 6066) @@ -1,18 +1,18 @@ -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/cgi/cmd.c nagios-3.0.6/cgi/cmd.c ---- nagios-3.0.6.orig/cgi/cmd.c 2008-11-30 18:22:58.000000000 +0100 -+++ nagios-3.0.6/cgi/cmd.c 2008-12-16 14:01:20.459641641 +0100 -@@ -1885,7 +1885,7 @@ - return; +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/cgi/cmd.c nagios-3.2.0/cgi/cmd.c +--- nagios-3.2.0.orig/cgi/cmd.c 2009-08-11 16:35:43.000000000 +0200 ++++ nagios-3.2.0/cgi/cmd.c 2009-08-15 21:33:36.069423261 +0200 +@@ -1886,7 +1886,7 @@ } + -__attribute__((format(printf, 2, 3))) +/* __attribute__((format(printf, 2, 3))) */ - static int cmd_submitf(int id, const char *fmt, ...) - { + static int cmd_submitf(int id, const char *fmt, ...){ char cmd[MAX_EXTERNAL_COMMAND_LENGTH]; -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/include/nebmodules.h nagios-3.0.6/include/nebmodules.h ---- nagios-3.0.6.orig/include/nebmodules.h 2008-11-30 18:22:59.000000000 +0100 -+++ nagios-3.0.6/include/nebmodules.h 2008-12-16 14:02:22.859426641 +0100 + const char *command; +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/include/nebmodules.h nagios-3.2.0/include/nebmodules.h +--- nagios-3.2.0.orig/include/nebmodules.h 2008-11-30 18:22:59.000000000 +0100 ++++ nagios-3.2.0/include/nebmodules.h 2009-08-15 21:34:31.707033245 +0200 @@ -31,7 +31,7 @@ /***** MODULE VERSION INFORMATION *****/ @@ -22,9 +22,9 @@ #define CURRENT_NEB_API_VERSION 3 -diff --speed-large-files --minimal -Nru nagios-3.0.6.orig/module/Makefile.in nagios-3.0.6/module/Makefile.in ---- nagios-3.0.6.orig/module/Makefile.in 2007-12-15 00:02:24.000000000 +0100 -+++ nagios-3.0.6/module/Makefile.in 2008-12-16 14:01:52.009192953 +0100 +diff --speed-large-files --minimal -Nru nagios-3.2.0.orig/module/Makefile.in nagios-3.2.0/module/Makefile.in +--- nagios-3.2.0.orig/module/Makefile.in 2007-12-15 00:02:24.000000000 +0100 ++++ nagios-3.2.0/module/Makefile.in 2009-08-15 21:38:56.408558356 +0200 @@ -25,13 +25,13 @@ CP=@CP@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 22 10:55:25 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 22 Aug 2009 08:55:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6067] csw/mgar/pkg/thunderbird/trunk/Makefile Message-ID: Revision: 6067 http://gar.svn.sourceforge.net/gar/?rev=6067&view=rev Author: wbonnet Date: 2009-08-22 08:55:25 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Upgrade to version 2.0.0.23 Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-21 10:15:29 UTC (rev 6066) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-22 08:55:25 UTC (rev 6067) @@ -1,5 +1,5 @@ GARNAME = thunderbird -GARVERSION = 2.0.0.22 +GARVERSION = 2.0.0.23 CATEGORIES = apps DISTNAME = $(GARNAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 22 10:59:41 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 22 Aug 2009 08:59:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6068] csw/mgar/pkg/thunderbird/trunk/checksums Message-ID: Revision: 6068 http://gar.svn.sourceforge.net/gar/?rev=6068&view=rev Author: wbonnet Date: 2009-08-22 08:59:41 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Upgrade to version 2.0.0.23 Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/checksums Modified: csw/mgar/pkg/thunderbird/trunk/checksums =================================================================== --- csw/mgar/pkg/thunderbird/trunk/checksums 2009-08-22 08:55:25 UTC (rev 6067) +++ csw/mgar/pkg/thunderbird/trunk/checksums 2009-08-22 08:59:41 UTC (rev 6068) @@ -2,4 +2,4 @@ 46527aded9c373b6095fea546d4d74f0 download/lber-int.h.diff 46ef334e67dab2301b53b661494f9d58 download/ldap-int.h.diff e7054c1d1d6dc708805a6110ccfa7f70 download/ldappr-int.h.diff -080c26dcb0ed563519a6061139a0bf92 download/thunderbird-2.0.0.22-source.tar.bz2 +2e118fcf752ee60ce994f1471f9632d1 download/thunderbird-2.0.0.23-source.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 Sat Aug 22 11:20:20 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 09:20:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[6069] csw/mgar/pkg/nsd/trunk/Makefile Message-ID: Revision: 6069 http://gar.svn.sourceforge.net/gar/?rev=6069&view=rev Author: idogan23 Date: 2009-08-22 09:20:20 +0000 (Sat, 22 Aug 2009) Log Message: ----------- nsd: fixed directory permission Modified Paths: -------------- csw/mgar/pkg/nsd/trunk/Makefile Modified: csw/mgar/pkg/nsd/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsd/trunk/Makefile 2009-08-22 08:59:41 UTC (rev 6068) +++ csw/mgar/pkg/nsd/trunk/Makefile 2009-08-22 09:20:20 UTC (rev 6069) @@ -27,7 +27,7 @@ DISTFILES += cswnsd SPKG_CLASSES = none cswusergroup ugfiles cswcpsampleconf cswinitsmf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } { print }' +PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswnsd$$$$/ { $$$$2 = "cswinitsmf" } $$$$3 ~ /\/CSWnsd\/cswusergroup$$$$/ { $$$$2 = "cswusergroup" } $$$$3 ~ /\/nsd\/nsd.conf.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$2 = "ugfiles" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$5 = "nsd" } $$$$3 ~ /\/var\/opt\/csw\/nsd/ { $$$$6 = "nsd" } $$$$3 ~ /\/var\/run/ { $$$$6 = "sys" } { print }' CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-ssl=/opt/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 Sat Aug 22 13:32:24 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 11:32:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[6070] csw/mgar/pkg/apache2/trunk/Makefile Message-ID: Revision: 6070 http://gar.svn.sourceforge.net/gar/?rev=6070&view=rev Author: idogan23 Date: 2009-08-22 11:32:24 +0000 (Sat, 22 Aug 2009) Log Message: ----------- apache2: fixed dependencies Modified Paths: -------------- csw/mgar/pkg/apache2/trunk/Makefile Modified: csw/mgar/pkg/apache2/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2/trunk/Makefile 2009-08-22 09:20:20 UTC (rev 6069) +++ csw/mgar/pkg/apache2/trunk/Makefile 2009-08-22 11:32:24 UTC (rev 6070) @@ -46,7 +46,7 @@ REQUIRED_PKGS_CSWapache2c += CSWsqlite3 CSWcswclassutils REQUIRED_PKGS_CSWapache2rt = CSWbdb CSWexpat CSWgdbm CSWggettextrt CSWgsed REQUIRED_PKGS_CSWapache2rt += CSWiconv CSWoldaprt CSWosslrt CSWperl CSWsasl -REQUIRED_PKGS_CSWapache2rt += CSWzlib CSWsqlite3 +REQUIRED_PKGS_CSWapache2rt += CSWzlib CSWsqlite3 CSWlibnet CSWsqlite3rt REQUIRED_PKGS_CSWap2prefork = CSWapache2c CSWapache2rt CSWbdb CSWexpat CSWgdbm REQUIRED_PKGS_CSWap2prefork += CSWiconv CSWlibnet CSWoldaprt CSWosslrt CSWsasl REQUIRED_PKGS_CSWap2prefork += CSWzlib CSWsqlite3 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 22 14:02:51 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 22 Aug 2009 12:02:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[6071] csw/mgar/pkg/thunderbird/trunk/Makefile Message-ID: Revision: 6071 http://gar.svn.sourceforge.net/gar/?rev=6071&view=rev Author: wbonnet Date: 2009-08-22 12:02:51 +0000 (Sat, 22 Aug 2009) Log Message: ----------- Add missing CSWsqlite3rt depends Modified Paths: -------------- csw/mgar/pkg/thunderbird/trunk/Makefile Modified: csw/mgar/pkg/thunderbird/trunk/Makefile =================================================================== --- csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-22 11:32:24 UTC (rev 6070) +++ csw/mgar/pkg/thunderbird/trunk/Makefile 2009-08-22 12:02:51 UTC (rev 6071) @@ -56,6 +56,7 @@ REQUIRED_PKGS_CSWthunderbird += CSWpango REQUIRED_PKGS_CSWthunderbird += CSWzlib REQUIRED_PKGS_CSWthunderbird += CSWdbus +REQUIRED_PKGS_CSWthunderbird += CSWsqlite3rt PATCHFILES = autoconf.mk.in.diff PATCHFILES += lber-int.h.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sat Aug 22 14:16:42 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 12:16:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[6072] csw/mgar/pkg/cpan/libapreq2/trunk/ Message-ID: Revision: 6072 http://gar.svn.sourceforge.net/gar/?rev=6072&view=rev Author: idogan23 Date: 2009-08-22 12:16:41 +0000 (Sat, 22 Aug 2009) Log Message: ----------- libapreq2: Changed to mGAR v2 Property Changed: ---------------- csw/mgar/pkg/cpan/libapreq2/trunk/ Property changes on: csw/mgar/pkg/cpan/libapreq2/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 idogan23 at users.sourceforge.net Sat Aug 22 15:01:36 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 13:01:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[6073] csw/mgar/pkg/apache2-worker/trunk Message-ID: Revision: 6073 http://gar.svn.sourceforge.net/gar/?rev=6073&view=rev Author: idogan23 Date: 2009-08-22 13:01:36 +0000 (Sat, 22 Aug 2009) Log Message: ----------- apache2-worker: bump version to 2.2.13 Modified Paths: -------------- csw/mgar/pkg/apache2-worker/trunk/Makefile csw/mgar/pkg/apache2-worker/trunk/checksums Modified: csw/mgar/pkg/apache2-worker/trunk/Makefile =================================================================== --- csw/mgar/pkg/apache2-worker/trunk/Makefile 2009-08-22 12:16:41 UTC (rev 6072) +++ csw/mgar/pkg/apache2-worker/trunk/Makefile 2009-08-22 13:01:36 UTC (rev 6073) @@ -1,5 +1,5 @@ GARNAME = httpd -GARVERSION = 2.2.12 +GARVERSION = 2.2.13 CATEGORIES = server DESCRIPTION = A high performance Unix-based HTTP server. Modified: csw/mgar/pkg/apache2-worker/trunk/checksums =================================================================== --- csw/mgar/pkg/apache2-worker/trunk/checksums 2009-08-22 12:16:41 UTC (rev 6072) +++ csw/mgar/pkg/apache2-worker/trunk/checksums 2009-08-22 13:01:36 UTC (rev 6073) @@ -7,4 +7,4 @@ 61b6b11aa70677da9386e90c3b5ba21c download/CSWapache2.killproc 308836569bf0cc1be27ac45e3123e0c2 download/apu-iconv.diff a7467a756cbd980d4cfe3c2cfb6a9e35 download/config.layout -17f017b571f88aa60abebfe2945d7caf download/httpd-2.2.12.tar.gz +2803e35be6650f5b739e6e91faa824dd download/httpd-2.2.13.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 Sat Aug 22 17:28:10 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 15:28:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[6074] csw/mgar/pkg/ldns/trunk/Makefile Message-ID: Revision: 6074 http://gar.svn.sourceforge.net/gar/?rev=6074&view=rev Author: idogan23 Date: 2009-08-22 15:28:10 +0000 (Sat, 22 Aug 2009) Log Message: ----------- ldns: splitted package into a devel package Modified Paths: -------------- csw/mgar/pkg/ldns/trunk/Makefile Modified: csw/mgar/pkg/ldns/trunk/Makefile =================================================================== --- csw/mgar/pkg/ldns/trunk/Makefile 2009-08-22 13:01:36 UTC (rev 6073) +++ csw/mgar/pkg/ldns/trunk/Makefile 2009-08-22 15:28:10 UTC (rev 6074) @@ -15,6 +15,13 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += CSWldns.doxyparse.diff +PACKAGES = CSWldns CSWldnsdevel +CATALOGNAME_CSWldns = ldns +CATALOGNAME_CSWldnsdevel = ldns_devel + +SPKG_DESC_CSWldns = $(DESCRIPTION) +SPKG_DESC_CSWldnsdevel = $(DESCRIPTION) development package + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz @@ -26,7 +33,8 @@ EXTRA_BUILD_ISAS_i386 = pentium_pro EXTRA_BUILD_ISAS_sparc = sparcv8plus -REQUIRED_PKGS += CSWosslrt +REQUIRED_PKGS_CSWldns += CSWosslrt +REQUIRED_PKGS_CSWldnsdevel += CSWldns PATCHFILES = CSWldns.doxyparse.diff @@ -41,4 +49,7 @@ TEST_TARGET = +PKGFILES_CSWldnsdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWldnsrt = $(PKGFILES_RT) + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sat Aug 22 17:59:32 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 15:59:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6075] csw/mgar/pkg/drill/trunk Message-ID: Revision: 6075 http://gar.svn.sourceforge.net/gar/?rev=6075&view=rev Author: idogan23 Date: 2009-08-22 15:59:32 +0000 (Sat, 22 Aug 2009) Log Message: ----------- drill: bump version to 1.6.1 Modified Paths: -------------- csw/mgar/pkg/drill/trunk/Makefile csw/mgar/pkg/drill/trunk/checksums Modified: csw/mgar/pkg/drill/trunk/Makefile =================================================================== --- csw/mgar/pkg/drill/trunk/Makefile 2009-08-22 15:28:10 UTC (rev 6074) +++ csw/mgar/pkg/drill/trunk/Makefile 2009-08-22 15:59:32 UTC (rev 6075) @@ -1,5 +1,5 @@ GARNAME = drill -GARVERSION = 1.6.0 +GARVERSION = 1.6.1 CATEGORIES = utils DESCRIPTION = A dig style dnssec aware dns debugging tool Modified: csw/mgar/pkg/drill/trunk/checksums =================================================================== --- csw/mgar/pkg/drill/trunk/checksums 2009-08-22 15:28:10 UTC (rev 6074) +++ csw/mgar/pkg/drill/trunk/checksums 2009-08-22 15:59:32 UTC (rev 6075) @@ -1 +1 @@ -cd0d4d34a60d018fbfedae6d3ee4049b download/ldns-1.6.0.tar.gz +a44dafecdcc49aaea5d20ae15bc738c0 download/ldns-1.6.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 22 18:34:52 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 22 Aug 2009 16:34:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[6076] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6076 http://gar.svn.sourceforge.net/gar/?rev=6076&view=rev Author: wahwah Date: 2009-08-22 16:34:51 +0000 (Sat, 22 Aug 2009) Log Message: ----------- wxwidgets: It compiles now, but needs ENABLE_CHECK=0 Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-22 15:59:32 UTC (rev 6075) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-22 16:34:51 UTC (rev 6076) @@ -2,189 +2,59 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -# It's a work in progress! -# -# Done: configuration phase completes now. -# TODO: -# - Make sure the compilation phase completes -# - Split the installed files into separate packages - -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## GARNAME = wxWidgets GARVERSION = 2.8.10 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. DESCRIPTION = A portable widget library -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. define BLURB endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. SPKG_SOURCEURL = http://www.wxwidgets.org/ -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). MASTER_SITES = $(SF_MIRRORS) -MASTER_SITES += http://trac.wxwidgets.org/raw-attachment/ticket/10660/ -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. SF_PROJ = wxwindows -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. PATCHFILES = 0001-Patches-from-http-trac.wxwidgets.org-ticket-10660.patch PATCHFILES += 0002-Fixing-retarded-checks-for-libGL.patch -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(PATCHFILES) -## -## We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. CATALOGNAME = wxwidgets -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -REQUIRED_PKGS = CSWgtk2 -## -## A list of packages necessary to build this package +PACKAGES = CSWwxwidgetscommon +PACKAGES += CSWwxwidgetsdevel +PACKAGES += CSWwxwidgetsgtk2 +PACKAGES += CSWwxwidgetsrt +REQUIRED_PKGS = CSWexpat +REQUIRED_PKGS += CSWfconfig +REQUIRED_PKGS += CSWftype2 +REQUIRED_PKGS += CSWggettextrt +REQUIRED_PKGS += CSWglib2 +REQUIRED_PKGS += CSWgtk2 +REQUIRED_PKGS += CSWiconv +REQUIRED_PKGS += CSWjpeg +REQUIRED_PKGS += CSWlibatk +REQUIRED_PKGS += CSWmesa +REQUIRED_PKGS += CSWpango +REQUIRED_PKGS += CSWpng +REQUIRED_PKGS += CSWtiff +REQUIRED_PKGS += CSWzlib + PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. +PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) +PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* +PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) +PKGFILES_CSWwxwidgetsgtk2 = non-existing + +REQUIRED_PKGS_CSWwxwidgetsgtk2 = CSWwxwidgetsrt +REQUIRED_PKGS_CSWwxwidgetsrt = CSWwxwidgetscommon + +CATALOGNAME_CSWwxwidgetscommon = wxwidgets_common +CATALOGNAME_CSWwxwidgetsdevel = wxwidgets_devel +CATALOGNAME_CSWwxwidgetsgtk2 = wxwidgets_gtk2 +CATALOGNAME_CSWwxwidgetsrt = wxwidgets_rt +TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex CONFIGURE_ARGS += --disable-unicode --with-opengl -## -## BUILD64 = -## CONFIGURE_ENV = EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt -## -L/opt/csw/lib -R/opt/csw/lib -## EXTRA_LDFLAGS = EXTRA_INC = /opt/csw/X11/include EXTRA_LIB = /opt/csw/X11/lib -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 22 18:37:36 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 22 Aug 2009 16:37:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[6077] csw/mgar/pkg/unixodbc/trunk/Makefile Message-ID: Revision: 6077 http://gar.svn.sourceforge.net/gar/?rev=6077&view=rev Author: wahwah Date: 2009-08-22 16:37:35 +0000 (Sat, 22 Aug 2009) Log Message: ----------- unixodbc: Using CSWiconv instead of libiconv, enabling 64 bit support Modified Paths: -------------- csw/mgar/pkg/unixodbc/trunk/Makefile Modified: csw/mgar/pkg/unixodbc/trunk/Makefile =================================================================== --- csw/mgar/pkg/unixodbc/trunk/Makefile 2009-08-22 16:34:51 UTC (rev 6076) +++ csw/mgar/pkg/unixodbc/trunk/Makefile 2009-08-22 16:37:35 UTC (rev 6077) @@ -22,7 +22,7 @@ SPKG_CLASSES = none cswcpsampleconf -REQUIRED_PKGS = CSWlibiconv +REQUIRED_PKGS = CSWiconv REQUIRED_PKGS += CSWreadline REQUIRED_PKGS += CSWcswclassutils @@ -30,6 +30,7 @@ localstatedir = /var/opt/csw CONFIGURE_ARGS = $(DIRPATHS) --enable-gui=no +BUILD64 = 1 PROTOTYPE_FILTER = awk ' \ $$$$3 ~ /\/etc\/opt\/csw\/.*\.CSW$$$$/ { $$$$2 = "cswcpsampleconf" } \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sat Aug 22 18:58:45 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 16:58:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6078] csw/mgar/pkg/syslog_ng/trunk Message-ID: Revision: 6078 http://gar.svn.sourceforge.net/gar/?rev=6078&view=rev Author: idogan23 Date: 2009-08-22 16:58:45 +0000 (Sat, 22 Aug 2009) Log Message: ----------- syslog_ng: bump version to 3.0.4 Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile csw/mgar/pkg/syslog_ng/trunk/checksums Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 16:37:35 UTC (rev 6077) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 16:58:45 UTC (rev 6078) @@ -1,5 +1,5 @@ GARNAME = syslog-ng -GARVERSION = 3.0.3 +GARVERSION = 3.0.4 CATEGORIES = server DESCRIPTION = A powerful syslogd replacement @@ -9,7 +9,7 @@ logs using TCP. endef -MASTER_SITES = http://www.balabit.com/downloads/files/$(GARNAME)/open-source-edition/$(GARVERSION)/source/ +MASTER_SITES = http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/ DISTFILES = $(GARNAME)_$(GARVERSION).tar.gz DISTFILES += $(GARNAME).conf.CSW DISTFILES += cswsyslog_ng Modified: csw/mgar/pkg/syslog_ng/trunk/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-22 16:37:35 UTC (rev 6077) +++ csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-22 16:58:45 UTC (rev 6078) @@ -2,4 +2,4 @@ b4b01531e2de07e6e4231afc4079a168 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW -b8b3c9af28696bce48ceca0de6444426 download/syslog-ng_3.0.3.tar.gz +86c39779261545d2289e9c309e262b8d download/syslog-ng_3.0.4.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 Sat Aug 22 19:09:27 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sat, 22 Aug 2009 17:09:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[6079] csw/mgar/pkg/syslog_ng/trunk/Makefile Message-ID: Revision: 6079 http://gar.svn.sourceforge.net/gar/?rev=6079&view=rev Author: idogan23 Date: 2009-08-22 17:09:27 +0000 (Sat, 22 Aug 2009) Log Message: ----------- syslog_ng: added dependencies Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 16:58:45 UTC (rev 6078) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 17:09:27 UTC (rev 6079) @@ -46,6 +46,9 @@ REQUIRED_PKGS = CSWgcc4corert REQUIRED_PKGS += CSWeventlog +REQUIRED_PKGS += CSWosslrt +REQUIRED_PKGS += CSWzlib +REQUIRED_PKGS += CSWpcrert REQUIRED_PKGS += CSWggettextrt REQUIRED_PKGS += CSWglib2 REQUIRED_PKGS += CSWtcpwrap This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 10:18:25 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 08:18:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[6080] csw/mgar/pkg/syslog_ng/trunk/Makefile Message-ID: Revision: 6080 http://gar.svn.sourceforge.net/gar/?rev=6080&view=rev Author: idogan23 Date: 2009-08-23 08:18:25 +0000 (Sun, 23 Aug 2009) Log Message: ----------- syslog_ng: fixed SPKG_SOURCEURL Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-22 17:09:27 UTC (rev 6079) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-23 08:18:25 UTC (rev 6080) @@ -23,7 +23,7 @@ PACKAGES = CSWsyslogng -SPKG_SOURCEURL = http://www.balabit.com/network-security/$(GARNAME)/ +SPKG_SOURCEURL = http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(GARVERSION)/source/ SPKG_CLASSES = none cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk ' \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 10:29:30 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 08:29:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6081] csw/mgar/pkg/eventlog/trunk/ Message-ID: Revision: 6081 http://gar.svn.sourceforge.net/gar/?rev=6081&view=rev Author: idogan23 Date: 2009-08-23 08:29:30 +0000 (Sun, 23 Aug 2009) Log Message: ----------- eventlog: switched to mgar v2 Property Changed: ---------------- csw/mgar/pkg/eventlog/trunk/ Property changes on: csw/mgar/pkg/eventlog/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 idogan23 at users.sourceforge.net Sun Aug 23 10:44:45 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 08:44:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6082] csw/mgar/pkg/eventlog/trunk Message-ID: Revision: 6082 http://gar.svn.sourceforge.net/gar/?rev=6082&view=rev Author: idogan23 Date: 2009-08-23 08:44:45 +0000 (Sun, 23 Aug 2009) Log Message: ----------- eventlog: bump version to 0.2.9, switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/eventlog/trunk/Makefile csw/mgar/pkg/eventlog/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec Modified: csw/mgar/pkg/eventlog/trunk/Makefile =================================================================== --- csw/mgar/pkg/eventlog/trunk/Makefile 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/Makefile 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,5 +1,5 @@ GARNAME = eventlog -GARVERSION = 0.2.5 +GARVERSION = 0.2.9 CATEGORIES = lib DESCRIPTION = Replacement of the simple syslog() API providing structure to messages. @@ -14,15 +14,19 @@ via a configuration file. endef +PACKAGES = CSWeventlog +CATALOGNAME = eventlog + MASTER_SITES = http://www.balabit.com/downloads/files/eventlog/0.2/ -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWeventlog,depend) +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 CONFIGURE_ARGS = $(DIRPATHS) +REQUIRED_PKGS += CSWgcc4corert + GARCOMPILER = GNU TEST_SCRIPTS = Modified: csw/mgar/pkg/eventlog/trunk/checksums =================================================================== --- csw/mgar/pkg/eventlog/trunk/checksums 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/checksums 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,3 +1 @@ -a6bdba91f88540cc69b398fd138d86cd download/eventlog-0.2.5.tar.gz -1e03beddd307427b5116517cd8119a9f download/CSWeventlog.gspec -421c2434c25c6e85ce8a9b516a934ab5 download/CSWeventlog.depend +76e3d7a0b8f335c12099e9b91191fbf1 download/eventlog_0.2.9.tar.gz Deleted: csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend =================================================================== --- csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.depend 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,2 +0,0 @@ -P CSWcommon -P CSWgcc3core Deleted: csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec =================================================================== --- csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec 2009-08-23 08:29:30 UTC (rev 6081) +++ csw/mgar/pkg/eventlog/trunk/files/CSWeventlog.gspec 2009-08-23 08:44:45 UTC (rev 6082) @@ -1,4 +0,0 @@ -%var bitname eventlog -%var pkgname CSWeventlog -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 11:04:47 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 09:04:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[6083] csw/mgar/pkg/cpan/Mail-DKIM/trunk/ Message-ID: Revision: 6083 http://gar.svn.sourceforge.net/gar/?rev=6083&view=rev Author: idogan23 Date: 2009-08-23 09:04:47 +0000 (Sun, 23 Aug 2009) Log Message: ----------- pm_maildkim: switchted to mGar v2 Property Changed: ---------------- csw/mgar/pkg/cpan/Mail-DKIM/trunk/ Property changes on: csw/mgar/pkg/cpan/Mail-DKIM/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 idogan23 at users.sourceforge.net Sun Aug 23 11:27:21 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 09:27:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6084] csw/mgar/pkg/cpan/Mail-DKIM/trunk Message-ID: Revision: 6084 http://gar.svn.sourceforge.net/gar/?rev=6084&view=rev Author: idogan23 Date: 2009-08-23 09:27:20 +0000 (Sun, 23 Aug 2009) Log Message: ----------- pm_maildkim: bump version to 0.3.6, switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec Modified: csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/Makefile 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,5 +1,5 @@ GARNAME = Mail-DKIM -GARVERSION = 0.35 +GARVERSION = 0.36 CATEGORIES = cpan AUTHOR = JASLONG @@ -12,7 +12,9 @@ * draft-delany-domainkeys-base endef -DISTFILES += $(call admfiles,CSWpmmaildkim,depend,) +PACKAGES = CSWpmmaildkim +CATALOGNAME = pm_maildkim +ARCHALL = 1 DEPENDS += cpan/Crypt-OpenSSL-RSA DEPENDS += cpan/Digest-SHA1 @@ -20,4 +22,12 @@ DEPENDS += cpan/MailTools DEPENDS += cpan/Net-DNS +REQUIRED_PKGS += CSWpmcryptosslrsa +REQUIRED_PKGS += CSWpmdigestsha +REQUIRED_PKGS += CSWpmdigestsha1 +REQUIRED_PKGS += CSWpmerror +REQUIRED_PKGS += CSWpmmailtools +REQUIRED_PKGS += CSWpmmimebase64 +REQUIRED_PKGS += CSWpmnetdns + include gar/category.mk Modified: csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/checksums 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,3 +1 @@ -5caf562501bb6c7a2623ad5627954e73 download/CSWpmmaildkim.gspec -f7cfb431ff18d457874d604340804d85 download/CSWpmmaildkim.depend -09216a6544439c212efdd70e4bd106ca download/Mail-DKIM-0.33.tar.gz +b6681a7b3cc21c0976205d4ad616455d download/Mail-DKIM-0.36.tar.gz Deleted: csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.depend 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,7 +0,0 @@ -P CSWpmcryptosslrsa pm_osslrsa - Perl Crypt::OpenSSL::RSA module -P CSWpmdigestsha pm_digestsha - Perl extension for SHA-1/224/256/384/512 -P CSWpmdigestsha1 pm_digestsha1 - interface to the SHA-1 Algorithm -P CSWpmerror pm_error - Error/exception handling -P CSWpmmailtools pm_mailtools - various mail manipulation modules -P CSWpmmimebase64 pm_mimebase64 - Encoding and decoding of base64 strings -P CSWpmnetdns pm_netdns - interface to the DNS resolver Deleted: csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec =================================================================== --- csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec 2009-08-23 09:04:47 UTC (rev 6083) +++ csw/mgar/pkg/cpan/Mail-DKIM/trunk/files/CSWpmmaildkim.gspec 2009-08-23 09:27:20 UTC (rev 6084) @@ -1,12 +0,0 @@ -%var bitname pm_maildkim -%var pkgname CSWpmmaildkim -#%var desc Mail::DKIM -%var arch all -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 2006-2007 by Messiah College - -This is free software; you can redistribute it and/or -modify it under the same terms as Perl itself. - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From idogan23 at users.sourceforge.net Sun Aug 23 15:06:48 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 13:06:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6085] csw/mgar/pkg/opera/trunk/ Message-ID: Revision: 6085 http://gar.svn.sourceforge.net/gar/?rev=6085&view=rev Author: idogan23 Date: 2009-08-23 13:06:48 +0000 (Sun, 23 Aug 2009) Log Message: ----------- opera: switched to mGar v2 Property Changed: ---------------- csw/mgar/pkg/opera/trunk/ Property changes on: csw/mgar/pkg/opera/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 idogan23 at users.sourceforge.net Sun Aug 23 15:46:56 2009 From: idogan23 at users.sourceforge.net (idogan23 at users.sourceforge.net) Date: Sun, 23 Aug 2009 13:46:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[6086] csw/mgar/pkg/opera/trunk Message-ID: Revision: 6086 http://gar.svn.sourceforge.net/gar/?rev=6086&view=rev Author: idogan23 Date: 2009-08-23 13:46:56 +0000 (Sun, 23 Aug 2009) Log Message: ----------- opera: switched to dynamic gspec Modified Paths: -------------- csw/mgar/pkg/opera/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/opera/trunk/files/CSWopera.depend csw/mgar/pkg/opera/trunk/files/CSWopera.gspec Modified: csw/mgar/pkg/opera/trunk/Makefile =================================================================== --- csw/mgar/pkg/opera/trunk/Makefile 2009-08-23 13:06:48 UTC (rev 6085) +++ csw/mgar/pkg/opera/trunk/Makefile 2009-08-23 13:46:56 UTC (rev 6086) @@ -9,9 +9,11 @@ like Opera's groundbreaking E-mail program, RSS Newsfeeds and IRC chat endef +PACKAGES = CSWopera +CATALOGNAME = opera + MASTER_SITES = http://www.opera.com/ DISTFILES = $(GARNAME)-$(GARVERSION).gcc3-static-qt3.tar.gz -DISTFILES += $(call admfiles,CSWopera, depend) # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz Deleted: csw/mgar/pkg/opera/trunk/files/CSWopera.depend =================================================================== --- csw/mgar/pkg/opera/trunk/files/CSWopera.depend 2009-08-23 13:06:48 UTC (rev 6085) +++ csw/mgar/pkg/opera/trunk/files/CSWopera.depend 2009-08-23 13:46:56 UTC (rev 6086) @@ -1 +0,0 @@ -P CSWcommon Deleted: csw/mgar/pkg/opera/trunk/files/CSWopera.gspec =================================================================== --- csw/mgar/pkg/opera/trunk/files/CSWopera.gspec 2009-08-23 13:06:48 UTC (rev 6085) +++ csw/mgar/pkg/opera/trunk/files/CSWopera.gspec 2009-08-23 13:46:56 UTC (rev 6086) @@ -1,4 +0,0 @@ -%var bitname opera -%var pkgname CSWopera -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/LICENSE This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun Aug 23 17:03:00 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 15:03:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[6087] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 6087 http://gar.svn.sourceforge.net/gar/?rev=6087&view=rev Author: skayser Date: 2009-08-23 15:03:00 +0000 (Sun, 23 Aug 2009) Log Message: ----------- gar/v2: fix to include cswclassutils handling when only USERGROUP would have been set 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-08-23 13:46:56 UTC (rev 6086) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-23 15:03:00 UTC (rev 6087) @@ -157,7 +157,7 @@ SPKG_CLASSES := $(SPKG_CLASSES) $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(USERGROUP),$(if $(filter cswusergroup,$(SPKG_CLASSES)),,cswusergroup)) # - set class for all config files -ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF),) +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP),) _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)$$) );)\ 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 Aug 23 18:13:45 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 23 Aug 2009 16:13:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6088] csw/mgar/gar/v2-pbuild Message-ID: Revision: 6088 http://gar.svn.sourceforge.net/gar/?rev=6088&view=rev Author: dmichelsen Date: 2009-08-23 16:13:45 +0000 (Sun, 23 Aug 2009) Log Message: ----------- mGAR v2 pbuild: Intermediate commit Modified Paths: -------------- csw/mgar/gar/v2-pbuild/gar.conf.mk csw/mgar/gar/v2-pbuild/gar.mk Modified: csw/mgar/gar/v2-pbuild/gar.conf.mk =================================================================== --- csw/mgar/gar/v2-pbuild/gar.conf.mk 2009-08-23 15:03:00 UTC (rev 6087) +++ csw/mgar/gar/v2-pbuild/gar.conf.mk 2009-08-23 16:13:45 UTC (rev 6088) @@ -135,7 +135,7 @@ DESTROOT ?= $(HOME) # This is the directory from where the package is build from -PKGROOT ?= $(abspath $(WORKROOTDIR)/pkgroot) +PKGROOT ?= $(abspath $(WORKROOTDIR)/pkgroot-$(GARCH)) # Each ISA has a separate installation directory inside the # working directory for that package. The files are copied @@ -274,6 +274,26 @@ # ISALIST_$(GARCOMPILER) contains all ISAs which are compilable with the selected compiler $(foreach C,$(GARCOMPILERS),$(eval ISALIST_$(C) ?= $(foreach I,$(ISALIST),$(if $(filter-out ERROR,$(ARCHFLAGS_$C_$I)),$I)))) +THISHOST := $(shell uname -n) + +# BUILDHOST_isa-$ISA is the name of the host where the compilation should take place +# It defaults to the corresponding BUILD_(sparc|i386)-(32|64) +# An empty string means "stay on the current host" +define BUILDHOST +$(strip + $(if $(filter $1,$(ISALIST_sparcv9), + $(if $(BUILDHOST_sparc-$(MEMORYMODEL_$1)), + $(if $(eq $(BUILDHOST_sparc-$(MEMORYMODEL_$1)),$(THISHOST)),,$(BUILDHOST_sparc-$(MEMORYMODEL_$1))), + ), + $(if $(filter $1,$(ISALIST_amd64), + $(if $(BUILDHOST_i386-$(MEMORYMODEL_$1)), + $(if $(eq $(BUILDHOST_i386-$(MEMORYMODEL_$1)),$(THISHOST)),,$(BUILDHOST_i386-$(MEMORYMODEL_$1))), + ), + ), + ), +) +endef + # This is the memory model of the currently compiled architecture MEMORYMODEL = $(MEMORYMODEL_$(ISA)) @@ -648,6 +668,7 @@ _modenv-modulated: @echo; \ echo "* Modulation $(MODULATION): $(foreach M,$(MODULATORS),$M=$($M))"; \ + echo " Build Host = $(call modulation2host)"; \ echo " PATH = $(PATH)"; \ echo "PKG_CONFIG_PATH = $(PKG_CONFIG_PATH)"; \ echo " CFLAGS = $(CFLAGS)"; \ Modified: csw/mgar/gar/v2-pbuild/gar.mk =================================================================== --- csw/mgar/gar/v2-pbuild/gar.mk 2009-08-23 15:03:00 UTC (rev 6087) +++ csw/mgar/gar/v2-pbuild/gar.mk 2009-08-23 16:13:45 UTC (rev 6088) @@ -152,17 +152,43 @@ endef +define _modulate_merge +merge-$(2): $(3) +merge-$(2): BUILDHOST=$$$$(call modulation2host) +merge-$(2): + echo modulation: $(2) + echo vars: $(3) + echo ISA: $(ISA) + echo BUILDHOST=$(BUILDHOST) + echo BUILDHOST=$(call modulation2host) + echo BUILDHOST=$$(call modulation2host) + echo BUILDHOST=$(eval $(call modulation2host)) + echo BUILDHOST=$$(eval $(call modulation2host)) + echo BUILDHOST=$$(eval $$(call modulation2host)) + echo THISHOST=$(THISHOST) + echo "Building modulation on host '$(BUILDHOST)'" + $(if $(and $(BUILDHOST),$(filter-out $(THISHOST),$(BUILDHOST))),\ + ssh $(BUILDHOST) "gmake -C $(CURDIR) MODULATION=$(2) $(3) merge-modulated",\ + gmake MODULATION=$(2) $(3) merge-modulated\ + ) + @# The next line has intentionally been left blank to explicitly terminate this make rule + +endef + define _modulate_do $(call _modulate_target,extract,$(2),$(4)) $(call _modulate_target,patch,$(2),$(4)) $(call _modulate_target,configure,$(2),$(4)) $(call _modulate_target_nocookie,reset-configure,$(2),$(4)) $(call _modulate_target,build,$(2),$(4)) +#$(call _modulate_build,,$(2),$(4)) $(call _modulate_target_nocookie,reset-build,$(2),$(4)) $(call _modulate_target,test,$(2),$(4)) $(call _modulate_target,install,$(2),$(4)) +#$(call _modulate_install,,$(2),$(4)) $(call _modulate_target_nocookie,reset-install,$(2),$(4)) -$(call _modulate_target,merge,$(2),$(4)) +#$(call _modulate_target,merge,$(2),$(4)) +$(call _modulate_merge,,$(2),$(4)) $(call _modulate_target_nocookie,reset-merge,$(2),$(4)) $(call _modulate_target_nocookie,clean,$(2),$(4)) $(call _modulate_target_nocookie,_modenv,$(2),$(4)) @@ -607,13 +633,22 @@ merge-parallel: _PIDFILE=$(WORKROOTDIR)/build-global-$(GARCH)/multitail.pid merge-parallel: merge-watch - $(_DBG_MERGE)$(foreach M,$(MODULATIONS),$(MAKE) merge-$M >$(WORKROOTDIR)/build-$M/build.log 2>&1 &) wait - $(_DBG_MERGE)if [ -f $(_PIDFILE) ]; then kill `cat $(_PIDFILE)` && stty sane; fi + $(_DBG_MERGE)trap "kill -9 `cat $(_PIDFILE) $(foreach M,$(MODULATIONS),$(WORKROOTDIR)/build-$M/build.pid) 2>/dev/null`;stty sane" INT;\ + $(foreach M,$(MODULATIONS),($(MAKE) merge-$M >$(WORKROOTDIR)/build-$M/build.log 2>&1; echo $$? >$(WORKROOTDIR)/build-$M/build.ret) & echo $$! >$(WORKROOTDIR)/build-$M/build.pid; ) wait + $(_DBG_MERGE)if [ -f $(_PIDFILE) ]; then kill `cat $(_PIDFILE)`; stty sane; fi + $(foreach M,$(MODULATIONS),if [ "`cat $(WORKROOTDIR)/build-$M/build.ret`" -ne 0 ]; then \ + echo "Build error in modulation $M. Please see"; \ + echo " $(WORKROOTDIR)/build-$M/build.log"; \ + echo "for details:"; \ + echo; \ + tail -100 $(WORKROOTDIR)/build-$M/build.log; \ + exit `cat $(WORKROOTDIR)/build-$M/build.ret`; \ + fi;) merge-watch: _USEMULTITAIL=$(shell test -x $(MULTITAIL) && test -x $(TTY) && $(TTY) >/dev/null 2>&1; if [ $$? -eq 0 ]; then echo yes; fi) merge-watch: $(_DBG_MERGE)$(if $(_USEMULTITAIL),\ - $(MULTITAIL) --retry-all $(foreach M,$(MODULATIONS),$(WORKROOTDIR)/build-$M/build.log) -J & echo $$! > $(WORKROOTDIR)/build-global-$(GARCH)/multitail.pid,\ + $(MULTITAIL) --retry-all $(foreach M,$(MODULATIONS),$(WORKROOTDIR)/build-$M/build.log) -j & echo $$! > $(WORKROOTDIR)/build-global-$(GARCH)/multitail.pid,\ echo "Building all ISAs in parallel. Please see the individual logfiles for details:";$(foreach M,$(MODULATIONS),echo "- $(WORKROOTDIR)/build-$M/build.log";)\ ) 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 Sun Aug 23 21:24:21 2009 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 23 Aug 2009 19:24:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6089] csw/mgar/pkg Message-ID: Revision: 6089 http://gar.svn.sourceforge.net/gar/?rev=6089&view=rev Author: j_arndt Date: 2009-08-23 19:24:20 +0000 (Sun, 23 Aug 2009) Log Message: ----------- spine: Initial commit Added Paths: ----------- csw/mgar/pkg/spine/ csw/mgar/pkg/spine/branches/ csw/mgar/pkg/spine/tags/ csw/mgar/pkg/spine/trunk/ csw/mgar/pkg/spine/trunk/Makefile csw/mgar/pkg/spine/trunk/checksums csw/mgar/pkg/spine/trunk/files/ csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall csw/mgar/pkg/spine/trunk/files/CSWspine.prototype csw/mgar/pkg/spine/trunk/files/configure.diff csw/mgar/pkg/spine/trunk/files/cswusergroup Property changes on: csw/mgar/pkg/spine/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/spine/trunk/Makefile =================================================================== --- csw/mgar/pkg/spine/trunk/Makefile (rev 0) +++ csw/mgar/pkg/spine/trunk/Makefile 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,77 @@ +#GARNAME = cacti-spine +GARNAME = spine +GARVERSION = 0.8.7e +CATEGORIES = apps + +DESCRIPTION = very fast poller for cacti +define BLURB + Spine, formally Cactid, is a poller for Cacti that primarily strives to be as fast as possible. For this reason it is written in native C, makes use of POSIX threads, and is linked directly against the net-snmp library for minmumal SNMP polling overhead. Spine is a replacement for the default cmd.php poller so you must decide if using Spine makes sense for your installation. +endef + +MASTER_SITES = http://www.cacti.net/downloads/spine/ +#DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz +DISTFILES = cacti-$(GARNAME)-$(GARVERSION).tar.gz +DISTFILES += cswusergroup CSWspine.postinstall + +PATCHFILES += configure.diff + +NOISALIST = 1 + +CATALOGNAME = spine + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = -(\d+(?:\.\d+)*).tar.gz + +# If the url used to check for software update is different of MASTER_SITES, then +# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES +# UPSTREAM_MASTER_SITES = + +REQUIRED_PKGS = CSWmysql5rt CSWnetsnmp CSWosslrt CSWzlib CSWcswclassutils + +SPKG_CLASSES = none cswpreserveconf + +WORKSRC = $(WORKDIR)/cacti-$(GARNAME)-$(GARVERSION) + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-mysql=/opt/csw/mysql5 +CONFIGURE_ARGS += --with-snmp=/opt/csw/include/net-snmp + +EXTRA_LIB += $(BUILD_PREFIX)/lib +LD_OPTIONS += -L/opt/csw/lib + +CONFIGURE_SCRIPTS = custom +INSTALL_SCRIPTS = custom + +SKIPTEST = 1 + +DOCDEST = $(DESTDIR)$(BUILD_PREFIX)/share/doc/spine +BINDIR = $(DESTDIR)$(BUILD_PREFIX)/bin +CFGDIR = $(DESTDIR)$(BUILD_PREFIX)/etc + +include gar/category.mk + +configure-custom: + @echo " ==> Configuring in $(WORKSRC)" + @rm $(WORKSRC)/config/ltmain.sh + @rm $(WORKSRC)/config/config.sub + @rm $(WORKSRC)/config/config.guess + @ln -s /opt/csw/share/libtool/config/ltmain.sh $(WORKSRC)/config/ltmain.sh + @ln -s /opt/csw/share/libtool/config/config.sub $(WORKSRC)/config/config.sub + @ln -s /opt/csw/share/libtool/config/config.guess $(WORKSRC)/config/config.guess + @( cd $(WORKSRC) ; ./configure $(CONFIGURE_ARGS) ) + @$(MAKECOOKIE) + +install-custom: + @ginstall -d $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/LICENSE $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/README $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/README-WINDOWS $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/INSTALL $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/LICENSE.LGPL $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/COPYING $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/ChangeLog $(DOCDEST) + @ginstall -d $(BINDIR) + @ginstall -m 755 $(WORKSRC)/spine $(BINDIR) + @ginstall -d $(CFGDIR) + @ginstall -m 644 $(WORKSRC)/spine.conf $(CFGDIR)/spine.conf.CSW + @$(MAKECOOKIE) Added: csw/mgar/pkg/spine/trunk/checksums =================================================================== --- csw/mgar/pkg/spine/trunk/checksums (rev 0) +++ csw/mgar/pkg/spine/trunk/checksums 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,4 @@ +54e3c3f6ca757815ac1cccf78b7a086c download/CSWspine.postinstall +99e5bde07fc31d1ed8aa23c59de00417 download/cacti-spine-0.8.7e.tar.gz +40235c60873e4097a44b07db653211ae download/configure.diff +b762d50320246dc8ce21c20233479231 download/cswusergroup Added: csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall =================================================================== --- csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall (rev 0) +++ csw/mgar/pkg/spine/trunk/files/CSWspine.postinstall 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,11 @@ +#!/bin/sh + +cat << EOF + +======================================================================= + +Please check and edit your configuration in /opt/csw/etc/spine.conf ! + +======================================================================= + +EOF Added: csw/mgar/pkg/spine/trunk/files/CSWspine.prototype =================================================================== --- csw/mgar/pkg/spine/trunk/files/CSWspine.prototype (rev 0) +++ csw/mgar/pkg/spine/trunk/files/CSWspine.prototype 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,10 @@ +f none /opt/csw/bin/spine 0755 root bin +f cswpreserveconf /opt/csw/etc/spine.conf.CSW 0644 root bin +d none /opt/csw/share/doc/spine 0755 root bin +f none /opt/csw/share/doc/spine/COPYING 0644 root bin +f none /opt/csw/share/doc/spine/ChangeLog 0644 root bin +f none /opt/csw/share/doc/spine/INSTALL 0644 root bin +f none /opt/csw/share/doc/spine/LICENSE 0644 root bin +f none /opt/csw/share/doc/spine/LICENSE.LGPL 0644 root bin +f none /opt/csw/share/doc/spine/README 0644 root bin +f none /opt/csw/share/doc/spine/README-WINDOWS 0644 root bin Added: csw/mgar/pkg/spine/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/spine/trunk/files/configure.diff (rev 0) +++ csw/mgar/pkg/spine/trunk/files/configure.diff 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1,54 @@ +diff --speed-large-files --minimal -Nru cacti-spine-0.8.7e.orig/configure cacti-spine-0.8.7e/configure +--- cacti-spine-0.8.7e.orig/configure 2009-06-29 04:03:42.000000000 +0200 ++++ cacti-spine-0.8.7e/configure 2009-08-23 10:58:42.345538990 +0200 +@@ -20169,7 +20169,10 @@ + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + + # Always use our own libtool. +-LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++#LIBTOOL='$(SHELL) $(top_builddir)/libtool' ++ ++# use OpenCSW libtool ++LIBTOOL=/opt/csw/bin/libtool + + # Prevent multiple expansion + +@@ -22740,7 +22743,7 @@ + fi + fi + +-LDFLAGS="-L$SNMP_LIBDIR $LDFLAGS" ++LDFLAGS="-L/opt/csw/lib -L/opt/csw/lib/mysql $LDFLAGS" + CFLAGS="-I$SNMP_INCDIR -I$SNMP_INCDIR/.. $CFLAGS" + + # Net/UCD-SNMP includes v3 support and insists on crypto unless compiled --without-openssl +@@ -22833,6 +22836,7 @@ + { $as_echo "$as_me:$LINENO: result: yes" >&5 + $as_echo "yes" >&6; } + SNMP_SSL=yes ++ LIBS="$LIBS -lcrypto" + + else + $as_echo "$as_me: failed program was:" >&5 +@@ -22851,7 +22855,7 @@ + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lnetsnmp $LIBS" ++LIBS="$LIBS -lnetsnmp -lssl" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -23155,6 +23159,7 @@ + # Solaris or Irix Check + { $as_echo "$as_me:$LINENO: checking for Solaris/Irix gethostbyname_r" >&5 + $as_echo_n "checking for Solaris/Irix gethostbyname_r... " >&6; } ++LIBS="$LIBS -lssl -lnsl" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -24764,4 +24769,3 @@ + { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 + $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + fi +- Added: csw/mgar/pkg/spine/trunk/files/cswusergroup =================================================================== --- csw/mgar/pkg/spine/trunk/files/cswusergroup (rev 0) +++ csw/mgar/pkg/spine/trunk/files/cswusergroup 2009-08-23 19:24:20 UTC (rev 6089) @@ -0,0 +1 @@ +cacti:cacti:Cacti User:/export/home/cacti:/bin/sh:m:r 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 Aug 23 23:26:20 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:26:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[6090] csw/mgar/pkg Message-ID: Revision: 6090 http://gar.svn.sourceforge.net/gar/?rev=6090&view=rev Author: skayser Date: 2009-08-23 21:26:19 +0000 (Sun, 23 Aug 2009) Log Message: ----------- doxygen: working copy Added Paths: ----------- csw/mgar/pkg/doxygen/ csw/mgar/pkg/doxygen/branches/ csw/mgar/pkg/doxygen/tags/ csw/mgar/pkg/doxygen/trunk/ csw/mgar/pkg/doxygen/trunk/Makefile csw/mgar/pkg/doxygen/trunk/checksums csw/mgar/pkg/doxygen/trunk/files/ Property changes on: csw/mgar/pkg/doxygen/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/doxygen/trunk/Makefile =================================================================== --- csw/mgar/pkg/doxygen/trunk/Makefile (rev 0) +++ csw/mgar/pkg/doxygen/trunk/Makefile 2009-08-23 21:26:19 UTC (rev 6090) @@ -0,0 +1,60 @@ +# Todo (feel free to take over): +# - gmake docs segfaults, check why +# (related to libiconv? Might change with libiconv 1.13+) +# - platform makefile doesn't honor our CCFLAGS +# work/build-isa-i386/doxygen-1.5.9/tmake/lib/solaris-cc/tmake.conf +# results in: CC -c -O2 -I.. +# +# Adding members to index pages... +# Generating style sheet... +# Generating index page... +# Generating page index... +# Segmentation Fault - core dumped +# gmake[1]: *** [all] Error 139 +# gmake[1]: Leaving directory `/home/skayser/mgar/pkg/doxygen/trunk/work/build-isa-i386/doxygen-1.5.9/doc' +# +# $ pstack work/build-isa-i386/doxygen-1.5.9/doc/core +# core 'work/build-isa-i386/doxygen-1.5.9/doc/core' of 20317: /home/skayser/mgar/pkg/doxygen/trunk/work/build-isa-i386/doxygen-1.5.9 +# df945898 iconv (ffffffff, 80478d8, 80478d0, 80478dc, 80478d4) + 38 +# 083d2e52 portable_iconv (ffffffff, 80478d8, 80478d0, 80478dc, 80478d4) + 1a +# 081c1ec2 __1cIHtmlHelpGrecode6MrknIQdDCString__1_ (804790c, 8da4210, 8047910) + 6a +# 081c1fe6 __1cIHtmlHelpPaddContentsItem6Mbpkc222_v_ (8da4210, 0, 8de85a8, 0, 8de85c8, 0) + b2 +# 08198b75 __1cJIndexListHforeach4CbCpkcC2C2C2_6MmJIndexIntf_MTATBTCTDTE_v34567_v_ (85fa380, 81d2af4, 0, 0, 8de85a8, 0, 8de85c8, 0) + 99 +# 081ccec6 __1cOwritePageIndex6FrnKOutputList__v_ (8d97f50) + 372 +# 081920c3 __1cOgenerateOutput6F_v_ () + a27 +# 08169d11 main (1, 8047ad8, 8047ae0) + 2d +# 08169c56 _start () + 7a +# + +GARNAME = doxygen +GARVERSION = 1.5.9 +CATEGORIES = utils + +DESCRIPTION = A documentation system for programming languages +define BLURB + Long description +endef + +MASTER_SITES = http://ftp.stack.nl/pub/users/dimitri/ +DISTFILES = $(GARNAME)-$(GARVERSION).src.tar.gz +SPKG_SOURCEURL = http://www.stack.nl/~dimitri/doxygen/ + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).src.tar.gz +UPSTREAM_MASTER_SITES = $(SPKG_SOURCEURL) + +CONFIGURE_ARGS = $(subst =, ,$(filter --prefix=% , $(DIRPATHS))) +CONFIGURE_ARGS += --docdir $(docdir) +CONFIGURE_ARGS += --platform solaris-cc + +TEST_SCRIPTS = + +include gar/category.mk + +post-extract-modulated: + perl -pi -e 'if (/^TMAKE_CXXFLAGS_RELEASE/) { \ + s|= .*|= $(filter-out -I/opt/csw/include, $(CXXFLAGS)) -norunpath|; }' \ + $(WORKSRC)/tmake/lib/solaris-cc/tmake.conf + perl -pi -e 'if (/^TMAKE_CFLAGS_DEBUG/) { s|= .*|= $(filter-out -I/opt/csw/include,$(CFLAGS))|; }' \ + $(WORKSRC)/tmake/lib/solaris-cc/tmake.conf + @$(MAKECOOKIE) Added: csw/mgar/pkg/doxygen/trunk/checksums =================================================================== --- csw/mgar/pkg/doxygen/trunk/checksums (rev 0) +++ csw/mgar/pkg/doxygen/trunk/checksums 2009-08-23 21:26:19 UTC (rev 6090) @@ -0,0 +1 @@ +33c5598fa6d24cbc55849eaf89652557 download/doxygen-1.5.9.src.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 Sun Aug 23 23:28:33 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:28:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[6091] csw/mgar/pkg Message-ID: Revision: 6091 http://gar.svn.sourceforge.net/gar/?rev=6091&view=rev Author: skayser Date: 2009-08-23 21:28:31 +0000 (Sun, 23 Aug 2009) Log Message: ----------- centerim: working copy Added Paths: ----------- csw/mgar/pkg/centerim/ csw/mgar/pkg/centerim/branches/ csw/mgar/pkg/centerim/tags/ csw/mgar/pkg/centerim/trunk/ csw/mgar/pkg/centerim/trunk/Makefile csw/mgar/pkg/centerim/trunk/checksums csw/mgar/pkg/centerim/trunk/files/ csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff Property changes on: csw/mgar/pkg/centerim/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: svn:externals + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Added: csw/mgar/pkg/centerim/trunk/Makefile =================================================================== --- csw/mgar/pkg/centerim/trunk/Makefile (rev 0) +++ csw/mgar/pkg/centerim/trunk/Makefile 2009-08-23 21:28:31 UTC (rev 6091) @@ -0,0 +1,35 @@ +GARNAME = centerim +GARVERSION = 4.22.7 +CATEGORIES = utils + +DESCRIPTION = Text mode menu- and window-driven IM interface +define BLURB + CenterIM is a fork of CenterICQ, a text mode menu- and window-driven IM + interface that supports the ICQ2000, Yahoo!, AIM, IRC, MSN, Gadu-Gadu and + Jabber protocols. +endef + +MASTER_SITES = http://www.centerim.org/download/releases/ +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 + +SPKG_SOURCEURL = http://www.centerim.org/ + +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-openssl=/opt/csw/ssl + +# Heaps of stuff to do so that this piece from GNU wonderland can +# be compiled +PATCHFILES = patch-suncc.diff + +EXTRA_INC = /opt/csw/include/ncurses + +include gar/category.mk + +distclean: + @-gmake -C $(WORKROOTDIR)/build-isa-i386/centerim-4.22.7 distclean + +mp: distclean + gdiff -ur centerim-4.22.7.orig \ + $(WORKROOTDIR)/build-isa-i386/centerim-4.22.7 Added: csw/mgar/pkg/centerim/trunk/checksums =================================================================== --- csw/mgar/pkg/centerim/trunk/checksums (rev 0) +++ csw/mgar/pkg/centerim/trunk/checksums 2009-08-23 21:28:31 UTC (rev 6091) @@ -0,0 +1,2 @@ +2db303baa9b7680c2cccb3314bfa7ae2 download/centerim-4.22.7.tar.bz2 +7d0d390cf202a2e9449ac9f3d159c351 download/patch-suncc.diff Added: csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff =================================================================== --- csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff (rev 0) +++ csw/mgar/pkg/centerim/trunk/files/patch-suncc.diff 2009-08-23 21:28:31 UTC (rev 6091) @@ -0,0 +1,478 @@ +diff -ur centerim-4.22.7.orig/firetalk/irc.c work/build-isa-i386/centerim-4.22.7/firetalk/irc.c +--- centerim-4.22.7.orig/firetalk/irc.c 2009-03-07 21:14:39.338938013 +0100 ++++ work/build-isa-i386/centerim-4.22.7/firetalk/irc.c 2009-03-08 00:07:40.855793699 +0100 +@@ -1623,47 +1623,47 @@ + } + + const firetalk_protocol_t firetalk_protocol_irc = { +- strprotocol: "IRC", +- default_server: "irc.n.ml.org", +- default_port: 6667, +- default_buffersize: 1024/2, +- periodic: irc_periodic, +- preselect: irc_preselect, +- postselect: irc_postselect, +- got_data: irc_got_data, +- got_data_connecting: irc_got_data_connecting, +- comparenicks: irc_compare_nicks, +- isprintable: irc_isprint, +- disconnect: irc_disconnect, +- signon: irc_signon, +- get_info: irc_get_info, +- set_info: irc_set_info, +- set_away: irc_set_away, +- set_nickname: irc_set_nickname, +- set_password: irc_set_password, +- im_add_buddy: irc_im_add_buddy, +- im_remove_buddy: irc_im_remove_buddy, +- im_add_deny: irc_im_add_deny, +- im_remove_deny: irc_im_remove_deny, +- im_upload_buddies: irc_im_upload_buddies, +- im_upload_denies: irc_im_upload_denies, +- im_send_message: irc_im_send_message, +- im_send_action: irc_im_send_action, +- im_evil: irc_im_evil, +- chat_join: irc_chat_join, +- chat_part: irc_chat_part, +- chat_invite: irc_chat_invite, +- chat_set_topic: irc_chat_set_topic, +- chat_op: irc_chat_op, +- chat_deop: irc_chat_deop, +- chat_kick: irc_chat_kick, +- chat_send_message: irc_chat_send_message, +- chat_send_action: irc_chat_send_action, +-// subcode_send_request: irc_subcode_send_request, +-// subcode_send_reply: irc_subcode_send_reply, +- subcode_encode: irc_ctcp_encode, +- set_privacy: irc_set_privacy, +- room_normalize: irc_normalize_room_name, +- create_handle: irc_create_handle, +- destroy_handle: irc_destroy_handle, ++ .strprotocol= "IRC", ++ .default_server= "irc.n.ml.org", ++ .default_port= 6667, ++ .default_buffersize= 1024/2, ++ .periodic= irc_periodic, ++ .preselect= irc_preselect, ++ .postselect= irc_postselect, ++ .got_data= irc_got_data, ++ .got_data_connecting= irc_got_data_connecting, ++ .comparenicks= irc_compare_nicks, ++ .isprintable= irc_isprint, ++ .disconnect= irc_disconnect, ++ .signon= irc_signon, ++ .get_info= irc_get_info, ++ .set_info= irc_set_info, ++ .set_away= irc_set_away, ++ .set_nickname= irc_set_nickname, ++ .set_password= irc_set_password, ++ .im_add_buddy= irc_im_add_buddy, ++ .im_remove_buddy= irc_im_remove_buddy, ++ .im_add_deny= irc_im_add_deny, ++ .im_remove_deny= irc_im_remove_deny, ++ .im_upload_buddies= irc_im_upload_buddies, ++ .im_upload_denies= irc_im_upload_denies, ++ .im_send_message= irc_im_send_message, ++ .im_send_action= irc_im_send_action, ++ .im_evil= irc_im_evil, ++ .chat_join= irc_chat_join, ++ .chat_part= irc_chat_part, ++ .chat_invite= irc_chat_invite, ++ .chat_set_topic= irc_chat_set_topic, ++ .chat_op= irc_chat_op, ++ .chat_deop= irc_chat_deop, ++ .chat_kick= irc_chat_kick, ++ .chat_send_message= irc_chat_send_message, ++ .chat_send_action= irc_chat_send_action, ++// .subcode_send_request= irc_subcode_send_request, ++// .subcode_send_reply= irc_subcode_send_reply, ++ .subcode_encode= irc_ctcp_encode, ++ .set_privacy= irc_set_privacy, ++ .room_normalize= irc_normalize_room_name, ++ .create_handle= irc_create_handle, ++ .destroy_handle= irc_destroy_handle, + }; +diff -ur centerim-4.22.7.orig/firetalk/toc.c work/build-isa-i386/centerim-4.22.7/firetalk/toc.c +--- centerim-4.22.7.orig/firetalk/toc.c 2009-03-07 21:14:39.473437850 +0100 ++++ work/build-isa-i386/centerim-4.22.7/firetalk/toc.c 2009-03-08 00:09:21.056805524 +0100 +@@ -2580,53 +2580,53 @@ + */ + + const firetalk_protocol_t firetalk_protocol_toc2 = { +- strprotocol: "TOC2", +- default_server: "toc.n.ml.org", +- default_port: 9898, +- default_buffersize: 1024*8, +- periodic: toc_periodic, +- preselect: toc_preselect, +- postselect: toc_postselect, +- got_data: toc_got_data, +- got_data_connecting: toc_got_data_connecting, +- comparenicks: toc_compare_nicks, +- isprintable: toc_isprint, +- disconnect: toc_disconnect, +- signon: toc_signon, +- get_info: toc_get_info, +- set_info: toc_set_info, +- set_away: toc_set_away, +- set_nickname: toc_set_nickname, +- set_password: toc_set_password, +- set_privacy: toc_set_privacy, +- im_add_buddy: toc_im_add_buddy, +- im_remove_buddy: toc_im_remove_buddy, +- im_add_deny: toc_im_add_deny, +- im_remove_deny: toc_im_remove_deny, +- im_upload_buddies: toc_im_upload_buddies, +- im_upload_denies: toc_im_upload_denies, +- im_send_message: toc_im_send_message, +- im_send_action: toc_im_send_action, +- im_evil: toc_im_evil, +- chat_join: toc_chat_join, +- chat_part: toc_chat_part, +- chat_invite: toc_chat_invite, +- chat_set_topic: toc_chat_set_topic, +- chat_op: toc_chat_op, +- chat_deop: toc_chat_deop, +- chat_kick: toc_chat_kick, +- chat_send_message: toc_chat_send_message, +- chat_send_action: toc_chat_send_action, +-// subcode_send_request: toc_subcode_send_request, +-// subcode_send_reply: toc_subcode_send_reply, +- subcode_encode: toc_ctcp_encode, +- room_normalize: aim_normalize_room_name, +- create_handle: toc_create_handle, +- destroy_handle: toc_destroy_handle, ++ .strprotocol= "TOC2", ++ .default_server= "toc.n.ml.org", ++ .default_port= 9898, ++ .default_buffersize= 1024*8, ++ .periodic= toc_periodic, ++ .preselect= toc_preselect, ++ .postselect= toc_postselect, ++ .got_data= toc_got_data, ++ .got_data_connecting= toc_got_data_connecting, ++ .comparenicks= toc_compare_nicks, ++ .isprintable= toc_isprint, ++ .disconnect= toc_disconnect, ++ .signon= toc_signon, ++ .get_info= toc_get_info, ++ .set_info= toc_set_info, ++ .set_away= toc_set_away, ++ .set_nickname= toc_set_nickname, ++ .set_password= toc_set_password, ++ .set_privacy= toc_set_privacy, ++ .im_add_buddy= toc_im_add_buddy, ++ .im_remove_buddy= toc_im_remove_buddy, ++ .im_add_deny= toc_im_add_deny, ++ .im_remove_deny= toc_im_remove_deny, ++ .im_upload_buddies= toc_im_upload_buddies, ++ .im_upload_denies= toc_im_upload_denies, ++ .im_send_message= toc_im_send_message, ++ .im_send_action= toc_im_send_action, ++ .im_evil= toc_im_evil, ++ .chat_join= toc_chat_join, ++ .chat_part= toc_chat_part, ++ .chat_invite= toc_chat_invite, ++ .chat_set_topic= toc_chat_set_topic, ++ .chat_op= toc_chat_op, ++ .chat_deop= toc_chat_deop, ++ .chat_kick= toc_chat_kick, ++ .chat_send_message= toc_chat_send_message, ++ .chat_send_action= toc_chat_send_action, ++// .subcode_send_request= toc_subcode_send_request, ++// .subcode_send_reply= toc_subcode_send_reply, ++ .subcode_encode= toc_ctcp_encode, ++ .room_normalize= aim_normalize_room_name, ++ .create_handle= toc_create_handle, ++ .destroy_handle= toc_destroy_handle, + #ifdef ENABLE_NEWGROUPS +- im_remove_group: toc_im_remove_group, ++ .im_remove_group= toc_im_remove_group, + #endif + #ifdef ENABLE_FILE_OFFER +- file_offer: toc_file_offer, ++ .file_offer= toc_file_offer, + #endif + }; +diff -ur centerim-4.22.7.orig/kkconsui/include/conf.h work/build-isa-i386/centerim-4.22.7/kkconsui/include/conf.h +--- centerim-4.22.7.orig/kkconsui/include/conf.h 2009-03-07 21:14:37.890410559 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkconsui/include/conf.h 2009-03-07 22:24:41.739170169 +0100 +@@ -9,6 +9,10 @@ + #define __KTOOL_USE_NAMESPACES + #endif + ++#if defined(__sun) && !defined(__GNUC__) ++#define __KTOOL_USE_NAMESPACES ++#endif ++ + #if defined(__COMO__) + #define __KTOOL_USE_NAMESPACES + #endif +diff -ur centerim-4.22.7.orig/kkconsui/include/conscommon.h work/build-isa-i386/centerim-4.22.7/kkconsui/include/conscommon.h +--- centerim-4.22.7.orig/kkconsui/include/conscommon.h 2009-03-07 21:14:38.194262682 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkconsui/include/conscommon.h 2009-03-07 23:02:06.557916079 +0100 +@@ -23,7 +23,7 @@ + #include + #endif + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + #include + #include + #endif +diff -ur centerim-4.22.7.orig/kkconsui/src/Makefile.in work/build-isa-i386/centerim-4.22.7/kkconsui/src/Makefile.in +--- centerim-4.22.7.orig/kkconsui/src/Makefile.in 2009-03-07 21:14:37.608529366 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkconsui/src/Makefile.in 2009-03-07 23:04:44.188371770 +0100 +@@ -236,7 +236,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + AM_CPPFLAGS = -I$(top_srcdir)/kkconsui/include -I$(top_srcdir)/kkstrtext + noinst_LIBRARIES = libsrc.a + libsrc_a_SOURCES = treeview.cc colorschemer.cc textinputline.cc fileselector.cc textwindow.cc texteditor.cc dialogbox.cc screenarea.cc textbrowser.cc abstractui.cc horizontalbar.cc linkedlist.cc cmenus.cc conscommon.cc +diff -ur centerim-4.22.7.orig/kkstrtext/Makefile.in work/build-isa-i386/centerim-4.22.7/kkstrtext/Makefile.in +--- centerim-4.22.7.orig/kkstrtext/Makefile.in 2009-03-07 21:14:39.712922424 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkstrtext/Makefile.in 2009-03-07 22:24:41.784541354 +0100 +@@ -234,7 +234,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + noinst_LIBRARIES = libkkstrtext.a + libkkstrtext_a_SOURCES = kkstrtext.cc + noinst_HEADERS = kkstrtext.h conf.h +diff -ur centerim-4.22.7.orig/kkstrtext/conf.h work/build-isa-i386/centerim-4.22.7/kkstrtext/conf.h +--- centerim-4.22.7.orig/kkstrtext/conf.h 2009-03-07 21:14:39.655787090 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kkstrtext/conf.h 2009-03-07 22:24:41.839000985 +0100 +@@ -9,6 +9,10 @@ + #define __KTOOL_USE_NAMESPACES + #endif + ++#if defined(__sun) && !defined(__GNUC__) ++#define __KTOOL_USE_NAMESPACES ++#endif ++ + #if defined(__COMO__) + #define __KTOOL_USE_NAMESPACES + #endif +diff -ur centerim-4.22.7.orig/kksystr/include/conf.h work/build-isa-i386/centerim-4.22.7/kksystr/include/conf.h +--- centerim-4.22.7.orig/kksystr/include/conf.h 2009-03-07 21:14:41.770865274 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/include/conf.h 2009-03-07 22:24:41.883217677 +0100 +@@ -5,6 +5,10 @@ + #define __KTOOL_USE_NAMESPACES + #endif + ++#if defined(__sun) && !defined(__GNUC__) ++#define __KTOOL_USE_NAMESPACES ++#endif ++ + #if defined(__COMO__) + #define __KTOOL_USE_NAMESPACES + #endif +diff -ur centerim-4.22.7.orig/kksystr/include/kkiproc.h work/build-isa-i386/centerim-4.22.7/kksystr/include/kkiproc.h +--- centerim-4.22.7.orig/kksystr/include/kkiproc.h 2009-03-07 21:14:41.674558310 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/include/kkiproc.h 2009-03-07 23:01:19.532990896 +0100 +@@ -29,7 +29,7 @@ + + __KTOOL_END_C + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + + void setenv(const string &name, const string &value, int replace); + +diff -ur centerim-4.22.7.orig/kksystr/src/Makefile.in work/build-isa-i386/centerim-4.22.7/kksystr/src/Makefile.in +--- centerim-4.22.7.orig/kksystr/src/Makefile.in 2009-03-07 21:14:41.543601436 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/src/Makefile.in 2009-03-07 22:24:41.929008103 +0100 +@@ -231,7 +231,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + AM_CPPFLAGS = -I$(top_srcdir)/kksystr/include -I$(top_srcdir)//kkstrtext + noinst_LIBRARIES = libsrc.a + libsrc_a_SOURCES = kkfsys.cc kkiproc.cc +diff -ur centerim-4.22.7.orig/kksystr/src/kkiproc.cc work/build-isa-i386/centerim-4.22.7/kksystr/src/kkiproc.cc +--- centerim-4.22.7.orig/kksystr/src/kkiproc.cc 2009-03-07 21:14:41.517730785 +0100 ++++ work/build-isa-i386/centerim-4.22.7/kksystr/src/kkiproc.cc 2009-03-07 23:01:43.176282019 +0100 +@@ -28,7 +28,7 @@ + #include + #include + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + #include + #include + #endif +@@ -169,7 +169,7 @@ + return 0; + } + +-#ifdef __sun__ ++#if defined(__sun__) || defined(__sun) + + void setenv(const string &name, const string &value, int replace) { + if(getenv(name.c_str()) && replace) { +diff -ur centerim-4.22.7.orig/libicq2000/src/RateLimits.cpp work/build-isa-i386/centerim-4.22.7/libicq2000/src/RateLimits.cpp +--- centerim-4.22.7.orig/libicq2000/src/RateLimits.cpp 2009-03-07 21:14:35.261260355 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libicq2000/src/RateLimits.cpp 2009-03-07 23:16:48.031177184 +0100 +@@ -36,7 +36,7 @@ + unsigned short f, s; + b >> f; + b >> s; +- members.insert( std::pair(f, s) ); ++ members.insert( std::pair(f, s) ); + } + } + +diff -ur centerim-4.22.7.orig/libicq2000/src/buffer.cpp work/build-isa-i386/centerim-4.22.7/libicq2000/src/buffer.cpp +--- centerim-4.22.7.orig/libicq2000/src/buffer.cpp 2009-03-07 21:14:35.603892985 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libicq2000/src/buffer.cpp 2009-03-07 23:13:10.556883841 +0100 +@@ -27,6 +27,8 @@ + using std::string; + using std::endl; + using std::ostream; ++using std::find; ++using std::copy; + + namespace ICQ2000 + { +diff -ur centerim-4.22.7.orig/libicq2000/src/socket.cpp work/build-isa-i386/centerim-4.22.7/libicq2000/src/socket.cpp +--- centerim-4.22.7.orig/libicq2000/src/socket.cpp 2009-03-07 21:14:35.370108444 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libicq2000/src/socket.cpp 2009-03-07 23:09:57.940655718 +0100 +@@ -40,7 +40,7 @@ + using std::string; + using std::ostringstream; + using std::istringstream; +-//using std::copy; ++using std::copy; + + namespace ICQ2000 + { +diff -ur centerim-4.22.7.orig/libmsn/msn/message.cpp work/build-isa-i386/centerim-4.22.7/libmsn/msn/message.cpp +--- centerim-4.22.7.orig/libmsn/msn/message.cpp 2009-03-07 21:14:31.329003051 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libmsn/msn/message.cpp 2009-03-07 23:28:37.815256260 +0100 +@@ -325,7 +325,7 @@ + { + if (*i == '\r') + { +- return retval.substr(0, std::distance(retval.begin(), i)); ++ return retval.substr(0, i - retval.begin()); + } + } + return ""; +diff -ur centerim-4.22.7.orig/libmsn/msn/notificationserver.cpp work/build-isa-i386/centerim-4.22.7/libmsn/msn/notificationserver.cpp +--- centerim-4.22.7.orig/libmsn/msn/notificationserver.cpp 2009-03-07 21:14:31.445922840 +0100 ++++ work/build-isa-i386/centerim-4.22.7/libmsn/msn/notificationserver.cpp 2009-03-07 23:38:29.701797647 +0100 +@@ -483,11 +483,13 @@ + std::list::iterator flist_i; + std::list::iterator alist_i; + std::list::iterator blist_i; ++ std::list::size_type nr1, nr2; + + for (flist_i = flist.begin(); flist_i != flist.end(); flist_i++) + { +- if (std::count_if(alist.begin(), alist.end(), _sameUserName(*flist_i)) == 0 && +- std::count_if(blist.begin(), blist.end(), _sameUserName(*flist_i)) == 0) ++ std::count_if(alist.begin(), alist.end(), _sameUserName(*flist_i), nr1); ++ std::count_if(blist.begin(), blist.end(), _sameUserName(*flist_i), nr2); ++ if ((nr1 == 0) && (nr2 == 0)) + { + this->myNotificationServer()->externalCallbacks.gotNewReverseListEntry(this, (*flist_i).userName, (*flist_i).friendlyName); + } +diff -ur centerim-4.22.7.orig/src/Makefile.in work/build-isa-i386/centerim-4.22.7/src/Makefile.in +--- centerim-4.22.7.orig/src/Makefile.in 2009-03-07 21:14:30.134047329 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/Makefile.in 2009-03-07 22:24:41.984452081 +0100 +@@ -284,7 +284,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + centerim_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/hooks \ + -I$(top_srcdir)/connwrap -I$(top_srcdir)/firetalk \ + -I$(top_srcdir)/firetalk/../connwrap \ +diff -ur centerim-4.22.7.orig/src/accountmanager.cc work/build-isa-i386/centerim-4.22.7/src/accountmanager.cc +--- centerim-4.22.7.orig/src/accountmanager.cc 2009-03-07 21:14:29.505826571 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/accountmanager.cc 2009-03-08 00:57:59.576865788 +0100 +@@ -69,7 +69,7 @@ + getcolor(cp_dialog_selected), _("Change"), _("Done"), 0)); + + db.addautokeys(); +- db.idle = &face.dialogidle; ++ db.idle = face.dialogidle; + + treeview &t = *db.gettree(); + +Only in work/build-isa-i386/centerim-4.22.7/src: git-version.h +diff -ur centerim-4.22.7.orig/src/hooks/Makefile.in work/build-isa-i386/centerim-4.22.7/src/hooks/Makefile.in +--- centerim-4.22.7.orig/src/hooks/Makefile.in 2009-03-07 21:14:28.756066332 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/hooks/Makefile.in 2009-03-07 22:24:42.042759579 +0100 +@@ -236,7 +236,6 @@ + top_build_prefix = @top_build_prefix@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-AM_CXXFLAGS = -Wno-write-strings + libhooks_a_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/hooks -I$(top_srcdir)/connwrap -I$(top_srcdir)/firetalk -I$(top_srcdir)/firetalk/../connwrap -I$(top_srcdir)/firetalk/../connwrap-0.1 -I$(top_srcdir)/kkconsui -I$(top_srcdir)/kkconsui/include -I$(top_srcdir)/kkconsui/../kkstrtext -I$(top_srcdir)/kkconsui/../kkstrtext-0.1 -I$(top_srcdir)/kkstrtext -I$(top_srcdir)/kksystr -I$(top_srcdir)/kksystr/include -I$(top_srcdir)/kksystr/../kkstrtext -I$(top_srcdir)/kksystr/../kkstrtext-0.1 -I$(top_srcdir)/libgadu -I$(top_srcdir)/libicq2000 -I$(top_srcdir)/libicq2000/libicq2000 -I$(top_srcdir)/libjabber -I$(top_srcdir)/libjabber/../connwrap -I$(top_srcdir)/libjabber/../connwrap-0.1 -I$(top_srcdir)/libmsn -I$(top_srcdir)/libmsn/../connwrap -I$(top_srcdir)/libmsn/../connwrap-0.1 -I$(top_srcdir)/libyahoo2 -I$(top_srcdir)/libyahoo2/../connwrap -I$(top_srcdir)/libyahoo2/../connwrap-0.1 -I$(top_srcdir)/intl + noinst_LIBRARIES = libhooks.a + libhooks_a_SOURCES = rsshook.cc HTTPClient.cc yahoohook.cc jabberhook.cc aimhook.cc icqhook.cc gaduhook.cc irchook.cc ljhook.cc msnhook.cc abstracthook.cc +diff -ur centerim-4.22.7.orig/src/hooks/yahoohook.cc work/build-isa-i386/centerim-4.22.7/src/hooks/yahoohook.cc +--- centerim-4.22.7.orig/src/hooks/yahoohook.cc 2009-03-07 21:14:29.314747497 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/hooks/yahoohook.cc 2009-03-08 00:43:02.994994953 +0100 +@@ -912,7 +912,7 @@ + em.store(imnotification(cont, text)); + em.store(imnotification(cont, _("Auto-joined the conference"))); + +- yhook.tobedone.push_back(make_pair(tbdConfLogon, room)); ++ yhook.tobedone.push_back(make_pair(tbdConfLogon, std::string(room))); + } + + void yahoohook::conf_userdecline(int id, char *who, char *room, char *msg) { +diff -ur centerim-4.22.7.orig/src/icqconf.cc work/build-isa-i386/centerim-4.22.7/src/icqconf.cc +--- centerim-4.22.7.orig/src/icqconf.cc 2009-03-07 21:14:28.571482609 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/icqconf.cc 2009-03-08 01:11:41.611351355 +0100 +@@ -27,7 +27,7 @@ + #include + #include + +-#if defined(__sun__) || defined(__NetBSD__) || defined(__sgi__) ++#if defined(__sun__) || defined(__sun) || defined(__NetBSD__) || defined(__sgi__) + #include + #endif + +@@ -1812,7 +1812,10 @@ + void icqconf::checkdiskspace() { + fenoughdiskspace = true; + +-#if !(defined(__sun__) || defined(__NetBSD__) || defined(__sgi__)) ++#if defined(__sun__) || defined (__sun) ++ struct statvfs st; ++ if(!statvfs(conf->getdirname().c_str(), &st)) { ++#elif defined(__NetBSD__) || defined(__sgi__)) + struct statfs st; + if(!statfs(conf->getdirname().c_str(), &st)) { + #else +diff -ur centerim-4.22.7.orig/src/icqface.cc work/build-isa-i386/centerim-4.22.7/src/icqface.cc +--- centerim-4.22.7.orig/src/icqface.cc 2009-03-07 21:14:29.892212167 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/icqface.cc 2009-03-08 01:20:29.781866266 +0100 +@@ -2597,7 +2597,7 @@ + if(cc) imc->nickname = cc->getnick(); + } + +- clst.push_back(make_pair(imc->uin, imc->nickname)); ++ clst.push_back(make_pair((unsigned) imc->uin, imc->nickname)); + } + + muins = smuins; +diff -ur centerim-4.22.7.orig/src/imevents.cc work/build-isa-i386/centerim-4.22.7/src/imevents.cc +--- centerim-4.22.7.orig/src/imevents.cc 2009-03-07 21:14:29.822885424 +0100 ++++ work/build-isa-i386/centerim-4.22.7/src/imevents.cc 2009-03-08 01:20:11.920764863 +0100 +@@ -574,7 +574,7 @@ + buf.erase(pos, 1); + + if((pos = buf.find("\t")) != -1) { +- contacts.push_back(make_pair(atoi(buf.substr(0, pos).c_str()), buf.substr(pos+1))); ++ contacts.push_back(make_pair((unsigned) atoi(buf.substr(0, pos).c_str()), buf.substr(pos+1))); + } + } + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sun Aug 23 23:50:46 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:50:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6092] csw/mgar/pkg Message-ID: Revision: 6092 http://gar.svn.sourceforge.net/gar/?rev=6092&view=rev Author: skayser Date: 2009-08-23 21:50:45 +0000 (Sun, 23 Aug 2009) Log Message: ----------- Adjust newpkg-% target to prefill GARNAME Modified Paths: -------------- csw/mgar/pkg/Makefile csw/mgar/pkg/x11/Makefile csw/mgar/pkg/xfce/Makefile Modified: csw/mgar/pkg/Makefile =================================================================== --- csw/mgar/pkg/Makefile 2009-08-23 21:28:31 UTC (rev 6091) +++ csw/mgar/pkg/Makefile 2009-08-23 21:50:45 UTC (rev 6092) @@ -57,7 +57,7 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = $*"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = category"; \ echo ""; \ Modified: csw/mgar/pkg/x11/Makefile =================================================================== --- csw/mgar/pkg/x11/Makefile 2009-08-23 21:28:31 UTC (rev 6091) +++ csw/mgar/pkg/x11/Makefile 2009-08-23 21:50:45 UTC (rev 6092) @@ -28,7 +28,7 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = $*"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = category"; \ echo ""; \ Modified: csw/mgar/pkg/xfce/Makefile =================================================================== --- csw/mgar/pkg/xfce/Makefile 2009-08-23 21:28:31 UTC (rev 6091) +++ csw/mgar/pkg/xfce/Makefile 2009-08-23 21:50:45 UTC (rev 6092) @@ -28,7 +28,7 @@ newpkg-%: @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = package"; \ + @(echo "GARNAME = $*"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = category"; \ echo ""; \ 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 Aug 23 23:57:46 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 21:57:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6093] csw/mgar/pkg/cpan/Makefile Message-ID: Revision: 6093 http://gar.svn.sourceforge.net/gar/?rev=6093&view=rev Author: skayser Date: 2009-08-23 21:57:46 +0000 (Sun, 23 Aug 2009) Log Message: ----------- cpan/Makefile: Adjust newpkg-% target to prefill GARNAME, PACKAGES, CATALOGNAME Modified Paths: -------------- csw/mgar/pkg/cpan/Makefile Modified: csw/mgar/pkg/cpan/Makefile =================================================================== --- csw/mgar/pkg/cpan/Makefile 2009-08-23 21:50:45 UTC (rev 6092) +++ csw/mgar/pkg/cpan/Makefile 2009-08-23 21:57:46 UTC (rev 6093) @@ -26,9 +26,17 @@ $(MAKE) -C $$i $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG); \ done +lcase = $(shell echo $(1) | tr '[A-Z]' '[a-z]' ) + +# You can either use "gmake newpkg-Perl-Module" or "gmake newpkg-Perl::Module". +# Ideally this would also figure out the AUTHOR by querying CPAN. Alternatively +# we might think about dropping the AUTHOR field and determine that on the fly +# during the build. Ideas? +newpkg-%: catalogname = $(shell echo $(call lcase,$*) | tr -d ':-' ) +newpkg-%: dir = $(subst ::,-,$*) newpkg-%: - @svn mkdir $* $*/tags $*/branches $*/trunk $*/trunk/files - @(echo "GARNAME = Type-Package"; \ + @svn mkdir $(dir) $(dir)/tags $(dir)/branches $(dir)/trunk $(dir)/trunk/files + @(echo "GARNAME = $(dir)"; \ echo "GARVERSION = 1.0"; \ echo "CATEGORIES = cpan"; \ echo "AUTHOR = MYSELF"; \ @@ -38,19 +46,19 @@ echo " Long description"; \ echo "endef"; \ echo ""; \ - echo "PACKAGES = CSWpmmymodule"; \ - echo "CATALOGNAME = pm_mymodule"; \ + echo "PACKAGES = CSWpm$(catalogname)"; \ + echo "CATALOGNAME = pm_$(catalogname)"; \ + echo ""; \ echo "include gar/category.mk"; \ - ) > $*/trunk/Makefile - @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 + ) > $(dir)/trunk/Makefile + @touch $(dir)/trunk/checksums + @svn add $(dir)/trunk/Makefile $(dir)/trunk/checksums + @echo "cookies\ndownload\nwork\n" | svn propset svn:ignore -F /dev/fd/0 $(dir)/trunk + @echo "gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2" | svn propset svn:externals -F /dev/fd/0 $(dir)/trunk @if [ -d ../../gar/v2 ]; then \ - ln -s ../../../../gar/v2 $*/trunk/gar; \ + ln -s ../../../../gar/v2 $(dir)/trunk/gar; \ else \ - svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $*/trunk/gar; \ + svn co https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 $(dir)/trunk/gar; \ fi @echo - @echo "Your package is set up for editing at $*/trunk" - + @echo "Your package is set up for editing at $(dir)/trunk" 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 Aug 24 00:29:50 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 22:29:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[6094] csw/mgar/gar Message-ID: Revision: 6094 http://gar.svn.sourceforge.net/gar/?rev=6094&view=rev Author: skayser Date: 2009-08-23 22:29:50 +0000 (Sun, 23 Aug 2009) Log Message: ----------- gar/v2-skayser: branched gar/v2 to work on category Makefiles Modified Paths: -------------- csw/mgar/gar/v2-skayser/gar.pkg.mk Added Paths: ----------- csw/mgar/gar/v2-skayser/ csw/mgar/gar/v2-skayser/categories/python/ csw/mgar/gar/v2-skayser/categories/python/category.mk Added: csw/mgar/gar/v2-skayser/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2-skayser/categories/python/category.mk (rev 0) +++ csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-23 22:29:50 UTC (rev 6094) @@ -0,0 +1,20 @@ +# Add a dependency to CSWpython +_EXTRA_GAR_PKGS += CSWpython + +# Put PYCOMPILE in here for now and let gar.pkg.mk handle the usual +# cswclassutils stuff. +PYCOMPILE = .*\.py + +# Could we have "setup.py install" just _not_ compile .py{c,o} files +# in the first place? +_MERGE_EXCLUDE_CATEGORY = .*\.pyo .*\.pyc .*\.egg-info.* + +# Haven't seen a python module with a configure phase so far +CONFIGURE_SCRIPTS ?= + +# gar.lib.mk contains implicit targets for setup.py +BUILD_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) + +include gar/gar.mk Modified: csw/mgar/gar/v2-skayser/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-23 13:46:56 UTC (rev 6086) +++ csw/mgar/gar/v2-skayser/gar.pkg.mk 2009-08-23 22:29:50 UTC (rev 6094) @@ -156,13 +156,15 @@ SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PRESERVECONF),$(if $(filter cswpreserveconf,$(SPKG_CLASSES)),,cswpreserveconf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(USERGROUP),$(if $(filter cswusergroup,$(SPKG_CLASSES)),,cswusergroup)) +SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PYCOMPILE),$(if $(filter cswpycompile,$(SPKG_CLASSES)),,cswpycompile)) # - set class for all config files -ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF),) +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP)$(PYCOMPILE),) _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,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(PYCOMPILE),$$F[1] = "cswpycompile" 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 Mon Aug 24 00:30:31 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 22:30:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6095] csw/mgar/pkg Message-ID: Revision: 6095 http://gar.svn.sourceforge.net/gar/?rev=6095&view=rev Author: skayser Date: 2009-08-23 22:30:31 +0000 (Sun, 23 Aug 2009) Log Message: ----------- ZSI: initial commit Added Paths: ----------- csw/mgar/pkg/ZSI/ csw/mgar/pkg/ZSI/branches/ csw/mgar/pkg/ZSI/tags/ csw/mgar/pkg/ZSI/trunk/ csw/mgar/pkg/ZSI/trunk/Makefile csw/mgar/pkg/ZSI/trunk/checksums csw/mgar/pkg/ZSI/trunk/files/ Property changes on: csw/mgar/pkg/ZSI/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/ZSI/trunk/Makefile =================================================================== --- csw/mgar/pkg/ZSI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/ZSI/trunk/Makefile 2009-08-23 22:30:31 UTC (rev 6095) @@ -0,0 +1,31 @@ +# BEWARE: +# For now this build recipe relies on gar/v2-skayser for the python category +# +GARNAME = ZSI +GARVERSION = 2.0 +CATEGORIES = python + +DESCRIPTION = Web services for Python programmers, both client and servers. +define BLURB + ZSI, the Zolera SOAP Infrastructure, is a Python package that provides + an implementation of SOAP messaging, as described in The SOAP 1.1 + Specification. In particular, ZSI parses and generates SOAP messages, + and converts between native Python datatypes and SOAP syntax. It can + also be used to build applications using SOAP Messages with Attachments. + ZSI is ``transport neutral'', and provides only a simple I/O and + dispatch framework; a more complete solution is the responsibility of + the application using ZSI. As usage patterns emerge, and common + application frameworks are more understood, this may change. +endef + +MASTER_SITES = $(SF_MIRRORS) +SF_PROJ = pywebsvcs/$(DISTNAME) +DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz + +SPKG_SOURCEURL = http://pywebsvcs.sf.net/ +PACKAGES = CSWpyzsi +CATALOGNAME = py_zsi + +REQUIRED_PKGS = CSWpyxml + +include gar/category.mk Added: csw/mgar/pkg/ZSI/trunk/checksums =================================================================== --- csw/mgar/pkg/ZSI/trunk/checksums (rev 0) +++ csw/mgar/pkg/ZSI/trunk/checksums 2009-08-23 22:30:31 UTC (rev 6095) @@ -0,0 +1 @@ +bb706337cafe9e2201b06b1bce71ca0f download/ZSI-2.0.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 Mon Aug 24 00:34:32 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sun, 23 Aug 2009 22:34:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6096] csw/mgar/pkg/ZSI/trunk/ Message-ID: Revision: 6096 http://gar.svn.sourceforge.net/gar/?rev=6096&view=rev Author: skayser Date: 2009-08-23 22:34:32 +0000 (Sun, 23 Aug 2009) Log Message: ----------- ZSI: point gar/ to the v2-skayser branch Property Changed: ---------------- csw/mgar/pkg/ZSI/trunk/ Property changes on: csw/mgar/pkg/ZSI/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2-skayser 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 Aug 24 02:17:06 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Mon, 24 Aug 2009 00:17:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[6097] csw/mgar/pkg/mtr/trunk/Makefile Message-ID: Revision: 6097 http://gar.svn.sourceforge.net/gar/?rev=6097&view=rev Author: skayser Date: 2009-08-24 00:17:06 +0000 (Mon, 24 Aug 2009) Log Message: ----------- mtr: added modulations for non-GUI/GUI, packaging needs further work (see TODO) Modified Paths: -------------- csw/mgar/pkg/mtr/trunk/Makefile Modified: csw/mgar/pkg/mtr/trunk/Makefile =================================================================== --- csw/mgar/pkg/mtr/trunk/Makefile 2009-08-23 22:34:32 UTC (rev 6096) +++ csw/mgar/pkg/mtr/trunk/Makefile 2009-08-24 00:17:06 UTC (rev 6097) @@ -1,12 +1,7 @@ -# Todo +# TODO # ---- -# * Build-machines pkg-config for GTK+-2.0 stuff is broken right now, -# wait for it to become usable again to compile the regular CSWmtr pkg -# ... -# checking for GTK+ - version >= 2.4.0... sh: gnome-config: not found -# see: http://lists.opencsw.org/pipermail/maintainers/2009-June/002893.html -# http://lists.freebsd.org/pipermail/freebsd-gnome/2003-April/000453.html -# +# * Find a way to somehow package out of the install dirs, we don't need +# merging for the two incompatible modulations/packages. # * Revisit curses autoconf detection. Maybe have a chat with upstream # as the README says that there are known, yet unsolved Solaris autoconf # recipe problems @@ -48,21 +43,28 @@ $$$$3 ~ /sbin\/mtr$$$$/ { $$$$4 = "4755" } \ { print }' -# Call with gmake TINY=1 to build and packaage the non-X11 version ... -ifeq ($(TINY), 1) +# We would like to have two packages: one with GUI support and one without +# GUI support. +# +EXTRA_MODULATORS = GUI +MODULATIONS_GUI = disable enable + +ifeq ($(GUI), disable) CONFIGURE_ARGS += --without-gtk PACKAGES = CSWmtrtiny CATALOGNAME = mtr_tiny INCOMPATIBLE_PKGS = CSWmtr endif -# ... default is with X11 -ifneq ($(TINY), 1) +ifeq ($(GUI), enable) CONFIGURE_ARGS += --disable-gtktest REQUIRED_PKGS += CSWgtk2 CSWlibatk CSWpango CSWlibcairo REQUIRED_PKGS += CSWggettextrt CSWglib2 INCOMPATIBLE_PKGS = CSWmtrtiny +EXTRA_PKG_CONFIG_PATH = /opt/csw/X11/lib/pkgconfig endif +# +# /end modulations include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 12:28:28 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 10:28:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6098] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6098 http://gar.svn.sourceforge.net/gar/?rev=6098&view=rev Author: wahwah Date: 2009-08-24 10:28:28 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: Making common and devel ARCHALL. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 00:17:06 UTC (rev 6097) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 10:28:28 UTC (rev 6098) @@ -20,6 +20,8 @@ PACKAGES += CSWwxwidgetsdevel PACKAGES += CSWwxwidgetsgtk2 PACKAGES += CSWwxwidgetsrt +ARCHALL_CSWwxwidgetscommon = 1 +ARCHALL_CSWwxwidgetsdevel = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig REQUIRED_PKGS += CSWftype2 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 Aug 24 13:56:48 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 24 Aug 2009 11:56:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[6099] csw/mgar/pkg/bind/branches/stable-9.4.3p3 Message-ID: Revision: 6099 http://gar.svn.sourceforge.net/gar/?rev=6099&view=rev Author: bonivart Date: 2009-08-24 11:56:47 +0000 (Mon, 24 Aug 2009) Log Message: ----------- bind: update stable to 9.4.3-P3 Modified Paths: -------------- csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums Property Changed: ---------------- csw/mgar/pkg/bind/branches/stable-9.4.3p3/ Property changes on: csw/mgar/pkg/bind/branches/stable-9.4.3p3 ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v1 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile =================================================================== --- csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile 2009-08-24 10:28:28 UTC (rev 6098) +++ csw/mgar/pkg/bind/branches/stable-9.4.3p3/Makefile 2009-08-24 11:56:47 UTC (rev 6099) @@ -1,6 +1,6 @@ GARNAME = bind -GARVERSION = 9.4.2 -RELEASE = P2 +GARVERSION = 9.4.3 +RELEASE = P3 DISTVERSION = $(GARVERSION)-$(RELEASE) DISTNAME = $(GARNAME)-$(DISTVERSION) WORKSRC = $(WORKDIR)/$(DISTNAME) @@ -19,6 +19,9 @@ DISTFILES = $(GARNAME)-$(GARVERSION)-$(RELEASE).tar.gz DISTFILES += $(call admfiles,CSWbind,preinstall postinstall preremove) +LICENSE = COPYRIGHT +REQUIRED_PKGS = CSWosslrt + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*)-([A-Z][0-9]) @@ -54,7 +57,6 @@ @cp $(FILEDIR)/CSWbind.named.conf $(DESTDIR)$(docdir)/$(GARNAME)/named.conf @cp $(FILEDIR)/CSWbind.named.root $(DESTDIR)$(docdir)/$(GARNAME)/named.root @cp $(FILEDIR)/CSWbind.rndc.key $(DESTDIR)$(docdir)/$(GARNAME)/rndc.key - @cp $(WORKSRC)/COPYRIGHT $(DESTDIR)$(docdir)/$(GARNAME)/LICENSE ( cd $(WORKSRC) ; \ gmake DESTDIR=$(DESTDIR) install ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums =================================================================== --- csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums 2009-08-24 10:28:28 UTC (rev 6098) +++ csw/mgar/pkg/bind/branches/stable-9.4.3p3/checksums 2009-08-24 11:56:47 UTC (rev 6099) @@ -1,5 +1,5 @@ -74464f8af260ad71a19a3400a1ae00bb download/bind-9.4.2-P2.tar.gz 9d20fd7cceac478243ac485868b9ef35 download/CSWbind.gspec +78702926bd064e3a1f4ac56ae85866a9 download/CSWbind.postinstall 9338f20547092ec54136ebebd5f663d3 download/CSWbind.preinstall -78702926bd064e3a1f4ac56ae85866a9 download/CSWbind.postinstall 104f5539928c029738b0a1808f8af262 download/CSWbind.preremove +ed357d3d18dcfa97723f91d9219caa8c download/bind-9.4.3-P3.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 14:52:52 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 12:52:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[6100] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6100 http://gar.svn.sourceforge.net/gar/?rev=6100&view=rev Author: wahwah Date: 2009-08-24 12:52:52 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: making the empty package ARCHALL Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 11:56:47 UTC (rev 6099) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 12:52:52 UTC (rev 6100) @@ -21,7 +21,8 @@ PACKAGES += CSWwxwidgetsgtk2 PACKAGES += CSWwxwidgetsrt ARCHALL_CSWwxwidgetscommon = 1 -ARCHALL_CSWwxwidgetsdevel = 1 +ARCHALL_CSWwxwidgetsdevel = 1 +ARCHALL_CSWwxwidgetsgtk2 = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig REQUIRED_PKGS += CSWftype2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 16:46:44 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 14:46:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[6101] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6101 http://gar.svn.sourceforge.net/gar/?rev=6101&view=rev Author: wahwah Date: 2009-08-24 14:46:44 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: Adding CSWlibpthreadstubs to build deps Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 12:52:52 UTC (rev 6100) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 14:46:44 UTC (rev 6101) @@ -38,7 +38,7 @@ REQUIRED_PKGS += CSWtiff REQUIRED_PKGS += CSWzlib -PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel CSWlibpthreadstubs PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) 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 Aug 24 17:07:30 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Mon, 24 Aug 2009 15:07:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[6102] csw/mgar/pkg Message-ID: Revision: 6102 http://gar.svn.sourceforge.net/gar/?rev=6102&view=rev Author: valholla Date: 2009-08-24 15:07:30 +0000 (Mon, 24 Aug 2009) Log Message: ----------- initial checkin Added Paths: ----------- csw/mgar/pkg/pidgin_sipe/ csw/mgar/pkg/pidgin_sipe/Makefile csw/mgar/pkg/pidgin_sipe/branches/ csw/mgar/pkg/pidgin_sipe/tags/ csw/mgar/pkg/pidgin_sipe/trunk/ csw/mgar/pkg/pidgin_sipe/trunk/Makefile csw/mgar/pkg/pidgin_sipe/trunk/checksums csw/mgar/pkg/pidgin_sipe/trunk/files/ Added: csw/mgar/pkg/pidgin_sipe/Makefile =================================================================== --- csw/mgar/pkg/pidgin_sipe/Makefile (rev 0) +++ csw/mgar/pkg/pidgin_sipe/Makefile 2009-08-24 15:07:30 UTC (rev 6102) @@ -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/pidgin_sipe/trunk/Makefile =================================================================== --- csw/mgar/pkg/pidgin_sipe/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pidgin_sipe/trunk/Makefile 2009-08-24 15:07:30 UTC (rev 6102) @@ -0,0 +1,28 @@ +GARNAME = pidgin-sipe +GARVERSION = 1.5.0 +CATEGORIES = lib + +DESCRIPTION = Pidgin Plug-in SIPE (Sip Exchange Protocol) +define BLURB + An Open Implementation of SIP/Simple protocol for Pidgin +endef + +SF_PROJ = sipe +MASTER_SITES = $(SF_MIRRORS) +UPSTREAM_USE_SF = 1 +DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 +PACKAGES = CSWpidginsipe +CATALOGNAME_CSWpidginsipe = pidgin_sipe +SPKG_DESC_CSWpidginsipe = $(DESCRIPTION) +SPKG_SOURCEURL = http://sipe.sourceforge.net/ +REQUIRED_PKGS_CSWpidginsipe = CSWpidgin + +# We define upstream file regex so we can be notifed of +# new upstream software release +UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz2 + +STRIP_LIBTOOL = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk Added: csw/mgar/pkg/pidgin_sipe/trunk/checksums =================================================================== --- csw/mgar/pkg/pidgin_sipe/trunk/checksums (rev 0) +++ csw/mgar/pkg/pidgin_sipe/trunk/checksums 2009-08-24 15:07:30 UTC (rev 6102) @@ -0,0 +1 @@ +8d27efe5d98d88385736d92d9aa0c924 download/pidgin-sipe-1.5.0.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 18:06:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 16:06:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6103] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6103 http://gar.svn.sourceforge.net/gar/?rev=6103&view=rev Author: wahwah Date: 2009-08-24 16:06:05 +0000 (Mon, 24 Aug 2009) Log Message: ----------- wxwidgets: Added more prerequisites Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 15:07:30 UTC (rev 6102) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 16:06:05 UTC (rev 6103) @@ -38,7 +38,11 @@ REQUIRED_PKGS += CSWtiff REQUIRED_PKGS += CSWzlib -PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWgtk2devel CSWlibpthreadstubs +PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS += CSWgtk2devel +PREREQUISITE_PKGS += CSWlibpthreadstubs +PREREQUISITE_PKGS += CSWxproto +PREREQUISITE_PKGS += CSWkbproto PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 19:16:58 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 17:16:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[6104] csw/mgar/pkg/cfg2html/trunk/Makefile Message-ID: Revision: 6104 http://gar.svn.sourceforge.net/gar/?rev=6104&view=rev Author: wahwah Date: 2009-08-24 17:16:58 +0000 (Mon, 24 Aug 2009) Log Message: ----------- cfg2html: Fixing the revision number placement Modified Paths: -------------- csw/mgar/pkg/cfg2html/trunk/Makefile Modified: csw/mgar/pkg/cfg2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-24 16:06:05 UTC (rev 6103) +++ csw/mgar/pkg/cfg2html/trunk/Makefile 2009-08-24 17:16:58 UTC (rev 6104) @@ -3,14 +3,15 @@ # $Id$ GARNAME = cfg2html -GARVERSION = 1.14r1.8 +GARVERSION = 1.14 +PATCHLEVEL = r1.8 CATEGORIES = utils DESCRIPTION = Configuration documentation generator define BLURB endef SPKG_SOURCEURL = http://tech.groups.yahoo.com/group/cfg2html/ MASTER_SITES = http://tech.groups.yahoo.com/group/cfg2html/files/sun/ -DISTFILES = $(GARNAME)-sun_$(GARVERSION).tar.gz +DISTFILES = $(GARNAME)-sun_$(GARVERSION)$(PATCHLEVEL).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz CONFIGURE_SCRIPTS = BUILD_SCRIPTS = @@ -35,3 +36,5 @@ ginstall -m 0755 $(WORKSRC)/cfg2html_sun.sh $(DESTDIR)$(bindir) include gar/category.mk + +SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(PATCHLEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 24 19:51:49 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 24 Aug 2009 17:51:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[6105] csw/mgar/pkg/buildbot/trunk Message-ID: Revision: 6105 http://gar.svn.sourceforge.net/gar/?rev=6105&view=rev Author: wahwah Date: 2009-08-24 17:51:49 +0000 (Mon, 24 Aug 2009) Log Message: ----------- buildbot: revision bump to 0.7.11p3 Modified Paths: -------------- csw/mgar/pkg/buildbot/trunk/Makefile csw/mgar/pkg/buildbot/trunk/checksums Added Paths: ----------- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch Removed Paths: ------------- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch Modified: csw/mgar/pkg/buildbot/trunk/Makefile =================================================================== --- csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/Makefile 2009-08-24 17:51:49 UTC (rev 6105) @@ -4,7 +4,7 @@ GARNAME = buildbot GARVERSION = 0.7.11 -PATCHLEVEL = p1 +PATCHLEVEL = p3 CATEGORIES = utils DESCRIPTION = A system to automate the compile/test cycle Modified: csw/mgar/pkg/buildbot/trunk/checksums =================================================================== --- csw/mgar/pkg/buildbot/trunk/checksums 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/checksums 2009-08-24 17:51:49 UTC (rev 6105) @@ -1,3 +1,3 @@ -2f83cd6562f0288ec4f4d77027f3090f download/buildbot-0.7.11p1.tar.gz -4c70db04b3514157aa746370ad282eeb download/debug-0.7.11p1.patch -a39720c9a13d73bbda054938d6a98c47 download/tail-0.7.11p1.patch +6e4ef001d11caf270e2ed7d1d7d43318 download/buildbot-0.7.11p3.tar.gz +4c70db04b3514157aa746370ad282eeb download/debug-0.7.11p3.patch +a39720c9a13d73bbda054938d6a98c47 download/tail-0.7.11p3.patch Deleted: csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -1,25 +0,0 @@ -diff -ru buildbot-0.7.11p1.orig/buildbot/changes/changes.py buildbot-0.7.11p1/buildbot/changes/changes.py ---- buildbot-0.7.11p1.orig/buildbot/changes/changes.py 2009-07-15 20:09:30.000000000 +0100 -+++ buildbot-0.7.11p1/buildbot/changes/changes.py 2009-07-30 13:30:01.632031291 +0100 -@@ -73,6 +73,9 @@ - self.files = files[:] - self.files.sort() - -+ def __repr__(self): -+ return "branch(%s) at %s by %s" % (self.branch, self.revision, self.who) -+ - def asText(self): - data = "" - data += self.getFileContents() -diff -ru buildbot-0.7.11p1.orig/buildbot/scheduler.py buildbot-0.7.11p1/buildbot/scheduler.py ---- buildbot-0.7.11p1.orig/buildbot/scheduler.py 2009-07-15 20:09:30.000000000 +0100 -+++ buildbot-0.7.11p1/buildbot/scheduler.py 2009-07-30 16:56:59.195283110 +0100 -@@ -287,6 +287,8 @@ - - def addChange(self, change): - branch = change.branch -+ log.msg("branch = %s" % repr(branch)) -+ log.msg("self.branches = %s" % repr(self.branches)) - if self.branches is not None and branch not in self.branches: - log.msg("%s ignoring off-branch %s" % (self, change)) - return Copied: csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch (from rev 6052, csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p1.patch) =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch (rev 0) +++ csw/mgar/pkg/buildbot/trunk/files/debug-0.7.11p3.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -0,0 +1,25 @@ +diff -ru buildbot-0.7.11p1.orig/buildbot/changes/changes.py buildbot-0.7.11p1/buildbot/changes/changes.py +--- buildbot-0.7.11p1.orig/buildbot/changes/changes.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/changes/changes.py 2009-07-30 13:30:01.632031291 +0100 +@@ -73,6 +73,9 @@ + self.files = files[:] + self.files.sort() + ++ def __repr__(self): ++ return "branch(%s) at %s by %s" % (self.branch, self.revision, self.who) ++ + def asText(self): + data = "" + data += self.getFileContents() +diff -ru buildbot-0.7.11p1.orig/buildbot/scheduler.py buildbot-0.7.11p1/buildbot/scheduler.py +--- buildbot-0.7.11p1.orig/buildbot/scheduler.py 2009-07-15 20:09:30.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/scheduler.py 2009-07-30 16:56:59.195283110 +0100 +@@ -287,6 +287,8 @@ + + def addChange(self, change): + branch = change.branch ++ log.msg("branch = %s" % repr(branch)) ++ log.msg("self.branches = %s" % repr(self.branches)) + if self.branches is not None and branch not in self.branches: + log.msg("%s ignoring off-branch %s" % (self, change)) + return Deleted: csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch 2009-08-24 17:16:58 UTC (rev 6104) +++ csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -1,12 +0,0 @@ -diff -ru buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py buildbot-0.7.11p1/buildbot/scripts/logwatcher.py ---- buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py 2009-03-02 18:13:03.000000000 +0100 -+++ buildbot-0.7.11p1/buildbot/scripts/logwatcher.py 2009-07-29 18:00:44.304903854 +0200 -@@ -43,7 +43,7 @@ - # been seen within 10 seconds, and with ReconfigError if the error - # line was seen. If the logfile could not be opened, it errbacks with - # an IOError. -- self.p = reactor.spawnProcess(self.pp, "/usr/bin/tail", -+ self.p = reactor.spawnProcess(self.pp, "/opt/csw/bin/gtail", - ("tail", "-f", "-n", "0", self.logfile), - env=os.environ, - ) Copied: csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch (from rev 6104, csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p1.patch) =================================================================== --- csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch (rev 0) +++ csw/mgar/pkg/buildbot/trunk/files/tail-0.7.11p3.patch 2009-08-24 17:51:49 UTC (rev 6105) @@ -0,0 +1,12 @@ +diff -ru buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py buildbot-0.7.11p1/buildbot/scripts/logwatcher.py +--- buildbot-0.7.11p1.orig/buildbot/scripts/logwatcher.py 2009-03-02 18:13:03.000000000 +0100 ++++ buildbot-0.7.11p1/buildbot/scripts/logwatcher.py 2009-07-29 18:00:44.304903854 +0200 +@@ -43,7 +43,7 @@ + # been seen within 10 seconds, and with ReconfigError if the error + # line was seen. If the logfile could not be opened, it errbacks with + # an IOError. +- self.p = reactor.spawnProcess(self.pp, "/usr/bin/tail", ++ self.p = reactor.spawnProcess(self.pp, "/opt/csw/bin/gtail", + ("tail", "-f", "-n", "0", self.logfile), + env=os.environ, + ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 02:02:28 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 00:02:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[6106] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6106 http://gar.svn.sourceforge.net/gar/?rev=6106&view=rev Author: wahwah Date: 2009-08-25 00:02:28 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Removed the _rt package, shuffled files to match the old non-GAR packages Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-24 17:51:49 UTC (rev 6105) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 00:02:28 UTC (rev 6106) @@ -19,7 +19,6 @@ PACKAGES = CSWwxwidgetscommon PACKAGES += CSWwxwidgetsdevel PACKAGES += CSWwxwidgetsgtk2 -PACKAGES += CSWwxwidgetsrt ARCHALL_CSWwxwidgetscommon = 1 ARCHALL_CSWwxwidgetsdevel = 1 ARCHALL_CSWwxwidgetsgtk2 = 1 @@ -43,18 +42,24 @@ PREREQUISITE_PKGS += CSWlibpthreadstubs PREREQUISITE_PKGS += CSWxproto PREREQUISITE_PKGS += CSWkbproto +PREREQUISITE_PKGS += CSWlibxcb +PREREQUISITE_PKGS += CSWlibxcbdevel +PREREQUISITE_PKGS += CSWlibxau +PREREQUISITE_PKGS += CSWlibxaudevel +PREREQUISITE_PKGS += CSWlibxrenderdevel +PREREQUISITE_PKGS += CSWrenderproto + PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) -PKGFILES_CSWwxwidgetsdevel += /opt/csw/lib/wx/include/.* -PKGFILES_CSWwxwidgetsrt = $(PKGFILES_RT) -PKGFILES_CSWwxwidgetsgtk2 = non-existing +PKGFILES_CSWwxwidgetsgtk2 = /opt/csw/lib/wx/(include|config)/gtk2-.* +PKGFILES_CSWwxwidgetsgtk2 += /opt/csw/lib/libwx_gtk2.* +PKGFILES_CSWwxwidgetsgtk2 += /opt/csw/bin/wx(-config|rc(|-2.8)) -REQUIRED_PKGS_CSWwxwidgetsgtk2 = CSWwxwidgetsrt -REQUIRED_PKGS_CSWwxwidgetsrt = CSWwxwidgetscommon +REQUIRED_PKGS_CSWwxwidgetsgtk2 = CSWwxwidgetscommon +REQUIRED_PKGS_CSWwxwidgetsdevel = CSWwxwidgetscommon CATALOGNAME_CSWwxwidgetscommon = wxwidgets_common CATALOGNAME_CSWwxwidgetsdevel = wxwidgets_devel CATALOGNAME_CSWwxwidgetsgtk2 = wxwidgets_gtk2 -CATALOGNAME_CSWwxwidgetsrt = wxwidgets_rt TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 02:04:26 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 00:04:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[6107] csw/mgar/pkg Message-ID: Revision: 6107 http://gar.svn.sourceforge.net/gar/?rev=6107&view=rev Author: wahwah Date: 2009-08-25 00:04:26 +0000 (Tue, 25 Aug 2009) Log Message: ----------- libyaml: Initial checkin Modified Paths: -------------- csw/mgar/pkg/libyaml/trunk/Makefile csw/mgar/pkg/libyaml/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libyaml/ Modified: csw/mgar/pkg/libyaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/template/trunk/Makefile 2009-08-24 17:51:49 UTC (rev 6105) +++ csw/mgar/pkg/libyaml/trunk/Makefile 2009-08-25 00:04:26 UTC (rev 6107) @@ -2,181 +2,17 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -## This file contains comments to guide you through various GAR settings. -## Please remove unnecessary comments before committing your code to the code -## repository. The comments to remove are marked with double hashes. -## If you want to remove them all in-place, use: -## gsed -i -e '/^##/d' Makefile -## -## For more information about GAR variables, please see: -## https://sourceforge.net/apps/trac/gar/wiki/GAR%20Variable%20Reference -## -GARNAME = mypkg -GARVERSION = 1.0 -## -## The category that your software fits in. This is not a descriptive field, but -## influences the build process. Depending on the CATEGORIES setting, different -## Makefiles are included from gar/categories/ in your trunk directory, which -## adjust the build settings for the respective category. -## -## Possible settings are: -## apps, cpan, devel, gnome, java, kde, lang, lib, meta, net, server, utils, x11, -## xfce, xorg, xtra +GARNAME = libyaml +GARVERSION = 0.1.2 CATEGORIES = lib -## -## A one-line description of the package, which will appear in the pkginfo. -DESCRIPTION = -## -## A longer description of the package. This is only for descriptive purposes -## inside the Makefile and is not used elsewhere. +DESCRIPTION = a YAML 1.1 parser and emitter written in C define BLURB - endef -## -## Upstream URL that should show up in the VENDOR field as well as on -## http://opencsw.org/packages/. -SPKG_SOURCEURL = -## -## Whitespace-separated list of URLs to download the source package from. -## There are presets: $(SF_MIRRORS), $(GNU_MIRRORS) and $(GOOGLE_MIRROR). -MASTER_SITES = -## -## SF_PROJ is required if you set $(MASTER_SITES) to $(SF_MIRRORS) and the -## Sourceforge project name differs from $(GARNAME). Specifies the Sourceforge -## project name of the software you wish to download. -## SF_PROJ = -## -## A list of space separated patch filenames from files/ that are to be applied -## to the extracted software before the ./configure stage. Patches need to be -## included in the DISTFILES variable as well. -## PATCHFILES = -## -## Whitespace-separated list of files which comprise this build. mGAR will look -## for the files in the $(FILEDIR) (trunk/files) directory and on the -## $(MASTER_SITES). -DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -## -## We define upstream file regex so we can be notifed of new upstream software release +SPKG_SOURCEURL = http://pyyaml.org/wiki/LibYAML?version=20 +MASTER_SITES = http://pyyaml.org/download/libyaml/ +DISTFILES = yaml-$(GARVERSION).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -## -## Catalog name is the name to be used with pkg{-get,util} -i . -## It is different from the system package name, which by convention is CSWpkgname. -## CATALOGNAME = -## -## Set to 1 to mark the package as architecture-independent. -## ARCHALL = 0 -## -## A list of files / patterns that should be excluded from the package. Amends -## the default list of excluded filenames $(MERGE_EXCLUDE_DEFAULT), which -## contains things like libtool .la files and files with a leading ~. -## EXTRA_MERGE_EXCLUDE_FILES = -## -## A list of space separated package names that should be marked as -## incompatible with the current package. This will go into the depend file. -## When a user has one of the incompatible packages installed and installs -## your package, he will be prompted that the incompatible package must be -## removed. He will however not be prevented to install your package without -## removing the conflicting package first. -## INCOMPATIBLE_PKGS = -## -## The name of the license file that should be included in your package. Defaults -## to COPYING. See http://sourceforge.net/apps/trac/gar/wiki/CopyRightfor details -## on including and displaying licenses. -## LICENSE = -## -## A list of space separated package names that should be produced from your -## Makefile. This is used when a software has different components that can be -## packaged and used individually (think runtime libraries, client tools, server -## files, development headers). You don't need to set this when you just want to -## produce one package. -## -## When you set this variable to include more than one package, you also need to -## set PKGFILES_CSWpkgname for each package (except for the first one in your -## $(PACKAGES) list) to define which files go into each package. The first -## package from $(PACKAGES) one will hold all files that are not matched by -## PKGFILES_ for other packages. -## PACKAGES = -## -## If specified, GAR feeds the almost-final package prototype file to -## $(PROTOTYPE_FILTER) and reads the final package prototype file from it. -## $(PROTOTYPE_FILTER) is usually a sed/awk/perl one-liner, which was mostly used -## to prepare the prototype file for use with cswclassutils (see -## $(SPKG_CLASSES)). Now that there are convenience variables for cswclassutils, -## you will rarely have to use this. A still valid use case would be to change -## the file permissions of a file to be set-UID. -## See http://wiki.opencsw.org/cswclassutils-package for common usage information -## PROTOTYPE_FILTER = -## -## cswclassutils settings -## -## A list of action classes. Possible values are: -## none cswpreserveconf cswcpsampleconf cswpycompile cswusergroup cswinitsmf -## The class 'cswinitsmf' must be the last class listed. When you use cswclassutils, -## you need to add CSWcswclassutils to REQUIRED_PKGS. -## SPKG_CLASSES = none -## Simplified settings for classes: -## PRESERVECONF = -## SAMPLECONF = -## INITSMF = -## USERGROUP = -## A list of runtime package dependencies in the form of CSWfoo. -## REQUIRED_PKGS = -## -## A list of packages necessary to build this package -## PREREQUISITE_PKGS = $(REQUIRED_PKGS) -## -## When using non-empty $(PACKAGES): -## REQUIRED_PKGS_CSWpkgname = -## SPKG_DESC_CSWpkgname = -## PKGFILES_CSWpkgname = -## CATALOGNAME_CSWpkgname = -## -## A list of space separated directories where objects should be stripped in -## addition to the bin/ and sbin/ directories. -## STRIP_DIRS = -## -## Define a custom target for the configure phase. When you set this, the target -## that will be used instead of configure: target, is named -## configure-$(CONFIGURE_SCRIPTS) and you will need to define it in your Makefile -## after including gar/gar.include.mk. If you want to skip the configure phase -## completely (for example when your software doesn't need to be compiled) assign -## this variable an empty value. The procedure works for configure, build, -## install and test steps. -## CONFIGURE_SCRIPTS = -## BUILD_SCRIPTS = -## INSTALL_SCRIPTS = -## TEST_SCRIPTS = -## -## Compilation settings -## -## The build directory. -## WORKSRC = $(WORKDIR)/$(GARNAME)-$(GARVERSION) -## -## BUILD_ARGS is passed as an argument to gmake during the build phase. Use this -## for example, if you need to override Makefile variables. -## BUILD_ARGS = -## -## Arguments passed to the ./configure script. +TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) -## -## BUILD64 = -## CONFIGURE_ENV = -## EXTRA_CFLAGS = -## EXTRA_LDFLAGS = -## EXTRA_INC = -## EXTRA_LIB = -## GARFLAVOR = -## INSTALL_ARGS = -## OPT_FLAGS_SOS = -xO3 -## OPT_FLAGS_GCC = -O2 -pipe -## -## The compiler to use. Defaults to SOS11, can be also: SOS12, GCC3, GCC4. -## GARCOMPILER = SOS11 -## -# Remove the following rules and uncomment the -# include before building. -all: .DEFAULT -.DEFAULT: - @true - -#include gar/category.mk +WORKSRC = $(WORKDIR)/yaml-$(GARVERSION) +include gar/category.mk Modified: csw/mgar/pkg/libyaml/trunk/checksums =================================================================== --- csw/mgar/pkg/template/trunk/checksums 2009-08-24 17:51:49 UTC (rev 6105) +++ csw/mgar/pkg/libyaml/trunk/checksums 2009-08-25 00:04:26 UTC (rev 6107) @@ -0,0 +1 @@ +f6c9b5c2b0f6919abd79f5fd059b01dc download/yaml-0.1.2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 08:22:04 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 06:22:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[6108] csw/mgar/pkg/pyyaml/trunk/Makefile Message-ID: Revision: 6108 http://gar.svn.sourceforge.net/gar/?rev=6108&view=rev Author: wahwah Date: 2009-08-25 06:22:04 +0000 (Tue, 25 Aug 2009) Log Message: ----------- pyyaml: Renaming catalogname to py_pyyaml, adding support for libyaml, adding the runtime package Modified Paths: -------------- csw/mgar/pkg/pyyaml/trunk/Makefile Modified: csw/mgar/pkg/pyyaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-25 00:04:26 UTC (rev 6107) +++ csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-25 06:22:04 UTC (rev 6108) @@ -32,20 +32,41 @@ MASTER_SITES = http://pyyaml.org/download/pyyaml/ DISTFILES = $(PROJ_NAME)-$(GARVERSION).tar.gz WORKSRC = $(WORKDIR)/$(PROJ_NAME)-$(GARVERSION) +SPKG_SOURCEURL = http://pyyaml.org/wiki/PyYAML +SPKG_CLASSES = none cswpycompile -# We define upstream file regex so we can be notifed of new upstream software release +PACKAGES = CSWpyyaml CSWpyyamlrt +CATALOGNAME_CSWpyyaml = py_pyyaml +CATALOGNAME_CSWpyyamlrt = py_pyyaml_rt + +REQUIRED_PKGS_CSWpyyaml = CSWpython +REQUIRED_PKGS_CSWpyyamlrt = CSWpython-rt CSWlibyaml +PREREQUISITE_PKGS = $(REQUIRED_PKGS) + +ARCHALL_CSWpyyaml = 1 +PKGFILES_CSWpyyamlrt = /opt/csw/lib/python/site-packages/.*\.so + UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -ARCHALL = 1 CONFIGURE_SCRIPTS = BUILD_SCRIPTS = pyyaml TEST_SCRIPTS = INSTALL_SCRIPTS = pyyaml +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } \ + { print }' + build-pyyaml: - (cd $(WORKSRC); python setup.py build) + (cd $(WORKSRC); $(BUILD_ENV) python setup.py --with-libyaml build) + @$(MAKECOOKIE) install-pyyaml: - (cd $(WORKSRC); python setup.py install --root=$(DESTDIR)) + (cd $(WORKSRC); $(INSTALL_ENV) python setup.py install --root=$(DESTDIR)) + @$(MAKECOOKIE) +post-install-modulated: + gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; + @$(MAKECOOKIE) + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 09:04:49 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 07:04:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[6109] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6109 http://gar.svn.sourceforge.net/gar/?rev=6109&view=rev Author: wahwah Date: 2009-08-25 07:04:49 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Making CSWwxwidgetsgtk2 ARCHALL = 0 Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 06:22:04 UTC (rev 6108) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 07:04:49 UTC (rev 6109) @@ -21,7 +21,6 @@ PACKAGES += CSWwxwidgetsgtk2 ARCHALL_CSWwxwidgetscommon = 1 ARCHALL_CSWwxwidgetsdevel = 1 -ARCHALL_CSWwxwidgetsgtk2 = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig REQUIRED_PKGS += CSWftype2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 11:31:13 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 09:31:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[6110] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6110 http://gar.svn.sourceforge.net/gar/?rev=6110&view=rev Author: wahwah Date: 2009-08-25 09:31:13 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Setting CSWwxwidgetscommon to ARCHALL = 0, adding SUNWxwinc to prerequisites. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 07:04:49 UTC (rev 6109) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 09:31:13 UTC (rev 6110) @@ -19,7 +19,6 @@ PACKAGES = CSWwxwidgetscommon PACKAGES += CSWwxwidgetsdevel PACKAGES += CSWwxwidgetsgtk2 -ARCHALL_CSWwxwidgetscommon = 1 ARCHALL_CSWwxwidgetsdevel = 1 REQUIRED_PKGS = CSWexpat REQUIRED_PKGS += CSWfconfig @@ -47,6 +46,7 @@ PREREQUISITE_PKGS += CSWlibxaudevel PREREQUISITE_PKGS += CSWlibxrenderdevel PREREQUISITE_PKGS += CSWrenderproto +PREREQUISITE_PKGS += SUNWxwinc PKGFILES_CSWwxwidgetsdevel = $(PKGFILES_DEVEL) PKGFILES_CSWwxwidgetsgtk2 = /opt/csw/lib/wx/(include|config)/gtk2-.* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Aug 25 15:18:13 2009 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 25 Aug 2009 13:18:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[6111] csw/mgar/pkg Message-ID: Revision: 6111 http://gar.svn.sourceforge.net/gar/?rev=6111&view=rev Author: bonivart Date: 2009-08-25 13:18:13 +0000 (Tue, 25 Aug 2009) Log Message: ----------- MailScanner: initial commit Added Paths: ----------- csw/mgar/pkg/MailScanner/ csw/mgar/pkg/MailScanner/branches/ csw/mgar/pkg/MailScanner/tags/ csw/mgar/pkg/MailScanner/trunk/ csw/mgar/pkg/MailScanner/trunk/Makefile csw/mgar/pkg/MailScanner/trunk/checksums csw/mgar/pkg/MailScanner/trunk/files/ Property changes on: csw/mgar/pkg/MailScanner/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/MailScanner/trunk/Makefile =================================================================== --- csw/mgar/pkg/MailScanner/trunk/Makefile (rev 0) +++ csw/mgar/pkg/MailScanner/trunk/Makefile 2009-08-25 13:18:13 UTC (rev 6111) @@ -0,0 +1,53 @@ +GARNAME = MailScanner +GARVERSION = 4.77.10 +RELEASE = 1 +DISTVERSION = $(GARVERSION)-$(RELEASE) +#DISTNAME = $(GARNAME)-$(DISTVERSION) +#WORKSRC = $(WORKDIR)/$(DISTNAME) +CATEGORIES = net + +DESCRIPTION = A Free Anti-Virus and Anti-Spam Filter +define BLURB + A Free Anti-Virus and Anti-Spam Filter +endef + +MASTER_SITES = http://www.mailscanner.info/files/4/tar/ +DISTFILES = $(GARNAME)-install-$(DISTVERSION).tar.gz + +#LICENSE = COPYRIGHT + +PACKAGES = CSWmailscanner +CATALOGNAME = mailscanner + +#REQUIRED_PKGS = + +#ARCHALL = 1 + +# We define upstream file regex so we can be notifed of new upstream software release +UFILES_REGEX = $(GARNAME)-install-(\d+(?:\.\d+)*)-\d+.tar.gz + +#CONFIGURE_SCRIPTS = +#BUILD_SCRIPTS = +#TEST_SCRIPTS = +#INSTALL_SCRIPTS = custom + +SPKG_SOURCEURL = http://www.mailscanner.info + +include gar/category.mk + +#SPKG_REVSTAMP := $(SPKG_REVSTAMP)_rev=$(RELEASE) + +#install-custom: +# @echo " ==> Installing $(GARNAME) (custom)" +# @ginstall -d $(DESTDIR)/etc/opt/csw/init.d +# @cp $(FILEDIR)/CSWbind.cswnamed $(DESTDIR)/etc/opt/csw/init.d/cswnamed +# @cp $(FILEDIR)/CSWbind.named.conf.CSW $(DESTDIR)/etc/opt/csw/named.conf.CSW +# @ginstall -d $(DESTDIR)/opt/csw/etc/CSWbind +# @cp $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/CSWbind/ +# @ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) +# @$(foreach DOC,$(DOCLIST),cp $(FILEDIR)/$(DOC) $(DESTDIR)$(docdir)/$(GARNAME);) +# ( cd $(WORKSRC) ; \ +# gmake DESTDIR=$(DESTDIR) install ) +# @ginstall -d $(DESTDIR)/var/opt/csw/named +# @touch $(DESTDIR)/var/opt/csw/named/named.pid +# @$(MAKECOOKIE) Added: csw/mgar/pkg/MailScanner/trunk/checksums =================================================================== --- csw/mgar/pkg/MailScanner/trunk/checksums (rev 0) +++ csw/mgar/pkg/MailScanner/trunk/checksums 2009-08-25 13:18:13 UTC (rev 6111) @@ -0,0 +1 @@ +bf0e5c2e17dcc2a898ed089e3a77cea9 download/MailScanner-install-4.77.10-1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 15:18:23 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 13:18:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[6112] csw/mgar/pkg/syslog_ng/trunk Message-ID: Revision: 6112 http://gar.svn.sourceforge.net/gar/?rev=6112&view=rev Author: wahwah Date: 2009-08-25 13:18:23 +0000 (Tue, 25 Aug 2009) Log Message: ----------- syslog-ng: testing for the presence of svcadm instead of assuming it's there, fixed download path, added makecookie to the postinstall target Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/Makefile csw/mgar/pkg/syslog_ng/trunk/checksums csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall Modified: csw/mgar/pkg/syslog_ng/trunk/Makefile =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/Makefile 2009-08-25 13:18:23 UTC (rev 6112) @@ -9,7 +9,7 @@ logs using TCP. endef -MASTER_SITES = http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/ +MASTER_SITES = http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(GARVERSION)/source/ DISTFILES = $(GARNAME)_$(GARVERSION).tar.gz DISTFILES += $(GARNAME).conf.CSW DISTFILES += cswsyslog_ng @@ -23,7 +23,7 @@ PACKAGES = CSWsyslogng -SPKG_SOURCEURL = http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/$(GARVERSION)/source/ +SPKG_SOURCEURL = http://www.balabit.com/network-security/syslog-ng/opensource-logging-system/ SPKG_CLASSES = none cswcpsampleconf cswinitsmf PROTOTYPE_FILTER = awk ' \ @@ -64,5 +64,6 @@ ginstall -d $(DESTDIR)/etc/opt/csw/init.d ginstall -m 755 $(FILEDIR)/cswsyslog_ng \ $(DESTDIR)/etc/opt/csw/init.d/cswsyslog_ng + $(MAKECOOKIE) include gar/category.mk Modified: csw/mgar/pkg/syslog_ng/trunk/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-25 13:18:23 UTC (rev 6112) @@ -1,5 +1,5 @@ -2204f69bd703115748073e99297e5083 download/CSWsyslogng.postremove -b4b01531e2de07e6e4231afc4079a168 download/CSWsyslogng.preinstall +5189766b79c5ada82fcddda76f1d8d01 download/CSWsyslogng.postremove +c714cbd4360ac0af8495697de2001c41 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW 86c39779261545d2289e9c309e262b8d download/syslog-ng_3.0.4.tar.gz Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-25 13:18:23 UTC (rev 6112) @@ -1,4 +1,6 @@ #!/bin/sh -echo "Enabling svc:/system/system-log:default" -svcadm enable svc:/system/system-log:default +if [ -e /usr/sbin/svcadm ]; then + echo "Enabling svc:/system/system-log:default" + /usr/sbin/svcadm enable svc:/system/system-log:default +fi Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-25 13:18:13 UTC (rev 6111) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-25 13:18:23 UTC (rev 6112) @@ -1,4 +1,6 @@ #!/bin/sh -echo "Disabling svc:/system/system-log:default" -svcadm disable svc:/system/system-log:default +if [ -e /usr/sbin/svcadm ]; then + echo "Disabling svc:/system/system-log:default" + /usr/sbin/svcadm disable svc:/system/system-log:default +fi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Tue Aug 25 19:00:22 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 25 Aug 2009 17:00:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[6113] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6113 http://gar.svn.sourceforge.net/gar/?rev=6113&view=rev Author: wahwah Date: 2009-08-25 17:00:22 +0000 (Tue, 25 Aug 2009) Log Message: ----------- wxwidgets: Enabling unicode and adding missing includes (without the includes it works on the buildfarm, but not locally) Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 13:18:23 UTC (rev 6112) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-25 17:00:22 UTC (rev 6113) @@ -62,9 +62,9 @@ TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex -CONFIGURE_ARGS += --disable-unicode --with-opengl +CONFIGURE_ARGS += --enable-unicode --with-opengl EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt -EXTRA_INC = /opt/csw/X11/include +EXTRA_INC = /opt/csw/X11/include /usr/X11/include /usr/openwin/share/include EXTRA_LIB = /opt/csw/X11/lib PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 26 12:39:10 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 26 Aug 2009 10:39:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[6114] csw/mgar/pkg/myodbc/trunk/Makefile Message-ID: Revision: 6114 http://gar.svn.sourceforge.net/gar/?rev=6114&view=rev Author: wahwah Date: 2009-08-26 10:39:09 +0000 (Wed, 26 Aug 2009) Log Message: ----------- myodbc: Moving CSWmysql5devel from runtime deps to build deps Modified Paths: -------------- csw/mgar/pkg/myodbc/trunk/Makefile Modified: csw/mgar/pkg/myodbc/trunk/Makefile =================================================================== --- csw/mgar/pkg/myodbc/trunk/Makefile 2009-08-25 17:00:22 UTC (rev 6113) +++ csw/mgar/pkg/myodbc/trunk/Makefile 2009-08-26 10:39:09 UTC (rev 6114) @@ -26,12 +26,13 @@ REQUIRED_PKGS = CSWiconv REQUIRED_PKGS += CSWlibtoolrt -REQUIRED_PKGS += CSWmysql5devel REQUIRED_PKGS += CSWmysql5rt REQUIRED_PKGS += CSWunixodbc REQUIRED_PKGS += CSWzlib -PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS += CSWmysql5devel + # The tests act weird. They require a shared library that doesn't get built at all. TEST_SCRIPTS = WORKSRC = $(WORKDIR)/$(DL_NAME)-$(GARVERSION)$(PATCHLEVEL) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Wed Aug 26 22:19:05 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Wed, 26 Aug 2009 20:19:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[6115] csw/mgar/pkg/cups/branches/cups-with-classutils/ Makefile Message-ID: Revision: 6115 http://gar.svn.sourceforge.net/gar/?rev=6115&view=rev Author: wahwah Date: 2009-08-26 20:19:05 +0000 (Wed, 26 Aug 2009) Log Message: ----------- cupsd: Updated build dependencies based on compiler open() syscalls Modified Paths: -------------- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile Modified: csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile =================================================================== --- csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-26 10:39:09 UTC (rev 6114) +++ csw/mgar/pkg/cups/branches/cups-with-classutils/Makefile 2009-08-26 20:19:05 UTC (rev 6115) @@ -25,8 +25,15 @@ DISTFILES = cups-$(GARVERSION)-source.tar.bz2 $(PATCHFILES) DISTFILES += CSWcupsd.postremove -REQUIRED_PKGS = CSWkrb5lib CSWosslrt -PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWoldapdevel +PREREQUISITE_PKGS = CSWggettext +PREREQUISITE_PKGS += CSWjpeg +PREREQUISITE_PKGS += CSWoldapdevel +PREREQUISITE_PKGS += CSWossldevel +PREREQUISITE_PKGS += CSWtiff +PREREQUISITE_PKGS += CSWzlib +PREREQUISITE_PKGS += SUNWhea +PREREQUISITE_PKGS += SUNWlibm +PREREQUISITE_PKGS += SUNWslpu # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = cups-(\d+(?:\.\d+)*)-source.tar.bz2 @@ -43,7 +50,7 @@ REQUIRED_PKGS_CSWcupsd = CSWcswclassutils CSWlibcups CSWoldaprt CSWzlib REQUIRED_PKGS_CSWcupsd += CSWjpeg CSWpng CSWtiff CSWlibtasn1 REQUIRED_PKGS_CSWcupsd += CSWgcrypt CSWgnutls CSWgpgerr CSWlibdbus - +REQUIRED_PKGS_CSWcupsd += CSWkrb5lib REQUIRED_PKGS_CSWcupsclient = CSWcswclassutils CSWlibcups CSWoldaprt CSWzlib REQUIRED_PKGS_CSWcupsclient += CSWgcrypt CSWgnutls CSWgpgerr CSWlibtasn1 REQUIRED_PKGS_CSWcupsdoc = CSWcswclassutils This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 12:25:06 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 10:25:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[6116] csw/mgar/gar/v2/bin/depmaker Message-ID: Revision: 6116 http://gar.svn.sourceforge.net/gar/?rev=6116&view=rev Author: wahwah Date: 2009-08-27 10:25:05 +0000 (Thu, 27 Aug 2009) Log Message: ----------- depmaker: Adding an option to support text files. Modified Paths: -------------- csw/mgar/gar/v2/bin/depmaker Modified: csw/mgar/gar/v2/bin/depmaker =================================================================== --- csw/mgar/gar/v2/bin/depmaker 2009-08-26 20:19:05 UTC (rev 6115) +++ csw/mgar/gar/v2/bin/depmaker 2009-08-27 10:25:05 UTC (rev 6116) @@ -27,12 +27,14 @@ my $do_script = 1; my $be_quiet = 0; my (@nodep, $rootdir); +my $text_files = 0; GetOptions( 'script!' => \$do_script, 'quiet|q' => \$be_quiet, 'root=s' => \$rootdir, 'nodep=s' => \@nodep, 'help|h' => \&usage, + 'text|t' => \$text_files, 'version|V' => sub { print STDERR "$self v$VERSION\n"; exit 2; @@ -43,7 +45,7 @@ my $nodep = join "|", @nodep; sub usage { - print STDERR "Usage: $self [--no/script] [--nodep ] [--root ] < path_list > depend\n"; + print STDERR "Usage: $self [--text] [--no/script] [--nodep ] [--root ] < path_list > depend\n"; exit 1; } @@ -111,6 +113,9 @@ $depfiles{$lib}++ if $lib; } } + elsif ($text_files and $ftype =~ /text/) { + $depfiles{$filesrc}++; + } } exit 0 unless scalar keys %depfiles; 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 Aug 27 14:45:12 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 12:45:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[6117] csw/mgar/pkg/pca/trunk Message-ID: Revision: 6117 http://gar.svn.sourceforge.net/gar/?rev=6117&view=rev Author: dmichelsen Date: 2009-08-27 12:45:12 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pca: Update to 20090827-01 and prefer OpenCSW Perl, but do not depend on it Modified Paths: -------------- csw/mgar/pkg/pca/trunk/Makefile csw/mgar/pkg/pca/trunk/checksums Added Paths: ----------- csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff Modified: csw/mgar/pkg/pca/trunk/Makefile =================================================================== --- csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 10:25:05 UTC (rev 6116) +++ csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 12:45:12 UTC (rev 6117) @@ -1,5 +1,5 @@ GARNAME = pca -GARVERSION = 20090723-01 +GARVERSION = 20090827-01 CATEGORIES = utils DESCRIPTION = Patch Check Advanced @@ -18,6 +18,9 @@ DISTFILES += COPYING DISTFILES += pca.conf +PATCHFILES = 0001-prefer-opencsw-perl.diff +#PATCHDIRLEVEL = 0 + # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d{8}-\d{2}) @@ -35,6 +38,10 @@ include gar/category.mk +post-extract-modulated: + @gln -s $(DISTNAME) $(WORKSRC)/pca + @$(MAKECOOKIE) + install-custom: @ginstall -d $(DESTDIR)$(bindir) @ginstall $(WORKSRC)/$(DISTNAME) $(DESTDIR)$(bindir)/pca Modified: csw/mgar/pkg/pca/trunk/checksums =================================================================== --- csw/mgar/pkg/pca/trunk/checksums 2009-08-27 10:25:05 UTC (rev 6116) +++ csw/mgar/pkg/pca/trunk/checksums 2009-08-27 12:45:12 UTC (rev 6117) @@ -1,3 +1,4 @@ +4376789925fa9002d0567d739f717748 download/0001-prefer-opencsw-perl.diff 6f2f2376eba0a788795dd43d68ad32d1 download/COPYING -38c24b71551747a78de04d37d1588117 download/pca-20090723-01 +89e45905df6a36cf740a886fec2fafc9 download/pca-20090827-01 12de68ff8f67b4bb8b095e5646402208 download/pca.conf Added: csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff =================================================================== --- csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff (rev 0) +++ csw/mgar/pkg/pca/trunk/files/0001-prefer-opencsw-perl.diff 2009-08-27 12:45:12 UTC (rev 6117) @@ -0,0 +1,10 @@ +--- pca.orig/pca 2009-08-27 14:19:12.482759685 +0200 ++++ pca.patched/pca 2009-08-27 14:19:43.651239697 +0200 +@@ -1,6 +1,6 @@ + #!/bin/sh + #! -*- perl -*- +-eval 'exec perl -x -w $0 ${1+"$@"}' ++eval 'PATH=/opt/csw/bin:$PATH exec perl -x -w $0 ${1+"$@"}' + if 0; + + # PCA - Patch Check Advanced 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 Aug 27 15:18:32 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 13:18:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6118] csw/mgar/pkg/pca/trunk/Makefile Message-ID: Revision: 6118 http://gar.svn.sourceforge.net/gar/?rev=6118&view=rev Author: dmichelsen Date: 2009-08-27 13:18:32 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pca: Fix patching Modified Paths: -------------- csw/mgar/pkg/pca/trunk/Makefile Modified: csw/mgar/pkg/pca/trunk/Makefile =================================================================== --- csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 12:45:12 UTC (rev 6117) +++ csw/mgar/pkg/pca/trunk/Makefile 2009-08-27 13:18:32 UTC (rev 6118) @@ -39,12 +39,12 @@ include gar/category.mk post-extract-modulated: - @gln -s $(DISTNAME) $(WORKSRC)/pca + @mv $(WORKSRC)/$(DISTNAME) $(WORKSRC)/pca @$(MAKECOOKIE) install-custom: @ginstall -d $(DESTDIR)$(bindir) - @ginstall $(WORKSRC)/$(DISTNAME) $(DESTDIR)$(bindir)/pca + @ginstall $(WORKSRC)/pca $(DESTDIR)$(bindir)/pca @ginstall -d $(DESTDIR)$(mandir)/man8 - @pod2man --section=8 $(WORKSRC)/$(DISTNAME) > $(DESTDIR)$(mandir)/man8/pca.8 + @pod2man --section=8 $(WORKSRC)/pca > $(DESTDIR)$(mandir)/man8/pca.8 @$(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 Aug 27 16:27:38 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 14:27:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[6119] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 6119 http://gar.svn.sourceforge.net/gar/?rev=6119&view=rev Author: dmichelsen Date: 2009-08-27 14:27:34 +0000 (Thu, 27 Aug 2009) Log Message: ----------- mGAR v2: Warn if specific SPKG_ variables have not been defined 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-08-27 13:18:32 UTC (rev 6118) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 14:27:34 UTC (rev 6119) @@ -127,13 +127,22 @@ # 3. There is a svn binary, but not everything was committed properly -> UNCOMMITTED # 4. There is a svn binary and everything was committed -> r +ifndef SPKG_PACKAGER + $(warning Please set SPKG_PACKAGER in your .garrc file to your name) + SPKG_PACKAGER = Unknown +endif + +ifndef SPKG_EMAIL + $(warning Please set SPKG_EMAIL in your .garrc file to your email address) + SPKG_EMAIL = Unknown +endif + + SPKG_DESC ?= $(DESCRIPTION) SPKG_VERSION ?= $(GARVERSION) SPKG_CATEGORY ?= application SPKG_SOURCEURL ?= $(firstword $(MASTER_SITES)) -SPKG_PACKAGER ?= Unknown SPKG_VENDOR ?= $(SPKG_SOURCEURL) packaged for CSW by $(SPKG_PACKAGER) -SPKG_EMAIL ?= Unknown SPKG_PSTAMP ?= $(LOGNAME)@$(shell hostname)-$(call _REVISION)-$(shell date '+%Y%m%d%H%M%S') SPKG_BASEDIR ?= $(prefix) SPKG_CLASSES ?= none @@ -141,7 +150,7 @@ SPKG_SPOOLROOT ?= $(DESTROOT) SPKG_SPOOLDIR ?= $(SPKG_SPOOLROOT)/spool.$(GAROSREL)-$(GARCH) -SPKG_EXPORT ?= $(WORKDIR) +SPKG_EXPORT ?= $(HOME)/staging/build-$(shell date '+%d.%b.%Y') SPKG_PKGROOT ?= $(PKGROOT) SPKG_PKGBASE ?= $(PKGROOT) SPKG_WORKDIR ?= $(CURDIR)/$(WORKDIR) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 17:21:03 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 15:21:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[6120] csw/mgar/pkg/pyantlrrt/trunk/Makefile Message-ID: Revision: 6120 http://gar.svn.sourceforge.net/gar/?rev=6120&view=rev Author: wahwah Date: 2009-08-27 15:21:03 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pyantlrrt: Added the use of cswpycompile Modified Paths: -------------- csw/mgar/pkg/pyantlrrt/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/pyantlrrt/trunk/Makefile Modified: csw/mgar/pkg/pyantlrrt/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 14:27:34 UTC (rev 6119) +++ csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 15:21:03 UTC (rev 6120) @@ -1,3 +1,7 @@ +# Copyright 2009 OpenCSW +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + GARNAME = pyantlrrt GARVERSION = 3.1.1 CATEGORIES = lib @@ -12,11 +16,17 @@ WORKSRC = $(WORKDIR)/antlr_python_runtime-$(GARVERSION) -# We define upstream file regex so we can be notifed of new upstream software release +REQUIRED_PKGS = CSWcswclassutils CSWpython CSWpython-rt + UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz +SPKG_CLASSES = none cswpycompile ARCHALL = 1 +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~/.*\.py$$$$/ { $$$$2 = "pycompile" } \ + { print }' + CONFIGURE_SCRIPTS = BUILD_SCRIPTS = $(WORKSRC)/setup.py @@ -25,4 +35,8 @@ TEST_SCRIPTS = +post-install-modulated: + gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; + @$(MAKECOOKIE) + include gar/category.mk Property changes on: csw/mgar/pkg/pyantlrrt/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 17:45:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 15:45:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6121] csw/mgar/pkg/wxwidgets/trunk/Makefile Message-ID: Revision: 6121 http://gar.svn.sourceforge.net/gar/?rev=6121&view=rev Author: wahwah Date: 2009-08-27 15:45:31 +0000 (Thu, 27 Aug 2009) Log Message: ----------- wxwidgets: Different options for different Solaris versions. Unicode for Solaris 10. Modified Paths: -------------- csw/mgar/pkg/wxwidgets/trunk/Makefile Modified: csw/mgar/pkg/wxwidgets/trunk/Makefile =================================================================== --- csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-27 15:21:03 UTC (rev 6120) +++ csw/mgar/pkg/wxwidgets/trunk/Makefile 2009-08-27 15:45:31 UTC (rev 6121) @@ -61,8 +61,18 @@ CATALOGNAME_CSWwxwidgetsgtk2 = wxwidgets_gtk2 TEST_SCRIPTS = CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-gtk=2 --with-gtk-prefix=/opt/csw --without-regex -CONFIGURE_ARGS += --enable-unicode --with-opengl +CONFIGURE_ARGS += --with-gtk=2 +CONFIGURE_ARGS += --with-gtk-prefix=/opt/csw +CONFIGURE_ARGS += --without-regex +CONFIGURE_ARGS += --with-opengl +# Unicode-enabled build on Solaris 8 fails with: +# "./src/common/wxchar.cpp", line 1693: Error: The function "vswscanf" must have +# a prototype. +# Building Unicode support for Solaris 9 and 10 only. +CONFIGURE_ARGS_5.8 = --disable-unicode +CONFIGURE_ARGS_5.9 = --enable-unicode +CONFIGURE_ARGS_5.10 = --enable-unicode +CONFIGURE_ARGS += $(CONFIGURE_ARGS_$(GAROSREL)) EXTRA_CFLAGS = -fast -xstrconst -xnolibmopt EXTRA_INC = /opt/csw/X11/include /usr/X11/include /usr/openwin/share/include EXTRA_LIB = /opt/csw/X11/lib 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 Aug 27 17:58:36 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 15:58:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[6122] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 6122 http://gar.svn.sourceforge.net/gar/?rev=6122&view=rev Author: dmichelsen Date: 2009-08-27 15:58:36 +0000 (Thu, 27 Aug 2009) Log Message: ----------- mGAR v2: Make sure all package descriptions are unique. This fixes Trac Ticket #5 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-08-27 15:45:31 UTC (rev 6121) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 15:58:36 UTC (rev 6122) @@ -452,6 +452,14 @@ $(if $($(1)_$(2)),$($(1)_$(2)),$($(1))) endef +# Make sure every producable package contains specific descriptions. +# We explicitly ignore NOPACKAGE here to disallow circumventing the check. +$(foreach P,$(SPKG_SPECS),\ + $(foreach Q,$(filter-out $P,$(SPKG_SPECS)),\ + $(if $(shell if test "$(SPKG_DESC_$P)" = "$(SPKG_DESC_$Q)"; then echo ERROR; fi),\ + $(error The package descriptions for $P and $Q are identical, please make sure all package descriptions are unique by setting SPKG_DESC_ for each package) \ +))) + .PRECIOUS: $(WORKDIR)/%.pkginfo $(WORKDIR)/%.pkginfo: $(WORKDIR) $(_DBG)(echo "PKG=$*"; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 18:18:29 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 16:18:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6123] csw/mgar/pkg/urxvt/trunk Message-ID: Revision: 6123 http://gar.svn.sourceforge.net/gar/?rev=6123&view=rev Author: wahwah Date: 2009-08-27 16:18:29 +0000 (Thu, 27 Aug 2009) Log Message: ----------- urxvt: Removed static gspec Modified Paths: -------------- csw/mgar/pkg/urxvt/trunk/Makefile csw/mgar/pkg/urxvt/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec Modified: csw/mgar/pkg/urxvt/trunk/Makefile =================================================================== --- csw/mgar/pkg/urxvt/trunk/Makefile 2009-08-27 15:58:36 UTC (rev 6122) +++ csw/mgar/pkg/urxvt/trunk/Makefile 2009-08-27 16:18:29 UTC (rev 6123) @@ -20,15 +20,14 @@ MASTER_SITES = http://dist.schmorp.de/rxvt-unicode/ DISTFILES = $(GARNAME)-$(GARVERSION).tar.bz2 -DISTFILES += $(call admfiles,CSWurxvt,) -PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris8.patch +# PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris8.patch -# We define upstream file regex so we can be notifed of new upstream software -# release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 - SPKG_SOURCEURL = http://software.schmorp.de/pkg/rxvt-unicode.html +PACKAGES = CSWurxvt +CATALOGNAME_CSWurxvt = urxvt + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-perl Modified: csw/mgar/pkg/urxvt/trunk/checksums =================================================================== --- csw/mgar/pkg/urxvt/trunk/checksums 2009-08-27 15:58:36 UTC (rev 6122) +++ csw/mgar/pkg/urxvt/trunk/checksums 2009-08-27 16:18:29 UTC (rev 6123) @@ -1,3 +1 @@ 4cb9330e99fc0b0b05cebf3581557dd8 download/rxvt-unicode-9.06.tar.bz2 -c108ec3aafeb40526dfe1868937f9030 download/CSWurxvt.gspec -cd4459aa4a0b72cb11d9c772eb553863 download/rxvt-unicode-9.06-solaris8.patch Deleted: csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec =================================================================== --- csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec 2009-08-27 15:58:36 UTC (rev 6122) +++ csw/mgar/pkg/urxvt/trunk/files/CSWurxvt.gspec 2009-08-27 16:18:29 UTC (rev 6123) @@ -1,4 +0,0 @@ -%var bitname urxvt -%var pkgname CSWurxvt -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright url file://%{WORKSRC}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Thu Aug 27 18:37:21 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 27 Aug 2009 16:37:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6124] csw/mgar/pkg/pyantlrrt/trunk/Makefile Message-ID: Revision: 6124 http://gar.svn.sourceforge.net/gar/?rev=6124&view=rev Author: wahwah Date: 2009-08-27 16:37:21 +0000 (Thu, 27 Aug 2009) Log Message: ----------- pyantlrrt: Adding a build dependency Modified Paths: -------------- csw/mgar/pkg/pyantlrrt/trunk/Makefile Modified: csw/mgar/pkg/pyantlrrt/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 16:18:29 UTC (rev 6123) +++ csw/mgar/pkg/pyantlrrt/trunk/Makefile 2009-08-27 16:37:21 UTC (rev 6124) @@ -17,6 +17,7 @@ WORKSRC = $(WORKDIR)/antlr_python_runtime-$(GARVERSION) REQUIRED_PKGS = CSWcswclassutils CSWpython CSWpython-rt +PREREQUISITE_PKGS = $(REQUIRED_PKGS) CSWpysetuptools 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 Thu Aug 27 22:04:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 27 Aug 2009 20:04:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[6125] csw/mgar/gar/v2 Message-ID: Revision: 6125 http://gar.svn.sourceforge.net/gar/?rev=6125&view=rev Author: dmichelsen Date: 2009-08-27 20:04:39 +0000 (Thu, 27 Aug 2009) Log Message: ----------- mGAR v2: Update CSWcswclassutils support in GAR to automatically rename config files so the default always ends up in .CSW Modified Paths: -------------- csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-27 16:37:21 UTC (rev 6124) +++ csw/mgar/gar/v2/gar.mk 2009-08-27 20:04:39 UTC (rev 6125) @@ -597,7 +597,7 @@ # has not, so we use this one for appending. -_PAX_ARGS = $(_INC_EXT_RULE) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) +_PAX_ARGS = $(_INC_EXT_RULE) $(_EXTRA_PAX_ARGS) $(EXTRA_PAX_ARGS_$(MODULATION)) $(EXTRA_PAX_ARGS) # The basic merge merges the compiles for all ISAs on the current architecture merge: checksum pre-merge $(addprefix merge-,$(MODULATIONS)) merge-license $(if $(COMPILE_ELISP),compile-elisp) $(if $(NOSOURCEPACKAGE),,merge-src) post-merge Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 16:37:21 UTC (rev 6124) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-27 20:04:39 UTC (rev 6125) @@ -168,12 +168,15 @@ # - set class for all config files ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP),) _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,$(SAMPLECONF:%.CSW=%),$$F[1] = "cswsampleconf" if ( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ + $(foreach FILE,$(PRESERVECONF:%.CSW=%),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils +# Make sure the configuration files always have a .CSW suffix and rename the +# configuration files to this if necessary during merge. +_EXTRA_PAX_ARGS += $(foreach FILE,$(SAMPLECONF:%.CSW=%) $(PRESERVECONF:%.CSW=%),-s ",^\.\($(FILE)\)$$,.\1.CSW,p") endif PKGGET_DESTDIR ?= This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Thu Aug 27 23:49:38 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Thu, 27 Aug 2009 21:49:38 +0000 Subject: [csw-devel] SF.net SVN: gar:[6126] csw/mgar/pkg/firefox/branches/firefox3-packaging Message-ID: Revision: 6126 http://gar.svn.sourceforge.net/gar/?rev=6126&view=rev Author: wbonnet Date: 2009-08-27 21:49:38 +0000 (Thu, 27 Aug 2009) Log Message: ----------- Add patch for Solaris 8. Test if version is solaris 8, if yes, add /usr/lib/lwp to LD_LIBRARY_PATH Modified Paths: -------------- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums Added Paths: ----------- csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-27 20:04:39 UTC (rev 6125) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-27 21:49:38 UTC (rev 6126) @@ -1,5 +1,5 @@ GARNAME = firefox -GARVERSION = 3.0.12 +GARVERSION = 3.0.13 CATEGORIES = x11 DISTNAME = $(GARNAME) Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-27 20:04:39 UTC (rev 6125) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-27 21:49:38 UTC (rev 6126) @@ -3,7 +3,7 @@ 45bba282258a321e5e4f73a742bcc31b download/autoconf.mk.in.diff c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff -b509f7c05e9566ed290e2c098316c7c3 download/firefox-3.0.11-source.tar.bz2 +040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff 18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff 1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff Added: csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff (rev 0) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/files/firefox.diff 2009-08-27 21:49:38 UTC (rev 6126) @@ -0,0 +1,15 @@ +diff --speed-large-files --minimal -Nru firefox.orig/browser/app/firefox firefox/browser/app/firefox +--- firefox.orig/browser/app/firefox 2009-08-27 23:43:31.266507053 +0200 ++++ firefox/browser/app/firefox 2009-08-27 23:44:53.015182925 +0200 +@@ -54,6 +54,11 @@ + + moz_libdir=/opt/csw/mozilla/firefox/lib + ++if [ "`uname -r`" = "5.8" ] ; then ++ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp ++ LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++fi ++ + # Use run-mozilla.sh in the current dir if it exists + # If not, then start resolving symlinks until we find run-mozilla.sh + found=0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From d_pocock at users.sourceforge.net Fri Aug 28 13:29:29 2009 From: d_pocock at users.sourceforge.net (d_pocock at users.sourceforge.net) Date: Fri, 28 Aug 2009 11:29:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6127] csw/mgar/pkg Message-ID: Revision: 6127 http://gar.svn.sourceforge.net/gar/?rev=6127&view=rev Author: d_pocock Date: 2009-08-28 11:29:28 +0000 (Fri, 28 Aug 2009) Log Message: ----------- libconfuse: initial commit Added Paths: ----------- csw/mgar/pkg/libconfuse/ csw/mgar/pkg/libconfuse/branches/ csw/mgar/pkg/libconfuse/tags/ csw/mgar/pkg/libconfuse/trunk/ csw/mgar/pkg/libconfuse/trunk/Makefile csw/mgar/pkg/libconfuse/trunk/checksums csw/mgar/pkg/libconfuse/trunk/files/ Property changes on: csw/mgar/pkg/libconfuse/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/libconfuse/trunk/Makefile =================================================================== --- csw/mgar/pkg/libconfuse/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libconfuse/trunk/Makefile 2009-08-28 11:29:28 UTC (rev 6127) @@ -0,0 +1,41 @@ +GARNAME = libconfuse +GARVERSION = 2.6 +CATEGORIES = lib + +# For libConfuse 2.6, the test suite doesn't compile cleanly on Solaris, +# so we skip it. This should be re-assessed with each new release +# from upstream. Proposed fixes for the test suite to be submitted +# upstream. +ifeq ($(GARVERSION),2.6) +#TEST_TARGET = check +TEST_SCRIPTS = skip +test-skip: + $(DONADA) +endif + +DESCRIPTION = a configuration file parser library +define BLURB + libConfuse is a configuration file parser library, licensed under + the terms of the ISC license, and written in C. It supports sections + and (lists of) values (strings, integers, floats, booleans or other + sections), as well as some other features (such as single/double-quoted + strings, environment variable expansion, functions and nested include + statements). It makes it very easy to add configuration file capability + to a program using a simple API. +endef + +MASTER_SITES = http://bzero.se/confuse/ +DISTFILES = confuse-$(GARVERSION).tar.gz +DISTNAME = confuse-$(GARVERSION) + +# 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 = + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-shared --disable-nls + +include gar/category.mk Added: csw/mgar/pkg/libconfuse/trunk/checksums =================================================================== --- csw/mgar/pkg/libconfuse/trunk/checksums (rev 0) +++ csw/mgar/pkg/libconfuse/trunk/checksums 2009-08-28 11:29:28 UTC (rev 6127) @@ -0,0 +1 @@ +0e883d66f0f58fc33585b430c652aa30 download/confuse-2.6.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From d_pocock at users.sourceforge.net Fri Aug 28 16:37:55 2009 From: d_pocock at users.sourceforge.net (d_pocock at users.sourceforge.net) Date: Fri, 28 Aug 2009 14:37:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6128] csw/mgar/pkg/ganglia/trunk Message-ID: Revision: 6128 http://gar.svn.sourceforge.net/gar/?rev=6128&view=rev Author: d_pocock Date: 2009-08-28 14:37:55 +0000 (Fri, 28 Aug 2009) Log Message: ----------- ganglia: Changed to mGAR v2 Modified Paths: -------------- csw/mgar/pkg/ganglia/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/ganglia/trunk/ Property changes on: csw/mgar/pkg/ganglia/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/ganglia/trunk/Makefile =================================================================== --- csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 11:29:28 UTC (rev 6127) +++ csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 14:37:55 UTC (rev 6128) @@ -1,5 +1,5 @@ GARNAME = ganglia -GARVERSION = 3.0.4 +GARVERSION = 3.1.2 CATEGORIES = utils DESCRIPTION = A scalable distributed monitoring system @@ -14,6 +14,18 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz DISTFILES += $(call admfiles,CSWpackage,) +PACKAGES = CSWgangliart CSWgangliaagent + +CATALOGNAME_CSWgangliart = ganglia_rt +CATALOGNAME_CSWgangliaagent = ganglia_agent + +SPKG_DESC_CSWgangliart = Ganglia runtime libraries +SPKG_DESC_CSWgangliaagent = Ganglia performance monitoring agent gmond + +REQUIRED_PKGS_CSWgangliart = CSWexpat CSWlibconfuse CSWapache2rt +REQUIRED_PKGS_CSWgangliaagent = CSWexpat CSWlibconfuse CSWapache2rt +REQUIRED_PKGS_CSWgangliaagent += CSWgangliart + # We define upstream file regex so we can be notifed of new upstream software release UPSTREAM_MASTER_SITES = $(SF_PROJECT_SHOWFILE)=43021 UPSTREAM_USE_SF = 1 @@ -21,8 +33,16 @@ # This is attachment #45 from Ganglia bug # http://bugzilla.ganglia.info/cgi-bin/bugzilla/show_bug.cgi?id=77 -PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris-cc.patch +#PATCHFILES = $(GARNAME)-$(GARVERSION)-solaris-cc.patch -CONFIGURE_ARGS = $(DIRPATHS) --with-gmetad +CONFIGURE_ARGS = $(DIRPATHS) +# Don't build gmetad (not tested yet on Solaris, more deps required to build) +CONFIGURE_ARGS += --without-gmetad + +# Reduce dependencies, no gettext: +CONFIGURE_ARGS += --disable-nls + +PKGFILES_CSWgangliart = $(libdir)/libganglia.* + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From d_pocock at users.sourceforge.net Fri Aug 28 19:27:31 2009 From: d_pocock at users.sourceforge.net (d_pocock at users.sourceforge.net) Date: Fri, 28 Aug 2009 17:27:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6129] csw/mgar/pkg/ganglia/trunk/Makefile Message-ID: Revision: 6129 http://gar.svn.sourceforge.net/gar/?rev=6129&view=rev Author: d_pocock Date: 2009-08-28 17:27:31 +0000 (Fri, 28 Aug 2009) Log Message: ----------- Update for Ganglia 3.1.2, split files across multiple packages, only build library and agent packages for now Modified Paths: -------------- csw/mgar/pkg/ganglia/trunk/Makefile Modified: csw/mgar/pkg/ganglia/trunk/Makefile =================================================================== --- csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 14:37:55 UTC (rev 6128) +++ csw/mgar/pkg/ganglia/trunk/Makefile 2009-08-28 17:27:31 UTC (rev 6129) @@ -12,16 +12,20 @@ SF_PROJ = ganglia MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz -DISTFILES += $(call admfiles,CSWpackage,) +#DISTFILES += $(call admfiles,CSWpackage,) -PACKAGES = CSWgangliart CSWgangliaagent +PACKAGES = CSWgangliaagent CSWgangliart +CATALOGNAME_CSWganglia = ganglia CATALOGNAME_CSWgangliart = ganglia_rt CATALOGNAME_CSWgangliaagent = ganglia_agent +SPKG_DESC_CSWganglia = Dummy package SPKG_DESC_CSWgangliart = Ganglia runtime libraries SPKG_DESC_CSWgangliaagent = Ganglia performance monitoring agent gmond +PREREQUISITE_PKGS = CSWexpat CSWlibconfuse CSWapache2rt + REQUIRED_PKGS_CSWgangliart = CSWexpat CSWlibconfuse CSWapache2rt REQUIRED_PKGS_CSWgangliaagent = CSWexpat CSWlibconfuse CSWapache2rt REQUIRED_PKGS_CSWgangliaagent += CSWgangliart @@ -43,6 +47,18 @@ # Reduce dependencies, no gettext: CONFIGURE_ARGS += --disable-nls +# For Ganglia 3.1.2, the test suite doesn't compile cleanly on Solaris, +# so we skip it. This should be re-assessed with each new release +# from upstream. Proposed fixes for the test suite to be submitted +# upstream. +ifeq ($(GARVERSION),3.1.2) +#TEST_TARGET = check +TEST_SCRIPTS = skip +test-skip: + $(DONADA) +endif + +PKGFILES_CSWganglia = PKGFILES_CSWgangliart = $(libdir)/libganglia.* 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 Fri Aug 28 20:59:55 2009 From: valholla at users.sourceforge.net (valholla at users.sourceforge.net) Date: Fri, 28 Aug 2009 18:59:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[6130] csw/mgar/pkg/pygtk/trunk Message-ID: Revision: 6130 http://gar.svn.sourceforge.net/gar/?rev=6130&view=rev Author: valholla Date: 2009-08-28 18:59:55 +0000 (Fri, 28 Aug 2009) Log Message: ----------- update configure_args Modified Paths: -------------- csw/mgar/pkg/pygtk/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/pygtk/trunk/ Property changes on: csw/mgar/pkg/pygtk/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 + gar https://gar.svn.sf.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/pygtk/trunk/Makefile =================================================================== --- csw/mgar/pkg/pygtk/trunk/Makefile 2009-08-28 17:27:31 UTC (rev 6129) +++ csw/mgar/pkg/pygtk/trunk/Makefile 2009-08-28 18:59:55 UTC (rev 6130) @@ -32,8 +32,10 @@ PKG_CONFIG_PATH = /opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig EXTRA_EXPORTS = PKG_CONFIG_PATH +CONFIGURE_ARGS = $(DIRPATHS) + TEST_TARGET = check -TEST_SCRIPTS = +#TEST_SCRIPTS = include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Aug 28 21:16:31 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 19:16:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6131] csw/mgar/gar/v2-skayser Message-ID: Revision: 6131 http://gar.svn.sourceforge.net/gar/?rev=6131&view=rev Author: skayser Date: 2009-08-28 19:16:30 +0000 (Fri, 28 Aug 2009) Log Message: ----------- gar/v2-skayser: move .pyc/.pyo exclude logic to gar.mk, add TEST_SCRIPTS for python category Modified Paths: -------------- csw/mgar/gar/v2-skayser/categories/python/category.mk csw/mgar/gar/v2-skayser/gar.mk Modified: csw/mgar/gar/v2-skayser/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-28 18:59:55 UTC (rev 6130) +++ csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-28 19:16:30 UTC (rev 6131) @@ -1,13 +1,12 @@ # Add a dependency to CSWpython _EXTRA_GAR_PKGS += CSWpython -# Put PYCOMPILE in here for now and let gar.pkg.mk handle the usual -# cswclassutils stuff. -PYCOMPILE = .*\.py +# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} +# files. Only thing we explicitly exclude here are the egg-info files. +# gar.pkg.mk handles the usual cswclassutils stuff. -# Could we have "setup.py install" just _not_ compile .py{c,o} files -# in the first place? -_MERGE_EXCLUDE_CATEGORY = .*\.pyo .*\.pyc .*\.egg-info.* +PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py +_MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* # Haven't seen a python module with a configure phase so far CONFIGURE_SCRIPTS ?= @@ -16,5 +15,6 @@ BUILD_SCRIPTS ?= $(WORKSRC)/setup.py INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) +TEST_SCRIPTS ?= $(WORKSRC)/setup.py include gar/gar.mk Modified: csw/mgar/gar/v2-skayser/gar.mk =================================================================== --- csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 18:59:55 UTC (rev 6130) +++ csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 19:16:30 UTC (rev 6131) @@ -559,11 +559,18 @@ # This can be defined in category.mk MERGE_EXCLUDE_CATEGORY ?= $(_MERGE_EXCLUDE_CATEGORY) +# Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) +# during the merge phase. +ifneq ($(PYCOMPILE),) +MERGE_EXCLUDE_PYCOMPILE += $(addsuffix c,$(PYCOMPILE)) +MERGE_EXCLUDE_PYCOMPILE += $(addsuffix o,$(PYCOMPILE)) +endif + MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la MERGE_EXCLUDE_BACKUPFILES ?= .*\~ MERGE_EXCLUDE_STATICLIBS ?= $(libdir)/.*\.a -MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) +MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) $(MERGE_EXCLUDE_PYCOMPILE) # Exclude these files ifeq ($(origin MERGE_EXCLUDE_FILES_$(MODULATION)), undefined) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Fri Aug 28 23:15:14 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 21:15:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[6132] csw/mgar/gar/v2-skayser/gar.mk Message-ID: Revision: 6132 http://gar.svn.sourceforge.net/gar/?rev=6132&view=rev Author: skayser Date: 2009-08-28 21:15:14 +0000 (Fri, 28 Aug 2009) Log Message: ----------- gar/v2-skayser: make MERGE_EXCLUDE_PYCOMPILE overridable (and fall back to an empty value) Modified Paths: -------------- csw/mgar/gar/v2-skayser/gar.mk Modified: csw/mgar/gar/v2-skayser/gar.mk =================================================================== --- csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 19:16:30 UTC (rev 6131) +++ csw/mgar/gar/v2-skayser/gar.mk 2009-08-28 21:15:14 UTC (rev 6132) @@ -561,10 +561,7 @@ # Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) # during the merge phase. -ifneq ($(PYCOMPILE),) -MERGE_EXCLUDE_PYCOMPILE += $(addsuffix c,$(PYCOMPILE)) -MERGE_EXCLUDE_PYCOMPILE += $(addsuffix o,$(PYCOMPILE)) -endif +MERGE_EXCLUDE_PYCOMPILE ?= $(addsuffix c,$(PYCOMPILE)) $(addsuffix o,$(PYCOMPILE)) MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la 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 Aug 28 23:42:21 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 21:42:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[6133] csw/mgar/gar/v2 Message-ID: Revision: 6133 http://gar.svn.sourceforge.net/gar/?rev=6133&view=rev Author: skayser Date: 2009-08-28 21:42:21 +0000 (Fri, 28 Aug 2009) Log Message: ----------- gar/v2: merged python category enhancements from v2-skayser Modified Paths: -------------- csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/gar.pkg.mk Added Paths: ----------- csw/mgar/gar/v2/categories/python/ csw/mgar/gar/v2/categories/python/category.mk Removed Paths: ------------- csw/mgar/gar/v2/categories/python/category.mk Property Changed: ---------------- csw/mgar/gar/v2/ Property changes on: csw/mgar/gar/v2 ___________________________________________________________________ Added: svn:mergeinfo + /csw/mgar/gar/v2-skayser:6087-6132 Deleted: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2-skayser/categories/python/category.mk 2009-08-28 21:15:14 UTC (rev 6132) +++ csw/mgar/gar/v2/categories/python/category.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -1,20 +0,0 @@ -# Add a dependency to CSWpython -_EXTRA_GAR_PKGS += CSWpython - -# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} -# files. Only thing we explicitly exclude here are the egg-info files. -# gar.pkg.mk handles the usual cswclassutils stuff. - -PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py -_MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* - -# Haven't seen a python module with a configure phase so far -CONFIGURE_SCRIPTS ?= - -# gar.lib.mk contains implicit targets for setup.py -BUILD_SCRIPTS ?= $(WORKSRC)/setup.py -INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py -INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) -TEST_SCRIPTS ?= $(WORKSRC)/setup.py - -include gar/gar.mk Copied: csw/mgar/gar/v2/categories/python/category.mk (from rev 6132, csw/mgar/gar/v2-skayser/categories/python/category.mk) =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk (rev 0) +++ csw/mgar/gar/v2/categories/python/category.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -0,0 +1,20 @@ +# Add a dependency to CSWpython +_EXTRA_GAR_PKGS += CSWpython + +# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} +# files. Only thing we explicitly exclude here are the egg-info files. +# gar.pkg.mk handles the usual cswclassutils stuff. + +PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py +_MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* + +# Haven't seen a python module with a configure phase so far +CONFIGURE_SCRIPTS ?= + +# gar.lib.mk contains implicit targets for setup.py +BUILD_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_SCRIPTS ?= $(WORKSRC)/setup.py +INSTALL_ARGS ?= --root=$(DESTDIR) --prefix=$(prefix) +TEST_SCRIPTS ?= $(WORKSRC)/setup.py + +include gar/gar.mk Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-28 21:15:14 UTC (rev 6132) +++ csw/mgar/gar/v2/gar.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -559,11 +559,15 @@ # This can be defined in category.mk MERGE_EXCLUDE_CATEGORY ?= $(_MERGE_EXCLUDE_CATEGORY) +# Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) +# during the merge phase. +MERGE_EXCLUDE_PYCOMPILE ?= $(addsuffix c,$(PYCOMPILE)) $(addsuffix o,$(PYCOMPILE)) + MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la MERGE_EXCLUDE_BACKUPFILES ?= .*\~ MERGE_EXCLUDE_STATICLIBS ?= $(libdir)/.*\.a -MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) +MERGE_EXCLUDE_DEFAULT ?= $(MERGE_EXCLUDE_CATEGORY) $(MERGE_EXCLUDE_INFODIR) $(MERGE_EXCLUDE_LIBTOOL) $(MERGE_EXCLUDE_BACKUPFILES) $(MERGE_EXCLUDE_STATICLIBS) $(MERGE_EXCLUDE_PYCOMPILE) # Exclude these files ifeq ($(origin MERGE_EXCLUDE_FILES_$(MODULATION)), undefined) Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-28 21:15:14 UTC (rev 6132) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-28 21:42:21 UTC (rev 6133) @@ -165,13 +165,15 @@ SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PRESERVECONF),$(if $(filter cswpreserveconf,$(SPKG_CLASSES)),,cswpreserveconf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(INITSMF),$(if $(filter cswinitsmf,$(SPKG_CLASSES)),,cswinitsmf)) SPKG_CLASSES := $(SPKG_CLASSES) $(if $(USERGROUP),$(if $(filter cswusergroup,$(SPKG_CLASSES)),,cswusergroup)) +SPKG_CLASSES := $(SPKG_CLASSES) $(if $(PYCOMPILE),$(if $(filter cswpycompile,$(SPKG_CLASSES)),,cswpycompile)) # - set class for all config files -ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP),) +ifneq ($(SAMPLECONF)$(PRESERVECONF)$(INITSMF)$(USERGROUP)$(PYCOMPILE),) _CSWCLASS_FILTER = | perl -ane '\ $(foreach FILE,$(SAMPLECONF:%.CSW=%),$$F[1] = "cswsampleconf" if ( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(PRESERVECONF:%.CSW=%),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(foreach FILE,$(PYCOMPILE),$$F[1] = "cswpycompile" if( $$F[2] =~ m(^$(FILE)$$) );)\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils # Make sure the configuration files always have a .CSW suffix and rename the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 29 00:40:45 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Fri, 28 Aug 2009 22:40:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[6134] csw/mgar/pkg/ZSI/trunk Message-ID: Revision: 6134 http://gar.svn.sourceforge.net/gar/?rev=6134&view=rev Author: skayser Date: 2009-08-28 22:40:45 +0000 (Fri, 28 Aug 2009) Log Message: ----------- ZSI: use gar/v2 again, now that it includes the python category Modified Paths: -------------- csw/mgar/pkg/ZSI/trunk/Makefile Property Changed: ---------------- csw/mgar/pkg/ZSI/trunk/ Property changes on: csw/mgar/pkg/ZSI/trunk ___________________________________________________________________ Modified: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2-skayser + gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Modified: csw/mgar/pkg/ZSI/trunk/Makefile =================================================================== --- csw/mgar/pkg/ZSI/trunk/Makefile 2009-08-28 21:42:21 UTC (rev 6133) +++ csw/mgar/pkg/ZSI/trunk/Makefile 2009-08-28 22:40:45 UTC (rev 6134) @@ -25,6 +25,7 @@ SPKG_SOURCEURL = http://pywebsvcs.sf.net/ PACKAGES = CSWpyzsi CATALOGNAME = py_zsi +ARCHALL = 1 REQUIRED_PKGS = CSWpyxml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 29 10:55:59 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 29 Aug 2009 08:55:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[6135] csw/mgar/pkg/pyyaml/trunk/Makefile Message-ID: Revision: 6135 http://gar.svn.sourceforge.net/gar/?rev=6135&view=rev Author: wahwah Date: 2009-08-29 08:55:59 +0000 (Sat, 29 Aug 2009) Log Message: ----------- pyyaml: Simplified the build file by using the python category. Enabled the test phase. Modified Paths: -------------- csw/mgar/pkg/pyyaml/trunk/Makefile Modified: csw/mgar/pkg/pyyaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-28 22:40:45 UTC (rev 6134) +++ csw/mgar/pkg/pyyaml/trunk/Makefile 2009-08-29 08:55:59 UTC (rev 6135) @@ -1,14 +1,13 @@ # Copyright 2009 OpenCSW # Distributed under the terms of the GNU General Public License v2 -# $Header: $ +# $Header$ GARNAME = pyyaml GARVERSION = 3.08 -CATEGORIES = lib +CATEGORIES = python PROJ_NAME = PyYAML -DESCRIPTION = YAML parser and emitter for Python define BLURB PyYAML is a YAML parser and emitter for the Python programming language. @@ -39,34 +38,21 @@ CATALOGNAME_CSWpyyaml = py_pyyaml CATALOGNAME_CSWpyyamlrt = py_pyyaml_rt -REQUIRED_PKGS_CSWpyyaml = CSWpython REQUIRED_PKGS_CSWpyyamlrt = CSWpython-rt CSWlibyaml -PREREQUISITE_PKGS = $(REQUIRED_PKGS) +PREREQUISITE_PKGS = CSWpython CSWlibyaml +SPKG_DESC_CSWpyyaml = YAML parser and emitter for Python +SPKG_DESC_CSWpyyamlrt = Runtime libraries for YAML parser and emitter + ARCHALL_CSWpyyaml = 1 PKGFILES_CSWpyyamlrt = /opt/csw/lib/python/site-packages/.*\.so UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -CONFIGURE_SCRIPTS = BUILD_SCRIPTS = pyyaml -TEST_SCRIPTS = -INSTALL_SCRIPTS = pyyaml -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~/.*\.py$$$$/ { $$$$2 = "cswpycompile" } \ - { print }' - build-pyyaml: (cd $(WORKSRC); $(BUILD_ENV) python setup.py --with-libyaml build) @$(MAKECOOKIE) -install-pyyaml: - (cd $(WORKSRC); $(INSTALL_ENV) python setup.py install --root=$(DESTDIR)) - @$(MAKECOOKIE) - -post-install-modulated: - gfind $(DESTDIR) -type f -name '*.pyc' -exec rm {} \; - @$(MAKECOOKIE) - include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 29 11:27:20 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 29 Aug 2009 09:27:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[6136] csw/mgar/pkg/wgetpaste/trunk Message-ID: Revision: 6136 http://gar.svn.sourceforge.net/gar/?rev=6136&view=rev Author: wahwah Date: 2009-08-29 09:27:20 +0000 (Sat, 29 Aug 2009) Log Message: ----------- wgetpaste: Using CSWbash. http://opencsw.org/bugtrack/view.php?id=3871 Modified Paths: -------------- csw/mgar/pkg/wgetpaste/trunk/Makefile csw/mgar/pkg/wgetpaste/trunk/checksums Added Paths: ----------- csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch Removed Paths: ------------- csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch Modified: csw/mgar/pkg/wgetpaste/trunk/Makefile =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/Makefile 2009-08-29 08:55:59 UTC (rev 6135) +++ csw/mgar/pkg/wgetpaste/trunk/Makefile 2009-08-29 09:27:20 UTC (rev 6136) @@ -15,9 +15,10 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.bz2 -REQUIRED_PKGS = CSWshutils CSWwget CSWcswclassutils +REQUIRED_PKGS = CSWshutils CSWwget CSWcswclassutils CSWbash -PATCHFILES = wgetpaste-$(GARVERSION).patch +PATCHFILES = 0001-Using-gwhoami-instead-of-whoami.patch +PATCHFILES += 0002-CSW-bash.patch ARCHALL = 1 Modified: csw/mgar/pkg/wgetpaste/trunk/checksums =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/checksums 2009-08-29 08:55:59 UTC (rev 6135) +++ csw/mgar/pkg/wgetpaste/trunk/checksums 2009-08-29 09:27:20 UTC (rev 6136) @@ -1,3 +1,4 @@ -8d328f55faaa8eee181c9083f2c0525b download/wgetpaste-2.13.patch +0a96eee7e51fe1b7e9054dd302ca0508 download/0001-Using-gwhoami-instead-of-whoami.patch +4ce4101e5be2ea7af5b5ea18be7f8693 download/0002-CSW-bash.patch a341c778d745b0a7ad11163a4a2c1ea9 download/wgetpaste-2.13.tar.bz2 67425820c0281729a7f63e3e3339c49f download/wgetpaste.conf Added: csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch (rev 0) +++ csw/mgar/pkg/wgetpaste/trunk/files/0001-Using-gwhoami-instead-of-whoami.patch 2009-08-29 09:27:20 UTC (rev 6136) @@ -0,0 +1,57 @@ +From c98a64ed5f18a50d9d249bd4bd0916374272a597 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Sat, 29 Aug 2009 11:20:28 +0200 +Subject: [PATCH 1/2] Using gwhoami instead of whoami + +--- + wgetpaste | 10 +++++----- + 1 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/wgetpaste b/wgetpaste +index d4addbd..9b40432 100755 +--- a/wgetpaste ++++ b/wgetpaste +@@ -99,7 +99,7 @@ notreadable() { + noxclip() { + cat <&2 + Could not find xclip on your system. In order to use --x$1 you must either +-emerge x11-misc/xclip or define x_$1() globally in /etc/wgetpaste.conf or ++emerge x11-misc/xclip or define x_$1() globally in /etc/opt/csw/wgetpaste.conf/g or + per user in ~/.wgetpaste.conf to use another program (such as e.g. xcut or + klipper) to $2 your clipboard. + +@@ -288,11 +288,11 @@ Options: + --debug be *very* verbose (implies -v) + + -h, --help show this help +- -g, --ignore-configs ignore /etc/wgetpaste.conf, ~/.wgetpaste.conf etc. ++ -g, --ignore-configs ignore /etc/opt/csw/wgetpaste.conf/g, ~/.wgetpaste.conf etc. + --version show version information + + Defaults (DEFAULT_{NICK,SERVICE,LANGUAGE,EXPIRATION}[_\${SERVICE}]) can be overridden +-globally in /etc/wgetpaste.conf or /etc/wgetpaste.d/*.conf or per user in any of ++globally in /etc/opt/csw/wgetpaste.conf/g or /etc/wgetpaste.d/*.conf or per user in any of + ~/.wgetpaste.conf or ~/.wgetpaste.d/*.conf. + EOF + } +@@ -568,7 +568,7 @@ load_configs() { + if [[ ! $IGNORECONFIGS ]]; then + # compatibility code + local f deprecated= +- for f in {/etc/,~/.}wgetpaste{.d/*.bash,}; do ++ for f in {/etc/,/etc/opt/csw/,~/.}wgetpaste{.d/*.bash,}; do + if [[ -f $f ]]; then + if [[ -z $deprecated ]]; then + echo "The config files for wgetpaste have changed to *.conf.$N" >&2 +@@ -589,7 +589,7 @@ load_configs() { + } + load_configs + [[ $SERVICESET ]] && verifyservice "$SERVICESET" && SERVICE=$(escape "$SERVICESET") +-DEFAULT_NICK=${DEFAULT_NICK:-$(whoami)} || die "whoami failed" ++DEFAULT_NICK=${DEFAULT_NICK:-$(gwhoami)} || die "whoami failed" + DEFAULT_SERVICE=${DEFAULT_SERVICE:-dpaste} + DEFAULT_LANGUAGE=${DEFAULT_LANGUAGE:-Plain Text} + DEFAULT_EXPIRATION=${DEFAULT_EXPIRATION:-1 month} +-- +1.6.3.2 + Added: csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch (rev 0) +++ csw/mgar/pkg/wgetpaste/trunk/files/0002-CSW-bash.patch 2009-08-29 09:27:20 UTC (rev 6136) @@ -0,0 +1,22 @@ +From f40b9334fad600f6270280a7f3b4e769dabfb9e2 Mon Sep 17 00:00:00 2001 +From: Maciej Blizinski +Date: Sat, 29 Aug 2009 11:24:37 +0200 +Subject: [PATCH 2/2] CSW bash + +--- + wgetpaste | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/wgetpaste b/wgetpaste +index 9b40432..f536fbc 100755 +--- a/wgetpaste ++++ b/wgetpaste +@@ -1,4 +1,4 @@ +-#!/usr/bin/env bash ++#!/opt/csw/bin/bash + # A Script that automates pasting to a number of pastebin services + # relying only on bash, sed, coreutils (mktemp/sort/tr/wc/whoami/tee) and wget + # Copyright (c) 2007 Bo ?rsted Andresen +-- +1.6.3.2 + Deleted: csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch =================================================================== --- csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch 2009-08-29 08:55:59 UTC (rev 6135) +++ csw/mgar/pkg/wgetpaste/trunk/files/wgetpaste-2.13.patch 2009-08-29 09:27:20 UTC (rev 6136) @@ -1,44 +0,0 @@ -diff -ru wgetpaste-2.13.orig/wgetpaste wgetpaste-2.13/wgetpaste ---- wgetpaste-2.13.orig/wgetpaste 2009-07-28 14:38:30.336410148 +0100 -+++ wgetpaste-2.13/wgetpaste 2009-07-28 18:28:16.513748108 +0100 -@@ -99,7 +99,7 @@ - noxclip() { - cat <&2 - Could not find xclip on your system. In order to use --x$1 you must either --emerge x11-misc/xclip or define x_$1() globally in /etc/wgetpaste.conf or -+emerge x11-misc/xclip or define x_$1() globally in /etc/opt/csw/wgetpaste.conf/g or - per user in ~/.wgetpaste.conf to use another program (such as e.g. xcut or - klipper) to $2 your clipboard. - -@@ -288,11 +288,11 @@ - --debug be *very* verbose (implies -v) - - -h, --help show this help -- -g, --ignore-configs ignore /etc/wgetpaste.conf, ~/.wgetpaste.conf etc. -+ -g, --ignore-configs ignore /etc/opt/csw/wgetpaste.conf/g, ~/.wgetpaste.conf etc. - --version show version information - - Defaults (DEFAULT_{NICK,SERVICE,LANGUAGE,EXPIRATION}[_\${SERVICE}]) can be overridden --globally in /etc/wgetpaste.conf or /etc/wgetpaste.d/*.conf or per user in any of -+globally in /etc/opt/csw/wgetpaste.conf/g or /etc/wgetpaste.d/*.conf or per user in any of - ~/.wgetpaste.conf or ~/.wgetpaste.d/*.conf. - EOF - } -@@ -568,7 +568,7 @@ - if [[ ! $IGNORECONFIGS ]]; then - # compatibility code - local f deprecated= -- for f in {/etc/,~/.}wgetpaste{.d/*.bash,}; do -+ for f in {/etc/,/etc/opt/csw/,~/.}wgetpaste{.d/*.bash,}; do - if [[ -f $f ]]; then - if [[ -z $deprecated ]]; then - echo "The config files for wgetpaste have changed to *.conf.$N" >&2 -@@ -589,7 +589,7 @@ - } - load_configs - [[ $SERVICESET ]] && verifyservice "$SERVICESET" && SERVICE=$(escape "$SERVICESET") --DEFAULT_NICK=${DEFAULT_NICK:-$(whoami)} || die "whoami failed" -+DEFAULT_NICK=${DEFAULT_NICK:-$(gwhoami)} || die "whoami failed" - DEFAULT_SERVICE=${DEFAULT_SERVICE:-dpaste} - DEFAULT_LANGUAGE=${DEFAULT_LANGUAGE:-Plain Text} - DEFAULT_EXPIRATION=${DEFAULT_EXPIRATION:-1 month} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sat Aug 29 11:50:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sat, 29 Aug 2009 09:50:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6137] csw/mgar/pkg/minimalsmf/trunk Message-ID: Revision: 6137 http://gar.svn.sourceforge.net/gar/?rev=6137&view=rev Author: wahwah Date: 2009-08-29 09:50:32 +0000 (Sat, 29 Aug 2009) Log Message: ----------- minimalsmf: Simplified build, using INITSMF Modified Paths: -------------- csw/mgar/pkg/minimalsmf/trunk/Makefile csw/mgar/pkg/minimalsmf/trunk/checksums csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty Modified: csw/mgar/pkg/minimalsmf/trunk/Makefile =================================================================== --- csw/mgar/pkg/minimalsmf/trunk/Makefile 2009-08-29 09:27:20 UTC (rev 6136) +++ csw/mgar/pkg/minimalsmf/trunk/Makefile 2009-08-29 09:50:32 UTC (rev 6137) @@ -1,5 +1,5 @@ GARNAME = minimalsmf -GARVERSION = 0.2 +GARVERSION = 0.3 CATEGORIES = server DESCRIPTION = A test of an SMF-enabled package and mGAR SMF support @@ -21,20 +21,19 @@ DISTFILES = sleeping-beauty DISTFILES += csw$(GARNAME) -REQUIRED_PKGS = CSWcswclassutils -SPKG_CLASSES = none cswinitsmf +INITSMF = /etc/opt/csw/init.d/cswminimalsmf -PROTOTYPE_FILTER = awk '$$$$3 ~ /\/init.d\/cswminimalsmf$$$$/ { $$$$2 = "cswinitsmf" } { print }' - CONFIGURE_SCRIPTS = BUILD_SCRIPTS = TEST_SCRIPTS = INSTALL_SCRIPTS = $(GARNAME) install-$(GARNAME): - ginstall -d $(DESTDIR) + # Installing the executable ginstall -d $(DESTDIR)$(bindir) - ginstall -m 755 files/sleeping-beauty $(DESTDIR)$(bindir) + ginstall -m 755 $(FILEDIR)/sleeping-beauty $(DESTDIR)$(bindir) + # Installing the startup script. It uses init.d for Solaris 8 and 9, and + # SMF for Solaris 10. ginstall -d $(DESTDIR)/etc/opt/csw/init.d ginstall -m 755 $(FILEDIR)/csw$(GARNAME) \ $(DESTDIR)/etc/opt/csw/init.d/csw$(GARNAME) Modified: csw/mgar/pkg/minimalsmf/trunk/checksums =================================================================== --- csw/mgar/pkg/minimalsmf/trunk/checksums 2009-08-29 09:27:20 UTC (rev 6136) +++ csw/mgar/pkg/minimalsmf/trunk/checksums 2009-08-29 09:50:32 UTC (rev 6137) @@ -1,2 +1,2 @@ 657ec36646cd2f066141d28cfb7db435 download/cswminimalsmf -f8f208e8dea57747241d3f997a52c8a6 download/sleeping-beauty +6b1ac1730ff32ce39f5a78e4a9f95eff download/sleeping-beauty Modified: csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty =================================================================== --- csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty 2009-08-29 09:27:20 UTC (rev 6136) +++ csw/mgar/pkg/minimalsmf/trunk/files/sleeping-beauty 2009-08-29 09:50:32 UTC (rev 6137) @@ -2,6 +2,6 @@ while true do - sleep 10 + sleep 30 logger user.info "Sleeping $(date)" 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 Sat Aug 29 17:09:08 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 29 Aug 2009 15:09:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[6138] csw/mgar/gar/v2 Message-ID: Revision: 6138 http://gar.svn.sourceforge.net/gar/?rev=6138&view=rev Author: skayser Date: 2009-08-29 15:09:08 +0000 (Sat, 29 Aug 2009) Log Message: ----------- gar/v2: PYCOMPILE, move exlusion logic from python/category.mk to gar.mk Modified Paths: -------------- csw/mgar/gar/v2/categories/python/category.mk csw/mgar/gar/v2/gar.mk csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/categories/python/category.mk =================================================================== --- csw/mgar/gar/v2/categories/python/category.mk 2009-08-29 09:50:32 UTC (rev 6137) +++ csw/mgar/gar/v2/categories/python/category.mk 2009-08-29 15:09:08 UTC (rev 6138) @@ -1,13 +1,14 @@ # Add a dependency to CSWpython _EXTRA_GAR_PKGS += CSWpython -# We just set PYCOMPILE, gar.mk then excludes the corresponding .py{c,o} -# files. Only thing we explicitly exclude here are the egg-info files. -# gar.pkg.mk handles the usual cswclassutils stuff. - -PYCOMPILE = /opt/csw/lib/python/site-packages/.*\.py +# Exclude egg-info files (only needed for easy_install) _MERGE_EXCLUDE_CATEGORY += .*\.egg-info.* +# Activate cswpycompile support to exclude .pyc and .pyo files from +# the package and compile them on installation. File exclusion is +# handled by gar.mk and cswclassutils integration by gar.pkg.mk +PYCOMPILE = 1 + # Haven't seen a python module with a configure phase so far CONFIGURE_SCRIPTS ?= Modified: csw/mgar/gar/v2/gar.mk =================================================================== --- csw/mgar/gar/v2/gar.mk 2009-08-29 09:50:32 UTC (rev 6137) +++ csw/mgar/gar/v2/gar.mk 2009-08-29 15:09:08 UTC (rev 6138) @@ -561,7 +561,8 @@ # Support for cswpycompile, skip pre-compiled python files (.pyc, .pyo) # during the merge phase. -MERGE_EXCLUDE_PYCOMPILE ?= $(addsuffix c,$(PYCOMPILE)) $(addsuffix o,$(PYCOMPILE)) +_PYCOMPILE_FILES = /opt/csw/lib/python/site-packages/.*\.py +MERGE_EXCLUDE_PYCOMPILE ?= $(if $(PYCOMPILE), $(addsuffix c,$(_PYCOMPILE_FILES)) $(addsuffix o,$(_PYCOMPILE_FILES))) MERGE_EXCLUDE_INFODIR ?= $(sharedstatedir)/info/dir MERGE_EXCLUDE_LIBTOOL ?= $(libdir)/.*\.la Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2009-08-29 09:50:32 UTC (rev 6137) +++ csw/mgar/gar/v2/gar.pkg.mk 2009-08-29 15:09:08 UTC (rev 6138) @@ -173,7 +173,7 @@ $(foreach FILE,$(PRESERVECONF:%.CSW=%),$$F[1] = "cswpreserveconf" if( $$F[2] =~ m(^$(FILE)\.CSW$$) );)\ $(foreach FILE,$(INITSMF),$$F[1] = "cswinitsmf" if( $$F[2] =~ m(^$(FILE)$$) );)\ $(foreach FILE,$(USERGROUP),$$F[1] = "cswusergroup" if( $$F[2] =~ m(^$(FILE)$$) );)\ - $(foreach FILE,$(PYCOMPILE),$$F[1] = "cswpycompile" if( $$F[2] =~ m(^$(FILE)$$) );)\ + $(if $(PYCOMPILE),$(foreach FILE,$(_PYCOMPILE_FILES),$$F[1] = "cswpycompile" if( $$F[2] =~ m(^$(FILE)$$) );))\ print join(" ", at F),"\n";' _EXTRA_GAR_PKGS += CSWcswclassutils # Make sure the configuration files always have a .CSW suffix and rename the This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From skayser at users.sourceforge.net Sat Aug 29 22:01:29 2009 From: skayser at users.sourceforge.net (skayser at users.sourceforge.net) Date: Sat, 29 Aug 2009 20:01:29 +0000 Subject: [csw-devel] SF.net SVN: gar:[6139] csw/mgar/pkg/mtr/trunk/Makefile Message-ID: Revision: 6139 http://gar.svn.sourceforge.net/gar/?rev=6139&view=rev Author: skayser Date: 2009-08-29 20:01:28 +0000 (Sat, 29 Aug 2009) Log Message: ----------- mtr: fixed the two-package-approach ... somewhat hacky Modified Paths: -------------- csw/mgar/pkg/mtr/trunk/Makefile Modified: csw/mgar/pkg/mtr/trunk/Makefile =================================================================== --- csw/mgar/pkg/mtr/trunk/Makefile 2009-08-29 15:09:08 UTC (rev 6138) +++ csw/mgar/pkg/mtr/trunk/Makefile 2009-08-29 20:01:28 UTC (rev 6139) @@ -1,7 +1,5 @@ # TODO # ---- -# * Find a way to somehow package out of the install dirs, we don't need -# merging for the two incompatible modulations/packages. # * Revisit curses autoconf detection. Maybe have a chat with upstream # as the README says that there are known, yet unsolved Solaris autoconf # recipe problems @@ -28,8 +26,22 @@ DISTFILES = $(GARNAME)-$(GARVERSION).tar.gz UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz -REQUIRED_PKGS = CSWncurses +PACKAGES = CSWmtr CSWmtrtiny +CATALOGNAME_CSWmtr = mtr +SPKG_DESC_CSWmtr = Combined traceroute and ping utility +REQUIRED_PKGS_CSWmtr = CSWgtk2 CSWlibatk CSWpango CSWlibcairo +REQUIRED_PKGS_CSWmtr += CSWggettextrt CSWglib2 CSWncurses +REQUIRED_PKGS_CSWmtr += CSWfconfig CSWftype2 CSWzlib +INCOMPATIBLE_PKGS_CSWmtr = CSWmtrtiny +EXTRA_PKGFILES_EXCLUDED_CSWmtr = $(sbindir)/mtr-nongui + +CATALOGNAME_CSWmtrtiny = mtr_tiny +SPKG_DESC_CSWmtrtiny = Combined traceroute and ping utility (CLI only version) +REQUIRED_PKGS_CSWmtrtiny = CSWncurses +INCOMPATIBLE_PKGS_CSWmtrtiny = CSWmtr +EXTRA_PKGFILES_EXCLUDED_CSWmtrtiny = $(sbindir)/mtr-gui + # 1) Check for socklen_t via sys/socket.h (not netinet/in.h) # 2) Don't cast sin_addr to (struct in_addr), cc bails out with invalid cast PATCHFILES = gar-base.diff @@ -38,34 +50,51 @@ CONFIGURE_ARGS = $(DIRPATHS) -# Make mtr setuid so that it can access raw sockets -PROTOTYPE_FILTER = awk ' \ - $$$$3 ~ /sbin\/mtr$$$$/ { $$$$4 = "4755" } \ - { print }' - -# We would like to have two packages: one with GUI support and one without -# GUI support. +# ------------------ BEWARE: NASTY HACK AHEAD -------------------- # +# We employ modulations to produce two mtr binaries, one with X support +# the other one without (less dependencies). We need to transform the +# name on merge so that the binaries don't clash and fiddle the correct +# binary into the proper path again on package assembly (via prototype). +# EXTRA_MODULATORS = GUI MODULATIONS_GUI = disable enable ifeq ($(GUI), disable) CONFIGURE_ARGS += --without-gtk -PACKAGES = CSWmtrtiny -CATALOGNAME = mtr_tiny -INCOMPATIBLE_PKGS = CSWmtr endif ifeq ($(GUI), enable) CONFIGURE_ARGS += --disable-gtktest -REQUIRED_PKGS += CSWgtk2 CSWlibatk CSWpango CSWlibcairo -REQUIRED_PKGS += CSWggettextrt CSWglib2 -INCOMPATIBLE_PKGS = CSWmtrtiny EXTRA_PKG_CONFIG_PATH = /opt/csw/X11/lib/pkgconfig endif -# -# /end modulations +# Rename the modulated binaries so that we can distinguish them +# Could also be done via ./configure --program-suffix, but the +# install-exec-hook for mtr doesn't honor the transformed name +# and fails. +EXTRA_PAX_ARGS_isa-sparcv8-gui-enable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-gui,p" +EXTRA_PAX_ARGS_isa-sparcv8-gui-disable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-nongui,p" +EXTRA_PAX_ARGS_isa-i386-gui-enable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-gui,p" +EXTRA_PAX_ARGS_isa-i386-gui-disable = -s ",^.$(sbindir)/mtr$$,$(sbindir)/mtr-nongui,p" + +# Simply copy all files, EXTRA_PAX_ARGS above takes care not to overwrite the +# mtr binary on merging. +MERGE_SCRIPTS_isa-sparcv8-gui-enable = copy-all +MERGE_SCRIPTS_isa-sparcv8-gui-disable = copy-all +MERGE_SCRIPTS_isa-i386-gui-enable = copy-all +MERGE_SCRIPTS_isa-i386-gui-disable = copy-all + +# 1) Move the GUI/non-GUI binaries to their proper location +# 2) Make mtr setuid so that it can access raw sockets +PROTOTYPE_FILTER = awk ' \ + $$$$3 ~ /^\/opt\/csw\/sbin\/mtr-/ { \ + $$$$3 = "/opt/csw/sbin/mtr=" $$$$3; \ + $$$$4 = "4755"; \ + } { print }' + +# ------------------ /BEWARE: NASTY HACK AHEAD -------------------- + include gar/category.mk # curses detection is somehow broken, ncurses.h is included but no curses This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 29 23:34:07 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 29 Aug 2009 21:34:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[6140] csw/mgar/pkg/firefox/branches Message-ID: Revision: 6140 http://gar.svn.sourceforge.net/gar/?rev=6140&view=rev Author: wbonnet Date: 2009-08-29 21:34:07 +0000 (Sat, 29 Aug 2009) Log Message: ----------- Fix patches for firefox3 under solaris 8. Move firefox2 package to maintenance branch Modified Paths: -------------- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums Added Paths: ----------- csw/mgar/pkg/firefox/branches/firefox2-maintenance/ csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/Makefile 2009-08-29 21:34:07 UTC (rev 6140) @@ -9,7 +9,7 @@ endef DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall +DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) @@ -48,6 +48,7 @@ PATCHFILES += solaris_lwp.h.diff PATCHFILES += nsNativeApSuportUnix.cpp.diff PATCHFILES += nsExceptionHandler.cpp.diff +PATCHFILES += SunOS5.mk.diff # pkg-config options EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig @@ -81,10 +82,13 @@ @cp $(FILEDIR)/stdbool.h $(WORK_BUILD)/memory/jemalloc @$(MAKECOOKIE) -pre-configure: +pre-configure-modulated: @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig -pre-install: +post-configure-modulated: + @gpatch -d$(WORKSRC) -p1 -F2 < download/autoconf.mk.diff + +pre-install-modulated: ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/firefox/bin/firefox . ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) @@ -94,7 +98,7 @@ ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) ( cp $(FILEDIR)/firefox.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/firefox.keys ) -post-install: +post-install-modulated: ( gfind $(WORK_INSTALL)/opt/csw -exec bash -c "file {} | ggrep ELF | ggrep -e 'executable' -e 'dynamic lib' | ggrep 'not stripped' && strip {}" \; ) ( 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/firefox -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) Modified: csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/checksums 2009-08-29 21:34:07 UTC (rev 6140) @@ -1,5 +1,7 @@ f9c7fb69080051172bd7357370731ba3 download/CSWfirefox.postinstall 6ede39c29b3672fb1fc1d8fe397a7863 download/CSWfirefox.postremove +9eaa0433fd8d1d7a3b39442b4b4c3e14 download/SunOS5.mk.diff +03e4d0e627dd508ea895c99c5e7ed184 download/autoconf.mk.diff 45bba282258a321e5e4f73a742bcc31b download/autoconf.mk.in.diff c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff Added: csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/branches/firefox3-packaging/files/autoconf.mk.diff 2009-08-29 21:34:07 UTC (rev 6140) @@ -0,0 +1,31 @@ +--- firefox.orig/config/autoconf.mk 2009-08-29 21:57:42.151999781 +0200 ++++ firefox/config/autoconf.mk 2009-08-29 22:05:33.912567245 +0200 +@@ -238,7 +238,7 @@ + + MOZ_PREF_EXTENSIONS = 1 + +-MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/usr/openwin/lib -R/usr/openwin/lib -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 ++MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 + + MOZ_ENABLE_GNOMEUI = 1 + MOZ_GNOMEUI_CFLAGS = -DORBIT2=1 -D_REENTRANT -D_PTHREADS -D__solaris__ -D_POSIX_PTHREAD_SEMANTICS -I/opt/csw/include/libgnomeui-2.0 -I/opt/csw/include/libgnome-2.0 -I/opt/csw/include/libgnomecanvas-2.0 -I/opt/csw/include/gtk-2.0 -I/opt/csw/include/libart-2.0 -I/opt/csw/include/gconf/2 -I/opt/csw/include/libbonoboui-2.0 -I/opt/csw/include/gnome-vfs-2.0 -I/opt/csw/lib/gnome-vfs-2.0/include -I/opt/csw/include/gnome-keyring-1 -I/opt/csw/include/glib-2.0 -I/opt/csw/lib/glib-2.0/include -I/opt/csw/include/orbit-2.0 -I/opt/csw/include/libbonobo-2.0 -I/opt/csw/include/bonobo-activation-2.0 -I/opt/csw/include/pango-1.0 -I/opt/csw/include/freetype2 -I/opt/csw/include -I/opt/csw/lib/gtk-2.0/include -I/opt/csw/include/atk-1.0 -I/opt/csw/include/cairo -I/opt/csw/include/pixman-1 -I/opt/csw/include/libpng12 -I/opt/csw/include/libxml2 -I/opt/csw/X11/include +@@ -270,7 +270,7 @@ + + CROSS_COMPILE = + +-OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include -I/usr/openwin/include ++OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + OS_CFLAGS = $(OS_CPPFLAGS) -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmieee -xstrconst -xbuiltin=%none -mt + OS_CXXFLAGS = $(OS_CPPFLAGS) -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmieee -xbuiltin=%none -features=tmplife -norunpath -mt + OS_LDFLAGS = -lpthread -M /usr/lib/ld/map.noexstk -xildoff -z lazyload -z combreloc -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -z ignore -R '$$ORIGIN:$$ORIGIN/..' +@@ -297,8 +297,8 @@ + PROFILE_USE_CFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + PROFILE_USE_LDFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + +-XCFLAGS = -I/usr/openwin/include +-XLDFLAGS = -L/usr/openwin/lib -R/usr/openwin/lib ++XCFLAGS = -I/opt/csw/X11/include ++XLDFLAGS = -L/opt/csw/X11/lib -R/opt/csw/X11/lib + XLIBS = -lX11 -lsocket -lnsl + + WIN_TOP_SRC = Modified: csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3.5-packaging/Makefile 2009-08-29 21:34:07 UTC (rev 6140) @@ -90,6 +90,7 @@ EXTRA_CONFIGURE_EXPORTS = XCFLAGS LD # LDFLAGS+=-L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 +LDFLAGS += -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 # PERL=/opt/csw/bin/perl # export PERL Modified: csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums =================================================================== --- csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums 2009-08-29 20:01:28 UTC (rev 6139) +++ csw/mgar/pkg/firefox/branches/firefox3.5-packaging/checksums 2009-08-29 21:34:07 UTC (rev 6140) @@ -9,7 +9,6 @@ 463d0bd49aa3726c1d9e19c18b38ce70 download/configure.diff f562a935a0fb2c5ad38f95af114d0a49 download/nsPluginsDirUnix.cpp.diff 0589ca8ad5f6744f573bb8ce0ba71d78 download/js.src.configure.diff -b940bc6f09956cb97b5a68f0fe9b73a6 download/SunOS5.mk.diff 3ad7b67c350157d9b54270139e36c107 download/lowpbe.c.diff 969c809ca9889cc8292ff50220b46efd download/softoken.config.mk.diff 1178db1603e82d8bfefefa200d7e7ce7 download/fipsaudt.c.diff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 29 23:37:41 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 29 Aug 2009 21:37:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[6141] csw/mgar/pkg/firefox/trunk Message-ID: Revision: 6141 http://gar.svn.sourceforge.net/gar/?rev=6141&view=rev Author: wbonnet Date: 2009-08-29 21:37:39 +0000 (Sat, 29 Aug 2009) Log Message: ----------- Upgrade to Firefox 3.0.13. Firefox2 package is moved to a maintenance branch Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/Makefile csw/mgar/pkg/firefox/trunk/checksums csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh Added Paths: ----------- csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff csw/mgar/pkg/firefox/trunk/files/configure.diff csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff csw/mgar/pkg/firefox/trunk/files/firefox.diff csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff csw/mgar/pkg/firefox/trunk/files/md5.h.diff csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff csw/mgar/pkg/firefox/trunk/files/packager.mk.diff csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff csw/mgar/pkg/firefox/trunk/files/stdbool.h Removed Paths: ------------- csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec csw/mgar/pkg/firefox/trunk/files/CSWfirefox.prototype Modified: csw/mgar/pkg/firefox/trunk/Makefile =================================================================== --- csw/mgar/pkg/firefox/trunk/Makefile 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/Makefile 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,69 +1,94 @@ GARNAME = firefox -GARVERSION = 2.0.0.20 -CATEGORIES = apps +GARVERSION = 3.0.13 +CATEGORIES = x11 DISTNAME = $(GARNAME) DESCRIPTION = Firefox Community Edition web browser define BLURB -The award-winning, free Web browser is better than ever. Browse the Web with confidence - Firefox protects you from viruses, spyware and pop-ups. Enjoy improvements to performance, ease of use and privacy. It's easy to import your favorites and settings and get started. Download Firefox now and get the most out of the Web. + The award-winning, free Web browser is better than ever. Browse the Web with confidence - Firefox protects you from viruses, spyware and pop-ups. Enjoy improvements to performance, ease of use and privacy. It's easy to import your favorites and settings and get started. Download Firefox now and get the most out of the Web. endef DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += $(call admfiles,CSWfirefox, postinstall postremove ) +DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff # 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/firefox/releases/$(GARVERSION)/source/ UPSTREAM_MASTER_SITES = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/ -PERL="/opt/csw/bin/perl" -CFLAGS=-xlibmil -CXXFLAGS=-xlibmil -xlibmopt -features=tmplife -norunpath -LDFLAGS=-R'\$\$ORIGIN:\$\$ORIGIN/..' -L/opt/csw/lib -R/opt/csw/lib +PACKAGES = CSWfirefox +CATALOGNAME_CSWfirefox = $(GARNAME) +SPKG_DESC_CSWfirefox = $(DESCRIPTION) -export PERL CFLAGS CXXFLAGS LDFLAGS +REQUIRED_PKGS_CSWfirefox = CSWdbusglib +REQUIRED_PKGS_CSWfirefox += CSWfconfig +REQUIRED_PKGS_CSWfirefox += CSWftype2 +REQUIRED_PKGS_CSWfirefox += CSWgconf2 +REQUIRED_PKGS_CSWfirefox += CSWglib2 +REQUIRED_PKGS_CSWfirefox += CSWgnomevfs2 +REQUIRED_PKGS_CSWfirefox += CSWgtk2 +REQUIRED_PKGS_CSWfirefox += CSWlibatk +REQUIRED_PKGS_CSWfirefox += CSWlibcairo +REQUIRED_PKGS_CSWfirefox += CSWlibdbus +REQUIRED_PKGS_CSWfirefox += CSWlibgnome +REQUIRED_PKGS_CSWfirefox += CSWlibx11 +REQUIRED_PKGS_CSWfirefox += CSWlibxrender +REQUIRED_PKGS_CSWfirefox += CSWpango +REQUIRED_PKGS_CSWfirefox += CSWsqlite3rt -CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/firefox +# Defines the list of patches to be applied to the sources PATCHFILES = autoconf.mk.in.diff -TEST_SCRIPTS = +PATCHFILES += configure.diff +PATCHFILES += nsPluginsDirUnix.cpp.diff +PATCHFILES += packager.mk.diff +PATCHFILES += jemalloc.c.diff +PATCHFILES += nsMathUtils.h.diff +PATCHFILES += file_id.cc.diff +PATCHFILES += md5.h.diff +PATCHFILES += solaris_lwp.h.diff +PATCHFILES += nsNativeApSuportUnix.cpp.diff +PATCHFILES += nsExceptionHandler.cpp.diff +PATCHFILES += SunOS5.mk.diff +# pkg-config options +EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig + +PERL=/opt/csw/bin/perl +CXXFLAGS +=-xlibmil -xlibmopt -features=tmplife -norunpath +CFLAGS +=-xlibmil -D__solaris__ +CFLAGS += -DG_HAVE_ISO_VARARGS +CXXFLAGS += -DG_HAVE_ISO_VARARGS +CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include +XCFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + +EXTRA_CONFIGURE_EXPORTS = XCFLAGS + +LDFLAGS+=-L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 + +export PERL CFLAGS CXXFLAGS LDFLAGS + +CONFIGURE_ARGS = --prefix=/opt/csw/mozilla/firefox --disable-crashreporter + +TEST_SCRIPTS = + +LICENSE = LICENSE + # Variable for direct access to working dir WORK_BUILD = $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/$(GARNAME) WORK_INSTALL = $(WORKROOTDIR)/install-$(firstword $(MODULATIONS)) -# Dependencies tracking -REQUIRED_PKGS_CSWfirefox += CSWbonobo2 -REQUIRED_PKGS_CSWfirefox += CSWfconfig -REQUIRED_PKGS_CSWfirefox += CSWftype2 -REQUIRED_PKGS_CSWfirefox += CSWgconf2 -REQUIRED_PKGS_CSWfirefox += CSWggettextrt -REQUIRED_PKGS_CSWfirefox += CSWglib2 -REQUIRED_PKGS_CSWfirefox += CSWgnomekeyring -REQUIRED_PKGS_CSWfirefox += CSWgnomevfs2 -REQUIRED_PKGS_CSWfirefox += CSWgtk2 -REQUIRED_PKGS_CSWfirefox += CSWlibart -REQUIRED_PKGS_CSWfirefox += CSWlibatk -REQUIRED_PKGS_CSWfirefox += CSWlibbonoboui -REQUIRED_PKGS_CSWfirefox += CSWlibcairo -REQUIRED_PKGS_CSWfirefox += CSWlibgnome -REQUIRED_PKGS_CSWfirefox += CSWlibgnomecanvas -REQUIRED_PKGS_CSWfirefox += CSWlibgnomeui -REQUIRED_PKGS_CSWfirefox += CSWlibidl -REQUIRED_PKGS_CSWfirefox += CSWlibpopt -REQUIRED_PKGS_CSWfirefox += CSWlibxft2 -REQUIRED_PKGS_CSWfirefox += CSWlibxrender -REQUIRED_PKGS_CSWfirefox += CSWorbit2 -REQUIRED_PKGS_CSWfirefox += CSWpango -REQUIRED_PKGS_CSWfirefox += CSWzlib - post-extract: @mv $(WORKROOTDIR)/build-$(firstword $(MODULATIONS))/mozilla $(WORK_BUILD) + @cp $(FILEDIR)/stdbool.h $(WORK_BUILD)/memory/jemalloc @$(MAKECOOKIE) -pre-configure: +pre-configure-modulated: @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig -pre-install: +post-configure-modulated: + @gpatch -d$(WORKSRC) -p1 -F2 < download/autoconf.mk.diff + +pre-install-modulated: ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/firefox/bin/firefox . ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) @@ -72,17 +97,11 @@ ( cp $(FILEDIR)/firefox.desktop $(WORK_INSTALL)/opt/csw/share/applications/firefox.desktop ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/gnome/mime-info ) ( cp $(FILEDIR)/firefox.keys $(WORK_INSTALL)/opt/csw/share/gnome/mime-info/firefox.keys ) - @ginstall -d $(WORK_INSTALL)$(datadir)/doc/$(GARNAME) - @gcp -fp $(WORK_BUILD)/LICENSE $(WORK_INSTALL)$(datadir)/doc/$(GARNAME)/License.txt -post-install: +post-install-modulated: ( 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/firefox/bin/firefox-config $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config.temp && gsed -e s\_-L$(WORK_INSTALL)/opt/csw/lib\_\_g $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config.temp > $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config && rm $(WORK_INSTALL)/opt/csw/mozilla/firefox/bin/firefox-config.temp ) - ( mv $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc.temp && gsed -e s\_-L$(WORK_INSTALL)/opt/csw/lib\_\_g $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc.temp > $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-nspr.pc && rm $(WORK_INSTALL)/opt/csw/mozilla/firefox/lib/pkgconfig/firefox-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/firefox -name "*.js" -exec bash -c " mv {} {}.temp && gsed -e s\_`pwd`/$(WORK_BUILD)/\_\_g {}.temp > {} && rm {}.temp" \; ) ( gfind $(WORK_INSTALL)/opt/csw/mozilla/firefox -name "*.jar" -exec bash -c "`pwd`/removeBuildPathFromJar.sh {} `pwd` $(WORKDIR) $(DISTNAME)" \; ) -# include the rest of GAR include gar/category.mk - Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,5 +1,16 @@ -35b08b743fae892fc69aed10cdb3a7cf download/CSWfirefox.gspec f9c7fb69080051172bd7357370731ba3 download/CSWfirefox.postinstall 6ede39c29b3672fb1fc1d8fe397a7863 download/CSWfirefox.postremove -ffec5571cbae2a9fae89ba6a3d3f81c5 download/autoconf.mk.in.diff -f3718fefd01c8edc007ec0b416a8a7b8 download/firefox-2.0.0.20-source.tar.bz2 +9eaa0433fd8d1d7a3b39442b4b4c3e14 download/SunOS5.mk.diff +03e4d0e627dd508ea895c99c5e7ed184 download/autoconf.mk.diff +45bba282258a321e5e4f73a742bcc31b download/autoconf.mk.in.diff +c869762735a41bb30f417e510ccb7f31 download/configure.diff +a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff +040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 +a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff +18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff +1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff +ca4162516d8c09deaa9f0b6f3b3ecffb download/nsMathUtils.h.diff +d8f7ec0df9f63317ff2d8578d9dbe3ff download/nsNativeApSuportUnix.cpp.diff +f562a935a0fb2c5ad38f95af114d0a49 download/nsPluginsDirUnix.cpp.diff +d0d942fa0c012abcb2a45b1d0fc99051 download/packager.mk.diff +29e0ca858fe3aef24d5be1300dc39735 download/solaris_lwp.h.diff Deleted: csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec =================================================================== --- csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/files/CSWfirefox.gspec 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,6 +0,0 @@ -%var bitname firefox -%var pkgname CSWfirefox -%include url file://%{PKGLIB}/csw_dyndepend.gspec -%copyright - -Please see /opt/csw/share/doc/%{GARNAME}/License.txt for license information Added: csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/SunOS5.mk.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,11 @@ +--- firefox.orig/security/coreconf/SunOS5.mk 2009-08-29 23:08:08.804586828 +0200 ++++ firefox/security/coreconf/SunOS5.mk 2009-08-29 23:08:32.556961245 +0200 +@@ -104,7 +104,7 @@ + endif + endif + +-INCLUDES += -I/usr/dt/include -I/usr/openwin/include ++INCLUDES += -I/usr/dt/include -I/opt/csw/X11/include + + RANLIB = echo + CPU_ARCH = sparc Added: csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/autoconf.mk.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,31 @@ +--- firefox.orig/config/autoconf.mk 2009-08-29 21:57:42.151999781 +0200 ++++ firefox/config/autoconf.mk 2009-08-29 22:05:33.912567245 +0200 +@@ -238,7 +238,7 @@ + + MOZ_PREF_EXTENSIONS = 1 + +-MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/usr/openwin/lib -R/usr/openwin/lib -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 ++MOZ_CAIRO_LIBS = -L/opt/csw/lib -lcairo -lfreetype -lz -lfontconfig -L/opt/csw/lib -L/opt/csw/X11/lib -lXrender -lcairo -lX11 + + MOZ_ENABLE_GNOMEUI = 1 + MOZ_GNOMEUI_CFLAGS = -DORBIT2=1 -D_REENTRANT -D_PTHREADS -D__solaris__ -D_POSIX_PTHREAD_SEMANTICS -I/opt/csw/include/libgnomeui-2.0 -I/opt/csw/include/libgnome-2.0 -I/opt/csw/include/libgnomecanvas-2.0 -I/opt/csw/include/gtk-2.0 -I/opt/csw/include/libart-2.0 -I/opt/csw/include/gconf/2 -I/opt/csw/include/libbonoboui-2.0 -I/opt/csw/include/gnome-vfs-2.0 -I/opt/csw/lib/gnome-vfs-2.0/include -I/opt/csw/include/gnome-keyring-1 -I/opt/csw/include/glib-2.0 -I/opt/csw/lib/glib-2.0/include -I/opt/csw/include/orbit-2.0 -I/opt/csw/include/libbonobo-2.0 -I/opt/csw/include/bonobo-activation-2.0 -I/opt/csw/include/pango-1.0 -I/opt/csw/include/freetype2 -I/opt/csw/include -I/opt/csw/lib/gtk-2.0/include -I/opt/csw/include/atk-1.0 -I/opt/csw/include/cairo -I/opt/csw/include/pixman-1 -I/opt/csw/include/libpng12 -I/opt/csw/include/libxml2 -I/opt/csw/X11/include +@@ -270,7 +270,7 @@ + + CROSS_COMPILE = + +-OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include -I/usr/openwin/include ++OS_CPPFLAGS = -I/opt/csw/include -I/opt/csw/X11/include + OS_CFLAGS = $(OS_CPPFLAGS) -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmil -D__solaris__ -DG_HAVE_ISO_VARARGS -xlibmieee -xstrconst -xbuiltin=%none -mt + OS_CXXFLAGS = $(OS_CPPFLAGS) -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmil -xlibmopt -features=tmplife -norunpath -DG_HAVE_ISO_VARARGS -xlibmieee -xbuiltin=%none -features=tmplife -norunpath -mt + OS_LDFLAGS = -lpthread -M /usr/lib/ld/map.noexstk -xildoff -z lazyload -z combreloc -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -L/usr/lib/lwp -L/opt/csw/mozilla/firefox/lib -R/opt/csw/mozilla/firefox/lib -L/opt/csw/lib -R/opt/csw/lib -lsqlite3 -z ignore -R '$$ORIGIN:$$ORIGIN/..' +@@ -297,8 +297,8 @@ + PROFILE_USE_CFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + PROFILE_USE_LDFLAGS = -xlinkopt=2 -xprofile=use:/home/wbonnet/mgar/pkg/firefox/branches/firefox3-packaging/work/build-isa-sparcv8/firefox/browser + +-XCFLAGS = -I/usr/openwin/include +-XLDFLAGS = -L/usr/openwin/lib -R/usr/openwin/lib ++XCFLAGS = -I/opt/csw/X11/include ++XLDFLAGS = -L/opt/csw/X11/lib -R/opt/csw/X11/lib + XLIBS = -lX11 -lsocket -lnsl + + WIN_TOP_SRC = Modified: csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/files/autoconf.mk.in.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,7 +1,7 @@ diff --speed-large-files --minimal -Nru firefox.orig/config/autoconf.mk.in firefox/config/autoconf.mk.in ---- firefox.orig/config/autoconf.mk.in 2006-09-14 14:07:03.000000000 -0400 -+++ firefox/config/autoconf.mk.in 2007-02-25 07:21:36.245899000 -0500 -@@ -57,14 +57,14 @@ +--- firefox.orig/config/autoconf.mk.in 2008-09-18 22:00:51.000000000 +0000 ++++ firefox/config/autoconf.mk.in 2008-11-15 20:28:25.577542600 +0000 +@@ -58,14 +58,14 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ @@ -10,13 +10,13 @@ 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 - +-idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) ++idldir = $(datadir)/idl + +-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) ++installdir = $(libdir) ++sdkdir = $(libdir) + DIST = $(DEPTH)/dist + LIBXUL_SDK = @LIBXUL_SDK@ Added: csw/mgar/pkg/firefox/trunk/files/configure.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/configure.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/configure.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,25 @@ +diff --speed-large-files --minimal -Nru firefox.orig/configure firefox/configure +--- firefox.orig/configure 2009-07-07 21:46:57.267011389 +0200 ++++ firefox/configure 2009-07-07 21:49:10.319971404 +0200 +@@ -4382,8 +4382,8 @@ + /usr/local/x11r5/include \ + /usr/lpp/Xamples/include \ + \ +- /usr/openwin/include \ +- /usr/openwin/share/include \ ++ /opt/csw/X11/include \ ++ /opt/csw/X11/share/include \ + ; \ + do + if test -r "$ac_dir/$x_direct_test_include"; then +@@ -4458,8 +4458,8 @@ + /usr/lpp/Xamples/lib \ + /lib/usr/lib/X11 \ + \ +- /usr/openwin/lib \ +- /usr/openwin/share/lib \ ++ /opt/csw/X11/lib \ ++ /opt/csw/X11/share/lib \ + ; \ + do + for ac_extension in a so sl; do Added: csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/file_id.cc.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,11 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc firefox/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc +--- firefox.orig/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc 2007-10-21 15:36:06.000000000 +0000 ++++ firefox/toolkit/crashreporter/google-breakpad/src/common/solaris/file_id.cc 2008-11-24 22:07:22.563549000 +0000 +@@ -37,6 +37,7 @@ + #include + #include + #include ++#include + #include + #include + #include Added: csw/mgar/pkg/firefox/trunk/files/firefox.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/firefox.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,15 @@ +diff --speed-large-files --minimal -Nru firefox.orig/browser/app/firefox firefox/browser/app/firefox +--- firefox.orig/browser/app/firefox 2009-08-27 23:43:31.266507053 +0200 ++++ firefox/browser/app/firefox 2009-08-27 23:44:53.015182925 +0200 +@@ -54,6 +54,11 @@ + + moz_libdir=/opt/csw/mozilla/firefox/lib + ++if [ "`uname -r`" = "5.8" ] ; then ++ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp ++ LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++fi ++ + # Use run-mozilla.sh in the current dir if it exists + # If not, then start resolving symlinks until we find run-mozilla.sh + found=0 Added: csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/jemalloc.c.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,28 @@ +diff --speed-large-files --minimal -Nru firefox.orig/memory/jemalloc/jemalloc.c firefox/memory/jemalloc/jemalloc.c +--- firefox.orig/memory/jemalloc/jemalloc.c 2009-07-08 19:50:45.390553748 +0200 ++++ firefox/memory/jemalloc/jemalloc.c 2009-07-08 19:51:32.355474070 +0200 +@@ -312,9 +312,9 @@ + #endif + #include + #include +-#include ++#include "stdbool.h" + #include +-#include ++#include + #include + #include + #ifndef MOZ_MEMORY_DARWIN +@@ -422,6 +422,12 @@ + #endif + #endif + ++#define issetugid() 0 ++char *strerror_r(int errnum, char *buf, size_t buflen) ++{ ++ strncpy(buf, strerror(errnum), buflen); ++} ++ + #define SIZEOF_PTR (1U << SIZEOF_PTR_2POW) + + /* sizeof(int) == (1U << SIZEOF_INT_2POW). */ Added: csw/mgar/pkg/firefox/trunk/files/md5.h.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/md5.h.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/md5.h.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/google-breakpad/src/common/md5.h firefox/toolkit/crashreporter/google-breakpad/src/common/md5.h +--- firefox.orig/toolkit/crashreporter/google-breakpad/src/common/md5.h 2007-10-21 15:36:05.000000000 +0000 ++++ firefox/toolkit/crashreporter/google-breakpad/src/common/md5.h 2008-11-24 21:59:04.857036600 +0000 +@@ -3,7 +3,7 @@ + #ifndef COMMON_MD5_H__ + #define COMMON_MD5_H__ + +-#include ++#include + + typedef uint32_t u32; + typedef uint8_t u8; Added: csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsExceptionHandler.cpp.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/nsExceptionHandler.cpp firefox/toolkit/crashreporter/nsExceptionHandler.cpp +--- firefox.orig/toolkit/crashreporter/nsExceptionHandler.cpp 2008-07-20 22:19:32.000000000 +0000 ++++ firefox/toolkit/crashreporter/nsExceptionHandler.cpp 2008-11-24 21:46:58.112282800 +0000 +@@ -301,7 +301,7 @@ + else if (pid == 0) { + // need to clobber this, as libcurl might load NSS, + // and we want it to load the system NSS. +- unsetenv("LD_LIBRARY_PATH"); ++ // unsetenv("LD_LIBRARY_PATH"); + (void) execl(crashReporterPath, + crashReporterPath, minidumpPath, (char*)0); + _exit(1); Added: csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsMathUtils.h.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,14 @@ +diff --speed-large-files --minimal -Nru firefox.orig/xpcom/ds/nsMathUtils.h firefox/xpcom/ds/nsMathUtils.h +--- firefox.orig/xpcom/ds/nsMathUtils.h 2008-04-02 00:21:31.000000000 -0400 ++++ firefox/xpcom/ds/nsMathUtils.h 2008-11-22 18:22:11.384668100 -0500 +@@ -42,6 +42,10 @@ + #include + #include + ++# define floorf(a) floor (a) ++# define ceilf(a) ceil (a) ++# define round(a) floor(a + 0.5) ++ + /* + * round + */ Added: csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsNativeApSuportUnix.cpp.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,31 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/xre/nsNativeAppSupportUnix.cpp firefox/toolkit/xre/nsNativeAppSupportUnix.cpp +--- firefox.orig/toolkit/xre/nsNativeAppSupportUnix.cpp 2008-02-21 10:55:06.000000000 +0000 ++++ firefox/toolkit/xre/nsNativeAppSupportUnix.cpp 2008-11-24 22:14:26.002326100 +0000 +@@ -237,19 +237,19 @@ + // We will load gail, atk-bridge by ourself later + // We can't run atk-bridge init here, because gail get the control + // Set GNOME_ACCESSIBILITY to 0 can avoid this +- static const char *accEnv = "GNOME_ACCESSIBILITY"; +- const char *accOldValue = getenv(accEnv); +- setenv(accEnv, "0", 1); ++// static const char *accEnv = "GNOME_ACCESSIBILITY"; ++// const char *accOldValue = getenv(accEnv); ++// setenv(accEnv, "0", 1); + #endif + + gnome_program_init("Gecko", "1.0", libgnomeui_module_info_get(), gArgc, gArgv, NULL); + + #ifdef ACCESSIBILITY +- if (accOldValue) { +- setenv(accEnv, accOldValue, 1); +- } else { +- unsetenv(accEnv); +- } ++// if (accOldValue) { ++// setenv(accEnv, accOldValue, 1); ++// } else { ++// unsetenv(accEnv); ++// } + #endif + + // Careful! These libraries cannot be unloaded after this point because Added: csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/nsPluginsDirUnix.cpp.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/modules/plugin/base/src/nsPluginsDirUnix.cpp firefox/modules/plugin/base/src/nsPluginsDirUnix.cpp +--- firefox.orig/modules/plugin/base/src/nsPluginsDirUnix.cpp 2009-07-07 21:52:50.550842128 +0200 ++++ firefox/modules/plugin/base/src/nsPluginsDirUnix.cpp 2009-07-07 21:53:10.444317091 +0200 +@@ -76,7 +76,7 @@ + #define DEFAULT_X11_PATH "/usr/lib" + #define LOCAL_PLUGIN_DLL_ALT_SUFFIX ".a" + #elif defined(SOLARIS) +-#define DEFAULT_X11_PATH "/usr/openwin/lib/" ++#define DEFAULT_X11_PATH "/opt/csw/X11/lib/" + #elif defined(LINUX) + #define DEFAULT_X11_PATH "/usr/X11R6/lib/" + #else Added: csw/mgar/pkg/firefox/trunk/files/packager.mk.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/packager.mk.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/packager.mk.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,21 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/mozapps/installer/packager.mk firefox/toolkit/mozapps/installer/packager.mk +--- firefox.orig/toolkit/mozapps/installer/packager.mk 2008-04-28 19:14:12.000000000 +0000 ++++ firefox/toolkit/mozapps/installer/packager.mk 2008-11-15 20:28:41.679741300 +0000 +@@ -363,7 +363,7 @@ + endif # MOZ_PKG_MANIFEST + ifndef PKG_SKIP_STRIP + @echo "Stripping package directory..." +- @cd $(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME); find . ! -type d \ ++ @cd $(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME); gfind . ! -type d \ + ! -name "*.js" \ + ! -name "*.xpt" \ + ! -name "*.gif" \ +@@ -426,7 +426,7 @@ + (cd $(DIST)/sdk/include && tar $(TAR_CREATE_FLAGS) - .) | \ + (cd $(DESTDIR)$(includedir)/stable && tar -xf -) + # The dist/include has module subdirectories that we need to flatten +- find $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir)/unstable \; ++ gfind $(DIST)/include -xtype f -exec $(SYSINSTALL) $(IFLAGS1) {} $(DESTDIR)$(includedir)/unstable \; + # IDL directory is stable (dist/sdk/idl) and unstable (dist/idl) + $(NSINSTALL) -D $(DESTDIR)$(idldir)/stable + $(NSINSTALL) -D $(DESTDIR)$(idldir)/unstable Added: csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/solaris_lwp.h.diff 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,12 @@ +diff --speed-large-files --minimal -Nru firefox.orig/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h firefox/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h +--- firefox.orig/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h 2008-03-19 01:48:21.000000000 +0000 ++++ firefox/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/solaris_lwp.h 2008-11-24 21:18:58.900019700 +0000 +@@ -41,7 +41,7 @@ + #endif + + #include +-#include ++#include + #include + #include + Added: csw/mgar/pkg/firefox/trunk/files/stdbool.h =================================================================== --- csw/mgar/pkg/firefox/trunk/files/stdbool.h (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/stdbool.h 2009-08-29 21:37:39 UTC (rev 6141) @@ -0,0 +1,38 @@ +/* +* Copyright (c) 2000 Jeroen Ruigrok van der Werven +* All rights reserved. +* +* Redistribution and use in source and binary forms, with or without +* modification, are permitted provided that the following conditions +* are met: +* 1. Redistributions of source code must retain the above copyright +* notice, this list of conditions and the following disclaimer. +* 2. Redistributions in binary form must reproduce the above copyright +* notice, this list of conditions and the following disclaimer in the +* documentation and/or other materials provided with the distribution. +* +* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +* SUCH DAMAGE. +* +* $FreeBSD: src/include/stdbool.h,v 1.6 2002/08/16 07:33:14 alfred Exp $ +*/ + +#ifndef _STDBOOL_H_ +#define _STDBOOL_H_ +#define __bool_true_false_are_defined 1 +#ifndef __cplusplus +#define false 0 +#define true 1 +#define bool _Bool +#endif /* !__cplusplus */ +#endif /* !_STDBOOL_H_ */ + Modified: csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh =================================================================== --- csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh 2009-08-29 21:34:07 UTC (rev 6140) +++ csw/mgar/pkg/firefox/trunk/removeBuildPathFromJar.sh 2009-08-29 21:37:39 UTC (rev 6141) @@ -1,4 +1,4 @@ -#!/opt/csw/bin/bash +#!/opt/csw/bin/bash -x if [ -d ~/.tempextractjar ] ; then @@ -14,7 +14,9 @@ gfind . -name "*.js" -exec bash -x -c " mv {} {}.temp && gsed -e s_\$REPLACEDIR\_\_g {}.temp > {} && rm {}.temp" \; -rm $BACKUP_OLD_DIR/$1 +rm $1 jar cvf $BACKUP_OLD_DIR/$1 * cd $BACKUP_OLD_DIR + +rm -fr ~/.tempextractjar This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wbonnet at users.sourceforge.net Sat Aug 29 23:48:19 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sat, 29 Aug 2009 21:48:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[6142] csw/mgar/pkg/firefox/trunk/files/.mozconfig Message-ID: Revision: 6142 http://gar.svn.sourceforge.net/gar/?rev=6142&view=rev Author: wbonnet Date: 2009-08-29 21:48:19 +0000 (Sat, 29 Aug 2009) Log Message: ----------- Update .mozconfig Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/files/.mozconfig Modified: csw/mgar/pkg/firefox/trunk/files/.mozconfig =================================================================== --- csw/mgar/pkg/firefox/trunk/files/.mozconfig 2009-08-29 21:37:39 UTC (rev 6141) +++ csw/mgar/pkg/firefox/trunk/files/.mozconfig 2009-08-29 21:48:19 UTC (rev 6142) @@ -8,7 +8,7 @@ ac_add_options --disable-debug ac_add_options --disable-tests ac_add_options --enable-xft -ac_add_options --enable-default-toolkit=gtk2 +ac_add_options --enable-default-toolkit=cairo-gtk2 ac_add_options --disable-auto-deps ac_add_options --enable-optimize="-xO3" ac_add_options --disable-updater This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Sun Aug 30 10:55:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 30 Aug 2009 08:55:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6143] csw/mgar/pkg/syslog_ng/trunk Message-ID: Revision: 6143 http://gar.svn.sourceforge.net/gar/?rev=6143&view=rev Author: wahwah Date: 2009-08-30 08:55:29 +0000 (Sun, 30 Aug 2009) Log Message: ----------- syslog_ng: -x is better than -e. Modified Paths: -------------- csw/mgar/pkg/syslog_ng/trunk/checksums csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall Modified: csw/mgar/pkg/syslog_ng/trunk/checksums =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-29 21:48:19 UTC (rev 6142) +++ csw/mgar/pkg/syslog_ng/trunk/checksums 2009-08-30 08:55:29 UTC (rev 6143) @@ -1,5 +1,5 @@ -5189766b79c5ada82fcddda76f1d8d01 download/CSWsyslogng.postremove -c714cbd4360ac0af8495697de2001c41 download/CSWsyslogng.preinstall +91e692a52c4c9668e3bcf8b8816425c3 download/CSWsyslogng.postremove +7f8beb7c27a9b9ddf0ff1add6a5d4e50 download/CSWsyslogng.preinstall fd0f7ccdc627d08a00a2e57fdbfd51d8 download/cswsyslog_ng 69bad95775b98d26e52db8a8292e2790 download/syslog-ng.conf.CSW 86c39779261545d2289e9c309e262b8d download/syslog-ng_3.0.4.tar.gz Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-29 21:48:19 UTC (rev 6142) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.postremove 2009-08-30 08:55:29 UTC (rev 6143) @@ -1,6 +1,6 @@ #!/bin/sh -if [ -e /usr/sbin/svcadm ]; then +if [ -x /usr/sbin/svcadm ]; then echo "Enabling svc:/system/system-log:default" /usr/sbin/svcadm enable svc:/system/system-log:default fi Modified: csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall =================================================================== --- csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-29 21:48:19 UTC (rev 6142) +++ csw/mgar/pkg/syslog_ng/trunk/files/CSWsyslogng.preinstall 2009-08-30 08:55:29 UTC (rev 6143) @@ -1,6 +1,6 @@ #!/bin/sh -if [ -e /usr/sbin/svcadm ]; then +if [ -x /usr/sbin/svcadm ]; then echo "Disabling svc:/system/system-log:default" /usr/sbin/svcadm disable svc:/system/system-log:default 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 Sun Aug 30 17:44:17 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 30 Aug 2009 15:44:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[6144] csw/mgar/pkg/firefox/trunk Message-ID: Revision: 6144 http://gar.svn.sourceforge.net/gar/?rev=6144&view=rev Author: wbonnet Date: 2009-08-30 15:44:17 +0000 (Sun, 30 Aug 2009) Log Message: ----------- Fix patch detection Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/Makefile csw/mgar/pkg/firefox/trunk/checksums Added Paths: ----------- csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff Modified: csw/mgar/pkg/firefox/trunk/Makefile =================================================================== --- csw/mgar/pkg/firefox/trunk/Makefile 2009-08-30 08:55:29 UTC (rev 6143) +++ csw/mgar/pkg/firefox/trunk/Makefile 2009-08-30 15:44:17 UTC (rev 6144) @@ -9,7 +9,7 @@ endef DISTFILES = $(GARNAME)-$(GARVERSION)-source.tar.bz2 -DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff +DISTFILES += CSWfirefox.postremove CSWfirefox.postinstall autoconf.mk.diff firefox.diff firefox.dist.bin.diff # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = (\d+(?:\.\d+)*) @@ -86,11 +86,13 @@ @cp $(FILEDIR)/.mozconfig $(WORK_BUILD)/.mozconfig post-configure-modulated: - @gpatch -d$(WORKSRC) -p1 -F2 < download/autoconf.mk.diff + @grep openwin $(WORKSRC)/config/autoconf.mk && gpatch -d$(WORKSRC) --forward -p1 -F2 < download/autoconf.mk.diff || true pre-install-modulated: + @grep "LD_LIBRARY_PATH=.LD_LIBRARY_PATH:/usr/lib/lwp" $(WORKSRC)/browser/app/firefox || gpatch -d$(WORKSRC) --forward -p1 -F2 < download/firefox.diff + @grep "LD_LIBRARY_PATH=.LD_LIBRARY_PATH:/usr/lib/lwp" $(WORKSRC)/dist/bin/firefox || gpatch -d$(WORKSRC) --forward -p1 -F2 < download/firefox.dist.bin.diff ( if [ ! -d $(WORK_INSTALL)/opt/csw/bin ] ; then mkdir -p $(WORK_INSTALL)/opt/csw/bin ; fi ) - ( cd $(WORK_INSTALL)/opt/csw/bin && ln -sf ../mozilla/firefox/bin/firefox . ) + ( cd $(WORK_INSTALL)/opt/csw/bin ; rm -f firefox ; ln -sf ../mozilla/firefox/bin/firefox . ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/pixmaps ) ( cp $(WORK_BUILD)/other-licenses/branding/firefox/mozicon128.png $(WORK_INSTALL)/opt/csw/share/pixmaps/firefox.png ) ( mkdir -p $(WORK_INSTALL)/opt/csw/share/applications ) Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 08:55:29 UTC (rev 6143) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 15:44:17 UTC (rev 6144) @@ -6,6 +6,8 @@ c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff 040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 +7343359131b4b31b985ba59fc9a2e3fe download/firefox.diff +1a32b697eeec4c0e3cb844407b8253ca download/firefox.dist.bin.diff a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff 18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff 1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff Added: csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff (rev 0) +++ csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff 2009-08-30 15:44:17 UTC (rev 6144) @@ -0,0 +1,15 @@ +diff --speed-large-files --minimal -Nru firefox.orig/dist/bin/firefox firefox/dist/bin/firefox +--- firefox.orig/dist/bin/firefox 2009-08-27 23:43:31.266507053 +0200 ++++ firefox/dist/bin/firefox 2009-08-27 23:44:53.015182925 +0200 +@@ -54,6 +54,11 @@ + + moz_libdir=/opt/csw/mozilla/firefox/lib + ++if [ "`uname -r`" = "5.8" ] ; then ++ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp ++ LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++fi ++ + # Use run-mozilla.sh in the current dir if it exists + # If not, then start resolving symlinks until we find run-mozilla.sh + found=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 Sun Aug 30 22:34:31 2009 From: wbonnet at users.sourceforge.net (wbonnet at users.sourceforge.net) Date: Sun, 30 Aug 2009 20:34:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[6145] csw/mgar/pkg/firefox/trunk Message-ID: Revision: 6145 http://gar.svn.sourceforge.net/gar/?rev=6145&view=rev Author: wbonnet Date: 2009-08-30 20:34:31 +0000 (Sun, 30 Aug 2009) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/firefox/trunk/checksums csw/mgar/pkg/firefox/trunk/files/firefox.diff csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff Modified: csw/mgar/pkg/firefox/trunk/checksums =================================================================== --- csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 15:44:17 UTC (rev 6144) +++ csw/mgar/pkg/firefox/trunk/checksums 2009-08-30 20:34:31 UTC (rev 6145) @@ -6,8 +6,8 @@ c869762735a41bb30f417e510ccb7f31 download/configure.diff a71a4afaabc4d067f30d8fb184fea520 download/file_id.cc.diff 040d01a1e22a1ec1b28188479df06007 download/firefox-3.0.13-source.tar.bz2 -7343359131b4b31b985ba59fc9a2e3fe download/firefox.diff -1a32b697eeec4c0e3cb844407b8253ca download/firefox.dist.bin.diff +125a5da522c7b0cc834ba6d97694d162 download/firefox.diff +162d4cf2d198196e94f6878d60dc7a26 download/firefox.dist.bin.diff a19792f0b67f28c9227d19d069369369 download/jemalloc.c.diff 18b0cdc902caa4172b7f2d473239c9a9 download/md5.h.diff 1a3d61e09378d28d9bc9f3df45a224bc download/nsExceptionHandler.cpp.diff Modified: csw/mgar/pkg/firefox/trunk/files/firefox.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.diff 2009-08-30 15:44:17 UTC (rev 6144) +++ csw/mgar/pkg/firefox/trunk/files/firefox.diff 2009-08-30 20:34:31 UTC (rev 6145) @@ -1,13 +1,14 @@ diff --speed-large-files --minimal -Nru firefox.orig/browser/app/firefox firefox/browser/app/firefox --- firefox.orig/browser/app/firefox 2009-08-27 23:43:31.266507053 +0200 +++ firefox/browser/app/firefox 2009-08-27 23:44:53.015182925 +0200 -@@ -54,6 +54,11 @@ +@@ -54,6 +54,12 @@ moz_libdir=/opt/csw/mozilla/firefox/lib +if [ "`uname -r`" = "5.8" ] ; then + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp + LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++ export LD_LIBRARY_PATH LD_LIBRARY_PATH_64 +fi + # Use run-mozilla.sh in the current dir if it exists Modified: csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff =================================================================== --- csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff 2009-08-30 15:44:17 UTC (rev 6144) +++ csw/mgar/pkg/firefox/trunk/files/firefox.dist.bin.diff 2009-08-30 20:34:31 UTC (rev 6145) @@ -1,13 +1,14 @@ diff --speed-large-files --minimal -Nru firefox.orig/dist/bin/firefox firefox/dist/bin/firefox --- firefox.orig/dist/bin/firefox 2009-08-27 23:43:31.266507053 +0200 +++ firefox/dist/bin/firefox 2009-08-27 23:44:53.015182925 +0200 -@@ -54,6 +54,11 @@ +@@ -54,6 +54,12 @@ moz_libdir=/opt/csw/mozilla/firefox/lib +if [ "`uname -r`" = "5.8" ] ; then + LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/lwp + LD_LIBRARY_PATH_64=$LD_LIBRARY_PATH_64:/usr/lib/lwp/64 ++ export LD_LIBRARY_PATH LD_LIBRARY_PATH_64 +fi + # Use run-mozilla.sh in the current dir if it exists This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 31 14:27:18 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 12:27:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[6146] csw/mgar/pkg/jdk6/trunk Message-ID: Revision: 6146 http://gar.svn.sourceforge.net/gar/?rev=6146&view=rev Author: dmichelsen Date: 2009-08-31 12:27:18 +0000 (Mon, 31 Aug 2009) Log Message: ----------- jdk6: Update to u16 Modified Paths: -------------- csw/mgar/pkg/jdk6/trunk/Makefile csw/mgar/pkg/jdk6/trunk/checksums Modified: csw/mgar/pkg/jdk6/trunk/Makefile =================================================================== --- csw/mgar/pkg/jdk6/trunk/Makefile 2009-08-30 20:34:31 UTC (rev 6145) +++ csw/mgar/pkg/jdk6/trunk/Makefile 2009-08-31 12:27:18 UTC (rev 6146) @@ -1,6 +1,6 @@ GARNAME = jdk6 -SPKG_VERSION = 1.6.0_13 -GARVERSION = 6u13 +SPKG_VERSION = 1.6.0_16 +GARVERSION = 6u16 CATEGORIES = lang DESCRIPTION = Java Development Kit 6 Modified: csw/mgar/pkg/jdk6/trunk/checksums =================================================================== --- csw/mgar/pkg/jdk6/trunk/checksums 2009-08-30 20:34:31 UTC (rev 6145) +++ csw/mgar/pkg/jdk6/trunk/checksums 2009-08-31 12:27:18 UTC (rev 6146) @@ -1,8 +1,8 @@ -082fc09dd4f090fd402ecea74de04512 download/jdk-6u13-solaris-sparc.sh -9d21b094dda0f2cebdf4a7db97679e0a download/jdk-6u13-solaris-sparcv9.sh -62ee4b88ddc74af6fb15c1d8d3d2edce download/jdk-6u13-solaris-i586.sh -08824246000783adc6cae525b183b983 download/jdk-6u13-solaris-x64.sh +49e3f19f300f9634301324c66e9c538f download/CSWjdk.gspec e97f304567b9a3504ed23ab5203b1d6a download/CSWjdk6.gspec +e8c5435c1ec2ee4b55bc64a7e43092f5 download/CSWjre.gspec db63838ec6ecabef9af5dbaeece93854 download/CSWjre6.gspec -49e3f19f300f9634301324c66e9c538f download/CSWjdk.gspec -e8c5435c1ec2ee4b55bc64a7e43092f5 download/CSWjre.gspec +3b3403d0b8a5bba0f681f2bca66a2294 download/jdk-6u16-solaris-i586.sh +d1ac0843e934663fa0d6b64fc6482bad download/jdk-6u16-solaris-sparc.sh +ac9da8dfdde3ae213d4dd0d8867b00a1 download/jdk-6u16-solaris-sparcv9.sh +3b80a03228161bc58ae96e2399a3b939 download/jdk-6u16-solaris-x64.sh This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 31 15:29:39 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 13:29:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[6147] csw/mgar/pkg Message-ID: Revision: 6147 http://gar.svn.sourceforge.net/gar/?rev=6147&view=rev Author: dmichelsen Date: 2009-08-31 13:29:39 +0000 (Mon, 31 Aug 2009) Log Message: ----------- pigz: Initial commit Added Paths: ----------- csw/mgar/pkg/pigz/ csw/mgar/pkg/pigz/branches/ csw/mgar/pkg/pigz/tags/ csw/mgar/pkg/pigz/trunk/ csw/mgar/pkg/pigz/trunk/Makefile csw/mgar/pkg/pigz/trunk/checksums csw/mgar/pkg/pigz/trunk/files/ Property changes on: csw/mgar/pkg/pigz/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/pigz/trunk/Makefile =================================================================== --- csw/mgar/pkg/pigz/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:29:39 UTC (rev 6147) @@ -0,0 +1,49 @@ +GARNAME = pigz +GARVERSION = 2.1.5 +CATEGORIES = utils + +DESCRIPTION = A parallel implementation of gzip +define BLURB + pigz, which stands for parallel implementation of gzip, is a fully + functional replacement for gzip that exploits multiple processors + and multiple cores to the hilt when compressing data. pigz was written + by Mark Adler, and uses the zlib and pthread libraries. +endef + +MASTER_SITES = http://www.zlib.net/pigz/ +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 = + +LICENSE = README + +REQUIRED_PKGS = CSWzlib + +REQUESTED_ISAS = $(ISALIST_$(GARCOMPILER)) + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +INSTALL_SCRIPTS = custom +TEST_SCRIPTS = + +include gar/category.mk + +build-custom: + cd $(WORKSRC) && $(CC) $(CFLAGS) -c yarn.c + cd $(WORKSRC) && $(CC) $(CFLAGS) -c pigz.c + cd $(WORKSRC) && $(CC) $(LDFLAGS) -o pigz yarn.o pigz.o -lpthread -lz + @$(MAKECOOKIE) + +install-custom: + ginstall -d $(DESTDIR)$(bindir) + ginstall $(WORKSRC)/pigz $(DESTDIR)$(bindir) + ginstall -d $(DESTDIR)$(mandir)/man1 + ginstall $(WORKSRC)/pigz.1 $(DESTDIR)$(mandir)/man1 + ginstall -d $(DESTDIR)$(docdir)/$(GARNAME) + ginstall $(WORKSRC)/pigz.pdf $(DESTDIR)$(docdir)/$(GARNAME) + @$(MAKECOOKIE) Added: csw/mgar/pkg/pigz/trunk/checksums =================================================================== --- csw/mgar/pkg/pigz/trunk/checksums (rev 0) +++ csw/mgar/pkg/pigz/trunk/checksums 2009-08-31 13:29:39 UTC (rev 6147) @@ -0,0 +1 @@ +580873165ef3a369674f0c0af4c96d67 download/pigz-2.1.5.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 Mon Aug 31 15:42:27 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 13:42:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[6148] csw/mgar/gar/v2/gar.conf.mk Message-ID: Revision: 6148 http://gar.svn.sourceforge.net/gar/?rev=6148&view=rev Author: dmichelsen Date: 2009-08-31 13:42:27 +0000 (Mon, 31 Aug 2009) Log Message: ----------- mGAR v2: Make sure all possible ISAs are build on the local machine 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-08-31 13:29:39 UTC (rev 6147) +++ csw/mgar/gar/v2/gar.conf.mk 2009-08-31 13:42:27 UTC (rev 6148) @@ -360,9 +360,11 @@ # REQUESTED_ISAS contains all ISAs that should be built # NEEDED_ISAS contains all ISAs that must be build for this architecture to make the package # BUILD_ISAS contains all ISAs that can be built on the current kernel +# It is guaranteed that all BUILD_ISAS come first in NEEDED_ISAS # Set 'BUILD64 = 1' to build 64 bit versions automatically REQUESTED_ISAS ?= $(strip $(foreach A,$(GARCHLIST),$(ISA_DEFAULT_$A) $(if $(BUILD64),$(ISA_DEFAULT64_$A)) $(EXTRA_BUILD_ISAS_$A)) $(EXTRA_BUILD_ISAS)) -NEEDED_ISAS ?= $(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS)) +NEEDED_ISAS ?= $(filter $(ISALIST_$(KERNELISA)),$(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS))) \ + $(filter-out $(ISALIST_$(KERNELISA)),$(filter $(ISALIST_$(ISA_DEFAULT64_$(GARCH))),$(REQUESTED_ISAS))) BUILD_ISAS ?= $(filter $(ISALIST_$(KERNELISA)),$(NEEDED_ISAS)) # Subdirectories for specialized binaries and libraries This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Mon Aug 31 15:43:46 2009 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 31 Aug 2009 13:43:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[6149] csw/mgar/pkg/pigz/trunk/Makefile Message-ID: Revision: 6149 http://gar.svn.sourceforge.net/gar/?rev=6149&view=rev Author: dmichelsen Date: 2009-08-31 13:43:46 +0000 (Mon, 31 Aug 2009) Log Message: ----------- pigz: Fix Source URL Modified Paths: -------------- csw/mgar/pkg/pigz/trunk/Makefile Modified: csw/mgar/pkg/pigz/trunk/Makefile =================================================================== --- csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:42:27 UTC (rev 6148) +++ csw/mgar/pkg/pigz/trunk/Makefile 2009-08-31 13:43:46 UTC (rev 6149) @@ -20,6 +20,8 @@ # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES # UPSTREAM_MASTER_SITES = +SPKG_SOURCEURL = http://www.zlib.net/pigz/ + LICENSE = README REQUIRED_PKGS = CSWzlib This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wahwah at users.sourceforge.net Mon Aug 31 17:52:32 2009 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Mon, 31 Aug 2009 15:52:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[6150] csw/mgar/pkg/pgadmin3/ Message-ID: Revision: 6150 http://gar.svn.sourceforge.net/gar/?rev=6150&view=rev Author: wahwah Date: 2009-08-31 15:52:29 +0000 (Mon, 31 Aug 2009) Log Message: ----------- pgadmin3: Copying the template Added Paths: ----------- csw/mgar/pkg/pgadmin3/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.