From j_arndt at users.sourceforge.net Sun Jul 1 10:36:25 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 01 Jul 2012 08:36:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18607] csw/mgar/pkg/munin/trunk Message-ID: Revision: 18607 http://gar.svn.sourceforge.net/gar/?rev=18607&view=rev Author: j_arndt Date: 2012-07-01 08:36:25 +0000 (Sun, 01 Jul 2012) Log Message: ----------- munin/trunk: update to Munin 2.0.2 Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums Added Paths: ----------- csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch Removed Paths: ------------- csw/mgar/pkg/munin/trunk/files/0001-Expand-paths-with-DESTDIR.patch Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2012-06-29 13:47:35 UTC (rev 18606) +++ csw/mgar/pkg/munin/trunk/Makefile 2012-07-01 08:36:25 UTC (rev 18607) @@ -1,5 +1,5 @@ NAME = munin -VERSION = 2.0.0 +VERSION = 2.0.2 CATEGORIES = apps GARTYPE = v2 @@ -17,7 +17,7 @@ DISTFILES += CSWmunin-master.README.CSW DISTFILES += CSWmunin-node.README.CSW -PATCHFILES += 0001-Expand-paths-with-DESTDIR.patch +PATCHFILES += 0004-Expand-paths-with-DESTDIR.patch PATCHFILES += 0001-paths-in-Makefile.config.patch PATCHFILES += 0001-paths-and-hostname-in-munin-node.conf.in.patch PATCHFILES += 0001-replace-yourhostname-with-hostname-in-postinstall.patch Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2012-06-29 13:47:35 UTC (rev 18606) +++ csw/mgar/pkg/munin/trunk/checksums 2012-07-01 08:36:25 UTC (rev 18607) @@ -1 +1 @@ -9cbe5b5651905cc022f6c97489396564 munin-2.0.0.tar.gz +5020eaf323f08ec09600a0b07622861a munin-2.0.2.tar.gz Deleted: csw/mgar/pkg/munin/trunk/files/0001-Expand-paths-with-DESTDIR.patch =================================================================== --- csw/mgar/pkg/munin/trunk/files/0001-Expand-paths-with-DESTDIR.patch 2012-06-29 13:47:35 UTC (rev 18606) +++ csw/mgar/pkg/munin/trunk/files/0001-Expand-paths-with-DESTDIR.patch 2012-07-01 08:36:25 UTC (rev 18607) @@ -1,365 +0,0 @@ -From 5d6dad6dcd4f57e114f39fe8b467bdf92172f62b Mon Sep 17 00:00:00 2001 -From: Juergen Arndt -Date: Sun, 3 Jun 2012 17:51:49 +0200 -Subject: [PATCH] Expand paths with $(DESTDIR) - ---- - Makefile | 224 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 113 insertions(+), 111 deletions(-) - -diff --git a/Makefile b/Makefile -index f610539..bd3d9a6 100644 ---- a/Makefile -+++ b/Makefile -@@ -9,6 +9,8 @@ - DEFAULTS = Makefile.config - CONFIG = Makefile.config - -+DESTDIR = -+ - include $(DEFAULTS) - include $(CONFIG) - -@@ -49,8 +51,8 @@ uninstall: - # This removes the installed config so that the next install-pass installs - # a new config. Target _only_ suitable for maintainers. - unconfig: -- rm -f $(HTMLDIR)/.htaccess -- rm -f $(CONFDIR)/munin.conf -+ rm -f $(DESTDIR)$(HTMLDIR)/.htaccess -+ rm -f $(DESTDIR)$(CONFDIR)/munin.conf - - tags: - -rm -f TAGS -@@ -66,63 +68,63 @@ endif - - install-pre: Makefile Makefile.config - @$(CHECKUSER) -- mkdir -p $(LOGDIR) -- mkdir -p $(STATEDIR) -- mkdir -p $(SPOOLDIR) -- mkdir -p $(CONFDIR) -- $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) -+ mkdir -p $(DESTDIR)$(LOGDIR) -+ mkdir -p $(DESTDIR)$(STATEDIR) -+ mkdir -p $(DESTDIR)$(SPOOLDIR) -+ mkdir -p $(DESTDIR)$(CONFDIR) -+# $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) - - install-master-prime: $(INFILES_MASTER) install-pre install-master -- mkdir -p $(CONFDIR)/templates -- mkdir -p $(CONFDIR)/static -- mkdir -p $(CONFDIR)/templates/partial -- mkdir -p $(CONFDIR)/munin-conf.d -- mkdir -p $(LIBDIR) -- mkdir -p $(BINDIR) -- mkdir -p $(PERLLIB) -- mkdir -p $(PERLLIB)/Munin/Master -- mkdir -p $(HTMLDIR) -- mkdir -p $(DBDIR) -- mkdir -p $(DBDIR)/cgi-tmp -- mkdir -p $(CGIDIR) -- -- $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) -- $(CHMOD) 0755 $(DBDIR) -- -- $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp -- $(CHMOD) 0755 $(DBDIR)/cgi-tmp -+ mkdir -p $(DESTDIR)$(CONFDIR)/templates -+ mkdir -p $(DESTDIR)$(CONFDIR)/static -+ mkdir -p $(DESTDIR)$(CONFDIR)/templates/partial -+ mkdir -p $(DESTDIR)$(CONFDIR)/munin-conf.d -+ mkdir -p $(DESTDIR)$(LIBDIR) -+ mkdir -p $(DESTDIR)$(BINDIR) -+ mkdir -p $(DESTDIR)$(PERLLIB) -+ mkdir -p $(DESTDIR)$(PERLLIB)/Munin/Master -+ mkdir -p $(DESTDIR)$(HTMLDIR) -+ mkdir -p $(DESTDIR)$(DBDIR) -+ mkdir -p $(DESTDIR)$(DBDIR)/cgi-tmp -+ mkdir -p $(DESTDIR)$(CGIDIR) -+ -+# $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) -+ $(CHMOD) 0755 $(DESTDIR)$(DBDIR) -+ -+# $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp -+ $(CHMOD) 0755 $(DESTDIR)$(DBDIR)/cgi-tmp - - for p in master/www/*.tmpl ; do \ -- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/ ; \ -+ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/ ; \ - done - - for p in master/static/* ; do \ -- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/static/ ; \ -+ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/static/ ; \ - done - - for p in master/www/partial/*.tmpl; do \ -- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/partial/ ; \ -+ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/partial/ ; \ - done - -- $(INSTALL) -m 0755 master/DejaVuSansMono.ttf $(LIBDIR)/ -- $(INSTALL) -m 0755 master/DejaVuSans.ttf $(LIBDIR)/ -+ $(INSTALL) -m 0755 master/DejaVuSansMono.ttf $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 master/DejaVuSans.ttf $(DESTDIR)$(LIBDIR)/ - -- test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(HTMLDIR)/.htaccess -- test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(CONFDIR)/ -+ test -f $(DESTDIR)$(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(DESTDIR)$(HTMLDIR)/.htaccess -+ test -f "$(DESTDIR)$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(DESTDIR)$(CONFDIR)/ - -- $(INSTALL) -m 0755 build/master/_bin/munin-cron $(BINDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-check $(BINDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-update $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-html $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-graph $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-limits $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(CGIDIR)/munin-cgi-graph -- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(CGIDIR)/munin-cgi-html -+ $(INSTALL) -m 0755 build/master/_bin/munin-cron $(DESTDIR)$(BINDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-check $(DESTDIR)$(BINDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-update $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-html $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-graph $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-limits $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(DESTDIR)$(CGIDIR)/munin-cgi-graph -+ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(DESTDIR)$(CGIDIR)/munin-cgi-html - - # Not ready to be installed yet --# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(LIBDIR)/ -+# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(DESTDIR)$(LIBDIR)/ - - # ALWAYS DO THE OS SPECIFIC PLUGINS LAST! THAT WAY THEY OVERWRITE THE - # GENERIC ONES -@@ -133,28 +135,28 @@ install-node-plugins: install-plugins-prime - install-plugins-prime: install-plugins build $(PLUGINS) Makefile Makefile.config - @$(CHECKGROUP) - -- mkdir -p $(CONFDIR)/plugins -- mkdir -p $(CONFDIR)/plugin-conf.d -- mkdir -p $(LIBDIR)/plugins -- mkdir -p $(PLUGSTATE) -+ mkdir -p $(DESTDIR)$(CONFDIR)/plugins -+ mkdir -p $(DESTDIR)$(CONFDIR)/plugin-conf.d -+ mkdir -p $(DESTDIR)$(LIBDIR)/plugins -+ mkdir -p $(DESTDIR)$(PLUGSTATE) - -- $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) -- $(CHMOD) 0775 $(PLUGSTATE) -- $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d -+# $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) -+# $(CHMOD) 0775 $(PLUGSTATE) -+# $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d - - for p in build/plugins/node.d/* build/plugins/node.d.$(OSTYPE)/* ; do \ - if test -f "$$p" ; then \ - echo Installing $$p; \ -- $(INSTALL) -m 0755 $$p $(LIBDIR)/plugins/; \ -+ $(INSTALL) -m 0755 $$p $(DESTDIR)$(LIBDIR)/plugins/; \ - fi \ - done -- -mv $(LIBDIR)/plugins/*.adv $(LIBDIR) -- $(INSTALL) -m 0644 build/plugins/plugins.history $(LIBDIR)/plugins/ -- $(INSTALL) -m 0644 build/plugins/plugin.sh $(LIBDIR)/plugins/ -+ -mv $(LIBDIR)/plugins/*.adv $(DESTDIR)$(LIBDIR) -+ $(INSTALL) -m 0644 build/plugins/plugins.history $(DESTDIR)$(LIBDIR)/plugins/ -+ $(INSTALL) -m 0644 build/plugins/plugin.sh $(DESTDIR)$(LIBDIR)/plugins/ - - install-plugins-java: build-plugins-java -- mkdir -p $(JAVALIBDIR) -- $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(JAVALIBDIR)/ -+ mkdir -p $(DESTDIR)$(JAVALIBDIR) -+ $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(DESTDIR)$(JAVALIBDIR)/ - - #TODO: - # configure plugins. Or not. Better done under the direction of the installer -@@ -162,36 +164,36 @@ install-plugins-java: build-plugins-java - - install-async-prime: -- mkdir -p $(LIBDIR) -- $(INSTALL) -m 0755 build/node/_bin/munin-async-client $(LIBDIR)/ -- $(INSTALL) -m 0755 build/node/_bin/munin-async-server $(LIBDIR)/ -+ mkdir -p $(DESTDIR)/$(LIBDIR) -+ $(INSTALL) -m 0755 build/node/_bin/munin-async-client $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/node/_bin/munin-async-server $(DESTDIR)$(LIBDIR)/ - - install-node-prime: install-node-pre install-node - - install-node-pre: build/node/munin-node.conf install-pre -- test -f "$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(CONFDIR)/ -+ test -f "$(DESTDIR)$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(DESTDIR)$(CONFDIR)/ - - - install-common-prime: build-common install-common - - - install-man: build-man Makefile Makefile.config -- mkdir -p $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man8 -- $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(MANDIR)/man5/ -- $(INSTALL) -m 0644 build/doc/munin.conf.5 $(MANDIR)/man5/ -- $(INSTALL) -m 0644 build/doc/munin-update.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-limits.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-graph.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-html.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-cron.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-check.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin.8 $(MANDIR)/man8/ -+ mkdir -p $(DESTDIR)$(MANDIR)/man1 $(DESTDIR)$(MANDIR)/man5 $(DESTDIR)$(MANDIR)/man8 -+ $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(DESTDIR)$(MANDIR)/man5/ -+ $(INSTALL) -m 0644 build/doc/munin.conf.5 $(DESTDIR)$(MANDIR)/man5/ -+ $(INSTALL) -m 0644 build/doc/munin-update.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-limits.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-graph.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-html.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-cron.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-check.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin.8 $(DESTDIR)$(MANDIR)/man8/ - - - install-doc: build-doc - mkdir -p $(DOCDIR)/resources -- $(INSTALL) -m 0644 README $(DOCDIR)/ -- $(INSTALL) -m 0644 COPYING $(DOCDIR)/ -- $(INSTALL) -m 0644 build/resources/* $(DOCDIR)/resources -+ $(INSTALL) -m 0644 README $(DESTDIR)$(DOCDIR)/ -+ $(INSTALL) -m 0644 COPYING $(DESTDIR)$(DOCDIR)/ -+ $(INSTALL) -m 0644 build/resources/* $(DESTDIR)$(DOCDIR)/resources - - ###################################################################### - -@@ -208,29 +210,29 @@ build/%: %.in - @echo "$< -> $@" - @mkdir -p build/`dirname $<` - @sed -e 's|@@PREFIX@@|$(PREFIX)|g' \ -- -e 's|@@CONFDIR@@|$(CONFDIR)|g' \ -- -e 's|@@BINDIR@@|$(BINDIR)|g' \ -- -e 's|@@SBINDIR@@|$(SBINDIR)|g' \ -- -e 's|@@DOCDIR@@|$(DOCDIR)|g' \ -- -e 's|@@LIBDIR@@|$(LIBDIR)|g' \ -- -e 's|@@MANDIR@@|$(MANDIR)|g' \ -- -e 's|@@LOGDIR@@|$(LOGDIR)|g' \ -- -e 's|@@HTMLDIR@@|$(HTMLDIR)|g' \ -- -e 's|@@DBDIR@@|$(DBDIR)|g' \ -- -e 's|@@STATEDIR@@|$(STATEDIR)|g' \ -- -e 's|@@SPOOLDIR@@|$(SPOOLDIR)|g' \ -+ -e 's|@@CONFDIR@@|$(DESTDIR)$(CONFDIR)|g' \ -+ -e 's|@@BINDIR@@|$(DESTDIR)$(BINDIR)|g' \ -+ -e 's|@@SBINDIR@@|$(DESTDIR)$(SBINDIR)|g' \ -+ -e 's|@@DOCDIR@@|$(DESTDIR)$(DOCDIR)|g' \ -+ -e 's|@@LIBDIR@@|$(DESTDIR)$(LIBDIR)|g' \ -+ -e 's|@@MANDIR@@|$(DESTDIR)$(MANDIR)|g' \ -+ -e 's|@@LOGDIR@@|$(DESTDIR)$(LOGDIR)|g' \ -+ -e 's|@@HTMLDIR@@|$(DESTDIR)$(HTMLDIR)|g' \ -+ -e 's|@@DBDIR@@|$(DESTDIR)$(DBDIR)|g' \ -+ -e 's|@@STATEDIR@@|$(DESTDIR)$(STATEDIR)|g' \ -+ -e 's|@@SPOOLDIR@@|$(DESTDIR)$(SPOOLDIR)|g' \ - -e 's|@@PERL@@|$(PERL)|g' \ -- -e 's|@@PERLLIB@@|$(PERLLIB)|g' \ -+ -e 's|@@PERLLIB@@|$(DESTDIR)$(PERLLIB)|g' \ - -e 's|@@PYTHON@@|$(PYTHON)|g' \ - -e 's|@@RUBY@@|$(RUBY)|g' \ - -e 's|@@JAVARUN@@|$(JAVARUN)|g' \ -- -e 's|@@JAVALIBDIR@@|$(JAVALIBDIR)|g' \ -+ -e 's|@@JAVALIBDIR@@|$(DESTDIR)$(JAVALIBDIR)|g' \ - -e 's|@@OSTYPE@@|$(OSTYPE)|g' \ - -e 's|@@HOSTNAME@@|$(HOSTNAME)|g' \ - -e 's|@@MKTEMP@@|$(MKTEMP)|g' \ - -e 's|@@VERSION@@|$(VERSION)|g' \ -- -e 's|@@PLUGSTATE@@|$(PLUGSTATE)|g' \ -- -e 's|@@CGIDIR@@|$(CGIDIR)|g' \ -+ -e 's|@@PLUGSTATE@@|$(DESTDIR)$(PLUGSTATE)|g' \ -+ -e 's|@@CGIDIR@@|$(DESTDIR)$(CGIDIR)|g' \ - -e 's|@@USER@@|$(USER)|g' \ - -e 's|@@GROUP@@|$(GROUP)|g' \ - -e 's|@@PLUGINUSER@@|$(PLUGINUSER)|g' \ -@@ -248,17 +250,17 @@ build-common-pre: common/Build - common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm build-common-pre - rm -f common/blib/lib/Munin/Common/Defaults.pm - $(PERL) -pe 's{(PREFIX \s+=\s).*}{\1q{$(PREFIX)};}x; \ -- s{(CONFDIR \s+=\s).*}{\1q{$(CONFDIR)};}x; \ -- s{(BINDIR \s+=\s).*}{\1q{$(BINDIR)};}x; \ -- s{(SBINDIR \s+=\s).*}{\1q{$(SBINDIR)};}x; \ -- s{(DOCDIR \s+=\s).*}{\1q{$(DOCDIR)};}x; \ -- s{(LIBDIR \s+=\s).*}{\1q{$(LIBDIR)};}x; \ -- s{(MANDIR \s+=\s).*}{\1q{$(MANDIR)};}x; \ -- s{(LOGDIR \s+=\s).*}{\1q{$(LOGDIR)};}x; \ -- s{(HTMLDIR \s+=\s).*}{\1q{$(HTMLDIR)};}x; \ -- s{(DBDIR \s+=\s).*}{\1q{$(DBDIR)};}x; \ -- s{(STATEDIR \s+=\s).*}{\1q{$(STATEDIR)};}x; \ -- s{(SPOOLDIR \s+=\s).*}{\1q{$(SPOOLDIR)};}x; \ -+ s{(CONFDIR \s+=\s).*}{\1q{$(DESTDIR)$(CONFDIR)};}x; \ -+ s{(BINDIR \s+=\s).*}{\1q{$(DESTDIR)$(BINDIR)};}x; \ -+ s{(SBINDIR \s+=\s).*}{\1q{$(DESTDIR)$(SBINDIR)};}x; \ -+ s{(DOCDIR \s+=\s).*}{\1q{$(DESTDIR)$(DOCDIR)};}x; \ -+ s{(LIBDIR \s+=\s).*}{\1q{$(DESTDIR)$(LIBDIR)};}x; \ -+ s{(MANDIR \s+=\s).*}{\1q{$(DESTDIR)$(MANDIR)};}x; \ -+ s{(LOGDIR \s+=\s).*}{\1q{$(DESTDIR)$(LOGDIR)};}x; \ -+ s{(HTMLDIR \s+=\s).*}{\1q{$(DESTDIR)$(HTMLDIR)};}x; \ -+ s{(DBDIR \s+=\s).*}{\1q{$(DESTDIR)$(DBDIR)};}x; \ -+ s{(STATEDIR \s+=\s).*}{\1q{$(DESTDIR)$(STATEDIR)};}x; \ -+ s{(SPOOLDIR \s+=\s).*}{\1q{$(DESTDIR)$(SPOOLDIR)};}x; \ - s{(PERL \s+=\s).*}{\1q{$(PERL)};}x; \ - s{(PERLLIB \s+=\s).*}{\1q{$(PERLLIB)};}x; \ - s{(PYTHON \s+=\s).*}{\1q{$(PYTHON)};}x; \ -@@ -267,8 +269,8 @@ common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm bu - s{(HOSTNAME \s+=\s).*}{\1q{$(HOSTNAME)};}x; \ - s{(MKTEMP \s+=\s).*}{\1q{$(MKTEMP)};}x; \ - s{(VERSION \s+=\s).*}{\1q{$(VERSION)};}x; \ -- s{(PLUGSTATE \s+=\s).*}{\1q{$(PLUGSTATE)};}x; \ -- s{(CGIDIR \s+=\s).*}{\1q{$(CGIDIR)};}x; \ -+ s{(PLUGSTATE \s+=\s).*}{\1q{$(DESTDIR)$(PLUGSTATE)};}x; \ -+ s{(CGIDIR \s+=\s).*}{\1q{$(DESTDIR)$(CGIDIR)};}x; \ - s{(USER \s+=\s).*}{\1q{$(USER)};}x; \ - s{(GROUP \s+=\s).*}{\1q{$(GROUP)};}x; \ - s{(PLUGINUSER \s+=\s).*}{\1q{$(PLUGINUSER)};}x; \ -@@ -373,7 +375,7 @@ old-test: t/*.t - $(MAKE) $@ CONFIG=t/Makefile.config - else - test_plugins = id_default id_root env --old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) -+old-test: t/*.t t/install $(addprefix $(DESTDIR)$(CONFDIR)/plugins/,$(test_plugins)) - @for test in t/*.t; do \ - echo -n "$$test: "; \ - PERL5LIB=$(PERLLIB) $(PERL) $$test;\ -@@ -381,10 +383,10 @@ old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) - endif - - node-monkeywrench: install-node -- rm -rf $(CONFDIR)/plugins -- rm -rf $(LIBDIR)/plugins -- mkdir -p $(LIBDIR)/plugins -- mkdir -p $(CONFDIR)/plugins -+ rm -rf $(DESTDIR)$(CONFDIR)/plugins -+ rm -rf $(DESTDIR)$(LIBDIR)/plugins -+ mkdir -p $(DESTDIR)$(LIBDIR)/plugins -+ mkdir -p $(DESTDIR)$(CONFDIR)/plugins - cp monkeywrench/plugin-break*_ $(LIBDIR)/plugins/ - $(SBINDIR)/munin-node-configure --suggest - echo 'Done?' -@@ -410,12 +412,12 @@ build-common: common/Build - # can't seem to find a way to persuade it to write otherwhere. - install-%: %/Build - cd $* && $(PERL) Build install \ -- --install_path lib=$(PERLLIB) \ -- --install_path bin=$(BINDIR) \ -- --install_path script=$(BINDIR) \ -- --install_path sbin=$(SBINDIR) \ -- --install_path bindoc=$(MANDIR)/man1 \ -- --install_path libdoc=$(MANDIR)/man3 \ -+ --install_path lib=$(DESTDIR)$(PERLLIB) \ -+ --install_path bin=$(DESTDIR)$(BINDIR) \ -+ --install_path script=$(DESTDIR)$(BINDIR) \ -+ --install_path sbin=$(DESTDIR)$(SBINDIR) \ -+ --install_path bindoc=$(DESTDIR)$(MANDIR)/man1 \ -+ --install_path libdoc=$(DESTDIR)$(MANDIR)/man3 \ - - test-%: %/Build - cd $* && $(PERL) Build test --verbose=0 || true --- -1.7.10.3 - Added: csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch =================================================================== --- csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch (rev 0) +++ csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch 2012-07-01 08:36:25 UTC (rev 18607) @@ -0,0 +1,367 @@ +From 9eda017107a4fc9fa5781a006108f7e1a5540e05 Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Sun, 1 Jul 2012 09:05:12 +0200 +Subject: [PATCH] Expand paths with DESTDIR + +--- + Makefile | 228 +++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 115 insertions(+), 113 deletions(-) + +diff --git a/Makefile b/Makefile +index a26d2d1..1b5f81c 100644 +--- a/Makefile ++++ b/Makefile +@@ -9,6 +9,8 @@ + DEFAULTS = Makefile.config + CONFIG = Makefile.config + ++DESTDIR = ++ + include $(DEFAULTS) + include $(CONFIG) + +@@ -49,8 +51,8 @@ uninstall: + # This removes the installed config so that the next install-pass installs + # a new config. Target _only_ suitable for maintainers. + unconfig: +- rm -f $(HTMLDIR)/.htaccess +- rm -f $(CONFDIR)/munin.conf ++ rm -f $(DESTDIR)$(HTMLDIR)/.htaccess ++ rm -f $(DESTDIR)$(CONFDIR)/munin.conf + + tags: + -rm -f TAGS +@@ -66,63 +68,63 @@ endif + + install-pre: Makefile Makefile.config + @$(CHECKUSER) +- mkdir -p $(LOGDIR) +- mkdir -p $(STATEDIR) +- mkdir -p $(SPOOLDIR) +- mkdir -p $(CONFDIR) +- $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) ++ mkdir -p $(DESTDIR)$(LOGDIR) ++ mkdir -p $(DESTDIR)$(STATEDIR) ++ mkdir -p $(DESTDIR)$(SPOOLDIR) ++ mkdir -p $(DESTDIR)$(CONFDIR) ++# $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) + + install-master-prime: $(INFILES_MASTER) install-pre install-master +- mkdir -p $(CONFDIR)/templates +- mkdir -p $(CONFDIR)/static +- mkdir -p $(CONFDIR)/templates/partial +- mkdir -p $(CONFDIR)/munin-conf.d +- mkdir -p $(LIBDIR) +- mkdir -p $(BINDIR) +- mkdir -p $(PERLLIB) +- mkdir -p $(PERLLIB)/Munin/Master +- mkdir -p $(HTMLDIR) +- mkdir -p $(DBDIR) +- mkdir -p $(DBDIR)/cgi-tmp +- mkdir -p $(CGIDIR) +- +- $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) +- $(CHMOD) 0755 $(DBDIR) +- +- $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp +- $(CHMOD) 0755 $(DBDIR)/cgi-tmp ++ mkdir -p $(DESTDIR)$(CONFDIR)/templates ++ mkdir -p $(DESTDIR)$(CONFDIR)/static ++ mkdir -p $(DESTDIR)$(CONFDIR)/templates/partial ++ mkdir -p $(DESTDIR)$(CONFDIR)/munin-conf.d ++ mkdir -p $(DESTDIR)$(LIBDIR) ++ mkdir -p $(DESTDIR)$(BINDIR) ++ mkdir -p $(DESTDIR)$(PERLLIB) ++ mkdir -p $(DESTDIR)$(PERLLIB)/Munin/Master ++ mkdir -p $(DESTDIR)$(HTMLDIR) ++ mkdir -p $(DESTDIR)$(DBDIR) ++ mkdir -p $(DESTDIR)$(DBDIR)/cgi-tmp ++ mkdir -p $(DESTDIR)$(CGIDIR) ++ ++# $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) ++ $(CHMOD) 0755 $(DESTDIR)$(DBDIR) ++ ++# $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp ++ $(CHMOD) 0755 $(DESTDIR)$(DBDIR)/cgi-tmp + + for p in master/www/*.tmpl ; do \ +- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/ ; \ ++ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/ ; \ + done + + for p in master/static/* ; do \ +- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/static/ ; \ ++ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/static/ ; \ + done + + for p in master/www/partial/*.tmpl; do \ +- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/partial/ ; \ ++ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/partial/ ; \ + done + +- $(INSTALL) -m 0755 master/DejaVuSansMono.ttf $(LIBDIR)/ +- $(INSTALL) -m 0755 master/DejaVuSans.ttf $(LIBDIR)/ ++ $(INSTALL) -m 0755 master/DejaVuSansMono.ttf $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 master/DejaVuSans.ttf $(DESTDIR)$(LIBDIR)/ + +- test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(HTMLDIR)/.htaccess +- test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(CONFDIR)/ ++ test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(DESTDIR)$(HTMLDIR)/.htaccess ++ test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(DESTDIR)$(CONFDIR)/ + +- $(INSTALL) -m 0755 build/master/_bin/munin-cron $(BINDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-check $(BINDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-update $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-html $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-graph $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-limits $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(CGIDIR)/munin-cgi-graph +- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(CGIDIR)/munin-cgi-html ++ $(INSTALL) -m 0755 build/master/_bin/munin-cron $(DESTDIR)$(BINDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-check $(DESTDIR)$(BINDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-update $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-html $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-graph $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-limits $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(DESTDIR)$(CGIDIR)/munin-cgi-graph ++ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(DESTDIR)$(CGIDIR)/munin-cgi-html + + # Not ready to be installed yet +-# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(LIBDIR)/ ++# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(DESTDIR)$(LIBDIR)/ + + # ALWAYS DO THE OS SPECIFIC PLUGINS LAST! THAT WAY THEY OVERWRITE THE + # GENERIC ONES +@@ -133,66 +135,66 @@ install-node-plugins: install-plugins-prime + install-plugins-prime: install-plugins build $(PLUGINS) Makefile Makefile.config + @$(CHECKGROUP) + +- mkdir -p $(CONFDIR)/plugins +- mkdir -p $(CONFDIR)/plugin-conf.d +- mkdir -p $(LIBDIR)/plugins +- mkdir -p $(PLUGSTATE) ++ mkdir -p $(DESTDIR)$(CONFDIR)/plugins ++ mkdir -p $(DESTDIR)$(CONFDIR)/plugin-conf.d ++ mkdir -p $(DESTDIR)$(LIBDIR)/plugins ++ mkdir -p $(DESTDIR)$(PLUGSTATE) + +- $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) ++# $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) + # using g+rwxs, so plugins can create and modify their state file without help +- $(CHMOD) 02775 $(PLUGSTATE) +- $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d ++# $(CHMOD) 02775 $(PLUGSTATE) ++# $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d + + for p in build/plugins/node.d/* build/plugins/node.d.$(OSTYPE)/* ; do \ + if test -f "$$p" ; then \ + echo Installing $$p; \ +- $(INSTALL) -m 0755 $$p $(LIBDIR)/plugins/; \ ++ $(INSTALL) -m 0755 $$p $(DESTDIR)$(LIBDIR)/plugins/; \ + fi \ + done +- -mv $(LIBDIR)/plugins/*.adv $(LIBDIR) +- $(INSTALL) -m 0644 build/plugins/plugins.history $(LIBDIR)/plugins/ +- $(INSTALL) -m 0644 build/plugins/plugin.sh $(LIBDIR)/plugins/ ++ -mv $(LIBDIR)/plugins/*.adv $(DESTDIR)$(LIBDIR) ++ $(INSTALL) -m 0644 build/plugins/plugins.history $(DESTDIR)$(LIBDIR)/plugins/ ++ $(INSTALL) -m 0644 build/plugins/plugin.sh $(DESTDIR)$(LIBDIR)/plugins/ + + install-plugins-java: build-plugins-java +- mkdir -p $(JAVALIBDIR) +- $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(JAVALIBDIR)/ ++ mkdir -p $(DESTDIR)$(JAVALIBDIR) ++ $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(DESTDIR)$(JAVALIBDIR)/ + + #TODO: + # configure plugins. Or not. Better done under the direction of the installer + # or the packager. + + install-async-prime: +- mkdir -p $(LIBDIR) +- $(INSTALL) -m 0755 build/node/_bin/munin-async $(LIBDIR)/ +- $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(LIBDIR)/ ++ mkdir -p $(DESTDIR)$(LIBDIR) ++ $(INSTALL) -m 0755 build/node/_bin/munin-async $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(DESTDIR)$(LIBDIR)/ + + install-node-prime: install-node-pre install-node + + install-node-pre: build/node/munin-node.conf install-pre +- test -f "$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(CONFDIR)/ ++ test -f "$(DESTDIR)$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(DESTDIR)$(CONFDIR)/ + + + install-common-prime: build-common install-common + + + install-man: build-man Makefile Makefile.config +- mkdir -p $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man8 +- $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(MANDIR)/man5/ +- $(INSTALL) -m 0644 build/doc/munin.conf.5 $(MANDIR)/man5/ +- $(INSTALL) -m 0644 build/doc/munin-update.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-limits.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-graph.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-html.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-cron.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-check.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin.8 $(MANDIR)/man8/ ++ mkdir -p $(DESTDIR)$(MANDIR)/man1 $(DESTDIR)$(MANDIR)/man5 $(DESTDIR)$(MANDIR)/man8 ++ $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(DESTDIR)$(MANDIR)/man5/ ++ $(INSTALL) -m 0644 build/doc/munin.conf.5 $(DESTDIR)$(MANDIR)/man5/ ++ $(INSTALL) -m 0644 build/doc/munin-update.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-limits.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-graph.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-html.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-cron.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-check.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin.8 $(DESTDIR)$(MANDIR)/man8/ + + + install-doc: build-doc +- mkdir -p $(DOCDIR)/resources +- $(INSTALL) -m 0644 README $(DOCDIR)/ +- $(INSTALL) -m 0644 COPYING $(DOCDIR)/ +- $(INSTALL) -m 0644 build/resources/* $(DOCDIR)/resources ++ mkdir -p $(DESTDIR)$(DOCDIR)/resources ++ $(INSTALL) -m 0644 README $(DESTDIR)$(DOCDIR)/ ++ $(INSTALL) -m 0644 COPYING $(DESTDIR)$(DOCDIR)/ ++ $(INSTALL) -m 0644 build/resources/* $(DESTDIR)$(DOCDIR)/resources + + ###################################################################### + +@@ -209,29 +211,29 @@ build/%: %.in + @echo "$< -> $@" + @mkdir -p build/`dirname $<` + @sed -e 's|@@PREFIX@@|$(PREFIX)|g' \ +- -e 's|@@CONFDIR@@|$(CONFDIR)|g' \ +- -e 's|@@BINDIR@@|$(BINDIR)|g' \ +- -e 's|@@SBINDIR@@|$(SBINDIR)|g' \ +- -e 's|@@DOCDIR@@|$(DOCDIR)|g' \ +- -e 's|@@LIBDIR@@|$(LIBDIR)|g' \ +- -e 's|@@MANDIR@@|$(MANDIR)|g' \ +- -e 's|@@LOGDIR@@|$(LOGDIR)|g' \ +- -e 's|@@HTMLDIR@@|$(HTMLDIR)|g' \ +- -e 's|@@DBDIR@@|$(DBDIR)|g' \ +- -e 's|@@STATEDIR@@|$(STATEDIR)|g' \ +- -e 's|@@SPOOLDIR@@|$(SPOOLDIR)|g' \ ++ -e 's|@@CONFDIR@@|$(DESTDIR)$(CONFDIR)|g' \ ++ -e 's|@@BINDIR@@|$(DESTDIR)$(BINDIR)|g' \ ++ -e 's|@@SBINDIR@@|$(DESTDIR)$(SBINDIR)|g' \ ++ -e 's|@@DOCDIR@@|$(DESTDIR)$(DOCDIR)|g' \ ++ -e 's|@@LIBDIR@@|$(DESTDIR)$(LIBDIR)|g' \ ++ -e 's|@@MANDIR@@|$(DESTDIR)$(MANDIR)|g' \ ++ -e 's|@@LOGDIR@@|$(DESTDIR)$(LOGDIR)|g' \ ++ -e 's|@@HTMLDIR@@|$(DESTDIR)$(HTMLDIR)|g' \ ++ -e 's|@@DBDIR@@|$(DESTDIR)$(DBDIR)|g' \ ++ -e 's|@@STATEDIR@@|$(DESTDIR)$(STATEDIR)|g' \ ++ -e 's|@@SPOOLDIR@@|$(DESTDIR)$(SPOOLDIR)|g' \ + -e 's|@@PERL@@|$(PERL)|g' \ +- -e 's|@@PERLLIB@@|$(PERLLIB)|g' \ ++ -e 's|@@PERLLIB@@|$(DESTDIR)$(PERLLIB)|g' \ + -e 's|@@PYTHON@@|$(PYTHON)|g' \ + -e 's|@@RUBY@@|$(RUBY)|g' \ + -e 's|@@JAVARUN@@|$(JAVARUN)|g' \ +- -e 's|@@JAVALIBDIR@@|$(JAVALIBDIR)|g' \ ++ -e 's|@@JAVALIBDIR@@|$(DESTDIR)$(JAVALIBDIR)|g' \ + -e 's|@@OSTYPE@@|$(OSTYPE)|g' \ + -e 's|@@HOSTNAME@@|$(HOSTNAME)|g' \ + -e 's|@@MKTEMP@@|$(MKTEMP)|g' \ + -e 's|@@VERSION@@|$(VERSION)|g' \ +- -e 's|@@PLUGSTATE@@|$(PLUGSTATE)|g' \ +- -e 's|@@CGIDIR@@|$(CGIDIR)|g' \ ++ -e 's|@@PLUGSTATE@@|$(DESTDIR)$(PLUGSTATE)|g' \ ++ -e 's|@@CGIDIR@@|$(DESTDIR)$(CGIDIR)|g' \ + -e 's|@@USER@@|$(USER)|g' \ + -e 's|@@GROUP@@|$(GROUP)|g' \ + -e 's|@@PLUGINUSER@@|$(PLUGINUSER)|g' \ +@@ -249,17 +251,17 @@ build-common-pre: common/Build + common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm build-common-pre + rm -f common/blib/lib/Munin/Common/Defaults.pm + $(PERL) -pe 's{(PREFIX \s+=\s).*}{\1q{$(PREFIX)};}x; \ +- s{(CONFDIR \s+=\s).*}{\1q{$(CONFDIR)};}x; \ +- s{(BINDIR \s+=\s).*}{\1q{$(BINDIR)};}x; \ +- s{(SBINDIR \s+=\s).*}{\1q{$(SBINDIR)};}x; \ +- s{(DOCDIR \s+=\s).*}{\1q{$(DOCDIR)};}x; \ +- s{(LIBDIR \s+=\s).*}{\1q{$(LIBDIR)};}x; \ +- s{(MANDIR \s+=\s).*}{\1q{$(MANDIR)};}x; \ +- s{(LOGDIR \s+=\s).*}{\1q{$(LOGDIR)};}x; \ +- s{(HTMLDIR \s+=\s).*}{\1q{$(HTMLDIR)};}x; \ +- s{(DBDIR \s+=\s).*}{\1q{$(DBDIR)};}x; \ +- s{(STATEDIR \s+=\s).*}{\1q{$(STATEDIR)};}x; \ +- s{(SPOOLDIR \s+=\s).*}{\1q{$(SPOOLDIR)};}x; \ ++ s{(CONFDIR \s+=\s).*}{\1q{$(DESTDIR)$(CONFDIR)};}x; \ ++ s{(BINDIR \s+=\s).*}{\1q{$(DESTDIR)$(BINDIR)};}x; \ ++ s{(SBINDIR \s+=\s).*}{\1q{$(DESTDIR)$(SBINDIR)};}x; \ ++ s{(DOCDIR \s+=\s).*}{\1q{$(DESTDIR)$(DOCDIR)};}x; \ ++ s{(LIBDIR \s+=\s).*}{\1q{$(DESTDIR)$(LIBDIR)};}x; \ ++ s{(MANDIR \s+=\s).*}{\1q{$(DESTDIR)$(MANDIR)};}x; \ ++ s{(LOGDIR \s+=\s).*}{\1q{$(DESTDIR)$(LOGDIR)};}x; \ ++ s{(HTMLDIR \s+=\s).*}{\1q{$(DESTDIR)$(HTMLDIR)};}x; \ ++ s{(DBDIR \s+=\s).*}{\1q{$(DESTDIR)$(DBDIR)};}x; \ ++ s{(STATEDIR \s+=\s).*}{\1q{$(DESTDIR)$(STATEDIR)};}x; \ ++ s{(SPOOLDIR \s+=\s).*}{\1q{$(DESTDIR)$(SPOOLDIR)};}x; \ + s{(PERL \s+=\s).*}{\1q{$(PERL)};}x; \ + s{(PERLLIB \s+=\s).*}{\1q{$(PERLLIB)};}x; \ + s{(PYTHON \s+=\s).*}{\1q{$(PYTHON)};}x; \ +@@ -268,8 +270,8 @@ common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm bu + s{(HOSTNAME \s+=\s).*}{\1q{$(HOSTNAME)};}x; \ + s{(MKTEMP \s+=\s).*}{\1q{$(MKTEMP)};}x; \ + s{(VERSION \s+=\s).*}{\1q{$(VERSION)};}x; \ +- s{(PLUGSTATE \s+=\s).*}{\1q{$(PLUGSTATE)};}x; \ +- s{(CGIDIR \s+=\s).*}{\1q{$(CGIDIR)};}x; \ ++ s{(PLUGSTATE \s+=\s).*}{\1q{$(DESTDIR)$(PLUGSTATE)};}x; \ ++ s{(CGIDIR \s+=\s).*}{\1q{$(DESTDIR)$(CGIDIR)};}x; \ + s{(USER \s+=\s).*}{\1q{$(USER)};}x; \ + s{(GROUP \s+=\s).*}{\1q{$(GROUP)};}x; \ + s{(PLUGINUSER \s+=\s).*}{\1q{$(PLUGINUSER)};}x; \ +@@ -371,7 +373,7 @@ old-test: t/*.t + $(MAKE) $@ CONFIG=t/Makefile.config + else + test_plugins = id_default id_root env +-old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) ++old-test: t/*.t t/install $(addprefix $(DESTDIR)$(CONFDIR)/plugins/,$(test_plugins)) + @for test in t/*.t; do \ + echo -n "$$test: "; \ + PERL5LIB=$(PERLLIB) $(PERL) $$test;\ +@@ -379,10 +381,10 @@ old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) + endif + + node-monkeywrench: install-node +- rm -rf $(CONFDIR)/plugins +- rm -rf $(LIBDIR)/plugins +- mkdir -p $(LIBDIR)/plugins +- mkdir -p $(CONFDIR)/plugins ++ rm -rf $(DESTDIR)$(CONFDIR)/plugins ++ rm -rf $(DESTDIR)$(LIBDIR)/plugins ++ mkdir -p $(DESTDIR)$(LIBDIR)/plugins ++ mkdir -p $(DESTDIR)$(CONFDIR)/plugins + cp monkeywrench/plugin-break*_ $(LIBDIR)/plugins/ + $(SBINDIR)/munin-node-configure --suggest + echo 'Done?' +@@ -408,12 +410,12 @@ build-common: common/Build + # can't seem to find a way to persuade it to write otherwhere. + install-%: %/Build + cd $* && $(PERL) Build install \ +- --install_path lib=$(PERLLIB) \ +- --install_path bin=$(BINDIR) \ +- --install_path script=$(BINDIR) \ +- --install_path sbin=$(SBINDIR) \ +- --install_path bindoc=$(MANDIR)/man1 \ +- --install_path libdoc=$(MANDIR)/man3 \ ++ --install_path lib=$(DESTDIR)$(PERLLIB) \ ++ --install_path bin=$(DESTDIR)$(BINDIR) \ ++ --install_path script=$(DESTDIR)$(BINDIR) \ ++ --install_path sbin=$(DESTDIR)$(SBINDIR) \ ++ --install_path bindoc=$(DESTDIR)$(MANDIR)/man1 \ ++ --install_path libdoc=$(DESTDIR)$(MANDIR)/man3 \ + + test-%: %/Build + cd $* && $(PERL) Build test --verbose=0 || true +-- +1.7.10.3 + 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 Jul 1 10:40:39 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 01 Jul 2012 08:40:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[18608] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18608 http://gar.svn.sourceforge.net/gar/?rev=18608&view=rev Author: j_arndt Date: 2012-07-01 08:40:39 +0000 (Sun, 01 Jul 2012) Log Message: ----------- nagios_plugins/trunk: fixed dependencies Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-01 08:36:25 UTC (rev 18607) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-01 08:40:39 UTC (rev 18608) @@ -54,7 +54,7 @@ PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibintl8 CSWlibpq5 -RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibmysqlclient15 CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibmysqlclient18 CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibz1 CSWperl CSWliblber2-4-2 CSWlibldap2-4-2 BUILD_DEP_PKGS_CSWnagios-plugins += CSWmysql-dev @@ -75,7 +75,7 @@ @ginstall -m 755 -d $(DOCDEST) @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) @ginstall -m 755 -d $(PLUGINDEST) - @$(foreach PLUGIN,$(ROOT_PLUGINS),ginstall -m 744 $(WORKSRC)/plugins-root/$(PLUGIN) $(PLUGINDEST);) + @$(foreach PLUGIN,$(ROOT_PLUGINS),ginstall -m 4755 $(WORKSRC)/plugins-root/$(PLUGIN) $(PLUGINDEST);) @tar cf $(WORKSRC)/contrib.tar $(WORKSRC)/contrib/ @ginstall -m 755 -d $(DOCDEST) @ginstall -m 644 $(WORKSRC)/contrib.tar $(DOCDEST) 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 Jul 1 13:50:43 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 01 Jul 2012 11:50:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[18609] csw/mgar/pkg/nrpe/trunk/Makefile Message-ID: Revision: 18609 http://gar.svn.sourceforge.net/gar/?rev=18609&view=rev Author: j_arndt Date: 2012-07-01 11:50:43 +0000 (Sun, 01 Jul 2012) Log Message: ----------- nrpe/trunk: use of REINPLACE Modified Paths: -------------- csw/mgar/pkg/nrpe/trunk/Makefile Modified: csw/mgar/pkg/nrpe/trunk/Makefile =================================================================== --- csw/mgar/pkg/nrpe/trunk/Makefile 2012-07-01 08:40:39 UTC (rev 18608) +++ csw/mgar/pkg/nrpe/trunk/Makefile 2012-07-01 11:50:43 UTC (rev 18609) @@ -76,7 +76,14 @@ PKGFILES_CSWnrpe-plugin += /opt/csw/share/doc/nrpe_plugin PKGFILES_CSWnrpe-plugin += /opt/csw/share/doc/nrpe_plugin/license +# +# replace /usr/local +# +REINPLACE_USRLOCAL += .*/nrpe-2.13/SECURITY +REINPLACE_USRLOCAL += .*/nrpe-2.13/README +REINPLACE_USRLOCAL += sample-config/nrpe.cfg.in + # # migrate configuration # @@ -134,12 +141,6 @@ # overrides # -# Bad content only in READMEs and as examples in config files - -CHECKPKG_OVERRIDES_CSWnrpe += file-with-bad-content|/usr/local|root/opt/csw/share/doc/nrpe/SECURITY -CHECKPKG_OVERRIDES_CSWnrpe += file-with-bad-content|/usr/local|root/opt/csw/share/doc/nrpe/README -CHECKPKG_OVERRIDES_CSWnrpe += file-with-bad-content|/usr/local|root/opt/csw/etc/templates/CSWnrpe/etc/opt/csw/nrpe.cfg - # README_8k should be in every package CHECKPKG_OVERRIDES_CSWnrpe += file-collision|/opt/csw/share/doc/nrpe/README_8k|CSWnrpe|CSWnrpe-plugin 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 Jul 1 17:39:13 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 01 Jul 2012 15:39:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[18610] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18610 http://gar.svn.sourceforge.net/gar/?rev=18610&view=rev Author: j_arndt Date: 2012-07-01 15:39:13 +0000 (Sun, 01 Jul 2012) Log Message: ----------- nagios_plugins/trunk: corrected option for IPv6 ping Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-01 11:50:43 UTC (rev 18609) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-01 15:39:13 UTC (rev 18610) @@ -43,7 +43,7 @@ #CONFIGURE_ARGS += --with-ps-varlist="procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procetime,procprog,&pos" # CONFIGURE_ARGS += --with-trusted-path=/usr/bin:/usr/sbin:/opt/csw/bin:/opt/csw/sbin:$(prefix)/libexec/nagios-plugins -CONFIGURE_ARGS += --with-ping6-command="/usr/sbin/ping -a inet6 -s %s 56 %d" +CONFIGURE_ARGS += --with-ping6-command="/usr/sbin/ping -A inet6 -s %s 56 %d" libexecdir ?= $(prefix)/libexec/nagios-plugins This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Mon Jul 2 06:05:56 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 02 Jul 2012 04:05:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[18611] csw/mgar/pkg/ruby19/trunk Message-ID: Revision: 18611 http://gar.svn.sourceforge.net/gar/?rev=18611&view=rev Author: bdwalton Date: 2012-07-02 04:05:56 +0000 (Mon, 02 Jul 2012) Log Message: ----------- ruby19/trunk: patch-level version bump Modified Paths: -------------- csw/mgar/pkg/ruby19/trunk/Makefile csw/mgar/pkg/ruby19/trunk/checksums Modified: csw/mgar/pkg/ruby19/trunk/Makefile =================================================================== --- csw/mgar/pkg/ruby19/trunk/Makefile 2012-07-01 15:39:13 UTC (rev 18610) +++ csw/mgar/pkg/ruby19/trunk/Makefile 2012-07-02 04:05:56 UTC (rev 18611) @@ -3,7 +3,7 @@ # Change this when the build starts putting files in $(libdir)/ruby/$(newver) API_VERSION = 1.9.1 API_SHORT = $(subst .,,$(API_VERSION)) -PATCHLEVEL = p125 +PATCHLEVEL = p194 CATEGORIES = lang GARTYPE = v2 @@ -116,7 +116,7 @@ DISTFILES = $(DISTNAME).tar.gz PATCHFILES += 0001-Skip-a-chmod-fileutils-test-on-solaris.patch -PATCHFILES += 0002-vm.c-vm_define_method-improve-guard-of-iseq-from-GC..patch +#PATCHFILES += 0002-vm.c-vm_define_method-improve-guard-of-iseq-from-GC..patch PATCHFILES += 0003-Use-echo-port-instead-of-http-for-gem-server-test.patch # We define upstream file regex so we can be notifed of new upstream Modified: csw/mgar/pkg/ruby19/trunk/checksums =================================================================== --- csw/mgar/pkg/ruby19/trunk/checksums 2012-07-01 15:39:13 UTC (rev 18610) +++ csw/mgar/pkg/ruby19/trunk/checksums 2012-07-02 04:05:56 UTC (rev 18611) @@ -1 +1 @@ -e3ea86b9d3fc2d3ec867f66969ae3b92 ruby-1.9.3-p125.tar.gz +bc0c715c69da4d1d8bd57069c19f6c0e ruby-1.9.3-p194.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Mon Jul 2 10:07:33 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Mon, 02 Jul 2012 08:07:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18612] csw/mgar/pkg/389-ds-base/trunk/Makefile Message-ID: Revision: 18612 http://gar.svn.sourceforge.net/gar/?rev=18612&view=rev Author: cgrzemba Date: 2012-07-02 08:07:33 +0000 (Mon, 02 Jul 2012) Log Message: ----------- 389-ds-base/trunk: fix download URL Modified Paths: -------------- csw/mgar/pkg/389-ds-base/trunk/Makefile Modified: csw/mgar/pkg/389-ds-base/trunk/Makefile =================================================================== --- csw/mgar/pkg/389-ds-base/trunk/Makefile 2012-07-02 04:05:56 UTC (rev 18611) +++ csw/mgar/pkg/389-ds-base/trunk/Makefile 2012-07-02 08:07:33 UTC (rev 18612) @@ -11,7 +11,7 @@ The enterprise-class Open Source LDAP server for Linux. It is hardened by real-world use, is full-featured, supports multi-master replication, and already handles many of the largest LDAP deployments in the world. The 389 Directory Server can be downloaded for free and set up in less than an hour using the graphical console. endef -MASTER_SITES = http://port389.org/sources +MASTER_SITES = http://port389.org/sources/ DISTFILES = $(NAME)-$(VERSION).tar.bz2 DISTFILES += CSW389-ds-base.postinstall DISTFILES += CSW389-ds-base.postremove 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 Jul 2 17:48:17 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 02 Jul 2012 15:48:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[18613] csw/mgar/pkg/gnuplot/trunk/Makefile Message-ID: Revision: 18613 http://gar.svn.sourceforge.net/gar/?rev=18613&view=rev Author: dmichelsen Date: 2012-07-02 15:48:17 +0000 (Mon, 02 Jul 2012) Log Message: ----------- gnuplot/trunk: Update deps to CSWlibxpm4 Modified Paths: -------------- csw/mgar/pkg/gnuplot/trunk/Makefile Modified: csw/mgar/pkg/gnuplot/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnuplot/trunk/Makefile 2012-07-02 08:07:33 UTC (rev 18612) +++ csw/mgar/pkg/gnuplot/trunk/Makefile 2012-07-02 15:48:17 UTC (rev 18613) @@ -28,7 +28,7 @@ RUNTIME_DEP_PKGS_CSWgnuplot += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWgnuplot += CSWlibreadline6 RUNTIME_DEP_PKGS_CSWgnuplot += CSWlibgd2 -RUNTIME_DEP_PKGS_CSWgnuplot += CSWxpm +RUNTIME_DEP_PKGS_CSWgnuplot += CSWlibxpm4 RUNTIME_DEP_PKGS_CSWgnuplot += CSWlibncurses5 RUNTIME_DEP_PKGS_CSWgnuplot += CSWliblua5-2 RUNTIME_DEP_PKGS_CSWgnuplot += CSWlibfreetype6 @@ -50,7 +50,7 @@ RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWwxwidgetsgtk2 RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWlibreadline6 RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWlibgd2 -RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWxpm +RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWlibxpm4 RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWlibncurses5 RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWlibncursesw5 RUNTIME_DEP_PKGS_CSWgnuplot-wx += CSWliblua5-2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 09:34:35 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 07:34:35 +0000 Subject: [csw-devel] SF.net SVN: gar:[18614] csw/mgar/pkg/jpilot/trunk Message-ID: Revision: 18614 http://gar.svn.sourceforge.net/gar/?rev=18614&view=rev Author: pfelecan Date: 2012-07-03 07:34:35 +0000 (Tue, 03 Jul 2012) Log Message: ----------- jpilot/trunk: kludge to install a file with name encoded in latin-1 Modified Paths: -------------- csw/mgar/pkg/jpilot/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.postinstall csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.preremove Modified: csw/mgar/pkg/jpilot/trunk/Makefile =================================================================== --- csw/mgar/pkg/jpilot/trunk/Makefile 2012-07-02 15:48:17 UTC (rev 18613) +++ csw/mgar/pkg/jpilot/trunk/Makefile 2012-07-03 07:34:35 UTC (rev 18614) @@ -12,8 +12,10 @@ who run the most popular Operating Systems in the World, Linux and Unix. endef -MASTER_SITES = http://jpilot.org/ -DISTFILES = $(DISTNAME).tar.gz +MASTER_SITES = http://jpilot.org/ +DISTFILES = $(DISTNAME).tar.gz +DISTFILES += CSWjpilot.postinstall +DISTFILES += CSWjpilot.preremove GARCOMPILER = GNU @@ -75,6 +77,14 @@ PATH := /opt/csw/gnu:$(PATH) +post-install-modulated: + mv $(DESTDIR)/$(sharedstatedir)/$(NAME)/Ma\xF1anaDB.pdb $(DESTDIR)/$(sharedstatedir)/$(NAME)/MananaDB.pdb + $(MAKECOOKIE) + # this is private and not available publicly mydependencies: $(HOME)/bin/ocswdeplist --package $(NAME) + +# Local Variables: +# coding: latin-1 +# End: Added: csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.postinstall =================================================================== --- csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.postinstall (rev 0) +++ csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.postinstall 2012-07-03 07:34:35 UTC (rev 18614) @@ -0,0 +1,23 @@ +# $Id$ + +Error() +{ + echo "postinstall: anomaly : $1" >&2 + exit 1 +} + +Warning() +{ + echo "warning:" "$1" >&2 +} + +/usr/sbin/chroot ${PKG_INSTALL_ROOT:-/} /usr/bin/mv /opt/csw/share/jpilot/MananaDB.pdb /opt/csw/share/jpilot/Ma\xF1anaDB.pdb || +Warning "cannot move Manana database!" + +exit 0 + +# Local Variables: +# mode: shell-script +# coding: latin-1 +# mode: font-lock +# End: Added: csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.preremove =================================================================== --- csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.preremove (rev 0) +++ csw/mgar/pkg/jpilot/trunk/files/CSWjpilot.preremove 2012-07-03 07:34:35 UTC (rev 18614) @@ -0,0 +1,23 @@ +# $Id$ + +Error() +{ + echo "preremove: anomaly : $1" >&2 + exit 1 +} + +Warning() +{ + echo "warning:" "$1" >&2 +} + +/usr/sbin/chroot ${PKG_INSTALL_ROOT:-/} /usr/bin/mv /opt/csw/share/jpilot/Ma\xF1anaDB.pdb /opt/csw/share/jpilot/MananaDB.pdb || +Warning "cannot move Manana database!" + +exit 0 + +# Local Variables: +# mode: shell-script +# coding: latin-1 +# mode: font-lock +# 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 Tue Jul 3 10:30:34 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 03 Jul 2012 08:30:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[18615] csw/mgar/pkg/gnuplot/trunk/Makefile Message-ID: Revision: 18615 http://gar.svn.sourceforge.net/gar/?rev=18615&view=rev Author: dmichelsen Date: 2012-07-03 08:30:34 +0000 (Tue, 03 Jul 2012) Log Message: ----------- gnuplot/trunk: Reinplace gnuplotrc Modified Paths: -------------- csw/mgar/pkg/gnuplot/trunk/Makefile Modified: csw/mgar/pkg/gnuplot/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnuplot/trunk/Makefile 2012-07-03 07:34:35 UTC (rev 18614) +++ csw/mgar/pkg/gnuplot/trunk/Makefile 2012-07-03 08:30:34 UTC (rev 18615) @@ -69,6 +69,8 @@ BUILD_DEP_PKGS = $(RUNTIME_DEP_PKGS_CSWgnuplot-wx) +REINPLACE_USRLOCAL += share/gnuplotrc + EXTRA_LINKER_FLAGS = -norunpath EXTRA_MODULATORS = WXWIDGETS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 10:36:14 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 08:36:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[18616] csw/mgar/pkg/jpilot/trunk/Makefile Message-ID: Revision: 18616 http://gar.svn.sourceforge.net/gar/?rev=18616&view=rev Author: pfelecan Date: 2012-07-03 08:36:14 +0000 (Tue, 03 Jul 2012) Log Message: ----------- jpilot/trunk: verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/jpilot/trunk/Makefile Modified: csw/mgar/pkg/jpilot/trunk/Makefile =================================================================== --- csw/mgar/pkg/jpilot/trunk/Makefile 2012-07-03 08:30:34 UTC (rev 18615) +++ csw/mgar/pkg/jpilot/trunk/Makefile 2012-07-03 08:36:14 UTC (rev 18616) @@ -40,9 +40,7 @@ BUILD_DEP_PKGS += CSWpmxmlparser RUNTIME_DEP_PKGS += CSWlibatk1-0-0 -RUNTIME_DEP_PKGS += CSWlibbz2-1-0 RUNTIME_DEP_PKGS += CSWlibcairo2 -RUNTIME_DEP_PKGS += CSWlibexpat1 RUNTIME_DEP_PKGS += CSWlibfontconfig1 RUNTIME_DEP_PKGS += CSWlibfreetype6 RUNTIME_DEP_PKGS += CSWlibgcc-s1 @@ -56,13 +54,8 @@ RUNTIME_DEP_PKGS += CSWlibgpg-error0 RUNTIME_DEP_PKGS += CSWlibgthread2-0-0 RUNTIME_DEP_PKGS += CSWlibgtk-x11-2-0-0 -RUNTIME_DEP_PKGS += CSWlibiconv2 RUNTIME_DEP_PKGS += CSWlibintl8 RUNTIME_DEP_PKGS += CSWlibpisock9 -RUNTIME_DEP_PKGS += CSWlibpixman1-0 -RUNTIME_DEP_PKGS += CSWlibpng12-0 -RUNTIME_DEP_PKGS += CSWlibxrender -RUNTIME_DEP_PKGS += CSWlibz1 RUNTIME_DEP_PKGS += CSWpango CONFIGURE_ARGS = $(DIRPATHS) @@ -73,6 +66,15 @@ PACKAGING_PLATFORMS = solaris10-sparc PACKAGING_PLATFORMS += solaris10-i386 +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/share|root/opt/csw/bin/jpilot +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/share|root/opt/csw/bin/jpilot-sync +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/share|root/opt/csw/bin/jpilot-merge +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/share|root/opt/csw/bin/jpilot-dump +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/share|root/opt/csw/share/doc/jpilot/INSTALL +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/local|root/opt/csw/share/doc/jpilot/README +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/local|root/opt/csw/share/doc/jpilot/manual/plugin.html +CHECKPKG_OVERRIDES_CSWjpilot += file-with-bad-content|/usr/local|root/opt/csw/share/doc/jpilot/manual/manual.html + include gar/category.mk PATH := /opt/csw/gnu:$(PATH) 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 Jul 3 13:28:06 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 03 Jul 2012 11:28:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[18617] csw/mgar/gar/v2/categories/cpan/category.mk Message-ID: Revision: 18617 http://gar.svn.sourceforge.net/gar/?rev=18617&view=rev Author: dmichelsen Date: 2012-07-03 11:28:06 +0000 (Tue, 03 Jul 2012) Log Message: ----------- mGAR v2: For category 'cpan' force MakeMaker to be non-interactive 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 2012-07-03 08:36:14 UTC (rev 18616) +++ csw/mgar/gar/v2/categories/cpan/category.mk 2012-07-03 11:28:06 UTC (rev 18617) @@ -60,6 +60,8 @@ include gar/gar.mk CONFIGURE_ENV += PERL5LIB=$(PERL5LIB) +# Tell MakeMaker to be non-interactive +CONFIGURE_ENV += PERL_MM_USE_DEFAULT=1 BUILD_ENV += PERL5LIB=$(PERL5LIB) TEST_ENV += PERL5LIB=$(PERL5LIB) INSTALL_ENV += PERL5LIB=$(PERL5LIB) 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 Jul 3 13:33:03 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 03 Jul 2012 11:33:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[18618] csw/mgar/pkg/cpan Message-ID: Revision: 18618 http://gar.svn.sourceforge.net/gar/?rev=18618&view=rev Author: dmichelsen Date: 2012-07-03 11:33:02 +0000 (Tue, 03 Jul 2012) Log Message: ----------- cpan/DBD-ODBC/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DBD-ODBC/ csw/mgar/pkg/cpan/DBD-ODBC/branches/ csw/mgar/pkg/cpan/DBD-ODBC/tags/ csw/mgar/pkg/cpan/DBD-ODBC/trunk/ csw/mgar/pkg/cpan/DBD-ODBC/trunk/Makefile csw/mgar/pkg/cpan/DBD-ODBC/trunk/checksums csw/mgar/pkg/cpan/DBD-ODBC/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DBD-ODBC/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DBD-ODBC/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DBD-ODBC/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DBD-ODBC/trunk/Makefile 2012-07-03 11:33:02 UTC (rev 18618) @@ -0,0 +1,28 @@ +NAME = DBD-ODBC +VERSION = 1.37 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = MJEVANS + +DESCRIPTION = ODBC DBD for Perl DBI +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +BUILD_DEP_PKGS += CSWpm-dbi + +PACKAGES += CSWpm-dbd-odbc +SPKG_DESC_CSWpm-dbd-odbc = ODBC DBD for Perl DBI +RUNTIME_DEP_PKGS_CSWpm-dbd-odbc += CSWpm-dbi +RUNTIME_DEP_PKGS_CSWpm-dbd-odbc += CSWlibodbc2 + +# This is the changelog +CHECKPKG_OVERRIDES_CSWpm-dbd-odbc += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/DBD/ODBC/Changes.pm + +# Strip unknown options +CONFIGURE_ARGS = + +include gar/category.mk Added: csw/mgar/pkg/cpan/DBD-ODBC/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DBD-ODBC/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DBD-ODBC/trunk/checksums 2012-07-03 11:33:02 UTC (rev 18618) @@ -0,0 +1 @@ +0c294f8e3365c841dcee8a0ba4671c99 DBD-ODBC-1.37.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 14:04:34 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 12:04:34 +0000 Subject: [csw-devel] SF.net SVN: gar:[18619] csw/mgar/pkg Message-ID: Revision: 18619 http://gar.svn.sourceforge.net/gar/?rev=18619&view=rev Author: pfelecan Date: 2012-07-03 12:04:34 +0000 (Tue, 03 Jul 2012) Log Message: ----------- tex_metauml/trunk: migrated from a private recipe to a GAR based recipe Added Paths: ----------- csw/mgar/pkg/tex_metauml/ csw/mgar/pkg/tex_metauml/Makefile csw/mgar/pkg/tex_metauml/branches/ csw/mgar/pkg/tex_metauml/tags/ csw/mgar/pkg/tex_metauml/trunk/ csw/mgar/pkg/tex_metauml/trunk/Makefile csw/mgar/pkg/tex_metauml/trunk/checksums csw/mgar/pkg/tex_metauml/trunk/files/ Added: csw/mgar/pkg/tex_metauml/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/Makefile (rev 0) +++ csw/mgar/pkg/tex_metauml/Makefile 2012-07-03 12:04:34 UTC (rev 18619) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/tex_metauml/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:04:34 UTC (rev 18619) @@ -0,0 +1,73 @@ +# $Id$ + +NAME = tex_metauml +VERSION = 0.2.5 +GARTYPE = v2 +CATEGORIES = xtra + +DESCRIPTION = MetaPost library for typesetting UML diagrams using a human-friendly textual notation +define BLURB + MetaUML is a GNU GPL MetaPost library for typesetting UML diagrams, using a human-friendly textual notation. +endef + +DISTNAME = metauml_lib_$(VERSION) +WORKSRC = $(WORKDIR)/metauml_lib +PATCHDIR = $(WORKSRC) +MASTER_SITES = $(SF_MIRRORS) +SF_PROJ = metauml +DISTFILES = $(DISTNAME).tgz + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PACKAGES = CSWtex-metauml +SPKG_DESC_CSWtex-metauml = $(DESCRIPTION) +CATALOG_NAMEtex-metauml = tex_metauml +RUNTIME_DEP_PKGS = CSWtetex +CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex +ARCHALL = 1 +LICENCE = License + +include gar/category.mk + +install-custom: pkgtexmf = $(texmflocaldir)/metapost/metauml +install-custom: pkgdoc = $(docdir)/$(NAME) +install-custom: source = $(WORKSRC)/thrunk +install-custom: + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_activity.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_base.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_behavioral_common.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class_assoc.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class_clipart.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class_relations.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_defaults.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_instance.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_links.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_note.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_package.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_package_relations.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_paths.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_skin_simple.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_state.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_stereotype.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_templates.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_usecase.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_usecase_clipart.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_commons.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_group.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_infrastructure.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_log.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_margins.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_object.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_picture.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_picture_stack.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_positioning.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_shade.mp $(DESTDIR)/$(pkgtexmf) + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgdoc) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/version.txt $(DESTDIR)/$(pkgdoc) + $(MAKECOOKIE) Property changes on: csw/mgar/pkg/tex_metauml/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/tex_metauml/trunk/checksums =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/checksums (rev 0) +++ csw/mgar/pkg/tex_metauml/trunk/checksums 2012-07-03 12:04:34 UTC (rev 18619) @@ -0,0 +1 @@ +3dabc2acafe41d19e5fc24a25dc0972a metauml_lib_0.2.5.tgz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 14:12:16 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 12:12:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[18620] csw/mgar/pkg/tex_metauml/trunk/Makefile Message-ID: Revision: 18620 http://gar.svn.sourceforge.net/gar/?rev=18620&view=rev Author: pfelecan Date: 2012-07-03 12:12:16 +0000 (Tue, 03 Jul 2012) Log Message: ----------- tex_metauml/trunk: defined the obsolescence Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:04:34 UTC (rev 18619) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:12:16 UTC (rev 18620) @@ -25,6 +25,8 @@ PACKAGES = CSWtex-metauml SPKG_DESC_CSWtex-metauml = $(DESCRIPTION) CATALOG_NAMEtex-metauml = tex_metauml +OBSOLETED_BY_CSWtex-metauml = CSWtexmetauml +CATALOGNAME_CSWtexmetauml = tex_metauml_stub RUNTIME_DEP_PKGS = CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex ARCHALL = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 14:16:40 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 12:16:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18621] csw/mgar/pkg/tex_metauml/trunk/Makefile Message-ID: Revision: 18621 http://gar.svn.sourceforge.net/gar/?rev=18621&view=rev Author: pfelecan Date: 2012-07-03 12:16:39 +0000 (Tue, 03 Jul 2012) Log Message: ----------- tex_metauml/trunk: refined licence and architecture in hope to avoid overring Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:12:16 UTC (rev 18620) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:16:39 UTC (rev 18621) @@ -29,8 +29,8 @@ CATALOGNAME_CSWtexmetauml = tex_metauml_stub RUNTIME_DEP_PKGS = CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex -ARCHALL = 1 -LICENCE = License +ARCHALL_CSWtex-metauml = 1 +LICENCE_CSWtex-metauml = License 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 Jul 3 14:21:10 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 03 Jul 2012 12:21:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[18622] csw/mgar/pkg/mysql5/branches/mysql-5.5.x Message-ID: Revision: 18622 http://gar.svn.sourceforge.net/gar/?rev=18622&view=rev Author: wahwah Date: 2012-07-03 12:21:09 +0000 (Tue, 03 Jul 2012) Log Message: ----------- mysql5/branches/mysql-5.5.x: downgrade to 5.5.24 because of http://bugs.mysql.com/bug.php?id=65745 Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2012-07-03 12:16:39 UTC (rev 18621) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2012-07-03 12:21:09 UTC (rev 18622) @@ -13,7 +13,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)5 BASE_VERSION = 5.5 -PATCHLEVEL = 25 +PATCHLEVEL = 24 ALTS_PRIO = 55 VERSION = $(BASE_VERSION).$(PATCHLEVEL) CATEGORIES = server Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2012-07-03 12:16:39 UTC (rev 18621) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2012-07-03 12:21:09 UTC (rev 18622) @@ -1 +1 @@ -9e2a3d5b41eac7fae41b93e5b71ea49c mysql-5.5.25.tar.gz +dc84f8a0305e054c859533944e79f803 mysql-5.5.24.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 14:21:21 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 12:21:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[18623] csw/mgar/pkg/tex_metauml/trunk/Makefile Message-ID: Revision: 18623 http://gar.svn.sourceforge.net/gar/?rev=18623&view=rev Author: pfelecan Date: 2012-07-03 12:21:21 +0000 (Tue, 03 Jul 2012) Log Message: ----------- tex_metauml/trunk: typo in licence definition Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:21:09 UTC (rev 18622) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:21:21 UTC (rev 18623) @@ -30,7 +30,7 @@ RUNTIME_DEP_PKGS = CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex ARCHALL_CSWtex-metauml = 1 -LICENCE_CSWtex-metauml = License +LICENSE_CSWtex-metauml = License include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 3 14:59:11 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 03 Jul 2012 12:59:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[18624] csw/mgar/pkg/tex_metauml/trunk/Makefile Message-ID: Revision: 18624 http://gar.svn.sourceforge.net/gar/?rev=18624&view=rev Author: pfelecan Date: 2012-07-03 12:59:11 +0000 (Tue, 03 Jul 2012) Log Message: ----------- tex_metauml/trunk: somewhat lost in license declaration Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:21:21 UTC (rev 18623) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:59:11 UTC (rev 18624) @@ -30,7 +30,10 @@ RUNTIME_DEP_PKGS = CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex ARCHALL_CSWtex-metauml = 1 -LICENSE_CSWtex-metauml = License +#LICENSE = thrunk/License +#LICENSE = $(WORKSRC)/thrunk/License +LICENSE_CSWtex-metauml = thrunk/License +LICENSE_CSWtexmetauml = thrunk/License 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 Jul 3 16:03:14 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 03 Jul 2012 14:03:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[18625] csw/mgar/pkg/tex_metauml/trunk/Makefile Message-ID: Revision: 18625 http://gar.svn.sourceforge.net/gar/?rev=18625&view=rev Author: dmichelsen Date: 2012-07-03 14:03:13 +0000 (Tue, 03 Jul 2012) Log Message: ----------- tex_metauml/trunk: Fix file locations Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 12:59:11 UTC (rev 18624) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 14:03:13 UTC (rev 18625) @@ -10,12 +10,10 @@ MetaUML is a GNU GPL MetaPost library for typesetting UML diagrams, using a human-friendly textual notation. endef -DISTNAME = metauml_lib_$(VERSION) -WORKSRC = $(WORKDIR)/metauml_lib -PATCHDIR = $(WORKSRC) +DISTNAME = metauml_lib MASTER_SITES = $(SF_MIRRORS) SF_PROJ = metauml -DISTFILES = $(DISTNAME).tgz +DISTFILES = metauml_lib_$(VERSION).tgz CONFIGURE_SCRIPTS = BUILD_SCRIPTS = @@ -30,10 +28,7 @@ RUNTIME_DEP_PKGS = CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex ARCHALL_CSWtex-metauml = 1 -#LICENSE = thrunk/License -#LICENSE = $(WORKSRC)/thrunk/License -LICENSE_CSWtex-metauml = thrunk/License -LICENSE_CSWtexmetauml = thrunk/License +LICENSE = thrunk/License include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Tue Jul 3 23:01:40 2012 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Tue, 03 Jul 2012 21:01:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18626] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18626 http://gar.svn.sourceforge.net/gar/?rev=18626&view=rev Author: wilbury Date: 2012-07-03 21:01:39 +0000 (Tue, 03 Jul 2012) Log Message: ----------- nagios_plugins/trunk: Add CSWnetsnmp dependency Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-03 14:03:13 UTC (rev 18625) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-03 21:01:39 UTC (rev 18626) @@ -1,3 +1,5 @@ +# $Id$ +# NAME = nagios-plugins VERSION = 1.4.15 CATEGORIES = apps @@ -56,6 +58,7 @@ RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibintl8 CSWlibpq5 RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibmysqlclient18 CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibz1 CSWperl CSWliblber2-4-2 CSWlibldap2-4-2 +RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWnetsnmp BUILD_DEP_PKGS_CSWnagios-plugins += CSWmysql-dev BUILD_DEP_PKGS_CSWnagios-plugins += CSWpostgresql-dev This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From wilbury at users.sourceforge.net Tue Jul 3 23:03:40 2012 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Tue, 03 Jul 2012 21:03:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18627] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18627 http://gar.svn.sourceforge.net/gar/?rev=18627&view=rev Author: wilbury Date: 2012-07-03 21:03:40 +0000 (Tue, 03 Jul 2012) Log Message: ----------- nagios_plugins/trunk: Add svn:keywords Property Changed: ---------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Property changes on: csw/mgar/pkg/nagios_plugins/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 wilbury at users.sourceforge.net Wed Jul 4 00:18:22 2012 From: wilbury at users.sourceforge.net (wilbury at users.sourceforge.net) Date: Tue, 03 Jul 2012 22:18:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18628] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18628 http://gar.svn.sourceforge.net/gar/?rev=18628&view=rev Author: wilbury Date: 2012-07-03 22:18:22 +0000 (Tue, 03 Jul 2012) Log Message: ----------- nagios_plugins/trunk: Fix dependencies and overrides. Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-03 21:03:40 UTC (rev 18627) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-03 22:18:22 UTC (rev 18628) @@ -35,7 +35,7 @@ CONFIGURE_ARGS += --with-mysql-dir=/opt/csw CONFIGURE_ARGS += --with-pg-dir=/opt/csw/postgresql/include/ CONFIGURE_ARGS += --disable-largefile -CONFIGURE_ARGS += --libexecdir=$(prefix)/libexec/nagios-plugins +CONFIGURE_ARGS += --libexecdir=$(prefix)/libexec/nagios-plugins CONFIGURE_ARGS += --with-perl=/opt/csw/bin/perl CONFIGURE_ARGS += --with-openssl=/opt/csw # http://184.82.236.176/?p=4 @@ -46,6 +46,8 @@ # CONFIGURE_ARGS += --with-trusted-path=/usr/bin:/usr/sbin:/opt/csw/bin:/opt/csw/sbin:$(prefix)/libexec/nagios-plugins CONFIGURE_ARGS += --with-ping6-command="/usr/sbin/ping -A inet6 -s %s 56 %d" +CONFIGURE_ARGS += --with-snmpget-command=/opt/csw/bin/snmpget +CONFIGURE_ARGS += --with-snmpgetnext-command=/opt/csw/bin/snmpgetnext libexecdir ?= $(prefix)/libexec/nagios-plugins @@ -60,6 +62,9 @@ RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWlibz1 CSWperl CSWliblber2-4-2 CSWlibldap2-4-2 RUNTIME_DEP_PKGS_CSWnagios-plugins += CSWnetsnmp +# Add this override for now +CHECKPKG_OVERRIDES_CSWnagios-plugins += surplus-dependency|CSWnetsnmp + BUILD_DEP_PKGS_CSWnagios-plugins += CSWmysql-dev BUILD_DEP_PKGS_CSWnagios-plugins += CSWpostgresql-dev BUILD_DEP_PKGS_CSWnagios-plugins += CSWlibz-dev 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 Jul 4 01:34:50 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Tue, 03 Jul 2012 23:34:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[18629] csw/mgar/pkg/git/trunk Message-ID: Revision: 18629 http://gar.svn.sourceforge.net/gar/?rev=18629&view=rev Author: bdwalton Date: 2012-07-03 23:34:50 +0000 (Tue, 03 Jul 2012) Log Message: ----------- git/trunk: version bump; solaris 10 only Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile csw/mgar/pkg/git/trunk/checksums Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2012-07-03 22:18:22 UTC (rev 18628) +++ csw/mgar/pkg/git/trunk/Makefile 2012-07-03 23:34:50 UTC (rev 18629) @@ -1,10 +1,12 @@ NAME = git -VERSION = 1.7.11 +VERSION = 1.7.11.1 #PATCHLEVEL = rc4 DISTNAME = $(NAME)-$(VERSION) CATEGORIES = devel GARTYPE = v2 +PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc + VENDOR_URL = http://git-scm.org/ NO_SVN_TESTS=YesPlease @@ -54,7 +56,7 @@ ARCHALL_CSWgit-doc = 1 ARCHALL_CSWgit-completion = 1 -BUILD_DEP_PKGS = CSWasciidoc CSWossldevel CSWxmlto CSWbash CSWlibcurl-dev +BUILD_DEP_PKGS = CSWasciidoc CSWlibssl-dev CSWxmlto CSWbash CSWlibcurl-dev BUILD_DEP_PKGS += CSWgsed CSWgnulinks CSWperl CSWtk CSWexpat BUILD_DEP_PKGS += CSWzlib CSWpmerror CSWpmsvn CSWcvs CSWemacs BUILD_DEP_PKGS += CSWpython Modified: csw/mgar/pkg/git/trunk/checksums =================================================================== --- csw/mgar/pkg/git/trunk/checksums 2012-07-03 22:18:22 UTC (rev 18628) +++ csw/mgar/pkg/git/trunk/checksums 2012-07-03 23:34:50 UTC (rev 18629) @@ -1 +1 @@ -0beee35ec7d11756f51ca1d3ec5c0e16 git-1.7.11.tar.gz +2c5d85ec5b6e08986d942461debc9d6b git-1.7.11.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 4 08:38:39 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 04 Jul 2012 06:38:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[18630] csw/mgar/pkg/tex_metauml/trunk/Makefile Message-ID: Revision: 18630 http://gar.svn.sourceforge.net/gar/?rev=18630&view=rev Author: pfelecan Date: 2012-07-04 06:38:39 +0000 (Wed, 04 Jul 2012) Log Message: ----------- tex_metauml/trunk: last refinements before release Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-03 23:34:50 UTC (rev 18629) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-04 06:38:39 UTC (rev 18630) @@ -13,7 +13,7 @@ DISTNAME = metauml_lib MASTER_SITES = $(SF_MIRRORS) SF_PROJ = metauml -DISTFILES = metauml_lib_$(VERSION).tgz +DISTFILES = $(DISTNAME)_$(VERSION).tgz CONFIGURE_SCRIPTS = BUILD_SCRIPTS = @@ -28,7 +28,7 @@ RUNTIME_DEP_PKGS = CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml += surplus-dependency|CSWtetex ARCHALL_CSWtex-metauml = 1 -LICENSE = thrunk/License +LICENSE = thrunk/License include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 4 10:06:20 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 04 Jul 2012 08:06:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[18631] csw/mgar/pkg Message-ID: Revision: 18631 http://gar.svn.sourceforge.net/gar/?rev=18631&view=rev Author: pfelecan Date: 2012-07-04 08:06:19 +0000 (Wed, 04 Jul 2012) Log Message: ----------- pdftohtml/trunk: migrated from a private recipe to a GAR based recipe Added Paths: ----------- csw/mgar/pkg/pdftohtml/ csw/mgar/pkg/pdftohtml/Makefile csw/mgar/pkg/pdftohtml/branches/ csw/mgar/pkg/pdftohtml/tags/ csw/mgar/pkg/pdftohtml/trunk/ csw/mgar/pkg/pdftohtml/trunk/Makefile csw/mgar/pkg/pdftohtml/trunk/checksums csw/mgar/pkg/pdftohtml/trunk/files/ csw/mgar/pkg/pdftohtml/trunk/files/0001-Silent-write-strings-warnings.patch csw/mgar/pkg/pdftohtml/trunk/files/COPYING Added: csw/mgar/pkg/pdftohtml/Makefile =================================================================== --- csw/mgar/pkg/pdftohtml/Makefile (rev 0) +++ csw/mgar/pkg/pdftohtml/Makefile 2012-07-04 08:06:19 UTC (rev 18631) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/pdftohtml/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/pdftohtml/trunk/Makefile =================================================================== --- csw/mgar/pkg/pdftohtml/trunk/Makefile (rev 0) +++ csw/mgar/pkg/pdftohtml/trunk/Makefile 2012-07-04 08:06:19 UTC (rev 18631) @@ -0,0 +1,44 @@ +# $Id$ + +NAME = pdftohtml +VERSION = 0.40a +GARTYPE = v2 +CATEGORIES = apps + +DESCRIPTION = converts files from PDF into HTML +define BLURB + Pdftohtml is a tool based on the Xpdf package which translates pdf + documents into html format. +endef + +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(DISTNAME).tar.gz +DISTFILES += COPYING +PATCHFILES += 0001-Silent-write-strings-warnings.patch + +BUILD_DEP_PKGS += CSWhelp2man + +RUNTIME_DEP_PKGS += CSWlibgcc-s1 +RUNTIME_DEP_PKGS += CSWlibstdc++6 + +GARCOMPILER = GNU +CONFIGURE_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +post-build-modulated: + cd $(WORKSRC)/src && help2man --no-discard-stderr --help-option=-h --version-option=-v --no-info --output=pdftohtml.1 ./pdftohtml + $(MAKECOOKIE) + +install-custom: + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(bindir) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/src/pdftohtml $(DESTDIR)/$(bindir) + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(mandir)/man1 + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/src/pdftohtml.1 $(DESTDIR)/$(mandir)/man1 + $(MAKECOOKIE) + +# this is private and not available publicly +mydependencies: + $(HOME)/bin/ocswdeplist --package $(NAME) Property changes on: csw/mgar/pkg/pdftohtml/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/pdftohtml/trunk/checksums =================================================================== --- csw/mgar/pkg/pdftohtml/trunk/checksums (rev 0) +++ csw/mgar/pkg/pdftohtml/trunk/checksums 2012-07-04 08:06:19 UTC (rev 18631) @@ -0,0 +1 @@ +2d82996faaf2b9439f8395743c1c163d pdftohtml-0.40a.tar.gz Added: csw/mgar/pkg/pdftohtml/trunk/files/0001-Silent-write-strings-warnings.patch =================================================================== --- csw/mgar/pkg/pdftohtml/trunk/files/0001-Silent-write-strings-warnings.patch (rev 0) +++ csw/mgar/pkg/pdftohtml/trunk/files/0001-Silent-write-strings-warnings.patch 2012-07-04 08:06:19 UTC (rev 18631) @@ -0,0 +1,84 @@ +From ed6cd7d3bb38504f8daff71ea513bde6b4190bd8 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 3 Jul 2012 16:15:59 +0200 +Subject: [PATCH] Silent write strings warnings + +--- + fofi/Makefile | 2 +- + goo/Makefile | 4 ++-- + splash/Makefile | 2 +- + src/Makefile | 2 +- + xpdf/Makefile | 2 +- + 5 files changed, 6 insertions(+), 6 deletions(-) + +diff --git a/fofi/Makefile b/fofi/Makefile +index 286b1e2..04ecf36 100755 +--- a/fofi/Makefile ++++ b/fofi/Makefile +@@ -14,7 +14,7 @@ srcdir = . + GOOSRCDIR = $(srcdir)/../goo + GOOLIBDIR = ../goo + +-CXXFLAGS = -g -O2 -DHAVE_CONFIG_H -I.. -I$(GOOSRCDIR) -I$(srcdir) ++CXXFLAGS = -g -O2 -DHAVE_CONFIG_H -I.. -I$(GOOSRCDIR) -I$(srcdir) -Wno-write-strings + + CXX ?= c++ + AR = ar rc +diff --git a/goo/Makefile b/goo/Makefile +index d2df2fa..e2b1b28 100755 +--- a/goo/Makefile ++++ b/goo/Makefile +@@ -11,9 +11,9 @@ SHELL = /bin/sh + + srcdir = . + +-CFLAGS += $(DEBUG) -O2 -DHAVE_CONFIG_H -I.. -I$(srcdir) ++CFLAGS += $(DEBUG) -O2 -DHAVE_CONFIG_H -I.. -I$(srcdir) -Wno-write-strings + #-g -DDEBUG_MEM +-CXXFLAGS += $(DEBUG) -O2 -DHAVE_CONFIG_H -I.. -I$(srcdir) ++CXXFLAGS += $(DEBUG) -O2 -DHAVE_CONFIG_H -I.. -I$(srcdir) -Wno-write-strings + #-g -DDEBUG_MEM + + CC ?= cc +diff --git a/splash/Makefile b/splash/Makefile +index 0eb4b06..7d89742 100755 +--- a/splash/Makefile ++++ b/splash/Makefile +@@ -16,7 +16,7 @@ GOOLIBDIR = ../goo + FOFISRCDIR = $(srcdir)/../fofi + FOFILIBDIR = ../fofi + +-CXXFLAGS = -g -O2 -DHAVE_CONFIG_H -I.. -I$(GOOSRCDIR) -I$(FOFISRCDIR) -I$(srcdir) ++CXXFLAGS = -g -O2 -DHAVE_CONFIG_H -I.. -I$(GOOSRCDIR) -I$(FOFISRCDIR) -I$(srcdir) -Wno-write-strings + + CXX ?= c++ + AR = ar rc +diff --git a/src/Makefile b/src/Makefile +index 5e68f5d..d159411 100755 +--- a/src/Makefile ++++ b/src/Makefile +@@ -11,7 +11,7 @@ FOFILIBDIR = ../fofi + SPLASHSRCDIR = ../splash + SPLASHLIBDIR = ../splash + +-CXXFLAGS = -g -O2 -DHAVE_CONFIG_H -DHAVE_DIRENT_H=1 -I.. -DHAVE_REWINDDIR=1 -DHAVE_POPEN=1 -I.. -I$(GOOSRCDIR) -I$(XPDFSRCDIR) -I$(FOFISRCDIR) -I$(SPLASHSRCDIR) -I$(srcdir) -I/usr/X11R6/include ++CXXFLAGS = -g -O2 -DHAVE_CONFIG_H -DHAVE_DIRENT_H=1 -I.. -DHAVE_REWINDDIR=1 -DHAVE_POPEN=1 -I.. -I$(GOOSRCDIR) -I$(XPDFSRCDIR) -I$(FOFISRCDIR) -I$(SPLASHSRCDIR) -I$(srcdir) -I/usr/X11R6/include -Wno-write-strings + + LDFLAGS = + +diff --git a/xpdf/Makefile b/xpdf/Makefile +index 039d005..f9502c9 100755 +--- a/xpdf/Makefile ++++ b/xpdf/Makefile +@@ -18,7 +18,7 @@ FOFILIBDIR = ../fofi + SPLASHSRCDIR = $(srcdir)/../splash + SPLASHLIBDIR = ../splash + +-CXXFLAGS += -g -O2 -DHAVE_CONFIG_H -I.. -I$(GOOSRCDIR) -I$(FOFISRCDIR) -I$(SPLASHSRCDIR) -I$(srcdir) -I/usr/X11R6/include ++CXXFLAGS += -g -O2 -DHAVE_CONFIG_H -I.. -I$(GOOSRCDIR) -I$(FOFISRCDIR) -I$(SPLASHSRCDIR) -I$(srcdir) -I/usr/X11R6/include -Wno-write-strings + + CC ?= cc + CXX ?= c++ +-- +1.7.10.3 + Added: csw/mgar/pkg/pdftohtml/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/pdftohtml/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/pdftohtml/trunk/files/COPYING 2012-07-04 08:06:19 UTC (rev 18631) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 Library 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 cgrzemba at users.sourceforge.net Wed Jul 4 11:28:54 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Wed, 04 Jul 2012 09:28:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18632] csw/mgar/pkg/exiv2/trunk Message-ID: Revision: 18632 http://gar.svn.sourceforge.net/gar/?rev=18632&view=rev Author: cgrzemba Date: 2012-07-04 09:28:53 +0000 (Wed, 04 Jul 2012) Log Message: ----------- exiv2/trunk: Initial commit > * g++ build > * Studio compiles with -library=stlport4, but do not link Modified Paths: -------------- csw/mgar/pkg/exiv2/trunk/Makefile csw/mgar/pkg/exiv2/trunk/files/0002-fix-depend-flag-config.mk.in.patch csw/mgar/pkg/exiv2/trunk/files/0003-type-cast-basicio.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0004-rsc-remove-error.cpp.patch Added Paths: ----------- csw/mgar/pkg/exiv2/trunk/files/0002-fix-test-flag-config.mk.in.patch csw/mgar/pkg/exiv2/trunk/files/0005-include-XML_Node.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-actions.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-basicio.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-bmpimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-canonmn.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-convert.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-cr2image.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-dataset.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-easyaccess.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-epsimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-exiv2.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-futils.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-gifimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-jp2image.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-jpgimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-makernote.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-mrwimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-pgfimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-pngchunk.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-pngimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-preview.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-proteries.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-psdimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-rafimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-tags.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-tgaimage.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffcomposite.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffvisitor.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-types.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-utils.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-value.cpp.patch csw/mgar/pkg/exiv2/trunk/files/0006-include-xmpsidecar.cpp.patch Modified: csw/mgar/pkg/exiv2/trunk/Makefile =================================================================== --- csw/mgar/pkg/exiv2/trunk/Makefile 2012-07-04 08:06:19 UTC (rev 18631) +++ csw/mgar/pkg/exiv2/trunk/Makefile 2012-07-04 09:28:53 UTC (rev 18632) @@ -13,24 +13,93 @@ MASTER_SITES = http://www.exiv2.org/ DISTFILES = $(NAME)-$(VERSION).tar.gz -PATCHFILES += 0001-Remove-unknown-flag-to-Sun-Studio.patch -PATCHFILES += 0002-fix-depend-flag-config.mk.in.patch -PATCHFILES += 0003-type-cast-basicio.cpp.patch -PATCHFILES += 0004-rsc-remove-error.cpp.patch -GARCOMPILER = SOS12U3 +BUILD_DEP_PKGS += CSWlibexpat-dev -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz +PATCHFILES += 0002-fix-test-flag-config.mk.in.patch +# Patches for Sun-Studio Compiler +# PATCHFILES += 0001-Remove-unknown-flag-to-Sun-Studio.patch +# PATCHFILES += 0002-fix-depend-flag-config.mk.in.patch +# PATCHFILES += 0003-type-cast-basicio.cpp.patch +# PATCHFILES += 0004-rsc-remove-error.cpp.patch +# PATCHFILES += 0005-include-XML_Node.cpp.patch +# PATCHFILES += 0006-include-basicio.cpp.patch +# PATCHFILES += 0006-include-bmpimage.cpp.patch +# PATCHFILES += 0006-include-canonmn.cpp.patch +# PATCHFILES += 0006-include-convert.cpp.patch +# PATCHFILES += 0006-include-cr2image.cpp.patch +# PATCHFILES += 0006-include-dataset.cpp.patch +# PATCHFILES += 0006-include-easyaccess.cpp.patch +# PATCHFILES += 0006-include-epsimage.cpp.patch +# PATCHFILES += 0006-include-futils.cpp.patch +# PATCHFILES += 0006-include-gifimage.cpp.patch +# PATCHFILES += 0006-include-jp2image.cpp.patch +# PATCHFILES += 0006-include-jpgimage.cpp.patch +# PATCHFILES += 0006-include-makernote.cpp.patch +# PATCHFILES += 0006-include-mrwimage.cpp.patch +# PATCHFILES += 0006-include-pgfimage.cpp.patch +# PATCHFILES += 0006-include-pngchunk.cpp.patch +# PATCHFILES += 0006-include-pngimage.cpp.patch +# PATCHFILES += 0006-include-preview.cpp.patch +# PATCHFILES += 0006-include-proteries.cpp.patch +# PATCHFILES += 0006-include-psdimage.cpp.patch +# PATCHFILES += 0006-include-rafimage.cpp.patch +# PATCHFILES += 0006-include-tags.cpp.patch +# PATCHFILES += 0006-include-tgaimage.cpp.patch +# PATCHFILES += 0006-include-tiffcomposite.cpp.patch +# PATCHFILES += 0006-include-tiffvisitor.cpp.patch +# PATCHFILES += 0006-include-types.cpp.patch +# PATCHFILES += 0006-include-value.cpp.patch -BUILD64_LIBS_ONLY = 1 +GARCOMPILER = GCC4 # SOS12U3 +PACKAGES += CSWlibexiv2-12 +CATALOGNAME_CSWlibexiv2-12 = libexiv2_12 +PKGFILES_CSWlibexiv2-12 += $(call baseisadirs,$(libdir),libexiv2\.so\.12\.0\.0) +PKGFILES_CSWlibexiv2-12 += $(call baseisadirs,$(libdir),libexiv2\.so\.12(\.\d+)*) +SPKG_DESC_CSWlibexiv2-12 += $(DESCRIPTION), libexiv2.so.12 +RUNTIME_DEP_PKGS_CSWlibexiv2-12 += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWlibexiv2-12 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibexiv2-12 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibexiv2-12 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWlibexiv2-12 += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWlibexiv2-12 += CSWlibgcc-s1 +CHECKPKG_OVERRIDES_CSWlibexiv2-12 += file-with-bad-content|/usr/local|root/opt/csw/lib/libexiv2.so.12.0.0 + + +PACKAGES += CSWexiv2-dev +CATALOGNAME_CSWexiv2-dev = exiv2_dev +SPKG_DESC_CSWexiv2-dev += $(DESCRIPTION), development files +PKGFILES_CSWexiv2-dev += /opt/csw/lib/libexiv2.so +PKGFILES_CSWexiv2-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWexiv2-dev += CSWlibexiv2-12 + +PACKAGES += CSWexiv2 +CATALOGNAME_CSWexiv2 = exiv2 +SPKG_DESC_CSWexiv2 += $(DESCRIPTION), tools +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWexiv2 += CSWlibexiv2-12 +CHECKPKG_OVERRIDES_CSWexiv2 += file-with-bad-content|/usr/local|root/opt/csw/bin/exiv2 + +# BUILD64_LIBS_ONLY = 1 + +# Options for Sun-Studio-Compiler # see: http://solaris.bionicmutton.org/hg/kde4-specs-460/file/26c2cab27bbe/specs/patches/exiv2/0.14/README.STUDIO12 -EXTRA_CXXFLAGS = -features=anachronisms,except,rtti,export,extensions,nestedaccess,tmplife,tmplrefstatic +# EXTRA_CXXFLAGS = -features=anachronisms,except,rtti,export,extensions,nestedaccess,tmplife,tmplrefstatic -library=stlport4 +# EXTRA_LINKER_FLAGS += -library=stlport4 +EXTRA_LINKER_FLAGS += -lintl +SKIPTEST = 1 + CONFIGURE_ARGS = $(DIRPATHS) - # Sun Studio doesn't unerstand g++ features -CONFIGURE_ARGS += --disable-visibility +# CONFIGURE_ARGS += --disable-visibility include gar/category.mk + +PATH:=/opt/csw/gnu:$(PATH) Modified: csw/mgar/pkg/exiv2/trunk/files/0002-fix-depend-flag-config.mk.in.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0002-fix-depend-flag-config.mk.in.patch 2012-07-04 08:06:19 UTC (rev 18631) +++ csw/mgar/pkg/exiv2/trunk/files/0002-fix-depend-flag-config.mk.in.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -1,6 +1,6 @@ --- a/config/config.mk.in +++ b/config/config.mk.in -@@ -129,14 +129,14 @@ ifdef DEP_TRACKING +@@ -129,11 +129,11 @@ ifdef DEP_TRACKING # dependencies. If you're not using gcc, you may need to change # this to something suitable for your compiler or simply unset # the variable. See the link above for suggestions. @@ -8,13 +8,9 @@ + MAKEDEPEND = $(CXX) -xM1 $(CPPFLAGS) -o $*.d $< # Dependency files post-process commands -- POSTDEPEND = if test ! -d $(DEPDIR); then mkdir $(DEPDIR); fi; \ -+ POSTDEPEND = $(shell if test ! -d $(DEPDIR); then mkdir $(DEPDIR); fi; \ - if test -e $*.d; then cp $*.d $(DEPDIR)/$*.d; \ + POSTDEPEND = if test ! -d $(DEPDIR); then mkdir $(DEPDIR); fi; \ +- if test -e $*.d; then cp $*.d $(DEPDIR)/$*.d; \ ++ if test -f $*.d; then cp $*.d $(DEPDIR)/$*.d; \ sed -e 's/^\#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $(DEPDIR)/$*.d; \ -- $(RM) $*.d; fi -+ $(RM) $*.d; fi) - - # Compiler flags to generate dependency files at the same time - # as object files (for gcc) + $(RM) $*.d; fi Added: csw/mgar/pkg/exiv2/trunk/files/0002-fix-test-flag-config.mk.in.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0002-fix-test-flag-config.mk.in.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0002-fix-test-flag-config.mk.in.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/config/config.mk.in ++++ b/config/config.mk.in +@@ -133,7 +133,7 @@ ifdef DEP_TRACKING + + # Dependency files post-process commands + POSTDEPEND = if test ! -d $(DEPDIR); then mkdir $(DEPDIR); fi; \ +- if test -e $*.d; then cp $*.d $(DEPDIR)/$*.d; \ ++ if test -f $*.d; then cp $*.d $(DEPDIR)/$*.d; \ + sed -e 's/^\#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \ + -e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $(DEPDIR)/$*.d; \ + $(RM) $*.d; fi Modified: csw/mgar/pkg/exiv2/trunk/files/0003-type-cast-basicio.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0003-type-cast-basicio.cpp.patch 2012-07-04 08:06:19 UTC (rev 18631) +++ csw/mgar/pkg/exiv2/trunk/files/0003-type-cast-basicio.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -1,5 +1,3 @@ -diff --git a/src/basicio.cpp b/src/basicio.cpp -index 0343dff..174e8a7 100644 --- a/src/basicio.cpp +++ b/src/basicio.cpp @@ -312,7 +312,7 @@ namespace Exiv2 { Modified: csw/mgar/pkg/exiv2/trunk/files/0004-rsc-remove-error.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0004-rsc-remove-error.cpp.patch 2012-07-04 08:06:19 UTC (rev 18631) +++ csw/mgar/pkg/exiv2/trunk/files/0004-rsc-remove-error.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -1,5 +1,3 @@ -diff --git a/src/error.cpp b/src/error.cpp -index af588d0..efe2ebf 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -26,7 +26,7 @@ Added: csw/mgar/pkg/exiv2/trunk/files/0005-include-XML_Node.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0005-include-XML_Node.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0005-include-XML_Node.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,12 @@ +--- a/xmpsdk/src/XML_Node.cpp ++++ b/xmpsdk/src/XML_Node.cpp +@@ -13,6 +13,9 @@ + #include + #include + ++#include ++#include ++ + // ! Can't include XMP..._Impl.hpp - used by both Core and Files. + #define XMP_LitNMatch(s,l,n) (std::strncmp((s),(l),(n)) == 0) + Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-actions.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-actions.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-actions.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,13 @@ +diff --git a/src/actions.cpp b/src/actions.cpp +index a102683..a842648 100644 +--- a/src/actions.cpp ++++ b/src/actions.cpp +@@ -76,6 +76,8 @@ EXIV2_RCSID("@(#) $Id: actions.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #else + # include + #endif ++#include ++#include + + // ***************************************************************************** + // local declarations Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-basicio.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-basicio.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-basicio.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,12 @@ +--- a/src/basicio.cpp ++++ b/src/basicio.cpp +@@ -61,6 +61,9 @@ EXIV2_RCSID("@(#) $Id: basicio.cpp 2689 2012-03-24 13:00:00Z ahuggel $") + # include // for getpid, stat + #endif + ++#include ++#include ++ + #if defined WIN32 && !defined __CYGWIN__ + // Windows doesn't provide mode_t, nlink_t + typedef unsigned short mode_t; Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-bmpimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-bmpimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-bmpimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/bmpimage.cpp ++++ b/src/bmpimage.cpp +@@ -48,6 +48,8 @@ EXIV2_RCSID("@(#) $Id: bmpimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + ++#include ++ + // ***************************************************************************** + // class member definitions + namespace Exiv2 { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-canonmn.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-canonmn.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-canonmn.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/canonmn.cpp ++++ b/src/canonmn.cpp +@@ -48,6 +48,8 @@ EXIV2_RCSID("@(#) $Id: canonmn.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + ++#include ++ + // ***************************************************************************** + // class member definitions + namespace Exiv2 { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-convert.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-convert.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-convert.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/convert.cpp ++++ b/src/convert.cpp +@@ -46,6 +46,8 @@ EXIV2_RCSID("@(#) $Id: convert.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include // for snprintf (C99) ++#include ++ + #ifdef _MSC_VER + # define snprintf _snprintf + #endif Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-cr2image.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-cr2image.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-cr2image.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/cr2image.cpp ++++ b/src/cr2image.cpp +@@ -52,6 +52,8 @@ EXIV2_RCSID("@(#) $Id: cr2image.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + ++#include ++ + // ***************************************************************************** + // class member definitions + namespace Exiv2 { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-dataset.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-dataset.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-dataset.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/datasets.cpp ++++ b/src/datasets.cpp +@@ -42,6 +42,8 @@ EXIV2_RCSID("@(#) $Id: datasets.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + ++#include ++ + // ***************************************************************************** + // class member definitions + namespace Exiv2 { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-easyaccess.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-easyaccess.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-easyaccess.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/easyaccess.cpp ++++ b/src/easyaccess.cpp +@@ -32,6 +32,7 @@ EXIV2_RCSID("@(#) $Id: easyaccess.cpp 2711 2012-04-22 05:28:42Z ahuggel $") + // ***************************************************************************** + // included header files + #include "easyaccess.hpp" ++#include + + // ***************************************************************************** + namespace { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-epsimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-epsimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-epsimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/epsimage.cpp ++++ b/src/epsimage.cpp +@@ -55,6 +55,8 @@ EXIV2_RCSID("@(#) $Id: epsimage.cpp $") + #include + #include + ++#include ++ + // ***************************************************************************** + namespace { + Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-exiv2.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-exiv2.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-exiv2.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,12 @@ +diff --git a/src/exiv2.cpp b/src/exiv2.cpp +index 2dae4c7..67716c0 100644 +--- a/src/exiv2.cpp ++++ b/src/exiv2.cpp +@@ -52,6 +52,7 @@ EXIV2_RCSID("@(#) $Id: exiv2.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + // local declarations Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-futils.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-futils.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-futils.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/futils.cpp ++++ b/src/futils.cpp +@@ -42,6 +42,8 @@ EXIV2_RCSID("@(#) $Id: futils.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + // + standard includes + #include + #include ++#include ++ + #ifdef _MSC_VER + # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) + #endif Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-gifimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-gifimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-gifimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/gifimage.cpp ++++ b/src/gifimage.cpp +@@ -47,6 +47,7 @@ EXIV2_RCSID("@(#) $Id: gifimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + // class member definitions Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-jp2image.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-jp2image.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-jp2image.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/jp2image.cpp ++++ b/src/jp2image.cpp +@@ -52,6 +52,7 @@ EXIV2_RCSID("@(#) $Id: jp2image.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // JPEG-2000 box types + const uint32_t kJp2BoxTypeJp2Header = 0x6a703268; // 'jp2h' Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-jpgimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-jpgimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-jpgimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/jpgimage.cpp ++++ b/src/jpgimage.cpp +@@ -47,6 +47,7 @@ EXIV2_RCSID("@(#) $Id: jpgimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include // for EOF + #include + #include ++#include + + // ***************************************************************************** + // class member definitions Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-makernote.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-makernote.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-makernote.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/makernote.cpp ++++ b/src/makernote.cpp +@@ -45,6 +45,7 @@ EXIV2_RCSID("@(#) $Id: makernote.cpp 2698 2012-04-11 16:02:44Z ahuggel $") + // + standard includes + #include + #include ++#include + + // ***************************************************************************** + namespace { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-mrwimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-mrwimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-mrwimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/mrwimage.cpp ++++ b/src/mrwimage.cpp +@@ -49,6 +49,7 @@ EXIV2_RCSID("@(#) $Id: mrwimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + // class member definitions Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-pgfimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-pgfimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-pgfimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/pgfimage.cpp ++++ b/src/pgfimage.cpp +@@ -54,6 +54,7 @@ EXIV2_RCSID("@(#) $Id: pgfimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // Signature from front of PGF file + const unsigned char pgfSignature[3] = { 0x50, 0x47, 0x46 }; Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-pngchunk.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-pngchunk.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-pngchunk.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/pngchunk.cpp ++++ b/src/pngchunk.cpp +@@ -60,6 +60,8 @@ extern "C" { + #include + #include + #include ++#include ++#include + + /* + Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-pngimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-pngimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-pngimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/pngimage.cpp ++++ b/src/pngimage.cpp +@@ -55,6 +55,7 @@ EXIV2_RCSID("@(#) $Id: pngimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // Signature from front of PNG file + const unsigned char pngSignature[8] = { 0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A }; Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-preview.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-preview.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-preview.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,11 @@ +--- a/src/preview.cpp ++++ b/src/preview.cpp +@@ -48,6 +48,8 @@ EXIV2_RCSID("@(#) $Id: preview.cpp 2698 2012-04-11 16:02:44Z ahuggel $") + #include "tiffimage.hpp" + #include "tiffimage_int.hpp" + ++#include ++ + // ***************************************************************************** + namespace { + Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-proteries.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-proteries.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-proteries.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/properties.cpp ++++ b/src/properties.cpp +@@ -46,6 +46,7 @@ EXIV2_RCSID("@(#) $Id: properties.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + namespace { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-psdimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-psdimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-psdimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/psdimage.cpp ++++ b/src/psdimage.cpp +@@ -52,6 +52,7 @@ EXIV2_RCSID("@(#) $Id: psdimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // Todo: Consolidate with existing code in struct Photoshop (jpgimage.hpp): + // Extend this helper to a proper class with all required functionality, Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-rafimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-rafimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-rafimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/rafimage.cpp ++++ b/src/rafimage.cpp +@@ -49,6 +49,7 @@ EXIV2_RCSID("@(#) $Id: rafimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + // class member definitions Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-tags.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-tags.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-tags.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/tags.cpp ++++ b/src/tags.cpp +@@ -60,6 +60,7 @@ EXIV2_RCSID("@(#) $Id: tags.cpp 2696 2012-04-11 05:50:34Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + // local declarations Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-tgaimage.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-tgaimage.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-tgaimage.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/tgaimage.cpp ++++ b/src/tgaimage.cpp +@@ -47,6 +47,7 @@ EXIV2_RCSID("@(#) $Id: tgaimage.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + // class member definitions Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffcomposite.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffcomposite.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffcomposite.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/tiffcomposite.cpp ++++ b/src/tiffcomposite.cpp +@@ -49,6 +49,7 @@ EXIV2_RCSID("@(#) $Id: tiffcomposite.cpp 2699 2012-04-11 16:02:52Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + namespace { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffvisitor.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffvisitor.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-tiffvisitor.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/tiffvisitor.cpp ++++ b/src/tiffvisitor.cpp +@@ -52,6 +52,7 @@ EXIV2_RCSID("@(#) $Id: tiffvisitor.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + namespace { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-types.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-types.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-types.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/types.cpp ++++ b/src/types.cpp +@@ -49,6 +49,7 @@ EXIV2_RCSID("@(#) $Id: types.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + namespace { Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-utils.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-utils.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-utils.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,12 @@ +diff --git a/src/utils.cpp b/src/utils.cpp +index d316dc5..07629e8 100644 +--- a/src/utils.cpp ++++ b/src/utils.cpp +@@ -56,6 +56,7 @@ EXIV2_RCSID("@(#) $Id: utils.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + namespace Util { + Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-value.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-value.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-value.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,12 @@ +--- a/src/value.cpp ++++ b/src/value.cpp +@@ -47,6 +47,9 @@ EXIV2_RCSID("@(#) $Id: value.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include ++#include ++#include + + // ***************************************************************************** + // class member definitions Added: csw/mgar/pkg/exiv2/trunk/files/0006-include-xmpsidecar.cpp.patch =================================================================== --- csw/mgar/pkg/exiv2/trunk/files/0006-include-xmpsidecar.cpp.patch (rev 0) +++ csw/mgar/pkg/exiv2/trunk/files/0006-include-xmpsidecar.cpp.patch 2012-07-04 09:28:53 UTC (rev 18632) @@ -0,0 +1,10 @@ +--- a/src/xmpsidecar.cpp ++++ b/src/xmpsidecar.cpp +@@ -49,6 +49,7 @@ EXIV2_RCSID("@(#) $Id: xmpsidecar.cpp 2681 2012-03-22 15:19:35Z ahuggel $") + #include + #include + #include ++#include + + // ***************************************************************************** + namespace { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 4 11:42:07 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 04 Jul 2012 09:42:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[18633] csw/mgar/pkg/pdftohtml/trunk Message-ID: Revision: 18633 http://gar.svn.sourceforge.net/gar/?rev=18633&view=rev Author: pfelecan Date: 2012-07-04 09:42:07 +0000 (Wed, 04 Jul 2012) Log Message: ----------- pdftohtml/trunk: verify and validated overrides Modified Paths: -------------- csw/mgar/pkg/pdftohtml/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/pdftohtml/trunk/files/0002-Fix-paths.patch Modified: csw/mgar/pkg/pdftohtml/trunk/Makefile =================================================================== --- csw/mgar/pkg/pdftohtml/trunk/Makefile 2012-07-04 09:28:53 UTC (rev 18632) +++ csw/mgar/pkg/pdftohtml/trunk/Makefile 2012-07-04 09:42:07 UTC (rev 18633) @@ -5,7 +5,7 @@ GARTYPE = v2 CATEGORIES = apps -DESCRIPTION = converts files from PDF into HTML +DESCRIPTION = Converts files from PDF into HTML define BLURB Pdftohtml is a tool based on the Xpdf package which translates pdf documents into html format. @@ -15,12 +15,19 @@ DISTFILES = $(DISTNAME).tar.gz DISTFILES += COPYING PATCHFILES += 0001-Silent-write-strings-warnings.patch +PATCHFILES += 0002-Fix-paths.patch BUILD_DEP_PKGS += CSWhelp2man RUNTIME_DEP_PKGS += CSWlibgcc-s1 RUNTIME_DEP_PKGS += CSWlibstdc++6 +RUNTIME_DEP_PKGS += CSWxpdf +RUNTIME_DEP_PKGS += CSWgsfonts +CHECKPKG_OVERRIDES_CSWpdftohtml += surplus-dependency|CSWxpdf +CHECKPKG_OVERRIDES_CSWpdftohtml += surplus-dependency|CSWgsfonts +CHECKPKG_OVERRIDES_CSWpdftohtml += file-with-bad-content|/usr/share|root/opt/csw/bin/pdftohtml + GARCOMPILER = GNU CONFIGURE_SCRIPTS = TEST_SCRIPTS = Added: csw/mgar/pkg/pdftohtml/trunk/files/0002-Fix-paths.patch =================================================================== --- csw/mgar/pkg/pdftohtml/trunk/files/0002-Fix-paths.patch (rev 0) +++ csw/mgar/pkg/pdftohtml/trunk/files/0002-Fix-paths.patch 2012-07-04 09:42:07 UTC (rev 18633) @@ -0,0 +1,39 @@ +From 95c38b3504586ea7072dc44f3d36759d86c80370 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 4 Jul 2012 10:46:45 +0200 +Subject: [PATCH] Fix paths + +--- + aconf.h | 2 +- + xpdf/GlobalParams.cc | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/aconf.h b/aconf.h +index ae0fe35..81826dd 100755 +--- a/aconf.h ++++ b/aconf.h +@@ -36,7 +36,7 @@ + /* + * Full path for the system-wide xpdfrc file. + */ +-#define SYSTEM_XPDFRC "/usr/local/etc/xpdfrc" ++#define SYSTEM_XPDFRC "/opt/csw/etc/xpdfrc" + + /* + * Various include files and functions. +diff --git a/xpdf/GlobalParams.cc b/xpdf/GlobalParams.cc +index d48a948..06fc03c 100755 +--- a/xpdf/GlobalParams.cc ++++ b/xpdf/GlobalParams.cc +@@ -107,7 +107,7 @@ static char *displayFontDirs[] = { + #else + static char *displayFontDirs[] = { + "/usr/share/ghostscript/fonts", +- "/usr/local/share/ghostscript/fonts", ++ "/opt/csw/share/ghostscript/fonts", + "/usr/share/fonts/default/Type1", + "/usr/share/fonts/default/ghostscript", + "/usr/share/fonts/type1/gsfonts", +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 4 15:06:16 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 04 Jul 2012 13:06:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[18634] csw/mgar/pkg Message-ID: Revision: 18634 http://gar.svn.sourceforge.net/gar/?rev=18634&view=rev Author: pfelecan Date: 2012-07-04 13:06:16 +0000 (Wed, 04 Jul 2012) Log Message: ----------- subtitleripper/trunk: migrated from a private recipe to a GAR based recipe; not ready for release as it cannot be built on the farm given the missing libnetpbm.so in the corresponding development package. Added Paths: ----------- csw/mgar/pkg/subtitleripper/ csw/mgar/pkg/subtitleripper/Makefile csw/mgar/pkg/subtitleripper/branches/ csw/mgar/pkg/subtitleripper/tags/ csw/mgar/pkg/subtitleripper/trunk/ csw/mgar/pkg/subtitleripper/trunk/Makefile csw/mgar/pkg/subtitleripper/trunk/checksums csw/mgar/pkg/subtitleripper/trunk/files/ csw/mgar/pkg/subtitleripper/trunk/files/0001-From-private-recipe.patch csw/mgar/pkg/subtitleripper/trunk/files/COPYING Added: csw/mgar/pkg/subtitleripper/Makefile =================================================================== --- csw/mgar/pkg/subtitleripper/Makefile (rev 0) +++ csw/mgar/pkg/subtitleripper/Makefile 2012-07-04 13:06:16 UTC (rev 18634) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/subtitleripper/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/subtitleripper/trunk/Makefile =================================================================== --- csw/mgar/pkg/subtitleripper/trunk/Makefile (rev 0) +++ csw/mgar/pkg/subtitleripper/trunk/Makefile 2012-07-04 13:06:16 UTC (rev 18634) @@ -0,0 +1,41 @@ +# $Id$ + +NAME = subtitleripper +VERSION = 0.3-4 +GARTYPE = v2 +CATEGORIES = apps + +DESCRIPTION = Extracts DVD subtitles from a subtitle stream and converts them. +define BLURB + Converter for DVD subtitles into the popular srt or VobSub file format + used by many avi players. The program requires transcode and gocr. +endef + +DISTNAME = $(NAME) +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(DISTNAME)-$(VERSION).tgz +DISTFILES += COPYING +PATCHFILES += 0001-From-private-recipe.patch + +GARCOMPILER = GNU + +BUILD_DEP_PKGS += CSWlibnetpbm-dev + +RUNTIME_DEP_PKGS += CSWgocr +RUNTIME_DEP_PKGS += CSWgsed + +CONFIGURE_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +install-custom: pkgshare = $(sharedstatedir)/$(NAME) +install-custom: pkgdoc = $(docdir)/$(NAME) +install-custom: + ginstall --directory $(DESTDIR)/$(bindir) + ginstall $(WORKSRC)/subtitle2pgm $(WORKSRC)/srttool $(WORKSRC)/subtitle2vobsub $(WORKSRC)/vobsub2pgm $(WORKSRC)/pgm2txt $(DESTDIR)/$(bindir) + ginstall --directory $(DESTDIR)/$(pkgshare) + ginstall --mode=0644 $(WORKSRC)/gocrfilter*.sed $(DESTDIR)/$(pkgshare) + ginstall --directory $(DESTDIR)/$(pkgdoc) + ginstall --mode=0644 $(WORKSRC)/ChangeLog $(WORKSRC)/README* $(DESTDIR)/$(pkgdoc) Property changes on: csw/mgar/pkg/subtitleripper/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/subtitleripper/trunk/checksums =================================================================== --- csw/mgar/pkg/subtitleripper/trunk/checksums (rev 0) +++ csw/mgar/pkg/subtitleripper/trunk/checksums 2012-07-04 13:06:16 UTC (rev 18634) @@ -0,0 +1 @@ +c0bd49a88f667c68c4430ad25bbed510 subtitleripper-0.3-4.tgz Added: csw/mgar/pkg/subtitleripper/trunk/files/0001-From-private-recipe.patch =================================================================== --- csw/mgar/pkg/subtitleripper/trunk/files/0001-From-private-recipe.patch (rev 0) +++ csw/mgar/pkg/subtitleripper/trunk/files/0001-From-private-recipe.patch 2012-07-04 13:06:16 UTC (rev 18634) @@ -0,0 +1,89 @@ +From d0909b8017dc054cedd7843791fa1a7f1c13fd8a Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 4 Jul 2012 14:01:39 +0200 +Subject: [PATCH] From private recipe + +--- + Makefile | 2 +- + pgm2txt | 19 ++++++++++++------- + 2 files changed, 13 insertions(+), 8 deletions(-) + +diff --git a/Makefile b/Makefile +index 2001932..f5f685e 100644 +--- a/Makefile ++++ b/Makefile +@@ -9,7 +9,7 @@ INCLUDES := + + ### enable ppm support ### + DEFINES += -D_HAVE_LIB_PPM_ +-LIBS += -lppm ++LIBS += -lnetpbm + + ### enable PNG support ### + DEFINES += -D_HAVE_PNG_ +diff --git a/pgm2txt b/pgm2txt +index f246182..c1f36cd 100755 +--- a/pgm2txt ++++ b/pgm2txt +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#! /usr/bin/env bash + # Call gocr to convert pgm images into ASCII text + # (this file is part of subtitle2pgm) + # Please modify it to your needs +@@ -16,7 +16,7 @@ DB_PATH=./db/ + # Adjust this path to where the files + # gocrfilter_en.sed gocrfilter_fr.sed gocrfilter_none.sed + # are located +-PATH_TO_LANGUAGE_FILTER=~/sourceforge/subtitleripper/src/ ++PATH_TO_LANGUAGE_FILTER="/opt/csw/share/subtitleripper/" + + # set your options for gocr. Please read the gocr + # docs to find out more about this +@@ -64,6 +64,8 @@ Usage: + + -d Use GOCR options for "database only" mode + ++ -F format Use format for GOCR format: ISO8859_1 TeX ++ HTML XML UTF8 ASCII + + Example: + Convert PGM files with english language filter and +@@ -86,18 +88,21 @@ fi + GOCR_OPTIONS=${GOCR_OPTIONS_AUTO} + + # process command line options +-while getopts ":vdf:" Option ++while getopts ":vdf:F:" Option + do + case $Option in +- v) ++ v) + DISPLAY_PGM=true + ;; +- f) ++ f) + LANGUAGE=$OPTARG + ;; +- d) ++ d) + GOCR_OPTIONS=${GOCR_OPTIONS_DB_ONLY} + ;; ++ F) ++ GOCR_OPTIONS="${GOCR_OPTIONS} -f $OPTARG" ++ ;; + *) + usage + ;; +@@ -158,7 +163,7 @@ for i in ${PGM_BASE_NAME}*.pgm ${PGM_BASE_NAME}*.pgm.gz; do + if [ "none" = "${LANGUAGE}" ]; then + gocr ${GOCR_OPTIONS} -p ${DB_PATH} $i > $i.txt + else +- gocr ${GOCR_OPTIONS} -p ${DB_PATH} $i | sed -f ${FILTER_SCRIPT} - > $i.txt ++ gocr ${GOCR_OPTIONS} -p ${DB_PATH} $i | gsed -f ${FILTER_SCRIPT} - > $i.txt + fi + + # close the viewer +-- +1.7.10.3 + Added: csw/mgar/pkg/subtitleripper/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/subtitleripper/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/subtitleripper/trunk/files/COPYING 2012-07-04 13:06:16 UTC (rev 18634) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 Library 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 pfelecan at users.sourceforge.net Wed Jul 4 15:28:25 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 04 Jul 2012 13:28:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18635] csw/mgar/pkg/subtitleripper/trunk/Makefile Message-ID: Revision: 18635 http://gar.svn.sourceforge.net/gar/?rev=18635&view=rev Author: pfelecan Date: 2012-07-04 13:28:25 +0000 (Wed, 04 Jul 2012) Log Message: ----------- subtitleripper/trunk: - new build and run-time dependencies - overrides for non detectable dependencies still not releasable Modified Paths: -------------- csw/mgar/pkg/subtitleripper/trunk/Makefile Modified: csw/mgar/pkg/subtitleripper/trunk/Makefile =================================================================== --- csw/mgar/pkg/subtitleripper/trunk/Makefile 2012-07-04 13:06:16 UTC (rev 18634) +++ csw/mgar/pkg/subtitleripper/trunk/Makefile 2012-07-04 13:28:25 UTC (rev 18635) @@ -20,9 +20,16 @@ GARCOMPILER = GNU BUILD_DEP_PKGS += CSWlibnetpbm-dev +BUILD_DEP_PKGS += CSWlibpng-dev +BUILD_DEP_PKGS += CSWlibz-dev -RUNTIME_DEP_PKGS += CSWgocr -RUNTIME_DEP_PKGS += CSWgsed +RUNTIME_DEP_PKGS += CSWgocr +CHECKPKG_OVERRIDES_CSWsubtitleripper += surplus-dependency|CSWgocr +RUNTIME_DEP_PKGS += CSWgsed +CHECKPKG_OVERRIDES_CSWsubtitleripper += surplus-dependency|CSWgsed +RUNTIME_DEP_PKGS += CSWlibnetpbm10 +RUNTIME_DEP_PKGS += CSWlibpng12-0 +RUNTIME_DEP_PKGS += CSWlibz1 CONFIGURE_SCRIPTS = TEST_SCRIPTS = @@ -39,3 +46,7 @@ ginstall --mode=0644 $(WORKSRC)/gocrfilter*.sed $(DESTDIR)/$(pkgshare) ginstall --directory $(DESTDIR)/$(pkgdoc) ginstall --mode=0644 $(WORKSRC)/ChangeLog $(WORKSRC)/README* $(DESTDIR)/$(pkgdoc) + +# this is private and not available publicly +mydependencies: + $(HOME)/bin/ocswdeplist --package $(NAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 4 20:17:07 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 04 Jul 2012 18:17:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[18636] csw/mgar/pkg/cpan/File-MMagic/trunk Message-ID: Revision: 18636 http://gar.svn.sourceforge.net/gar/?rev=18636&view=rev Author: dmichelsen Date: 2012-07-04 18:17:07 +0000 (Wed, 04 Jul 2012) Log Message: ----------- cpan/File-MMagic/trunk: Update to makemake Modified Paths: -------------- csw/mgar/pkg/cpan/File-MMagic/trunk/Makefile csw/mgar/pkg/cpan/File-MMagic/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/File-MMagic/trunk/files/CSWpmfilemmagic.gspec Modified: csw/mgar/pkg/cpan/File-MMagic/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/File-MMagic/trunk/Makefile 2012-07-04 13:28:25 UTC (rev 18635) +++ csw/mgar/pkg/cpan/File-MMagic/trunk/Makefile 2012-07-04 18:17:07 UTC (rev 18636) @@ -1,15 +1,26 @@ NAME = File-MMagic -VERSION = 1.27 +VERSION = 1.28 CATEGORIES = cpan GARTYPE = v2 AUTHOR = KNOK -DESCRIPTION = Guess file type +DESCRIPTION = Guess file type from contents define BLURB - This perl library uses perl5 objects to guess file type from filename and/or - filehandle. endef -DISTFILES += CSWpmfilemmagic.gspec +CATALOG_RELEASE = unstable +LICENSE = COPYING + +PACKAGES += CSWpm-file-mmagic +CATALOGNAME_CSWpm-file-mmagic = pm_file_mmagic +SPKG_DESC_CSWpm-file-mmagic = Guess file type from contents +ARCHALL_CSWpm-file-mmagic = 1 +OBSOLETED_BY_CSWpm-file-mmagic += CSWpmfilemmagic +CATALOGNAME_CSWpmfilemmagic = pm_filemmagic_stub + +# These are just examples +CHECKPKG_OVERRIDES_CSWpm-file-mmagic += file-with-bad-content|/usr/share|root/opt/csw/share/man/man3/File::MMagic.3perl +CHECKPKG_OVERRIDES_CSWpm-file-mmagic += file-with-bad-content|/usr/share|root/opt/csw/share/perl/csw/File/MMagic.pm + include gar/category.mk Modified: csw/mgar/pkg/cpan/File-MMagic/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/File-MMagic/trunk/checksums 2012-07-04 13:28:25 UTC (rev 18635) +++ csw/mgar/pkg/cpan/File-MMagic/trunk/checksums 2012-07-04 18:17:07 UTC (rev 18636) @@ -1,2 +1 @@ -d44124b74380d0d49146e32170d417c1 download/CSWpmfilemmagic.gspec -4ffb13b6587888e6e455c22988abce5e download/File-MMagic-1.27.tar.gz +ea74f4c817229117f4e9341889430308 File-MMagic-1.28.tar.gz Deleted: csw/mgar/pkg/cpan/File-MMagic/trunk/files/CSWpmfilemmagic.gspec =================================================================== --- csw/mgar/pkg/cpan/File-MMagic/trunk/files/CSWpmfilemmagic.gspec 2012-07-04 13:28:25 UTC (rev 18635) +++ csw/mgar/pkg/cpan/File-MMagic/trunk/files/CSWpmfilemmagic.gspec 2012-07-04 18:17:07 UTC (rev 18636) @@ -1,5 +0,0 @@ -%var bitname pm_filemmagic -%var pkgname CSWpmfilemmagic -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright url file://%{WORKSRC}/COPYING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 5 09:07:11 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 07:07:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[18637] csw/mgar/pkg/netpbm/trunk/Makefile Message-ID: Revision: 18637 http://gar.svn.sourceforge.net/gar/?rev=18637&view=rev Author: dmichelsen Date: 2012-07-05 07:07:11 +0000 (Thu, 05 Jul 2012) Log Message: ----------- netpbm/trunk: Update Dependencies and add missing .so symlink Modified Paths: -------------- csw/mgar/pkg/netpbm/trunk/Makefile Modified: csw/mgar/pkg/netpbm/trunk/Makefile =================================================================== --- csw/mgar/pkg/netpbm/trunk/Makefile 2012-07-04 18:17:07 UTC (rev 18636) +++ csw/mgar/pkg/netpbm/trunk/Makefile 2012-07-05 07:07:11 UTC (rev 18637) @@ -26,11 +26,11 @@ PACKAGES += CSWnetpbm SPKG_DESC_CSWnetpbm = A toolkit for manipulation of graphic images -RUNTIME_DEP_PKGS_CSWnetpbm += CSWjpeg -RUNTIME_DEP_PKGS_CSWnetpbm += CSWtiff -RUNTIME_DEP_PKGS_CSWnetpbm += CSWpng -RUNTIME_DEP_PKGS_CSWnetpbm += CSWiconv -RUNTIME_DEP_PKGS_CSWnetpbm += CSWzlib +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibjpeg7 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibtiff3 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibpng12-0 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibz1 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWnetpbm += CSWlibnetpbm10 @@ -76,3 +76,7 @@ pre-install-modulated: mkdir -p $(DESTDIR)/opt + +post-install-modulated: + rm -f $(DESTDIR)$(libdir)/libnetpbm.so + gln -s libnetpbm.so.10 $(DESTDIR)$(libdir)/libnetpbm.so This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 5 09:15:13 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 05 Jul 2012 07:15:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[18638] csw/mgar/pkg/tex_metauml/trunk Message-ID: Revision: 18638 http://gar.svn.sourceforge.net/gar/?rev=18638&view=rev Author: pfelecan Date: 2012-07-05 07:15:12 +0000 (Thu, 05 Jul 2012) Log Message: ----------- tex_metauml/trunk: - completed installation - add pointer toward the documentation place Modified Paths: -------------- csw/mgar/pkg/tex_metauml/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/tex_metauml/trunk/files/README.CSW Modified: csw/mgar/pkg/tex_metauml/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-05 07:07:11 UTC (rev 18637) +++ csw/mgar/pkg/tex_metauml/trunk/Makefile 2012-07-05 07:15:12 UTC (rev 18638) @@ -14,6 +14,7 @@ MASTER_SITES = $(SF_MIRRORS) SF_PROJ = metauml DISTFILES = $(DISTNAME)_$(VERSION).tgz +DISTFILES += README.CSW CONFIGURE_SCRIPTS = BUILD_SCRIPTS = @@ -37,37 +38,7 @@ install-custom: source = $(WORKSRC)/thrunk install-custom: ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_activity.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_base.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_behavioral_common.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class_assoc.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class_clipart.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_class_relations.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_defaults.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_instance.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_links.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_note.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_package.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_package_relations.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_paths.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_skin_simple.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_state.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_stereotype.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_templates.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_usecase.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/metauml_usecase_clipart.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_commons.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_group.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_infrastructure.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_log.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_margins.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_object.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_picture.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_picture_stack.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_positioning.mp $(DESTDIR)/$(pkgtexmf) - ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/util_shade.mp $(DESTDIR)/$(pkgtexmf) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/*.mp $(DESTDIR)/$(pkgtexmf) ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgdoc) ginstall --preserve-timestamps --mode=u=rwx,go=r $(source)/version.txt $(DESTDIR)/$(pkgdoc) $(MAKECOOKIE) Added: csw/mgar/pkg/tex_metauml/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/tex_metauml/trunk/files/README.CSW (rev 0) +++ csw/mgar/pkg/tex_metauml/trunk/files/README.CSW 2012-07-05 07:15:12 UTC (rev 18638) @@ -0,0 +1,11 @@ +$Id: README.CSW 18561 2012-06-27 09:38:38Z pfelecan $ + +The documentation is installed in the standard TeX tree, i.e., +/opt/csw/share/texmf-local. + +CSW Team + +# Local Variables: +# mode: text +# mode: font-lock +# End: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 5 09:16:26 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 05 Jul 2012 07:16:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[18639] csw/mgar/pkg Message-ID: Revision: 18639 http://gar.svn.sourceforge.net/gar/?rev=18639&view=rev Author: pfelecan Date: 2012-07-05 07:16:26 +0000 (Thu, 05 Jul 2012) Log Message: ----------- tex_metauml_man/trunk: migrated from a private recipe to a GAR based recipe Added Paths: ----------- csw/mgar/pkg/tex_metauml_man/ csw/mgar/pkg/tex_metauml_man/Makefile csw/mgar/pkg/tex_metauml_man/branches/ csw/mgar/pkg/tex_metauml_man/tags/ csw/mgar/pkg/tex_metauml_man/trunk/ csw/mgar/pkg/tex_metauml_man/trunk/Makefile csw/mgar/pkg/tex_metauml_man/trunk/checksums csw/mgar/pkg/tex_metauml_man/trunk/files/ csw/mgar/pkg/tex_metauml_man/trunk/files/fdl-1.3.txt Added: csw/mgar/pkg/tex_metauml_man/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml_man/Makefile (rev 0) +++ csw/mgar/pkg/tex_metauml_man/Makefile 2012-07-05 07:16:26 UTC (rev 18639) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/tex_metauml_man/trunk ___________________________________________________________________ Added: svn:ignore + work metauml_manual2 Added: csw/mgar/pkg/tex_metauml_man/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml_man/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tex_metauml_man/trunk/Makefile 2012-07-05 07:16:26 UTC (rev 18639) @@ -0,0 +1,254 @@ +# $Id$ + +NAME = tex_metauml_man +VERSION = 0.2.5 +GARTYPE = v2 +CATEGORIES = xtra + +DESCRIPTION = Manual for the MetaPost library for typesetting UML diagrams using a human-friendly textual notation +define BLURB + The manual for MetaUML, the GNU GPL MetaPost library for typesetting UML + diagrams, using a human-friendly textual notation. +endef + +DISTNAME = metauml_manual +WORKSRC = $(WORKDIR)/$(DISTNAME)2 +PATCHDIR = $(WORKSRC) +MASTER_SITES = $(SF_MIRRORS) +SF_PROJ = metauml +DISTFILES = $(DISTNAME)_src_$(VERSION).tgz +DISTFILES += fdl-1.3.txt + +CONFIGURE_SCRIPTS = +TEST_SCRIPTS = +BUILD_SCRIPTS = custom +INSTALL_SCRIPTS = custom + +PACKAGES = CSWtex-metauml-man +SPKG_DESC_CSWtex-metauml-man = $(DESCRIPTION) +CATALOG_NAMEtex-metauml-man = tex_metauml_man +OBSOLETED_BY_CSWtex-metauml-man = CSWtexmetaumlman +CATALOGNAME_CSWtexmetaumlman = tex_metaumlman_stub +BUILD_DEP_PKGS_CSWtex-metauml-man += CSWtetex +CHECKPKG_OVERRIDES_CSWtex-metauml-man += surplus-dependency|CSWtetex +BUILD_DEP_PKGS_CSWtex-metauml-man += CSWtex-metauml +CHECKPKG_OVERRIDES_CSWtex-metauml-man += surplus-dependency|CSWtex-metauml +ARCHALL_CSWtex-metauml-man = 1 +LICENSE_CSWtex-metauml-man = fdl-1.3.txt + +include gar/category.mk + +build-custom: $(WORKSRC)/metauml_manual.pdf + +$(WORKSRC)/fig/activity.1: $(WORKSRC)/fig/activity.mp + cd $(WORKSRC)/fig && mpost activity.mp + +$(WORKSRC)/fig/activity_diagrams.1: $(WORKSRC)/fig/activity_diagrams.mp + cd $(WORKSRC)/fig && mpost activity_diagrams.mp + +$(WORKSRC)/fig/appetizer.1: $(WORKSRC)/fig/appetizer.mp + cd $(WORKSRC)/fig && mpost appetizer.mp + +$(WORKSRC)/fig/boxes_vs_util.1: $(WORKSRC)/fig/boxes_vs_util.mp + cd $(WORKSRC)/fig && mpost boxes_vs_util.mp + +$(WORKSRC)/fig/class.1: $(WORKSRC)/fig/class.mp + cd $(WORKSRC)/fig && mpost class.mp + +$(WORKSRC)/fig/class_association.1: $(WORKSRC)/fig/class_association.mp + cd $(WORKSRC)/fig && mpost class_association.mp + +$(WORKSRC)/fig/class_customization.1: $(WORKSRC)/fig/class_customization.mp + cd $(WORKSRC)/fig && mpost class_customization.mp + +$(WORKSRC)/fig/class_customization2.1: $(WORKSRC)/fig/class_customization2.mp + cd $(WORKSRC)/fig && mpost class_customization2.mp + +$(WORKSRC)/fig/class_diagrams.1: $(WORKSRC)/fig/class_diagrams.mp + cd $(WORKSRC)/fig && mpost class_diagrams.mp + +$(WORKSRC)/fig/class_templates.1: $(WORKSRC)/fig/class_templates.mp + cd $(WORKSRC)/fig && mpost class_templates.mp + +$(WORKSRC)/fig/cliparts.1: $(WORKSRC)/fig/cliparts.mp + cd $(WORKSRC)/fig && mpost cliparts.mp + +$(WORKSRC)/fig/component.1: $(WORKSRC)/fig/component.mp + cd $(WORKSRC)/fig && mpost component.mp + +$(WORKSRC)/fig/group.1: $(WORKSRC)/fig/group.mp + cd $(WORKSRC)/fig && mpost group.mp + +$(WORKSRC)/fig/how-links-work.1: $(WORKSRC)/fig/how-links-work.mp + cd $(WORKSRC)/fig && mpost how-links-work.mp + +$(WORKSRC)/fig/instance.1: $(WORKSRC)/fig/instance.mp + cd $(WORKSRC)/fig && mpost instance.mp + +$(WORKSRC)/fig/note.1: $(WORKSRC)/fig/note.mp + cd $(WORKSRC)/fig && mpost note.mp + +$(WORKSRC)/fig/object_stack.1: $(WORKSRC)/fig/object_stack.mp + cd $(WORKSRC)/fig && mpost object_stack.mp + +$(WORKSRC)/fig/package.1: $(WORKSRC)/fig/package.mp + cd $(WORKSRC)/fig && mpost package.mp + +$(WORKSRC)/fig/paths.1: $(WORKSRC)/fig/paths.mp + cd $(WORKSRC)/fig && mpost paths.mp + +$(WORKSRC)/fig/paths_man.1: $(WORKSRC)/fig/paths_man.mp + cd $(WORKSRC)/fig && mpost paths_man.mp + +$(WORKSRC)/fig/picture_info.1: $(WORKSRC)/fig/picture_info.mp + cd $(WORKSRC)/fig && mpost picture_info.mp + +$(WORKSRC)/fig/picture_stack.1: $(WORKSRC)/fig/picture_stack.mp + cd $(WORKSRC)/fig && mpost picture_stack.mp + +$(WORKSRC)/fig/positioning.1: $(WORKSRC)/fig/positioning.mp + cd $(WORKSRC)/fig && mpost positioning.mp + +$(WORKSRC)/fig/properties.1: $(WORKSRC)/fig/properties.mp + cd $(WORKSRC)/fig && mpost properties.mp + +$(WORKSRC)/fig/state.1: $(WORKSRC)/fig/state.mp + cd $(WORKSRC)/fig && mpost state.mp + +$(WORKSRC)/fig/statemachine_diagrams.1: $(WORKSRC)/fig/statemachine_diagrams.mp + cd $(WORKSRC)/fig && mpost statemachine_diagrams.mp + +$(WORKSRC)/fig/test_activity.1: $(WORKSRC)/fig/test_activity.mp + cd $(WORKSRC)/fig && mpost test_activity.mp + +$(WORKSRC)/fig/test_class.1: $(WORKSRC)/fig/test_class.mp + cd $(WORKSRC)/fig && mpost test_class.mp + +$(WORKSRC)/fig/test_class_qual_assoc.1: $(WORKSRC)/fig/test_class_qual_assoc.mp + cd $(WORKSRC)/fig && mpost test_class_qual_assoc.mp + +$(WORKSRC)/fig/test_class_templates.1: $(WORKSRC)/fig/test_class_templates.mp + cd $(WORKSRC)/fig && mpost test_class_templates.mp + +$(WORKSRC)/fig/test_component.1: $(WORKSRC)/fig/test_component.mp + cd $(WORKSRC)/fig && mpost test_component.mp + +$(WORKSRC)/fig/test_font.1: $(WORKSRC)/fig/test_font.mp + cd $(WORKSRC)/fig && mpost test_font.mp + +$(WORKSRC)/fig/test_group.1: $(WORKSRC)/fig/test_group.mp + cd $(WORKSRC)/fig && mpost test_group.mp + +$(WORKSRC)/fig/test_instance.1: $(WORKSRC)/fig/test_instance.mp + cd $(WORKSRC)/fig && mpost test_instance.mp + +$(WORKSRC)/fig/test_lars_issues.1: $(WORKSRC)/fig/test_lars_issues.mp + cd $(WORKSRC)/fig && mpost test_lars_issues.mp + +$(WORKSRC)/fig/test_lowlevel.1: $(WORKSRC)/fig/test_lowlevel.mp + cd $(WORKSRC)/fig && mpost test_lowlevel.mp + +$(WORKSRC)/fig/test_note.1: $(WORKSRC)/fig/test_note.mp + cd $(WORKSRC)/fig && mpost test_note.mp + +$(WORKSRC)/fig/test_package.1: $(WORKSRC)/fig/test_package.mp + cd $(WORKSRC)/fig && mpost test_package.mp + +$(WORKSRC)/fig/test_paths.1: $(WORKSRC)/fig/test_paths.mp + cd $(WORKSRC)/fig && mpost test_paths.mp + +$(WORKSRC)/fig/test_picture.1: $(WORKSRC)/fig/test_picture.mp + cd $(WORKSRC)/fig && mpost test_picture.mp + +$(WORKSRC)/fig/test_picture_stack.1: $(WORKSRC)/fig/test_picture_stack.mp + cd $(WORKSRC)/fig && mpost test_picture_stack.mp + +$(WORKSRC)/fig/test_picture_tex_rendering.1: $(WORKSRC)/fig/test_picture_tex_rendering.mp + cd $(WORKSRC)/fig && mpost test_picture_tex_rendering.mp + +$(WORKSRC)/fig/test_positioning.1: $(WORKSRC)/fig/test_positioning.mp + cd $(WORKSRC)/fig && mpost test_positioning.mp + +$(WORKSRC)/fig/test_skins.1: $(WORKSRC)/fig/test_skins.mp + cd $(WORKSRC)/fig && mpost test_skins.mp + +$(WORKSRC)/fig/test_skins_global_defaults.1: $(WORKSRC)/fig/test_skins_global_defaults.mp + cd $(WORKSRC)/fig && mpost test_skins_global_defaults.mp + +$(WORKSRC)/fig/test_state.1: $(WORKSRC)/fig/test_state.mp + cd $(WORKSRC)/fig && mpost test_state.mp + +$(WORKSRC)/fig/test_usecase.1: $(WORKSRC)/fig/test_usecase.mp + cd $(WORKSRC)/fig && mpost test_usecase.mp + +$(WORKSRC)/fig/usecase.1: $(WORKSRC)/fig/usecase.mp + cd $(WORKSRC)/fig && mpost usecase.mp + +$(WORKSRC)/fig/usecase_diagrams.1: $(WORKSRC)/fig/usecase_diagrams.mp + cd $(WORKSRC)/fig && mpost usecase_diagrams.mp + +$(WORKSRC)/metauml_manual.pdf: \ + $(WORKSRC)/metauml_manual.tex \ + $(WORKSRC)/gnu-fdl.tex \ + $(WORKSRC)/macro.tex \ + $(WORKSRC)/test_suite.tex \ + $(WORKSRC)/fig/activity.1 \ + $(WORKSRC)/fig/activity_diagrams.1 \ + $(WORKSRC)/fig/appetizer.1 \ + $(WORKSRC)/fig/boxes_vs_util.1 \ + $(WORKSRC)/fig/class.1 \ + $(WORKSRC)/fig/class_association.1 \ + $(WORKSRC)/fig/class_customization.1 \ + $(WORKSRC)/fig/class_customization2.1 \ + $(WORKSRC)/fig/class_diagrams.1 \ + $(WORKSRC)/fig/class_templates.1 \ + $(WORKSRC)/fig/cliparts.1 \ + $(WORKSRC)/fig/component.1 \ + $(WORKSRC)/fig/group.1 \ + $(WORKSRC)/fig/how-links-work.1 \ + $(WORKSRC)/fig/instance.1 \ + $(WORKSRC)/fig/note.1 \ + $(WORKSRC)/fig/object_stack.1 \ + $(WORKSRC)/fig/package.1 \ + $(WORKSRC)/fig/paths.1 \ + $(WORKSRC)/fig/paths_man.1 \ + $(WORKSRC)/fig/picture_info.1 \ + $(WORKSRC)/fig/picture_stack.1 \ + $(WORKSRC)/fig/positioning.1 \ + $(WORKSRC)/fig/properties.1 \ + $(WORKSRC)/fig/state.1 \ + $(WORKSRC)/fig/statemachine_diagrams.1 \ + $(WORKSRC)/fig/test_activity.1 \ + $(WORKSRC)/fig/test_class.1 \ + $(WORKSRC)/fig/test_class_qual_assoc.1 \ + $(WORKSRC)/fig/test_class_templates.1 \ + $(WORKSRC)/fig/test_component.1 \ + $(WORKSRC)/fig/test_font.1 \ + $(WORKSRC)/fig/test_group.1 \ + $(WORKSRC)/fig/test_instance.1 \ + $(WORKSRC)/fig/test_lars_issues.1 \ + $(WORKSRC)/fig/test_lowlevel.1 \ + $(WORKSRC)/fig/test_note.1 \ + $(WORKSRC)/fig/test_package.1 \ + $(WORKSRC)/fig/test_paths.1 \ + $(WORKSRC)/fig/test_picture.1 \ + $(WORKSRC)/fig/test_picture_stack.1 \ + $(WORKSRC)/fig/test_picture_tex_rendering.1 \ + $(WORKSRC)/fig/test_positioning.1 \ + $(WORKSRC)/fig/test_skins.1 \ + $(WORKSRC)/fig/test_skins_global_defaults.1 \ + $(WORKSRC)/fig/test_state.1 \ + $(WORKSRC)/fig/test_usecase.1 \ + $(WORKSRC)/fig/usecase.1 \ + $(WORKSRC)/fig/usecase_diagrams.1 + cd $(WORKSRC) && pdflatex '\nonstopmode\input{metauml_manual.tex}' + cd $(WORKSRC) && pdflatex '\nonstopmode\input{metauml_manual.tex}' + $(MAKECOOKIE) + +install-custom: pkgdoc = $(texmflocaldir)/doc/metapost/$(NAME) +install-custom: + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgdoc) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/metauml_manual.pdf $(DESTDIR)/$(pkgdoc) + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgdoc)/examples + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/fig/*.mp $(DESTDIR)/$(pkgdoc)/examples + $(MAKECOOKIE) Property changes on: csw/mgar/pkg/tex_metauml_man/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/tex_metauml_man/trunk/checksums =================================================================== --- csw/mgar/pkg/tex_metauml_man/trunk/checksums (rev 0) +++ csw/mgar/pkg/tex_metauml_man/trunk/checksums 2012-07-05 07:16:26 UTC (rev 18639) @@ -0,0 +1 @@ +f7de8cb825522f59e6c3aacb0c69aeec metauml_manual_src_0.2.5.tgz Added: csw/mgar/pkg/tex_metauml_man/trunk/files/fdl-1.3.txt =================================================================== --- csw/mgar/pkg/tex_metauml_man/trunk/files/fdl-1.3.txt (rev 0) +++ csw/mgar/pkg/tex_metauml_man/trunk/files/fdl-1.3.txt 2012-07-05 07:16:26 UTC (rev 18639) @@ -0,0 +1,451 @@ + + GNU Free Documentation License + Version 1.3, 3 November 2008 + + + Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +0. PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +functional and useful document "free" in the sense of freedom: to +assure everyone the effective freedom to copy and redistribute it, +with or without modifying it, either commercially or noncommercially. +Secondarily, this License preserves for the author and publisher a way +to get credit for their work, while not being considered responsible +for modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. + + +1. APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work, in any medium, that +contains a notice placed by the copyright holder saying it can be +distributed under the terms of this License. Such a notice grants a +world-wide, royalty-free license, unlimited in duration, to use that +work under the conditions stated herein. The "Document", below, +refers to any such manual or work. Any member of the public is a +licensee, and is addressed as "you". You accept the license if you +copy, modify or distribute the work in a way requiring permission +under copyright law. + +A "Modified Version" of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall +subject (or to related matters) and contains nothing that could fall +directly within that overall subject. (Thus, if the Document is in +part a textbook of mathematics, a Secondary Section may not explain +any mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The "Invariant Sections" are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. If a +section does not fit the above definition of Secondary then it is not +allowed to be designated as Invariant. The Document may contain zero +Invariant Sections. If the Document does not identify any Invariant +Sections then there are none. + +The "Cover Texts" are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. A Front-Cover Text may +be at most 5 words, and a Back-Cover Text may be at most 25 words. + +A "Transparent" copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, that is suitable for revising the document +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup, or absence of markup, has been arranged to thwart +or discourage subsequent modification by readers is not Transparent. +An image format is not Transparent if used for any substantial amount +of text. A copy that is not "Transparent" is called "Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML, PostScript or PDF designed for human modification. Examples of +transparent image formats include PNG, XCF and JPG. Opaque formats +include proprietary formats that can be read and edited only by +proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML, PostScript or PDF produced by some word +processors for output purposes only. + +The "Title Page" means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, "Title Page" means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. + +The "publisher" means any person or entity that distributes copies of +the Document to the public. + +A section "Entitled XYZ" means a named subunit of the Document whose +title either is precisely XYZ or contains XYZ in parentheses following +text that translates XYZ in another language. (Here XYZ stands for a +specific section name mentioned below, such as "Acknowledgements", +"Dedications", "Endorsements", or "History".) To "Preserve the Title" +of such a section when you modify the Document means that it remains a +section "Entitled XYZ" according to this definition. + +The Document may include Warranty Disclaimers next to the notice which +states that this License applies to the Document. These Warranty +Disclaimers are considered to be included by reference in this +License, but only as regards disclaiming warranties: any other +implication that these Warranty Disclaimers may have is void and has +no effect on the meaning of this License. + +2. VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no +other conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. + + +3. COPYING IN QUANTITY + +If you publish printed copies (or copies in media that commonly have +printed covers) of the Document, numbering more than 100, and the +Document's license notice requires Cover Texts, you must enclose the +copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a computer-network location from which the general network-using +public has access to download using public-standard network protocols +a complete Transparent copy of the Document, free of added material. +If you use the latter option, you must take reasonably prudent steps, +when you begin distribution of Opaque copies in quantity, to ensure +that this Transparent copy will remain thus accessible at the stated +location until at least one year after the last time you distribute an +Opaque copy (directly or through your agents or retailers) of that +edition to the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to +give them a chance to provide you with an updated version of the +Document. + + +4. MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has fewer than five), + unless they release you from this requirement. +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. Preserve the section Entitled "History", Preserve its Title, and add + to it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section Entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. +K. For any section Entitled "Acknowledgements" or "Dedications", + Preserve the Title of the section, and preserve in the section all + the substance and tone of each of the contributor acknowledgements + and/or dedications given therein. +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. +M. Delete any section Entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section to be Entitled "Endorsements" + or to conflict in title with any Invariant Section. +O. Preserve any Warranty Disclaimers. + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section Entitled "Endorsements", provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. + + +5. COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice, and that you preserve all their Warranty Disclaimers. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections Entitled "History" +in the various original documents, forming one section Entitled +"History"; likewise combine any sections Entitled "Acknowledgements", +and any sections Entitled "Dedications". You must delete all sections +Entitled "Endorsements". + + +6. COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other +documents released under this License, and replace the individual +copies of this License in the various documents with a single copy +that is included in the collection, provided that you follow the rules +of this License for verbatim copying of each of the documents in all +other respects. + +You may extract a single document from such a collection, and +distribute it individually under this License, provided you insert a +copy of this License into the extracted document, and follow this +License in all other respects regarding verbatim copying of that +document. + + +7. AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, is called an "aggregate" if the copyright +resulting from the compilation is not used to limit the legal rights +of the compilation's users beyond what the individual works permit. +When the Document is included in an aggregate, this License does not +apply to the other works in the aggregate which are not themselves +derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one half of +the entire aggregate, the Document's Cover Texts may be placed on +covers that bracket the Document within the aggregate, or the +electronic equivalent of covers if the Document is in electronic form. +Otherwise they must appear on printed covers that bracket the whole +aggregate. + + +8. TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License, and all the license notices in the +Document, and any Warranty Disclaimers, provided that you also include +the original English version of this License and the original versions +of those notices and disclaimers. In case of a disagreement between +the translation and the original version of this License or a notice +or disclaimer, the original version will prevail. + +If a section in the Document is Entitled "Acknowledgements", +"Dedications", or "History", the requirement (section 4) to Preserve +its Title (section 1) will typically require changing the actual +title. + + +9. TERMINATION + +You may not copy, modify, sublicense, or distribute the Document +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense, or distribute it is void, and +will automatically terminate your rights under this License. + +However, if you cease all violation of this License, then your license +from a particular copyright holder is reinstated (a) provisionally, +unless and until the copyright holder explicitly and finally +terminates your license, and (b) permanently, if the copyright holder +fails to notify you of the violation by some reasonable means prior to +60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, receipt of a copy of some or all of the same material does +not give you any rights to use it. + + +10. FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions of the +GNU Free Documentation 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. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. If the Document +specifies that a proxy can decide which future versions of this +License can be used, that proxy's public statement of acceptance of a +version permanently authorizes you to choose that version for the +Document. + +11. RELICENSING + +"Massive Multiauthor Collaboration Site" (or "MMC Site") means any +World Wide Web server that publishes copyrightable works and also +provides prominent facilities for anybody to edit those works. A +public wiki that anybody can edit is an example of such a server. A +"Massive Multiauthor Collaboration" (or "MMC") contained in the site +means any set of copyrightable works thus published on the MMC site. + +"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 +license published by Creative Commons Corporation, a not-for-profit +corporation with a principal place of business in San Francisco, +California, as well as future copyleft versions of that license +published by that same organization. + +"Incorporate" means to publish or republish a Document, in whole or in +part, as part of another Document. + +An MMC is "eligible for relicensing" if it is licensed under this +License, and if all works that were first published under this License +somewhere other than this MMC, and subsequently incorporated in whole or +in part into the MMC, (1) had no cover texts or invariant sections, and +(2) were thus incorporated prior to November 1, 2008. + +The operator of an MMC Site may republish an MMC contained in the site +under CC-BY-SA on the same site at any time before August 1, 2009, +provided the MMC is eligible for relicensing. + + +ADDENDUM: How to use this License for your documents + +To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and +license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.3 + or any later version published by the Free Software Foundation; + with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + +If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, +replace the "with...Texts." line with this: + + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + +If you have Invariant Sections without Cover Texts, or some other +combination of the three, merge those two alternatives to suit the +situation. + +If your document contains nontrivial examples of program code, we +recommend releasing these examples in parallel under your choice of +free software license, such as the GNU General Public License, +to permit their use in free software. 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 Jul 5 11:52:32 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 09:52:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[18640] csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk Message-ID: Revision: 18640 http://gar.svn.sourceforge.net/gar/?rev=18640&view=rev Author: dmichelsen Date: 2012-07-05 09:52:32 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/XML-NamespaceSupport/trunk: Update to makemake Modified Paths: -------------- csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/Makefile 2012-07-05 07:16:26 UTC (rev 18639) +++ csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/Makefile 2012-07-05 09:52:32 UTC (rev 18640) @@ -4,22 +4,18 @@ GARTYPE = v2 AUTHOR = PERIGRIN -DESCRIPTION = Simple generic namespace support class +DESCRIPTION = A simple generic namespace support class define BLURB - This module offers a simple to process namespaced XML names (unames) from - within any application that may need them. It also helps maintain a prefix - to namespace URI map, and provides a number of basic checks. endef -DISTFILES = COPYING +CATALOG_RELEASE = unstable -PACKAGES = CSWpmxmlnssupp -CATALOGNAME = pm_xmlnssupp +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ -PERL_CONFIGURE_ARGS = --skip +PACKAGES += CSWpm-xml-namespacesupport +SPKG_DESC_CSWpm-xml-namespacesupport = A simple generic namespace support class +ARCHALL_CSWpm-xml-namespacesupport = 1 +OBSOLETED_BY_CSWpm-xml-namespacesupport += CSWpmxmlnssupp +CATALOGNAME_CSWpmxmlnssupp = pm_xmlnssupp_stub -ARCHALL = 1 - -CHECKPKG_OVERRIDES_CSWpmxmlnssupp += catalogname-does-not-match-pkgname|pkgname=CSWpmxmlnssupp|catalogname=pm_xmlnssupp|expected-catalogname=pmxmlnssupp - include gar/category.mk Deleted: csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/files/COPYING 2012-07-05 07:16:26 UTC (rev 18639) +++ csw/mgar/pkg/cpan/XML-NamespaceSupport/trunk/files/COPYING 2012-07-05 09:52:32 UTC (rev 18640) @@ -1,8 +0,0 @@ -%var bitname pm_xmlnssupp -%var pkgname CSWpmxmlnssupp -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (c) 2001-2002 Robin Berjon. 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 Jul 5 11:53:53 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 09:53:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18641] csw/mgar/pkg/cpan/Class-Accessor/trunk Message-ID: Revision: 18641 http://gar.svn.sourceforge.net/gar/?rev=18641&view=rev Author: dmichelsen Date: 2012-07-05 09:53:52 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/Class-Accessor/trunk: Update to 0.34 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile 2012-07-05 09:52:32 UTC (rev 18640) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/Makefile 2012-07-05 09:53:52 UTC (rev 18641) @@ -1,19 +1,21 @@ NAME = Class-Accessor -VERSION = 0.33 +VERSION = 0.34 CATEGORIES = cpan GARTYPE = v2 AUTHOR = KASEI DESCRIPTION = Automated accessor generation define BLURB - This module automagically generates accessor/mutators for your class. endef -DISTFILES = COPYING +CATALOG_RELEASE = unstable -PACKAGES = CSWpmclsaccessor -CATALOGNAME = pm_clsaccessor +LICENSE_TEXT = This module is licensed under the perl license -ARCHALL = 1 +PACKAGES += CSWpm-class-accessor +SPKG_DESC_CSWpm-class-accessor = Automated accessor generation +ARCHALL_CSWpm-class-accessor = 1 +OBSOLETED_BY_CSWpm-class-accessor += CSWpmclsaccessor +CATALOGNAME_CSWpmclsaccessor = pm_clsaccessor_stub include gar/category.mk Modified: csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums 2012-07-05 09:52:32 UTC (rev 18640) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/checksums 2012-07-05 09:53:52 UTC (rev 18641) @@ -1,2 +1 @@ -971cfe5fa9ade2b3c9a2adaa9f653888 download/COPYING -574c4b8e42d52f6980b4d2e258746f7b download/Class-Accessor-0.33.tar.gz +0d9640d237a13276145f7e44b4855b89 Class-Accessor-0.34.tar.gz Deleted: csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING 2012-07-05 09:52:32 UTC (rev 18640) +++ csw/mgar/pkg/cpan/Class-Accessor/trunk/files/COPYING 2012-07-05 09:53:52 UTC (rev 18641) @@ -1,5 +0,0 @@ -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. 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 Jul 5 13:46:45 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 11:46:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[18642] csw/mgar/pkg/cpan/makemake Message-ID: Revision: 18642 http://gar.svn.sourceforge.net/gar/?rev=18642&view=rev Author: dmichelsen Date: 2012-07-05 11:46:44 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/makemake: Honour META.json, minor fixes Modified Paths: -------------- csw/mgar/pkg/cpan/makemake Modified: csw/mgar/pkg/cpan/makemake =================================================================== --- csw/mgar/pkg/cpan/makemake 2012-07-05 09:53:52 UTC (rev 18641) +++ csw/mgar/pkg/cpan/makemake 2012-07-05 11:46:44 UTC (rev 18642) @@ -6,6 +6,12 @@ # It generate My-Module/trunk/Makefile and modified it accordingly. If the Makefile is already there it # it overwritten and can be inspected with "svn diff". +# TBD: +# - some packages require a newer version of Module::Build than the one from Perl, but +# the one provided from CSWpm-module-build +# - package name is inferred from the requested module, e.g. System::Log::Syslog whereas the module file +# is called System-Log. That one should also be used for the main package. + use strict; use warnings; use feature ':5.10'; @@ -110,11 +116,19 @@ my $license_resource; my $description; say STDERR "Processing META.yml"; +my $meta; if ( -f "$distdir/META.yml" ) { - my $meta = LoadFile("$distdir/META.yml"); + $meta = LoadFile("$distdir/META.yml"); +} elsif( -f "$distdir/META.json" ) { + open my $fh, "$distdir/META.json"; + local $/; + my $contents = <$fh>; + $meta = decode_json( $contents ); +} +if( $meta ) { $description = $meta->{abstract} if ( exists $meta->{abstract} ); - $license = $meta->{license}; + $license = ref( $meta->{license} ) ? join( ' and ', @{$meta->{license}} ) : $meta->{license}; $license_resource = $meta->{resources}->{license}; my $req = $meta->{requires}; @@ -126,7 +140,6 @@ # @recommended_pkgs = dep_pkgs($recommends); say STDERR "- runtime dependencies"; @runtime_dep_pkgs = dep_pkgs($req); - } $description //= $mod->description; # Changed to defined from false or @@ -398,6 +411,7 @@ $modpath =~ s,::,/,g; $modpath .= '.pm'; + mkdir '/tmp/makemake'; my $pm = new Parallel::ForkManager( 15, "/tmp/makemake" ); $pm -> run_on_finish ( # called BEFORE the first call to start() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 5 13:49:30 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 11:49:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[18643] csw/mgar/pkg/cpan Message-ID: Revision: 18643 http://gar.svn.sourceforge.net/gar/?rev=18643&view=rev Author: dmichelsen Date: 2012-07-05 11:49:29 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/XML-SAX-Base/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/XML-SAX-Base/ csw/mgar/pkg/cpan/XML-SAX-Base/branches/ csw/mgar/pkg/cpan/XML-SAX-Base/tags/ csw/mgar/pkg/cpan/XML-SAX-Base/trunk/ csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile csw/mgar/pkg/cpan/XML-SAX-Base/trunk/checksums csw/mgar/pkg/cpan/XML-SAX-Base/trunk/files/ Property changes on: csw/mgar/pkg/cpan/XML-SAX-Base/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile 2012-07-05 11:49:29 UTC (rev 18643) @@ -0,0 +1,22 @@ +NAME = XML-SAX-Base +VERSION = 1.08 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = GRANTM + +DESCRIPTION = Base class for SAX Drivers and Filters +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl_5 license + +PACKAGES += CSWpm-xml-sax-base +CATALOGNAME_CSWpm-xml-sax-base = pm_xml_sax_base +SPKG_DESC_CSWpm-xml-sax-base = Base class for SAX Drivers and Filters +ARCHALL_CSWpm-xml-sax-base = 1 +OBSOLETED_BY_CSWpm-xml-sax-base += CSWpmxmlsax +CATALOGNAME_CSWpmxmlsax = pm_xmlsax_stub + +include gar/category.mk Added: csw/mgar/pkg/cpan/XML-SAX-Base/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Base/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX-Base/trunk/checksums 2012-07-05 11:49:29 UTC (rev 18643) @@ -0,0 +1 @@ +38c8c3247dfd080712596118d70dbe32 XML-SAX-Base-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 Jul 5 14:03:25 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 12:03:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18644] csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile Message-ID: Revision: 18644 http://gar.svn.sourceforge.net/gar/?rev=18644&view=rev Author: dmichelsen Date: 2012-07-05 12:03:25 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/XML-SAX-Base/trunk: Remove obsoletion, that is still a separate package Modified Paths: -------------- csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile Modified: csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile 2012-07-05 11:49:29 UTC (rev 18643) +++ csw/mgar/pkg/cpan/XML-SAX-Base/trunk/Makefile 2012-07-05 12:03:25 UTC (rev 18644) @@ -16,7 +16,5 @@ CATALOGNAME_CSWpm-xml-sax-base = pm_xml_sax_base SPKG_DESC_CSWpm-xml-sax-base = Base class for SAX Drivers and Filters ARCHALL_CSWpm-xml-sax-base = 1 -OBSOLETED_BY_CSWpm-xml-sax-base += CSWpmxmlsax -CATALOGNAME_CSWpmxmlsax = pm_xmlsax_stub 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 Jul 5 14:47:59 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 12:47:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[18645] csw/mgar/pkg/cpan/XML-SAX/trunk Message-ID: Revision: 18645 http://gar.svn.sourceforge.net/gar/?rev=18645&view=rev Author: dmichelsen Date: 2012-07-05 12:47:58 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/XML-SAX/trunk: Update to 0.99 and new deps Modified Paths: -------------- csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile csw/mgar/pkg/cpan/XML-SAX/trunk/checksums Added Paths: ----------- csw/mgar/pkg/cpan/XML-SAX/trunk/files/0001-Remove-stuff-that-ignores-DESTDIR.patch Removed Paths: ------------- csw/mgar/pkg/cpan/XML-SAX/trunk/files/parser.diff csw/mgar/pkg/cpan/XML-SAX/trunk/files/pure.diff Modified: csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile 2012-07-05 12:03:25 UTC (rev 18644) +++ csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile 2012-07-05 12:47:58 UTC (rev 18645) @@ -1,23 +1,24 @@ NAME = XML-SAX -VERSION = 0.96 +VERSION = 0.99 CATEGORIES = cpan GARTYPE = v2 AUTHOR = GRANTM -DESCRIPTION = Simple API for XML +DESCRIPTION = define BLURB - XML::SAX is a SAX parser access API for Perl. It includes classes and APIs - required for implementing SAX drivers, along with a factory class for - returning any SAX parser installed on the user's system. endef -DEP_PKGS = CSWpmxmlnssupp +PATCHFILES += 0001-Remove-stuff-that-ignores-DESTDIR.patch -PACKAGES = CSWpmxmlsax -CATALOGNAME = pm_xmlsax +CATALOG_RELEASE = unstable LICENSE = LICENSE -ARCHALL = 1 +PACKAGES += CSWpm-xml-sax +CATALOGNAME_CSWpm-xml-sax = pm_xml_sax +SPKG_DESC_CSWpm-xml-sax = Simple API for XML +ARCHALL_CSWpm-xml-sax = 1 +RUNTIME_DEP_PKGS_CSWpm-xml-sax += CSWpm-xml-namespacesupport +RUNTIME_DEP_PKGS_CSWpm-xml-sax += CSWpm-xml-sax-base include gar/category.mk Modified: csw/mgar/pkg/cpan/XML-SAX/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/XML-SAX/trunk/checksums 2012-07-05 12:03:25 UTC (rev 18644) +++ csw/mgar/pkg/cpan/XML-SAX/trunk/checksums 2012-07-05 12:47:58 UTC (rev 18645) @@ -1 +1 @@ -bdcd4119a62505184e211e9dfaef0ab1 XML-SAX-0.96.tar.gz +290f5375ae87fdebfdb5bc3854019f24 XML-SAX-0.99.tar.gz Added: csw/mgar/pkg/cpan/XML-SAX/trunk/files/0001-Remove-stuff-that-ignores-DESTDIR.patch =================================================================== --- csw/mgar/pkg/cpan/XML-SAX/trunk/files/0001-Remove-stuff-that-ignores-DESTDIR.patch (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX/trunk/files/0001-Remove-stuff-that-ignores-DESTDIR.patch 2012-07-05 12:47:58 UTC (rev 18645) @@ -0,0 +1,59 @@ +From d3fa8a62ca71efc752a54c4db96cd79022878222 Mon Sep 17 00:00:00 2001 +From: Dagobert Michelsen +Date: Thu, 5 Jul 2012 14:38:12 +0200 +Subject: [PATCH] Remove stuff that ignores DESTDIR + +--- + Makefile.PL | 39 --------------------------------------- + 1 file changed, 39 deletions(-) + +diff --git a/Makefile.PL b/Makefile.PL +index 3a78a4b..bbbca2e 100644 +--- a/Makefile.PL ++++ b/Makefile.PL +@@ -13,42 +13,3 @@ WriteMakefile( + }, + ); + +-sub MY::install { +- package MY; +- my $script = shift->SUPER::install(@_); +- +- # Only modify existing ParserDetails.ini if user agrees +- +- my $write_ini_ok = 0; +- +- eval { require XML::SAX }; +- if ($@) { +- $write_ini_ok = 1; +- } +- else { +- my $dir = File::Basename::dirname($INC{'XML/SAX.pm'}); +- if (-e File::Spec->catfile($dir, 'SAX', 'ParserDetails.ini')) { +- $write_ini_ok = +- ExtUtils::MakeMaker::prompt( +- "Do you want XML::SAX to alter ParserDetails.ini?", "Y" +- ) =~ /^y/i; +- } +- else { +- $write_ini_ok = 1; +- } +- } +- +- if ($write_ini_ok) { +- $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m; +- $script .= <<"INSTALL"; +- +-install_sax_pureperl : +-\t\@\$(PERL) -MXML::SAX -e "XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()" +- +-INSTALL +- +- } +- +- return $script; +-} +- +-- +1.7.10.3 + Deleted: csw/mgar/pkg/cpan/XML-SAX/trunk/files/parser.diff =================================================================== --- csw/mgar/pkg/cpan/XML-SAX/trunk/files/parser.diff 2012-07-05 12:03:25 UTC (rev 18644) +++ csw/mgar/pkg/cpan/XML-SAX/trunk/files/parser.diff 2012-07-05 12:47:58 UTC (rev 18645) @@ -1,21 +0,0 @@ -diff --speed-large-files --minimal -Nru XML-SAX-0.12.orig/Makefile.PL XML-SAX-0.12/Makefile.PL ---- XML-SAX-0.12.orig/Makefile.PL 2002-01-21 13:32:59.000000000 -0800 -+++ XML-SAX-0.12/Makefile.PL 2003-07-29 14:34:30.816558000 -0700 -@@ -12,7 +12,7 @@ - sub MY::install { - package MY; - my $script = shift->SUPER::install(@_); -- if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) { -+# if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) { - $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m; - $script .= <<"INSTALL"; - -@@ -21,7 +21,7 @@ - - INSTALL - -- } -+# } - - return $script; - } Deleted: csw/mgar/pkg/cpan/XML-SAX/trunk/files/pure.diff =================================================================== --- csw/mgar/pkg/cpan/XML-SAX/trunk/files/pure.diff 2012-07-05 12:03:25 UTC (rev 18644) +++ csw/mgar/pkg/cpan/XML-SAX/trunk/files/pure.diff 2012-07-05 12:47:58 UTC (rev 18645) @@ -1,27 +0,0 @@ ---- XML-SAX-0.12.orig/Makefile.PL 2002-01-21 13:32:59.000000000 -0800 -+++ XML-SAX-0.12/Makefile.PL 2004-01-03 17:30:20.185124000 -0800 -@@ -9,20 +9,17 @@ - }, - ); - --sub MY::install { -+sub MY::pure_install { - package MY; -- my $script = shift->SUPER::install(@_); -- if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) { -- $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m; -- $script .= <<"INSTALL"; -+ my $script = shift->SUPER::pure_install(@_); -+ $script =~ s/pure_install :: (.*)$/pure_install :: $1 install_sax_pureperl/m; -+ $script .= <<"INSTALL"; - - install_sax_pureperl : - \t\@\$(PERL) -MXML::SAX -e "XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()" - - INSTALL - -- } -- - return $script; - } - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Thu Jul 5 14:49:32 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 12:49:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[18646] csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile Message-ID: Revision: 18646 http://gar.svn.sourceforge.net/gar/?rev=18646&view=rev Author: dmichelsen Date: 2012-07-05 12:49:32 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/XML-SAX/trunk: Add Obsoletion Modified Paths: -------------- csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile Modified: csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile 2012-07-05 12:47:58 UTC (rev 18645) +++ csw/mgar/pkg/cpan/XML-SAX/trunk/Makefile 2012-07-05 12:49:32 UTC (rev 18646) @@ -20,5 +20,7 @@ ARCHALL_CSWpm-xml-sax = 1 RUNTIME_DEP_PKGS_CSWpm-xml-sax += CSWpm-xml-namespacesupport RUNTIME_DEP_PKGS_CSWpm-xml-sax += CSWpm-xml-sax-base +OBSOLETED_BY_CSWpm-xml-sax += CSWpmxmlsax +CATALOGNAME_CSWpmxmlsax = pm_xmlsax_stub 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 Thu Jul 5 15:07:04 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Thu, 05 Jul 2012 13:07:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[18647] csw/mgar/pkg/mysql5/branches/mysql-5.5.x Message-ID: Revision: 18647 http://gar.svn.sourceforge.net/gar/?rev=18647&view=rev Author: wahwah Date: 2012-07-05 13:07:04 +0000 (Thu, 05 Jul 2012) Log Message: ----------- mysql5/branches/mysql-5.5.x: 5.5.25a fixes the regression Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2012-07-05 12:49:32 UTC (rev 18646) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/Makefile 2012-07-05 13:07:04 UTC (rev 18647) @@ -13,7 +13,7 @@ PROJ_NAME = mysql NAME = $(PROJ_NAME)5 BASE_VERSION = 5.5 -PATCHLEVEL = 24 +PATCHLEVEL = 25a ALTS_PRIO = 55 VERSION = $(BASE_VERSION).$(PATCHLEVEL) CATEGORIES = server Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2012-07-05 12:49:32 UTC (rev 18646) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/checksums 2012-07-05 13:07:04 UTC (rev 18647) @@ -1 +1 @@ -dc84f8a0305e054c859533944e79f803 mysql-5.5.24.tar.gz +0841fbc79872c5f467d8c8842f45257a mysql-5.5.25a.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 Jul 5 15:17:55 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 05 Jul 2012 13:17:55 +0000 Subject: [csw-devel] SF.net SVN: gar:[18648] csw/mgar/pkg/cpan/MARC-Charset/trunk Message-ID: Revision: 18648 http://gar.svn.sourceforge.net/gar/?rev=18648&view=rev Author: dmichelsen Date: 2012-07-05 13:17:55 +0000 (Thu, 05 Jul 2012) Log Message: ----------- cpan/MARC-Charset/trunk: Update to 1.33 and new deps Modified Paths: -------------- csw/mgar/pkg/cpan/MARC-Charset/trunk/Makefile csw/mgar/pkg/cpan/MARC-Charset/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/MARC-Charset/trunk/files/COPYING Modified: csw/mgar/pkg/cpan/MARC-Charset/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/MARC-Charset/trunk/Makefile 2012-07-05 13:07:04 UTC (rev 18647) +++ csw/mgar/pkg/cpan/MARC-Charset/trunk/Makefile 2012-07-05 13:17:55 UTC (rev 18648) @@ -1,18 +1,25 @@ NAME = MARC-Charset -VERSION = 1.2 +VERSION = 1.33 CATEGORIES = cpan GARTYPE = v2 -AUTHOR = ESUMMERS +AUTHOR = GMCHARLT -DESCRIPTION = convert MARC-8 encoded strings to UTF-8 +DESCRIPTION = Convert MARC-8 encoded strings to UTF-8 define BLURB endef -DISTFILES = COPYING +CATALOG_RELEASE = unstable -PACKAGES = CSWpmmarccharset -CATALOGNAME = pm_marccharset +LICENSE_TEXT = This module is licensed under the unknown license -ARCHALL = 1 +PACKAGES += CSWpm-marc-charset +CATALOGNAME_CSWpm-marc-charset = pm_marc_charset +SPKG_DESC_CSWpm-marc-charset = Convert MARC-8 encoded strings to UTF-8 +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-marc-charset = 1 +RUNTIME_DEP_PKGS_CSWpm-marc-charset += CSWpm-xml-sax +RUNTIME_DEP_PKGS_CSWpm-marc-charset += CSWpm-class-accessor +OBSOLETED_BY_CSWpm-marc-charset += CSWpmmarccharset +CATALOGNAME_CSWpmmarccharset = pm_marccharset_stub include gar/category.mk Modified: csw/mgar/pkg/cpan/MARC-Charset/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/MARC-Charset/trunk/checksums 2012-07-05 13:07:04 UTC (rev 18647) +++ csw/mgar/pkg/cpan/MARC-Charset/trunk/checksums 2012-07-05 13:17:55 UTC (rev 18648) @@ -1,2 +1 @@ -47510514f90667c118c81b8cc5fe108c COPYING -503fcffef61f8469ad1ffcfbdb5a3681 MARC-Charset-1.2.tar.gz +02882113257742eef9c11adf29a16854 MARC-Charset-1.33.tar.gz Deleted: csw/mgar/pkg/cpan/MARC-Charset/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/MARC-Charset/trunk/files/COPYING 2012-07-05 13:07:04 UTC (rev 18647) +++ csw/mgar/pkg/cpan/MARC-Charset/trunk/files/COPYING 2012-07-05 13:17:55 UTC (rev 18648) @@ -1,7 +0,0 @@ -COPYRIGHT AND LICENCE - -This software is free software and may be distributed under the same -terms as Perl itself. - -Copyright (C) 2002 Ed Summers - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 5 16:55:19 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 05 Jul 2012 14:55:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18649] csw/mgar/pkg Message-ID: Revision: 18649 http://gar.svn.sourceforge.net/gar/?rev=18649&view=rev Author: pfelecan Date: 2012-07-05 14:55:18 +0000 (Thu, 05 Jul 2012) Log Message: ----------- tex_metauml_lop/trunk: new package Added Paths: ----------- csw/mgar/pkg/tex_metauml_lop/ csw/mgar/pkg/tex_metauml_lop/Makefile csw/mgar/pkg/tex_metauml_lop/branches/ csw/mgar/pkg/tex_metauml_lop/tags/ csw/mgar/pkg/tex_metauml_lop/trunk/ csw/mgar/pkg/tex_metauml_lop/trunk/Makefile csw/mgar/pkg/tex_metauml_lop/trunk/checksums csw/mgar/pkg/tex_metauml_lop/trunk/files/ csw/mgar/pkg/tex_metauml_lop/trunk/files/0001-Adapt-build-Solaris.patch csw/mgar/pkg/tex_metauml_lop/trunk/files/COPYING csw/mgar/pkg/tex_metauml_lop/trunk/files/README.CSW Added: csw/mgar/pkg/tex_metauml_lop/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml_lop/Makefile (rev 0) +++ csw/mgar/pkg/tex_metauml_lop/Makefile 2012-07-05 14:55:18 UTC (rev 18649) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/tex_metauml_lop/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/tex_metauml_lop/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml_lop/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tex_metauml_lop/trunk/Makefile 2012-07-05 14:55:18 UTC (rev 18649) @@ -0,0 +1,56 @@ +# $Id$ + +NAME = tex_metauml_lop +VERSION = 1.0 +GARTYPE = v2 +CATEGORIES = xtra + +DESCRIPTION = MetaUML Library of Patterns +define BLURB + MetaUML Library of Patterns (UML for LaTeX/MetaPost) +endef + +DISTNAME = metauml_lop +WORKSRC = $(WORKDIR) +PATCHDIR = $(WORKSRC) +MASTER_SITES = $(SF_MIRRORS) +SF_PROJ = metauml +DISTFILES = lop-release.tgz +DISTFILES += COPYING +DISTFILES += README.CSW +PATCHFILES += 0001-Adapt-build-Solaris.patch + +PACKAGES = CSWtex-metauml-lop +SPKG_DESC_CSWtex-metauml-lop = $(DESCRIPTION) +CATALOG_NAMEtex-metauml-lop = tex_metauml_lop +BUILD_DEP_PKGS_CSWtex-metauml-lop += CSWtetex +RUNTIME_DEP_PKGS_CSWtex-metauml-lop += CSWtetex +CHECKPKG_OVERRIDES_CSWtex-metauml-lop += surplus-dependency|CSWtetex +BUILD_DEP_PKGS_CSWtex-metauml-lop += CSWtex-metauml +RUNTIME_DEP_PKGS_CSWtex-metauml-lop += CSWtex-metauml +CHECKPKG_OVERRIDES_CSWtex-metauml-lop += surplus-dependency|CSWtex-metauml +BUILD_DEP_PKGS_CSWtex-metauml-lop += CSWxpdf +BUILD_DEP_PKGS_CSWtex-metauml-lop += CSWnetpbm +ARCHALL_CSWtex-metauml-lop = 1 + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +include gar/category.mk + +build-custom: + cd $(WORKSRC) && ./lop + $(MAKECOOKIE) + +install-custom: pkgdoc = $(texmflocaldir)/doc/metapost/$(NAME) +install-custom: pkgmp = $(texmflocaldir)/metapost/$(NAME) +install-custom: + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgdoc) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/lop.pdf $(DESTDIR)/$(pkgdoc) + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgdoc)/html + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/lop.html $(WORKSRC)/*.jpg $(DESTDIR)/$(pkgdoc)/html + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgmp) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/*.mp $(DESTDIR)/$(pkgmp) + $(MAKECOOKIE) Property changes on: csw/mgar/pkg/tex_metauml_lop/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/tex_metauml_lop/trunk/checksums =================================================================== --- csw/mgar/pkg/tex_metauml_lop/trunk/checksums (rev 0) +++ csw/mgar/pkg/tex_metauml_lop/trunk/checksums 2012-07-05 14:55:18 UTC (rev 18649) @@ -0,0 +1 @@ +e51f918c1d7d840e1fa632dda6db293b lop-release.tgz Added: csw/mgar/pkg/tex_metauml_lop/trunk/files/0001-Adapt-build-Solaris.patch =================================================================== --- csw/mgar/pkg/tex_metauml_lop/trunk/files/0001-Adapt-build-Solaris.patch (rev 0) +++ csw/mgar/pkg/tex_metauml_lop/trunk/files/0001-Adapt-build-Solaris.patch 2012-07-05 14:55:18 UTC (rev 18649) @@ -0,0 +1,56 @@ +From e4d36b02bf0499e72b20ca842d3951f1300215c2 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 5 Jul 2012 16:34:09 +0200 +Subject: [PATCH] Adapt build Solaris + +--- + lop | 16 ++++++++-------- + 1 file changed, 8 insertions(+), 8 deletions(-) + +diff --git a/lop b/lop +index f8b1f6e..8ef0346 100755 +--- a/lop ++++ b/lop +@@ -2,7 +2,7 @@ + + BASE=. + +-files=`find $BASE -name "*.mp"`; ++files=$(ls -1 *.mp) + + echo $files + +@@ -21,23 +21,23 @@ echo "\\author{Radu-George Radulescu and Ovidiu Gheorghies}" >> lop.tex + echo "\\begin{document} \maketitle" >> lop.tex + + for current_file in $files; do +- file_base=`echo $current_file | rev | cut -f 1 -d "/" | rev | cut -f 1 -d "."` +- echo "Processing... $"; ++ file_base=$(basename ${current_file} .mp) ++ echo "Processing... $file_base"; + + echo "mptopdf..." +- #mptopdf $file_base.mp ++ mptopdf $file_base.mp + + echo "pdftoppm..." +- #pdftoppm $file_base-1.pdf $file_base ++ pdftoppm $file_base-1.pdf $file_base + + echo "ppmtojpeg..." +- #ppmtojpeg $file_base-000001.ppm > $file_base.jpg ++ ppmtojpeg ${file_base}-000001.ppm > $file_base.jpg + +- rm *.mpo *.ppm *.pdf *.log ++ rm -f *.mpo *.ppm *.pdf *.log + + echo "

" >> lop.html; + +- echo "\includegraphics[scale=.75]{$file_base.1} \\\\ \\vspace{2cm} \\\\" >> lop.tex; ++ echo "\includegraphics[scale=.75]{${file_base}.1} \\\\ \\vspace{2cm} \\\\" >> lop.tex; + + echo "done." + done +-- +1.7.10.3 + Added: csw/mgar/pkg/tex_metauml_lop/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/tex_metauml_lop/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/tex_metauml_lop/trunk/files/COPYING 2012-07-05 14:55:18 UTC (rev 18649) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 Library General +Public License instead of this License. Added: csw/mgar/pkg/tex_metauml_lop/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/tex_metauml_lop/trunk/files/README.CSW (rev 0) +++ csw/mgar/pkg/tex_metauml_lop/trunk/files/README.CSW 2012-07-05 14:55:18 UTC (rev 18649) @@ -0,0 +1,11 @@ +$Id: README.CSW 18561 2012-06-27 09:38:38Z pfelecan $ + +The documentation is installed in the standard TeX tree, i.e., +/opt/csw/share/texmf-local. + +CSW Team + +# Local Variables: +# mode: text +# mode: font-lock +# End: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 5 16:56:25 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 05 Jul 2012 14:56:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18650] csw/mgar/pkg/tex_metauml_man/trunk/Makefile Message-ID: Revision: 18650 http://gar.svn.sourceforge.net/gar/?rev=18650&view=rev Author: pfelecan Date: 2012-07-05 14:56:24 +0000 (Thu, 05 Jul 2012) Log Message: ----------- tex_metauml_man/trunk: corrected the runtime dependencies and the corresponding overrides Modified Paths: -------------- csw/mgar/pkg/tex_metauml_man/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml_man/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml_man/trunk/Makefile 2012-07-05 14:55:18 UTC (rev 18649) +++ csw/mgar/pkg/tex_metauml_man/trunk/Makefile 2012-07-05 14:56:24 UTC (rev 18650) @@ -30,8 +30,10 @@ OBSOLETED_BY_CSWtex-metauml-man = CSWtexmetaumlman CATALOGNAME_CSWtexmetaumlman = tex_metaumlman_stub BUILD_DEP_PKGS_CSWtex-metauml-man += CSWtetex +RUNTIME_DEP_PKGS_CSWtex-metauml-man += CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml-man += surplus-dependency|CSWtetex BUILD_DEP_PKGS_CSWtex-metauml-man += CSWtex-metauml +RUNTIME_DEP_PKGS_CSWtex-metauml-man += CSWtex-metauml CHECKPKG_OVERRIDES_CSWtex-metauml-man += surplus-dependency|CSWtex-metauml ARCHALL_CSWtex-metauml-man = 1 LICENSE_CSWtex-metauml-man = fdl-1.3.txt 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 Jul 5 20:44:49 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 05 Jul 2012 18:44:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[18651] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18651 http://gar.svn.sourceforge.net/gar/?rev=18651&view=rev Author: j_arndt Date: 2012-07-05 18:44:49 +0000 (Thu, 05 Jul 2012) Log Message: ----------- nagios_plugins/trunk: small fixes and tuning of build recipe Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-05 14:56:24 UTC (rev 18650) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-05 18:44:49 UTC (rev 18651) @@ -10,17 +10,16 @@ Plugins for Nagios endef -MASTER_SITES = http://surfnet.dl.sourceforge.net/sourceforge/nagiosplug/ +SF_PROJ = nagiosplug +MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(NAME)-$(VERSION).tar.gz -PACKAGES = CSWnagios-plugins -SPKG_CATALOG_NAME_CSWnagios-plugins = nagios_plugins +PACKAGES = CSWnagios-plugins +CATALOG_NAME_CSWnagios-plugins = nagios_plugins OBSOLETED_BY_CSWnagios-plugins = CSWnagiosp -SPKG_CATALOG_NAME_CSWnagiosp = nagiosp_stub +CATALOG_NAME_CSWnagiosp = nagiosp_stub -#PATCHFILES += 0001-disable-cflags-detection-for-pst3.patch -#PATCHFILES += 0002-changed-paths-in-hardcoded-examples.patch PATCHFILES += 0004-Use-32-bit-pst3-on-Solaris.patch REINPLACE_USRLOCAL += contrib/* @@ -38,12 +37,6 @@ CONFIGURE_ARGS += --libexecdir=$(prefix)/libexec/nagios-plugins CONFIGURE_ARGS += --with-perl=/opt/csw/bin/perl CONFIGURE_ARGS += --with-openssl=/opt/csw -# http://184.82.236.176/?p=4 -#CONFIGURE_ARGS += --with-ps-command="/usr/bin/ps -eo 's uid pid ppid vsz rss pcpu etime comm args'" -#CONFIGURE_ARGS += --with-ps-format="%s %d %d %d %d %d %f %s %s %n" -#CONFIGURE_ARGS += --with-ps-cols=10 -#CONFIGURE_ARGS += --with-ps-varlist="procstat,&procuid,&procpid,&procppid,&procvsz,&procrss,&procpcpu,procetime,procprog,&pos" -# CONFIGURE_ARGS += --with-trusted-path=/usr/bin:/usr/sbin:/opt/csw/bin:/opt/csw/sbin:$(prefix)/libexec/nagios-plugins CONFIGURE_ARGS += --with-ping6-command="/usr/sbin/ping -A inet6 -s %s 56 %d" CONFIGURE_ARGS += --with-snmpget-command=/opt/csw/bin/snmpget @@ -51,8 +44,7 @@ libexecdir ?= $(prefix)/libexec/nagios-plugins -CFLAGS += -I /opt/csw/postgresql/include/ -EXTRA_INC = /opt/csw/postgresql/include +EXTRA_INC += /opt/csw/postgresql/include EXTRA_LIB += /opt/csw/postgresql/lib PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc @@ -65,10 +57,10 @@ # Add this override for now CHECKPKG_OVERRIDES_CSWnagios-plugins += surplus-dependency|CSWnetsnmp -BUILD_DEP_PKGS_CSWnagios-plugins += CSWmysql-dev -BUILD_DEP_PKGS_CSWnagios-plugins += CSWpostgresql-dev -BUILD_DEP_PKGS_CSWnagios-plugins += CSWlibz-dev -BUILD_DEP_PKGS_CSWnagios-plugins += CSWlibnet-dev +BUILD_DEP_PKGS += CSWmysql-dev +BUILD_DEP_PKGS += CSWpostgresql-dev +BUILD_DEP_PKGS += CSWlibz-dev +BUILD_DEP_PKGS += CSWlibnet-dev TEST_TARGET = @@ -84,9 +76,9 @@ @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) @ginstall -m 755 -d $(PLUGINDEST) @$(foreach PLUGIN,$(ROOT_PLUGINS),ginstall -m 4755 $(WORKSRC)/plugins-root/$(PLUGIN) $(PLUGINDEST);) - @tar cf $(WORKSRC)/contrib.tar $(WORKSRC)/contrib/ + @( cd $(WORKSRC) ; tar cf contrib.tar contrib ; gzip contrib.tar) @ginstall -m 755 -d $(DOCDEST) - @ginstall -m 644 $(WORKSRC)/contrib.tar $(DOCDEST) + @ginstall -m 644 $(WORKSRC)/contrib.tar.gz $(DOCDEST) @$(MAKECOOKIE) post-merge: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From romeotheriault at users.sourceforge.net Fri Jul 6 02:04:33 2012 From: romeotheriault at users.sourceforge.net (romeotheriault at users.sourceforge.net) Date: Fri, 06 Jul 2012 00:04:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18652] csw/mgar/pkg/zeromq/trunk Message-ID: Revision: 18652 http://gar.svn.sourceforge.net/gar/?rev=18652&view=rev Author: romeotheriault Date: 2012-07-06 00:04:33 +0000 (Fri, 06 Jul 2012) Log Message: ----------- zeromq/trunk: seperated out ulimit setting to make more portable Modified Paths: -------------- csw/mgar/pkg/zeromq/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/zeromq/trunk/files/set-ulimit-for-build-test Modified: csw/mgar/pkg/zeromq/trunk/Makefile =================================================================== --- csw/mgar/pkg/zeromq/trunk/Makefile 2012-07-05 18:44:49 UTC (rev 18651) +++ csw/mgar/pkg/zeromq/trunk/Makefile 2012-07-06 00:04:33 UTC (rev 18652) @@ -16,7 +16,8 @@ endef MASTER_SITES = http://download.zeromq.org/ -DISTFILES = $(DISTNAME).tar.gz +DISTFILES += $(DISTNAME).tar.gz +DISTFILES += set-ulimit-for-build-test PATCHFILES += 0001-Patching-ltmain.sh-to-prevent-libtool-from-stripping.patch @@ -25,6 +26,7 @@ PKGFILES_CSWlibzmq1 += $(call pkgfiles_lib,libzmq.so.1.0.1) PKGFILES_CSWlibzmq1 += $(call pkgfiles_lib,libzmq.so.1) PKGFILES_CSWlibzmq1 += $(docdir)/.* +#CHECKPKG_OVERRIDES_CSWlibzmq1 += pkginfo-opencsw-repository-uncommitted PACKAGES += CSWlibzmq1-dev @@ -32,12 +34,12 @@ PKGFILES_CSWlibzmq1-dev += $(PKGFILES_DEVEL) PKGFILES_CSWlibzmq1-dev += .*\.7 RUNTIME_DEP_PKGS_CSWlibzmq1-dev += CSWlibzmq1 +#CHECKPKG_OVERRIDES_CSWlibzmq1-dev += pkginfo-opencsw-repository-uncommitted CONFIGURE_ARGS = $(DIRPATHS) # For tests to succeed on i386 you need to set the ulimit higher than the default of 256. -# I set 'ulimit -S -n 10000' in my ~/.bash_profile and the tests succeed. -EXTRA_TEST_ENV += BASH_ENV=~/.bash_profile +EXTRA_TEST_ENV += BASH_ENV=$(abspath $(WORKDIR)/set-ulimit-for-build-test) EXTRA_LINKER_FLAGS = -norunpath include gar/category.mk Added: csw/mgar/pkg/zeromq/trunk/files/set-ulimit-for-build-test =================================================================== --- csw/mgar/pkg/zeromq/trunk/files/set-ulimit-for-build-test (rev 0) +++ csw/mgar/pkg/zeromq/trunk/files/set-ulimit-for-build-test 2012-07-06 00:04:33 UTC (rev 18652) @@ -0,0 +1 @@ +ulimit -S -n 10000 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 Jul 6 02:34:27 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 06 Jul 2012 00:34:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[18653] csw/mgar/pkg/git/trunk Message-ID: Revision: 18653 http://gar.svn.sourceforge.net/gar/?rev=18653&view=rev Author: bdwalton Date: 2012-07-06 00:34:27 +0000 (Fri, 06 Jul 2012) Log Message: ----------- git/trunk: backport a patch from upstream to work around an acl gotcha in t1304 Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/git/trunk/files/0010-t1304-improve-setfacl-prerequisite-setup.patch Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2012-07-06 00:04:33 UTC (rev 18652) +++ csw/mgar/pkg/git/trunk/Makefile 2012-07-06 00:34:27 UTC (rev 18653) @@ -119,6 +119,7 @@ PATCHFILES += 0006-Patch-out-a-few-usr-share-references.patch PATCHFILES += 0007-on-solaris-we-need-to-use-lintl-to-allow-the-new-i18.patch PATCHFILES += 0009-Makefile-Set-EXTRA_CPPFLAGS-during-the-compilation-o.patch +PATCHFILES += 0010-t1304-improve-setfacl-prerequisite-setup.patch fdirs = $(bindir_install) $(mandir) $(libexecdir_install) define _git_files Added: csw/mgar/pkg/git/trunk/files/0010-t1304-improve-setfacl-prerequisite-setup.patch =================================================================== --- csw/mgar/pkg/git/trunk/files/0010-t1304-improve-setfacl-prerequisite-setup.patch (rev 0) +++ csw/mgar/pkg/git/trunk/files/0010-t1304-improve-setfacl-prerequisite-setup.patch 2012-07-06 00:34:27 UTC (rev 18653) @@ -0,0 +1,66 @@ +From a14ad109115b29483b6e37d18159d850e2752c72 Mon Sep 17 00:00:00 2001 +From: Jeff King +Date: Wed, 6 Jun 2012 09:28:24 -0400 +Subject: [PATCH] t1304: improve setfacl prerequisite setup + +t1304 first runs setfacl as an experiment to see whether the +filesystem supports ACLs, and skips the remaining tests if +it does not. However, our setfacl run did not exercise the +ACLs very well, and some filesystems may support our initial +setfacl, but not the rest of the test. + +In particular, some versions of ecryptfs will erroneously +apply the umask on top of an inherited directory ACL, +causing our tests to fail. Let's be more careful and make +sure both that we can read back the user ACL we set, and +that the inherited ACL is propagated correctly. The latter +catches the ecryptfs bug, but may also catch other bugs +(e.g., an implementation which does not handle inherited +ACLs at all). + +Since we're making the setup more complex, let's move it +into its own test. This will hide the output for us unless +the user wants to run "-v" to see it (and we don't need to +bother printing anything about setfacl failing; the +remaining tests will properly print "skip" due to the +missing prerequisite). + +Signed-off-by: Jeff King +Signed-off-by: Junio C Hamano +--- + t/t1304-default-acl.sh | 19 +++++++++---------- + 1 file changed, 9 insertions(+), 10 deletions(-) + +diff --git a/t/t1304-default-acl.sh b/t/t1304-default-acl.sh +index 2b962cf..79045ab 100755 +--- a/t/t1304-default-acl.sh ++++ b/t/t1304-default-acl.sh +@@ -14,16 +14,15 @@ umask 077 + # We need an arbitrary other user give permission to using ACLs. root + # is a good candidate: exists on all unices, and it has permission + # anyway, so we don't create a security hole running the testsuite. +- +-setfacl_out="$(setfacl -m u:root:rwx . 2>&1)" +-setfacl_ret=$? +- +-if test $setfacl_ret != 0 +-then +- say "Unable to use setfacl (output: '$setfacl_out'; return code: '$setfacl_ret')" +-else +- test_set_prereq SETFACL +-fi ++test_expect_success 'checking for a working acl setup' ' ++ if setfacl -m d:m:rwx -m u:root:rwx . && ++ getfacl . | grep user:root:rwx && ++ touch should-have-readable-acl && ++ getfacl should-have-readable-acl | egrep "mask::?rw-" ++ then ++ test_set_prereq SETFACL ++ fi ++' + + if test -z "$LOGNAME" + then +-- +1.7.9.5 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Fri Jul 6 03:20:09 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 06 Jul 2012 01:20:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[18654] csw/mgar/pkg/php5/trunk Message-ID: Revision: 18654 http://gar.svn.sourceforge.net/gar/?rev=18654&view=rev Author: bdwalton Date: 2012-07-06 01:20:09 +0000 (Fri, 06 Jul 2012) Log Message: ----------- php5/trunk: version bump; need to address CVE-2012-2143 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/checksums Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2012-07-06 00:34:27 UTC (rev 18653) +++ csw/mgar/pkg/php5/trunk/Makefile 2012-07-06 01:20:09 UTC (rev 18654) @@ -1,6 +1,5 @@ - NAME = php5 -VERSION = 5.3.13 +VERSION = 5.3.14 CATEGORIES = lang GARTYPE = v2 SF_PROJ = $(shell echo $(NAME) | sed -e 's/[0-9]//g') Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2012-07-06 00:34:27 UTC (rev 18653) +++ csw/mgar/pkg/php5/trunk/checksums 2012-07-06 01:20:09 UTC (rev 18654) @@ -1 +1 @@ -370be99c5cdc2e756c82c44d774933c8 php-5.3.13.tar.bz2 +7caac4f71e2f21426c11ac153e538392 php-5.3.14.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 6 10:01:24 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 06 Jul 2012 08:01:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[18655] csw/mgar/pkg/tex_metauml_man/trunk/Makefile Message-ID: Revision: 18655 http://gar.svn.sourceforge.net/gar/?rev=18655&view=rev Author: pfelecan Date: 2012-07-06 08:01:23 +0000 (Fri, 06 Jul 2012) Log Message: ----------- tex_metauml_man/trunk: no licence or action class in stub Modified Paths: -------------- csw/mgar/pkg/tex_metauml_man/trunk/Makefile Modified: csw/mgar/pkg/tex_metauml_man/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex_metauml_man/trunk/Makefile 2012-07-06 01:20:09 UTC (rev 18654) +++ csw/mgar/pkg/tex_metauml_man/trunk/Makefile 2012-07-06 08:01:23 UTC (rev 18655) @@ -29,6 +29,8 @@ CATALOG_NAMEtex-metauml-man = tex_metauml_man OBSOLETED_BY_CSWtex-metauml-man = CSWtexmetaumlman CATALOGNAME_CSWtexmetaumlman = tex_metaumlman_stub +CHECKPKG_OVERRIDES_CSWtexmetaumlman += action-class-only-in-pkginfo|none +CHECKPKG_OVERRIDES_CSWtexmetaumlman += license-missing|/opt/csw/share/doc/tex_metaumlman_stub/license BUILD_DEP_PKGS_CSWtex-metauml-man += CSWtetex RUNTIME_DEP_PKGS_CSWtex-metauml-man += CSWtetex CHECKPKG_OVERRIDES_CSWtex-metauml-man += surplus-dependency|CSWtetex 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 Jul 6 10:21:53 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 06 Jul 2012 08:21:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18656] csw/mgar/pkg/cpan Message-ID: Revision: 18656 http://gar.svn.sourceforge.net/gar/?rev=18656&view=rev Author: dmichelsen Date: 2012-07-06 08:21:53 +0000 (Fri, 06 Jul 2012) Log Message: ----------- cpan/Authen-Krb5-Simple/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Authen-Krb5-Simple/ csw/mgar/pkg/cpan/Authen-Krb5-Simple/branches/ csw/mgar/pkg/cpan/Authen-Krb5-Simple/tags/ csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/ csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/Makefile csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/checksums csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/Makefile 2012-07-06 08:21:53 UTC (rev 18656) @@ -0,0 +1,22 @@ +NAME = Authen-Krb5-Simple +VERSION = 0.43 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DSTUART + +DESCRIPTION = Perl module that performs Kerberos 5 authentication +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the Perl license + +BUILD_DEP_PKGS += CSWlibkrb5-dev + +PACKAGES += CSWpm-authen-krb5-simple +CATALOGNAME_CSWpm-authen-krb5-simple = pm_authen_krb5_simple +SPKG_DESC_CSWpm-authen-krb5-simple = Perl module that performs Kerberos 5 authentication +RUNTIME_DEP_PKGS_CSWpm-authen-krb5-simple += CSWlibkrb5-3 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Authen-Krb5-Simple/trunk/checksums 2012-07-06 08:21:53 UTC (rev 18656) @@ -0,0 +1 @@ +209812d935d778c0a22247b5159bc0f6 Authen-Krb5-Simple-0.43.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 Jul 6 12:08:19 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 06 Jul 2012 10:08:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18657] csw/mgar/pkg/cpan/DBD-DB2/trunk Message-ID: Revision: 18657 http://gar.svn.sourceforge.net/gar/?rev=18657&view=rev Author: dmichelsen Date: 2012-07-06 10:08:19 +0000 (Fri, 06 Jul 2012) Log Message: ----------- cpan/DBD-DB2/trunk: Initial commit Modified Paths: -------------- csw/mgar/pkg/cpan/DBD-DB2/trunk/Makefile csw/mgar/pkg/cpan/DBD-DB2/trunk/checksums Modified: csw/mgar/pkg/cpan/DBD-DB2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DBD-DB2/trunk/Makefile 2012-07-06 08:21:53 UTC (rev 18656) +++ csw/mgar/pkg/cpan/DBD-DB2/trunk/Makefile 2012-07-06 10:08:19 UTC (rev 18657) @@ -1,25 +1,42 @@ NAME = DBD-DB2 -VERSION = 1.78 +VERSION = 1.84 CATEGORIES = cpan GARTYPE = v2 AUTHOR = IBMTORDB2 -DESCRIPTION = DataBase Driver for DB2 UDB +DESCRIPTION = DB2 Driver for DBI define BLURB - DBD::DB2 is a Perl5 module which when used in conjunction with DBI - allows Perl5 to communicate with IBM's DB2 Universal Database. - In the generic sense, most of the functionality provided by any of the - available DBDs is accessed indirectly through the DBI. endef -CATALOGNAME = pm_dbddb2 -PACKAGES = CSWpmdbddb2 +CATALOG_RELEASE = unstable -DB2_HOME = /opt/IBM/db2/V9 -EXTRA_LIB = $(DB2_HOME)/lib32 -LICENSE = LICENSE +# libdb2.so.1 requires libm.so.2 only available on Solaris 10 +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 +LICENSE = LICENSE + +PACKAGES += CSWpm-dbd-db2 +SPKG_DESC_CSWpm-dbd-db2 = DB2 Driver for DBI + +# These are just docs +CHECKPKG_OVERRIDES_CSWpm-dbd-db2 += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/DBD::DB2.3perl +CHECKPKG_OVERRIDES_CSWpm-dbd-db2 += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/DBD/DB2.pod + +# This is the default install location of the client +CHECKPKG_OVERRIDES_CSWpm-dbd-db2 += bad-rpath-entry|/opt/IBM/db2/V8.1/lib|opt/csw/lib/perl/csw/auto/DBD/DB2/Constants/Constants.so +CHECKPKG_OVERRIDES_CSWpm-dbd-db2 += bad-rpath-entry|/opt/IBM/db2/V8.1/lib|opt/csw/lib/perl/csw/auto/DBD/DB2/DB2.so + +# The library is installed manually and not shipped via OpenCSW +CHECKPKG_OVERRIDES_CSWpm-dbd-db2 += soname-not-found|libdb2.so.1|is|needed|by|opt/csw/lib/perl/csw/auto/DBD/DB2/DB2.so + +NOISALIST = 1 + +DB2_HOME = /opt/IBM/db2/V8.1 +DB2_LIB = $(DB2_HOME)/lib + +EXTRA_LIB += $(DB2_LIB) + +EXTRA_CONFIGURE_ENV += DB2_HOME=$(DB2_HOME) +EXTRA_CONFIGURE_ENV += DB2LIB=$(DB2_LIB) + include gar/category.mk - -CONFIGURE_ENV += DB2_HOME=$(DB2_HOME) -CONFIGURE_ENV += DB2LIB=$(DB2_HOME)/lib32 Modified: csw/mgar/pkg/cpan/DBD-DB2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DBD-DB2/trunk/checksums 2012-07-06 08:21:53 UTC (rev 18656) +++ csw/mgar/pkg/cpan/DBD-DB2/trunk/checksums 2012-07-06 10:08:19 UTC (rev 18657) @@ -1 +1 @@ -ef30eb14d00edcbdcc11587a4dba8a7c DBD-DB2-1.78.tar.gz +620ab82718509023152e2f0d1707aa7b DBD-DB2-1.84.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From killfer at users.sourceforge.net Fri Jul 6 15:08:41 2012 From: killfer at users.sourceforge.net (killfer at users.sourceforge.net) Date: Fri, 06 Jul 2012 13:08:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[18658] csw/mgar/pkg/cpan/Class-Factory-Util/trunk/Makefile Message-ID: Revision: 18658 http://gar.svn.sourceforge.net/gar/?rev=18658&view=rev Author: killfer Date: 2012-07-06 13:08:40 +0000 (Fri, 06 Jul 2012) Log Message: ----------- Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Factory-Util/trunk/Makefile Modified: csw/mgar/pkg/cpan/Class-Factory-Util/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Factory-Util/trunk/Makefile 2012-07-06 10:08:19 UTC (rev 18657) +++ csw/mgar/pkg/cpan/Class-Factory-Util/trunk/Makefile 2012-07-06 13:08:40 UTC (rev 18658) @@ -15,4 +15,7 @@ CATALOGNAME = pm_classfactutil ARCHALL = 1 +# Strip unknown options +CONFIGURE_ARGS = + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 6 16:37:42 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 06 Jul 2012 14:37:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18659] csw/mgar/pkg Message-ID: Revision: 18659 http://gar.svn.sourceforge.net/gar/?rev=18659&view=rev Author: pfelecan Date: 2012-07-06 14:37:41 +0000 (Fri, 06 Jul 2012) Log Message: ----------- libxvidcore/trunk: migrated from a private recipe to a GAR based recipe; not ready for release. Added Paths: ----------- csw/mgar/pkg/libxvidcore/ csw/mgar/pkg/libxvidcore/Makefile csw/mgar/pkg/libxvidcore/branches/ csw/mgar/pkg/libxvidcore/tags/ csw/mgar/pkg/libxvidcore/trunk/ csw/mgar/pkg/libxvidcore/trunk/Makefile csw/mgar/pkg/libxvidcore/trunk/checksums csw/mgar/pkg/libxvidcore/trunk/files/ csw/mgar/pkg/libxvidcore/trunk/files/0001-Adapt-examples-build-and-bench.patch csw/mgar/pkg/libxvidcore/trunk/files/0002-Map-instead-of-version.patch Added: csw/mgar/pkg/libxvidcore/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/Makefile (rev 0) +++ csw/mgar/pkg/libxvidcore/Makefile 2012-07-06 14:37:41 UTC (rev 18659) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/libxvidcore/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-06 14:37:41 UTC (rev 18659) @@ -0,0 +1,31 @@ +# $Id$ + +NAME = libxvidcore +VERSION = 1.3.2 +GARTYPE = v2 +CATEGORIES = lib + +DESCRIPTION = A high performance and high quality MPEG-4 video de-/encoding solution +define BLURB + A high performance and high quality MPEG-4 video de-/encoding solution +endef + +shortName = xvidcore +WORKSRC = $(WORKDIR)/$(shortName)/build/generic +PATCHDIR = $(WORKDIR)/$(shortName) +MASTER_SITES = http://downloads.xvid.org/downloads/ +DISTFILES = $(shortName)-$(VERSION).tar.gz +PATCHFILES += 0001-Adapt-examples-build-and-bench.patch +PATCHFILES += 0002-Map-instead-of-version.patch + +GARCOMPILER = GNU +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --disable-assembly + +TEST_SCRIPTS = + +include gar/category.mk + +# this is private and not available publicly +mydependencies: + $(HOME)/bin/ocswdeplist --package $(NAME) Property changes on: csw/mgar/pkg/libxvidcore/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/libxvidcore/trunk/checksums =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/checksums (rev 0) +++ csw/mgar/pkg/libxvidcore/trunk/checksums 2012-07-06 14:37:41 UTC (rev 18659) @@ -0,0 +1 @@ +87c8cf7b69ebed93c2d82ea5709d098a xvidcore-1.3.2.tar.gz Added: csw/mgar/pkg/libxvidcore/trunk/files/0001-Adapt-examples-build-and-bench.patch =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/files/0001-Adapt-examples-build-and-bench.patch (rev 0) +++ csw/mgar/pkg/libxvidcore/trunk/files/0001-Adapt-examples-build-and-bench.patch 2012-07-06 14:37:41 UTC (rev 18659) @@ -0,0 +1,39 @@ +From 79ba7e9d6c75b465028bba2d66201a636832cf9f Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Fri, 6 Jul 2012 14:56:53 +0200 +Subject: [PATCH] Adapt examples build and bench + +--- + examples/Makefile | 2 +- + examples/bench.pl | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/examples/Makefile b/examples/Makefile +index 7a4cfee..c4855c1 100644 +--- a/examples/Makefile ++++ b/examples/Makefile +@@ -10,7 +10,7 @@ include ../build/generic/platform.inc + + HDIR = -I../src + CFLAGS = -g $(ARCHITECTURE) $(BUS) $(ENDIANNESS) $(FEATURES) $(SPECIFIC_CFLAGS) +-LDFLAGS = -lc -lm ../build/generic/=build/$(STATIC_LIB) -lpthread ++LDFLAGS = -lc -lm ../build/generic/=build/$(STATIC_LIB) -lpthread -rt + + SOURCES= xvid_encraw.c xvid_decraw.c xvid_bench.c + OBJECTS=$(SOURCES:.c=.o) +diff --git a/examples/bench.pl b/examples/bench.pl +index bbc2318..34e352b 100755 +--- a/examples/bench.pl ++++ b/examples/bench.pl +@@ -72,7 +72,7 @@ sub check_bin + { + # force re-build of binary (better safe than sorry) + my_system( "rm -f $_[0]" ); +- my_system( "make $_[0]" ); ++ my_system( "gmake $_[0]" ); + } + sub check_file + { +-- +1.7.10.3 + Added: csw/mgar/pkg/libxvidcore/trunk/files/0002-Map-instead-of-version.patch =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/files/0002-Map-instead-of-version.patch (rev 0) +++ csw/mgar/pkg/libxvidcore/trunk/files/0002-Map-instead-of-version.patch 2012-07-06 14:37:41 UTC (rev 18659) @@ -0,0 +1,25 @@ +From 24bb086e3599ba202ecb3263f982a7e6ef8fb9cd Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Fri, 6 Jul 2012 16:18:50 +0200 +Subject: [PATCH] Map instead of version + +--- + build/generic/configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/build/generic/configure b/build/generic/configure +index 3b3f66d..55ff197 100755 +--- a/build/generic/configure ++++ b/build/generic/configure +@@ -4325,7 +4325,7 @@ case "$target_os" in + $as_echo "ok" >&6; } + STATIC_LIB="libxvidcore.\$(STATIC_EXTENSION)" + SHARED_LIB="libxvidcore.\$(SHARED_EXTENSION).\$(API_MAJOR).\$(API_MINOR)" +- SPECIFIC_LDFLAGS="-Wl,-soname,libxvidcore.\$(SHARED_EXTENSION).\$(API_MAJOR) -shared -Wl,--version-script=libxvidcore.ld -lc -lm" ++ SPECIFIC_LDFLAGS="-Wl,-soname,libxvidcore.\$(SHARED_EXTENSION).\$(API_MAJOR) -shared -Wl,-M,libxvidcore.ld -lc -lm" + SPECIFIC_CFLAGS="-fPIC" + ;; + *bsd*|irix*) +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 6 16:41:42 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 06 Jul 2012 14:41:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18660] csw/mgar/pkg/libxvidcore/trunk/Makefile Message-ID: Revision: 18660 http://gar.svn.sourceforge.net/gar/?rev=18660&view=rev Author: pfelecan Date: 2012-07-06 14:41:41 +0000 (Fri, 06 Jul 2012) Log Message: ----------- libxvidcore/trunk: addition of the run-time dependecy Modified Paths: -------------- csw/mgar/pkg/libxvidcore/trunk/Makefile Modified: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-06 14:37:41 UTC (rev 18659) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-06 14:41:41 UTC (rev 18660) @@ -24,6 +24,8 @@ TEST_SCRIPTS = +RUNTIME_DEP_PKGS += CSWlibgcc-s1 + include gar/category.mk # this is private and not available publicly 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 Jul 6 22:57:53 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Fri, 06 Jul 2012 20:57:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18661] csw/mgar/pkg/pcre/trunk Message-ID: Revision: 18661 http://gar.svn.sourceforge.net/gar/?rev=18661&view=rev Author: dmichelsen Date: 2012-07-06 20:57:52 +0000 (Fri, 06 Jul 2012) Log Message: ----------- pcre/trunk: Update to 8.31 Modified Paths: -------------- csw/mgar/pkg/pcre/trunk/Makefile csw/mgar/pkg/pcre/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/pcre/trunk/files/0002-Remove-bashism.patch Modified: csw/mgar/pkg/pcre/trunk/Makefile =================================================================== --- csw/mgar/pkg/pcre/trunk/Makefile 2012-07-06 14:41:41 UTC (rev 18660) +++ csw/mgar/pkg/pcre/trunk/Makefile 2012-07-06 20:57:52 UTC (rev 18661) @@ -1,5 +1,5 @@ NAME = pcre -VERSION = 8.30 +VERSION = 8.31 CATEGORIES = lib GARTYPE = v2 @@ -15,10 +15,6 @@ DISTFILES = $(DISTNAME).tar.bz2 PATCHFILES = 0001-Allow-norunpath-for-libtool.patch -# Use patch until this is fixed: -# http://bugs.exim.org/show_bug.cgi?id=1206 -PATCHFILES += 0002-Remove-bashism.patch - VENDOR_URL = http://www.pcre.org PACKAGES = CSWpcre @@ -59,12 +55,12 @@ PACKAGES += CSWlibpcrecpp0 SPKG_DESC_CSWlibpcrecpp0 += Perl-compatible regular expression tools, libpcrecpp.so.0 PKGFILES_CSWlibpcrecpp0 += $(call pkgfiles_lib,libpcrecpp.so.0) -RUNTIME_DEP_PKGS_CSWlibpcrecpp0 += CSWlibpcre0 +RUNTIME_DEP_PKGS_CSWlibpcrecpp0 += CSWlibpcre1 PACKAGES += CSWlibpcreposix0 SPKG_DESC_CSWlibpcreposix0 += Perl-compatible regular expression tools, libpcreposix.so.0 PKGFILES_CSWlibpcreposix0 += $(call pkgfiles_lib,libpcreposix.so.0) -RUNTIME_DEP_PKGS_CSWlibpcreposix0 += CSWlibpcre0 +RUNTIME_DEP_PKGS_CSWlibpcreposix0 += CSWlibpcre1 REINPLACE_USRLOCAL += doc/pcre-config.1 REINPLACE_USRLOCAL += doc/pcresample.3 @@ -94,6 +90,6 @@ test-custom: @echo " ==> Running make $(TEST_TARGET) in $*" - cd $(WORKSRC) && /usr/bin/ulimit -s 16384 && /usr/bin/env -i $(TEST_ENV) $(MAKE) $(PARALLELMFLAGS) $(foreach TTT,$(TEST_OVERRIDE_VARS),$(TTT)="$(TEST_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(TEST_OVERRIDE_DIRS),$(TTT)="$($(TTT))") -C $(OBJDIR) $(TEST_ARGS) $(TEST_TARGET) + cd $(WORKSRC) && /usr/bin/ulimit -s 32768 && /usr/bin/env -i $(TEST_ENV) $(MAKE) $(PARALLELMFLAGS) $(foreach TTT,$(TEST_OVERRIDE_VARS),$(TTT)="$(TEST_OVERRIDE_VAR_$(TTT))") $(foreach TTT,$(TEST_OVERRIDE_DIRS),$(TTT)="$($(TTT))") -C $(OBJDIR) $(TEST_ARGS) $(TEST_TARGET) @$(MAKECOOKIE) Modified: csw/mgar/pkg/pcre/trunk/checksums =================================================================== --- csw/mgar/pkg/pcre/trunk/checksums 2012-07-06 14:41:41 UTC (rev 18660) +++ csw/mgar/pkg/pcre/trunk/checksums 2012-07-06 20:57:52 UTC (rev 18661) @@ -1 +1 @@ -98e8928cccc945d04279581e778fbdff pcre-8.30.tar.bz2 +1c9a276af932b5599157f96e945391f0 pcre-8.31.tar.bz2 Deleted: csw/mgar/pkg/pcre/trunk/files/0002-Remove-bashism.patch =================================================================== --- csw/mgar/pkg/pcre/trunk/files/0002-Remove-bashism.patch 2012-07-06 14:41:41 UTC (rev 18660) +++ csw/mgar/pkg/pcre/trunk/files/0002-Remove-bashism.patch 2012-07-06 20:57:52 UTC (rev 18661) @@ -1,25 +0,0 @@ -From 3fea8bd4c59e4efa53cc9cf842c8836dacdcba89 Mon Sep 17 00:00:00 2001 -From: Dagobert Michelsen -Date: Sat, 4 Feb 2012 23:19:53 +0100 -Subject: [PATCH] Remove bashism - ---- - RunTest | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/RunTest b/RunTest -index aae292e..0d542f9 100755 ---- a/RunTest -+++ b/RunTest -@@ -135,7 +135,7 @@ $sim ./pcretest -C pcre8 >/dev/null - support8=$? - $sim ./pcretest -C pcre16 >/dev/null - support16=$? --if [ $(( $support8 + $support16 )) -eq 2 ] ; then -+if [ `expr $support8 + $support16` -eq 2 ] ; then - test8= - test16=-16 - if [ "$arg8" = yes -a "$arg16" != yes ] ; then --- -1.7.8.3 - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jul 7 14:13:16 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 07 Jul 2012 12:13:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[18662] csw/mgar/pkg/nettle/trunk Message-ID: Revision: 18662 http://gar.svn.sourceforge.net/gar/?rev=18662&view=rev Author: dmichelsen Date: 2012-07-07 12:13:16 +0000 (Sat, 07 Jul 2012) Log Message: ----------- nettle/trunk: Update to 2.5-pre2 Modified Paths: -------------- csw/mgar/pkg/nettle/trunk/Makefile csw/mgar/pkg/nettle/trunk/checksums Modified: csw/mgar/pkg/nettle/trunk/Makefile =================================================================== --- csw/mgar/pkg/nettle/trunk/Makefile 2012-07-06 20:57:52 UTC (rev 18661) +++ csw/mgar/pkg/nettle/trunk/Makefile 2012-07-07 12:13:16 UTC (rev 18662) @@ -2,7 +2,7 @@ # TODO (release-critical prefixed with !, non release-critical with *) # NAME = nettle -VERSION = 2.4 +VERSION = 2.5 GARTYPE = v2 CATEGORIES = utils @@ -14,6 +14,7 @@ endef MASTER_SITES = http://www.lysator.liu.se/~nisse/archive/ +DISTNAME = $(NAME)-$(VERSION)-pre2 DISTFILES = $(DISTNAME).tar.gz VENDOR_URL = http://www.lysator.liu.se/~nisse/nettle/ @@ -48,6 +49,9 @@ CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --enable-shared +# x86 assembly does not work with Sun Studio +CONFIGURE_ARGS += --disable-assembler + # This is the default install location after configure CHECKPKG_OVERRIDES_CSWlibnettle-utils += file-with-bad-content|/usr/local|root/opt/csw/share/info/nettle.info Modified: csw/mgar/pkg/nettle/trunk/checksums =================================================================== --- csw/mgar/pkg/nettle/trunk/checksums 2012-07-06 20:57:52 UTC (rev 18661) +++ csw/mgar/pkg/nettle/trunk/checksums 2012-07-07 12:13:16 UTC (rev 18662) @@ -1 +1 @@ -450be8c4886d46c09f49f568ad6fa013 nettle-2.4.tar.gz +1ad91687d36ce5be422dbb8450537da1 nettle-2.5-pre2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jul 7 18:25:04 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 07 Jul 2012 16:25:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[18663] csw/mgar/pkg/nettle/trunk Message-ID: Revision: 18663 http://gar.svn.sourceforge.net/gar/?rev=18663&view=rev Author: dmichelsen Date: 2012-07-07 16:25:04 +0000 (Sat, 07 Jul 2012) Log Message: ----------- nettle/trunk: Update to 2.5 Modified Paths: -------------- csw/mgar/pkg/nettle/trunk/Makefile csw/mgar/pkg/nettle/trunk/checksums Modified: csw/mgar/pkg/nettle/trunk/Makefile =================================================================== --- csw/mgar/pkg/nettle/trunk/Makefile 2012-07-07 12:13:16 UTC (rev 18662) +++ csw/mgar/pkg/nettle/trunk/Makefile 2012-07-07 16:25:04 UTC (rev 18663) @@ -14,7 +14,7 @@ endef MASTER_SITES = http://www.lysator.liu.se/~nisse/archive/ -DISTNAME = $(NAME)-$(VERSION)-pre2 +DISTNAME = $(NAME)-$(VERSION) DISTFILES = $(DISTNAME).tar.gz VENDOR_URL = http://www.lysator.liu.se/~nisse/nettle/ Modified: csw/mgar/pkg/nettle/trunk/checksums =================================================================== --- csw/mgar/pkg/nettle/trunk/checksums 2012-07-07 12:13:16 UTC (rev 18662) +++ csw/mgar/pkg/nettle/trunk/checksums 2012-07-07 16:25:04 UTC (rev 18663) @@ -1 +1 @@ -1ad91687d36ce5be422dbb8450537da1 nettle-2.5-pre2.tar.gz +d66882e6ad31a9f651b73d7a1a93bd4c nettle-2.5.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 Jul 8 17:57:42 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 08 Jul 2012 15:57:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18664] csw/mgar/gar/v2/lib/python Message-ID: Revision: 18664 http://gar.svn.sourceforge.net/gar/?rev=18664&view=rev Author: wahwah Date: 2012-07-08 15:57:42 +0000 (Sun, 08 Jul 2012) Log Message: ----------- checkpkg: Handle pkgchk error codes Modified Paths: -------------- csw/mgar/gar/v2/lib/python/checkpkg_lib.py csw/mgar/gar/v2/lib/python/package_checks.py Modified: csw/mgar/gar/v2/lib/python/checkpkg_lib.py =================================================================== --- csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2012-07-07 16:25:04 UTC (rev 18663) +++ csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2012-07-08 15:57:42 UTC (rev 18664) @@ -249,7 +249,7 @@ srv4_file=db_stat_objs_by_pkgname[e.pkgname], pkgname=e.pkgname, tag_name=e.tag_name, - tag_info=e.tag_info, + tag_info=unicode(e.tag_info, "utf-8"), msg=e.msg, os_rel=sqo_os_rel, catrel=sqo_catrel, Modified: csw/mgar/gar/v2/lib/python/package_checks.py =================================================================== --- csw/mgar/gar/v2/lib/python/package_checks.py 2012-07-07 16:25:04 UTC (rev 18663) +++ csw/mgar/gar/v2/lib/python/package_checks.py 2012-07-08 15:57:42 UTC (rev 18664) @@ -780,7 +780,8 @@ def CheckPkgchk(pkg_data, error_mgr, logger, messenger): if pkg_data["pkgchk"]["return_code"] != 0: - error_mgr.ReportError("pkgchk-failed-with-code", pkg_data["pkgchk"]["return_code"]) + error_mgr.ReportError("pkgchk-failed-with-code", + unicode(pkg_data["pkgchk"]["return_code"])) for line in pkg_data["pkgchk"]["stderr_lines"]: logger.warn(line) 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 Jul 8 20:30:23 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 08 Jul 2012 18:30:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[18665] csw/mgar/pkg/gcc4/tags/gcc-4.3.3/files/test-results / Message-ID: Revision: 18665 http://gar.svn.sourceforge.net/gar/?rev=18665&view=rev Author: wahwah Date: 2012-07-08 18:30:22 +0000 (Sun, 08 Jul 2012) Log Message: ----------- gcc4/tags/gcc-4.3.3: removing big test files, they will not be used Removed Paths: ------------- csw/mgar/pkg/gcc4/tags/gcc-4.3.3/files/test-results/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 09:38:12 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 07:38:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[18666] csw/mgar/pkg/libxvidcore/trunk Message-ID: Revision: 18666 http://gar.svn.sourceforge.net/gar/?rev=18666&view=rev Author: pfelecan Date: 2012-07-09 07:38:11 +0000 (Mon, 09 Jul 2012) Log Message: ----------- libxvidcore/trunk: use generic/compatible argument for soname enabling link edition on Solaris 9 or old Solaris 10 Modified Paths: -------------- csw/mgar/pkg/libxvidcore/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libxvidcore/trunk/files/0003-Generic-linker-soname-argument.patch Modified: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-08 18:30:22 UTC (rev 18665) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 07:38:11 UTC (rev 18666) @@ -17,6 +17,7 @@ DISTFILES = $(shortName)-$(VERSION).tar.gz PATCHFILES += 0001-Adapt-examples-build-and-bench.patch PATCHFILES += 0002-Map-instead-of-version.patch +PATCHFILES += 0003-Generic-linker-soname-argument.patch GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) @@ -28,6 +29,11 @@ include gar/category.mk +post-install-modulated: + cd $(DESTDIR)/$(libdir) && ln -s libxvidcore.4.3.so libxvidcore.4.so + cd $(DESTDIR)/$(libdir) && ln -s libxvidcore.4.so libxvidcore.so + $(MAKECOOKIE) + # this is private and not available publicly mydependencies: $(HOME)/bin/ocswdeplist --package $(NAME) Added: csw/mgar/pkg/libxvidcore/trunk/files/0003-Generic-linker-soname-argument.patch =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/files/0003-Generic-linker-soname-argument.patch (rev 0) +++ csw/mgar/pkg/libxvidcore/trunk/files/0003-Generic-linker-soname-argument.patch 2012-07-09 07:38:11 UTC (rev 18666) @@ -0,0 +1,25 @@ +From 633d155af167086577e4dfa39f584f62e3ede8f6 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Mon, 9 Jul 2012 08:49:36 +0200 +Subject: [PATCH] Generic linker soname argument + +--- + build/generic/configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/build/generic/configure b/build/generic/configure +index 55ff197..ce73353 100755 +--- a/build/generic/configure ++++ b/build/generic/configure +@@ -4325,7 +4325,7 @@ case "$target_os" in + $as_echo "ok" >&6; } + STATIC_LIB="libxvidcore.\$(STATIC_EXTENSION)" + SHARED_LIB="libxvidcore.\$(SHARED_EXTENSION).\$(API_MAJOR).\$(API_MINOR)" +- SPECIFIC_LDFLAGS="-Wl,-soname,libxvidcore.\$(SHARED_EXTENSION).\$(API_MAJOR) -shared -Wl,-M,libxvidcore.ld -lc -lm" ++ SPECIFIC_LDFLAGS="-Wl,-h,libxvidcore.\$(SHARED_EXTENSION).\$(API_MAJOR) -shared -Wl,-M,libxvidcore.ld -lc -lm" + SPECIFIC_CFLAGS="-fPIC" + ;; + *bsd*|irix*) +-- +1.7.10.3 + 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 Jul 9 10:51:16 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 08:51:16 +0000 Subject: [csw-devel] SF.net SVN: gar:[18667] csw/mgar/pkg/cpan Message-ID: Revision: 18667 http://gar.svn.sourceforge.net/gar/?rev=18667&view=rev Author: bonivart Date: 2012-07-09 08:51:16 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/CGI-Session-Serialize-yaml/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/Makefile csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/branches/ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/tags/ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/checksums csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/files/ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/files/COPYING Added: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/Makefile 2012-07-09 08:51:16 UTC (rev 18667) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile 2012-07-09 08:51:16 UTC (rev 18667) @@ -0,0 +1,25 @@ +NAME = CGI-Session-Serialize-yaml +VERSION = 4.26 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = RSAVAGE + +DESCRIPTION = Serializer for CGI::Session +define BLURB + Serializer for CGI::Session +endef + +MODDIST = CGI-Session-Serialize-yaml-$(VERSION).tgz + +DISTFILES += COPYING + +PACKAGES = CSWpm-cgi-session-serializ-yaml +CATALOGNAME = pm_cgi_session_serializ_yaml +SPKG_DESC_CSWpm-cgi-session-serializ-yaml = $(DESCRIPTION) +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-cgi-session + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/checksums 2012-07-09 08:51:16 UTC (rev 18667) @@ -0,0 +1 @@ +29f35caaf1de910c0a99bdc9b2f05264 CGI-Session-Serialize-yaml-4.26.tgz Added: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/files/COPYING 2012-07-09 08:51:16 UTC (rev 18667) @@ -0,0 +1 @@ +Copyright (C) 2001-2005 Sherzod Ruzmetov . All rights reserved. This library is free software. You can modify and or distribute 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 pfelecan at users.sourceforge.net Mon Jul 9 11:16:33 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 09:16:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18668] csw/mgar/pkg/libxvidcore/trunk/Makefile Message-ID: Revision: 18668 http://gar.svn.sourceforge.net/gar/?rev=18668&view=rev Author: pfelecan Date: 2012-07-09 09:16:11 +0000 (Mon, 09 Jul 2012) Log Message: ----------- libxvidcore/trunk: simplification and license addition; not splitted. Modified Paths: -------------- csw/mgar/pkg/libxvidcore/trunk/Makefile Modified: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 08:51:16 UTC (rev 18667) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:16:11 UTC (rev 18668) @@ -10,25 +10,39 @@ A high performance and high quality MPEG-4 video de-/encoding solution endef -shortName = xvidcore -WORKSRC = $(WORKDIR)/$(shortName)/build/generic -PATCHDIR = $(WORKDIR)/$(shortName) +DISTNAME = xvidcore MASTER_SITES = http://downloads.xvid.org/downloads/ -DISTFILES = $(shortName)-$(VERSION).tar.gz +DISTFILES = $(DISTNAME)-$(VERSION).tar.gz PATCHFILES += 0001-Adapt-examples-build-and-bench.patch PATCHFILES += 0002-Map-instead-of-version.patch PATCHFILES += 0003-Generic-linker-soname-argument.patch +LICENSE = LICENSE GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --disable-assembly +RUNTIME_DEP_PKGS += CSWlibgcc-s1 + +CONFIGURE_SCRIPTS = custom +BUILD_SCRIPTS = custom TEST_SCRIPTS = +INSTALL_SCRIPTS = custom -RUNTIME_DEP_PKGS += CSWlibgcc-s1 - include gar/category.mk +configure-custom: + cd $(WORKSRC)/build/generic && ./configure $(CONFIGURE_ARGS) + $(MAKECOOKIE) + +build-custom: + mgar --directory $(WORKSRC)/build/generic + $(MAKECOOKIE) + +install-custom: + mgar DESTDIR=$(DESTDIR) --directory $(WORKSRC)/build/generic install + $(MAKECOOKIE) + post-install-modulated: cd $(DESTDIR)/$(libdir) && ln -s libxvidcore.4.3.so libxvidcore.4.so cd $(DESTDIR)/$(libdir) && ln -s libxvidcore.4.so libxvidcore.so This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 11:27:36 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 09:27:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[18669] csw/mgar/pkg/libxvidcore/trunk/Makefile Message-ID: Revision: 18669 http://gar.svn.sourceforge.net/gar/?rev=18669&view=rev Author: pfelecan Date: 2012-07-09 09:27:35 +0000 (Mon, 09 Jul 2012) Log Message: ----------- libxvidcore/trunk: split in run-time and development packages Modified Paths: -------------- csw/mgar/pkg/libxvidcore/trunk/Makefile Modified: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:16:11 UTC (rev 18668) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:27:35 UTC (rev 18669) @@ -29,6 +29,19 @@ TEST_SCRIPTS = INSTALL_SCRIPTS = custom +PACKAGES += CSWlibxvidcore4 +CATALOGNAME_CSWlibxvidcore4 = libxvidcore4 +PKGFILES_CSWlibxvidcore4 += $(call baseisadirs,$(libdir),libxvidcore\.so\.4\.3) +PKGFILES_CSWlibxvidcore4 += $(call baseisadirs,$(libdir),libxvidcore\.so\.4(\.\d+)*) +SPKG_DESC_CSWlibxvidcore4 += $(DESCRIPTION), libxvidcore.so.4 +RUNTIME_DEP_PKGS_CSWlibxvidcore += CSWlibxvidcore4 + +PACKAGES += CSWlibxvidcore-dev +CATALOGNAME_CSWlibxvidcore-dev = libxvidcore_dev +SPKG_DESC_CSWlibxvidcore-dev += $(DESCRIPTION), development files +PKGFILES_CSWlibxvidcore-dev += /opt/csw/lib/libxvidcore.4.so +PKGFILES_CSWlibxvidcore-dev += $(PKGFILES_DEVEL) + include gar/category.mk configure-custom: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 11:48:25 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 09:48:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18670] csw/mgar/pkg/libxvidcore/trunk/Makefile Message-ID: Revision: 18670 http://gar.svn.sourceforge.net/gar/?rev=18670&view=rev Author: pfelecan Date: 2012-07-09 09:48:25 +0000 (Mon, 09 Jul 2012) Log Message: ----------- libxvidcore/trunk: obsolescence and overriding Modified Paths: -------------- csw/mgar/pkg/libxvidcore/trunk/Makefile Modified: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:27:35 UTC (rev 18669) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:48:25 UTC (rev 18670) @@ -35,12 +35,18 @@ PKGFILES_CSWlibxvidcore4 += $(call baseisadirs,$(libdir),libxvidcore\.so\.4(\.\d+)*) SPKG_DESC_CSWlibxvidcore4 += $(DESCRIPTION), libxvidcore.so.4 RUNTIME_DEP_PKGS_CSWlibxvidcore += CSWlibxvidcore4 +OBSOLETED_BY_CSWlibxvidcore4 = CSWlibxvidcore +CATALOGNAME_CSWlibxvidcore = libxvidcore_stub PACKAGES += CSWlibxvidcore-dev CATALOGNAME_CSWlibxvidcore-dev = libxvidcore_dev SPKG_DESC_CSWlibxvidcore-dev += $(DESCRIPTION), development files PKGFILES_CSWlibxvidcore-dev += /opt/csw/lib/libxvidcore.4.so PKGFILES_CSWlibxvidcore-dev += $(PKGFILES_DEVEL) +OBSOLETED_BY_CSWlibxvidcore-dev = CSWlibxvidcoredevel +CATALOGNAME_CSWlibxvidcore-dev = libxvidcore_devel_stub +ARCHALL_CSWlibxvidcore-dev = 1 +CHECKPKG_OVERRIDES_CSWlibxvidcore-dev += archall-devel-package include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 11:57:37 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 09:57:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[18671] csw/mgar/pkg/libxvidcore/trunk/Makefile Message-ID: Revision: 18671 http://gar.svn.sourceforge.net/gar/?rev=18671&view=rev Author: pfelecan Date: 2012-07-09 09:57:37 +0000 (Mon, 09 Jul 2012) Log Message: ----------- libxvidcore/trunk: corrected typo in development stub's catalog name Modified Paths: -------------- csw/mgar/pkg/libxvidcore/trunk/Makefile Modified: csw/mgar/pkg/libxvidcore/trunk/Makefile =================================================================== --- csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:48:25 UTC (rev 18670) +++ csw/mgar/pkg/libxvidcore/trunk/Makefile 2012-07-09 09:57:37 UTC (rev 18671) @@ -44,7 +44,7 @@ PKGFILES_CSWlibxvidcore-dev += /opt/csw/lib/libxvidcore.4.so PKGFILES_CSWlibxvidcore-dev += $(PKGFILES_DEVEL) OBSOLETED_BY_CSWlibxvidcore-dev = CSWlibxvidcoredevel -CATALOGNAME_CSWlibxvidcore-dev = libxvidcore_devel_stub +CATALOGNAME_CSWlibxvidcoredevel = libxvidcore_devel_stub ARCHALL_CSWlibxvidcore-dev = 1 CHECKPKG_OVERRIDES_CSWlibxvidcore-dev += archall-devel-package 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 Jul 9 13:18:41 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 11:18:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[18672] csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/ Makefile Message-ID: Revision: 18672 http://gar.svn.sourceforge.net/gar/?rev=18672&view=rev Author: bonivart Date: 2012-07-09 11:17:19 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/CGI-Session-Serialize-yaml/trunk: full catalogname Modified Paths: -------------- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile Modified: csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile 2012-07-09 09:57:37 UTC (rev 18671) +++ csw/mgar/pkg/cpan/CGI-Session-Serialize-yaml/trunk/Makefile 2012-07-09 11:17:19 UTC (rev 18672) @@ -14,7 +14,7 @@ DISTFILES += COPYING PACKAGES = CSWpm-cgi-session-serializ-yaml -CATALOGNAME = pm_cgi_session_serializ_yaml +CATALOGNAME = pm_cgi_session_serialize_yaml SPKG_DESC_CSWpm-cgi-session-serializ-yaml = $(DESCRIPTION) ARCHALL = 1 @@ -22,4 +22,6 @@ CONFIGURE_ARGS = +CHECKPKG_OVERRIDES_CSWpm-cgi-session-serializ-yaml += catalogname-does-not-match-pkgname|pkgname=CSWpm-cgi-session-serializ-yaml|catalogname=pm_cgi_session_serialize_yaml|expected-catalogname=pm_cgi_session_serializ_yaml + 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 Jul 9 13:35:30 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 11:35:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[18673] csw/mgar/pkg/cpan/Test-Warn/trunk Message-ID: Revision: 18673 http://gar.svn.sourceforge.net/gar/?rev=18673&view=rev Author: bonivart Date: 2012-07-09 11:35:28 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Test-Warn/trunk: update to 0.24 Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Warn/trunk/Makefile csw/mgar/pkg/cpan/Test-Warn/trunk/checksums Modified: csw/mgar/pkg/cpan/Test-Warn/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Warn/trunk/Makefile 2012-07-09 11:17:19 UTC (rev 18672) +++ csw/mgar/pkg/cpan/Test-Warn/trunk/Makefile 2012-07-09 11:35:28 UTC (rev 18673) @@ -1,5 +1,5 @@ NAME = Test-Warn -VERSION = 0.21 +VERSION = 0.24 CATEGORIES = cpan GARTYPE = v2 AUTHOR = CHORNY @@ -9,14 +9,16 @@ Extension to test methods for warnings endef -MODDIST = $(NAME)-$(VERSION).zip - DISTFILES += COPYING -PACKAGES = CSWpmtestwarn -CATALOGNAME = pm_testwarn +PACKAGES = CSWpm-test-warn +CATALOGNAME = pm_test_warn +SPKG_DESC_CSWpm-test-warn = $(DESCRIPTION) +OBSOLETED_BY_CSWpm-test-warn = CSWpmtestwarn +CATALOGNAME_CSWpmtestwarn = pm_testwarn_stub ARCHALL = 1 -RUNTIME_DEP_PKGS += CSWpmtreedagnode CSWpmsubuplevel +RUNTIME_DEP_PKGS += CSWpmtreedagnode +RUNTIME_DEP_PKGS += CSWpm-sub-uplevel include gar/category.mk Modified: csw/mgar/pkg/cpan/Test-Warn/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Warn/trunk/checksums 2012-07-09 11:17:19 UTC (rev 18672) +++ csw/mgar/pkg/cpan/Test-Warn/trunk/checksums 2012-07-09 11:35:28 UTC (rev 18673) @@ -1,2 +1 @@ -fd21cc7104092c3f45bb062aad59026a COPYING -d33c38d18d2bedac52bfdbaf94c8744d Test-Warn-0.21.zip +a27990b62f8fd0aa290bb617ae0157a5 Test-Warn-0.24.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 Jul 9 13:48:39 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 11:48:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[18674] csw/mgar/pkg/cpan/Test-MockObject/trunk Message-ID: Revision: 18674 http://gar.svn.sourceforge.net/gar/?rev=18674&view=rev Author: bonivart Date: 2012-07-09 11:48:37 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Test-MockObject/trunk: update to 1.20120301 Modified Paths: -------------- csw/mgar/pkg/cpan/Test-MockObject/trunk/Makefile csw/mgar/pkg/cpan/Test-MockObject/trunk/checksums Modified: csw/mgar/pkg/cpan/Test-MockObject/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-MockObject/trunk/Makefile 2012-07-09 11:35:28 UTC (rev 18673) +++ csw/mgar/pkg/cpan/Test-MockObject/trunk/Makefile 2012-07-09 11:48:37 UTC (rev 18674) @@ -1,10 +1,10 @@ NAME = Test-MockObject -VERSION = 1.09 +VERSION = 1.20120301 CATEGORIES = cpan GARTYPE = v2 AUTHOR = CHROMATIC -DESCRIPTION = extension for emulating troublesome interfaces +DESCRIPTION = Extension for emulating troublesome interfaces define BLURB It's a simple program that doesn't use any other modules, and those are easy to test. More often, testing a program completely means faking up input to @@ -12,17 +12,20 @@ supposed to be testing anyway. endef -PACKAGES = CSWpmtstmockobject -CATALOGNAME = pm_tstmockobject +LICENSE = $(FILEDIR)/LICENSE -DEP_PKGS = CSWpmtstexception CSWpmuniversalisa CSWpmuniversalcan +PACKAGES = CSWpm-test-mockobject +CATALOGNAME = pm_test_mockobject +SPKG_DESC_CSWpm-test-mockobject = $(DESCRIPTION) +OBSOLETED_BY_CSWpm-test-mockobject = CSWpmtstmockobject +CATALOGNAME_CSWpmtstmockobject = pm_tstmockobject_stub +RUNTIME_DEP_PKGS += CSWpm-test-exception +RUNTIME_DEP_PKGS += CSWpmuniversalisa +RUNTIME_DEP_PKGS += CSWpmuniversalcan + ARCHALL = 1 -LICENSE = $(FILEDIR)/LICENSE +CONFIGURE_ARGS = -CHECKPKG_OVERRIDES_CSWpmtstmockobject += surplus-dependency|CSWpmtstexception -CHECKPKG_OVERRIDES_CSWpmtstmockobject += surplus-dependency|CSWpmuniversalisa -CHECKPKG_OVERRIDES_CSWpmtstmockobject += surplus-dependency|CSWpmuniversalcan - include gar/category.mk Modified: csw/mgar/pkg/cpan/Test-MockObject/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-MockObject/trunk/checksums 2012-07-09 11:35:28 UTC (rev 18673) +++ csw/mgar/pkg/cpan/Test-MockObject/trunk/checksums 2012-07-09 11:48:37 UTC (rev 18674) @@ -1 +1 @@ -3c9c2842d40fa8c389563c227804d7d8 Test-MockObject-1.09.tar.gz +020ee433827e4e33ffe873eeb3e16048 Test-MockObject-1.20120301.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 Jul 9 14:26:05 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 12:26:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[18675] csw/mgar/pkg/cpan Message-ID: Revision: 18675 http://gar.svn.sourceforge.net/gar/?rev=18675&view=rev Author: bonivart Date: 2012-07-09 12:26:05 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Business-ISBN-Data/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Business-ISBN-Data/ csw/mgar/pkg/cpan/Business-ISBN-Data/Makefile csw/mgar/pkg/cpan/Business-ISBN-Data/branches/ csw/mgar/pkg/cpan/Business-ISBN-Data/tags/ csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/ csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/Makefile csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/checksums csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/files/ Added: csw/mgar/pkg/cpan/Business-ISBN-Data/Makefile =================================================================== --- csw/mgar/pkg/cpan/Business-ISBN-Data/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Business-ISBN-Data/Makefile 2012-07-09 12:26:05 UTC (rev 18675) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Business-ISBN-Data/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/Makefile 2012-07-09 12:26:05 UTC (rev 18675) @@ -0,0 +1,21 @@ +NAME = Business-ISBN-Data +VERSION = 20081208 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = BDFOY + +DESCRIPTION = Data pack for Business::ISBN +define BLURB + Data pack for Business::ISBN +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-business-isbn-data +CATALOGNAME = pm_business_isbn_data +ARCHALL = 1 + +CONFIGURE_ARGS = + +include gar/category.mk + Property changes on: csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Business-ISBN-Data/trunk/checksums 2012-07-09 12:26:05 UTC (rev 18675) @@ -0,0 +1 @@ +e8edb53f04830344e20f61b02b6ed054 Business-ISBN-Data-20081208.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 Jul 9 14:42:24 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 12:42:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[18676] csw/mgar/pkg/cpan Message-ID: Revision: 18676 http://gar.svn.sourceforge.net/gar/?rev=18676&view=rev Author: bonivart Date: 2012-07-09 12:42:24 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Business-ISBN/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Business-ISBN/ csw/mgar/pkg/cpan/Business-ISBN/Makefile csw/mgar/pkg/cpan/Business-ISBN/branches/ csw/mgar/pkg/cpan/Business-ISBN/tags/ csw/mgar/pkg/cpan/Business-ISBN/trunk/ csw/mgar/pkg/cpan/Business-ISBN/trunk/Makefile csw/mgar/pkg/cpan/Business-ISBN/trunk/checksums csw/mgar/pkg/cpan/Business-ISBN/trunk/files/ Added: csw/mgar/pkg/cpan/Business-ISBN/Makefile =================================================================== --- csw/mgar/pkg/cpan/Business-ISBN/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Business-ISBN/Makefile 2012-07-09 12:42:24 UTC (rev 18676) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Business-ISBN/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Business-ISBN/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Business-ISBN/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Business-ISBN/trunk/Makefile 2012-07-09 12:42:24 UTC (rev 18676) @@ -0,0 +1,26 @@ +NAME = Business-ISBN +VERSION = 2.05 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = BDFOY + +DESCRIPTION = Work with International Standard Book Numbers +define BLURB + Work with International Standard Book Numbers +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-business-isbn +CATALOGNAME = pm_business_isbn +ARCHALL = 1 + +#BUILD_DEP_PKGS += CSWpm-business-isbn-data +RUNTIME_DEP_PKGS += CSWpm-business-isbn-data + +CHECKPKG_OVERRIDES_CSWpm-business-isbn += unidentified-dependency|CSWpm-business-isbn-data + +CONFIGURE_ARGS = + +include gar/category.mk + Property changes on: csw/mgar/pkg/cpan/Business-ISBN/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Business-ISBN/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Business-ISBN/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Business-ISBN/trunk/checksums 2012-07-09 12:42:24 UTC (rev 18676) @@ -0,0 +1 @@ +944a2844711fa6ab1b079d8d2ef4cd75 Business-ISBN-2.05.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 14:47:42 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 12:47:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18677] csw/mgar/pkg Message-ID: Revision: 18677 http://gar.svn.sourceforge.net/gar/?rev=18677&view=rev Author: pfelecan Date: 2012-07-09 12:47:42 +0000 (Mon, 09 Jul 2012) Log Message: ----------- kakasi/trunk: first packaging; not ready for release Added Paths: ----------- csw/mgar/pkg/kakasi/ csw/mgar/pkg/kakasi/Makefile csw/mgar/pkg/kakasi/branches/ csw/mgar/pkg/kakasi/tags/ csw/mgar/pkg/kakasi/trunk/ csw/mgar/pkg/kakasi/trunk/Makefile csw/mgar/pkg/kakasi/trunk/checksums csw/mgar/pkg/kakasi/trunk/files/ Added: csw/mgar/pkg/kakasi/Makefile =================================================================== --- csw/mgar/pkg/kakasi/Makefile (rev 0) +++ csw/mgar/pkg/kakasi/Makefile 2012-07-09 12:47:42 UTC (rev 18677) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/kakasi/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/kakasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/kakasi/trunk/Makefile (rev 0) +++ csw/mgar/pkg/kakasi/trunk/Makefile 2012-07-09 12:47:42 UTC (rev 18677) @@ -0,0 +1,23 @@ +# $Id$ + +NAME = kakasi +VERSION = 2.3.4 +GARTYPE = v2 +CATEGORIES = apps + +DESCRIPTION = KAnji KAna Simple Inverter +define BLURB + KAnji KAna Simple Inverter +endef + +MASTER_SITES = http://kakasi.namazu.org/stable/ +DISTFILES = $(DISTNAME).tar.gz + +GARCOMPILER = GNU +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + +# this is private and not available publicly +mydependencies: + $(HOME)/bin/ocswdeplist --package $(NAME) Property changes on: csw/mgar/pkg/kakasi/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/kakasi/trunk/checksums =================================================================== --- csw/mgar/pkg/kakasi/trunk/checksums (rev 0) +++ csw/mgar/pkg/kakasi/trunk/checksums 2012-07-09 12:47:42 UTC (rev 18677) @@ -0,0 +1 @@ +4eff51aafbd56c9635791a20c03efa8f kakasi-2.3.4.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 Jul 9 14:51:52 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 12:51:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18678] csw/mgar/pkg/cpan Message-ID: Revision: 18678 http://gar.svn.sourceforge.net/gar/?rev=18678&view=rev Author: bonivart Date: 2012-07-09 12:51:52 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Authen-CAS-Client/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Authen-CAS-Client/ csw/mgar/pkg/cpan/Authen-CAS-Client/Makefile csw/mgar/pkg/cpan/Authen-CAS-Client/branches/ csw/mgar/pkg/cpan/Authen-CAS-Client/tags/ csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/ csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/Makefile csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/checksums csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/files/ Added: csw/mgar/pkg/cpan/Authen-CAS-Client/Makefile =================================================================== --- csw/mgar/pkg/cpan/Authen-CAS-Client/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Authen-CAS-Client/Makefile 2012-07-09 12:51:52 UTC (rev 18678) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Authen-CAS-Client/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/Makefile 2012-07-09 12:51:52 UTC (rev 18678) @@ -0,0 +1,23 @@ +NAME = Authen-CAS-Client +VERSION = 0.05 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = PRAVUS + +DESCRIPTION = Authentication using JA-SIG's Central Authentication Service +define BLURB + Provides an easy-to-use interface for authentication + using JA-SIG's Central Authentication Service +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-authen-cas-client +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpmxmllibxml + +CONFIGURE_ARGS = + +include gar/category.mk + Property changes on: csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Authen-CAS-Client/trunk/checksums 2012-07-09 12:51:52 UTC (rev 18678) @@ -0,0 +1 @@ +61ef866f63cb72f209017f8f9f0b2c59 Authen-CAS-Client-0.05.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 15:19:22 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 13:19:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18679] csw/mgar/pkg/kakasi/trunk/Makefile Message-ID: Revision: 18679 http://gar.svn.sourceforge.net/gar/?rev=18679&view=rev Author: pfelecan Date: 2012-07-09 13:19:22 +0000 (Mon, 09 Jul 2012) Log Message: ----------- kakasi/trunk: split in sub-packages Modified Paths: -------------- csw/mgar/pkg/kakasi/trunk/Makefile Modified: csw/mgar/pkg/kakasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/kakasi/trunk/Makefile 2012-07-09 12:51:52 UTC (rev 18678) +++ csw/mgar/pkg/kakasi/trunk/Makefile 2012-07-09 13:19:22 UTC (rev 18679) @@ -16,8 +16,35 @@ GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) +PACKAGES += CSWkakasi +CATALOGNAME_CSWkakasi = kakasi +SPKG_DESC_CSWkakasi += $(DESCRIPTION) +RUNTIME_DEP_PKGS_CSWkakasi += CSWlibkakasi2 + +PACKAGES += CSWlibkakasi2 +CATALOGNAME_CSWlibkakasi2 = libkakasi2 +PKGFILES_CSWlibkakasi2 += $(call baseisadirs,$(libdir),libkakasi\.so\.2\.1\.0) +PKGFILES_CSWlibkakasi2 += $(call baseisadirs,$(libdir),libkakasi\.so\.2(\.\d+)*) +PKGFILES_CSWlibkakasi2 += /opt/csw/share/kakasi/.* + +SPKG_DESC_CSWlibkakasi2 += $(DESCRIPTION), libkakasi.so.2 + +PACKAGES += CSWkakasi-dev +CATALOGNAME_CSWkakasi-dev = kakasi_dev +SPKG_DESC_CSWkakasi-dev += $(DESCRIPTION), development files +PKGFILES_CSWkakasi-dev += /opt/csw/lib/libkakasi.so +PKGFILES_CSWkakasi-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWkakasi-dev += CSWlibkakasi2 +CHECKPKG_OVERRIDES_CSWkakasi-dev += surplus-dependency|CSWtetex +ARCHALL_CSWkakasi-dev = 1 + include gar/category.mk +post-install-modulated: + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(mandir)/man1 + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKSRC)/doc/kakasi.1 $(DESTDIR)/$(mandir)/man1 + $(MAKECOOKIE) + # this is private and not available publicly mydependencies: $(HOME)/bin/ocswdeplist --package $(NAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 9 15:38:56 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 09 Jul 2012 13:38:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[18680] csw/mgar/pkg/kakasi/trunk/Makefile Message-ID: Revision: 18680 http://gar.svn.sourceforge.net/gar/?rev=18680&view=rev Author: pfelecan Date: 2012-07-09 13:38:56 +0000 (Mon, 09 Jul 2012) Log Message: ----------- kakasi/trunk: verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/kakasi/trunk/Makefile Modified: csw/mgar/pkg/kakasi/trunk/Makefile =================================================================== --- csw/mgar/pkg/kakasi/trunk/Makefile 2012-07-09 13:19:22 UTC (rev 18679) +++ csw/mgar/pkg/kakasi/trunk/Makefile 2012-07-09 13:38:56 UTC (rev 18680) @@ -19,7 +19,6 @@ PACKAGES += CSWkakasi CATALOGNAME_CSWkakasi = kakasi SPKG_DESC_CSWkakasi += $(DESCRIPTION) -RUNTIME_DEP_PKGS_CSWkakasi += CSWlibkakasi2 PACKAGES += CSWlibkakasi2 CATALOGNAME_CSWlibkakasi2 = libkakasi2 @@ -35,7 +34,8 @@ PKGFILES_CSWkakasi-dev += /opt/csw/lib/libkakasi.so PKGFILES_CSWkakasi-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWkakasi-dev += CSWlibkakasi2 -CHECKPKG_OVERRIDES_CSWkakasi-dev += surplus-dependency|CSWtetex +CHECKPKG_OVERRIDES_CSWkakasi-dev += surplus-dependency|CSWlibkakasi2 +CHECKPKG_OVERRIDES_CSWkakasi-dev += archall-devel-package ARCHALL_CSWkakasi-dev = 1 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 Jul 9 16:15:53 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 14:15:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18681] csw/mgar/pkg/cpan Message-ID: Revision: 18681 http://gar.svn.sourceforge.net/gar/?rev=18681&view=rev Author: bonivart Date: 2012-07-09 14:15:53 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/DateTime-Format-ICal/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-ICal/ csw/mgar/pkg/cpan/DateTime-Format-ICal/Makefile csw/mgar/pkg/cpan/DateTime-Format-ICal/branches/ csw/mgar/pkg/cpan/DateTime-Format-ICal/tags/ csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/ csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/files/ Added: csw/mgar/pkg/cpan/DateTime-Format-ICal/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-ICal/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-ICal/Makefile 2012-07-09 14:15:53 UTC (rev 18681) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/Makefile 2012-07-09 14:15:53 UTC (rev 18681) @@ -0,0 +1,22 @@ +NAME = DateTime-Format-ICal +VERSION = 0.09 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = DROLSKY + +DESCRIPTION = Parse and format iCal datetime and duration strings +define BLURB + Parse and format iCal datetime and duration strings +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-datetime-format-ical +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpmdatetime + +CONFIGURE_ARGS = + +include gar/category.mk + Property changes on: csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-ICal/trunk/checksums 2012-07-09 14:15:53 UTC (rev 18681) @@ -0,0 +1 @@ +17bb64bfb515f2db365ba5bb5a68a143 DateTime-Format-ICal-0.09.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 Jul 9 16:41:49 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 14:41:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[18682] csw/mgar/pkg/cpan Message-ID: Revision: 18682 http://gar.svn.sourceforge.net/gar/?rev=18682&view=rev Author: bonivart Date: 2012-07-09 14:41:49 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Email-Date/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Email-Date/ csw/mgar/pkg/cpan/Email-Date/Makefile csw/mgar/pkg/cpan/Email-Date/branches/ csw/mgar/pkg/cpan/Email-Date/tags/ csw/mgar/pkg/cpan/Email-Date/trunk/ csw/mgar/pkg/cpan/Email-Date/trunk/Makefile csw/mgar/pkg/cpan/Email-Date/trunk/checksums csw/mgar/pkg/cpan/Email-Date/trunk/files/ Added: csw/mgar/pkg/cpan/Email-Date/Makefile =================================================================== --- csw/mgar/pkg/cpan/Email-Date/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Email-Date/Makefile 2012-07-09 14:41:49 UTC (rev 18682) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Email-Date/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Email-Date/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Email-Date/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Email-Date/trunk/Makefile 2012-07-09 14:41:49 UTC (rev 18682) @@ -0,0 +1,24 @@ +NAME = Email-Date +VERSION = 1.103 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = RJBS + +DESCRIPTION = Find and Format Date Headers +define BLURB + Find and Format Date Headers +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-email-date +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-email-abstract + +CONFIGURE_ARGS = + +CHECKPKG_OVERRIDES_CSWpm-email-date += unidentified-dependency|CSWpm-email-abstract + +include gar/category.mk + Property changes on: csw/mgar/pkg/cpan/Email-Date/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Email-Date/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Email-Date/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Email-Date/trunk/checksums 2012-07-09 14:41:49 UTC (rev 18682) @@ -0,0 +1 @@ +c74b5b1d98ce7a92ed387970c461b5b4 Email-Date-1.103.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 Jul 9 16:57:15 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 09 Jul 2012 14:57:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[18683] csw/mgar/pkg/cpan Message-ID: Revision: 18683 http://gar.svn.sourceforge.net/gar/?rev=18683&view=rev Author: bonivart Date: 2012-07-09 14:57:15 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cpan/Email-Abstract/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Email-Abstract/ csw/mgar/pkg/cpan/Email-Abstract/Makefile csw/mgar/pkg/cpan/Email-Abstract/branches/ csw/mgar/pkg/cpan/Email-Abstract/tags/ csw/mgar/pkg/cpan/Email-Abstract/trunk/ csw/mgar/pkg/cpan/Email-Abstract/trunk/Makefile csw/mgar/pkg/cpan/Email-Abstract/trunk/checksums csw/mgar/pkg/cpan/Email-Abstract/trunk/files/ Added: csw/mgar/pkg/cpan/Email-Abstract/Makefile =================================================================== --- csw/mgar/pkg/cpan/Email-Abstract/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Email-Abstract/Makefile 2012-07-09 14:57:15 UTC (rev 18683) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Email-Abstract/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Email-Abstract/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Email-Abstract/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Email-Abstract/trunk/Makefile 2012-07-09 14:57:15 UTC (rev 18683) @@ -0,0 +1,22 @@ +NAME = Email-Abstract +VERSION = 3.004 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = RJBS + +DESCRIPTION = Unified interface to mail representations +define BLURB + Unified interface to mail representations +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-email-abstract + +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-mro-compat + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/Email-Abstract/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Email-Abstract/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Email-Abstract/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Email-Abstract/trunk/checksums 2012-07-09 14:57:15 UTC (rev 18683) @@ -0,0 +1 @@ +f38a937418d2b3c048457f85949348c0 Email-Abstract-3.004.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Mon Jul 9 21:25:40 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 09 Jul 2012 19:25:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18684] csw/mgar/pkg/opencsw-manual/trunk/files/ for-administrators/getting-started.rst Message-ID: Revision: 18684 http://gar.svn.sourceforge.net/gar/?rev=18684&view=rev Author: bdwalton Date: 2012-07-09 19:25:39 +0000 (Mon, 09 Jul 2012) Log Message: ----------- opencsw-manual/trunk: update pki handling instructions Modified Paths: -------------- csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/getting-started.rst Modified: csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/getting-started.rst =================================================================== --- csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/getting-started.rst 2012-07-09 14:57:15 UTC (rev 18683) +++ csw/mgar/pkg/opencsw-manual/trunk/files/for-administrators/getting-started.rst 2012-07-09 19:25:39 UTC (rev 18684) @@ -86,25 +86,25 @@ The catalog is signed with PGP and it is a good idea to set up your system to verify the integrity of the catalog. As the catalog itself contains hashes for all packages in the catalog this ensures you actually install the packages -which were officially released. First you need to install ``gnupg`` (of course +which were officially released. First you need to install ``cswpki`` (of course with pkgutil!):: - pkgutil -y -i gnupg + pkgutil -y -i cswpki Then you need to import the public key:: - root# wget -O - http://www.opencsw.org/security/ | gpg --import - + root# /opt/csw/bin/cswpki --import The current fingerprint looks like this:: - root# gpg --fingerprint board at opencsw.org - pub 1024D/9306CC77 2011-08-31 - Key fingerprint = 4DCE 3C80 AAB2 CAB1 E60C 9A3C 05F4 2D66 9306 CC77 - uid OpenCSW catalog signing - sub 2048g/971EDE93 2011-08-31 +# gpg --homedir=/var/opt/csw/pki/ --fingerprint board at opencsw.org +pub 1024D/9306CC77 2011-08-31 + Key fingerprint = 4DCE 3C80 AAB2 CAB1 E60C 9A3C 05F4 2D66 9306 CC77 +uid OpenCSW catalog signing +sub 2048g/971EDE93 2011-08-31 You may also trust the key once you verified the fingerprint:: - root# /opt/csw/bin/gpg --edit-key board at opencsw.org trust + root# /opt/csw/bin/gpg --homedir=/var/opt/csw/pki --edit-key board at opencsw.org trust Now everything is in place for enabling security in ``pkgutil``. Edit the ``/etc/opt/csw/pkgutil.conf`` and uncomment the two lines with ``use_gpg`` and ``use_md5`` so they look like this:: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Mon Jul 9 21:34:36 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 09 Jul 2012 19:34:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[18685] csw/mgar/pkg Message-ID: Revision: 18685 http://gar.svn.sourceforge.net/gar/?rev=18685&view=rev Author: bdwalton Date: 2012-07-09 19:34:36 +0000 (Mon, 09 Jul 2012) Log Message: ----------- import cswpki from old broken svn checkout Added Paths: ----------- csw/mgar/pkg/cswpki/ csw/mgar/pkg/cswpki/Makefile csw/mgar/pkg/cswpki/branches/ csw/mgar/pkg/cswpki/tags/ csw/mgar/pkg/cswpki/trunk/ csw/mgar/pkg/cswpki/trunk/Makefile csw/mgar/pkg/cswpki/trunk/checksums csw/mgar/pkg/cswpki/trunk/files/ csw/mgar/pkg/cswpki/trunk/files/CSWcswpki.postinstall csw/mgar/pkg/cswpki/trunk/files/csw_catalog_signing_2011-09.asc csw/mgar/pkg/cswpki/trunk/files/csw_legacy_catalog_verification.asc csw/mgar/pkg/cswpki/trunk/files/cswpki csw/mgar/pkg/cswpki/trunk/files/gpl-2.0.txt Added: csw/mgar/pkg/cswpki/Makefile =================================================================== --- csw/mgar/pkg/cswpki/Makefile (rev 0) +++ csw/mgar/pkg/cswpki/Makefile 2012-07-09 19:34:36 UTC (rev 18685) @@ -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/cswpki/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswpki/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cswpki/trunk/Makefile 2012-07-09 19:34:36 UTC (rev 18685) @@ -0,0 +1,45 @@ +# $Id: Makefile 15522 2011-09-04 16:29:44Z bdwalton $ +NAME = cswpki +VERSION = 1.0 +CATEGORIES = utils + +DESCRIPTION = The OpenCSW PKI Collection +define BLURB + A collection of any public keys used by OpenCSW. +endef + +MASTER_SITES = http://www.opencsw.org/ +DISTFILES = CSWcswpki.postinstall gpl-2.0.txt +DISTFILES += cswpki +DISTFILES += csw_legacy_catalog_verification.asc +DISTFILES += csw_catalog_signing_2011-09.asc + +RUNTIME_DEP_PKGS = CSWgnupg + +ARCHALL = 1 + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +CHECKPKG_OVERRIDES_CSWcswpki += surplus-dependency|CSWgnupg + +PROTOTYPE_MODIFIERS = var_pki_perms +PROTOTYPE_FILES_var_pki_perms = /var/opt/csw/.* +PROTOTYPE_PERMS_var_pki_perms = 0700 + +include gar/category.mk + +install-custom: PKIDIR=$(DESTDIR)/etc/opt/csw/pki/ +install-custom: DOC=$(DESTDIR)/$(docdir)/$(NAME)/ +install-custom: BIN=$(DESTDIR)/$(bindir)/ +install-custom: VAR=$(DESTDIR)/var/opt/csw/pki +install-custom: + ( mkdir -p $(PKIDIR) $(DOC) $(BIN) $(VAR); \ + for f in $(filter %.asc,$(DISTFILES)); do \ + cp $(WORKDIR)/$$f $(PKIDIR); \ + done; \ + cp $(WORKDIR)/cswpki $(BIN); \ + cp $(WORKDIR)/gpl-2.0.txt $(DOC)/license; \ + chmod 700 $(VAR) ) \ No newline at end of file Added: csw/mgar/pkg/cswpki/trunk/checksums =================================================================== Added: csw/mgar/pkg/cswpki/trunk/files/CSWcswpki.postinstall =================================================================== --- csw/mgar/pkg/cswpki/trunk/files/CSWcswpki.postinstall (rev 0) +++ csw/mgar/pkg/cswpki/trunk/files/CSWcswpki.postinstall 2012-07-09 19:34:36 UTC (rev 18685) @@ -0,0 +1,29 @@ +#!/bin/sh + +# Source csw.conf, if it exists +if [ -f /opt/csw/etc/csw.conf ] ; then + . /opt/csw/etc/csw.conf +fi +if [ -f /etc/opt/csw/csw.conf ] ; then + . /etc/opt/csw/csw.conf +fi + +if [ "$pki_auto" = "yes" ]; then + chroot ${PKG_INSTALL_ROOT:-/} /opt/csw/bin/cswpki --import --force +else + echo + echo + echo + echo "pki_auto was not set to 'yes' in /etc/opt/csw/csw.conf" + echo "so the OpenCSW GPG keys are not being automatically managed." + echo "eg: echo 'pki_auto=yes' >> /etc/opt/csw/csw.conf" + echo + echo "If this variable had been set, we would have run:" + echo "/opt/csw/bin/cswpki --import --force" + echo + echo "See /opt/csw/bin/cswpki --help for more information on" + echo "handling this manually." + echo + echo + echo +fi Property changes on: csw/mgar/pkg/cswpki/trunk/files/CSWcswpki.postinstall ___________________________________________________________________ Added: svn:executable + * Added: csw/mgar/pkg/cswpki/trunk/files/csw_catalog_signing_2011-09.asc =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/cswpki/trunk/files/csw_catalog_signing_2011-09.asc ___________________________________________________________________ Added: svn:mime-type + application/pgp-keys Added: csw/mgar/pkg/cswpki/trunk/files/csw_legacy_catalog_verification.asc =================================================================== (Binary files differ) Property changes on: csw/mgar/pkg/cswpki/trunk/files/csw_legacy_catalog_verification.asc ___________________________________________________________________ Added: svn:mime-type + application/pgp-keys Added: csw/mgar/pkg/cswpki/trunk/files/cswpki =================================================================== --- csw/mgar/pkg/cswpki/trunk/files/cswpki (rev 0) +++ csw/mgar/pkg/cswpki/trunk/files/cswpki 2012-07-09 19:34:36 UTC (rev 18685) @@ -0,0 +1,76 @@ +#!/bin/bash + +set -e +set -u + +PATH=/opt/csw/bin:$PATH + +# Source csw.conf, if it exists +if [ -f /opt/csw/etc/csw.conf ] ; then + . /opt/csw/etc/csw.conf +fi +if [ -f /etc/opt/csw/csw.conf ] ; then + . /etc/opt/csw/csw.conf +fi + + +function usage() { + cat < + 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 bdwalton at users.sourceforge.net Mon Jul 9 21:36:04 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 09 Jul 2012 19:36:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[18686] csw/mgar/pkg/cswpki/trunk/ Message-ID: Revision: 18686 http://gar.svn.sourceforge.net/gar/?rev=18686&view=rev Author: bdwalton Date: 2012-07-09 19:36:04 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cswpki/trunk: add the svn:ignore property Property Changed: ---------------- csw/mgar/pkg/cswpki/trunk/ Property changes on: csw/mgar/pkg/cswpki/trunk ___________________________________________________________________ Added: svn:ignore + download cookies work This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Mon Jul 9 21:36:50 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 09 Jul 2012 19:36:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[18687] csw/mgar/pkg/cswpki/trunk/files/cswpki Message-ID: Revision: 18687 http://gar.svn.sourceforge.net/gar/?rev=18687&view=rev Author: bdwalton Date: 2012-07-09 19:36:50 +0000 (Mon, 09 Jul 2012) Log Message: ----------- cswpki/trunk: correct typo in cswpki script Modified Paths: -------------- csw/mgar/pkg/cswpki/trunk/files/cswpki Modified: csw/mgar/pkg/cswpki/trunk/files/cswpki =================================================================== --- csw/mgar/pkg/cswpki/trunk/files/cswpki 2012-07-09 19:36:04 UTC (rev 18686) +++ csw/mgar/pkg/cswpki/trunk/files/cswpki 2012-07-09 19:36:50 UTC (rev 18687) @@ -40,7 +40,7 @@ --import) import=yes;; --force) force=yes;; --help) usage; exit 0;; - *) echo "Unknown option '$arg'"; exi t1; + *) echo "Unknown option '$arg'"; exit 1; esac done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From romeotheriault at users.sourceforge.net Tue Jul 10 05:16:15 2012 From: romeotheriault at users.sourceforge.net (romeotheriault at users.sourceforge.net) Date: Tue, 10 Jul 2012 03:16:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[18688] csw/mgar/pkg/lang-python Message-ID: Revision: 18688 http://gar.svn.sourceforge.net/gar/?rev=18688&view=rev Author: romeotheriault Date: 2012-07-10 03:16:12 +0000 (Tue, 10 Jul 2012) Log Message: ----------- lang-python/pyzmq/trunk: Initial commit of pyzmq. Builds successfully on Sol10 but not Sol9. Added Paths: ----------- csw/mgar/pkg/lang-python/pyzmq/ csw/mgar/pkg/lang-python/pyzmq/Makefile csw/mgar/pkg/lang-python/pyzmq/branches/ csw/mgar/pkg/lang-python/pyzmq/tags/ csw/mgar/pkg/lang-python/pyzmq/trunk/ csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile csw/mgar/pkg/lang-python/pyzmq/trunk/checksums csw/mgar/pkg/lang-python/pyzmq/trunk/files/ csw/mgar/pkg/lang-python/pyzmq/trunk/files/0001-These-flags-are-for-gnu-gcc-and-fail-on-suns-cc-comp.patch Added: csw/mgar/pkg/lang-python/pyzmq/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyzmq/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/pyzmq/Makefile 2012-07-10 03:16:12 UTC (rev 18688) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/lang-python/pyzmq/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile 2012-07-10 03:16:12 UTC (rev 18688) @@ -0,0 +1,32 @@ +NAME = pyzmq +VERSION = 2.2.0 +GARTYPE = v2 +CATEGORIES = python + +DESCRIPTION = PyZMQ: Python bindings for 0MQ +define BLURB + This package contains Python bindings for 0MQ. 0MQ is a lightweight and fast messaging implementation. +endef + +MASTER_SITES = https://github.com/zeromq/pyzmq/downloads/ +DISTFILES = $(DISTNAME).tar.gz + +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 + +CHECKPKG_OVERRIDES_CSWpy-pyzmq += pkginfo-opencsw-repository-uncommitted + +BUILD_DEP_PKGS += CSWlibzmq1-dev +RUNTIME_DEP_PKGS_CSWpy-pyzmq += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWpy-pyzmq += CSWlibzmq1 + +PATCHFILES += 0001-These-flags-are-for-gnu-gcc-and-fail-on-suns-cc-comp.patch + +#GARCOMPILER = GCC4 + +CONFIGURE_ARGS += $(DIRPATHS) + +BUILD_ARGS += --zmq=/opt/csw + +TEST_SCRIPTS = + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/lang-python/pyzmq/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pyzmq/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/pyzmq/trunk/checksums 2012-07-10 03:16:12 UTC (rev 18688) @@ -0,0 +1 @@ +100b73973d6fb235b8da6adea403566e pyzmq-2.2.0.tar.gz Added: csw/mgar/pkg/lang-python/pyzmq/trunk/files/0001-These-flags-are-for-gnu-gcc-and-fail-on-suns-cc-comp.patch =================================================================== --- csw/mgar/pkg/lang-python/pyzmq/trunk/files/0001-These-flags-are-for-gnu-gcc-and-fail-on-suns-cc-comp.patch (rev 0) +++ csw/mgar/pkg/lang-python/pyzmq/trunk/files/0001-These-flags-are-for-gnu-gcc-and-fail-on-suns-cc-comp.patch 2012-07-10 03:16:12 UTC (rev 18688) @@ -0,0 +1,25 @@ +From e06184b1e803f0482a07fb77234417171fe3c9b6 Mon Sep 17 00:00:00 2001 +From: Romeo Theriault +Date: Tue, 10 Jul 2012 04:12:12 +0200 +Subject: [PATCH] These flags are for gnu gcc and fail on suns cc compiler. + +--- + setup.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/setup.py b/setup.py +index 7c04d83..14e0a3c 100755 +--- a/setup.py ++++ b/setup.py +@@ -150,7 +150,7 @@ def settings_from_prefix(zmq=None): + for warning in ('unused-function', 'strict-aliasing'): + extra_flags.append('-Wno-'+warning) + +- settings['extra_compile_args'] = extra_flags ++ settings['extra_compile_args'] = "" + + # include internal directories + settings['include_dirs'] += [pjoin('zmq', sub) for sub in ('utils','core','devices')] +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From romeotheriault at users.sourceforge.net Tue Jul 10 05:48:09 2012 From: romeotheriault at users.sourceforge.net (romeotheriault at users.sourceforge.net) Date: Tue, 10 Jul 2012 03:48:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[18689] csw/mgar/pkg/lang-python/pyzmq/trunk Message-ID: Revision: 18689 http://gar.svn.sourceforge.net/gar/?rev=18689&view=rev Author: romeotheriault Date: 2012-07-10 03:48:09 +0000 (Tue, 10 Jul 2012) Log Message: ----------- lang-python/pyzmq/trunk: Patch zmq_compat.h to use inttypes.h for solaris Modified Paths: -------------- csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/lang-python/pyzmq/trunk/files/0002-Include-inttypes-so-builds-on-solaris-9.patch Modified: csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile 2012-07-10 03:16:12 UTC (rev 18688) +++ csw/mgar/pkg/lang-python/pyzmq/trunk/Makefile 2012-07-10 03:48:09 UTC (rev 18689) @@ -11,18 +11,15 @@ MASTER_SITES = https://github.com/zeromq/pyzmq/downloads/ DISTFILES = $(DISTNAME).tar.gz -PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 +#CHECKPKG_OVERRIDES_CSWpy-pyzmq += pkginfo-opencsw-repository-uncommitted -CHECKPKG_OVERRIDES_CSWpy-pyzmq += pkginfo-opencsw-repository-uncommitted - BUILD_DEP_PKGS += CSWlibzmq1-dev RUNTIME_DEP_PKGS_CSWpy-pyzmq += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-pyzmq += CSWlibzmq1 PATCHFILES += 0001-These-flags-are-for-gnu-gcc-and-fail-on-suns-cc-comp.patch +PATCHFILES += 0002-Include-inttypes-so-builds-on-solaris-9.patch -#GARCOMPILER = GCC4 - CONFIGURE_ARGS += $(DIRPATHS) BUILD_ARGS += --zmq=/opt/csw Added: csw/mgar/pkg/lang-python/pyzmq/trunk/files/0002-Include-inttypes-so-builds-on-solaris-9.patch =================================================================== --- csw/mgar/pkg/lang-python/pyzmq/trunk/files/0002-Include-inttypes-so-builds-on-solaris-9.patch (rev 0) +++ csw/mgar/pkg/lang-python/pyzmq/trunk/files/0002-Include-inttypes-so-builds-on-solaris-9.patch 2012-07-10 03:48:09 UTC (rev 18689) @@ -0,0 +1,27 @@ +From 64e5cb62c43bedf150987ee308ebbad432860a54 Mon Sep 17 00:00:00 2001 +From: Romeo Theriault +Date: Tue, 10 Jul 2012 05:35:53 +0200 +Subject: [PATCH] Include inttypes so builds on solaris 9 + +--- + zmq/utils/zmq_compat.h | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/zmq/utils/zmq_compat.h b/zmq/utils/zmq_compat.h +index 388a569..44953fa 100644 +--- a/zmq/utils/zmq_compat.h ++++ b/zmq/utils/zmq_compat.h +@@ -7,6 +7,10 @@ + + #if defined(_MSC_VER) + #define pyzmq_int64_t __int64 ++#endif ++#if defined(__sun) || defined(__sun__) ++#include ++#define pyzmq_int64_t int64_t + #else + #include + #define pyzmq_int64_t int64_t +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 10 09:06:26 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 10 Jul 2012 07:06:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[18690] csw/mgar/pkg/namazu Message-ID: Revision: 18690 http://gar.svn.sourceforge.net/gar/?rev=18690&view=rev Author: pfelecan Date: 2012-07-10 07:06:26 +0000 (Tue, 10 Jul 2012) Log Message: ----------- namazu/trunk: - migrated from a private recipe to a GAR based recipe; not ready for release. - removed an earlier tentative to create a GAR recipe Modified Paths: -------------- csw/mgar/pkg/namazu/Makefile csw/mgar/pkg/namazu/trunk/Makefile csw/mgar/pkg/namazu/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/namazu/trunk/files/CSWnamazu.depend csw/mgar/pkg/namazu/trunk/files/CSWnamazu.gspec csw/mgar/pkg/namazu/trunk/files/CSWnamazu.prototype Modified: csw/mgar/pkg/namazu/Makefile =================================================================== --- csw/mgar/pkg/namazu/Makefile 2012-07-10 03:48:09 UTC (rev 18689) +++ csw/mgar/pkg/namazu/Makefile 2012-07-10 07:06:26 UTC (rev 18690) @@ -1,15 +1,2 @@ -# 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) + $(MAKE) -C trunk $* Modified: csw/mgar/pkg/namazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 03:48:09 UTC (rev 18689) +++ csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 07:06:26 UTC (rev 18690) @@ -1,22 +1,55 @@ +# $Id$ + NAME = namazu -VERSION = 2.0.14 -GARTYPE = v1 -CATEGORIES = utils +VERSION = 2.0.21 +GARTYPE = v2 +CATEGORIES = apps -DESCRIPTION = full-text search engine +DESCRIPTION = A Full-Text Search Engine define BLURB - Namazu is a full-text search engine intended for easy use. Not only does it - work as a small or medium scale Web search engine, but also as a personal - search system for email or other files. + Namazu is a full-text search engine intended for easy use. Not only + does it work as a small or medium scale Web search engine, but also + as a personal search system for email or other files. + + (The Japanese word 'Namazu' means 'catfish' in English.) endef -MASTER_SITES = http://www.namazu.org/stable/ +MASTER_SITES = http://namazu.org/stable/ DISTFILES = $(DISTNAME).tar.gz -DISTFILES += CSWnamazu.gspec CSWnamazu.depend CSWnamazu.prototype -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz +GARCOMPILER = GNU -CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-tknamazu +BUILD_DEP_PKGS += CSWkakasi-dev +BUILD_DEP_PKGS += CSWlibiconv-dev +BUILD_DEP_PKGS += CSWlynx +BUILD_DEP_PKGS += CSWpmfilemmagic + +TEST_SCRIPTS = custom + +RUNTIME_DEP_PKGS += CSWkakasi +RUNTIME_DEP_PKGS += CSWlibintl8 +RUNTIME_DEP_PKGS += CSWlynx +RUNTIME_DEP_PKGS += CSWperl +RUNTIME_DEP_PKGS += CSWpmfilemmagic + include gar/category.mk + +# one of the tests fails: mknmz-11; decided to not block on it... +test-custom: + -$(MAKE) -k -C $(WORKSRC) check + $(MAKECOOKIE) + +post-install-modulated: + ginstall --directory $(DESTDIR)/$(docdir)/$(NAME) + mv $(DESTDIR)/$(datadir)/$(NAME)/doc/* $(DESTDIR)/$(docdir)/$(NAME) + rmdir $(DESTDIR)/$(datadir)/$(NAME)/doc + mv $(DESTDIR)/$(datadir)/$(NAME)/etc/* $(DESTDIR)/$(docdir)/$(NAME) + rmdir $(DESTDIR)/$(datadir)/$(NAME)/etc + $(MAKECOOKIE) + +# this is private and not available publicly +mydependencies: + $(HOME)/bin/ocswdeplist --package $(NAME) Modified: csw/mgar/pkg/namazu/trunk/checksums =================================================================== --- csw/mgar/pkg/namazu/trunk/checksums 2012-07-10 03:48:09 UTC (rev 18689) +++ csw/mgar/pkg/namazu/trunk/checksums 2012-07-10 07:06:26 UTC (rev 18690) @@ -1,4 +1 @@ -17d7253ec58241a95c0b80d469be63b2 download/namazu-2.0.14.tar.gz -e6de2d3c3c648c9a4d6ee87e7d416276 download/CSWnamazu.gspec -c7d0f07c5c4b7de32be627ccf573c009 download/CSWnamazu.depend -b79943a36b0b97b24a09c7ffc4538c3c download/CSWnamazu.prototype +8865d912a3de9c94f5ce01d0de5ccad9 namazu-2.0.21.tar.gz Deleted: csw/mgar/pkg/namazu/trunk/files/CSWnamazu.depend =================================================================== --- csw/mgar/pkg/namazu/trunk/files/CSWnamazu.depend 2012-07-10 03:48:09 UTC (rev 18689) +++ csw/mgar/pkg/namazu/trunk/files/CSWnamazu.depend 2012-07-10 07:06:26 UTC (rev 18690) @@ -1,2 +0,0 @@ -P CSWperl perl - A high-level, general-purpose programming language -P CSWpmfilemmagic pm_filemmagic - Guess file type Deleted: csw/mgar/pkg/namazu/trunk/files/CSWnamazu.gspec =================================================================== --- csw/mgar/pkg/namazu/trunk/files/CSWnamazu.gspec 2012-07-10 03:48:09 UTC (rev 18689) +++ csw/mgar/pkg/namazu/trunk/files/CSWnamazu.gspec 2012-07-10 07:06:26 UTC (rev 18690) @@ -1,4 +0,0 @@ -%var bitname namazu -%var pkgname CSWnamazu -%include url file://%{PKGLIB}/csw_standard.gspec -%copyright url file://%{WORKSRC}/COPYING Deleted: csw/mgar/pkg/namazu/trunk/files/CSWnamazu.prototype =================================================================== --- csw/mgar/pkg/namazu/trunk/files/CSWnamazu.prototype 2012-07-10 03:48:09 UTC (rev 18689) +++ csw/mgar/pkg/namazu/trunk/files/CSWnamazu.prototype 2012-07-10 07:06:26 UTC (rev 18690) @@ -1,170 +0,0 @@ -d none /opt/csw/bin 0755 root bin -f none /opt/csw/bin/adnmz 0755 root bin -f none /opt/csw/bin/bnamazu 0755 root bin -f none /opt/csw/bin/gcnmz 0755 root bin -f none /opt/csw/bin/kwnmz 0755 root bin -f none /opt/csw/bin/lnnmz 0755 root bin -f none /opt/csw/bin/mailutime 0755 root bin -f none /opt/csw/bin/mknmz 0755 root bin -f none /opt/csw/bin/namazu 0755 root bin -f none /opt/csw/bin/nmz-config 0755 root bin -f none /opt/csw/bin/nmzgrep 0755 root bin -f none /opt/csw/bin/nmzmerge 0755 root bin -f none /opt/csw/bin/rfnmz 0755 root bin -f none /opt/csw/bin/vfnmz 0755 root bin -d none /opt/csw/etc 0755 root bin -d none /opt/csw/etc/namazu 0755 root bin -f none /opt/csw/etc/namazu/mknmzrc-sample 0644 root bin -f none /opt/csw/etc/namazu/namazurc-sample 0644 root bin -d none /opt/csw/include 0755 root bin -d none /opt/csw/include/namazu 0755 root bin -f none /opt/csw/include/namazu/codeconv.h 0644 root bin -f none /opt/csw/include/namazu/field.h 0644 root bin -f none /opt/csw/include/namazu/hlist.h 0644 root bin -f none /opt/csw/include/namazu/i18n.h 0644 root bin -f none /opt/csw/include/namazu/idxname.h 0644 root bin -f none /opt/csw/include/namazu/l10n-ja.h 0644 root bin -f none /opt/csw/include/namazu/libnamazu.h 0644 root bin -f none /opt/csw/include/namazu/parser.h 0644 root bin -f none /opt/csw/include/namazu/query.h 0644 root bin -f none /opt/csw/include/namazu/re.h 0644 root bin -f none /opt/csw/include/namazu/regex.h 0644 root bin -f none /opt/csw/include/namazu/score.h 0644 root bin -f none /opt/csw/include/namazu/search.h 0644 root bin -f none /opt/csw/include/namazu/util.h 0644 root bin -f none /opt/csw/include/namazu/var.h 0644 root bin -f none /opt/csw/include/namazu/wakati.h 0644 root bin -d none /opt/csw/lib 0755 root bin -f none /opt/csw/lib/libnmz.a 0644 root bin -f none /opt/csw/lib/libnmz.la 0755 root bin -f none /opt/csw/lib/libnmz.so.7.0.0 0755 root bin -s none /opt/csw/lib/libnmz.so.7=libnmz.so.7.0.0 root bin -s none /opt/csw/lib/libnmz.so=libnmz.so.7.0.0 root bin -d none /opt/csw/libexec 0755 root bin -f none /opt/csw/libexec/namazu.cgi 0755 root bin -d none /opt/csw/share 0755 root bin -d none /opt/csw/share/locale 0755 root bin -d none /opt/csw/share/locale/es 0755 root bin -d none /opt/csw/share/locale/es/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/es/LC_MESSAGES/namazu.mo 0644 root bin -d none /opt/csw/share/locale/fr 0755 root bin -d none /opt/csw/share/locale/fr/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/fr/LC_MESSAGES/namazu.mo 0644 root bin -d none /opt/csw/share/locale/ja 0755 root bin -d none /opt/csw/share/locale/ja/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/ja/LC_MESSAGES/namazu.mo 0644 root bin -d none /opt/csw/share/locale/ja_JP.SJIS 0755 root bin -d none /opt/csw/share/locale/ja_JP.SJIS/LC_MESSAGES 0755 root bin -f none /opt/csw/share/locale/ja_JP.SJIS/LC_MESSAGES/namazu.mo 0644 root bin -d none /opt/csw/share/man 0755 root bin -d none /opt/csw/share/man/man1 0755 root bin -f none /opt/csw/share/man/man1/mknmz.1 0644 root bin -f none /opt/csw/share/man/man1/namazu.1 0644 root bin -d none /opt/csw/share/namazu 0755 root bin -d none /opt/csw/share/namazu/doc 0755 root bin -d none /opt/csw/share/namazu/doc/en 0755 root bin -f none /opt/csw/share/namazu/doc/en/manual.html 0644 root bin -f none /opt/csw/share/namazu/doc/en/nmz.html 0644 root bin -f none /opt/csw/share/namazu/doc/en/tips.html 0644 root bin -f none /opt/csw/share/namazu/doc/en/tutorial.html 0644 root bin -d none /opt/csw/share/namazu/doc/ja 0755 root bin -f none /opt/csw/share/namazu/doc/ja/manual.html 0644 root bin -f none /opt/csw/share/namazu/doc/ja/nmz.html 0644 root bin -f none /opt/csw/share/namazu/doc/ja/tips.html 0644 root bin -f none /opt/csw/share/namazu/doc/ja/tutorial.html 0644 root bin -f none /opt/csw/share/namazu/doc/namazu.css 0644 root bin -d none /opt/csw/share/namazu/etc 0755 root bin -f none /opt/csw/share/namazu/etc/AUTHORS 0644 root bin -f none /opt/csw/share/namazu/etc/COPYING 0644 root bin -f none /opt/csw/share/namazu/etc/CREDITS 0644 root bin -f none /opt/csw/share/namazu/etc/ChangeLog.1 0644 root bin -f none /opt/csw/share/namazu/etc/ChangeLog 0644 root bin -f none /opt/csw/share/namazu/etc/HACKING-ja 0644 root bin -f none /opt/csw/share/namazu/etc/HACKING 0644 root bin -f none /opt/csw/share/namazu/etc/INSTALL-ja 0644 root bin -f none /opt/csw/share/namazu/etc/INSTALL 0644 root bin -f none /opt/csw/share/namazu/etc/NEWS 0644 root bin -f none /opt/csw/share/namazu/etc/README-es 0644 root bin -f none /opt/csw/share/namazu/etc/README-ja 0644 root bin -f none /opt/csw/share/namazu/etc/README 0644 root bin -f none /opt/csw/share/namazu/etc/THANKS 0644 root bin -f none /opt/csw/share/namazu/etc/TODO 0644 root bin -f none /opt/csw/share/namazu/etc/namazu.png 0644 root bin -d none /opt/csw/share/namazu/filter 0755 root bin -f none /opt/csw/share/namazu/filter/apachecache.pl 0644 root bin -f none /opt/csw/share/namazu/filter/bzip2.pl 0644 root bin -f none /opt/csw/share/namazu/filter/compress.pl 0644 root bin -f none /opt/csw/share/namazu/filter/deb.pl 0644 root bin -f none /opt/csw/share/namazu/filter/dvi.pl 0644 root bin -f none /opt/csw/share/namazu/filter/excel.pl 0644 root bin -f none /opt/csw/share/namazu/filter/gzip.pl 0644 root bin -f none /opt/csw/share/namazu/filter/hdml.pl 0644 root bin -f none /opt/csw/share/namazu/filter/hnf.pl 0644 root bin -f none /opt/csw/share/namazu/filter/html.pl 0644 root bin -f none /opt/csw/share/namazu/filter/macbinary.pl 0644 root bin -f none /opt/csw/share/namazu/filter/mailnews.pl 0644 root bin -f none /opt/csw/share/namazu/filter/man.pl 0644 root bin -f none /opt/csw/share/namazu/filter/mhonarc.pl 0644 root bin -f none /opt/csw/share/namazu/filter/mp3.pl 0644 root bin -f none /opt/csw/share/namazu/filter/msword.pl 0644 root bin -f none /opt/csw/share/namazu/filter/ooo.pl 0644 root bin -f none /opt/csw/share/namazu/filter/pdf.pl 0644 root bin -f none /opt/csw/share/namazu/filter/postscript.pl 0644 root bin -f none /opt/csw/share/namazu/filter/powerpoint.pl 0644 root bin -f none /opt/csw/share/namazu/filter/rfc.pl 0644 root bin -f none /opt/csw/share/namazu/filter/rpm.pl 0644 root bin -f none /opt/csw/share/namazu/filter/rtf.pl 0644 root bin -f none /opt/csw/share/namazu/filter/taro.pl 0644 root bin -f none /opt/csw/share/namazu/filter/taro56.pl 0644 root bin -f none /opt/csw/share/namazu/filter/taro7_10.pl 0644 root bin -f none /opt/csw/share/namazu/filter/tex.pl 0644 root bin -d none /opt/csw/share/namazu/pl 0755 root bin -f none /opt/csw/share/namazu/pl/codeconv.pl 0644 root bin -f none /opt/csw/share/namazu/pl/conf.pl 0644 root bin -f none /opt/csw/share/namazu/pl/gettext.pl 0644 root bin -f none /opt/csw/share/namazu/pl/gfilter.pl 0644 root bin -f none /opt/csw/share/namazu/pl/htmlsplit.pl 0644 root bin -f none /opt/csw/share/namazu/pl/nmzidx.pl 0644 root bin -f none /opt/csw/share/namazu/pl/seed.pl 0644 root bin -f none /opt/csw/share/namazu/pl/usage.pl 0644 root bin -f none /opt/csw/share/namazu/pl/util.pl 0644 root bin -f none /opt/csw/share/namazu/pl/var.pl 0644 root bin -f none /opt/csw/share/namazu/pl/wakati.pl 0644 root bin -d none /opt/csw/share/namazu/template 0755 root bin -f none /opt/csw/share/namazu/template/NMZ.body.es 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.body.fr 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.body.ja 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.body.pl 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.body 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.foot.de 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.foot.es 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.foot.fr 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.foot.ja 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.foot.pl 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.foot 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.head.de 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.head.es 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.head.fr 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.head.ja 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.head.pl 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.head 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.normal.de 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.normal.es 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.normal.fr 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.normal.ja 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.normal.pl 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.normal 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.short.de 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.short.es 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.short.fr 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.short.ja 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.short.pl 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.result.short 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.tips.es 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.tips.fr 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.tips.ja 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.tips.pl 0644 root bin -f none /opt/csw/share/namazu/template/NMZ.tips 0644 root bin -d none /opt/csw/var 0755 root bin -d none /opt/csw/var/namazu 0755 root bin -d none /opt/csw/var/namazu/index 0755 root bin This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 10 09:14:22 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 10 Jul 2012 07:14:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18691] csw/mgar/pkg/namazu/trunk/Makefile Message-ID: Revision: 18691 http://gar.svn.sourceforge.net/gar/?rev=18691&view=rev Author: pfelecan Date: 2012-07-10 07:14:21 +0000 (Tue, 10 Jul 2012) Log Message: ----------- namazu/trunk: corrected dependency on File:MMagic Perl module Modified Paths: -------------- csw/mgar/pkg/namazu/trunk/Makefile Modified: csw/mgar/pkg/namazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 07:06:26 UTC (rev 18690) +++ csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 07:14:21 UTC (rev 18691) @@ -25,7 +25,7 @@ BUILD_DEP_PKGS += CSWkakasi-dev BUILD_DEP_PKGS += CSWlibiconv-dev BUILD_DEP_PKGS += CSWlynx -BUILD_DEP_PKGS += CSWpmfilemmagic +BUILD_DEP_PKGS += CSWpm-file-mmagic TEST_SCRIPTS = custom @@ -33,7 +33,7 @@ RUNTIME_DEP_PKGS += CSWlibintl8 RUNTIME_DEP_PKGS += CSWlynx RUNTIME_DEP_PKGS += CSWperl -RUNTIME_DEP_PKGS += CSWpmfilemmagic +RUNTIME_DEP_PKGS += CSWpm-file-mmagic include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 10 11:57:53 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 10 Jul 2012 09:57:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18692] csw/mgar/pkg/namazu/trunk Message-ID: Revision: 18692 http://gar.svn.sourceforge.net/gar/?rev=18692&view=rev Author: pfelecan Date: 2012-07-10 09:57:53 +0000 (Tue, 10 Jul 2012) Log Message: ----------- namazu/trunk: verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/namazu/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/namazu/trunk/files/0001-Adapt-to-OpenCSW-environment.patch Modified: csw/mgar/pkg/namazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 07:14:21 UTC (rev 18691) +++ csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 09:57:53 UTC (rev 18692) @@ -14,27 +14,73 @@ (The Japanese word 'Namazu' means 'catfish' in English.) endef -MASTER_SITES = http://namazu.org/stable/ -DISTFILES = $(DISTNAME).tar.gz +MASTER_SITES = http://namazu.org/stable/ +DISTFILES = $(DISTNAME).tar.gz +PATCHFILES += 0001-Adapt-to-OpenCSW-environment.patch GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-tknamazu +CONFIGURE_ARGS += --with-indexdir=$(localstatedir)/$(NAME)/index BUILD_DEP_PKGS += CSWkakasi-dev BUILD_DEP_PKGS += CSWlibiconv-dev BUILD_DEP_PKGS += CSWlynx BUILD_DEP_PKGS += CSWpm-file-mmagic +BUILD_DEP_PKGS += CSWemacs +BUILD_DEP_PKGS += CSWtcl TEST_SCRIPTS = custom -RUNTIME_DEP_PKGS += CSWkakasi -RUNTIME_DEP_PKGS += CSWlibintl8 -RUNTIME_DEP_PKGS += CSWlynx -RUNTIME_DEP_PKGS += CSWperl -RUNTIME_DEP_PKGS += CSWpm-file-mmagic +PACKAGES += CSWnamazu +CATALOGNAME_CSWnamazu = namazu +SPKG_DESC_CSWnamazu = $(DESCRIPTION) +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/tknamazu/tknamazu.hlp.ja_JP.SJIS +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/tknamazu/tknamazu.hlp.ja +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/tknamazu/tknamazu.hlp.en +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/ChangeLog +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/INSTALL-ja +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/INSTALL +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/ja/manual.html +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/ja/tutorial.html +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/en/manual.html +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/opt/csw/share/doc/namazu/en/tutorial.html +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/local|root/etc/opt/csw/namazu/namazurc-sample +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/bin/tknamazu +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/tknamazu/tknamazurc +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/tknamazu/tknamazu.hlp.ja_JP.SJIS +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/tknamazu/tknamazu.hlp.ja +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/tknamazu/tknamazu.hlp.en +CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/doc/namazu/ChangeLog +RUNTIME_DEP_PKGS_CSWnamazu += CSWkakasi +RUNTIME_DEP_PKGS_CSWnamazu += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWnamazu += CSWlynx +RUNTIME_DEP_PKGS_CSWnamazu += CSWperl +RUNTIME_DEP_PKGS_CSWnamazu += CSWpm-file-mmagic +RUNTIME_DEP_PKGS_CSWnamazu += CSWtcl +RUNTIME_DEP_PKGS_CSWnamazu += CSWlibnmz7 +CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWlibmz7 +CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWkakasi +CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWlynx +CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWpm-file-mmagic +PACKAGES += CSWlibnmz7 +CATALOGNAME_CSWlibnmz7 = libnmz7 +PKGFILES_CSWlibnmz7 += $(call baseisadirs,$(libdir),libnmz\.so\.7\.1\.3) +PKGFILES_CSWlibnmz7 += $(call baseisadirs,$(libdir),libnmz\.so\.7(\.\d+)*) +SPKG_DESC_CSWlibnmz7 += $(DESCRIPTION), libnmz.so.7 + +PACKAGES += CSWnamazu-dev +CATALOGNAME_CSWnamazu-dev = namazu_dev +SPKG_DESC_CSWnamazu-dev += $(DESCRIPTION), development files +PKGFILES_CSWnamazu-dev += /opt/csw/lib/libnmz.so +PKGFILES_CSWnamazu-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWnamazu-dev += CSWlibnmz7 +CHECKPKG_OVERRIDES_CSWnamazu-dev += surplus-dependency|CSWlibmz7 +ARCHALL__CSWnamazu-dev = 1 +CHECKPKG_OVERRIDES_CSWnamazu-dev += archall-devel-package + include gar/category.mk # one of the tests fails: mknmz-11; decided to not block on it... @@ -42,12 +88,16 @@ -$(MAKE) -k -C $(WORKSRC) check $(MAKECOOKIE) +post-install-modulated: errdocdir = $(DESTDIR)/$(datadir)/$(NAME) +post-install-modulated: errdocdir1 = $(errdocdir)/doc +post-install-modulated: errdocdir2 = $(errdocdir)/etc +post-install-modulated: pkgdocdir = $(DESTDIR)/$(docdir)/$(NAME) post-install-modulated: - ginstall --directory $(DESTDIR)/$(docdir)/$(NAME) - mv $(DESTDIR)/$(datadir)/$(NAME)/doc/* $(DESTDIR)/$(docdir)/$(NAME) - rmdir $(DESTDIR)/$(datadir)/$(NAME)/doc - mv $(DESTDIR)/$(datadir)/$(NAME)/etc/* $(DESTDIR)/$(docdir)/$(NAME) - rmdir $(DESTDIR)/$(datadir)/$(NAME)/etc + ginstall --directory $(pkgdocdir) + mv $(errdocdir1)/* $(pkgdocdir) + rmdir $(errdocdir1) + mv $(errdocdir2)/* $(pkgdocdir) + rmdir $(errdocdir2) $(MAKECOOKIE) # this is private and not available publicly Added: csw/mgar/pkg/namazu/trunk/files/0001-Adapt-to-OpenCSW-environment.patch =================================================================== --- csw/mgar/pkg/namazu/trunk/files/0001-Adapt-to-OpenCSW-environment.patch (rev 0) +++ csw/mgar/pkg/namazu/trunk/files/0001-Adapt-to-OpenCSW-environment.patch 2012-07-10 09:57:53 UTC (rev 18692) @@ -0,0 +1,56 @@ +From 5299e0f46150b59b8deb0f1d2b0271df059e9c32 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 10 Jul 2012 11:46:42 +0200 +Subject: [PATCH] Adapt to OpenCSW environment + +--- + tknamazu/tknamazu.tcl.in | 2 +- + tknamazu/tknamazurc.in | 8 ++++---- + 2 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/tknamazu/tknamazu.tcl.in b/tknamazu/tknamazu.tcl.in +index 2656392..9321ee6 100644 +--- a/tknamazu/tknamazu.tcl.in ++++ b/tknamazu/tknamazu.tcl.in +@@ -41,7 +41,7 @@ proc SetDefaultResources {} { + set conf(UNCOMPRESS) {@ZCAT@} + set conf(MANPAGE) {@GROFF@} + set conf(MANPAGEFILTER) {} +- set conf(MANPATH) {/usr/local/man /usr/share/man /usr/bin/man /usr/man /usr/X11R6/man /usr/openwin/man} ++ set conf(MANPATH) {/opt/csw/share/man /usr/share/man /usr/bin/man /usr/man /usr/X11R6/man /usr/openwin/man} + set conf(GNUINFO) {@INFO@} + set conf(GNUINFOFILTER) {} + set conf(GNUINFOTMP) {/tmp/.gnuinfotmp} +diff --git a/tknamazu/tknamazurc.in b/tknamazu/tknamazurc.in +index 74d3265..c5eae1f 100644 +--- a/tknamazu/tknamazurc.in ++++ b/tknamazu/tknamazurc.in +@@ -35,7 +35,7 @@ MANPAGEFILTER + + # manual \xA4?\x{1E4E64}\xEB path \xA4??\xBC\xA5\xB9\xA4?\xE8\xC0??\xC6\xCE\xF3\xB5??\xAF\xA4\xC0\xA4\xB5\xA4\xA4\xA1\xA3 + # \xA4\xC1\xA4???\xB8?\xA4??\xBF path \xA4\xAB\xA4\xE9\xBD\xE7\xC8??\xA1\xBA\x{1E4D64}\xEC\xA4?\xB9\xA1\xA3 +-MANPATH /usr/local/man /usr/share/man /usr/bin/man /usr/man /usr/X11R6/man /usr/openwin/man ++MANPATH /opt/csw/share/man /usr/share/man /usr/bin/man /usr/man /usr/X11R6/man /usr/openwin/man + + # info \xA4?\xA2\xA4\xEB\xBD\xEA\xA4\xF2 full path \xA4?\xD8\xC4?\xA4?\xAF\xA4\xC0\xA4\xB5\xA4\xA4\xA1\xA3 + GNUINFO @INFO@ +@@ -109,13 +109,13 @@ THOUGHTFULFIND + # NMZ.* \xA4?\xA2\xA4\xEB\xBE\xEC\xBD\xEA\xA4\xF2 Index Selecter \xA4\xCB\xC0\xDF\xC4?\xA4?\xB9\xA1\xA3 + # \xB0\xEC\xA4\xC4\xCC?\xCF title \xA4?\xBD\xA4?\xE5\xA4\xED\xA4\xCB\xA4?\xE8\xC0??\xC6 NMZ.i \xA4\xCE directory \xA4\xF2\xCE\xF3\xB5?\xC6 + # \xB2\xBC\xA4\xB5\xA4\xA4\xA1\xA3 +-INDEXES1 main /usr/local/var/namazu/index +-INDEXES2 hogehoge /usr/local/var/namazu/index/hogehoge ++INDEXES1 main /var/opt/csw/namazu/index ++INDEXES2 hogehoge /var/opt/csw/namazu/index/hogehoge + + # \xC9\xD1\xC8??\xA2\xA5\xAF\xA5\xBB\xA5\xB9\xA4\xB9\xA4\xEB file \xA4\xE4 URL \xA4\xF2\xC5\xD0?\xA4\xB9\xA4?\xA4?\xAC\xA4?\xAD\xA4?\xB9\xA1\xA3 + # \xB0\xEC\xA4\xC4\xCC?\xCF title \xA4?\xBD\xA4?\xE5\xA4\xED\xA4\xCB\xA4?\xE8\xC0??\xC6 full path \xA4??\xA1\xA5\xA4\xA5\xEB?\xA4\xE4 + # URL \xA4\xF2\xBD??\xBC\xA4\xB5\xA4\xA4\xA1\xA3 +-BOOKMARKS1 Namazu-manual /usr/local/share/namazu/doc/ja/manual.html ++BOOKMARKS1 Namazu-manual /opt/csw/share/doc/namazu/ja/manual.html + BOOKMARKS2 Namazu-Homepage http://www.namazu.org/ + + +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 10 12:12:01 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 10 Jul 2012 10:12:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[18693] csw/mgar/pkg/namazu/trunk/Makefile Message-ID: Revision: 18693 http://gar.svn.sourceforge.net/gar/?rev=18693&view=rev Author: pfelecan Date: 2012-07-10 10:12:00 +0000 (Tue, 10 Jul 2012) Log Message: ----------- namazu/trunk: fine tuning overrides Modified Paths: -------------- csw/mgar/pkg/namazu/trunk/Makefile Modified: csw/mgar/pkg/namazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 09:57:53 UTC (rev 18692) +++ csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 10:12:00 UTC (rev 18693) @@ -54,7 +54,6 @@ CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/tknamazu/tknamazu.hlp.en CHECKPKG_OVERRIDES_CSWnamazu += file-with-bad-content|/usr/share|root/opt/csw/share/doc/namazu/ChangeLog RUNTIME_DEP_PKGS_CSWnamazu += CSWkakasi -RUNTIME_DEP_PKGS_CSWnamazu += CSWlibintl8 RUNTIME_DEP_PKGS_CSWnamazu += CSWlynx RUNTIME_DEP_PKGS_CSWnamazu += CSWperl RUNTIME_DEP_PKGS_CSWnamazu += CSWpm-file-mmagic @@ -64,12 +63,15 @@ CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWkakasi CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWlynx CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWpm-file-mmagic +CHECKPKG_OVERRIDES_CSWnamazu += surplus-dependency|CSWtcl +CHECKPKG_OVERRIDES_CSWnamazu += missing-dependency|CSWlibintl8 PACKAGES += CSWlibnmz7 CATALOGNAME_CSWlibnmz7 = libnmz7 PKGFILES_CSWlibnmz7 += $(call baseisadirs,$(libdir),libnmz\.so\.7\.1\.3) PKGFILES_CSWlibnmz7 += $(call baseisadirs,$(libdir),libnmz\.so\.7(\.\d+)*) SPKG_DESC_CSWlibnmz7 += $(DESCRIPTION), libnmz.so.7 +RUNTIME_DEP_PKGS_CSWlibnmz7 += CSWlibintl8 PACKAGES += CSWnamazu-dev CATALOGNAME_CSWnamazu-dev = namazu_dev 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 Jul 10 13:04:46 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 10 Jul 2012 11:04:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18694] csw/mgar/gar/v2/gar.pkg.mk Message-ID: Revision: 18694 http://gar.svn.sourceforge.net/gar/?rev=18694&view=rev Author: dmichelsen Date: 2012-07-10 11:04:46 +0000 (Tue, 10 Jul 2012) Log Message: ----------- mGAR v2: Check for package names to be less than 32 chars Modified Paths: -------------- csw/mgar/gar/v2/gar.pkg.mk Modified: csw/mgar/gar/v2/gar.pkg.mk =================================================================== --- csw/mgar/gar/v2/gar.pkg.mk 2012-07-10 10:12:00 UTC (rev 18693) +++ csw/mgar/gar/v2/gar.pkg.mk 2012-07-10 11:04:46 UTC (rev 18694) @@ -666,6 +666,12 @@ $(if $(shell if [ "$(SPKG_DESC_$(P))" = "$(SPKG_DESC_$(Q))" ]; then echo bad; fi),\ $(error The package descriptions for $(P) [$(if $(SPKG_DESC_$(P)),$(SPKG_DESC_$(P)),)] and $(Q) [$(if $(SPKG_DESC_$(Q)),$(SPKG_DESC_$(Q)),)] are identical. Please make sure that all descriptions are unique by setting SPKG_DESC_ for each package.),)))) +# Check that package names are 32 characters or less as reported in +# https://sourceforge.net/apps/trac/gar/ticket/69 +$(foreach P,$(SPKG_SPECS),\ + $(if $(shell perl -e 'print "toolong" if( length("$P")>32)'),$(error The package name $P is too long, maximum is 32 characters))\ +) + .PRECIOUS: $(WORKDIR)/%.pkginfo # The texinfo filter has been taken out of the normal filters as TEXINFO has a default. 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 Jul 10 13:16:33 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 10 Jul 2012 11:16:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18695] csw/mgar/pkg Message-ID: Revision: 18695 http://gar.svn.sourceforge.net/gar/?rev=18695&view=rev Author: dmichelsen Date: 2012-07-10 11:16:32 +0000 (Tue, 10 Jul 2012) Log Message: ----------- WHOLE TREE: Remove svn:externals... again. Property Changed: ---------------- csw/mgar/pkg/gperftools/trunk/ csw/mgar/pkg/libcanberra/trunk/ Property changes on: csw/mgar/pkg/gperftools/trunk ___________________________________________________________________ Deleted: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 Property changes on: csw/mgar/pkg/libcanberra/trunk ___________________________________________________________________ Deleted: svn:externals - gar https://gar.svn.sourceforge.net/svnroot/gar/csw/mgar/gar/v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Tue Jul 10 14:18:20 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 10 Jul 2012 12:18:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[18696] csw/mgar/gar/v2/lib/python/checkpkg_lib.py Message-ID: Revision: 18696 http://gar.svn.sourceforge.net/gar/?rev=18696&view=rev Author: dmichelsen Date: 2012-07-10 12:18:20 +0000 (Tue, 10 Jul 2012) Log Message: ----------- mGAR v2: Fix tag info detection Modified Paths: -------------- csw/mgar/gar/v2/lib/python/checkpkg_lib.py Modified: csw/mgar/gar/v2/lib/python/checkpkg_lib.py =================================================================== --- csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2012-07-10 11:16:32 UTC (rev 18695) +++ csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2012-07-10 12:18:20 UTC (rev 18696) @@ -245,11 +245,14 @@ if e.pkgname not in db_stat_objs_by_pkgname: logging.warning("Not saving an error for %s.", e.pkgname) continue + tag_info=e.tag_info + if tag_info is not None: + tag_info=unicode(tag_info, "utf-8") error_tag_in_db = m.CheckpkgErrorTag( srv4_file=db_stat_objs_by_pkgname[e.pkgname], pkgname=e.pkgname, tag_name=e.tag_name, - tag_info=unicode(e.tag_info, "utf-8"), + tag_info=tag_info, msg=e.msg, os_rel=sqo_os_rel, catrel=sqo_catrel, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 10 14:18:53 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 10 Jul 2012 12:18:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18697] csw/mgar/pkg/namazu/trunk/Makefile Message-ID: Revision: 18697 http://gar.svn.sourceforge.net/gar/?rev=18697&view=rev Author: pfelecan Date: 2012-07-10 12:18:53 +0000 (Tue, 10 Jul 2012) Log Message: ----------- namazu/trunk: architecture neutral development package Modified Paths: -------------- csw/mgar/pkg/namazu/trunk/Makefile Modified: csw/mgar/pkg/namazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 12:18:20 UTC (rev 18696) +++ csw/mgar/pkg/namazu/trunk/Makefile 2012-07-10 12:18:53 UTC (rev 18697) @@ -80,7 +80,7 @@ PKGFILES_CSWnamazu-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWnamazu-dev += CSWlibnmz7 CHECKPKG_OVERRIDES_CSWnamazu-dev += surplus-dependency|CSWlibmz7 -ARCHALL__CSWnamazu-dev = 1 +ARCHALL_CSWnamazu-dev = 1 CHECKPKG_OVERRIDES_CSWnamazu-dev += archall-devel-package 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 Jul 10 14:36:08 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 10 Jul 2012 12:36:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[18698] csw/mgar/pkg/cpan Message-ID: Revision: 18698 http://gar.svn.sourceforge.net/gar/?rev=18698&view=rev Author: dmichelsen Date: 2012-07-10 12:36:08 +0000 (Tue, 10 Jul 2012) Log Message: ----------- cpan/CGI-Session-Driver-memcached/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/ csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/branches/ csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/tags/ csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/ csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/Makefile csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/checksums csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/files/ Property changes on: csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/Makefile 2012-07-10 12:36:08 UTC (rev 18698) @@ -0,0 +1,22 @@ +NAME = CGI-Session-Driver-memcached +VERSION = 0.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = OINUME + +DESCRIPTION = Persistent session data in CGI applications +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-cgi-session-driver-memcac +CATALOGNAME_CSWpm-cgi-session-driver-memcac = pm_cgi_session_driver_memcac +SPKG_DESC_CSWpm-cgi-session-driver-memcac = Persistent session data in CGI applications +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-cgi-session-driver-memcac = 1 +RUNTIME_DEP_PKGS_CSWpm-cgi-session-driver-memcac += CSWpm-cgi-session + +include gar/category.mk Added: csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/CGI-Session-Driver-memcached/trunk/checksums 2012-07-10 12:36:08 UTC (rev 18698) @@ -0,0 +1 @@ +9e2e241282c5f7e9bc5b263fc0368698 CGI-Session-Driver-memcached-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 Jul 10 14:52:45 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 10 Jul 2012 12:52:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[18699] csw/mgar/pkg/erlang/trunk Message-ID: Revision: 18699 http://gar.svn.sourceforge.net/gar/?rev=18699&view=rev Author: dmichelsen Date: 2012-07-10 12:52:45 +0000 (Tue, 10 Jul 2012) Log Message: ----------- erlang/trunk: Enable DTrace and update to R15B01 Modified Paths: -------------- csw/mgar/pkg/erlang/trunk/Makefile csw/mgar/pkg/erlang/trunk/checksums Modified: csw/mgar/pkg/erlang/trunk/Makefile =================================================================== --- csw/mgar/pkg/erlang/trunk/Makefile 2012-07-10 12:36:08 UTC (rev 18698) +++ csw/mgar/pkg/erlang/trunk/Makefile 2012-07-10 12:52:45 UTC (rev 18699) @@ -1,6 +1,6 @@ # $Id$ NAME = erlang -VERSION = R14B03 +VERSION = R15B01 CATEGORIES = lang GARTYPE = v2 @@ -16,6 +16,9 @@ DISTNAME = otp_src_$(VERSION) DISTFILES = $(DISTNAME).tar.gz +# We want DTrace +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + LICENSE = EPLICENCE PACKAGES += CSWerlang @@ -39,11 +42,12 @@ GARCOMPILER = GCC4 CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --with-ssl +CONFIGURE_ARGS += --with-ssl=$(prefix) CONFIGURE_ARGS += --enable-threads CONFIGURE_ARGS += --enable-smp-support CONFIGURE_ARGS += --enable-kernel-poll CONFIGURE_ARGS += --enable-hipe +CONFIGURE_ARGS += --with-dynamic-trace=dtrace # CONFIGURE_ARGS += --without-odbc # There doesn't seem to be a testsuite Modified: csw/mgar/pkg/erlang/trunk/checksums =================================================================== --- csw/mgar/pkg/erlang/trunk/checksums 2012-07-10 12:36:08 UTC (rev 18698) +++ csw/mgar/pkg/erlang/trunk/checksums 2012-07-10 12:52:45 UTC (rev 18699) @@ -1 +1 @@ -7979e662d11476b97c462feb7c132fb7 otp_src_R14B03.tar.gz +f12d00f6e62b36ad027d6c0c08905fad otp_src_R15B01.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Tue Jul 10 23:27:11 2012 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Tue, 10 Jul 2012 21:27:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[18700] csw/mgar/pkg/dovecot/trunk Message-ID: Revision: 18700 http://gar.svn.sourceforge.net/gar/?rev=18700&view=rev Author: jake_goerzen Date: 2012-07-10 21:27:11 +0000 (Tue, 10 Jul 2012) Log Message: ----------- dovecot: maintanence update to version 2.0.21 Modified Paths: -------------- csw/mgar/pkg/dovecot/trunk/Makefile csw/mgar/pkg/dovecot/trunk/checksums Modified: csw/mgar/pkg/dovecot/trunk/Makefile =================================================================== --- csw/mgar/pkg/dovecot/trunk/Makefile 2012-07-10 12:52:45 UTC (rev 18699) +++ csw/mgar/pkg/dovecot/trunk/Makefile 2012-07-10 21:27:11 UTC (rev 18700) @@ -2,7 +2,7 @@ # - SSL certs to /etc/opt/csw/ssl? # - /var/run/dovecot instead of /var/opt/csw/run? NAME = dovecot -VERSION = 2.0.20 +VERSION = 2.0.21 CATEGORIES = server GARTYPE = v2 @@ -30,7 +30,7 @@ OBSOLETED_BY_CSWdovecot-dev = CSWdovecotdevel CATALOGNAME_CSWdovecotdevel = dovecot_devel_stub -RUNTIME_DEP_PKGS_CSWdovecot += CSWlibmysqlclient15 +RUNTIME_DEP_PKGS_CSWdovecot += CSWlibmysqlclient18 RUNTIME_DEP_PKGS_CSWdovecot += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWdovecot += CSWlibz1 RUNTIME_DEP_PKGS_CSWdovecot += CSWlibbz2-1-0 Modified: csw/mgar/pkg/dovecot/trunk/checksums =================================================================== --- csw/mgar/pkg/dovecot/trunk/checksums 2012-07-10 12:52:45 UTC (rev 18699) +++ csw/mgar/pkg/dovecot/trunk/checksums 2012-07-10 21:27:11 UTC (rev 18700) @@ -1 +1 @@ -e67c16c5b7ca68244ae88569ab57903f dovecot-2.0.20.tar.gz +b19d29dcd865c86de76b9ad3d7d3af03 dovecot-2.0.21.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From romeotheriault at users.sourceforge.net Wed Jul 11 09:50:54 2012 From: romeotheriault at users.sourceforge.net (romeotheriault at users.sourceforge.net) Date: Wed, 11 Jul 2012 07:50:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18701] csw/mgar/pkg/lang-python Message-ID: Revision: 18701 http://gar.svn.sourceforge.net/gar/?rev=18701&view=rev Author: romeotheriault Date: 2012-07-11 07:50:53 +0000 (Wed, 11 Jul 2012) Log Message: ----------- lang-python/salt/trunk: Initial commit of salt. It works but still have more finetuning to do. Added Paths: ----------- csw/mgar/pkg/lang-python/salt/ csw/mgar/pkg/lang-python/salt/Makefile csw/mgar/pkg/lang-python/salt/branches/ csw/mgar/pkg/lang-python/salt/tags/ csw/mgar/pkg/lang-python/salt/trunk/ csw/mgar/pkg/lang-python/salt/trunk/Makefile csw/mgar/pkg/lang-python/salt/trunk/checksums csw/mgar/pkg/lang-python/salt/trunk/files/ Added: csw/mgar/pkg/lang-python/salt/Makefile =================================================================== --- csw/mgar/pkg/lang-python/salt/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/salt/Makefile 2012-07-11 07:50:53 UTC (rev 18701) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/lang-python/salt/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/lang-python/salt/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/salt/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/salt/trunk/Makefile 2012-07-11 07:50:53 UTC (rev 18701) @@ -0,0 +1,38 @@ +#TODO: +# * Create init scripts +# * Have mgar copy the minion.template and master.template files into place. (salt-0.10.1/conf/) +NAME = salt +VERSION = 0.10.1 +GARTYPE = v2 +CATEGORIES = python + +DESCRIPTION = Distributed remote execution system +define BLURB + Salt is a distributed remote execution system used to execute commands and query data. +endef + +MASTER_SITES = https://github.com/downloads/saltstack/salt/ +DISTFILES = $(DISTNAME).tar.gz + +RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-yaml +RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-m2crypto +RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-crypto +RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-jinja2 +#RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-pyzmq +#RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-msgpack + +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/share/man/man7/salt.7 +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/cron.py +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/rvm.py +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/freebsdservice.py +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/brew.py +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/pip.py +CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/share|root/opt/csw/lib/python/site-packages/salt/modules/tomcat.py + +ARCHALL_CSWpy-salt = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +TEST_SCRIPTS = + +include gar/category.mk Property changes on: csw/mgar/pkg/lang-python/salt/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/lang-python/salt/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/salt/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/salt/trunk/checksums 2012-07-11 07:50:53 UTC (rev 18701) @@ -0,0 +1 @@ +ff55b82d64429938ffe1097b77a71188 salt-0.10.1.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From romeotheriault at users.sourceforge.net Wed Jul 11 09:55:46 2012 From: romeotheriault at users.sourceforge.net (romeotheriault at users.sourceforge.net) Date: Wed, 11 Jul 2012 07:55:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18702] csw/mgar/pkg/lang-python/salt/trunk/Makefile Message-ID: Revision: 18702 http://gar.svn.sourceforge.net/gar/?rev=18702&view=rev Author: romeotheriault Date: 2012-07-11 07:55:46 +0000 (Wed, 11 Jul 2012) Log Message: ----------- lang-python/salt/trunk: Add some dependency overrides. Modified Paths: -------------- csw/mgar/pkg/lang-python/salt/trunk/Makefile Modified: csw/mgar/pkg/lang-python/salt/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/salt/trunk/Makefile 2012-07-11 07:50:53 UTC (rev 18701) +++ csw/mgar/pkg/lang-python/salt/trunk/Makefile 2012-07-11 07:55:46 UTC (rev 18702) @@ -21,6 +21,13 @@ #RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-pyzmq #RUNTIME_DEP_PKGS_CSWpy-salt += CSWpy-msgpack +CHECKPKG_OVERRIDES_CSWpy-salt += surplus-dependency|CSWpy-m2crypto +CHECKPKG_OVERRIDES_CSWpy-salt += surplus-dependency|CSWpy-yaml +CHECKPKG_OVERRIDES_CSWpy-salt += surplus-dependency|CSWpy-crypto +CHECKPKG_OVERRIDES_CSWpy-salt += surplus-dependency|CSWpy-jinja2 +#CHECKPKG_OVERRIDES_CSWpy-salt += surplus-dependency|CSWpy-pyzmq +#CHECKPKG_OVERRIDES_CSWpy-salt += surplus-dependency|CSWpy-msgpack + CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/share/man/man7/salt.7 CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/cron.py CHECKPKG_OVERRIDES_CSWpy-salt += file-with-bad-content|/usr/local|root/opt/csw/lib/python/site-packages/salt/modules/rvm.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 11 10:49:21 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 11 Jul 2012 08:49:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[18703] csw/mgar/pkg/emacs_template/trunk/files/README.CSW Message-ID: Revision: 18703 http://gar.svn.sourceforge.net/gar/?rev=18703&view=rev Author: pfelecan Date: 2012-07-11 08:49:20 +0000 (Wed, 11 Jul 2012) Log Message: ----------- emacs_template/trunk: renumber list Modified Paths: -------------- csw/mgar/pkg/emacs_template/trunk/files/README.CSW Modified: csw/mgar/pkg/emacs_template/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/emacs_template/trunk/files/README.CSW 2012-07-11 07:55:46 UTC (rev 18702) +++ csw/mgar/pkg/emacs_template/trunk/files/README.CSW 2012-07-11 08:49:20 UTC (rev 18703) @@ -12,7 +12,7 @@ 4. Copy the templates from /opt/csw/share/doc/emacs_template/templates to ~/.templates -4. Enjoy! +5. Enjoy! CSW Team This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 11 11:06:48 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 11 Jul 2012 09:06:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[18704] csw/mgar/pkg Message-ID: Revision: 18704 http://gar.svn.sourceforge.net/gar/?rev=18704&view=rev Author: pfelecan Date: 2012-07-11 09:06:48 +0000 (Wed, 11 Jul 2012) Log Message: ----------- gnusnamazu/trunk: migrated from a private recipe to a GAR based recipe. Added Paths: ----------- csw/mgar/pkg/gnusnamazu/ csw/mgar/pkg/gnusnamazu/Makefile csw/mgar/pkg/gnusnamazu/branches/ csw/mgar/pkg/gnusnamazu/tags/ csw/mgar/pkg/gnusnamazu/trunk/ csw/mgar/pkg/gnusnamazu/trunk/Makefile csw/mgar/pkg/gnusnamazu/trunk/checksums csw/mgar/pkg/gnusnamazu/trunk/files/ csw/mgar/pkg/gnusnamazu/trunk/files/COPYING csw/mgar/pkg/gnusnamazu/trunk/files/README.CSW Added: csw/mgar/pkg/gnusnamazu/Makefile =================================================================== --- csw/mgar/pkg/gnusnamazu/Makefile (rev 0) +++ csw/mgar/pkg/gnusnamazu/Makefile 2012-07-11 09:06:48 UTC (rev 18704) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/gnusnamazu/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/gnusnamazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnusnamazu/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gnusnamazu/trunk/Makefile 2012-07-11 09:06:48 UTC (rev 18704) @@ -0,0 +1,45 @@ +# $Id$ + +NAME = gnusnamazu +# there is no realy a version version as we fetch from a git repository +VERSION = 0.3 +GARTYPE = v2 +CATEGORIES = xtra + +DESCRIPTION = Gnus interface to Namazu +define BLURB + Gnus interface to Namazu +endef + +MASTER_SITES = http://git.gnus.org/cgit/gnus.git/plain/contrib/ +DISTFILES = gnus-namazu.el +DISTFILES += COPYING + +CONFIGURE_SCRIPTS = +BUILD_DEP_PKGS += CSWemacs +BUILD_SCRIPTS = custom +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PACKAGES = CSWgnus-namazu +SPKG_DESC_CSWgnus-namazu = $(DESCRIPTION) +CATALOGNAME_CSWgnus_namazu = gnus_namazu +OBSOLETED_BY_CSWgnus-namazu = CSWgnusnamazu +CATALOGNAME_CSWgnusnamazu = gnusnamazu_stub +RUNTIME_DEP_PKGS_CSWgnus-namazu += CSWemacs +RUNTIME_DEP_PKGS_CSWgnus-namazu += CSWnamazu +ARCHALL_CSWgnus-namazu = 1 + +include gar/category.mk + +build-custom: + cd $(WORKDIR) && emacs --batch --funcall batch-byte-compile gnus-namazu.el + $(MAKECOOKIE) + +install-custom: pkgdocdir = $(DESTDIR)/$(docdir)/$(CATALOGNAME_CSWgnus_namazu) +install-custom: + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(lispdir) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(WORKDIR)/gnus-namazu.el* $(DESTDIR)/$(lispdir) + ginstall --directory --mode=u=rwx,go=rx $(pkgdocdir) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(FILEDIR)/README.CSW $(pkgdocdir) + $(MAKECOOKIE) Property changes on: csw/mgar/pkg/gnusnamazu/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/gnusnamazu/trunk/checksums =================================================================== --- csw/mgar/pkg/gnusnamazu/trunk/checksums (rev 0) +++ csw/mgar/pkg/gnusnamazu/trunk/checksums 2012-07-11 09:06:48 UTC (rev 18704) @@ -0,0 +1 @@ +6e1801c37827533954ea1c867a1069d0 gnus-namazu.el Added: csw/mgar/pkg/gnusnamazu/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/gnusnamazu/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/gnusnamazu/trunk/files/COPYING 2012-07-11 09:06:48 UTC (rev 18704) @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. Added: csw/mgar/pkg/gnusnamazu/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/gnusnamazu/trunk/files/README.CSW (rev 0) +++ csw/mgar/pkg/gnusnamazu/trunk/files/README.CSW 2012-07-11 09:06:48 UTC (rev 18704) @@ -0,0 +1,47 @@ +$Id$ + +To use the the gnusemacs packaged by CSW you need to put the following +expression into your ~/.gnus: + + (gnus-namazu-insinuate) + +In order to make index of articles with Namazu before using this +module, type M-x gnus-namazu-create-index RET. Otherwise, you can +create index by yourself with the following commands: + + % mkdir ~/News/namazu + % mknmz -a -h -O ~/News/namazu ~/Mail ~/News/cache + +The first command makes the directory for index files, and the +second command generates index files of mails and persistent +articles. + +In order to update indices for incoming articles, this module +automatically runs mknmz, the indexer of Namazu, at an interval of +3 days; this period is set to `gnus-namazu-index-update-interval'. + +Indices will be updated when `gnus-namazu-search' is called. If +you want to update indices everywhen Gnus is started, you can put +the following expression to your ~/.gnus. + + (add-hook 'gnus-startup-hook 'gnus-namazu-update-all-indices) + +In order to control mknmz closely, disable the automatic updating +feature and run mknmz by yourself. In this case, set nil to the +above option. + + (setq gnus-namazu-index-update-interval nil) + +When your index is put into the directory other than the default +one (~/News/namazu), it is necessary to set its place to +`gnus-namazu-index-directories' as follows: + + (setq gnus-namazu-index-directories + (list (expand-file-name "~/namazu"))) + +CSW Team + +# Local Variables: +# mode: text +# mode: font-lock +# End: Property changes on: csw/mgar/pkg/gnusnamazu/trunk/files/README.CSW ___________________________________________________________________ Added: svn:keywords + Author Date HeadURL Id Revision This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 11 11:11:47 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 11 Jul 2012 09:11:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[18705] csw/mgar/pkg/gnusnamazu/trunk/Makefile Message-ID: Revision: 18705 http://gar.svn.sourceforge.net/gar/?rev=18705&view=rev Author: pfelecan Date: 2012-07-11 09:11:46 +0000 (Wed, 11 Jul 2012) Log Message: ----------- gnusnamazu/trunk: verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/gnusnamazu/trunk/Makefile Modified: csw/mgar/pkg/gnusnamazu/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnusnamazu/trunk/Makefile 2012-07-11 09:06:48 UTC (rev 18704) +++ csw/mgar/pkg/gnusnamazu/trunk/Makefile 2012-07-11 09:11:46 UTC (rev 18705) @@ -28,6 +28,15 @@ CATALOGNAME_CSWgnusnamazu = gnusnamazu_stub RUNTIME_DEP_PKGS_CSWgnus-namazu += CSWemacs RUNTIME_DEP_PKGS_CSWgnus-namazu += CSWnamazu +# this is by desing overriden because I wish to depend on a common +# named package in both Solaris 9 and Solaris 10 when 23.1 is the +# current version for the former and 23.4 is the current version for +# the later. Note that when packaging 23.4, the CSWemacscommon became +# CSWemacs-common. +CHECKPKG_OVERRIDES_CSWgnus-namazu += missing-dependency|CSWemacscommon +# these cannot be detected by checkpkg: +CHECKPKG_OVERRIDES_CSWgnus-namazu += surplus-dependency|CSWnamazu +CHECKPKG_OVERRIDES_CSWgnus-namazu += surplus-dependency|CSWemacs ARCHALL_CSWgnus-namazu = 1 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From phipsy at users.sourceforge.net Wed Jul 11 11:39:48 2012 From: phipsy at users.sourceforge.net (phipsy at users.sourceforge.net) Date: Wed, 11 Jul 2012 09:39:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[18706] csw/mgar/pkg/puppet/trunk Message-ID: Revision: 18706 http://gar.svn.sourceforge.net/gar/?rev=18706&view=rev Author: phipsy Date: 2012-07-11 09:39:48 +0000 (Wed, 11 Jul 2012) Log Message: ----------- puppet: version ramp, 2.7.18 Modified Paths: -------------- csw/mgar/pkg/puppet/trunk/Makefile csw/mgar/pkg/puppet/trunk/checksums Modified: csw/mgar/pkg/puppet/trunk/Makefile =================================================================== --- csw/mgar/pkg/puppet/trunk/Makefile 2012-07-11 09:11:46 UTC (rev 18705) +++ csw/mgar/pkg/puppet/trunk/Makefile 2012-07-11 09:39:48 UTC (rev 18706) @@ -7,7 +7,7 @@ # [1] http://garylaw.net/packages/puppet-build.sh NAME = puppet -VERSION = 2.7.14 +VERSION = 2.7.18 CATEGORIES = apps GARTYPE = v2 @@ -29,7 +29,7 @@ DISTFILES += CSWpuppet.postinstall # pkgutil.rb https://raw.github.com/domcleal/puppet/tickets/master/8011c/lib/puppet/provider/package/pkgutil.rb # Should be headed into 2.7 code - supports -t REPO -# Still not in 2.7.14 as of 03-May-12(FFS!) +# Still not in 2.7.18 as of 11-Jul-12(FFS!) DISTFILES += pkgutil.rb DISTFILES += README.CSW DISTFILES += puppet.conf.example-CSW Modified: csw/mgar/pkg/puppet/trunk/checksums =================================================================== --- csw/mgar/pkg/puppet/trunk/checksums 2012-07-11 09:11:46 UTC (rev 18705) +++ csw/mgar/pkg/puppet/trunk/checksums 2012-07-11 09:39:48 UTC (rev 18706) @@ -14,3 +14,4 @@ be0a220cb66fe149bdbc08a9790fc2d1 puppet-2.7.12.tar.gz 8062f371cc7ec5c7e5cd5f4b6c3f9278 puppet-2.7.13.tar.gz a505a02e23975464fcf4a2c0cb0b3b59 puppet-2.7.14.tar.gz +210725704692a0ca7b8ffc312471796e puppet-2.7.18.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 11 15:13:42 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 11 Jul 2012 13:13:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18707] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 18707 http://gar.svn.sourceforge.net/gar/?rev=18707&view=rev Author: pfelecan Date: 2012-07-11 13:13:42 +0000 (Wed, 11 Jul 2012) Log Message: ----------- pstoedit/trunk: do not strip libtool Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-11 09:39:48 UTC (rev 18706) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-11 13:13:42 UTC (rev 18707) @@ -27,8 +27,6 @@ LICENSE = copying -STRIP_LIBTOOL = 1 - PACKAGING_PLATFORMS = solaris10-sparc PACKAGING_PLATFORMS += solaris10-i386 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 Jul 11 16:20:19 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Wed, 11 Jul 2012 14:20:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18708] csw/mgar/pkg/munin/trunk/files Message-ID: Revision: 18708 http://gar.svn.sourceforge.net/gar/?rev=18708&view=rev Author: j_arndt Date: 2012-07-11 14:20:19 +0000 (Wed, 11 Jul 2012) Log Message: ----------- munin/trunk: inserted wiki link into post install messages Modified Paths: -------------- csw/mgar/pkg/munin/trunk/files/CSWmunin-master.README.CSW csw/mgar/pkg/munin/trunk/files/CSWmunin-node.README.CSW Modified: csw/mgar/pkg/munin/trunk/files/CSWmunin-master.README.CSW =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmunin-master.README.CSW 2012-07-11 13:13:42 UTC (rev 18707) +++ csw/mgar/pkg/munin/trunk/files/CSWmunin-master.README.CSW 2012-07-11 14:20:19 UTC (rev 18708) @@ -31,5 +31,9 @@ generation via cgi. It's reasonable preconfigured, so all in all you should need only some copy and paste. +(6) For more detailed information about the package take look at + + http://wiki.opencsw.org/munin-package + ======================================================================= Modified: csw/mgar/pkg/munin/trunk/files/CSWmunin-node.README.CSW =================================================================== --- csw/mgar/pkg/munin/trunk/files/CSWmunin-node.README.CSW 2012-07-11 13:13:42 UTC (rev 18707) +++ csw/mgar/pkg/munin/trunk/files/CSWmunin-node.README.CSW 2012-07-11 14:20:19 UTC (rev 18708) @@ -12,5 +12,9 @@ svcadm restart cswmuninnode +(3) For more detailed information about the package take look at + + http://wiki.opencsw.org/munin-package + ======================================================================= 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 Jul 12 10:29:47 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 12 Jul 2012 08:29:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[18709] csw/mgar/pkg/nagios_plugins/trunk Message-ID: Revision: 18709 http://gar.svn.sourceforge.net/gar/?rev=18709&view=rev Author: j_arndt Date: 2012-07-12 08:29:47 +0000 (Thu, 12 Jul 2012) Log Message: ----------- nagios_plugins/trunk: added warning message about files with suid set Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/nagios_plugins/trunk/files/README.CSW Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-11 14:20:19 UTC (rev 18708) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-12 08:29:47 UTC (rev 18709) @@ -10,9 +10,10 @@ Plugins for Nagios endef -SF_PROJ = nagiosplug -MASTER_SITES = $(SF_MIRRORS) -DISTFILES = $(NAME)-$(VERSION).tar.gz +SF_PROJ = nagiosplug +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(NAME)-$(VERSION).tar.gz +DISTFILES += README.CSW PACKAGES = CSWnagios-plugins CATALOG_NAME_CSWnagios-plugins = nagios_plugins @@ -28,6 +29,8 @@ REINPLACE_USRLOCAL += ChangeLog REINPLACE_USRLOCAL += README +POSTMSG += /opt/csw/share/doc/nagios-plugins/README.CSW + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-openssl=/opt/csw CONFIGURE_ARGS += --with-trusted-path=/bin:/sbin:/usr/bin:/usr/sbin:/opt/csw/bin:/opt/csw/sbin @@ -66,7 +69,7 @@ include gar/category.mk -DOCS = BUGS ChangeLog FAQ README REQUIREMENTS SUPPORT COPYING +DOCS = BUGS ChangeLog FAQ README REQUIREMENTS SUPPORT COPYING DOCDEST = $(DESTDIR)$(docdir)/$(NAME) ROOT_PLUGINS = check_dhcp check_icmp pst3 PLUGINDEST = $(DESTDIR)$(libexecdir) @@ -75,6 +78,7 @@ @ginstall -m 755 -d $(DOCDEST) @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) @ginstall -m 755 -d $(PLUGINDEST) + @ginstall -m 644 $(FILEDIR)/README.CSW $(DOCDEST) @$(foreach PLUGIN,$(ROOT_PLUGINS),ginstall -m 4755 $(WORKSRC)/plugins-root/$(PLUGIN) $(PLUGINDEST);) @( cd $(WORKSRC) ; tar cf contrib.tar contrib ; gzip contrib.tar) @ginstall -m 755 -d $(DOCDEST) Added: csw/mgar/pkg/nagios_plugins/trunk/files/README.CSW =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/files/README.CSW (rev 0) +++ csw/mgar/pkg/nagios_plugins/trunk/files/README.CSW 2012-07-12 08:29:47 UTC (rev 18709) @@ -0,0 +1,14 @@ + +======================================================================= + +The following files will run in root context and have suid permissions: + + /opt/csw/libexec/nagios-plugins/pst3 + /opt/csw/libexec/nagios-plugins/check_dhcp + /opt/csw/libexec/nagios-plugins/check_icmp + +If you don't like it, change the permissions / ownerships to your +needs. + +======================================================================= + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 12 11:41:30 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 12 Jul 2012 09:41:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[18710] csw/mgar/pkg Message-ID: Revision: 18710 http://gar.svn.sourceforge.net/gar/?rev=18710&view=rev Author: pfelecan Date: 2012-07-12 09:41:30 +0000 (Thu, 12 Jul 2012) Log Message: ----------- libming/trunk: migrated from a private recipe to a GAR based recipe; not ready for release. Added Paths: ----------- csw/mgar/pkg/libming/ csw/mgar/pkg/libming/Makefile csw/mgar/pkg/libming/branches/ csw/mgar/pkg/libming/tags/ csw/mgar/pkg/libming/trunk/ csw/mgar/pkg/libming/trunk/Makefile csw/mgar/pkg/libming/trunk/checksums csw/mgar/pkg/libming/trunk/files/ csw/mgar/pkg/libming/trunk/files/0001-PrintGifError-to-GifErrorString.patch Added: csw/mgar/pkg/libming/Makefile =================================================================== --- csw/mgar/pkg/libming/Makefile (rev 0) +++ csw/mgar/pkg/libming/Makefile 2012-07-12 09:41:30 UTC (rev 18710) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/libming/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-12 09:41:30 UTC (rev 18710) @@ -0,0 +1,66 @@ +# $Id$ + +NAME = libming +VERSION = 0.4.4 +GARTYPE = v2 +CATEGORIES = lib + +DESCRIPTION = A library for generating Macromedia Flash files +define BLURB + Ming is a library for generating Macromedia Flash files (.swf), written + in C, and includes useful utilities for working with .swf files. + + It has wrappers that allow it to be used in C++, PHP, Python, Ruby, and + Perl. +endef + +MASTER_SITES = $(SF_MIRRORS) +SF_PROJ = ming +DISTNAME = $(SF_PROJ)-$(VERSION) +DISTFILES = $(DISTNAME).tar.bz2 +PATCHFILES += 0001-PrintGifError-to-GifErrorString.patch + +GARCOMPILER = GNU + +BUILD_DEP_PKGS += CSWphp5 +BUILD_DEP_PKGS += CSWphp5-dev + +CONFIGURE_ARGS = $(DIRPATHS) +# gcc -kPIC issue because Python was compiled with SOS +#CONFIGURE_ARGS += --enable-python +# gcc dynamic link error durring tests +# CONFIGURE_ARGS += --enable-perl +# SOS: doesn't compile +#CONFIGURE_ARGS += --enable-php +# SOS: doesn't link with TCL library resulting in undefined references +#CONFIGURE_ARGS += --enable-tcl + +TEST_SCRIPTS = custom + +include gar/category.mk + +PATH := /opt/csw/gnu:/opt/csw/php5/bin:$(PATH) + +pre-configure-modulated: + @echo "executing $@" + cd $(WORKSRC) && libtoolize + cd $(WORKSRC) && aclocal -I macros + cd $(WORKSRC) && automake -a + cd $(WORKSRC) && autoconf + $(MAKECOOKIE) + +# there are some tests failing for minor reasons, from my stand point, +# going from missing initial files to incorrect evaluation of the +# results: +# Font/test03 +# Font/test06 +# Font/test07 +# Font/test07-cxx +# consequently I choose to not block the release +test-custom: + -$(MAKE) -k -C $(WORKSRC) check + $(MAKECOOKIE) + +# this is private and not available publicly +mydependencies: + $(HOME)/bin/ocswdeplist --package $(NAME) Property changes on: csw/mgar/pkg/libming/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/libming/trunk/checksums =================================================================== --- csw/mgar/pkg/libming/trunk/checksums (rev 0) +++ csw/mgar/pkg/libming/trunk/checksums 2012-07-12 09:41:30 UTC (rev 18710) @@ -0,0 +1 @@ +9e780f93670eaf68b1eefa6cdfc1d1e2 ming-0.4.4.tar.bz2 Added: csw/mgar/pkg/libming/trunk/files/0001-PrintGifError-to-GifErrorString.patch =================================================================== --- csw/mgar/pkg/libming/trunk/files/0001-PrintGifError-to-GifErrorString.patch (rev 0) +++ csw/mgar/pkg/libming/trunk/files/0001-PrintGifError-to-GifErrorString.patch 2012-07-12 09:41:30 UTC (rev 18710) @@ -0,0 +1,39 @@ +From 41a87d6dcc353ea79ca76a9923ab04c5786154fd Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 11 Jul 2012 11:51:45 +0200 +Subject: [PATCH] PrintGifError to GifErrorString + +--- + util/gif2dbl.c | 2 +- + util/gif2mask.c | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/util/gif2dbl.c b/util/gif2dbl.c +index 7c513d8..9b22817 100644 +--- a/util/gif2dbl.c ++++ b/util/gif2dbl.c +@@ -20,7 +20,7 @@ + void error(char *msg) + { + printf("%s:\n\n", msg); +- PrintGifError(); ++ printf("%s:\n\n", GifErrorString()); + exit(-1); + } + +diff --git a/util/gif2mask.c b/util/gif2mask.c +index 7636bc7..5a039a3 100644 +--- a/util/gif2mask.c ++++ b/util/gif2mask.c +@@ -14,7 +14,7 @@ + void error(char *msg) + { + printf("%s:\n\n", msg); +- PrintGifError(); ++ printf("%s:\n\n", GifErrorString()); + exit(-1); + } + +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 12 14:39:26 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 12 Jul 2012 12:39:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[18711] csw/mgar/pkg/libming/trunk/Makefile Message-ID: Revision: 18711 http://gar.svn.sourceforge.net/gar/?rev=18711&view=rev Author: pfelecan Date: 2012-07-12 12:39:25 +0000 (Thu, 12 Jul 2012) Log Message: ----------- libming/trunk: split in sub-packages Modified Paths: -------------- csw/mgar/pkg/libming/trunk/Makefile Modified: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile 2012-07-12 09:41:30 UTC (rev 18710) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-12 12:39:25 UTC (rev 18711) @@ -37,6 +37,40 @@ TEST_SCRIPTS = custom +#CSWlibbz2-1-0 CSWlibfreetype6 CSWlibgcc-s1 CSWlibgif4 CSWlibpng12-0 CSWlibz1 + +PACKAGES += CSWlibming-utils +CATALOGNAME_CSWlibming-utils = libming_utils +OBSOLETED_BY_CSWlibming-utils = CSWlibming +CATALOGNAME_CSWlibming = libming_stub +RUNTIME_DEP_PKGS_CSWlibming-utils += CSWlibming1 + +SPKG_DESC_CSWlibming-utils = $(DESCRIPTION), utilities + +PACKAGES += CSWlibming1 +CATALOGNAME_CSWlibming1 = libming1 +PKGFILES_CSWlibming1 += $(call baseisadirs,$(libdir),libming\.so\.1\.4\.3) +PKGFILES_CSWlibming1 += $(call baseisadirs,$(libdir),libming\.so\.1(\.\d+)*) +SPKG_DESC_CSWlibming1 += $(DESCRIPTION), libming.so.1 +OBSOLETED_BY_CSWlibming1 = CSWlibmingrt +CATALOGNAME_CSWlibmingrt = libming_rt_stub +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgif4 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibpng12-0 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibz1 + +PACKAGES += CSWlibming-dev +CATALOGNAME_CSWlibming-dev = libming_dev +SPKG_DESC_CSWlibming-dev += $(DESCRIPTION), development files +PKGFILES_CSWlibming-dev += /opt/csw/lib/libming.so +PKGFILES_CSWlibming-dev += $(PKGFILES_DEVEL) +OBSOLETED_BY_CSWlibming-dev = CSWlibmingdevel +CATALOGNAME_CSWlibmingdevel = libming_devel_stub +RUNTIME_DEP_PKGS_CSWlibming-dev += CSWlibming1 +ARCHALL_CSWlibming-dev = 1 + include gar/category.mk PATH := /opt/csw/gnu:/opt/csw/php5/bin:$(PATH) @@ -63,4 +97,4 @@ # this is private and not available publicly mydependencies: - $(HOME)/bin/ocswdeplist --package $(NAME) + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done 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 Jul 12 15:12:30 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 12 Jul 2012 13:12:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[18712] csw/mgar/pkg/nsca/trunk Message-ID: Revision: 18712 http://gar.svn.sourceforge.net/gar/?rev=18712&view=rev Author: j_arndt Date: 2012-07-12 13:12:30 +0000 (Thu, 12 Jul 2012) Log Message: ----------- nsca/trunk: update to 2.9.1 Modified Paths: -------------- csw/mgar/pkg/nsca/trunk/Makefile csw/mgar/pkg/nsca/trunk/checksums csw/mgar/pkg/nsca/trunk/files/CSWnsca.preinstall Added Paths: ----------- csw/mgar/pkg/nsca/trunk/files/0001-asprintf-for-solaris-10.patch csw/mgar/pkg/nsca/trunk/files/0002-generated-by-autoconf-for-asprintf-patch.patch csw/mgar/pkg/nsca/trunk/files/asprintf.c csw/mgar/pkg/nsca/trunk/files/submit_check_results.sh Removed Paths: ------------- csw/mgar/pkg/nsca/trunk/files/CSWnsca.prototype csw/mgar/pkg/nsca/trunk/files/CSWsendnsca.prototype csw/mgar/pkg/nsca/trunk/files/submit_check_results.diff Modified: csw/mgar/pkg/nsca/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsca/trunk/Makefile 2012-07-12 12:39:25 UTC (rev 18711) +++ csw/mgar/pkg/nsca/trunk/Makefile 2012-07-12 13:12:30 UTC (rev 18712) @@ -1,46 +1,138 @@ -NAME = nsca -VERSION = 2.7.2 -CATEGORIES = apps -GARTYPE = v2 +NAME = nsca +VERSION = 2.9.1 +CATEGORIES = apps +GARTYPE = v2 -SPKG_DESC_CSWnsca = Nagios service check acceptor -SPKG_DESC_CSWsendnsca = Sends check results to nsca daemon +# +# package definition +# +PACKAGES = CSWnsca CSWsendnsca + +SPKG_DESC_CSWnsca = Nagios service check acceptor +SPKG_DESC_CSWsendnsca = Sends check results to nsca daemon + +CATALOGNAME_CSWnsca = nsca +CATALOGNAME_CSWsendnsca = sendnsca + +# +# Blurb +# + define BLURB NSCA allows you to integrate passive alerts and checks from remote machines and applications with Nagios. Useful for processing security alerts, as well as redundant and distributed Nagios setups. endef -MASTER_SITES = http://mesh.dl.sourceforge.net/sourceforge/nagios/ -DISTFILES = $(NAME)-$(VERSION).tar.gz +# +# download, distfiles, patchfiles +# +MASTER_SITES = http://sourceforge.net/projects/nagios/files/nsca-2.x/$(NAME)-$(VERSION)/ + +DISTFILES = $(NAME)-$(VERSION).tar.gz +DISTFILES += asprintf.c +DISTFILES += CSWsendnsca.cswusergroup +DISTFILES += submit_check_results.sh +DISTFILES += cswnsca +DISTFILES += CSWnsca.cswusergroup +DISTFILES += CSWnsca.preinstall + +PATCHFILES += 0001-asprintf-for-solaris-10.patch # taken from https://dev.icinga.org/issues/2409 +PATCHFILES += 0002-generated-by-autoconf-for-asprintf-patch.patch # configure file for patch above + # -## Distfiles for CSWnsca +# reinplacements # -DISTFILES += CSWnsca.prototype CSWnsca.preinstall -DISTFILES += cswnsca CSWnsca.cswusergroup +REINPLACE_USRLOCAL += README +REINPLACE_USRLOCAL += sample-config/nsca.cfg.in # -## Distfiles for CSWsendnsca # +# -DISTFILES += CSWsendnsca.prototype CSWsendnsca.preinstall -DISTFILES += CSWsendnsca.cswusergroup +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 -PATCHFILES += submit_check_results.diff +RUNTIME_DEP_PKGS_CSWnsca += CSWlibmcrypt4 +RUNTIME_DEP_PKGS_CSWnsca += CSWlibltdl7 +RUNTIME_DEP_PKGS_CSWnsca += CSWlibwrap1 -PACKAGES = CSWnsca CSWsendnsca -CATALOGNAME_CSWnsca = nsca -CATALOGNAME_CSWsendnsca = send_nsca +RUNTIME_DEP_PKGS_CSWsendnsca += CSWlibmcrypt4 +RUNTIME_DEP_PKGS_CSWsendnsca += CSWlibltdl7 -RUNTIME_DEP_PKGS_CSWnsca = CSWlibmcrypt CSWlibtoolrt -RUNTIME_DEP_PKGS_CSWsendnsca = CSWlibmcrypt CSWlibtoolrt +# +# files for CSWnsca +# -SPKG_CLASSES_CSWnsca = none cswusergroup cswpreserveconf cswinitsmf -SPKG_CLASSES_CSWsendnsca = none cswusergroup cswpreserveconf +NSCA_SMF += /etc/opt/csw/init.d/cswnsca +NSCA_USERGROUP += /opt/csw/etc/pkg/CSWnsca/cswusergroup +NSCA_PREINSTALL += .*CSWnsca.preinstall +NSCA_DOCS += $(NSCADOCDIR).* +NSCA_CONF_DIR += /etc/opt/csw/nagios/* +NSCA_CONF_FILE += /opt/csw/etc/templates/CSWnsca/etc/opt/csw/nagios/nsca.cfg +NSCA_EXEC += /opt/csw/nagios/bin/nsca +PKGFILES_CSWnsca += $(NSCA_SMF) +PKGFILES_CSWnsca += $(NSCA_USERGROUP) +PKGFILES_CSWnsca += $(NSCA_PREINSTALL) +PKGFILES_CSWnsca += $(NSCA_DOCS) +PKGFILES_CSWnsca += $(NSCA_CONF_DIR) +PKGFILES_CSWnsca += $(NSCA_CONF_FILE) +PKGFILES_CSWnsca += $(NSCA_EXEC) + +# +# files for CSWsendnsca +# + +SEND_NSCA_USERGROUP += CSWsendnsca.cswusergroup +SEND_NSCA_DOCS += $(SENDNSCADOCDIR).* +SEND_NSCA_CONF_DIR += /etc/opt/csw/nagios/* +SEND_NSCA_CONF_FILE += /opt/csw/etc/templates/CSWsendnsca/etc/opt/csw/nagios/send_nsca.cfg +SEND_NSCA_EXEC += /opt/csw/nagios/bin/send_nsca + +PKGFILES_CSWsendnsca += $(SEND_NSCA_USERGROUP) +PKGFILES_CSWsendnsca += $(SEND_NSCA_DOCS) +PKGFILES_CSWsendnsca += $(SEND_NSCA_CONF_DIR) +PKGFILES_CSWsendnsca += $(SEND_NSCA_CONF_FILE) +PKGFILES_CSWsendnsca += $(SEND_NSCA_EXEC) + +# +# prototypes +# + +PROTOTYPE_MODIFIERS += ugfiles + +PROTOTYPE_FILES_ugfiles += $(NSCA_CONF_FILE) $(SEND_NSCA_CONF_FILE) +PROTOTYPE_USER_ugfiles += nagios +PROTOTYPE_GROUP_ugfiles += nagios +PROTOTYPE_CLASS_ugfiles += cswcptemplates +PROTOTYPE_PERMS_ugfiles += 0644 + +PROTOTYPE_MODIFIERS += ugdirs + +PROTOTYPE_FILES_ugdirs += $(NSCA_CONF_DIR) $(SEND_NSCA_CONF_DIR) +PROTOTYPE_USER_ugdirs += nagios +PROTOTYPE_GROUP_ugdirs += nagios +PROTOTYPE_PERMS_ugdirs += 0755 + +# +# +# + +INITSMF = $(NSCA_SMF) +USERGROUP_CSWnsca = $(NSCA_USERGROUP) +USERGROUP_CSWsendnsca = $(SEND_NSCA_USERGROUP) + +# +# +# + NOISALIST = 1 +# +# configure +# + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-nsca-port=5667 CONFIGURE_ARGS += --localstatedir=/var/opt/csw/nagios @@ -53,36 +145,58 @@ include gar/category.mk -BINDIR=$(prefix)/bin -NAGIOSBINDIR=$(prefix)/nagios/bin -NAGIOSCFGDIR=/etc$(prefix)/nagios -NSCADOCDIR=$(prefix)/share/doc/nsca -SENDNSCADOCDIR=$(prefix)/share/doc/send_nsca +BINDIR = $(prefix)/bin +NAGIOSBINDIR = $(prefix)/nagios/bin +NAGIOSCFGDIR = /etc$(prefix)/nagios +NSCADOCDIR = $(prefix)/share/doc/nsca +SENDNSCADOCDIR = $(prefix)/share/doc/send_nsca +CSWnsca_TEMPLATEDIR = /opt/csw/etc/templates/CSWnsca/$(NAGIOSCFGDIR) +CSWsendnsca_TEMPLATEDIR = /opt/csw/etc/templates/CSWsendnsca/$(NAGIOSCFGDIR) +pre-build-modulated: + @ginstall -m 644 $(FILEDIR)/asprintf.c $(WORKSRC)/src/asprintf.c + post-install-modulated: - ginstall -d $(DESTDIR)$(prefix)/bin - ginstall -d $(DESTDIR)$(prefix)/etc - ginstall -d $(DESTDIR)$(NAGIOSBINDIR) - ginstall -d $(DESTDIR)$(NAGIOSCFGDIR) - ginstall -m 755 -d $(DESTDIR)$(NSCADOCDIR) - ginstall -m 755 $(WORKSRC)/src/nsca $(DESTDIR)$(NAGIOSBINDIR) - ginstall -m 600 $(WORKSRC)/sample-config/nsca.cfg $(DESTDIR)$(NAGIOSCFGDIR)/nsca.cfg.CSW - ginstall -m 644 $(WORKSRC)/Changelog $(DESTDIR)$(NSCADOCDIR) - ginstall -m 644 $(WORKSRC)/LEGAL $(DESTDIR)$(NSCADOCDIR) - ginstall -m 644 $(WORKSRC)/README $(DESTDIR)$(NSCADOCDIR) - ginstall -m 644 $(WORKSRC)/SECURITY $(DESTDIR)$(NSCADOCDIR) - ginstall -m 755 $(WORKSRC)/src/send_nsca $(DESTDIR)$(BINDIR) - ginstall -m 755 -d $(DESTDIR)$(SENDNSCADOCDIR) - ginstall -m 755 $(WORKSRC)/src/submit_check_result-sample $(DESTDIR)$(SENDNSCADOCDIR) - ginstall -m 600 $(WORKSRC)/sample-config/send_nsca.cfg $(DESTDIR)$(NAGIOSCFGDIR)/send_nsca.cfg.CSW - ginstall -m 644 $(WORKSRC)/Changelog $(DESTDIR)$(SENDNSCADOCDIR) - ginstall -m 644 $(WORKSRC)/LEGAL $(DESTDIR)$(SENDNSCADOCDIR) - ginstall -m 644 $(WORKSRC)/README $(DESTDIR)$(SENDNSCADOCDIR) - ginstall -m 644 $(WORKSRC)/SECURITY $(DESTDIR)$(SENDNSCADOCDIR) - ginstall -d $(DESTDIR)/etc/opt/csw/init.d/ - ginstall -m 755 $(FILEDIR)/cswnsca $(DESTDIR)/etc/opt/csw/init.d/ + @ginstall -d $(DESTDIR)$(prefix)/bin + @ginstall -d $(DESTDIR)$(prefix)/etc + @ginstall -d $(DESTDIR)$(NAGIOSBINDIR) + @ginstall -d $(DESTDIR)$(NAGIOSCFGDIR) + @ginstall -d $(DESTDIR)$(CSWnsca_TEMPLATEDIR) + @ginstall -d $(DESTDIR)$(CSWsendnsca_TEMPLATEDIR) + @ginstall -m 755 -d $(DESTDIR)$(NSCADOCDIR) + @ginstall -m 755 $(WORKSRC)/src/nsca $(DESTDIR)$(NAGIOSBINDIR) + @ginstall -m 644 $(WORKSRC)/Changelog $(DESTDIR)$(NSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/LEGAL $(DESTDIR)$(NSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/README $(DESTDIR)$(NSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/SECURITY $(DESTDIR)$(NSCADOCDIR) + @ginstall -m 755 $(WORKSRC)/src/send_nsca $(DESTDIR)$(NAGIOSBINDIR) + @ginstall -m 755 -d $(DESTDIR)$(SENDNSCADOCDIR) + @ginstall -m 755 files/submit_check_results.sh $(DESTDIR)$(SENDNSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/Changelog $(DESTDIR)$(SENDNSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/LEGAL $(DESTDIR)$(SENDNSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/README $(DESTDIR)$(SENDNSCADOCDIR) + @ginstall -m 644 $(WORKSRC)/SECURITY $(DESTDIR)$(SENDNSCADOCDIR) + @# + @## configuration file for CSWnsca -> cswcptemplates + @# + @ginstall -m 600 $(WORKSRC)/sample-config/nsca.cfg $(DESTDIR)$(CSWnsca_TEMPLATEDIR)/nsca.cfg + @# + @## configuration file for CSWsendnsca -> cswcptemplates + @# + @ginstall -m 600 $(WORKSRC)/sample-config/send_nsca.cfg $(DESTDIR)$(CSWsendnsca_TEMPLATEDIR)/send_nsca.cfg + @# + @## Start / Stop script for CSWnsca + @# + @ginstall -d $(DESTDIR)/etc/opt/csw/init.d/ + @ginstall -m 755 $(FILEDIR)/cswnsca $(DESTDIR)/etc/opt/csw/init.d/ + @# + @## create user and group for CSWsendnsca -> cswusergroup + @# @ginstall -m 755 -d $(DESTDIR)/opt/csw/etc/pkg/CSWsendnsca @ginstall -m 644 $(FILEDIR)/CSWsendnsca.cswusergroup $(DESTDIR)/opt/csw/etc/pkg/CSWsendnsca/cswusergroup + @# + @## create user and group for CSWnsca -> cswusergroup + @# @ginstall -m 755 -d $(DESTDIR)/opt/csw/etc/pkg/CSWnsca @ginstall -m 644 $(FILEDIR)/CSWnsca.cswusergroup $(DESTDIR)/opt/csw/etc/pkg/CSWnsca/cswusergroup @$(MAKECOOKIE) Modified: csw/mgar/pkg/nsca/trunk/checksums =================================================================== --- csw/mgar/pkg/nsca/trunk/checksums 2012-07-12 12:39:25 UTC (rev 18711) +++ csw/mgar/pkg/nsca/trunk/checksums 2012-07-12 13:12:30 UTC (rev 18712) @@ -1,9 +1 @@ -e9ed8b90404f0aebfc6f77355d8c9bbe CSWnsca.cswusergroup -ec54b953469889200d99a86669653173 CSWnsca.preinstall -42ca77e782a25c8354df8f53eb769ae6 CSWnsca.prototype -0a98ba4dd462e50f23239433117bae5e CSWsendnsca.cswusergroup -e275462ffbf488fe5f7e29dd3abab0ae CSWsendnsca.preinstall -3e2a2fa1f5209b3bbee1b3822164e7f6 CSWsendnsca.prototype -f7d14e529cdeae1548505c9106d1a6f5 cswnsca -33a98e7975f633a9489d7a8938ed6131 nsca-2.7.2.tar.gz -28e7dbb0cd301747ff663df350a74ddb submit_check_results.diff +f3fab49beebd9090cb1b2742b75bdf17 nsca-2.9.1.tar.gz Added: csw/mgar/pkg/nsca/trunk/files/0001-asprintf-for-solaris-10.patch =================================================================== --- csw/mgar/pkg/nsca/trunk/files/0001-asprintf-for-solaris-10.patch (rev 0) +++ csw/mgar/pkg/nsca/trunk/files/0001-asprintf-for-solaris-10.patch 2012-07-12 13:12:30 UTC (rev 18712) @@ -0,0 +1,63 @@ +From d3532e3ea6e4a82c029ba2337610b4e726a7bb44 Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Thu, 12 Jul 2012 11:54:27 +0200 +Subject: [PATCH] asprintf for solaris 10 + +--- + configure.in | 10 ++++++++++ + src/Makefile.in | 4 +++- + 2 files changed, 13 insertions(+), 1 deletion(-) + +diff --git a/configure.in b/configure.in +index aa34e02..88eca45 100644 +--- a/configure.in ++++ b/configure.in +@@ -260,6 +260,14 @@ if test "x$TARGET_OS" = "xSunOS" ; then + fi + AC_SUBST(TARGET_PLATFORM) + ++# add asprintf for solaris ++if test "x$host_os" = "xsolaris2.10" ; then ++ ASPRINTF_SRC="asprintf.c" ++else ++ ASPRINTF_SRC="" ++fi ++AC_SUBST(ASPRINTF_SRC) ++ + AC_PATH_PROG(PERL,perl) + AC_OUTPUT() + +@@ -278,6 +286,8 @@ echo "" + echo " General Options:" + echo " -------------------------" + ++AC_MSG_RESULT([ TARGET_PLATFORM: $host]) ++AC_MSG_RESULT([ TARGET_OS: $host_os]) + AC_MSG_RESULT([ NSCA port: $nsca_port]) + AC_MSG_RESULT([ NSCA user: $nsca_user]) + AC_MSG_RESULT([ NSCA group: $nsca_grp]) +diff --git a/src/Makefile.in b/src/Makefile.in +index ecdedc7..c294103 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -8,6 +8,8 @@ srcdir=@srcdir@ + + # Source code directories + SRC_INCLUDE=@srcdir@/../include ++# Solaris asprintf (empty for non solaris hosts) ++SOL10_ASPRINTF=@ASPRINTF_SRC@ + + CC=@CC@ + CFLAGS=@CFLAGS@ @DEFS@ +@@ -21,7 +23,7 @@ CP=@CP@ + all: nsca send_nsca + + nsca: $(srcdir)/nsca.c $(srcdir)/netutils.c $(srcdir)/utils.c $(SRC_INCLUDE)/netutils.h $(SRC_INCLUDE)/utils.h $(SRC_INCLUDE)/common.h $(SRC_INCLUDE)/config.h +- $(CC) $(CFLAGS) -o $@ $(srcdir)/nsca.c $(srcdir)/netutils.c $(srcdir)/utils.c $(LDFLAGS) $(SOCKETLIBS) $(LIBWRAPLIBS) ++ $(CC) $(CFLAGS) -o $@ $(srcdir)/nsca.c $(srcdir)/netutils.c $(srcdir)/utils.c $(SOL10_ASPRINTF) $(LDFLAGS) $(SOCKETLIBS) $(LIBWRAPLIBS) + + send_nsca: $(srcdir)/send_nsca.c $(srcdir)/netutils.c $(srcdir)/utils.c $(SRC_INCLUDE)/netutils.h $(SRC_INCLUDE)/utils.h $(SRC_INCLUDE)/common.h $(SRC_INCLUDE)/config.h + $(CC) $(CFLAGS) -o $@ $(srcdir)/send_nsca.c $(srcdir)/netutils.c $(srcdir)/utils.c $(LDFLAGS) $(SOCKETLIBS) +-- +1.7.10.3 + Added: csw/mgar/pkg/nsca/trunk/files/0002-generated-by-autoconf-for-asprintf-patch.patch =================================================================== --- csw/mgar/pkg/nsca/trunk/files/0002-generated-by-autoconf-for-asprintf-patch.patch (rev 0) +++ csw/mgar/pkg/nsca/trunk/files/0002-generated-by-autoconf-for-asprintf-patch.patch 2012-07-12 13:12:30 UTC (rev 18712) @@ -0,0 +1,11012 @@ +From 2cfd0e6f6b129667580ff33a973f226c9000315c Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Thu, 12 Jul 2012 12:12:32 +0200 +Subject: [PATCH] generated by autoconf for asprintf patch + +--- + configure | 9235 ++++++++++++++++++++++++++----------------------------------- + 1 file changed, 3970 insertions(+), 5265 deletions(-) + +diff --git a/configure b/configure +index 31baa9f..c872ed1 100755 +--- a/configure ++++ b/configure +@@ -1,83 +1,462 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.59 for nsca 2.9. ++# Generated by GNU Autoconf 2.69 for nsca 2.9.1. + # + # Report bugs to . + # +-# Copyright (C) 2003 Free Software Foundation, Inc. ++# ++# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. ++# ++# + # This configure script is free software; the Free Software Foundation + # gives unlimited permission to copy, distribute and modify it. +-## --------------------- ## +-## M4sh Initialization. ## +-## --------------------- ## ++## -------------------- ## ++## M4sh Initialization. ## ++## -------------------- ## + +-# Be Bourne compatible +-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: +- # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' +-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then +- set -o posix ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; ++esac + fi +-DUALCASE=1; export DUALCASE # for MKS sh + +-# Support unset when possible. +-if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +- as_unset=unset +-else +- as_unset=false ++ ++as_nl=' ++' ++export as_nl ++# Printing a long string crashes Solaris 7 /usr/bin/printf. ++as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo ++as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo ++# Prefer a ksh shell builtin over an external printf program on Solaris, ++# but without wasting forks for bash or zsh. ++if test -z "$BASH_VERSION$ZSH_VERSION" \ ++ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='print -r --' ++ as_echo_n='print -rn --' ++elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then ++ as_echo='printf %s\n' ++ as_echo_n='printf %s' ++else ++ if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then ++ as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ++ as_echo_n='/usr/ucb/echo -n' ++ else ++ as_echo_body='eval expr "X$1" : "X\\(.*\\)"' ++ as_echo_n_body='eval ++ arg=$1; ++ case $arg in #( ++ *"$as_nl"*) ++ expr "X$arg" : "X\\(.*\\)$as_nl"; ++ arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; ++ esac; ++ expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ++ ' ++ export as_echo_n_body ++ as_echo_n='sh -c $as_echo_n_body as_echo' ++ fi ++ export as_echo_body ++ as_echo='sh -c $as_echo_body as_echo' ++fi ++ ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ PATH_SEPARATOR=: ++ (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { ++ (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || ++ PATH_SEPARATOR=';' ++ } + fi + + +-# Work around bugs in pre-3.0 UWIN ksh. +-$as_unset ENV MAIL MAILPATH ++# IFS ++# We need space, tab and new line, in precisely that order. Quoting is ++# there to prevent editors from complaining about space-tab. ++# (If _AS_PATH_WALK were called with IFS unset, it would disable word ++# splitting by setting IFS to empty value.) ++IFS=" "" $as_nl" ++ ++# Find who we are. Look in the path if we contain no directory separator. ++as_myself= ++case $0 in #(( ++ *[\\/]* ) as_myself=$0 ;; ++ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++ done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++# We did not find ourselves, most probably we were run as `sh COMMAND' ++# in which case we are not to be found in the path. ++if test "x$as_myself" = x; then ++ as_myself=$0 ++fi ++if test ! -f "$as_myself"; then ++ $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ exit 1 ++fi ++ ++# Unset variables that we do not need and which cause bugs (e.g. in ++# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" ++# suppresses any "Segmentation fault" message there. '((' could ++# trigger a bug in pdksh 5.2.14. ++for as_var in BASH_ENV ENV MAIL MAILPATH ++do eval test x\${$as_var+set} = xset \ ++ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : ++done + PS1='$ ' + PS2='> ' + PS4='+ ' + + # NLS nuisances. +-for as_var in \ +- LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ +- LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ +- LC_TELEPHONE LC_TIME ++LC_ALL=C ++export LC_ALL ++LANGUAGE=C ++export LANGUAGE ++ ++# CDPATH. ++(unset CDPATH) >/dev/null 2>&1 && unset CDPATH ++ ++# Use a proper internal environment variable to ensure we don't fall ++ # into an infinite loop, continuously re-executing ourselves. ++ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then ++ _as_can_reexec=no; export _as_can_reexec; ++ # We cannot yet assume a decent shell, so we have to provide a ++# neutralization value for shells without unset; and this also ++# works around shells that cannot unset nonexistent variables. ++# Preserve -v and -x to the replacement shell. ++BASH_ENV=/dev/null ++ENV=/dev/null ++(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV ++case $- in # (((( ++ *v*x* | *x*v* ) as_opts=-vx ;; ++ *v* ) as_opts=-v ;; ++ *x* ) as_opts=-x ;; ++ * ) as_opts= ;; ++esac ++exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} ++# Admittedly, this is quite paranoid, since all the known shells bail ++# out after a failed `exec'. ++$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 ++as_fn_exit 255 ++ fi ++ # We don't want this to propagate to other subprocesses. ++ { _as_can_reexec=; unset _as_can_reexec;} ++if test "x$CONFIG_SHELL" = x; then ++ as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : ++ emulate sh ++ NULLCMD=: ++ # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '\${1+\"\$@\"}'='\"\$@\"' ++ setopt NO_GLOB_SUBST ++else ++ case \`(set -o) 2>/dev/null\` in #( ++ *posix*) : ++ set -o posix ;; #( ++ *) : ++ ;; ++esac ++fi ++" ++ as_required="as_fn_return () { (exit \$1); } ++as_fn_success () { as_fn_return 0; } ++as_fn_failure () { as_fn_return 1; } ++as_fn_ret_success () { return 0; } ++as_fn_ret_failure () { return 1; } ++ ++exitcode=0 ++as_fn_success || { exitcode=1; echo as_fn_success failed.; } ++as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } ++as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } ++as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } ++if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : ++ ++else ++ exitcode=1; echo positional parameters were not saved. ++fi ++test x\$exitcode = x0 || exit 1 ++test -x / || exit 1" ++ as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO ++ as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO ++ eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && ++ test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 ++test \$(( 1 + 1 )) = 2 || exit 1" ++ if (eval "$as_required") 2>/dev/null; then : ++ as_have_required=yes ++else ++ as_have_required=no ++fi ++ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : ++ ++else ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++as_found=false ++for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH + do +- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then +- eval $as_var=C; export $as_var ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ as_found=: ++ case $as_dir in #( ++ /*) ++ for as_base in sh bash ksh sh5; do ++ # Try only shells that exist, to save several forks. ++ as_shell=$as_dir/$as_base ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ CONFIG_SHELL=$as_shell as_have_required=yes ++ if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : ++ break 2 ++fi ++fi ++ done;; ++ esac ++ as_found=false ++done ++$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && ++ { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : ++ CONFIG_SHELL=$SHELL as_have_required=yes ++fi; } ++IFS=$as_save_IFS ++ ++ ++ if test "x$CONFIG_SHELL" != x; then : ++ export CONFIG_SHELL ++ # We cannot yet assume a decent shell, so we have to provide a ++# neutralization value for shells without unset; and this also ++# works around shells that cannot unset nonexistent variables. ++# Preserve -v and -x to the replacement shell. ++BASH_ENV=/dev/null ++ENV=/dev/null ++(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV ++case $- in # (((( ++ *v*x* | *x*v* ) as_opts=-vx ;; ++ *v* ) as_opts=-v ;; ++ *x* ) as_opts=-x ;; ++ * ) as_opts= ;; ++esac ++exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} ++# Admittedly, this is quite paranoid, since all the known shells bail ++# out after a failed `exec'. ++$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 ++exit 255 ++fi ++ ++ if test x$as_have_required = xno; then : ++ $as_echo "$0: This script requires a shell more modern than all" ++ $as_echo "$0: the shells that I found on your system." ++ if test x${ZSH_VERSION+set} = xset ; then ++ $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" ++ $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else +- $as_unset $as_var ++ $as_echo "$0: Please tell bug-autoconf at gnu.org and ++$0: nagios-users at lists.sourceforge.net about your system, ++$0: including any error possibly output before this ++$0: message. Then install a modern shell, or manually run ++$0: the script under such a shell if you do have one." + fi +-done ++ exit 1 ++fi ++fi ++fi ++SHELL=${CONFIG_SHELL-/bin/sh} ++export SHELL ++# Unset more variables known to interfere with behavior of common tools. ++CLICOLOR_FORCE= GREP_OPTIONS= ++unset CLICOLOR_FORCE GREP_OPTIONS ++ ++## --------------------- ## ++## M4sh Shell Functions. ## ++## --------------------- ## ++# as_fn_unset VAR ++# --------------- ++# Portably unset VAR. ++as_fn_unset () ++{ ++ { eval $1=; unset $1;} ++} ++as_unset=as_fn_unset ++ ++# as_fn_set_status STATUS ++# ----------------------- ++# Set $? to STATUS, without forking. ++as_fn_set_status () ++{ ++ return $1 ++} # as_fn_set_status ++ ++# as_fn_exit STATUS ++# ----------------- ++# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. ++as_fn_exit () ++{ ++ set +e ++ as_fn_set_status $1 ++ exit $1 ++} # as_fn_exit ++ ++# as_fn_mkdir_p ++# ------------- ++# Create "$as_dir" as a directory, including parents if necessary. ++as_fn_mkdir_p () ++{ ++ ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || eval $as_mkdir_p || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" ++ ++ ++} # as_fn_mkdir_p ++ ++# as_fn_executable_p FILE ++# ----------------------- ++# Test if FILE is an executable regular file. ++as_fn_executable_p () ++{ ++ test -f "$1" && test -x "$1" ++} # as_fn_executable_p ++# as_fn_append VAR VALUE ++# ---------------------- ++# Append the text in VALUE to the end of the definition contained in VAR. Take ++# advantage of any shell optimizations that allow amortized linear growth over ++# repeated appends, instead of the typical quadratic growth present in naive ++# implementations. ++if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : ++ eval 'as_fn_append () ++ { ++ eval $1+=\$2 ++ }' ++else ++ as_fn_append () ++ { ++ eval $1=\$$1\$2 ++ } ++fi # as_fn_append ++ ++# as_fn_arith ARG... ++# ------------------ ++# Perform arithmetic evaluation on the ARGs, and store the result in the ++# global $as_val. Take advantage of shells that can avoid forks. The arguments ++# must be portable across $(()) and expr. ++if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : ++ eval 'as_fn_arith () ++ { ++ as_val=$(( $* )) ++ }' ++else ++ as_fn_arith () ++ { ++ as_val=`expr "$@" || test $? -eq 1` ++ } ++fi # as_fn_arith + +-# Required to use basename. +-if expr a : '\(a\)' >/dev/null 2>&1; then ++ ++# as_fn_error STATUS ERROR [LINENO LOG_FD] ++# ---------------------------------------- ++# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are ++# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ++# script with STATUS, using 1 if that was 0. ++as_fn_error () ++{ ++ as_status=$1; test $as_status -eq 0 && as_status=1 ++ if test "$4"; then ++ as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 ++ fi ++ $as_echo "$as_me: error: $2" >&2 ++ as_fn_exit $as_status ++} # as_fn_error ++ ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr + else + as_expr=false + fi + +-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename + else + as_basename=false + fi + ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi + +-# Name of the executable. +-as_me=`$as_basename "$0" || ++as_me=`$as_basename -- "$0" || + $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)$' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X/"$0" | +- sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } +- /^X\/\(\/\/\)$/{ s//\1/; q; } +- /^X\/\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` + +- +-# PATH needs CR, and LINENO needs CR and PATH. + # Avoid depending upon Character Ranges. + as_cr_letters='abcdefghijklmnopqrstuvwxyz' + as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +@@ -85,146 +464,91 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS + as_cr_digits='0123456789' + as_cr_alnum=$as_cr_Letters$as_cr_digits + +-# The user is always right. +-if test "${PATH_SEPARATOR+set}" != set; then +- echo "#! /bin/sh" >conf$$.sh +- echo "exit 0" >>conf$$.sh +- chmod +x conf$$.sh +- if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then +- PATH_SEPARATOR=';' +- else +- PATH_SEPARATOR=: +- fi +- rm -f conf$$.sh +-fi +- +- +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x$as_lineno_3" = "x$as_lineno_2" || { +- # Find who we are. Look in the path if we contain no path at all +- # relative or not. +- case $0 in +- *[\\/]* ) as_myself=$0 ;; +- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +-done +- +- ;; +- esac +- # We did not find ourselves, most probably we were run as `sh COMMAND' +- # in which case we are not to be found in the path. +- if test "x$as_myself" = x; then +- as_myself=$0 +- fi +- if test ! -f "$as_myself"; then +- { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 +- { (exit 1); exit 1; }; } +- fi +- case $CONFIG_SHELL in +- '') +- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- for as_base in sh bash ksh sh5; do +- case $as_dir in +- /*) +- if ("$as_dir/$as_base" -c ' +- as_lineno_1=$LINENO +- as_lineno_2=$LINENO +- as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` +- test "x$as_lineno_1" != "x$as_lineno_2" && +- test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then +- $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } +- $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } +- CONFIG_SHELL=$as_dir/$as_base +- export CONFIG_SHELL +- exec "$CONFIG_SHELL" "$0" ${1+"$@"} +- fi;; +- esac +- done +-done +-;; +- esac + +- # Create $as_me.lineno as a copy of $as_myself, but with $LINENO +- # uniformly replaced by the line number. The first 'sed' inserts a +- # line-number line before each line; the second 'sed' does the real +- # work. The second script uses 'N' to pair each line-number line +- # with the numbered line, and appends trailing '-' during +- # substitution so that $LINENO is not a special case at line end. +- # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the +- # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) +- sed '=' <$as_myself | ++ as_lineno_1=$LINENO as_lineno_1a=$LINENO ++ as_lineno_2=$LINENO as_lineno_2a=$LINENO ++ eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && ++ test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { ++ # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) ++ sed -n ' ++ p ++ /[$]LINENO/= ++ ' <$as_myself | + sed ' ++ s/[$]LINENO.*/&-/ ++ t lineno ++ b ++ :lineno + N +- s,$,-, +- : loop +- s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, ++ :loop ++ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop +- s,-$,, +- s,^['$as_cr_digits']*\n,, ++ s/-\n.*// + ' >$as_me.lineno && +- chmod +x $as_me.lineno || +- { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 +- { (exit 1); exit 1; }; } ++ chmod +x "$as_me.lineno" || ++ { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + ++ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have ++ # already done that, so ensure we don't try to do so again and fall ++ # in an infinite loop. This has already happened in practice. ++ _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the +- # original and so on. Autoconf is especially sensible to this). +- . ./$as_me.lineno ++ # original and so on. Autoconf is especially sensitive to this). ++ . "./$as_me.lineno" + # Exit status is that of the last command. + exit + } + +- +-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in +- *c*,-n*) ECHO_N= ECHO_C=' +-' ECHO_T=' ' ;; +- *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; +- *) ECHO_N= ECHO_C='\c' ECHO_T= ;; ++ECHO_C= ECHO_N= ECHO_T= ++case `echo -n x` in #((((( ++-n*) ++ case `echo 'xy\c'` in ++ *c*) ECHO_T=' ';; # ECHO_T is single tab character. ++ xy) ECHO_C='\c';; ++ *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ++ ECHO_T=' ';; ++ esac;; ++*) ++ ECHO_N='-n';; + esac + +-if expr a : '\(a\)' >/dev/null 2>&1; then +- as_expr=expr ++rm -f conf$$ conf$$.exe conf$$.file ++if test -d conf$$.dir; then ++ rm -f conf$$.dir/conf$$.file + else +- as_expr=false ++ rm -f conf$$.dir ++ mkdir conf$$.dir 2>/dev/null + fi +- +-rm -f conf$$ conf$$.exe conf$$.file +-echo >conf$$.file +-if ln -s conf$$.file conf$$ 2>/dev/null; then +- # We could just check for DJGPP; but this test a) works b) is more generic +- # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). +- if test -f conf$$.exe; then +- # Don't use ln at all; we don't have any links +- as_ln_s='cp -p' +- else ++if (echo >conf$$.file) 2>/dev/null; then ++ if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -pR'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -pR' ++ elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++ else ++ as_ln_s='cp -pR' + fi +-elif ln conf$$.file conf$$ 2>/dev/null; then +- as_ln_s=ln + else +- as_ln_s='cp -p' ++ as_ln_s='cp -pR' + fi +-rm -f conf$$ conf$$.exe conf$$.file ++rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ++rmdir conf$$.dir 2>/dev/null + + if mkdir -p . 2>/dev/null; then +- as_mkdir_p=: ++ as_mkdir_p='mkdir -p "$as_dir"' + else + test -d ./-p && rmdir ./-p + as_mkdir_p=false + fi + +-as_executable_p="test -f" ++as_test_x='test -x' ++as_executable_p=as_fn_executable_p + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -233,91 +557,181 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +-# IFS +-# We need space, tab and new line, in precisely that order. +-as_nl=' +-' +-IFS=" $as_nl" +- +-# CDPATH. +-$as_unset CDPATH +- ++test -n "$DJDIR" || exec 7<&0 &1 + + # Name of the host. +-# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, ++# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, + # so uname gets run too. + ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +-exec 6>&1 +- + # + # Initializations. + # + ac_default_prefix=/usr/local ++ac_clean_files= + ac_config_libobj_dir=. ++LIBOBJS= + cross_compiling=no + subdirs= + MFLAGS= + MAKEFLAGS= +-SHELL=${CONFIG_SHELL-/bin/sh} +- +-# Maximum number of lines to put in a shell here document. +-# This variable seems obsolete. It should probably be removed, and +-# only ac_max_sed_lines should be used. +-: ${ac_max_here_lines=38} + + # Identity of this package. + PACKAGE_NAME='nsca' + PACKAGE_TARNAME='nsca' +-PACKAGE_VERSION='2.9' +-PACKAGE_STRING='nsca 2.9' ++PACKAGE_VERSION='2.9.1' ++PACKAGE_STRING='nsca 2.9.1' + PACKAGE_BUGREPORT='nagios-users at lists.sourceforge.net' ++PACKAGE_URL='http://www.nagios.org' + + ac_unique_file="src/nsca.c" + ac_default_prefix=/usr/local/nagios + # Factoring default headers for most tests. + ac_includes_default="\ + #include +-#if HAVE_SYS_TYPES_H ++#ifdef HAVE_SYS_TYPES_H + # include + #endif +-#if HAVE_SYS_STAT_H ++#ifdef HAVE_SYS_STAT_H + # include + #endif +-#if STDC_HEADERS ++#ifdef STDC_HEADERS + # include + # include + #else +-# if HAVE_STDLIB_H ++# ifdef HAVE_STDLIB_H + # include + # endif + #endif +-#if HAVE_STRING_H +-# if !STDC_HEADERS && HAVE_MEMORY_H ++#ifdef HAVE_STRING_H ++# if !defined STDC_HEADERS && defined HAVE_MEMORY_H + # include + # endif + # include + #endif +-#if HAVE_STRINGS_H ++#ifdef HAVE_STRINGS_H + # include + #endif +-#if HAVE_INTTYPES_H ++#ifdef HAVE_INTTYPES_H + # include +-#else +-# if HAVE_STDINT_H +-# include +-# endif + #endif +-#if HAVE_UNISTD_H ++#ifdef HAVE_STDINT_H ++# include ++#endif ++#ifdef HAVE_UNISTD_H + # include + #endif" + +-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS PKG_NAME PKG_VERSION PKG_HOME_URL PKG_REL_DATE INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA INSTALL build build_cpu build_vendor build_os host host_cpu host_vendor host_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT SET_MAKE CPP EGREP SOCKETLIBS LIBWRAPLIBS LIBMCRYPT_CONFIG LIBMCRYPT_CFLAGS LIBMCRYPT_LIBS log_facility nsca_user nsca_grp nsca_port TARGET_VER TARGET_OS TARGET_ARCH TARGET_PLATFORM PERL LIBOBJS LTLIBOBJS' ++ac_subst_vars='LTLIBOBJS ++LIBOBJS ++PERL ++ASPRINTF_SRC ++TARGET_PLATFORM ++TARGET_ARCH ++TARGET_OS ++TARGET_VER ++nsca_port ++nsca_grp ++nsca_user ++log_facility ++LIBMCRYPT_LIBS ++LIBMCRYPT_CFLAGS ++LIBMCRYPT_CONFIG ++LIBWRAPLIBS ++SOCKETLIBS ++EGREP ++GREP ++CPP ++SET_MAKE ++OBJEXT ++EXEEXT ++ac_ct_CC ++CPPFLAGS ++LDFLAGS ++CFLAGS ++CC ++host_os ++host_vendor ++host_cpu ++host ++build_os ++build_vendor ++build_cpu ++build ++INSTALL ++INSTALL_DATA ++INSTALL_SCRIPT ++INSTALL_PROGRAM ++PKG_REL_DATE ++PKG_HOME_URL ++PKG_VERSION ++PKG_NAME ++target_alias ++host_alias ++build_alias ++LIBS ++ECHO_T ++ECHO_N ++ECHO_C ++DEFS ++mandir ++localedir ++libdir ++psdir ++pdfdir ++dvidir ++htmldir ++infodir ++docdir ++oldincludedir ++includedir ++localstatedir ++sharedstatedir ++sysconfdir ++datadir ++datarootdir ++libexecdir ++sbindir ++bindir ++program_transform_name ++prefix ++exec_prefix ++PACKAGE_URL ++PACKAGE_BUGREPORT ++PACKAGE_STRING ++PACKAGE_VERSION ++PACKAGE_TARNAME ++PACKAGE_NAME ++PATH_SEPARATOR ++SHELL' + ac_subst_files='' ++ac_user_opts=' ++enable_option_checking ++with_mcrypt_lib ++with_mcrypt_inc ++with_libmcrypt_prefix ++with_log_facility ++with_nsca_user ++with_nsca_grp ++with_nsca_port ++' ++ ac_precious_vars='build_alias ++host_alias ++target_alias ++CC ++CFLAGS ++LDFLAGS ++LIBS ++CPPFLAGS ++CPP' ++ + + # Initialize some variables set by options. + ac_init_help= + ac_init_version=false ++ac_unrecognized_opts= ++ac_unrecognized_sep= + # The variables have the same names as the options, with + # dashes changed to underlines. + cache_file=/dev/null +@@ -340,34 +754,49 @@ x_libraries=NONE + # and all the variables that are supposed to be based on exec_prefix + # by default will actually change. + # Use braces instead of parens because sh, perl, etc. also accept them. ++# (The list follows the same order as the GNU Coding Standards.) + bindir='${exec_prefix}/bin' + sbindir='${exec_prefix}/sbin' + libexecdir='${exec_prefix}/libexec' +-datadir='${prefix}/share' ++datarootdir='${prefix}/share' ++datadir='${datarootdir}' + sysconfdir='${prefix}/etc' + sharedstatedir='${prefix}/com' + localstatedir='${prefix}/var' +-libdir='${exec_prefix}/lib' + includedir='${prefix}/include' + oldincludedir='/usr/include' +-infodir='${prefix}/info' +-mandir='${prefix}/man' ++docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' ++infodir='${datarootdir}/info' ++htmldir='${docdir}' ++dvidir='${docdir}' ++pdfdir='${docdir}' ++psdir='${docdir}' ++libdir='${exec_prefix}/lib' ++localedir='${datarootdir}/locale' ++mandir='${datarootdir}/man' + + ac_prev= ++ac_dashdash= + for ac_option + do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then +- eval "$ac_prev=\$ac_option" ++ eval $ac_prev=\$ac_option + ac_prev= + continue + fi + +- ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` ++ case $ac_option in ++ *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; ++ *=) ac_optarg= ;; ++ *) ac_optarg=yes ;; ++ esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + +- case $ac_option in ++ case $ac_dashdash$ac_option in ++ --) ++ ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; +@@ -389,33 +818,59 @@ do + --config-cache | -C) + cache_file=config.cache ;; + +- -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ++ -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; +- -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ +- | --da=*) ++ -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + ++ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ ++ | --dataroo | --dataro | --datar) ++ ac_prev=datarootdir ;; ++ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ ++ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) ++ datarootdir=$ac_optarg ;; ++ + -disable-* | --disable-*) +- ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 +- { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` +- eval "enable_$ac_feature=no" ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid feature name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"enable_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval enable_$ac_useropt=no ;; ++ ++ -docdir | --docdir | --docdi | --doc | --do) ++ ac_prev=docdir ;; ++ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) ++ docdir=$ac_optarg ;; ++ ++ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ++ ac_prev=dvidir ;; ++ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) ++ dvidir=$ac_optarg ;; + + -enable-* | --enable-*) +- ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid feature name: $ac_feature" >&2 +- { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` +- case $ac_option in +- *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; +- *) ac_optarg=yes ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid feature name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"enable_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; + esac +- eval "enable_$ac_feature='$ac_optarg'" ;; ++ eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ +@@ -442,6 +897,12 @@ do + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + ++ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ++ ac_prev=htmldir ;; ++ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ ++ | --ht=*) ++ htmldir=$ac_optarg ;; ++ + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; +@@ -466,13 +927,16 @@ do + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + ++ -localedir | --localedir | --localedi | --localed | --locale) ++ ac_prev=localedir ;; ++ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) ++ localedir=$ac_optarg ;; ++ + -localstatedir | --localstatedir | --localstatedi | --localstated \ +- | --localstate | --localstat | --localsta | --localst \ +- | --locals | --local | --loca | --loc | --lo) ++ | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ +- | --localstate=* | --localstat=* | --localsta=* | --localst=* \ +- | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) ++ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) +@@ -537,6 +1001,16 @@ do + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + ++ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ++ ac_prev=pdfdir ;; ++ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) ++ pdfdir=$ac_optarg ;; ++ ++ -psdir | --psdir | --psdi | --psd | --ps) ++ ac_prev=psdir ;; ++ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) ++ psdir=$ac_optarg ;; ++ + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; +@@ -587,26 +1061,36 @@ do + ac_init_version=: ;; + + -with-* | --with-*) +- ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 +- { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package| sed 's/-/_/g'` +- case $ac_option in +- *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; +- *) ac_optarg=yes ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid package name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"with_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; + esac +- eval "with_$ac_package='$ac_optarg'" ;; ++ eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) +- ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid package name: $ac_package" >&2 +- { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/-/_/g'` +- eval "with_$ac_package=no" ;; ++ expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && ++ as_fn_error $? "invalid package name: $ac_useropt" ++ ac_useropt_orig=$ac_useropt ++ ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` ++ case $ac_user_opts in ++ *" ++"with_$ac_useropt" ++"*) ;; ++ *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ++ ac_unrecognized_sep=', ';; ++ esac ++ eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. +@@ -626,27 +1110,26 @@ do + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + +- -*) { echo "$as_me: error: unrecognized option: $ac_option +-Try \`$0 --help' for more information." >&2 +- { (exit 1); exit 1; }; } ++ -*) as_fn_error $? "unrecognized option: \`$ac_option' ++Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. +- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && +- { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 +- { (exit 1); exit 1; }; } +- ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` +- eval "$ac_envvar='$ac_optarg'" ++ case $ac_envvar in #( ++ '' | [0-9]* | *[!_$as_cr_alnum]* ) ++ as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; ++ esac ++ eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. +- echo "$as_me: WARNING: you should use --build, --host, --target" >&2 ++ $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && +- echo "$as_me: WARNING: invalid host type: $ac_option" >&2 +- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ++ $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 ++ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +@@ -654,31 +1137,36 @@ done + + if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` +- { echo "$as_me: error: missing argument to $ac_option" >&2 +- { (exit 1); exit 1; }; } ++ as_fn_error $? "missing argument to $ac_option" + fi + +-# Be sure to have absolute paths. +-for ac_var in exec_prefix prefix +-do +- eval ac_val=$`echo $ac_var` +- case $ac_val in +- [\\/$]* | ?:[\\/]* | NONE | '' ) ;; +- *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; };; ++if test -n "$ac_unrecognized_opts"; then ++ case $enable_option_checking in ++ no) ;; ++ fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; ++ *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +-done ++fi + +-# Be sure to have absolute paths. +-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ +- localstatedir libdir includedir oldincludedir infodir mandir ++# Check all directory arguments for consistency. ++for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ ++ datadir sysconfdir sharedstatedir localstatedir includedir \ ++ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ ++ libdir localedir mandir + do +- eval ac_val=$`echo $ac_var` ++ eval ac_val=\$$ac_var ++ # Remove trailing slashes. + case $ac_val in +- [\\/$]* | ?:[\\/]* ) ;; +- *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 +- { (exit 1); exit 1; }; };; ++ */ ) ++ ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` ++ eval $ac_var=\$ac_val;; + esac ++ # Be sure to have absolute directory names. ++ case $ac_val in ++ [\\/$]* | ?:[\\/]* ) continue;; ++ NONE | '' ) case $ac_var in *prefix ) continue;; esac;; ++ esac ++ as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" + done + + # There might be people who depend on the old broken behavior: `$host' +@@ -692,8 +1180,6 @@ target=$target_alias + if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe +- echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. +- If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +@@ -705,74 +1191,72 @@ test -n "$host_alias" && ac_tool_prefix=$host_alias- + test "$silent" = yes && exec 6>/dev/null + + ++ac_pwd=`pwd` && test -n "$ac_pwd" && ++ac_ls_di=`ls -di .` && ++ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || ++ as_fn_error $? "working directory cannot be determined" ++test "X$ac_ls_di" = "X$ac_pwd_ls_di" || ++ as_fn_error $? "pwd does not report name of working directory" ++ ++ + # Find the source files, if location was not specified. + if test -z "$srcdir"; then + ac_srcdir_defaulted=yes +- # Try the directory containing this script, then its parent. +- ac_confdir=`(dirname "$0") 2>/dev/null || +-$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ +- X"$0" : 'X\(//\)[^/]' \| \ +- X"$0" : 'X\(//\)$' \| \ +- X"$0" : 'X\(/\)' \| \ +- . : '\(.\)' 2>/dev/null || +-echo X"$0" | +- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } +- /^X\(\/\/\)[^/].*/{ s//\1/; q; } +- /^X\(\/\/\)$/{ s//\1/; q; } +- /^X\(\/\).*/{ s//\1/; q; } +- s/.*/./; q'` ++ # Try the directory containing this script, then the parent directory. ++ ac_confdir=`$as_dirname -- "$as_myself" || ++$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_myself" : 'X\(//\)[^/]' \| \ ++ X"$as_myself" : 'X\(//\)$' \| \ ++ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || ++$as_echo X"$as_myself" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` + srcdir=$ac_confdir +- if test ! -r $srcdir/$ac_unique_file; then ++ if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi + else + ac_srcdir_defaulted=no + fi +-if test ! -r $srcdir/$ac_unique_file; then +- if test "$ac_srcdir_defaulted" = yes; then +- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 +- { (exit 1); exit 1; }; } +- else +- { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 +- { (exit 1); exit 1; }; } +- fi +-fi +-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || +- { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 +- { (exit 1); exit 1; }; } +-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` +-ac_env_build_alias_set=${build_alias+set} +-ac_env_build_alias_value=$build_alias +-ac_cv_env_build_alias_set=${build_alias+set} +-ac_cv_env_build_alias_value=$build_alias +-ac_env_host_alias_set=${host_alias+set} +-ac_env_host_alias_value=$host_alias +-ac_cv_env_host_alias_set=${host_alias+set} +-ac_cv_env_host_alias_value=$host_alias +-ac_env_target_alias_set=${target_alias+set} +-ac_env_target_alias_value=$target_alias +-ac_cv_env_target_alias_set=${target_alias+set} +-ac_cv_env_target_alias_value=$target_alias +-ac_env_CC_set=${CC+set} +-ac_env_CC_value=$CC +-ac_cv_env_CC_set=${CC+set} +-ac_cv_env_CC_value=$CC +-ac_env_CFLAGS_set=${CFLAGS+set} +-ac_env_CFLAGS_value=$CFLAGS +-ac_cv_env_CFLAGS_set=${CFLAGS+set} +-ac_cv_env_CFLAGS_value=$CFLAGS +-ac_env_LDFLAGS_set=${LDFLAGS+set} +-ac_env_LDFLAGS_value=$LDFLAGS +-ac_cv_env_LDFLAGS_set=${LDFLAGS+set} +-ac_cv_env_LDFLAGS_value=$LDFLAGS +-ac_env_CPPFLAGS_set=${CPPFLAGS+set} +-ac_env_CPPFLAGS_value=$CPPFLAGS +-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} +-ac_cv_env_CPPFLAGS_value=$CPPFLAGS +-ac_env_CPP_set=${CPP+set} +-ac_env_CPP_value=$CPP +-ac_cv_env_CPP_set=${CPP+set} +-ac_cv_env_CPP_value=$CPP ++if test ! -r "$srcdir/$ac_unique_file"; then ++ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." ++ as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" ++fi ++ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ++ac_abs_confdir=`( ++ cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" ++ pwd)` ++# When building in place, set srcdir=. ++if test "$ac_abs_confdir" = "$ac_pwd"; then ++ srcdir=. ++fi ++# Remove unnecessary trailing slashes from srcdir. ++# Double slashes in file names in object file debugging info ++# mess up M-x gdb in Emacs. ++case $srcdir in ++*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; ++esac ++for ac_var in $ac_precious_vars; do ++ eval ac_env_${ac_var}_set=\${${ac_var}+set} ++ eval ac_env_${ac_var}_value=\$${ac_var} ++ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} ++ eval ac_cv_env_${ac_var}_value=\$${ac_var} ++done + + # + # Report the --help message. +@@ -781,7 +1265,7 @@ if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +-\`configure' configures nsca 2.9 to adapt to many kinds of systems. ++\`configure' configures nsca 2.9.1 to adapt to many kinds of systems. + + Usage: $0 [OPTION]... [VAR=VALUE]... + +@@ -795,20 +1279,17 @@ Configuration: + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit +- -q, --quiet, --silent do not print \`checking...' messages ++ -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +-_ACEOF +- +- cat <<_ACEOF + Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX +- [$ac_default_prefix] ++ [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX +- [PREFIX] ++ [PREFIX] + + By default, \`make install' will install all the files in + \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +@@ -818,18 +1299,25 @@ for instance \`--prefix=\$HOME'. + For better control, use the options below. + + Fine tuning of the installation directories: +- --bindir=DIR user executables [EPREFIX/bin] +- --sbindir=DIR system admin executables [EPREFIX/sbin] +- --libexecdir=DIR program executables [EPREFIX/libexec] +- --datadir=DIR read-only architecture-independent data [PREFIX/share] +- --sysconfdir=DIR read-only single-machine data [PREFIX/etc] +- --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] +- --localstatedir=DIR modifiable single-machine data [PREFIX/var] +- --libdir=DIR object code libraries [EPREFIX/lib] +- --includedir=DIR C header files [PREFIX/include] +- --oldincludedir=DIR C header files for non-gcc [/usr/include] +- --infodir=DIR info documentation [PREFIX/info] +- --mandir=DIR man documentation [PREFIX/man] ++ --bindir=DIR user executables [EPREFIX/bin] ++ --sbindir=DIR system admin executables [EPREFIX/sbin] ++ --libexecdir=DIR program executables [EPREFIX/libexec] ++ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data [PREFIX/var] ++ --libdir=DIR object code libraries [EPREFIX/lib] ++ --includedir=DIR C header files [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc [/usr/include] ++ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ++ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ++ --infodir=DIR info documentation [DATAROOTDIR/info] ++ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ++ --mandir=DIR man documentation [DATAROOTDIR/man] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/nsca] ++ --htmldir=DIR html documentation [DOCDIR] ++ --dvidir=DIR dvi documentation [DOCDIR] ++ --pdfdir=DIR pdf documentation [DOCDIR] ++ --psdir=DIR ps documentation [DOCDIR] + _ACEOF + + cat <<\_ACEOF +@@ -842,7 +1330,7 @@ fi + + if test -n "$ac_init_help"; then + case $ac_init_help in +- short | recursive ) echo "Configuration of nsca 2.9:";; ++ short | recursive ) echo "Configuration of nsca 2.9.1:";; + esac + cat <<\_ACEOF + +@@ -862,168 +1350,731 @@ Some influential environment variables: + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory +- CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have +- headers in a nonstandard directory ++ LIBS libraries to pass to the linker, e.g. -l ++ CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if ++ you have headers in a nonstandard directory + CPP C preprocessor + + Use these variables to override the choices made by `configure' or to help + it to find libraries and programs with nonstandard names/locations. + + Report bugs to . ++nsca home page: . + _ACEOF ++ac_status=$? + fi + + if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. +- ac_popdir=`pwd` + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue +- test -d $ac_dir || continue ++ test -d "$ac_dir" || ++ { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || ++ continue + ac_builddir=. + +-if test "$ac_dir" != .; then +- ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` +- # A "../" for each directory in $ac_dir_suffix. +- ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` +-else +- ac_dir_suffix= ac_top_builddir= +-fi ++case "$ac_dir" in ++.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ++*) ++ ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` ++ # A ".." for each directory in $ac_dir_suffix. ++ ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` ++ case $ac_top_builddir_sub in ++ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ++ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ++ esac ;; ++esac ++ac_abs_top_builddir=$ac_pwd ++ac_abs_builddir=$ac_pwd$ac_dir_suffix ++# for backward compatibility: ++ac_top_builddir=$ac_top_build_prefix + + case $srcdir in +- .) # No --srcdir option. We are building in place. ++ .) # We are building in place. + ac_srcdir=. +- if test -z "$ac_top_builddir"; then +- ac_top_srcdir=. +- else +- ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` +- fi ;; +- [\\/]* | ?:[\\/]* ) # Absolute path. ++ ac_top_srcdir=$ac_top_builddir_sub ++ ac_abs_top_srcdir=$ac_pwd ;; ++ [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; +- ac_top_srcdir=$srcdir ;; +- *) # Relative path. +- ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix +- ac_top_srcdir=$ac_top_builddir$srcdir ;; +-esac +- +-# Do not use `cd foo && pwd` to compute absolute paths, because +-# the directories may not exist. +-case `pwd` in +-.) ac_abs_builddir="$ac_dir";; +-*) +- case "$ac_dir" in +- .) ac_abs_builddir=`pwd`;; +- [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; +- *) ac_abs_builddir=`pwd`/"$ac_dir";; +- esac;; +-esac +-case $ac_abs_builddir in +-.) ac_abs_top_builddir=${ac_top_builddir}.;; +-*) +- case ${ac_top_builddir}. in +- .) ac_abs_top_builddir=$ac_abs_builddir;; +- [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; +- *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; +- esac;; +-esac +-case $ac_abs_builddir in +-.) ac_abs_srcdir=$ac_srcdir;; +-*) +- case $ac_srcdir in +- .) ac_abs_srcdir=$ac_abs_builddir;; +- [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; +- *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; +- esac;; +-esac +-case $ac_abs_builddir in +-.) ac_abs_top_srcdir=$ac_top_srcdir;; +-*) +- case $ac_top_srcdir in +- .) ac_abs_top_srcdir=$ac_abs_builddir;; +- [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; +- *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; +- esac;; ++ ac_top_srcdir=$srcdir ++ ac_abs_top_srcdir=$srcdir ;; ++ *) # Relative name. ++ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ++ ac_top_srcdir=$ac_top_build_prefix$srcdir ++ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; + esac +- +- cd $ac_dir +- # Check for guested configure; otherwise get Cygnus style configure. +- if test -f $ac_srcdir/configure.gnu; then +- echo +- $SHELL $ac_srcdir/configure.gnu --help=recursive +- elif test -f $ac_srcdir/configure; then +- echo +- $SHELL $ac_srcdir/configure --help=recursive +- elif test -f $ac_srcdir/configure.ac || +- test -f $ac_srcdir/configure.in; then +- echo +- $ac_configure --help ++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix ++ ++ cd "$ac_dir" || { ac_status=$?; continue; } ++ # Check for guested configure. ++ if test -f "$ac_srcdir/configure.gnu"; then ++ echo && ++ $SHELL "$ac_srcdir/configure.gnu" --help=recursive ++ elif test -f "$ac_srcdir/configure"; then ++ echo && ++ $SHELL "$ac_srcdir/configure" --help=recursive + else +- echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 +- fi +- cd $ac_popdir ++ $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ++ fi || ac_status=$? ++ cd "$ac_pwd" || { ac_status=$?; break; } + done + fi + +-test -n "$ac_init_help" && exit 0 ++test -n "$ac_init_help" && exit $ac_status + if $ac_init_version; then + cat <<\_ACEOF +-nsca configure 2.9 +-generated by GNU Autoconf 2.59 ++nsca configure 2.9.1 ++generated by GNU Autoconf 2.69 + +-Copyright (C) 2003 Free Software Foundation, Inc. ++Copyright (C) 2012 Free Software Foundation, Inc. + This configure script is free software; the Free Software Foundation + gives unlimited permission to copy, distribute and modify it. + _ACEOF +- exit 0 ++ exit + fi +-exec 5>config.log +-cat >&5 <<_ACEOF +-This file contains any messages produced by compilers while +-running configure, to aid debugging if configure makes a mistake. +- +-It was created by nsca $as_me 2.9, which was +-generated by GNU Autoconf 2.59. Invocation command line was + +- $ $0 $@ ++## ------------------------ ## ++## Autoconf initialization. ## ++## ------------------------ ## + +-_ACEOF ++# ac_fn_c_try_compile LINENO ++# -------------------------- ++# Try to compile conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_compile () + { +-cat <<_ASUNAME +-## --------- ## +-## Platform. ## +-## --------- ## ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ rm -f conftest.$ac_objext ++ if { { ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_compile") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +-uname -m = `(uname -m) 2>/dev/null || echo unknown` +-uname -r = `(uname -r) 2>/dev/null || echo unknown` +-uname -s = `(uname -s) 2>/dev/null || echo unknown` +-uname -v = `(uname -v) 2>/dev/null || echo unknown` ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval + +-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +-/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` ++} # ac_fn_c_try_compile + +-/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +-hostinfo = `(hostinfo) 2>/dev/null || echo unknown` +-/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +-/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` ++# ac_fn_c_try_cpp LINENO ++# ---------------------- ++# Try to preprocess conftest.$ac_ext, and return whether this succeeded. ++ac_fn_c_try_cpp () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } > conftest.i && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-_ASUNAME ++ ac_retval=1 ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval + +-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in $PATH +-do +- IFS=$as_save_IFS +- test -z "$as_dir" && as_dir=. +- echo "PATH: $as_dir" +-done ++} # ac_fn_c_try_cpp + +-} >&5 ++# ac_fn_c_try_run LINENO ++# ---------------------- ++# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes ++# that executables *can* be run. ++ac_fn_c_try_run () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if { { ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' ++ { { case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" ++$as_echo "$ac_try_echo"; } >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; }; }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: program exited with status $ac_status" >&5 ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 + +-cat >&5 <<_ACEOF ++ ac_retval=$ac_status ++fi ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval + ++} # ac_fn_c_try_run + +-## ----------- ## ++# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES ++# ------------------------------------------------------- ++# Tests whether HEADER exists, giving a warning if it cannot be compiled using ++# the include files in INCLUDES and setting the cache variable VAR ++# accordingly. ++ac_fn_c_check_header_mongrel () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if eval \${$3+:} false; then : ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++else ++ # Is the header compilable? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 ++$as_echo_n "checking $2 usability... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_header_compiler=yes ++else ++ ac_header_compiler=no ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 ++$as_echo "$ac_header_compiler" >&6; } ++ ++# Is the header present? ++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 ++$as_echo_n "checking $2 presence... " >&6; } ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++#include <$2> ++_ACEOF ++if ac_fn_c_try_cpp "$LINENO"; then : ++ ac_header_preproc=yes ++else ++ ac_header_preproc=no ++fi ++rm -f conftest.err conftest.i conftest.$ac_ext ++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 ++$as_echo "$ac_header_preproc" >&6; } ++ ++# So? What about this header? ++case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( ++ yes:no: ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 ++$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++ ;; ++ no:yes:* ) ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 ++$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 ++$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 ++$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 ++$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 ++$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ++( $as_echo "## ------------------------------------------------- ## ++## Report this to nagios-users at lists.sourceforge.net ## ++## ------------------------------------------------- ##" ++ ) | sed "s/^/$as_me: WARNING: /" >&2 ++ ;; ++esac ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=\$ac_header_compiler" ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++fi ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_header_mongrel ++ ++# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES ++# ------------------------------------------------------- ++# Tests whether HEADER exists and can be compiled using the include files in ++# INCLUDES, setting the cache variable VAR accordingly. ++ac_fn_c_check_header_compile () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++#include <$2> ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_header_compile ++ ++# ac_fn_c_check_type LINENO TYPE VAR INCLUDES ++# ------------------------------------------- ++# Tests whether TYPE exists after having included INCLUDES, setting cache ++# variable VAR accordingly. ++ac_fn_c_check_type () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ eval "$3=no" ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++if (sizeof ($2)) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++if (sizeof (($2))) ++ return 0; ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ++else ++ eval "$3=yes" ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_type ++ ++# ac_fn_c_compute_int LINENO EXPR VAR INCLUDES ++# -------------------------------------------- ++# Tries to find the compile-time value of EXPR in a program that includes ++# INCLUDES, setting VAR accordingly. Returns whether the value could be ++# computed ++ac_fn_c_compute_int () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ if test "$cross_compiling" = yes; then ++ # Depending upon the size, compute the lo and hi bounds. ++cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++static int test_array [1 - 2 * !(($2) >= 0)]; ++test_array [0] = 0; ++return test_array [0]; ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_lo=0 ac_mid=0 ++ while :; do ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++static int test_array [1 - 2 * !(($2) <= $ac_mid)]; ++test_array [0] = 0; ++return test_array [0]; ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_hi=$ac_mid; break ++else ++ as_fn_arith $ac_mid + 1 && ac_lo=$as_val ++ if test $ac_lo -le $ac_mid; then ++ ac_lo= ac_hi= ++ break ++ fi ++ as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ done ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++static int test_array [1 - 2 * !(($2) < 0)]; ++test_array [0] = 0; ++return test_array [0]; ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_hi=-1 ac_mid=-1 ++ while :; do ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++static int test_array [1 - 2 * !(($2) >= $ac_mid)]; ++test_array [0] = 0; ++return test_array [0]; ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_lo=$ac_mid; break ++else ++ as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val ++ if test $ac_mid -le $ac_hi; then ++ ac_lo= ac_hi= ++ break ++ fi ++ as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ done ++else ++ ac_lo= ac_hi= ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++# Binary search between lo and hi bounds. ++while test "x$ac_lo" != "x$ac_hi"; do ++ as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++int ++main () ++{ ++static int test_array [1 - 2 * !(($2) <= $ac_mid)]; ++test_array [0] = 0; ++return test_array [0]; ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_compile "$LINENO"; then : ++ ac_hi=$ac_mid ++else ++ as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val ++fi ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++done ++case $ac_lo in #(( ++?*) eval "$3=\$ac_lo"; ac_retval=0 ;; ++'') ac_retval=1 ;; ++esac ++ else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++$4 ++static long int longval () { return $2; } ++static unsigned long int ulongval () { return $2; } ++#include ++#include ++int ++main () ++{ ++ ++ FILE *f = fopen ("conftest.val", "w"); ++ if (! f) ++ return 1; ++ if (($2) < 0) ++ { ++ long int i = longval (); ++ if (i != ($2)) ++ return 1; ++ fprintf (f, "%ld", i); ++ } ++ else ++ { ++ unsigned long int i = ulongval (); ++ if (i != ($2)) ++ return 1; ++ fprintf (f, "%lu", i); ++ } ++ /* Do not output a trailing newline, as this causes \r\n confusion ++ on some platforms. */ ++ return ferror (f) || fclose (f) != 0; ++ ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_run "$LINENO"; then : ++ echo >>conftest.val; read $3 &5 ++ (eval "$ac_link") 2>conftest.err ++ ac_status=$? ++ if test -s conftest.err; then ++ grep -v '^ *+' conftest.err >conftest.er1 ++ cat conftest.er1 >&5 ++ mv -f conftest.er1 conftest.err ++ fi ++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 ++ test $ac_status = 0; } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && { ++ test "$cross_compiling" = yes || ++ test -x conftest$ac_exeext ++ }; then : ++ ac_retval=0 ++else ++ $as_echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_retval=1 ++fi ++ # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information ++ # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would ++ # interfere with the next link command; also delete a directory that is ++ # left behind by Apple's compiler. We do this before executing the actions. ++ rm -rf conftest.dSYM conftest_ipa8_conftest.oo ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ as_fn_set_status $ac_retval ++ ++} # ac_fn_c_try_link ++ ++# ac_fn_c_check_func LINENO FUNC VAR ++# ---------------------------------- ++# Tests whether FUNC exists, setting the cache variable VAR accordingly ++ac_fn_c_check_func () ++{ ++ as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 ++$as_echo_n "checking for $2... " >&6; } ++if eval \${$3+:} false; then : ++ $as_echo_n "(cached) " >&6 ++else ++ cat confdefs.h - <<_ACEOF >conftest.$ac_ext ++/* end confdefs.h. */ ++/* Define $2 to an innocuous variant, in case declares $2. ++ For example, HP-UX 11i declares gettimeofday. */ ++#define $2 innocuous_$2 ++ ++/* System header to define __stub macros and hopefully few prototypes, ++ which can conflict with char $2 (); below. ++ Prefer to if __STDC__ is defined, since ++ exists even on freestanding compilers. */ ++ ++#ifdef __STDC__ ++# include ++#else ++# include ++#endif ++ ++#undef $2 ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char $2 (); ++/* The GNU C library defines this for functions which it implements ++ to always fail with ENOSYS. Some functions are actually named ++ something starting with __ and the normal name is an alias. */ ++#if defined __stub_$2 || defined __stub___$2 ++choke me ++#endif ++ ++int ++main () ++{ ++return $2 (); ++ ; ++ return 0; ++} ++_ACEOF ++if ac_fn_c_try_link "$LINENO"; then : ++ eval "$3=yes" ++else ++ eval "$3=no" ++fi ++rm -f core conftest.err conftest.$ac_objext \ ++ conftest$ac_exeext conftest.$ac_ext ++fi ++eval ac_res=\$$3 ++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 ++$as_echo "$ac_res" >&6; } ++ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno ++ ++} # ac_fn_c_check_func ++cat >config.log <<_ACEOF ++This file contains any messages produced by compilers while ++running configure, to aid debugging if configure makes a mistake. ++ ++It was created by nsca $as_me 2.9.1, which was ++generated by GNU Autoconf 2.69. Invocation command line was ++ ++ $ $0 $@ ++ ++_ACEOF ++exec 5>>config.log ++{ ++cat <<_ASUNAME ++## --------- ## ++## Platform. ## ++## --------- ## ++ ++hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` ++uname -m = `(uname -m) 2>/dev/null || echo unknown` ++uname -r = `(uname -r) 2>/dev/null || echo unknown` ++uname -s = `(uname -s) 2>/dev/null || echo unknown` ++uname -v = `(uname -v) 2>/dev/null || echo unknown` ++ ++/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` ++/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` ++ ++/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` ++/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` ++/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` ++/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` ++/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` ++/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` ++/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` ++ ++_ASUNAME ++ ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ $as_echo "PATH: $as_dir" ++ done ++IFS=$as_save_IFS ++ ++} >&5 ++ ++cat >&5 <<_ACEOF ++ ++ ++## ----------- ## + ## Core tests. ## + ## ----------- ## + +@@ -1038,7 +2089,6 @@ _ACEOF + ac_configure_args= + ac_configure_args0= + ac_configure_args1= +-ac_sep= + ac_must_keep_next=false + for ac_pass in 1 2 + do +@@ -1049,13 +2099,13 @@ do + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; +- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) +- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *\'*) ++ ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in +- 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; ++ 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) +- ac_configure_args1="$ac_configure_args1 '$ac_arg'" ++ as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else +@@ -1071,104 +2121,115 @@ do + -* ) ac_must_keep_next=true ;; + esac + fi +- ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" +- # Get rid of the leading space. +- ac_sep=" " ++ as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done + done +-$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +-$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } ++{ ac_configure_args0=; unset ac_configure_args0;} ++{ ac_configure_args1=; unset ac_configure_args1;} + + # When interrupted or exit'd, cleanup temporary files, and complete + # config.log. We remove comments because anyway the quotes in there + # would cause problems or look ugly. +-# WARNING: Be sure not to use single quotes in there, as some shells, +-# such as our DU 5.0 friend, will then `close' the trap. ++# WARNING: Use '\'' to represent an apostrophe within the trap. ++# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. + trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + +- cat <<\_ASBOX +-## ---------------- ## ++ $as_echo "## ---------------- ## + ## Cache variables. ## +-## ---------------- ## +-_ASBOX ++## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +-{ ++( ++ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do ++ eval ac_val=\$$ac_var ++ case $ac_val in #( ++ *${as_nl}*) ++ case $ac_var in #( ++ *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 ++$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; ++ esac ++ case $ac_var in #( ++ _ | IFS | as_nl) ;; #( ++ BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( ++ *) { eval $ac_var=; unset $ac_var;} ;; ++ esac ;; ++ esac ++ done + (set) 2>&1 | +- case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in +- *ac_space=\ *) ++ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( ++ *${as_nl}ac_space=\ *) + sed -n \ +- "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; +- s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" +- ;; ++ "s/'\''/'\''\\\\'\'''\''/g; ++ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ++ ;; #( + *) +- sed -n \ +- "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ++ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; +- esac; +-} ++ esac | ++ sort ++) + echo + +- cat <<\_ASBOX +-## ----------------- ## ++ $as_echo "## ----------------- ## + ## Output variables. ## +-## ----------------- ## +-_ASBOX ++## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do +- eval ac_val=$`echo $ac_var` +- echo "$ac_var='"'"'$ac_val'"'"'" ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then +- cat <<\_ASBOX +-## ------------- ## +-## Output files. ## +-## ------------- ## +-_ASBOX ++ $as_echo "## ------------------- ## ++## File substitutions. ## ++## ------------------- ##" + echo + for ac_var in $ac_subst_files + do +- eval ac_val=$`echo $ac_var` +- echo "$ac_var='"'"'$ac_val'"'"'" ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then +- cat <<\_ASBOX +-## ----------- ## ++ $as_echo "## ----------- ## + ## confdefs.h. ## +-## ----------- ## +-_ASBOX ++## ----------- ##" + echo +- sed "/^$/d" confdefs.h | sort ++ cat confdefs.h + echo + fi + test "$ac_signal" != 0 && +- echo "$as_me: caught signal $ac_signal" +- echo "$as_me: exit $exit_status" ++ $as_echo "$as_me: caught signal $ac_signal" ++ $as_echo "$as_me: exit $exit_status" + } >&5 +- rm -f core *.core && +- rm -rf conftest* confdefs* conf$$* $ac_clean_files && ++ rm -f core *.core core.conftest.* && ++ rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +- ' 0 ++' 0 + for ac_signal in 1 2 13 15; do +- trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal ++ trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal + done + ac_signal=0 + + # confdefs.h avoids OS command line length limits that DEFS can exceed. +-rm -rf conftest* confdefs.h +-# AIX cpp loses on an empty file, so make sure it contains at least a newline. +-echo >confdefs.h ++rm -f -r conftest* confdefs.h ++ ++$as_echo "/* confdefs.h */" > confdefs.h + + # Predefined preprocessor variables. + +@@ -1176,42 +2237,57 @@ cat >>confdefs.h <<_ACEOF + #define PACKAGE_NAME "$PACKAGE_NAME" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_TARNAME "$PACKAGE_TARNAME" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_VERSION "$PACKAGE_VERSION" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_STRING "$PACKAGE_STRING" + _ACEOF + +- + cat >>confdefs.h <<_ACEOF + #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" + _ACEOF + ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_URL "$PACKAGE_URL" ++_ACEOF ++ + + # Let the site file select an alternate cache file if it wants to. +-# Prefer explicitly selected file to automatically selected ones. +-if test -z "$CONFIG_SITE"; then +- if test "x$prefix" != xNONE; then +- CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" +- else +- CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" +- fi ++# Prefer an explicitly selected file to automatically selected ones. ++ac_site_file1=NONE ++ac_site_file2=NONE ++if test -n "$CONFIG_SITE"; then ++ # We do not want a PATH search for config.site. ++ case $CONFIG_SITE in #(( ++ -*) ac_site_file1=./$CONFIG_SITE;; ++ */*) ac_site_file1=$CONFIG_SITE;; ++ *) ac_site_file1=./$CONFIG_SITE;; ++ esac ++elif test "x$prefix" != xNONE; then ++ ac_site_file1=$prefix/share/config.site ++ ac_site_file2=$prefix/etc/config.site ++else ++ ac_site_file1=$ac_default_prefix/share/config.site ++ ac_site_file2=$ac_default_prefix/etc/config.site + fi +-for ac_site_file in $CONFIG_SITE; do +- if test -r "$ac_site_file"; then +- { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +-echo "$as_me: loading site script $ac_site_file" >&6;} ++for ac_site_file in "$ac_site_file1" "$ac_site_file2" ++do ++ test "x$ac_site_file" = xNONE && continue ++ if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 ++$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 +- . "$ac_site_file" ++ . "$ac_site_file" \ ++ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++as_fn_error $? "failed to load site script $ac_site_file ++See \`config.log' for more details" "$LINENO" 5; } + fi + done + +@@ -1219,53 +2295,63 @@ done + # Check that the precious variables saved in the cache have kept the same + # value. + ac_cache_corrupted=false +-for ac_var in `(set) 2>&1 | +- sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do ++for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set +- eval ac_old_val="\$ac_cv_env_${ac_var}_value" +- eval ac_new_val="\$ac_env_${ac_var}_value" ++ eval ac_old_val=\$ac_cv_env_${ac_var}_value ++ eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) +- { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) +- { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +-echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 ++$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then +- { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +-echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} +- { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +-echo "$as_me: former value: $ac_old_val" >&2;} +- { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +-echo "$as_me: current value: $ac_new_val" >&2;} +- ac_cache_corrupted=: ++ # differences in whitespace do not lead to failure. ++ ac_old_val_w=`echo x $ac_old_val` ++ ac_new_val_w=`echo x $ac_new_val` ++ if test "$ac_old_val_w" != "$ac_new_val_w"; then ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 ++$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ ac_cache_corrupted=: ++ else ++ { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 ++$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} ++ eval $ac_var=\$ac_old_val ++ fi ++ { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 ++$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 ++$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in +- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) +- ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. +- *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; ++ *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi + done + if $ac_cache_corrupted; then +- { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +-echo "$as_me: error: changes in the environment can compromise the build" >&2;} +- { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +-echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} +- { (exit 1); exit 1; }; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 ++$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} ++ { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 ++$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 + fi ++## -------------------- ## ++## Main body of script. ## ++## -------------------- ## + + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -1275,34 +2361,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + ++ac_config_headers="$ac_config_headers include/config.h" + +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ac_config_headers="$ac_config_headers include/config.h" +- +- ac_config_files="$ac_config_files Makefile subst src/Makefile package/solaris/Makefile init-script sample-config/nsca.cfg sample-config/send_nsca.cfg sample-config/nsca.xinetd" ++ac_config_files="$ac_config_files Makefile subst src/Makefile package/solaris/Makefile init-script sample-config/nsca.cfg sample-config/send_nsca.cfg sample-config/nsca.xinetd" + + + +@@ -1316,29 +2377,33 @@ PKG_REL_DATE="01-27-2012" + + + ac_aux_dir= +-for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do +- if test -f $ac_dir/install-sh; then ++for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do ++ if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break @@ 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 Thu Jul 12 15:31:26 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 12 Jul 2012 13:31:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[18713] csw/mgar/pkg/nsca/trunk/Makefile Message-ID: Revision: 18713 http://gar.svn.sourceforge.net/gar/?rev=18713&view=rev Author: j_arndt Date: 2012-07-12 13:31:25 +0000 (Thu, 12 Jul 2012) Log Message: ----------- nsca/trunk: added config migration Modified Paths: -------------- csw/mgar/pkg/nsca/trunk/Makefile Modified: csw/mgar/pkg/nsca/trunk/Makefile =================================================================== --- csw/mgar/pkg/nsca/trunk/Makefile 2012-07-12 13:12:30 UTC (rev 18712) +++ csw/mgar/pkg/nsca/trunk/Makefile 2012-07-12 13:31:25 UTC (rev 18713) @@ -124,8 +124,17 @@ USERGROUP_CSWsendnsca = $(SEND_NSCA_USERGROUP) # +# config migration # + +MIGRATE_FILES_CSWnsca = nsca.cfg +MIGRATE_FILES_CSWsendnsca = send_nsca.cfg +MIGRATE_SOURCE_DIR = /opt/csw/nagios/etc +MIGRATE_DEST_DIR = /etc/opt/csw/nagios + # +# +# NOISALIST = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 12 15:52:46 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 12 Jul 2012 13:52:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18714] csw/mgar/pkg/libming/trunk Message-ID: Revision: 18714 http://gar.svn.sourceforge.net/gar/?rev=18714&view=rev Author: pfelecan Date: 2012-07-12 13:52:45 +0000 (Thu, 12 Jul 2012) Log Message: ----------- libming/trunk: - verified and validated overrideds - patch the include path for makeswf utility Modified Paths: -------------- csw/mgar/pkg/libming/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libming/trunk/files/0002-makeswf-include-path.patch Modified: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile 2012-07-12 13:31:25 UTC (rev 18713) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-12 13:52:45 UTC (rev 18714) @@ -19,6 +19,7 @@ DISTNAME = $(SF_PROJ)-$(VERSION) DISTFILES = $(DISTNAME).tar.bz2 PATCHFILES += 0001-PrintGifError-to-GifErrorString.patch +PATCHFILES += 0002-makeswf-include-path.patch GARCOMPILER = GNU @@ -44,6 +45,11 @@ OBSOLETED_BY_CSWlibming-utils = CSWlibming CATALOGNAME_CSWlibming = libming_stub RUNTIME_DEP_PKGS_CSWlibming-utils += CSWlibming1 +# transitivity: +CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibbz2-1-0 +CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibfreetype6 +CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibpng12-0 +CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibz1 SPKG_DESC_CSWlibming-utils = $(DESCRIPTION), utilities @@ -58,18 +64,20 @@ RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgif4 +CHECKPKG_OVERRIDES_CSWlibming1 += surplus-dependency|CSWlibgif4 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibpng12-0 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibz1 -PACKAGES += CSWlibming-dev -CATALOGNAME_CSWlibming-dev = libming_dev -SPKG_DESC_CSWlibming-dev += $(DESCRIPTION), development files -PKGFILES_CSWlibming-dev += /opt/csw/lib/libming.so -PKGFILES_CSWlibming-dev += $(PKGFILES_DEVEL) -OBSOLETED_BY_CSWlibming-dev = CSWlibmingdevel -CATALOGNAME_CSWlibmingdevel = libming_devel_stub -RUNTIME_DEP_PKGS_CSWlibming-dev += CSWlibming1 -ARCHALL_CSWlibming-dev = 1 +PACKAGES += CSWlibming-dev +CATALOGNAME_CSWlibming-dev = libming_dev +SPKG_DESC_CSWlibming-dev += $(DESCRIPTION), development files +PKGFILES_CSWlibming-dev += /opt/csw/lib/libming.so +PKGFILES_CSWlibming-dev += $(PKGFILES_DEVEL) +OBSOLETED_BY_CSWlibming-dev = CSWlibmingdevel +CATALOGNAME_CSWlibmingdevel = libming_devel_stub +RUNTIME_DEP_PKGS_CSWlibming-dev += CSWlibming1 +ARCHALL_CSWlibming-dev = 1 +CHECKPKG_OVERRIDES_CSWlibming-dev += archall-devel-package include gar/category.mk Added: csw/mgar/pkg/libming/trunk/files/0002-makeswf-include-path.patch =================================================================== --- csw/mgar/pkg/libming/trunk/files/0002-makeswf-include-path.patch (rev 0) +++ csw/mgar/pkg/libming/trunk/files/0002-makeswf-include-path.patch 2012-07-12 13:52:45 UTC (rev 18714) @@ -0,0 +1,25 @@ +From 63746bd44306c533f1d8d83e999589f84d39fdbf Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 12 Jul 2012 15:49:48 +0200 +Subject: [PATCH] makeswf include path + +--- + util/makeswf.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/util/makeswf.h b/util/makeswf.h +index cf3500a..a7211a2 100644 +--- a/util/makeswf.h ++++ b/util/makeswf.h +@@ -19,7 +19,7 @@ + ***************************************************************************/ + + /* Set this to the default include path */ +-#define DEFAULT_FLAGS "-I/usr/share/actionscript -I/usr/local/share/actionscript -I." ++#define DEFAULT_FLAGS "-I/opt/csw/share/actionscript -I." + + /** + * Use a value of 0 to skip the preprocessing phase (unreccommended) +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 12 16:35:37 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 12 Jul 2012 14:35:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[18715] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 18715 http://gar.svn.sourceforge.net/gar/?rev=18715&view=rev Author: pfelecan Date: 2012-07-12 14:35:37 +0000 (Thu, 12 Jul 2012) Log Message: ----------- pstoedit/trunk: - revert to gcc - try to package for all platforms - post-configuration specific patch Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-12 13:52:45 UTC (rev 18714) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-12 14:35:37 UTC (rev 18715) @@ -18,7 +18,7 @@ BUILD_DEP_PKGS += CSWplotutils-dev BUILD_DEP_PKGS += CSWbison -GARCOMPILER = SOS12U3 +GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libplot @@ -27,11 +27,33 @@ LICENSE = copying -PACKAGING_PLATFORMS = solaris10-sparc -PACKAGING_PLATFORMS += solaris10-i386 - include gar/category.mk +PATH := /opt/csw/gnu:/opt/csw/php5/bin:$(PATH) + +openmpList = \ + Makefile \ + config/Makefile \ + msdev/Makefile \ + misc/swffonts/Makefile \ + misc/Makefile \ + m4/Makefile \ + othersrc/gsdllinc/Makefile \ + othersrc/Makefile \ + contrib/java/java2/Makefile \ + contrib/java/Makefile \ + contrib/java/java1/Makefile \ + contrib/Makefile \ + contrib/cairo/Makefile \ + src/Makefile \ + examples/Makefile \ + doc/Makefile \ + os2/Makefile + +post-configure-modulated: + cd $(WORKSRC) && sed --in-place --expression='s/ -xopenmp//' $(openmpList) + $(MAKECOOKIE) + # this is private and not available publicly mydependencies: $(HOME)/bin/ocswdeplist --package $(NAME) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Fri Jul 13 00:32:54 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 12 Jul 2012 22:32:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18716] csw/mgar/gar/v2/lib/python/checkpkg_lib.py Message-ID: Revision: 18716 http://gar.svn.sourceforge.net/gar/?rev=18716&view=rev Author: chninkel Date: 2012-07-12 22:32:54 +0000 (Thu, 12 Jul 2012) Log Message: ----------- checkpkg: fixed a unicode handling problem Modified Paths: -------------- csw/mgar/gar/v2/lib/python/checkpkg_lib.py Modified: csw/mgar/gar/v2/lib/python/checkpkg_lib.py =================================================================== --- csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2012-07-12 14:35:37 UTC (rev 18715) +++ csw/mgar/gar/v2/lib/python/checkpkg_lib.py 2012-07-12 22:32:54 UTC (rev 18716) @@ -247,7 +247,8 @@ continue tag_info=e.tag_info if tag_info is not None: - tag_info=unicode(tag_info, "utf-8") + if not isinstance(tag_info, unicode): + tag_info=unicode(tag_info, "utf-8") error_tag_in_db = m.CheckpkgErrorTag( srv4_file=db_stat_objs_by_pkgname[e.pkgname], pkgname=e.pkgname, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Fri Jul 13 00:54:40 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Thu, 12 Jul 2012 22:54:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18717] csw/mgar/pkg/gnome-base/gnomevfs2/trunk/Makefile Message-ID: Revision: 18717 http://gar.svn.sourceforge.net/gar/?rev=18717&view=rev Author: chninkel Date: 2012-07-12 22:54:39 +0000 (Thu, 12 Jul 2012) Log Message: ----------- gnome-base/gnomevfs2/trunk: updated samba dependency name and disabled test check (for now) Modified Paths: -------------- csw/mgar/pkg/gnome-base/gnomevfs2/trunk/Makefile Modified: csw/mgar/pkg/gnome-base/gnomevfs2/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnome-base/gnomevfs2/trunk/Makefile 2012-07-12 22:32:54 UTC (rev 18716) +++ csw/mgar/pkg/gnome-base/gnomevfs2/trunk/Makefile 2012-07-12 22:54:39 UTC (rev 18717) @@ -31,7 +31,7 @@ # PKGFILES is catchall RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWlibgthread2-0-0 RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWlibbz2-1-0 -RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWsambalib +RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWlibsmbclient0 RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWlibgmodule2-0-0 RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWlibz1 RUNTIME_DEP_PKGS_CSWgnomevfs2 += CSWlibintl8 @@ -80,6 +80,8 @@ CONFIGURE_ARGS += --enable-static=no CONFIGURE_ARGS += --enable-gtk-doc +TEST_SCRIPTS = + include gar/category.mk # For GNU gettext This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 08:54:17 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 06:54:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[18718] csw/mgar/pkg/libming/trunk/Makefile Message-ID: Revision: 18718 http://gar.svn.sourceforge.net/gar/?rev=18718&view=rev Author: pfelecan Date: 2012-07-13 06:54:16 +0000 (Fri, 13 Jul 2012) Log Message: ----------- libming/trunk: completed build dependencies Modified Paths: -------------- csw/mgar/pkg/libming/trunk/Makefile Modified: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile 2012-07-12 22:54:39 UTC (rev 18717) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 06:54:16 UTC (rev 18718) @@ -23,8 +23,11 @@ GARCOMPILER = GNU -BUILD_DEP_PKGS += CSWphp5 -BUILD_DEP_PKGS += CSWphp5-dev +BUILD_DEP_PKGS += CSWlibgif-dev +BUILD_DEP_PKGS += CSWlibbz2-dev +BUILD_DEP_PKGS += CSWlibfreetype-dev +BUILD_DEP_PKGS += CSWlibpng-dev +BUILD_DEP_PKGS += CSWlibz-dev CONFIGURE_ARGS = $(DIRPATHS) # gcc -kPIC issue because Python was compiled with SOS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 09:49:48 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 07:49:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[18719] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 18719 http://gar.svn.sourceforge.net/gar/?rev=18719&view=rev Author: pfelecan Date: 2012-07-13 07:49:48 +0000 (Fri, 13 Jul 2012) Log Message: ----------- pstoedit/trunk: split in subpackages Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-13 06:54:16 UTC (rev 18718) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-13 07:49:48 UTC (rev 18719) @@ -27,6 +27,39 @@ LICENSE = copying +PACKAGES += CSWpstoedit +CATALOGNAME_CSWpstoedit = pstoedit +SPKG_DESC_CSWpstoedit = $(DESCRIPTION) +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibpstoedit0 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++5 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore5 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibplotter2 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibstdc++6 + +PACKAGES += CSWlibpstoedit0 +CATALOGNAME_CSWlibpstoedit0 = libpstoedit0 +PKGFILES_CSWlibpstoedit0 += $(call baseisadirs,$(libdir),libpstoedit\.so\.0\.0\.0) +PKGFILES_CSWlibpstoedit0 += $(call baseisadirs,$(libdir),libpstoedit\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibpstoedit0 += $(DESCRIPTION), libpstoedit.so.0 +OBSOLETED_BY_CSWlibpstoedit0 = CSWpstoeditrt +CATALOGNAME_CSWpstoeditrt = pstoedit_rt_stub +RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibstdc++6 + +PACKAGES += CSWpstoedit-dev +CATALOGNAME_CSWpstoedit-dev = pstoedit_dev +SPKG_DESC_CSWpstoedit-dev += $(DESCRIPTION), development files +PKGFILES_CSWpstoedit-dev += /opt/csw/lib/libpstoedit.so +PKGFILES_CSWpstoedit-dev += $(PKGFILES_DEVEL) +ARCHALL_CSWpstoedit-dev = 1 +CHECKPKG_OVERRIDES_CSWpstoedit-dev += archall-devel-package +OBSOLETED_BY_CSWpstoedit-dev = CSWpstoeditdevel +CATALOGNAME_CSWpstoeditdevel = pstoedit_devel_stub +RUNTIME_DEP_PKGS_CSWpstoedit-dev += CSWlibpstoedit0 + include gar/category.mk PATH := /opt/csw/gnu:/opt/csw/php5/bin:$(PATH) @@ -56,4 +89,4 @@ # this is private and not available publicly mydependencies: - $(HOME)/bin/ocswdeplist --package $(NAME) + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 10:20:30 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 08:20:30 +0000 Subject: [csw-devel] SF.net SVN: gar:[18720] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 18720 http://gar.svn.sourceforge.net/gar/?rev=18720&view=rev Author: pfelecan Date: 2012-07-13 08:20:30 +0000 (Fri, 13 Jul 2012) Log Message: ----------- pstoedit/trunk: downgraded dependency on libmagic packages to support Solaris 9... Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-13 07:49:48 UTC (rev 18719) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-13 08:20:30 UTC (rev 18720) @@ -33,8 +33,8 @@ RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibpstoedit0 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgd2 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++5 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore5 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++4 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore4 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibplotter2 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibstdc++6 @@ -45,7 +45,7 @@ SPKG_DESC_CSWlibpstoedit0 += $(DESCRIPTION), libpstoedit.so.0 OBSOLETED_BY_CSWlibpstoedit0 = CSWpstoeditrt CATALOGNAME_CSWpstoeditrt = pstoedit_rt_stub -RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibgd2 RUNTIME_DEP_PKGS_CSWlibpstoedit0 += CSWlibstdc++6 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 Jul 13 10:26:33 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Fri, 13 Jul 2012 08:26:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18721] csw/mgar/pkg/icinga/trunk Message-ID: Revision: 18721 http://gar.svn.sourceforge.net/gar/?rev=18721&view=rev Author: j_arndt Date: 2012-07-13 08:26:33 +0000 (Fri, 13 Jul 2012) Log Message: ----------- icinga/trunk: update to 1.7.1 Modified Paths: -------------- csw/mgar/pkg/icinga/trunk/Makefile csw/mgar/pkg/icinga/trunk/checksums csw/mgar/pkg/icinga/trunk/files/cswicinga csw/mgar/pkg/icinga/trunk/files/cswusergroup Added Paths: ----------- csw/mgar/pkg/icinga/trunk/files/0001-use-of-CSW-perl.patch csw/mgar/pkg/icinga/trunk/files/0002-changed-install-and-command-options-in-configure.patch Removed Paths: ------------- csw/mgar/pkg/icinga/trunk/files/CSWicinga.gspec csw/mgar/pkg/icinga/trunk/files/CSWicinga.prototype csw/mgar/pkg/icinga/trunk/files/cmd.c.diff csw/mgar/pkg/icinga/trunk/files/install-opts.diff csw/mgar/pkg/icinga/trunk/files/patch.diff Modified: csw/mgar/pkg/icinga/trunk/Makefile =================================================================== --- csw/mgar/pkg/icinga/trunk/Makefile 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/Makefile 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,100 +1,226 @@ -NAME = icinga -VERSION = 0.8.1 -CATEGORIES = apps -GARTYPE = v2 +NAME = icinga +VERSION = 1.7.1 +CATEGORIES = apps +GARTYPE = v2 -DESCRIPTION = icinga network monitoring base package (no plugins) +# +# package definition +# + +PACKAGES += CSWicinga + +SPKG_DESC_CSWicinga = Icinga network monitoring base package (no plugins) + +CATALOGNAME_CSWicinga = icinga + +PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc + +# +# blurb +# + define BLURB + Icinga is an enterprise grade open source monitoring system which keeps watch over networks and any conceivable network resource, notifies the user of errors and recoveries and generates performance data for reporting. Icinga is a fork of Nagios and is backward compatible. endef -SF_PROJ = icinga -MASTER_SITES = $(SF_MIRRORS) -DISTFILES = $(NAME)-$(VERSION).tar.gz -DISTFILES += $(call admfiles,CSWicinga, prototype) -DISTFILES += cswicinga -DISTFILES += cswusergroup +# +# download, distfiles, patchfiles +# -PATCHFILES = cmd.c.diff # cgi/cmd.c - GNU macro __attribute__ unknown to compiler +MASTER_SITES = $(SF_MIRRORS) +DISTNAME = $(NAME)-$(VERSION) +DISTFILES = $(NAME)-$(VERSION).tar.gz -PATCHFILES += patch.diff # 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 += install-opts.diff # sets in every Makefile.in "INSTALL_OPT="" (empty) - # necessary, so ginstall doesn't get -o and -g options +PATCHFILES += 0001-use-of-CSW-perl.patch +PATCHFILES += 0002-changed-install-and-command-options-in-configure.patch -RUNTIME_DEP_PKGS = CSWgd CSWggettextrt CSWglib2 CSWiconv CSWjpeg CSWperl CSWpng CSWzlib -RUNTIME_DEP_PKGS += CSWnagiosp CSWcswclassutils +# +# +# -SPKG_CLASSES = none cswusergroup ugfiles cswpreserveconf cswinitsmf +LICENSE = LICENSE NOISALIST = 1 -ENABLE_CHECK = 0 +# +# reinplacements +# +REINPLACE_USRLOCAL += html/docs/de/* +REINPLACE_USRLOCAL += html/docs/en/* +REINPLACE_USRSHARE += html/docs/de/* +REINPLACE_USRSHARE += html/docs/en/* + +REINPLACE_USRLOCAL += p1\.pl\.in +REINPLACE_USRLOCAL += base/icinga\.c +REINPLACE_USRLOCAL += sample-config/icinga\.cfg\.in +REINPLACE_USRLOCAL += sample-config/cgi\.cfg\.in +REINPLACE_USRLOCAL += module/idoutils/config/ido2db\.cfg-sample\.in +REINPLACE_USRLOCAL += module/idoutils/config/idomod\.cfg-sample\.in + +# +# runtime dependencies +# + +RUNTIME_DEP_PKGS_CSWicinga += CSWlibpng12-0 +RUNTIME_DEP_PKGS_CSWicinga += CSWlibz1 +RUNTIME_DEP_PKGS_CSWicinga += CSWfreetype +RUNTIME_DEP_PKGS_CSWicinga += CSWlibgd2 +RUNTIME_DEP_PKGS_CSWicinga += CSWperl +RUNTIME_DEP_PKGS_CSWicinga += CSWlibjpeg7 +RUNTIME_DEP_PKGS_CSWicinga += CSWapache2 +RUNTIME_DEP_PKGS_CSWicinga += CSWap2-modphp5 +RUNTIME_DEP_PKGS_CSWicinga += CSWnagios-plugins + +# +# prototypes +# + +ICINGA_UGFILES += /var/opt/csw/icinga* +ICINGA_UGFILES += /etc/opt/csw/icinga* +ICINGA_UGFILES += /opt/csw/etc/templates/CSWicinga/.* + +PROTOTYPE_MODIFIERS += ugfiles +PROTOTYPE_FILES_ugfiles += $(ICINGA_UGFILES) +PROTOTYPE_USER_ugfiles += icinga +PROTOTYPE_GROUP_ugfiles += icinga +PROTOTYPE_CLASS_ugfiles += cswcptemplates + +ICINGA_CMD += /var/opt/csw/icinga/rw.* + +PROTOTYPE_MODIFIERS += cmd +PROTOTYPE_FILES_cmd += $(ICINGA_CMD) +PROTOTYPE_USER_cmd += icinga +PROTOTYPE_GROUP_cmd += icingacm +PROTOTYPE_PERMS_cmd += 2755 +PROTOTYPE_CLASS_cmd += cswcptemplates + + +# +# overrides +# + +CHECKPKG_OVERRIDES_CSWicinga += file-with-bad-content|/usr/local|root/opt/csw/share/doc/icinga/Changelog + +CHECKPKG_OVERRIDES_CSWicinga += surplus-dependency|CSWnagios-plugins +CHECKPKG_OVERRIDES_CSWicinga += surplus-dependency|CSWap2-modphp5 + +# +# +# + +INITSMF = /etc/opt/csw/init.d/cswicinga +USERGROUP = /etc/opt/csw/pkg/CSWicinga/cswusergroup +#POSTMSG = /opt/csw/share/doc/icinga/README.CSW + +# +# configure +# + prefix = $(BUILD_PREFIX)/icinga libexecdir = $(BUILD_PREFIX)/libexec/nagios-plugins -localstatedir = /var/opt/csw/icinga +sysconfdir = /etc$(prefix) -CONFIGURE_ARGS = $(DIRPATHS) -CONFIGURE_ARGS += --prefix=$(prefix) -CONFIGURE_ARGS += --exec-prefix=$(exec_prefix) -CONFIGURE_ARGS += --with-command-user=icinga -CONFIGURE_ARGS += --with-command-group=icinga -CONFIGURE_ARGS += --with-httpd-conf=/opt/csw/apache2/etc -CONFIGURE_ARGS += --enable-embedded-perl -#CONFIGURE_ARGS += --enable-idoutils # requires libdbi.so -CONFIGURE_ARGS += --with-checkresult-dir=/var/opt/csw/icinga/spool/checkresults -CONFIGURE_ARGS += --with-lockfile=/var/opt/csw/icinga/icinga.lock +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-log-dir=/var/opt/csw/icinga/log +CONFIGURE_ARGS += --prefix=$(prefix) +CONFIGURE_ARGS += --exec-prefix=$(exec_prefix) +CONFIGURE_ARGS += --with-httpd-conf=$(sysconfdir) +CONFIGURE_ARGS += --with-gd-lib=$(BUILD_PREFIX)/lib +CONFIGURE_ARGS += --with-gd-inc=$(BUILD_PREFIX)/inc +CONFIGURE_ARGS += --with-dbi-lib=$(BUILD_PREFIX)/lib +CONFIGURE_ARGS += --with-dbi-inc=$(BUILD_PREFIX)/include +CONFIGURE_ARGS += --enable-embedded-perl +CONFIGURE_ARGS += --with-lockfile=/var/opt/csw/icinga/icinga.lock +CONFIGURE_ARGS += --localstatedir=/var$(prefix) +CONFIGURE_ARGS += --enable-idoutils +CONFIGURE_ENV += install_user=$(USER) install_grp=csw # see patch 0002-changed-install-and-command-options-in-configure.patch +CONFIGURE_ENV += PATH=/usr/bin:/usr/ccs/bin:/opt/csw/bin:/opt/csw/bin/ +CONFIGURE_ENV += CC=/opt/SUNWspro/bin/cc +CONFIGURE_ENV += PERL=/opt/csw/bin/perl +# +# build +# + +BUILD_ENV_PATH = $(bindir):$(PATH) + EXTRA_LIB = $(BUILD_PREFIX)/lib +LD_OPTIONS += -R/opt/csw/lib +LD_OPTIONS += -R/opt/csw/icinga/lib + BUILD_ARGS = all -#ENABLE_CHECK = 0 +TEST_SCRIPTS = -TEST_TARGET = none +# +# install +# -INSTALL_ARGS += install-init -#INSTALL_ARGS += install-config +# Icinga Makefile calls 'make install' by default + INSTALL_ARGS += install-commandmode -LD_OPTIONS += -R/opt/csw/lib -LD_OPTIONS -= -R/opt/csw/nagios/lib +# Other install targets (which are done in this recipe in post-install-modulated): +# install-init +# install-config +# install-webconf include gar/category.mk -DOCS = Changelog INSTALLING README UPGRADING -DOCDEST = $(DESTDIR)$(BUILD_PREFIX)/share/doc/icinga -HTTPD_CONF = $(DESTDIR)/opt/csw/apache2/etc -CFGDIR = $(prefix)/etc +DOCS = Changelog INSTALLING README UPGRADING +DOCDEST = $(DESTDIR)$(BUILD_PREFIX)/share/doc/icinga +HTTPD_CONF = $(DESTDIR)$(sysconfdir) +CFGDIR = /etc/opt/csw/icinga +TEMPLATEDIR = /opt/csw/etc/templates/CSWicinga$(CFGDIR) post-install-modulated: + @# + @# copying docs + @# @ginstall -m 755 -d $(DOCDEST) @ginstall -m 755 -d $(HTTPD_CONF) @$(foreach DOC,$(DOCS),ginstall -m 644 $(WORKSRC)/$(DOC) $(DOCDEST);) @ginstall -m 644 $(WORKSRC)/LICENSE $(DOCDEST) -# @ginstall -d $(DESTDIR)/etc/opt/csw/init.d -# @ginstall -m 755 $(FILEDIR)/cswnagios $(DESTDIR)/etc/opt/csw/init.d/cswnagios + @#ginstall -m 644 $(FILEDIR)/README.CSW $(DOCDEST) + @# + @# Start / Stopp script + @# + @ginstall -d $(DESTDIR)/etc/$(BUILD_PREFIX)/init.d + @ginstall -m 755 $(FILEDIR)/cswicinga $(DESTDIR)/etc/$(BUILD_PREFIX)/init.d/cswicinga + @# + @# creating config dirs + @# @ginstall -m 775 -d $(DESTDIR)$(CFGDIR) @ginstall -m 775 -d $(DESTDIR)$(CFGDIR)/objects - @ginstall -b -m 664 $(WORKSRC)/sample-config/README $(DESTDIR)$(CFGDIR)/README - @ginstall -b -m 664 $(WORKSRC)/sample-config/cgi.cfg $(DESTDIR)$(CFGDIR)/cgi.cfg.CSW - @ginstall -m 644 $(WORKSRC)/sample-config/httpd.conf $(DESTDIR)$(CFGDIR)/httpd-nagios.conf - @ginstall -b -m 664 $(WORKSRC)/sample-config/icinga.cfg $(DESTDIR)$(CFGDIR)/icinga.cfg.CSW - @ginstall -b -m 660 $(WORKSRC)/sample-config/mrtg.cfg $(DESTDIR)$(CFGDIR)/mrtg.cfg.CSW - @ginstall -b -m 660 $(WORKSRC)/sample-config/resource.cfg $(DESTDIR)$(CFGDIR)/resource.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/templates.cfg $(DESTDIR)$(CFGDIR)/objects/templates.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/commands.cfg $(DESTDIR)$(CFGDIR)/objects/commands.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/contacts.cfg $(DESTDIR)$(CFGDIR)/objects/contacts.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/timeperiods.cfg $(DESTDIR)$(CFGDIR)/objects/timeperiods.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/localhost.cfg $(DESTDIR)$(CFGDIR)/objects/localhost.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/windows.cfg $(DESTDIR)$(CFGDIR)/objects/windows.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/printer.cfg $(DESTDIR)$(CFGDIR)/objects/printer.cfg.CSW - @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/switch.cfg $(DESTDIR)$(CFGDIR)/objects/switch.cfg.CSW - @ginstall -d $(DESTDIR)/etc/opt/csw/init.d - @ginstall -m 755 $(FILEDIR)/cswicinga $(DESTDIR)/etc/opt/csw/init.d/cswicinga - @ginstall -d $(DESTDIR)/opt/csw/etc/pkg/CSWicinga - @ginstall -m 644 $(FILEDIR)/cswusergroup $(DESTDIR)/opt/csw/etc/pkg/CSWicinga/cswusergroup + @ginstall -m 775 -d $(DESTDIR)$(CFGDIR)/conf.d + @ginstall -m 775 -d $(DESTDIR)$(CFGDIR)/modules + @# + @# preparing default config files -> cswcptemplate + @# + @ginstall -m 775 -d $(DESTDIR)$(TEMPLATEDIR) + @ginstall -m 775 -d $(DESTDIR)$(TEMPLATEDIR)/objects + @ginstall -b -m 664 $(WORKSRC)/sample-config/icinga.cfg $(DESTDIR)$(TEMPLATEDIR)/icinga.cfg + @ginstall -b -m 664 $(WORKSRC)/module/idoutils/config/ido2db.cfg-sample $(DESTDIR)$(TEMPLATEDIR)/ido2db.cfg + @ginstall -b -m 664 $(WORKSRC)/module/idoutils/config/idomod.cfg-sample $(DESTDIR)$(TEMPLATEDIR)/ido2db.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/cgi.cfg $(DESTDIR)$(TEMPLATEDIR)/cgi.cfg + @ginstall -b -m 660 $(WORKSRC)/sample-config/resource.cfg $(DESTDIR)$(TEMPLATEDIR)/resource.cfg + @ginstall -b -m 644 $(WORKSRC)/sample-config/httpd.conf $(DESTDIR)$(TEMPLATEDIR)/httpd-icinga.conf + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/templates.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/templates.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/commands.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/commands.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/contacts.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/contacts.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/timeperiods.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/timeperiods.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/localhost.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/localhost.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/windows.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/windows.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/printer.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/printer.cfg + @ginstall -b -m 664 $(WORKSRC)/sample-config/template-object/switch.cfg $(DESTDIR)$(TEMPLATEDIR)/objects/switch.cfg + @# + @# create user and group -> cswusergroup + @# + @ginstall -m 755 -d $(DESTDIR)/etc/opt/csw/pkg/CSWicinga + @ginstall -m 644 $(FILEDIR)/cswusergroup $(DESTDIR)/etc/opt/csw/pkg/CSWicinga/cswusergroup + @# + @# end of post-install + @# @$(MAKECOOKIE) Modified: csw/mgar/pkg/icinga/trunk/checksums =================================================================== --- csw/mgar/pkg/icinga/trunk/checksums 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/checksums 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,8 +1 @@ -7921a4794699ca9ef28b91e1104cafca download/CSWicinga.gspec -7119d3f33a03e1b29709bc421e176e2b download/CSWicinga.prototype -db1163a029a4ff61787f8be18b056c5d download/cmd.c.diff -a2c4c937bd3d0c7f2ff5361fb8424ed5 download/cswicinga -9497da9af448701fef1e8ef4c24515e3 download/cswusergroup -638d3c983abe46e1b291511b61a679b0 download/icinga-0.8.1.tar.gz -d0acc20a35c59cb643b7d66963b789c5 download/install-opts.diff -f777e837efcfd649c36a1dcef013580c download/patch.diff +e96582d0fe3fed89451fbbecf8b83004 icinga-1.7.1.tar.gz Added: csw/mgar/pkg/icinga/trunk/files/0001-use-of-CSW-perl.patch =================================================================== --- csw/mgar/pkg/icinga/trunk/files/0001-use-of-CSW-perl.patch (rev 0) +++ csw/mgar/pkg/icinga/trunk/files/0001-use-of-CSW-perl.patch 2012-07-13 08:26:33 UTC (rev 18721) @@ -0,0 +1,116 @@ +From 8d902b52cd3186ae7591209ec58c1a1e0ab0f7a2 Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Wed, 11 Jul 2012 20:34:00 +0200 +Subject: [PATCH] use of CSW perl + +--- + configure | 62 ++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 31 insertions(+), 31 deletions(-) + +diff --git a/configure b/configure +index b9d439a..4709b70 100755 +--- a/configure ++++ b/configure +@@ -6782,15 +6782,15 @@ cat >>confdefs.h <<_ACEOF + #define EMBEDDEDPERL /**/ + _ACEOF + +- PERLLIBS="`perl -MExtUtils::Embed -e ldopts`" +- PERLDIR="`perl -MConfig -e 'print $Config{installsitearch}'`" +- CFLAGS="${CFLAGS} `perl -MExtUtils::Embed -e ccopts`" ++ PERLLIBS="`/opt/csw/bin/perl -MExtUtils::Embed -e ldopts`" ++ PERLDIR="`/opt/csw/bin/perl -MConfig -e 'print $Config{installsitearch}'`" ++ CFLAGS="${CFLAGS} `/opt/csw/bin/perl -MExtUtils::Embed -e ccopts`" + USEPERL=yes + INSTALLPERLSTUFF=yes; + PERLXSI_O=perlxsi.o + OBJS="${OBJS} ${PERLXSI_O}" + echo "creating base/perlxsi.c" +- perl -MExtUtils::Embed -e xsinit -- -o base/perlxsi.c ++ /opt/csw/bin/perl -MExtUtils::Embed -e xsinit -- -o base/perlxsi.c + + echo "Embedded Perl interpreter will be compiled in..." + +@@ -6809,7 +6809,7 @@ $as_echo "#define DO_CLEAN \"1\"" >>confdefs.h + fi + + if test x$USEPERL = xyes; then +- if (perl -e 'use Config;exit -1 unless ($Config{'usethreads'});'); then ++ if (/opt/csw/bin/perl -e 'use Config;exit -1 unless ($Config{'usethreads'});'); then + echo "Using threaded perl" + + cat >>confdefs.h <<_ACEOF +@@ -8430,44 +8430,44 @@ $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} + fi + + +-perl subst $srcdir/include/locations.h ++/opt/csw/bin/perl subst $srcdir/include/locations.h + +-perl subst $srcdir/contrib/eventhandlers/submit_check_result +-perl subst $srcdir/contrib/eventhandlers/disable_active_service_checks +-perl subst $srcdir/contrib/eventhandlers/disable_notifications +-perl subst $srcdir/contrib/eventhandlers/enable_active_service_checks +-perl subst $srcdir/contrib/eventhandlers/enable_notifications ++/opt/csw/bin/perl subst $srcdir/contrib/eventhandlers/submit_check_result ++/opt/csw/bin/perl subst $srcdir/contrib/eventhandlers/disable_active_service_checks ++/opt/csw/bin/perl subst $srcdir/contrib/eventhandlers/disable_notifications ++/opt/csw/bin/perl subst $srcdir/contrib/eventhandlers/enable_active_service_checks ++/opt/csw/bin/perl subst $srcdir/contrib/eventhandlers/enable_notifications + +-perl subst $srcdir/html/index.html +-perl subst $srcdir/html/menu.html ++/opt/csw/bin/perl subst $srcdir/html/index.html ++/opt/csw/bin/perl subst $srcdir/html/menu.html + + echo "" + echo "Creating sample config files in sample-config/ ..." + +-perl subst $srcdir/sample-config/icinga.cfg +-perl subst $srcdir/sample-config/cgi.cfg +-perl subst $srcdir/sample-config/cgiauth.cfg +-perl subst $srcdir/sample-config/resource.cfg +-perl subst $srcdir/sample-config/httpd.conf +-perl subst $srcdir/sample-config/mrtg.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/icinga.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/cgi.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/cgiauth.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/resource.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/httpd.conf ++/opt/csw/bin/perl subst $srcdir/sample-config/mrtg.cfg + +-perl subst $srcdir/sample-config/template-object/templates.cfg +-perl subst $srcdir/sample-config/template-object/commands.cfg +-perl subst $srcdir/sample-config/template-object/timeperiods.cfg +-perl subst $srcdir/sample-config/template-object/contacts.cfg +-perl subst $srcdir/sample-config/template-object/notifications.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/templates.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/commands.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/timeperiods.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/contacts.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/notifications.cfg + +-perl subst $srcdir/sample-config/template-object/localhost.cfg +-perl subst $srcdir/sample-config/template-object/windows.cfg +-perl subst $srcdir/sample-config/template-object/printer.cfg +-perl subst $srcdir/sample-config/template-object/switch.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/localhost.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/windows.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/printer.cfg ++/opt/csw/bin/perl subst $srcdir/sample-config/template-object/switch.cfg + + echo "" + echo "Creating sample config files in module/idoutils/config/ ..." + +-perl subst $srcdir/module/idoutils/config/idoutils.cfg-sample +-perl subst $srcdir/module/idoutils/config/ido2db.cfg-sample +-perl subst $srcdir/module/idoutils/config/idomod.cfg-sample ++/opt/csw/bin/perl subst $srcdir/module/idoutils/config/idoutils.cfg-sample ++/opt/csw/bin/perl subst $srcdir/module/idoutils/config/ido2db.cfg-sample ++/opt/csw/bin/perl subst $srcdir/module/idoutils/config/idomod.cfg-sample + + + +-- +1.7.10.3 + Added: csw/mgar/pkg/icinga/trunk/files/0002-changed-install-and-command-options-in-configure.patch =================================================================== --- csw/mgar/pkg/icinga/trunk/files/0002-changed-install-and-command-options-in-configure.patch (rev 0) +++ csw/mgar/pkg/icinga/trunk/files/0002-changed-install-and-command-options-in-configure.patch 2012-07-13 08:26:33 UTC (rev 18721) @@ -0,0 +1,43 @@ +From 93af51054f341c1c44f44407a4645bbacced3480 Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Wed, 11 Jul 2012 22:13:35 +0200 +Subject: [PATCH] changed install and command options in configure + +--- + configure | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/configure b/configure +index 4709b70..34d740b 100755 +--- a/configure ++++ b/configure +@@ -5186,7 +5186,7 @@ cat >>confdefs.h <<_ACEOF + #define DEFAULT_NAGIOS_GROUP "$icinga_grp" + _ACEOF + +-INSTALL_OPTS="-o $icinga_user -g $icinga_grp" ++INSTALL_OPTS="-o $install_user -g $install_grp" + + + +@@ -5207,7 +5207,7 @@ fi + + + +-COMMAND_OPTS="-o $command_user -g $command_grp" ++COMMAND_OPTS="-o $install_user -g $install_grp" + + + +@@ -5264,7 +5264,7 @@ fi + + + +-INSTALL_OPTS_WEB="-o $web_user -g $web_group" ++INSTALL_OPTS_WEB="-o $install_user -g $install_grp" + + + +-- +1.7.10.3 + Deleted: csw/mgar/pkg/icinga/trunk/files/CSWicinga.gspec =================================================================== --- csw/mgar/pkg/icinga/trunk/files/CSWicinga.gspec 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/CSWicinga.gspec 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,3 +0,0 @@ -%var bitname icinga -%var pkgname CSWicinga -%include url file://%{PKGLIB}/csw_dyndepend.gspec Deleted: csw/mgar/pkg/icinga/trunk/files/CSWicinga.prototype =================================================================== --- csw/mgar/pkg/icinga/trunk/files/CSWicinga.prototype 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/CSWicinga.prototype 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,249 +0,0 @@ -d ugfiles /opt/csw/icinga 0755 root bin -d ugfiles /opt/csw/icinga/bin 0755 icinga icinga -f ugfiles /opt/csw/icinga/bin/icinga 0754 icinga icinga -f ugfiles /opt/csw/icinga/bin/icingastats 0754 icinga icinga -f ugfiles /opt/csw/icinga/bin/p1.pl 0644 icinga icinga -d ugfiles /opt/csw/icinga/etc 0755 icinga icinga -f ugfiles /opt/csw/icinga/etc/README 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/cgi.cfg.CSW 0644 icinga icinga -f ugfiles /opt/csw/icinga/etc/httpd-nagios.conf 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/icinga.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/mrtg.cfg.CSW 0640 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/resource.cfg.CSW 0640 icinga icinga -d ugfiles /opt/csw/icinga/etc/objects 0755 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/commands.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/contacts.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/localhost.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/printer.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/switch.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/templates.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/timeperiods.cfg.CSW 0644 icinga icinga -f cswpreserveconf /opt/csw/icinga/etc/objects/windows.cfg.CSW 0644 icinga icinga -d ugfiles /opt/csw/icinga/sbin 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/avail.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/cmd.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/config.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/extinfo.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/histogram.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/history.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/notifications.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/outages.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/showlog.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/status.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/statusmap.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/statuswml.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/statuswrl.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/summary.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/tac.cgi 0755 icinga icinga -f ugfiles /opt/csw/icinga/sbin/trends.cgi 0755 icinga icinga -d ugfiles /opt/csw/icinga/share 0755 icinga icinga -d ugfiles /opt/csw/icinga/share/contexthelp 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/A7.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/B1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/C1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/D1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/E1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/F1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/G1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/G2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/G3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/G4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/G5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/G6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H7.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/H8.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I7.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I8.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/I9.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/J1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/K1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L10.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L11.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L12.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L13.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L7.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L8.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/L9.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/M1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/M2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/M3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/M4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/M5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/M6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N1.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N2.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N3.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N4.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N5.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N6.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/contexthelp/N7.html 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/docs 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/ch_running-icinga.html 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/docs/images 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/images/logofullsize.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/index.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/ch_relnotes.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/robots.txt 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/wb_quickstart-icinga.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/wb_quickstart-idoutils.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/wb_quickstart.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/wb_startstop.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/wb_verifyconfig.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/docs/wb_whatsnew.html 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/images 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/images/NagiosEnterprises-whitebg-112x46.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/ack.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/action.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/arrow-menu.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/command.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/comment.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/contexthelp1.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/contexthelp2.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/critical.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/delay.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/delete.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/detail.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/disabled.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/down.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/downtime.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/empty.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/enabled.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/extinfo.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/favicon.ico 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/flapping.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/globe-support-150x150.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/greendot.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/histogram.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/history.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/hostevent.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/icinga-logo.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/info.png 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/images/interface 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/images/interface/bar.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/interface/menu_body.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/interface/menu_less.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/interface/menu_li1.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/interface/menu_li2.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/interface/menu_more.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/left.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logofullsize.png 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/images/logos 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logos/nagios.gd2 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logos/nagios.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logos/nagiosvrml.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logos/unknown.gd2 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logos/unknown.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/logrotate.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/ndisabled.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/noack.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/notes.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/notify.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/orangedot.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/passiveonly.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/recovery.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/redudancy.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/redundancy.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/restart.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/right.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/sblogo.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/serviceevent.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/sflogo.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/splunk1.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/splunk2.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/start.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/status.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/status2.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/status3.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/status4.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/stop.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/tacdisabled.jpg 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/tacdisabled.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/tacenabled.jpg 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/tacenabled.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/thermcrit.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/thermok.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/thermwarn.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/trends.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/trendshost.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/trendssvc.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/unknown.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/up.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/warning.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/weblogo1.png 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/zoom1.gif 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/images/zoom2.gif 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/includes 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/includes/utils.inc.php 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/index.html 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/js 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/js/menu.js 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/js/mootools.js 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/main.html 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/media 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/menu.html 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/robots.txt 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/sidebar.html 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/ssi 0755 icinga icinga -d ugfiles /opt/csw/icinga/share/stylesheets 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/avail.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/checksanity.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/cmd.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/common.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/config.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/extinfo.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/histogram.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/history.css 0644 icinga icinga -d ugfiles /opt/csw/icinga/share/stylesheets/interface 0755 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/interface/common.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/interface/menu.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/ministatus.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/notifications.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/outages.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/showlog.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/status.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/statusmap.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/summary.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/tac.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/stylesheets/trends.css 0644 icinga icinga -f ugfiles /opt/csw/icinga/share/top.html 0644 icinga icinga -d ugfiles /var/opt/csw/icinga 0755 icinga icinga -d ugfiles /var/opt/csw/icinga/archives 0755 icinga icinga -d ugfiles /var/opt/csw/icinga/rw 0755 icinga icinga -d none /opt/csw/libexec 0755 root bin -d none /opt/csw/libexec/nagios-plugins 0755 root bin -d none /opt/csw/share/doc/icinga 0755 root bin -f none /opt/csw/share/doc/icinga/Changelog 0644 root bin -f none /opt/csw/share/doc/icinga/INSTALLING 0644 root bin -f none /opt/csw/share/doc/icinga/LICENSE 0644 root bin -f none /opt/csw/share/doc/icinga/README 0644 root bin -f none /opt/csw/share/doc/icinga/UPGRADING 0644 root bin -d ugfiles /var/opt/csw/icinga/spool 0755 icinga icinga -d ugfiles /var/opt/csw/icinga/spool/checkresults 0755 icinga icinga -f cswinitsmf /etc/opt/csw/init.d/cswicinga 0755 root bin -d none /opt/csw/etc/pkg 0755 root bin -d none /opt/csw/etc/pkg/CSWicinga 0755 root bin -f cswusergroup /opt/csw/etc/pkg/CSWicinga/cswusergroup 0644 root bin Deleted: csw/mgar/pkg/icinga/trunk/files/cmd.c.diff =================================================================== --- csw/mgar/pkg/icinga/trunk/files/cmd.c.diff 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/cmd.c.diff 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,12 +0,0 @@ -diff --speed-large-files --minimal -Nru icinga-0.8.orig/cgi/cmd.c icinga-0.8/cgi/cmd.c ---- icinga-0.8.orig/cgi/cmd.c 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/cgi/cmd.c 2009-05-22 11:58:30.329840462 +0200 -@@ -1886,7 +1886,7 @@ - return; - } - --__attribute__((format(printf, 2, 3))) -+/* __attribute__((format(printf, 2, 3))) */ - static int cmd_submitf(int id, const char *fmt, ...) - { - char cmd[MAX_EXTERNAL_COMMAND_LENGTH]; Modified: csw/mgar/pkg/icinga/trunk/files/cswicinga =================================================================== --- csw/mgar/pkg/icinga/trunk/files/cswicinga 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/cswicinga 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,53 +1,86 @@ #!/bin/sh -# +# # chkconfig: 345 99 01 # description: Icinga network monitor # -# File : icinga +# Modified for OpenCSW and Solaris by Juergen Arndt # -# Author : Jorge Sanchez Aymar (jsanchez at lanchile.cl) -# -# Changelog : -# -# 1999-07-09 Karl DeBisschop -# - setup for autoconf -# - add reload function -# 1999-08-06 Ethan Galstad -# - Added configuration info for use with RedHat's chkconfig tool -# per Fran Boon's suggestion -# 1999-08-13 Jim Popovitch -# - added variable for icinga/var directory -# - cd into icinga/var directory before creating tmp files on startup -# 1999-08-16 Ethan Galstad -# - Added test for rc.d directory as suggested by Karl DeBisschop -# 2000-07-23 Karl DeBisschop -# - Clean out redhat macros and other dependencies -# 2003-01-11 Ethan Galstad -# - Updated su syntax (Gary Miller) -# -# Description: Starts and stops the Icinga monitor -# used to provide network services status. -# -# Modified for OpenCSW by Juergen Arndt, 2009-05-22 -# +### BEGIN INIT INFO +# Provides: icinga +# Required-Start: $local_fs $remote_fs $syslog $named $network $time +# Required-Stop: $local_fs $remote_fs $syslog $named $network +# Should-Start: +# Should-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: start and stop Icinga monitoring daemon +# Description: Icinga is a service monitoring system +### END INIT INFO -#FMRI application # FMRI path for service, see http://wiki.opencsw.org/cswclassutils-package#toc0 +## definitions ## +prefix=/opt/csw/icinga +exec_prefix=/opt/csw/icinga +IcingaBin=/opt/csw/icinga/bin/icinga +IcingaCfgFile=/etc/opt/csw/icinga/icinga.cfg +IcingaCommandFile=/var/opt/csw/icinga/rw/icinga.cmd +IcingaRunFile=/var/opt/csw/icinga/icinga.lock +IcingaLockDir=/var/lock/subsys +IcingaLockFile=icinga +IcingaUser=icinga +IcingaGroup=icinga +IcingaChkFile=/var/opt/csw/icinga/icinga.chk +# load extra environment variables +if [ -f /etc/sysconfig/icinga ]; then + . /etc/sysconfig/icinga +fi + +# For Solaris + +SOLREL=`uname -r | awk -F. '{print $2}'` + +if [ -f /lib/svc/share/smf_include.sh ] +then + . /lib/svc/share/smf_include.sh +fi + +# Source function library +# Solaris doesn't have an rc.d directory, so do a test first +if [ -f /etc/rc.d/init.d/functions ]; then + . /etc/rc.d/init.d/functions +elif [ -f /etc/init.d/functions ]; then + . /etc/init.d/functions +fi + +# Check that icinga exists. +if [ ! -f $IcingaBin ]; then + echo "Executable file $IcingaBin not found. Exiting." + exit 1 +fi + +# Check that icinga.cfg exists. +if [ ! -f $IcingaCfgFile ]; then + echo "Configuration file $IcingaCfgFile not found. Exiting." + + if [ $SOLREL -lt 10 ] + then + exit 1 + else + exit $SMF_EXIT_ERR_CONFIG + fi + +fi + + +## helper functions ## + status_icinga () { - if test -x $IcingaCGI/daemonchk.cgi; then - if $IcingaCGI/daemonchk.cgi -l $IcingaRunFile; then - return 0 - else - return 1 - fi + if ps -p $IcingaPID > /dev/null 2>&1; then + return 0 else - if ps -p $IcingaPID > /dev/null 2>&1; then - return 0 - else - return 1 - fi + return 1 fi return 1 @@ -67,17 +100,21 @@ killproc_icinga () { + if kill -0 $IcingaPID >/dev/null 2>&1; then + kill $2 $IcingaPID + fi +} - kill $2 $IcingaPID - +kill9proc_icinga() +{ + kill -9 $IcingaPID } - pid_icinga () { if test ! -f $IcingaRunFile; then - echo "No lock file found in $IcingaRunFile" + echo "Icinga not running. No lock file found in $IcingaRunFile" exit 1 fi @@ -85,65 +122,62 @@ } -# Source function library -# Solaris doesn't have an rc.d directory, so do a test first -if [ -f /etc/rc.d/init.d/functions ]; then - . /etc/rc.d/init.d/functions -elif [ -f /etc/init.d/functions ]; then - . /etc/init.d/functions -fi +chk_config () +{ + printf "Running configuration check..." + $IcingaBin -v $IcingaCfgFile > $IcingaChkFile 2>&1 + if test $? -ne 0; then + if test -z "$1"; then + cat $IcingaChkFile + echo "Result saved to $IcingaChkFile" + else + echo $1 + fi + exit 1 + fi + rm -f $IcingaChkFile + echo "OK" + #exit 0 +} -prefix=/opt/csw/icinga -exec_prefix=/opt/csw/icinga -IcingaBin=/opt/csw/icinga/bin/icinga -IcingaCfgFile=/opt/csw/icinga/etc/icinga.cfg -IcingaStatusFile=/opt/csw/icinga/var/status.dat -IcingaRetentionFile=/opt/csw/icinga/var/retention.dat -IcingaCommandFile=/opt/csw/icinga/var/rw/icinga.cmd -IcingaVarDir=/opt/csw/icinga/var -IcingaRunFile=/var/opt/csw/icinga/icinga.lock -IcingaLockDir=/var/lock/subsys -IcingaLockFile=icinga -IcingaCGIDir=/opt/csw/icinga/sbin -IcingaUser=icinga -IcingaGroup=icinga - +start(){ + # Check if icinga is already running + $0 status > /dev/null + if [ $? -eq 0 ]; then + pid_icinga + # check if pid can be found running + if status_icinga > /dev/null; then + echo "Icinga is already running. PID: $IcingaPID" + exit 1 + else + echo "Icinga PID $IcingaPID not running. Removing lockfile." + rm -f $IcingaRunFile $IcingaLockDir/$IcingaLockFile + fi + fi -# Check that icinga exists. -if [ ! -f $IcingaBin ]; then - echo "Executable file $IcingaBin not found. Exiting." - exit 1 -fi + printf "Starting icinga: " + rm -f $IcingaCommandFile + touch $IcingaRunFile + chown $IcingaUser:$IcingaGroup $IcingaRunFile + $IcingaBin -d $IcingaCfgFile + if [ -d $IcingaLockDir ]; then touch $IcingaLockDir/$IcingaLockFile; fi + echo "Starting icinga done." + exit 0 -# Check that icinga.cfg exists. -if [ ! -f $IcingaCfgFile ]; then - echo "Configuration file $IcingaCfgFile not found. Exiting." - exit 1 -fi - +} + + +## MAIN ## # See how we were called. case "$1" in start) - echo -n "Starting icinga:" - $IcingaBin -v $IcingaCfgFile > /dev/null 2>&1; - if [ $? -eq 0 ]; then - su - $IcingaUser -c "touch $IcingaVarDir/icinga.log $IcingaRetentionFile" - rm -f $IcingaCommandFile - touch $IcingaRunFile - chown $IcingaUser:$IcingaGroup $IcingaRunFile - $IcingaBin -d $IcingaCfgFile - if [ -d $IcingaLockDir ]; then touch $IcingaLockDir/$IcingaLockFile; fi - echo " done." - exit 0 - else - echo "CONFIG ERROR! Start aborted. Check your Icinga configuration." - exit 1 - fi + chk_config "CONFIG ERROR! Start aborted. See $IcingaChkFile for details." + start ;; stop) - echo -n "Stopping icinga: " + printf "Stopping icinga: " pid_icinga killproc_icinga icinga @@ -153,10 +187,10 @@ # happen, and then the exiting icinga will remove the # new IcingaRunFile, allowing multiple icinga daemons # to (sooner or later) run - John Sellens - #echo -n 'Waiting for icinga to exit .' - for i in 1 2 3 4 5 6 7 8 9 10 ; do + #printf 'Waiting for icinga to exit .' + for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do if status_icinga > /dev/null; then - echo -n '.' + printf '.' sleep 1 else break @@ -164,12 +198,13 @@ done if status_icinga > /dev/null; then echo '' - echo 'Warning - icinga did not exit in a timely manner' + echo 'Warning - icinga did not exit in a timely manner. Sending kill -9' + kill9proc_icinga else - echo 'done.' + echo 'Stopping icinga done.' + rm -f $IcingaRunFile $IcingaLockDir/$IcingaLockFile fi - rm -f $IcingaStatusFile $IcingaRunFile $IcingaLockDir/$IcingaLockFile $IcingaCommandFile ;; status) @@ -178,58 +213,41 @@ ;; checkconfig) - printf "Running configuration check..." - $IcingaBin -v $IcingaCfgFile > /dev/null 2>&1; - if [ $? -eq 0 ]; then - echo " OK." - else - echo " CONFIG ERROR! Check your Icinga configuration." - exit 1 - fi + chk_config " CONFIG ERROR! See $IcingaChkFile for details." ;; + show-errors) + chk_config + ;; + restart) - printf "Running configuration check..." - $IcingaBin -v $IcingaCfgFile > /dev/null 2>&1; - if [ $? -eq 0 ]; then - echo "done." - $0 stop - $0 start - else - echo " CONFIG ERROR! Restart aborted. Check your Icinga configuration." - exit 1 - fi + chk_config " CONFIG ERROR! Restart aborted. See $IcingaChkFile for details." + $0 stop + start ;; reload|force-reload) - printf "Running configuration check..." - $IcingaBin -v $IcingaCfgFile > /dev/null 2>&1; - if [ $? -eq 0 ]; then - echo "done." - if test ! -f $IcingaRunFile; then + chk_config " CONFIG ERROR! Reload aborted. See $IcingaChkFile for details." + if test ! -f $IcingaRunFile; then + $0 start + else + pid_icinga + if status_icinga > /dev/null; then + printf "Reloading icinga configuration..." + killproc_icinga icinga -HUP + echo "done" + else + $0 stop $0 start - else - pid_icinga - if status_icinga > /dev/null; then - printf "Reloading icinga configuration..." - killproc_icinga icinga -HUP - echo "done" - else - $0 stop - $0 start - fi fi - else - echo " CONFIG ERROR! Reload aborted. Check your Icinga configuration." - exit 1 fi ;; *) - echo "Usage: icinga {start|stop|restart|reload|force-reload|status|checkconfig}" + echo "Usage: icinga {start|stop|restart|reload|force-reload|status|checkconfig|show-errors}" exit 1 ;; esac - + # End of this script Modified: csw/mgar/pkg/icinga/trunk/files/cswusergroup =================================================================== --- csw/mgar/pkg/icinga/trunk/files/cswusergroup 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/cswusergroup 2012-07-13 08:26:33 UTC (rev 18721) @@ -1 +1,3 @@ -icinga:icinga:Icinga User:/opt/csw/icinga:/bin/false::: +:icingacm:::::: +:icinga:::::: +icinga:icinga:Icinga User:/etc/opt/csw/icinga::m:r:NP:icingacm Deleted: csw/mgar/pkg/icinga/trunk/files/install-opts.diff =================================================================== --- csw/mgar/pkg/icinga/trunk/files/install-opts.diff 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/install-opts.diff 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,90 +0,0 @@ -diff --speed-large-files --minimal -Nru icinga-0.8.orig/Makefile.in icinga-0.8/Makefile.in ---- icinga-0.8.orig/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/Makefile.in 2009-05-22 12:57:00.973528770 +0200 -@@ -30,11 +30,11 @@ - LIBEXECDIR=@libexecdir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ --COMMAND_OPTS=@COMMAND_OPTS@ -+INSTALL_OPTS= -+COMMAND_OPTS= - HTTPD_CONF=@HTTPD_CONF@ - INIT_DIR=@init_dir@ --INIT_OPTS=-o root -g root -+INIT_OPTS= - CGICFGDIR=$(CGIDIR) - PERLDIR=@PERLDIR@ - -diff --speed-large-files --minimal -Nru icinga-0.8.orig/base/Makefile.in icinga-0.8/base/Makefile.in ---- icinga-0.8.orig/base/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/base/Makefile.in 2009-05-22 12:54:39.811066523 +0200 -@@ -39,7 +39,7 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ -+INSTALL_OPTS= - COMMAND_OPTS=@COMMAND_OPTS@ - STRIP=@STRIP@ - -diff --speed-large-files --minimal -Nru icinga-0.8.orig/cgi/Makefile.in icinga-0.8/cgi/Makefile.in ---- icinga-0.8.orig/cgi/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/cgi/Makefile.in 2009-05-22 12:55:03.790961065 +0200 -@@ -18,7 +18,7 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ -+INSTALL_OPTS= - COMMAND_OPTS=@COMMAND_OPTS@ - STRIP=@STRIP@ - -diff --speed-large-files --minimal -Nru icinga-0.8.orig/common/Makefile.in icinga-0.8/common/Makefile.in ---- icinga-0.8.orig/common/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/common/Makefile.in 2009-05-22 12:55:23.192592201 +0200 -@@ -20,7 +20,7 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ -+INSTALL_OPTS= - COMMAND_OPTS=@COMMAND_OPTS@ - - CP=@CP@ -diff --speed-large-files --minimal -Nru icinga-0.8.orig/contrib/Makefile.in icinga-0.8/contrib/Makefile.in ---- icinga-0.8.orig/contrib/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/contrib/Makefile.in 2009-05-22 12:55:40.861094735 +0200 -@@ -15,7 +15,7 @@ - # Generated automatically from configure script - SNPRINTF_O=@SNPRINTF_O@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ -+INSTALL_OPTS= - - - prefix=@prefix@ -diff --speed-large-files --minimal -Nru icinga-0.8.orig/html/Makefile.in icinga-0.8/html/Makefile.in ---- icinga-0.8.orig/html/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/html/Makefile.in 2009-05-22 12:56:26.447629708 +0200 -@@ -10,7 +10,7 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ -+INSTALL_OPTS= - COMMAND_OPTS=@COMMAND_OPTS@ - - CP=@CP@ -diff --speed-large-files --minimal -Nru icinga-0.8.orig/module/Makefile.in icinga-0.8/module/Makefile.in ---- icinga-0.8.orig/module/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/module/Makefile.in 2009-05-22 12:57:18.719328688 +0200 -@@ -19,7 +19,7 @@ - exec_prefix=@exec_prefix@ - BINDIR=@bindir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ -+INSTALL_OPTS= - COMMAND_OPTS=@COMMAND_OPTS@ - STRIP=@STRIP@ - Deleted: csw/mgar/pkg/icinga/trunk/files/patch.diff =================================================================== --- csw/mgar/pkg/icinga/trunk/files/patch.diff 2012-07-13 08:20:30 UTC (rev 18720) +++ csw/mgar/pkg/icinga/trunk/files/patch.diff 2012-07-13 08:26:33 UTC (rev 18721) @@ -1,33 +0,0 @@ -diff --speed-large-files --minimal -Nru icinga-0.8.orig/include/nebmodules.h icinga-0.8/include/nebmodules.h ---- icinga-0.8.orig/include/nebmodules.h 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/include/nebmodules.h 2009-05-22 12:13:24.195253042 +0200 -@@ -31,7 +31,7 @@ - - /***** MODULE VERSION INFORMATION *****/ - --#define NEB_API_VERSION(x) int __neb_api_version = x; -+#define NEB_API_VERSION(x) int __neb_api_version = x - #define CURRENT_NEB_API_VERSION 3 - - -diff --speed-large-files --minimal -Nru icinga-0.8.orig/module/Makefile.in icinga-0.8/module/Makefile.in ---- icinga-0.8.orig/module/Makefile.in 2009-05-19 23:01:43.000000000 +0200 -+++ icinga-0.8/module/Makefile.in 2009-05-22 12:16:03.078812414 +0200 -@@ -25,13 +25,13 @@ - - CP=@CP@ - --all: helloworld.o -+all: helloworld - --helloworld.o: helloworld.c -- $(CC) $(MOD_CFLAGS) $(CFLAGS) -o helloworld.o helloworld.c $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) -+helloworld: helloworld.c -+ $(CC) $(MOD_CFLAGS) $(CFLAGS) -o helloworld helloworld.c $(MOD_LDFLAGS) $(LDFLAGS) $(LIBS) - - clean: -- rm -f helloworld.o -+ rm -f helloworld - rm -f core *.o - rm -f *~ *.*~ - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 10:53:32 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 08:53:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[18722] csw/mgar/pkg/pstoedit/trunk/Makefile Message-ID: Revision: 18722 http://gar.svn.sourceforge.net/gar/?rev=18722&view=rev Author: pfelecan Date: 2012-07-13 08:53:32 +0000 (Fri, 13 Jul 2012) Log Message: ----------- pstoedit/trunk: upgraded dependency on libmagic packages as we support only Solaris 10 Modified Paths: -------------- csw/mgar/pkg/pstoedit/trunk/Makefile Modified: csw/mgar/pkg/pstoedit/trunk/Makefile =================================================================== --- csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-13 08:26:33 UTC (rev 18721) +++ csw/mgar/pkg/pstoedit/trunk/Makefile 2012-07-13 08:53:32 UTC (rev 18722) @@ -20,6 +20,9 @@ GARCOMPILER = GNU +PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-libplot CONFIGURE_ARGS += --without-emf @@ -33,8 +36,8 @@ RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibpstoedit0 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgcc-s1 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibgd2 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++4 -RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore4 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagick++5 +RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibmagickcore5 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibplotter2 RUNTIME_DEP_PKGS_CSWpstoedit += CSWlibstdc++6 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 12:07:32 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 10:07:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[18723] csw/mgar/pkg/libming/trunk/Makefile Message-ID: Revision: 18723 http://gar.svn.sourceforge.net/gar/?rev=18723&view=rev Author: pfelecan Date: 2012-07-13 10:07:31 +0000 (Fri, 13 Jul 2012) Log Message: ----------- libming/trunk: build only on Solaris 10 as libgif doesn't provide GifErrorString on the release available on Solaris 9. Modified Paths: -------------- csw/mgar/pkg/libming/trunk/Makefile Modified: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 08:53:32 UTC (rev 18722) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 10:07:31 UTC (rev 18723) @@ -23,6 +23,9 @@ GARCOMPILER = GNU +PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + BUILD_DEP_PKGS += CSWlibgif-dev BUILD_DEP_PKGS += CSWlibbz2-dev BUILD_DEP_PKGS += CSWlibfreetype-dev This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 13:31:52 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 11:31:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18724] csw/mgar/pkg/libming/trunk/Makefile Message-ID: Revision: 18724 http://gar.svn.sourceforge.net/gar/?rev=18724&view=rev Author: pfelecan Date: 2012-07-13 11:31:52 +0000 (Fri, 13 Jul 2012) Log Message: ----------- libming/trunk: run-time depend on the relevant GIF library Modified Paths: -------------- csw/mgar/pkg/libming/trunk/Makefile Modified: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 10:07:31 UTC (rev 18723) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 11:31:52 UTC (rev 18724) @@ -44,7 +44,6 @@ TEST_SCRIPTS = custom -#CSWlibbz2-1-0 CSWlibfreetype6 CSWlibgcc-s1 CSWlibgif4 CSWlibpng12-0 CSWlibz1 PACKAGES += CSWlibming-utils CATALOGNAME_CSWlibming-utils = libming_utils @@ -69,8 +68,8 @@ RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibbz2-1-0 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgif4 -CHECKPKG_OVERRIDES_CSWlibming1 += surplus-dependency|CSWlibgif4 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgif5 +CHECKPKG_OVERRIDES_CSWlibming1 += surplus-dependency|CSWlibgif5 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibpng12-0 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibz1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 14:02:40 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 12:02:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18725] csw/mgar/pkg/libming/trunk/Makefile Message-ID: Revision: 18725 http://gar.svn.sourceforge.net/gar/?rev=18725&view=rev Author: pfelecan Date: 2012-07-13 12:02:40 +0000 (Fri, 13 Jul 2012) Log Message: ----------- libming/trunk: hopefully corrected the mess with depending on libgif Modified Paths: -------------- csw/mgar/pkg/libming/trunk/Makefile Modified: csw/mgar/pkg/libming/trunk/Makefile =================================================================== --- csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 11:31:52 UTC (rev 18724) +++ csw/mgar/pkg/libming/trunk/Makefile 2012-07-13 12:02:40 UTC (rev 18725) @@ -53,6 +53,7 @@ # transitivity: CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibbz2-1-0 CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibfreetype6 +CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibgif4 CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibpng12-0 CHECKPKG_OVERRIDES_CSWlibming-utils += missing-dependency|CSWlibz1 @@ -68,8 +69,7 @@ RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibbz2-1-0 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibfreetype6 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgcc-s1 -RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgif5 -CHECKPKG_OVERRIDES_CSWlibming1 += surplus-dependency|CSWlibgif5 +RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibgif4 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibpng12-0 RUNTIME_DEP_PKGS_CSWlibming1 += CSWlibz1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 13 14:55:46 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 13 Jul 2012 12:55:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18726] csw/mgar/pkg Message-ID: Revision: 18726 http://gar.svn.sourceforge.net/gar/?rev=18726&view=rev Author: pfelecan Date: 2012-07-13 12:55:46 +0000 (Fri, 13 Jul 2012) Log Message: ----------- libofx/trunk: migrated from a private recipe to a GAR based recipe; not ready for release Added Paths: ----------- csw/mgar/pkg/libofx/ csw/mgar/pkg/libofx/Makefile csw/mgar/pkg/libofx/branches/ csw/mgar/pkg/libofx/tags/ csw/mgar/pkg/libofx/trunk/ csw/mgar/pkg/libofx/trunk/Makefile csw/mgar/pkg/libofx/trunk/checksums csw/mgar/pkg/libofx/trunk/files/ Added: csw/mgar/pkg/libofx/Makefile =================================================================== --- csw/mgar/pkg/libofx/Makefile (rev 0) +++ csw/mgar/pkg/libofx/Makefile 2012-07-13 12:55:46 UTC (rev 18726) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/libofx/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile (rev 0) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-13 12:55:46 UTC (rev 18726) @@ -0,0 +1,40 @@ +# $Id$ + +NAME = libofx +VERSION = 0.9.5 +GARTYPE = v2 +CATEGORIES = lib + +DESCRIPTION = Library designed to allow applications to very easily support OFX command responses +define BLURB + A parser and an API designed to allow applications to very easily + support OFX command responses, usually provided by financial + institutions for statement downloads. +endef + +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(DISTNAME).tar.gz + +GARCOMPILER = GNU +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-opensp-includes=$(includedir)/OpenSP +CONFIGURE_ARGS += --with-opensp-libs=$(libdir) + +BUILD_DEP_PKGS += CSWopensp-dev +BUILD_DEP_PKGS += CSWlibxml2-dev +BUILD_DEP_PKGS += CSWgengetopt +BUILD_DEP_PKGS += CSWlibiconv-dev +BUILD_DEP_PKGS += CSWlibcurl-dev +BUILD_DEP_PKGS += CSWhelp2man +BUILD_DEP_PKGS += CSWgawk +BUILD_DEP_PKGS += CSWlibgnugetopt-dev + +RUNTIME_DEP_PKGS += CSWlibosp5 + +include gar/category.mk + +PATH := /opt/csw/gnu:$(PATH) + +# this is private and not available publicly +mydependencies: + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done Property changes on: csw/mgar/pkg/libofx/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/libofx/trunk/checksums =================================================================== --- csw/mgar/pkg/libofx/trunk/checksums (rev 0) +++ csw/mgar/pkg/libofx/trunk/checksums 2012-07-13 12:55:46 UTC (rev 18726) @@ -0,0 +1 @@ +58443fd7fa00dbbb6a36c75830774368 libofx-0.9.5.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 Sat Jul 14 10:50:12 2012 From: rthurner at users.sourceforge.net (rthurner at users.sourceforge.net) Date: Sat, 14 Jul 2012 08:50:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[18727] csw/mgar/pkg/mercurial/trunk Message-ID: Revision: 18727 http://gar.svn.sourceforge.net/gar/?rev=18727&view=rev Author: rthurner Date: 2012-07-14 08:50:11 +0000 (Sat, 14 Jul 2012) Log Message: ----------- mercurial, upgrade to hg-2.2.3 Modified Paths: -------------- csw/mgar/pkg/mercurial/trunk/Makefile csw/mgar/pkg/mercurial/trunk/checksums Modified: csw/mgar/pkg/mercurial/trunk/Makefile =================================================================== --- csw/mgar/pkg/mercurial/trunk/Makefile 2012-07-13 12:55:46 UTC (rev 18726) +++ csw/mgar/pkg/mercurial/trunk/Makefile 2012-07-14 08:50:11 UTC (rev 18727) @@ -1,5 +1,5 @@ NAME = mercurial -VERSION = 2.2.2 +VERSION = 2.2.3 CATEGORIES = python GARTYPE = v2 Modified: csw/mgar/pkg/mercurial/trunk/checksums =================================================================== --- csw/mgar/pkg/mercurial/trunk/checksums 2012-07-13 12:55:46 UTC (rev 18726) +++ csw/mgar/pkg/mercurial/trunk/checksums 2012-07-14 08:50:11 UTC (rev 18727) @@ -1 +1 @@ -9f59b5d71969cbb2671702cd2a7a5a11 mercurial-2.2.2.tar.gz +f4c70af3892d964b83b2718bde44c2f8 mercurial-2.2.3.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 Sat Jul 14 14:59:23 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sat, 14 Jul 2012 12:59:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[18728] csw/mgar/pkg/dialog/trunk Message-ID: Revision: 18728 http://gar.svn.sourceforge.net/gar/?rev=18728&view=rev Author: bonivart Date: 2012-07-14 12:59:23 +0000 (Sat, 14 Jul 2012) Log Message: ----------- dialog/trunk: update to 1.1r20120706 Modified Paths: -------------- csw/mgar/pkg/dialog/trunk/Makefile csw/mgar/pkg/dialog/trunk/checksums Modified: csw/mgar/pkg/dialog/trunk/Makefile =================================================================== --- csw/mgar/pkg/dialog/trunk/Makefile 2012-07-14 08:50:11 UTC (rev 18727) +++ csw/mgar/pkg/dialog/trunk/Makefile 2012-07-14 12:59:23 UTC (rev 18728) @@ -2,9 +2,9 @@ # gmake package-CSWdialog-minimal NAME = dialog -VERSION = 1.1r20111020 +VERSION = 1.1r20120706 VERSION2 = 1.1 -RELEASE = 20111020 +RELEASE = 20120706 DISTNAME = $(NAME)-$(VERSION2)-$(RELEASE) WORKSRC = $(WORKDIR)/$(DISTNAME) CATEGORIES = utils @@ -44,6 +44,7 @@ ALTERNATIVE_ncurses = $(bindir)/dialog dialog $(bindir)/dialog.ncurses 50 $(mandir)/man1/dialog.1 dialog.man $(mandir)/man1/dialog.1.ncurses ALTERNATIVE_minimal = $(bindir)/dialog dialog $(bindir)/dialog.minimal 25 $(mandir)/man1/dialog.1 dialog.man $(mandir)/man1/dialog.1.minimal +# There are no tests SKIPTEST = 1 CONFIGURE_ARGS = $(DIRPATHS) Modified: csw/mgar/pkg/dialog/trunk/checksums =================================================================== --- csw/mgar/pkg/dialog/trunk/checksums 2012-07-14 08:50:11 UTC (rev 18727) +++ csw/mgar/pkg/dialog/trunk/checksums 2012-07-14 12:59:23 UTC (rev 18728) @@ -1 +1 @@ -15dd2ce9f537c0400f600d1a383aa0a3 dialog.tar.gz +2e538305977178eb085a9859511c299d dialog.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jul 14 19:16:39 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 14 Jul 2012 17:16:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[18729] csw/mgar/pkg/gnome-base/libgnomeprint/trunk Message-ID: Revision: 18729 http://gar.svn.sourceforge.net/gar/?rev=18729&view=rev Author: chninkel Date: 2012-07-14 17:16:39 +0000 (Sat, 14 Jul 2012) Log Message: ----------- gnome-base/libgnomeprint/trunk: fixed compilation errors and added various checkpkg overridees Modified Paths: -------------- csw/mgar/pkg/gnome-base/libgnomeprint/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gnome-base/libgnomeprint/trunk/files/0001-add-missing-stdio.h-inclusion.patch Modified: csw/mgar/pkg/gnome-base/libgnomeprint/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnome-base/libgnomeprint/trunk/Makefile 2012-07-14 12:59:23 UTC (rev 18728) +++ csw/mgar/pkg/gnome-base/libgnomeprint/trunk/Makefile 2012-07-14 17:16:39 UTC (rev 18729) @@ -26,8 +26,38 @@ #BUILD_DEP_PKGS += CSWgnomeicontheme #BUILD_DEP_PKGS += CSWlibgnomeprint #BUILD_DEP_PKGS += CSWlibgnomecanvas -BUILD_DEP_PKGS += CSWgtk2devel +BUILD_DEP_PKGS += CSWlibgtk2-dev +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibcom-err3 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgcrypt11 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibk5crypto3 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibkrb5-3 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWpango +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibfontconfig1 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibcups2 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibart +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibgnomecups +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibgnomeprint += CSWlibssl1-0-0 + +CHECKPKG_OVERRIDES_CSWlibgnomeprintdoc += surplus-dependency|CSWlibgnomeprint + +CHECKPKG_OVERRIDES_CSWlibgnomeprintdoc += catalogname-does-not-match-pkgname|pkgname=CSWlibgnomeprintdoc|catalogname=libgnomeprint_doc|expected-catalogname=libgnomeprintdoc +CHECKPKG_OVERRIDES_CSWlibgnomeprintdevel += catalogname-does-not-match-pkgname|pkgname=CSWlibgnomeprintdevel|catalogname=libgnomeprint_devel|expected-catalogname=libgnomeprintdevel +CHECKPKG_OVERRIDES_CSWlibgnomeprint += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libgnomeprint/2.18.6/modules/libgnomeprintpapi.so +CHECKPKG_OVERRIDES_CSWlibgnomeprint += shared-lib-pkgname-mismatch|file=opt/csw/lib/libgnomeprint-2-2.so.0.1.0|soname=libgnomeprint-2-2.so.0|pkgname=CSWlibgnomeprint|expected=CSWlibgnomeprint2-2-0 + + UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.bz2 SPKG_SOURCEURL = http://live.gnome.org/libgnomeprint @@ -47,6 +77,12 @@ ARCHALL_CSWlibgnomeprintdoc = 1 +# New glib only available on Solaris 10 +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + +# To make sure the FILE type is recognized +PATCHFILES += 0001-add-missing-stdio.h-inclusion.patch + STRIP_LIBTOOL = 1 CONFIGURE_ARGS = $(DIRPATHS) Added: csw/mgar/pkg/gnome-base/libgnomeprint/trunk/files/0001-add-missing-stdio.h-inclusion.patch =================================================================== --- csw/mgar/pkg/gnome-base/libgnomeprint/trunk/files/0001-add-missing-stdio.h-inclusion.patch (rev 0) +++ csw/mgar/pkg/gnome-base/libgnomeprint/trunk/files/0001-add-missing-stdio.h-inclusion.patch 2012-07-14 17:16:39 UTC (rev 18729) @@ -0,0 +1,77 @@ +From d400ffff2a2b280fcd45515c3432aac959821c5d Mon Sep 17 00:00:00 2001 +From: Yann Rouillard +Date: Fri, 13 Jul 2012 23:43:26 +0200 +Subject: [PATCH] Add missing stdio.h inclusion + +--- + libgnomeprint/grammar.tab.h | 14 ++++++-------- + libgnomeprint/modules/cups/gnome-print-cups-transport.c | 1 + + ltmain.sh | 2 +- + 3 files changed, 8 insertions(+), 9 deletions(-) + +diff --git a/libgnomeprint/grammar.tab.h b/libgnomeprint/grammar.tab.h +index defb293..e0aed9c 100644 +--- a/libgnomeprint/grammar.tab.h ++++ b/libgnomeprint/grammar.tab.h +@@ -1,10 +1,8 @@ ++/* A Bison parser, made by GNU Bison 2.5. */ + +-/* A Bison parser, made by GNU Bison 2.4.1. */ +- +-/* Skeleton interface for Bison's Yacc-like parsers in C ++/* Bison interface for Yacc-like parsers in C + +- Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +- Free Software Foundation, Inc. ++ Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by +@@ -50,7 +48,7 @@ + typedef union YYSTYPE + { + +-/* Line 1676 of yacc.c */ ++/* Line 2068 of yacc.c */ + #line 105 "./grammar.y" + + gchar *s; +@@ -60,8 +58,8 @@ typedef union YYSTYPE + + + +-/* Line 1676 of yacc.c */ +-#line 65 "grammar.tab.h" ++/* Line 2068 of yacc.c */ ++#line 63 "grammar.tab.h" + } YYSTYPE; + # define YYSTYPE_IS_TRIVIAL 1 + # define yystype YYSTYPE /* obsolescent; will be withdrawn */ +diff --git a/libgnomeprint/modules/cups/gnome-print-cups-transport.c b/libgnomeprint/modules/cups/gnome-print-cups-transport.c +index aeb7111..9112b28 100644 +--- a/libgnomeprint/modules/cups/gnome-print-cups-transport.c ++++ b/libgnomeprint/modules/cups/gnome-print-cups-transport.c +@@ -36,6 +36,7 @@ + #include + #include + #include ++#include + + #include + #include +diff --git a/ltmain.sh b/ltmain.sh +index 6939dcc..69394c9 100755 +--- a/ltmain.sh ++++ b/ltmain.sh +@@ -5095,7 +5095,7 @@ func_mode_link () + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do +- for search_ext in .la $std_shrext .so .a; do ++ for search_ext in $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jul 14 21:26:47 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 14 Jul 2012 19:26:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[18730] csw/mgar/pkg/gnome-base/libbonoboui/trunk/Makefile Message-ID: Revision: 18730 http://gar.svn.sourceforge.net/gar/?rev=18730&view=rev Author: chninkel Date: 2012-07-14 19:26:47 +0000 (Sat, 14 Jul 2012) Log Message: ----------- gnome-base/libbonoboui/trunk: added dependancies, disabled tests and 64 bits build Modified Paths: -------------- csw/mgar/pkg/gnome-base/libbonoboui/trunk/Makefile Modified: csw/mgar/pkg/gnome-base/libbonoboui/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnome-base/libbonoboui/trunk/Makefile 2012-07-14 17:16:39 UTC (rev 18729) +++ csw/mgar/pkg/gnome-base/libbonoboui/trunk/Makefile 2012-07-14 19:26:47 UTC (rev 18730) @@ -14,13 +14,45 @@ # New glib only available on Solaris 10 PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 -BUILD64_LIBS_ONLY = 1 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgnome2-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgnomecanvas2-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibpopt0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgtk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWorbit2 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgdk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgconf2-4 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgdk-pixbuf2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibglade2 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibgio2-0-0 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWpango +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibfontconfig1 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibart +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibbonobo2 +RUNTIME_DEP_PKGS_CSWlibbonoboui += CSWlibatk1-0-0 + +CHECKPKG_OVERRIDES_CSWlibbonoboui += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libbonoboui-2.so +CHECKPKG_OVERRIDES_CSWlibbonoboui += shared-lib-pkgname-mismatch|file=opt/csw/lib/libbonoboui-2.so.0.0.0|soname=libbonoboui-2.so.0|pkgname=CSWlibbonoboui|expected=CSWlibbonoboui2-0 + +# There is a problem with the 64 bits build and the +# the previous package didn't have the 64 bits libraries +# so we disable this for now +#BUILD64_LIBS_ONLY = 1 + CONFIGURE_ARGS = $(DIRPATHS) #CONFIGURE_ARGS += --enable-static=no #CONFIGURE_ARGS += --enable-gtk-doc EXTRA_TEST_EXPORTS = DISPLAY +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 chninkel at users.sourceforge.net Sat Jul 14 22:53:58 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 14 Jul 2012 20:53:58 +0000 Subject: [csw-devel] SF.net SVN: gar:[18731] csw/mgar/pkg/gnome-base/libgnomecups/trunk Message-ID: Revision: 18731 http://gar.svn.sourceforge.net/gar/?rev=18731&view=rev Author: chninkel Date: 2012-07-14 20:53:57 +0000 (Sat, 14 Jul 2012) Log Message: ----------- gnome-base/libgnomecups/trunk: initial Makefile Added Paths: ----------- csw/mgar/pkg/gnome-base/libgnomecups/trunk/Makefile csw/mgar/pkg/gnome-base/libgnomecups/trunk/checksums csw/mgar/pkg/gnome-base/libgnomecups/trunk/files/ csw/mgar/pkg/gnome-base/libgnomecups/trunk/files/0001-cups-config-bug-workaround.patch Added: csw/mgar/pkg/gnome-base/libgnomecups/trunk/Makefile =================================================================== --- csw/mgar/pkg/gnome-base/libgnomecups/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gnome-base/libgnomecups/trunk/Makefile 2012-07-14 20:53:57 UTC (rev 18731) @@ -0,0 +1,51 @@ +NAME = libgnomecups +VERSION = 0.1.13 +CATEGORIES = gnome +GARTYPE = v2 + +DESCRIPTION = GNOME library for CUPS interaction +define BLURB +endef + +MASTER_SITES = $(GNOME_MIRROR) +DISTFILES = $(NAME)-$(VERSION).tar.bz2 +DISTNAME = $(NAME)-$(VERSION) + +PACKAGES = CSWlibgnomecups +CATALOGNAME_CSWlibgnomecups = libgnomecups + +UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.bz2 + +SPKG_SOURCEURL = http://ftp.gnome.org/pub/GNOME/sources/libgnomecups/ + +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibgcrypt11 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibcom-err3 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibkrb5-3 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibcups2 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibk5crypto3 +RUNTIME_DEP_PKGS_CSWlibgnomecups += CSWlibglib2-0-0 + +CHECKPKG_OVERRIDES_CSWlibgnomecups += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libgnomecups-1.0.so +CHECKPKG_OVERRIDES_CSWlibgnomecups += shared-lib-pkgname-mismatch|file=opt/csw/lib/libgnomecups-1.0.so.1.0.0|soname=libgnomecups-1.0.so.1|pkgname=CSWlibgnomecups|expected=CSWlibgnomecups1-0-1 + +# New glib only available on Solaris 10 +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + +# cups-config output "-lcups -L/opt/csw/lib ..." but +# -L/opt/csw/lib must be first so that ld search libcups.so +# in this directory. +# This patch workarounds this problem +PATCHFILES = 0001-cups-config-bug-workaround.patch + +STRIP_LIBTOOL = 1 + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + Added: csw/mgar/pkg/gnome-base/libgnomecups/trunk/checksums =================================================================== --- csw/mgar/pkg/gnome-base/libgnomecups/trunk/checksums (rev 0) +++ csw/mgar/pkg/gnome-base/libgnomecups/trunk/checksums 2012-07-14 20:53:57 UTC (rev 18731) @@ -0,0 +1 @@ +0103893afb7bf0d78f6c6a196990b52d libgnomecups-0.1.13.tar.bz2 Added: csw/mgar/pkg/gnome-base/libgnomecups/trunk/files/0001-cups-config-bug-workaround.patch =================================================================== --- csw/mgar/pkg/gnome-base/libgnomecups/trunk/files/0001-cups-config-bug-workaround.patch (rev 0) +++ csw/mgar/pkg/gnome-base/libgnomecups/trunk/files/0001-cups-config-bug-workaround.patch 2012-07-14 20:53:57 UTC (rev 18731) @@ -0,0 +1,39 @@ +From f685faacd8d45d2c4c6c732014ba7d164e2760c5 Mon Sep 17 00:00:00 2001 +From: Yann Rouillard +Date: Sat, 14 Jul 2012 22:32:47 +0200 +Subject: [PATCH] cups-config bug workaround + +--- + Makefile.in | 2 +- + libgnomecups/Makefile.in | 2 +- + 2 file changed, 2 insertion(+), 2 deletion(-) + +diff --git a/Makefile.in b/Makefile.in +index c9cba11..1108a33 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -65,7 +65,7 @@ CATALOGS = @CATALOGS@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +-CUPS_LIBS = @CUPS_LIBS@ ++CUPS_LIBS = -L$(libdir) @CUPS_LIBS@ + CXX = @CXX@ + CXXCPP = @CXXCPP@ + DATADIRNAME = @DATADIRNAME@ +-- +1.7.10.3 + +diff --git a/libgnomecups/Makefile.in b/libgnomecups/Makefile.in +index 611973c..555bb33 100644 +--- a/libgnomecups/Makefile.in ++++ b/libgnomecups/Makefile.in +@@ -65,7 +65,7 @@ CATALOGS = @CATALOGS@ + CATOBJEXT = @CATOBJEXT@ + CC = @CC@ + CUPS_CFLAGS = @CUPS_CFLAGS@ +-CUPS_LIBS = @CUPS_LIBS@ ++CUPS_LIBS = -L$(libdir) @CUPS_LIBS@ + CXX = @CXX@ + CXXCPP = @CXXCPP@ + DATADIRNAME = @DATADIRNAME@ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Sat Jul 14 22:56:46 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Sat, 14 Jul 2012 20:56:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18732] csw/mgar/pkg/gnome-base/libgnomecups/trunk/ Message-ID: Revision: 18732 http://gar.svn.sourceforge.net/gar/?rev=18732&view=rev Author: chninkel Date: 2012-07-14 20:56:46 +0000 (Sat, 14 Jul 2012) Log Message: ----------- gnome-base/libgnomecups/trunk: added svn:ignore property Property Changed: ---------------- csw/mgar/pkg/gnome-base/libgnomecups/trunk/ Property changes on: csw/mgar/pkg/gnome-base/libgnomecups/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 bonivart at users.sourceforge.net Sun Jul 15 12:24:40 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 10:24:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18733] csw/mgar/pkg/cpan Message-ID: Revision: 18733 http://gar.svn.sourceforge.net/gar/?rev=18733&view=rev Author: bonivart Date: 2012-07-15 10:24:39 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/DateTime-Set/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Set/ csw/mgar/pkg/cpan/DateTime-Set/Makefile csw/mgar/pkg/cpan/DateTime-Set/branches/ csw/mgar/pkg/cpan/DateTime-Set/tags/ csw/mgar/pkg/cpan/DateTime-Set/trunk/ csw/mgar/pkg/cpan/DateTime-Set/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Set/trunk/checksums csw/mgar/pkg/cpan/DateTime-Set/trunk/files/ Added: csw/mgar/pkg/cpan/DateTime-Set/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Set/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Set/Makefile 2012-07-15 10:24:39 UTC (rev 18733) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/DateTime-Set/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Set/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Set/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Set/trunk/Makefile 2012-07-15 10:24:39 UTC (rev 18733) @@ -0,0 +1,25 @@ +NAME = DateTime-Set +VERSION = 0.31 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = FGLOCK + +DESCRIPTION = Datetime sets and set math +define BLURB + Datetime sets and set math +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-datetime-set +CATALOGNAME = pm_datetime_set +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-set-infinite + +CONFIGURE_ARGS = + +# Remove this on next build +CHECKPKG_OVERRIDES_CSWpm-datetime-set += unidentified-dependency|CSWpm-set-infinite + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/DateTime-Set/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/DateTime-Set/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Set/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Set/trunk/checksums 2012-07-15 10:24:39 UTC (rev 18733) @@ -0,0 +1 @@ +ab14a78a4912f14312ec44f356f63ea0 DateTime-Set-0.31.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 Sun Jul 15 12:33:22 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 10:33:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18734] csw/mgar/pkg/cpan Message-ID: Revision: 18734 http://gar.svn.sourceforge.net/gar/?rev=18734&view=rev Author: bonivart Date: 2012-07-15 10:33:22 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/Set-Infinite/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Set-Infinite/ csw/mgar/pkg/cpan/Set-Infinite/Makefile csw/mgar/pkg/cpan/Set-Infinite/branches/ csw/mgar/pkg/cpan/Set-Infinite/tags/ csw/mgar/pkg/cpan/Set-Infinite/trunk/ csw/mgar/pkg/cpan/Set-Infinite/trunk/Makefile csw/mgar/pkg/cpan/Set-Infinite/trunk/checksums csw/mgar/pkg/cpan/Set-Infinite/trunk/files/ Added: csw/mgar/pkg/cpan/Set-Infinite/Makefile =================================================================== --- csw/mgar/pkg/cpan/Set-Infinite/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Set-Infinite/Makefile 2012-07-15 10:33:22 UTC (rev 18734) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Set-Infinite/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Set-Infinite/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Set-Infinite/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Set-Infinite/trunk/Makefile 2012-07-15 10:33:22 UTC (rev 18734) @@ -0,0 +1,20 @@ +NAME = Set-Infinite +VERSION = 0.65 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = FGLOCK + +DESCRIPTION = Sets of intervals +define BLURB + Sets of intervals +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-set-infinite +CATALOGNAME = pm_set_infinite +ARCHALL = 1 + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/Set-Infinite/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Set-Infinite/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Set-Infinite/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Set-Infinite/trunk/checksums 2012-07-15 10:33:22 UTC (rev 18734) @@ -0,0 +1 @@ +d7577c5ed8fceb2ebd1247a4c4a3e825 Set-Infinite-0.65.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sun Jul 15 12:55:19 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 10:55:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18735] csw/mgar/pkg/cpan Message-ID: Revision: 18735 http://gar.svn.sourceforge.net/gar/?rev=18735&view=rev Author: bonivart Date: 2012-07-15 10:55:19 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/HTTP-OAI/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/HTTP-OAI/ csw/mgar/pkg/cpan/HTTP-OAI/Makefile csw/mgar/pkg/cpan/HTTP-OAI/branches/ csw/mgar/pkg/cpan/HTTP-OAI/tags/ csw/mgar/pkg/cpan/HTTP-OAI/trunk/ csw/mgar/pkg/cpan/HTTP-OAI/trunk/Makefile csw/mgar/pkg/cpan/HTTP-OAI/trunk/checksums csw/mgar/pkg/cpan/HTTP-OAI/trunk/files/ Added: csw/mgar/pkg/cpan/HTTP-OAI/Makefile =================================================================== --- csw/mgar/pkg/cpan/HTTP-OAI/Makefile (rev 0) +++ csw/mgar/pkg/cpan/HTTP-OAI/Makefile 2012-07-15 10:55:19 UTC (rev 18735) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/HTTP-OAI/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/HTTP-OAI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/HTTP-OAI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/HTTP-OAI/trunk/Makefile 2012-07-15 10:55:19 UTC (rev 18735) @@ -0,0 +1,23 @@ +NAME = HTTP-OAI +VERSION = 3.28 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = TIMBRODY + +DESCRIPTION = API for the OAI-PMH +define BLURB + API for the OAI-PMH +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-http-oai +CATALOGNAME = pm_http_oai +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpmxmllibxml +RUNTIME_DEP_PKGS += CSWpm-xml-sax-base + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/HTTP-OAI/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/HTTP-OAI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/HTTP-OAI/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/HTTP-OAI/trunk/checksums 2012-07-15 10:55:19 UTC (rev 18735) @@ -0,0 +1 @@ +09fb4ba4b9da2cda3910fa4b31273568 HTTP-OAI-3.28.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 Sun Jul 15 13:16:00 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 11:16:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[18736] csw/mgar/pkg/cpan Message-ID: Revision: 18736 http://gar.svn.sourceforge.net/gar/?rev=18736&view=rev Author: bonivart Date: 2012-07-15 11:15:59 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/XML-SAX-Writer/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/XML-SAX-Writer/ csw/mgar/pkg/cpan/XML-SAX-Writer/Makefile csw/mgar/pkg/cpan/XML-SAX-Writer/branches/ csw/mgar/pkg/cpan/XML-SAX-Writer/tags/ csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/ csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/Makefile csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/checksums csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/files/ csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/files/COPYING Added: csw/mgar/pkg/cpan/XML-SAX-Writer/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Writer/Makefile (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX-Writer/Makefile 2012-07-15 11:15:59 UTC (rev 18736) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/XML-SAX-Writer/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/Makefile 2012-07-15 11:15:59 UTC (rev 18736) @@ -0,0 +1,26 @@ +NAME = XML-SAX-Writer +VERSION = 0.53 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = PERIGRIN + +DESCRIPTION = SAX2 Writer +define BLURB + SAX2 Writer +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-xml-sax-writer +CATALOGNAME = pm_xml_sax_writer +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-xml-sax-base +RUNTIME_DEP_PKGS += CSWpm-xml-namespacesupport +RUNTIME_DEP_PKGS += CSWpm-xml-filter-buffertext + +CONFIGURE_ARGS = + +CHECKPKG_OVERRIDES_CSWpm-xml-sax-writer += unidentified-dependency|CSWpm-xml-filter-buffertext + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/checksums 2012-07-15 11:15:59 UTC (rev 18736) @@ -0,0 +1 @@ +afc83cdc49ccc8a7ad72911b2a0bcfbe XML-SAX-Writer-0.53.tar.gz Added: csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/XML-SAX-Writer/trunk/files/COPYING 2012-07-15 11:15:59 UTC (rev 18736) @@ -0,0 +1,2 @@ +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 Sun Jul 15 13:25:42 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 11:25:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18737] csw/mgar/pkg/cpan Message-ID: Revision: 18737 http://gar.svn.sourceforge.net/gar/?rev=18737&view=rev Author: bonivart Date: 2012-07-15 11:25:41 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/XML-Filter-BufferText/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/XML-Filter-BufferText/ csw/mgar/pkg/cpan/XML-Filter-BufferText/Makefile csw/mgar/pkg/cpan/XML-Filter-BufferText/branches/ csw/mgar/pkg/cpan/XML-Filter-BufferText/tags/ csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/ csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/Makefile csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/checksums csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/files/ csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/files/COPYING Added: csw/mgar/pkg/cpan/XML-Filter-BufferText/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-Filter-BufferText/Makefile (rev 0) +++ csw/mgar/pkg/cpan/XML-Filter-BufferText/Makefile 2012-07-15 11:25:41 UTC (rev 18737) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/Makefile 2012-07-15 11:25:41 UTC (rev 18737) @@ -0,0 +1,23 @@ +NAME = XML-Filter-BufferText +VERSION = 1.01 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = RBERJON + +DESCRIPTION = Filter to put all characters() in one event +define BLURB + Filter to put all characters() in one event +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-xml-filter-buffertext +CATALOGNAME = pm_xml_filter_buffertext +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-xml-sax +RUNTIME_DEP_PKGS += CSWpm-xml-sax-base + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/checksums 2012-07-15 11:25:41 UTC (rev 18737) @@ -0,0 +1 @@ +2992c0387632583b966ab9c965b25512 XML-Filter-BufferText-1.01.tar.gz Added: csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/XML-Filter-BufferText/trunk/files/COPYING 2012-07-15 11:25:41 UTC (rev 18737) @@ -0,0 +1 @@ +Unknown This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sun Jul 15 13:43:51 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 11:43:51 +0000 Subject: [csw-devel] SF.net SVN: gar:[18738] csw/mgar/pkg/cpan Message-ID: Revision: 18738 http://gar.svn.sourceforge.net/gar/?rev=18738&view=rev Author: bonivart Date: 2012-07-15 11:43:51 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/Text-CSV-Encoded/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Text-CSV-Encoded/ csw/mgar/pkg/cpan/Text-CSV-Encoded/Makefile csw/mgar/pkg/cpan/Text-CSV-Encoded/branches/ csw/mgar/pkg/cpan/Text-CSV-Encoded/tags/ csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/ csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/Makefile csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/checksums csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/files/ csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/files/COPYING Added: csw/mgar/pkg/cpan/Text-CSV-Encoded/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-CSV-Encoded/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-CSV-Encoded/Makefile 2012-07-15 11:43:51 UTC (rev 18738) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/Makefile 2012-07-15 11:43:51 UTC (rev 18738) @@ -0,0 +1,22 @@ +NAME = Text-CSV-Encoded +VERSION = 0.10 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = MAKAMAKA + +DESCRIPTION = Encoding aware Text::CSV +define BLURB + Encoding aware Text::CSV +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-text-csv-encoded +CATALOGNAME = pm_text_csv_encoded +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpmtextcsv + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/checksums 2012-07-15 11:43:51 UTC (rev 18738) @@ -0,0 +1 @@ +9ed745eb7a416818b9c129eced8af93d Text-CSV-Encoded-0.10.tar.gz Added: csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Text-CSV-Encoded/trunk/files/COPYING 2012-07-15 11:43:51 UTC (rev 18738) @@ -0,0 +1,2 @@ +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From j_arndt at users.sourceforge.net Sun Jul 15 15:22:14 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sun, 15 Jul 2012 13:22:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[18739] csw/mgar/pkg/nrpe/trunk/Makefile Message-ID: Revision: 18739 http://gar.svn.sourceforge.net/gar/?rev=18739&view=rev Author: j_arndt Date: 2012-07-15 13:22:14 +0000 (Sun, 15 Jul 2012) Log Message: ----------- nrpe/trunk: corrected path to cswusergroup Modified Paths: -------------- csw/mgar/pkg/nrpe/trunk/Makefile Modified: csw/mgar/pkg/nrpe/trunk/Makefile =================================================================== --- csw/mgar/pkg/nrpe/trunk/Makefile 2012-07-15 11:43:51 UTC (rev 18738) +++ csw/mgar/pkg/nrpe/trunk/Makefile 2012-07-15 13:22:14 UTC (rev 18739) @@ -59,7 +59,7 @@ PKGFILES_CSWnrpe += /opt/csw/share/doc/nrpe/SECURITY PKGFILES_CSWnrpe += /opt/csw/nagios PKGFILES_CSWnrpe += /etc/opt/csw/init.d/cswnrpe -PKGFILES_CSWnrpe += /etc/opt/csw/init.d/cswusergroup +PKGFILES_CSWnrpe += /etc/opt/csw/pkg/CSWnrpe/cswusergroup PKGFILES_CSWnrpe += /opt/csw/etc/templates/CSWnrpe$(CFGDIR) PKGFILES_CSWnrpe += /opt/csw/etc/templates/CSWnrpe$(CFGDIR)/nrpe.cfg This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sun Jul 15 15:36:19 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 13:36:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18740] csw/mgar/pkg/koha/trunk Message-ID: Revision: 18740 http://gar.svn.sourceforge.net/gar/?rev=18740&view=rev Author: bonivart Date: 2012-07-15 13:36:19 +0000 (Sun, 15 Jul 2012) Log Message: ----------- koha/trunk: update to 4.10.05, empty package Modified Paths: -------------- csw/mgar/pkg/koha/trunk/Makefile csw/mgar/pkg/koha/trunk/checksums Added Paths: ----------- csw/mgar/pkg/koha/trunk/files/COPYING Modified: csw/mgar/pkg/koha/trunk/Makefile =================================================================== --- csw/mgar/pkg/koha/trunk/Makefile 2012-07-15 13:22:14 UTC (rev 18739) +++ csw/mgar/pkg/koha/trunk/Makefile 2012-07-15 13:36:19 UTC (rev 18740) @@ -1,40 +1,82 @@ NAME = koha -VERSION = 3.00.06 +VERSION = 4.10.05 CATEGORIES = apps GARTYPE = v2 +WORKSRC = liblime-$(NAME)_v$(VERSION) DESCRIPTION = Integrated Library System define BLURB Integrated Library System endef -MASTER_SITES = http://downloads.ptfsinc.com/harley/ -DISTFILES = $(NAME)-$(VERSION).tar.gz +MASTER_SITES = https://github.com/downloads/liblime/LibLime-Koha/ +DISTFILES = liblime-$(NAME)_v$(VERSION).tar.gz -#ARCHALL = 1 +# Temporary +ARCHALL = 1 -LICENSE = LICENSE +# License not found due to changed workdir +#LICENSE = LICENSE +DISTFILES += COPYING SPKG_SOURCEURL = http://www.koha.org -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz +CONFIGURE_ARGS = $(DIRPATHS) -#CONFIGURE_ARGS = $(DIRPATHS) +RUNTIME_DEP_PKGS += CSWapache2 +RUNTIME_DEP_PKGS += CSWidzebra +RUNTIME_DEP_PKGS += CSWmysql5 +RUNTIME_DEP_PKGS += CSWperl +RUNTIME_DEP_PKGS += CSWimagemagick +RUNTIME_DEP_PKGS += CSWpmalgorithmchkdig +RUNTIME_DEP_PKGS += CSWpmbiblioendnotest +RUNTIME_DEP_PKGS += CSWpmcgisession +RUNTIME_DEP_PKGS += CSWpmclassadapter +RUNTIME_DEP_PKGS += CSWpmclassfactutil +RUNTIME_DEP_PKGS += CSWpmclsaccessor +RUNTIME_DEP_PKGS += CSWpmdatecalc +RUNTIME_DEP_PKGS += CSWpmdateical +RUNTIME_DEP_PKGS += CSWpmdateleapyear +RUNTIME_DEP_PKGS += CSWpmdatemanip +RUNTIME_DEP_PKGS += CSWpmdbi +RUNTIME_DEP_PKGS += CSWpmdbdmysql +RUNTIME_DEP_PKGS += CSWpmdublincorerecord +RUNTIME_DEP_PKGS += CSWpmgdbarcode +RUNTIME_DEP_PKGS += CSWpmhtmlscrubber +RUNTIME_DEP_PKGS += CSWpmhtmltemplatepro +RUNTIME_DEP_PKGS += CSWpmjson +RUNTIME_DEP_PKGS += CSWpmldap +RUNTIME_DEP_PKGS += CSWpmlibwww +RUNTIME_DEP_PKGS += CSWpmlinguastem +RUNTIME_DEP_PKGS += CSWpmlistmoreutils +RUNTIME_DEP_PKGS += CSWpmmailsendmail +RUNTIME_DEP_PKGS += CSWpmmarccharse +RUNTIME_DEP_PKGS += CSWpmmarccrosswalkdblc +RUNTIME_DEP_PKGS += CSWpmmarcrecord +RUNTIME_DEP_PKGS += CSWpmmarcxml +RUNTIME_DEP_PKGS += CSWpmmimebase64 +RUNTIME_DEP_PKGS += CSWpmmimelite +RUNTIME_DEP_PKGS += CSWpmnetz3950zoom +RUNTIME_DEP_PKGS += CSWpmpdfapi2 +RUNTIME_DEP_PKGS += CSWpmpdfreuse +RUNTIME_DEP_PKGS += CSWpmpdfreusebarcode +RUNTIME_DEP_PKGS += CSWpmpoe +RUNTIME_DEP_PKGS += CSWpmscheduleat +RUNTIME_DEP_PKGS += CSWpmsmssend +RUNTIME_DEP_PKGS += CSWpmtextcsv +RUNTIME_DEP_PKGS += CSWpmtextcsvxst +RUNTIME_DEP_PKGS += CSWpmtextwrap +RUNTIME_DEP_PKGS += CSWpmxmldumper +RUNTIME_DEP_PKGS += CSWpmxmllibxml +RUNTIME_DEP_PKGS += CSWpmxmllibxslt +RUNTIME_DEP_PKGS += CSWpmxmlrss +RUNTIME_DEP_PKGS += CSWpmxmlsax +RUNTIME_DEP_PKGS += CSWpmxmlsimple +RUNTIME_DEP_PKGS += CSWpmyamlsyck -RUNTIME_DEP_PKGS += CSWperl CSWmysql5 CSWapache2 CSWidzebra -RUNTIME_DEP_PKGS += CSWimagemagickCSWpmclassadapter CSWpmclassfactutil -RUNTIME_DEP_PKGS += CSWpmalgorithmchkdig CSWpmbiblioendnotest CSWpmcgisession CSWpmclsaccessor -RUNTIME_DEP_PKGS += CSWpmdbdmysql CSWpmdbi CSWpmdatecalc CSWpmdateical -RUNTIME_DEP_PKGS += CSWpmdateleapyear CSWpmdatemanip CSWpmdublincorerecord CSWpmgdbarcode -RUNTIME_DEP_PKGS += CSWpmhtmltemplatepro CSWpmlibwww CSWpmjson CSWpmlinguastem -RUNTIME_DEP_PKGS += CSWpmmarccrosswalkdblc CSWpmmarcxml CSWpmmarcrecord CSWpmmimebase64 -RUNTIME_DEP_PKGS += CSWpmmailsendmail CSWpmldap CSWpmnetz3950zoom CSWpmpdfapi2 -RUNTIME_DEP_PKGS += CSWpmpdfreusebarcode CSWpmpoe CSWpmscheduleat CSWpmsmssend -RUNTIME_DEP_PKGS += CSWpmtextwrap CSWpmxmldumper CSWpmxmllibxml CSWpmxmllibxslt -RUNTIME_DEP_PKGS += CSWpmxmlsax CSWpmxmlsimple CSWpmyamlsyck CSWpmhtmlscrubber -RUNTIME_DEP_PKGS += CSWpmdatecalc CSWpmmimelite CSWpmpdfreuse CSWpmxmlrss -RUNTIME_DEP_PKGS += CSWpmlistmoreutils CSWpmmarccharse CSWpmtextcsv CSWpmtextcsvxst +# Temporary +CHECKPKG_OVERRIDES_CSWkoha += unidentified-dependency +CHECKPKG_OVERRIDES_CSWkoha += surplus-dependency CONFIGURE_SCRIPTS = custom BUILD_SCRIPTS = custom @@ -45,20 +87,20 @@ configure-custom: @echo " ==> Configuring $(NAME) (custom)" - @( cd $(WORKSRC) ; \ - INSTALL_MODE=single perl Makefile.PL INSTALLDIRS=vendor DESTDIR=$(DESTDIR) CONFDIR=/etc/opt/csw/koha LOCALSTATEDIR=/var/opt/csw/koha INSTALL_MODE='single' INSTALL_BASE='/opt/csw/koha' DB_TYPE='mysql' DB_HOST='localhost' DB_NAME='koha' DB_USER='kohaadmin' DB_PASS='katikoan' INSTALL_ZEBRA='yes' INSTALL_SRU='yes' INSTALL_PAZPAR2='no' AUTH_INDEX_MODE='grs1' ZEBRA_MARC_FORMAT='marc21' ZEBRA_LANGUAGE='en' ZEBRA_USER='kohauser' ZEBRA_PASS='zebrastripes' ZEBRA_SRU_HOST='localhost' ZEBRA_SRU_BIBLIOS_PORT='9998' ZEBRA_SRU_AUTHORITIES_PORT='9999' KOHA_USER='koha' KOHA_GROUP='koha' MERGE_SERVER_HOST='localhost' MERGE_SERVER_PORT='11001' PAZPAR2_HOST= 'localhost' PAZPAR2_PORT='11002' RUN_DATABASE_TESTS='no' PATH_TO_ZEBRA='' ) +# @( cd $(WORKSRC) ; \ +# INSTALL_MODE=single perl Makefile.PL INSTALLDIRS=vendor DESTDIR=$(DESTDIR) CONFDIR=/etc/opt/csw/koha LOCALSTATEDIR=/var/opt/csw/koha INSTALL_MODE='single' INSTALL_BASE='/opt/csw/koha' DB_TYPE='mysql' DB_HOST='localhost' DB_NAME='koha' DB_USER='kohaadmin' DB_PASS='katikoan' INSTALL_ZEBRA='yes' INSTALL_SRU='yes' INSTALL_PAZPAR2='no' AUTH_INDEX_MODE='grs1' ZEBRA_MARC_FORMAT='marc21' ZEBRA_LANGUAGE='en' ZEBRA_USER='kohauser' ZEBRA_PASS='zebrastripes' ZEBRA_SRU_HOST='localhost' ZEBRA_SRU_BIBLIOS_PORT='9998' ZEBRA_SRU_AUTHORITIES_PORT='9999' KOHA_USER='koha' KOHA_GROUP='koha' MERGE_SERVER_HOST='localhost' MERGE_SERVER_PORT='11001' PAZPAR2_HOST= 'localhost' PAZPAR2_PORT='11002' RUN_DATABASE_TESTS='no' PATH_TO_ZEBRA='' ) @$(MAKECOOKIE) build-custom: @echo " ==> Building $(NAME) (custom)" - @( cd $(WORKSRC) ; \ - gmake ) +# @( cd $(WORKSRC) ; \ +# gmake ) @$(MAKECOOKIE) test-custom: @echo " ==> Testing $(NAME) (custom)" - @( cd $(WORKSRC) ; \ - gmake test ) +# @( cd $(WORKSRC) ; \ +# gmake test ) @$(MAKECOOKIE) #DOCLIST = README.CSW db.127.0.0 db.localhost named.conf named.root rndc.key Modified: csw/mgar/pkg/koha/trunk/checksums =================================================================== --- csw/mgar/pkg/koha/trunk/checksums 2012-07-15 13:22:14 UTC (rev 18739) +++ csw/mgar/pkg/koha/trunk/checksums 2012-07-15 13:36:19 UTC (rev 18740) @@ -1 +1 @@ -1b7533fc92d1473ad98799e8dec8da63 koha-3.00.06.tar.gz +07f6ed6cdcbdbc39b834dd542aa3ccc9 liblime-koha_v4.10.05.tar.gz Added: csw/mgar/pkg/koha/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/koha/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/koha/trunk/files/COPYING 2012-07-15 13:36:19 UTC (rev 18740) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Sun Jul 15 16:00:25 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 14:00:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18741] csw/mgar/pkg/koha/trunk/Makefile Message-ID: Revision: 18741 http://gar.svn.sourceforge.net/gar/?rev=18741&view=rev Author: bonivart Date: 2012-07-15 14:00:25 +0000 (Sun, 15 Jul 2012) Log Message: ----------- koha/trunk: work source changes Modified Paths: -------------- csw/mgar/pkg/koha/trunk/Makefile Modified: csw/mgar/pkg/koha/trunk/Makefile =================================================================== --- csw/mgar/pkg/koha/trunk/Makefile 2012-07-15 13:36:19 UTC (rev 18740) +++ csw/mgar/pkg/koha/trunk/Makefile 2012-07-15 14:00:25 UTC (rev 18741) @@ -2,7 +2,11 @@ VERSION = 4.10.05 CATEGORIES = apps GARTYPE = v2 -WORKSRC = liblime-$(NAME)_v$(VERSION) +#WORKSRC = liblime-$(NAME)_v$(VERSION) +#DISTVERSION = $(VERSION)-$(RELEASE) +#SPKG_VERSION = $(VERSION)$(RELEASE) +DISTNAME = liblime-$(NAME)_v$(VERSION) +WORKSRC = $(WORKDIR)/$(DISTNAME) DESCRIPTION = Integrated Library System define BLURB 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 Jul 15 18:42:52 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 16:42:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18742] csw/mgar/pkg/cpan Message-ID: Revision: 18742 http://gar.svn.sourceforge.net/gar/?rev=18742&view=rev Author: dmichelsen Date: 2012-07-15 16:42:52 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/Math-Round/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Math-Round/ csw/mgar/pkg/cpan/Math-Round/branches/ csw/mgar/pkg/cpan/Math-Round/tags/ csw/mgar/pkg/cpan/Math-Round/trunk/ csw/mgar/pkg/cpan/Math-Round/trunk/Makefile csw/mgar/pkg/cpan/Math-Round/trunk/checksums csw/mgar/pkg/cpan/Math-Round/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Math-Round/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Math-Round/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Math-Round/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Math-Round/trunk/Makefile 2012-07-15 16:42:52 UTC (rev 18742) @@ -0,0 +1,20 @@ +NAME = Math-Round +VERSION = 0.06 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = GROMMEL + +DESCRIPTION = Perl extension for rounding numbers +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-math-round +CATALOGNAME_CSWpm-math-round = pm_math_round +SPKG_DESC_CSWpm-math-round = Perl extension for rounding numbers +ARCHALL_CSWpm-math-round = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Math-Round/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Math-Round/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Math-Round/trunk/checksums 2012-07-15 16:42:52 UTC (rev 18742) @@ -0,0 +1 @@ +552cef2753b246f97a6e20d8dee66e7c Math-Round-0.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 Sun Jul 15 18:45:09 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 16:45:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[18743] csw/mgar/pkg/cpan/Test-Tester/trunk Message-ID: Revision: 18743 http://gar.svn.sourceforge.net/gar/?rev=18743&view=rev Author: dmichelsen Date: 2012-07-15 16:45:08 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/Test-Tester/trunk: Update to 0.108 and sanitized name Modified Paths: -------------- csw/mgar/pkg/cpan/Test-Tester/trunk/Makefile csw/mgar/pkg/cpan/Test-Tester/trunk/checksums Modified: csw/mgar/pkg/cpan/Test-Tester/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Tester/trunk/Makefile 2012-07-15 16:42:52 UTC (rev 18742) +++ csw/mgar/pkg/cpan/Test-Tester/trunk/Makefile 2012-07-15 16:45:08 UTC (rev 18743) @@ -1,18 +1,23 @@ NAME = Test-Tester -VERSION = 0.107 +VERSION = 0.108 CATEGORIES = cpan GARTYPE = v2 AUTHOR = FDALY -DESCRIPTION = Ease testing test modules built with Test::Builder +DESCRIPTION = define BLURB - Ease testing test modules built with Test::Builder endef -PACKAGES = CSWpmtesttester -CATALOGNAME = pm_testtester -ARCHALL = 1 +CATALOG_RELEASE = unstable LICENSE = ARTISTIC +PACKAGES += CSWpm-test-tester +CATALOGNAME_CSWpm-test-tester = pm_test_tester +SPKG_DESC_CSWpm-test-tester = Ease testing test modules built with Test::Builder +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-test-tester = 1 +OBSOLETED_BY_CSWpm-test-tester += CSWpmtesttester +CATALOGNAME_CSWpmtesttester = pm_testtester_stub + include gar/category.mk Modified: csw/mgar/pkg/cpan/Test-Tester/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Tester/trunk/checksums 2012-07-15 16:42:52 UTC (rev 18742) +++ csw/mgar/pkg/cpan/Test-Tester/trunk/checksums 2012-07-15 16:45:08 UTC (rev 18743) @@ -1 +1 @@ -998a8abe241992faaa3e90f330800840 Test-Tester-0.107.tar.gz +939d4fb9ad04b8b5a746cdd09040ea0b Test-Tester-0.108.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 Jul 15 18:46:33 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 16:46:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18744] csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile Message-ID: Revision: 18744 http://gar.svn.sourceforge.net/gar/?rev=18744&view=rev Author: dmichelsen Date: 2012-07-15 16:46:32 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/DateTime-Locale/trunk: Update to makemake and sanitized package name Modified Paths: -------------- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile Modified: csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2012-07-15 16:45:08 UTC (rev 18743) +++ csw/mgar/pkg/cpan/DateTime-Locale/trunk/Makefile 2012-07-15 16:46:32 UTC (rev 18744) @@ -6,17 +6,25 @@ DESCRIPTION = Localization support for DateTime.pm define BLURB - DateTime::Locale is primarily a factory for the various locale subclasses. - It also provides some functions for getting information on all the available - locales. endef -PACKAGES = CSWpmdatetimelocale -CATALOGNAME = pm_datetimelocale +CATALOG_RELEASE = unstable LICENSE = LICENSE -ARCHALL = 1 +PACKAGES += CSWpm-datetime-locale +CATALOGNAME_CSWpm-datetime-locale = pm_datetime_locale +SPKG_DESC_CSWpm-datetime-locale = Localization support for DateTime.pm +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-datetime-locale = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-locale += CSWpm-params-validate +RUNTIME_DEP_PKGS_CSWpm-datetime-locale += CSWpm-list-moreutils +OBSOLETED_BY_CSWpm-datetime-locale += CSWpmdatetimelocale +CATALOGNAME_CSWpmdatetimelocale = pm_datetimelocale_stub +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + include gar/category.mk - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jul 15 18:51:22 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 16:51:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18745] csw/mgar/pkg/cpan Message-ID: Revision: 18745 http://gar.svn.sourceforge.net/gar/?rev=18745&view=rev Author: dmichelsen Date: 2012-07-15 16:51:22 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/Test-Output/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-Output/ csw/mgar/pkg/cpan/Test-Output/branches/ csw/mgar/pkg/cpan/Test-Output/tags/ csw/mgar/pkg/cpan/Test-Output/trunk/ csw/mgar/pkg/cpan/Test-Output/trunk/Makefile csw/mgar/pkg/cpan/Test-Output/trunk/checksums csw/mgar/pkg/cpan/Test-Output/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-Output/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Test-Output/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Output/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-Output/trunk/Makefile 2012-07-15 16:51:22 UTC (rev 18745) @@ -0,0 +1,23 @@ +NAME = Test-Output +VERSION = 1.01 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = BDFOY + +DESCRIPTION = Utilities to test STDOUT and STDERR messages +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-test-output +CATALOGNAME_CSWpm-test-output = pm_test_output +SPKG_DESC_CSWpm-test-output = Utilities to test STDOUT and STDERR messages +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-test-output = 1 +RUNTIME_DEP_PKGS_CSWpm-test-output += CSWpm-sub-exporter +RUNTIME_DEP_PKGS_CSWpm-test-output += CSWpm-test-tester + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-Output/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Output/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-Output/trunk/checksums 2012-07-15 16:51:22 UTC (rev 18745) @@ -0,0 +1 @@ +bea1fe88e8725a5b3f7b66e69fc83dd2 Test-Output-1.01.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 Jul 15 18:58:31 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 16:58:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[18746] csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile Message-ID: Revision: 18746 http://gar.svn.sourceforge.net/gar/?rev=18746&view=rev Author: dmichelsen Date: 2012-07-15 16:58:30 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/Class-Singleton/trunk: Update to makemake and sanitized package name Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile Modified: csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile 2012-07-15 16:51:22 UTC (rev 18745) +++ csw/mgar/pkg/cpan/Class-Singleton/trunk/Makefile 2012-07-15 16:58:30 UTC (rev 18746) @@ -4,26 +4,19 @@ GARTYPE = v2 AUTHOR = ABW -DESCRIPTION = Implementation of a "Singleton" class +DESCRIPTION = Base class for creating singleton objects define BLURB - This is the Class::Singleton module. A Singleton describes an object - class that can have only one instance in any system. An example of a - Singleton might be a print spooler or system registry. This module - implements a Singleton class from which other classes can be derived. By - itself, the Class::Singleton module does very little other than manage - the instantiation of a single object. In deriving a class from - Class::Singleton, your module will inherit the Singleton instantiation - method and can implement whatever specific functionality is - required. endef -PACKAGES = CSWpmclasssingleton -CATALOGNAME = pm_classsingleton +CATALOG_RELEASE = unstable -ARCHALL = 1 +LICENSE_TEXT = This module is licensed under the license -include gar/category.mk +PACKAGES += CSWpm-class-singleton +CATALOGNAME_CSWpm-class-singleton = pm_class_singleton +SPKG_DESC_CSWpm-class-singleton = Base class for creating singleton objects +ARCHALL_CSWpm-class-singleton = 1 +OBSOLETED_BY_CSWpm-class-singleton += CSWpmclasssingleton +CATALOGNAME_CSWpmclasssingleton = pm_classsingleton_stub -pre-merge-modulated: - @cd $(WORKSRC) && sed -n '/^Copyright/,$$p' README > COPYING - @$(MAKECOOKIE) +include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sun Jul 15 19:59:49 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 17:59:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[18747] csw/mgar/pkg/cpan/DateTime-TimeZone/trunk Message-ID: Revision: 18747 http://gar.svn.sourceforge.net/gar/?rev=18747&view=rev Author: dmichelsen Date: 2012-07-15 17:59:49 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/DateTime-TimeZone/trunk: Update to 1.46 and makemake Modified Paths: -------------- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums Modified: csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile 2012-07-15 16:58:30 UTC (rev 18746) +++ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/Makefile 2012-07-15 17:59:49 UTC (rev 18747) @@ -1,30 +1,41 @@ NAME = DateTime-TimeZone -VERSION = 1.16 +VERSION = 1.46 CATEGORIES = cpan GARTYPE = v2 AUTHOR = DROLSKY DESCRIPTION = Time zone object base class and factory define BLURB - This class is the base class for all time zone objects. A time zone is - represented internally as a set of observances, each of which describes - the offset from GMT for a given time period. Note that without the - DateTime.pm module, this module does not do much. It's primary interface - is through a DateTime object, and most users will not need to directly - use DateTime::TimeZone methods. endef -PACKAGES = CSWpmdatetimetz -CATALOGNAME = pm_datetimetz +CATALOG_RELEASE = unstable LICENSE = LICENSE -ARCHALL = 1 +BUILD_DEP_PKGS += CSWpm-test-output -DEP_PKGS = CSWpmclasssingleton CSWpmparamsvalidate +PACKAGES += CSWpm-datetime-timezone +CATALOGNAME_CSWpm-datetime-timezone = pm_datetime_timezone +SPKG_DESC_CSWpm-datetime-timezone = Time zone object base class and factory +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-datetime-timezone = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-timezone += CSWpm-params-validate +RUNTIME_DEP_PKGS_CSWpm-datetime-timezone += CSWpm-class-load +RUNTIME_DEP_PKGS_CSWpm-datetime-timezone += CSWpm-class-singleton +OBSOLETED_BY_CSWpm-datetime-timezone += CSWpmdatetimetz +CATALOGNAME_CSWpmdatetimetz = pm_datetimetz_stub -CHECKPKG_OVERRIDES_CSWpmdatetimetz += surplus-dependency|CSWpmclasssingleton -CHECKPKG_OVERRIDES_CSWpmdatetimetz += surplus-dependency|CSWpmparamsvalidate +REINPLACEMENTS += zoneinfo +REINPLACE_MATCH_zoneinfo = /usr/share/zoneinfo +REINPLACE_WITH_zoneinfo = /usr/share/lib/zoneinfo +REINPLACE_FILES_zoneinfo += t/04local.t +REINPLACE_FILES_zoneinfo += tools/update-from-latest-olson +REINPLACE_FILES_zoneinfo += tools/compile-all-zones +REINPLACE_FILES_zoneinfo += tools/tests_from_zdump +REINPLACE_FILES_zoneinfo += lib/DateTime/TimeZone/Local/Unix.pm +# This is in fact /usr/share/lib/zoneinfo which is ok +CHECKPKG_OVERRIDES_CSWpm-datetime-timezone += file-with-bad-content|/usr/share|root/opt/csw/share/perl/csw/DateTime/TimeZone/Local/Unix.pm +CHECKPKG_OVERRIDES_CSWpm-datetime-timezone += file-with-bad-content|/usr/share|root/opt/csw/share/man/man3/DateTime::TimeZone::Local::Unix.3perl + include gar/category.mk - Modified: csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums 2012-07-15 16:58:30 UTC (rev 18746) +++ csw/mgar/pkg/cpan/DateTime-TimeZone/trunk/checksums 2012-07-15 17:59:49 UTC (rev 18747) @@ -1 +1 @@ -cea4c74e6b8702ebcdafbe9d889ecd42 DateTime-TimeZone-1.16.tar.gz +e83f412286d7787e3dfd5427a1943569 DateTime-TimeZone-1.46.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 Sun Jul 15 20:18:15 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Sun, 15 Jul 2012 18:18:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[18748] csw/mgar/pkg/koha/trunk/Makefile Message-ID: Revision: 18748 http://gar.svn.sourceforge.net/gar/?rev=18748&view=rev Author: bonivart Date: 2012-07-15 18:18:15 +0000 (Sun, 15 Jul 2012) Log Message: ----------- koha/trunk: dep changes Modified Paths: -------------- csw/mgar/pkg/koha/trunk/Makefile Modified: csw/mgar/pkg/koha/trunk/Makefile =================================================================== --- csw/mgar/pkg/koha/trunk/Makefile 2012-07-15 17:59:49 UTC (rev 18747) +++ csw/mgar/pkg/koha/trunk/Makefile 2012-07-15 18:18:15 UTC (rev 18748) @@ -2,9 +2,6 @@ VERSION = 4.10.05 CATEGORIES = apps GARTYPE = v2 -#WORKSRC = liblime-$(NAME)_v$(VERSION) -#DISTVERSION = $(VERSION)-$(RELEASE) -#SPKG_VERSION = $(VERSION)$(RELEASE) DISTNAME = liblime-$(NAME)_v$(VERSION) WORKSRC = $(WORKDIR)/$(DISTNAME) @@ -16,12 +13,10 @@ MASTER_SITES = https://github.com/downloads/liblime/LibLime-Koha/ DISTFILES = liblime-$(NAME)_v$(VERSION).tar.gz -# Temporary +# Temporary? ARCHALL = 1 -# License not found due to changed workdir -#LICENSE = LICENSE -DISTFILES += COPYING +LICENSE = LICENSE SPKG_SOURCEURL = http://www.koha.org @@ -31,7 +26,8 @@ RUNTIME_DEP_PKGS += CSWidzebra RUNTIME_DEP_PKGS += CSWmysql5 RUNTIME_DEP_PKGS += CSWperl -RUNTIME_DEP_PKGS += CSWimagemagick +RUNTIME_DEP_PKGS += CSWyaz +#RUNTIME_DEP_PKGS += CSWimagemagick RUNTIME_DEP_PKGS += CSWpmalgorithmchkdig RUNTIME_DEP_PKGS += CSWpmbiblioendnotest RUNTIME_DEP_PKGS += CSWpmcgisession @@ -44,7 +40,7 @@ RUNTIME_DEP_PKGS += CSWpmdatemanip RUNTIME_DEP_PKGS += CSWpmdbi RUNTIME_DEP_PKGS += CSWpmdbdmysql -RUNTIME_DEP_PKGS += CSWpmdublincorerecord +RUNTIME_DEP_PKGS += CSWpmdublincorerecrd RUNTIME_DEP_PKGS += CSWpmgdbarcode RUNTIME_DEP_PKGS += CSWpmhtmlscrubber RUNTIME_DEP_PKGS += CSWpmhtmltemplatepro @@ -54,8 +50,8 @@ RUNTIME_DEP_PKGS += CSWpmlinguastem RUNTIME_DEP_PKGS += CSWpmlistmoreutils RUNTIME_DEP_PKGS += CSWpmmailsendmail -RUNTIME_DEP_PKGS += CSWpmmarccharse -RUNTIME_DEP_PKGS += CSWpmmarccrosswalkdblc +RUNTIME_DEP_PKGS += CSWpm-marc-charset +RUNTIME_DEP_PKGS += CSWpmmarccrswlkdblc RUNTIME_DEP_PKGS += CSWpmmarcrecord RUNTIME_DEP_PKGS += CSWpmmarcxml RUNTIME_DEP_PKGS += CSWpmmimebase64 @@ -68,7 +64,7 @@ RUNTIME_DEP_PKGS += CSWpmscheduleat RUNTIME_DEP_PKGS += CSWpmsmssend RUNTIME_DEP_PKGS += CSWpmtextcsv -RUNTIME_DEP_PKGS += CSWpmtextcsvxst +RUNTIME_DEP_PKGS += CSWpmtextcsvxs RUNTIME_DEP_PKGS += CSWpmtextwrap RUNTIME_DEP_PKGS += CSWpmxmldumper RUNTIME_DEP_PKGS += CSWpmxmllibxml @@ -79,7 +75,7 @@ RUNTIME_DEP_PKGS += CSWpmyamlsyck # Temporary -CHECKPKG_OVERRIDES_CSWkoha += unidentified-dependency +#CHECKPKG_OVERRIDES_CSWkoha += unidentified-dependency CHECKPKG_OVERRIDES_CSWkoha += surplus-dependency CONFIGURE_SCRIPTS = custom 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 Jul 15 21:28:45 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 19:28:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[18749] csw/mgar/pkg/yaz/trunk Message-ID: Revision: 18749 http://gar.svn.sourceforge.net/gar/?rev=18749&view=rev Author: dmichelsen Date: 2012-07-15 19:28:45 +0000 (Sun, 15 Jul 2012) Log Message: ----------- yaz/trunk: Update to 4.2.35 and further package split and name sanitization Modified Paths: -------------- csw/mgar/pkg/yaz/trunk/Makefile csw/mgar/pkg/yaz/trunk/checksums Modified: csw/mgar/pkg/yaz/trunk/Makefile =================================================================== --- csw/mgar/pkg/yaz/trunk/Makefile 2012-07-15 18:18:15 UTC (rev 18748) +++ csw/mgar/pkg/yaz/trunk/Makefile 2012-07-15 19:28:45 UTC (rev 18749) @@ -1,5 +1,5 @@ NAME = yaz -VERSION = 4.1.2 +VERSION = 4.2.35 CATEGORIES = utils GARTYPE = v2 @@ -11,43 +11,70 @@ MASTER_SITES = http://ftp.indexdata.dk/pub/yaz/ DISTFILES = $(NAME)-$(VERSION).tar.gz -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz - VENDOR_URL = https://www.indexdata.com/yaz LICENSE = LICENSE # File splitting taken from yaz.spec PACKAGES += CSWlibyaz4 -CATALOGNAME_CSWlibyaz4 = libyaz4 SPKG_DESC_CSWlibyaz4 = Toolkit for Z39.50/SRW/SRU clients and servers, libyaz.so.4 -PKGFILES_CSWlibyaz4 = $(call baseisadirs,$(libdir),libyaz.*\.so\.4(\.\d+)*) +PKGFILES_CSWlibyaz4 = $(call pkgfiles_lib,libyaz.so.4) # These are always bumped together CHECKPKG_OVERRIDES_CSWlibyaz4 += shared-lib-pkgname-mismatch -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWzlib -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibxml2 -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWgcrypt -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibicu46 -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibxslt -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWiconv -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWgnutls -RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWgpgerr +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibgcrypt11 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibxslt1 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibexslt0 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWlibyaz4 += CSWlibgpg-error0 -PACKAGES += CSWlibyaz-devel -CATALOGNAME_CSWlibyaz-devel = libyaz_devel -SPKG_DESC_CSWlibyaz-devel = Development files for libyaz -PKGFILES_CSWlibyaz-devel += $(PKGFILES_DEVEL) -PKGFILES_CSWlibyaz-devel += $(bindir)/yaz-asncomp -PKGFILES_CSWlibyaz-devel += $(sharedstatedir)/yaz/.* -PKGFILES_CSWlibyaz-devel += $(docdir)/yaz/.* -PKGFILES_CSWlibyaz-devel += $(mandir)/man7/.* -RUNTIME_DEP_PKGS_CSWlibyaz-devel += CSWlibyaz4 + +PACKAGES += CSWlibyaz-icu4 +PKGFILES_CSWlibyaz-icu4 += $(call pkgfiles_lib,libyaz_icu.so.4) +SPKG_DESC_CSWlibyaz-icu4 += $(DESCRIPTION), libyaz_icu.so.4 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibgcrypt11 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibicudata48 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibyaz4 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibxslt1 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibexslt0 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibicuuc48 +RUNTIME_DEP_PKGS_CSWlibyaz-icu4 += CSWlibicui18n48 + +PACKAGES += CSWlibyaz-server4 +PKGFILES_CSWlibyaz-server4 += $(call pkgfiles_lib,libyaz_server.so.4) +SPKG_DESC_CSWlibyaz-server4 += $(DESCRIPTION), libyaz_server.so.4 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibexslt0 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibyaz4 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibz1 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibxslt1 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibyaz-server4 += CSWlibgcrypt11 + +PACKAGES += CSWlibyaz-dev +SPKG_DESC_CSWlibyaz-dev = Development files for libyaz +PKGFILES_CSWlibyaz-dev += $(PKGFILES_DEVEL) +PKGFILES_CSWlibyaz-dev += $(bindir)/yaz-asncomp +PKGFILES_CSWlibyaz-dev += $(sharedstatedir)/yaz/.* +PKGFILES_CSWlibyaz-dev += $(docdir)/yaz/.* +PKGFILES_CSWlibyaz-dev += $(mandir)/man7/.* +RUNTIME_DEP_PKGS_CSWlibyaz-dev += CSWlibyaz4 +RUNTIME_DEP_PKGS_CSWlibyaz-dev += CSWlibyaz-icu4 +RUNTIME_DEP_PKGS_CSWlibyaz-dev += CSWlibyaz-server4 +OBSOLETED_BY_CSWlibyaz-dev += CSWlibyaz-devel + # These are default locations for docbook files, they can be specified with a --with-* option -CHECKPKG_OVERRIDES_CSWlibyaz-devel += file-with-bad-content|/usr/local|root/opt/csw/share/aclocal/yaz.m4 -CHECKPKG_OVERRIDES_CSWlibyaz-devel += file-with-bad-content|/usr/share|root/opt/csw/share/aclocal/yaz.m4 +CHECKPKG_OVERRIDES_CSWlibyaz-dev += file-with-bad-content|/usr/local|root/opt/csw/share/aclocal/yaz.m4 +CHECKPKG_OVERRIDES_CSWlibyaz-dev += file-with-bad-content|/usr/share|root/opt/csw/share/aclocal/yaz.m4 # These are the default on configuration -CHECKPKG_OVERRIDES_CSWlibyaz-devel += file-with-bad-content|/usr/local|root/opt/csw/share/doc/yaz/installation.unix.html +CHECKPKG_OVERRIDES_CSWlibyaz-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/yaz/installation.unix.html # %{_bindir}/yaz-config # %{_bindir}/yaz-asncomp @@ -63,33 +90,53 @@ # %{_datadir}/yaz PACKAGES += CSWyaz -CATALOGNAME_CSWyaz = yaz SPKG_DESC_CSWyaz = Toolkit for Z39.50/SRW/SRU clients and servers RUNTIME_DEP_PKGS_CSWyaz += CSWlibyaz4 -RUNTIME_DEP_PKGS_CSWyaz += CSWiconv -RUNTIME_DEP_PKGS_CSWyaz += CSWgnutls -RUNTIME_DEP_PKGS_CSWyaz += CSWgpgerr -RUNTIME_DEP_PKGS_CSWyaz += CSWncurses -RUNTIME_DEP_PKGS_CSWyaz += CSWlibxslt -RUNTIME_DEP_PKGS_CSWyaz += CSWzlib -RUNTIME_DEP_PKGS_CSWyaz += CSWlibxml2 -RUNTIME_DEP_PKGS_CSWyaz += CSWreadline -RUNTIME_DEP_PKGS_CSWyaz += CSWgcrypt -RUNTIME_DEP_PKGS_CSWyaz += CSWlibicu46 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibyaz-icu4 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibyaz-server4 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibgnutls26 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibncurses5 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibxslt1 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibexslt0 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibz1 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibreadline6 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibhistory6 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibgcrypt11 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibicuuc48 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibicui18n48 +RUNTIME_DEP_PKGS_CSWyaz += CSWlibicudata48 +REINPLACE_USRLOCAL += doc/yaz-config.1 + +REINPLACEMENTS += usrlocalshare +REINPLACE_MATCH_usrlocalshare = /usr/local/share +REINPLACE_WITH_usrlocalshare = $(sharedstatedir) +REINPLACE_FILES_usrlocalshare += client/client.c +REINPLACE_FILES_usrlocalshare += doc/yaz.7 + +REINPLACEMENTS += usrshare +REINPLACE_MATCH_usrshare = /usr/share +REINPLACE_WITH_usrshare = $(sharedstatedir) +REINPLACE_FILES_usrshare += doc/yaz-asncomp-man.xml + +REINPLACEMENTS += etc +REINPLACE_MATCH_etc = /usr/share/yaz/etc +REINPLACE_WITH_etc = $(sysconfdir) +REINPLACE_FILES_etc += doc/tools.xml + BUILD64_LIBS_ONLY = 1 CONFIGURE_ARGS = $(DIRPATHS) +# Skip tests for now. +# There is one test failing: +# Entity: line 1: parser error : Extra content at the end of the document +# DY2IB5ETEMeMTAfYUphY2sgQ29sbGlucx4xMB9hSG93IHRvIHByb2dyYW0gYSBjb21wdXRlch4d +# ^ +# test_embed_record.c:187: FAILED: test_render( "xml; base64=/my/text()", 0, "" "MDAxMzhuYW0gIDIyMDAwNzM4YSA0NTAwMDAxMDAxMzAwMDAwMDAzMDAwNDAwMDEzMTAwMDAxNzAw" "MDE3MjQ1MDAzMDAwMDM0HiAgIDExMjI0NDY2IB5ETEMeMTAfYUphY2sgQ29sbGlucx4xMB9hSG93" "IHRvIHByb2dyYW0gYSBjb21wdXRlch4d" "", "\n" "\n" " 00138nam a22000738a 4500\n" " 11224466 \n" " DLC\n" " \n" " Jack Collins\n" " \n" " \n" " How to program a computer\n" " \n" "\n") + +SKIPTEST ?= 1 + include gar/category.mk - -post-extract-modulated: - -perl -pi -e 's,/usr/local/share,$(sharedstatedir),;' \ - $(WORKSRC)/client/client.c \ - $(WORKSRC)/doc/yaz.7 - -perl -pi -e 's,/usr/share,$(sharedstatedir),;' \ - $(WORKSRC)/doc/yaz-asncomp-man.xml - -perl -pi -e 's,/usr/share/yaz/etc,$(sysconfdir),;' \ - $(WORKSRC)/doc/tools.xml - -perl -pi -e 's,/usr/local,$(prefix),;' \ - $(WORKSRC)/doc/yaz-config.1 - @$(MAKECOOKIE) Modified: csw/mgar/pkg/yaz/trunk/checksums =================================================================== --- csw/mgar/pkg/yaz/trunk/checksums 2012-07-15 18:18:15 UTC (rev 18748) +++ csw/mgar/pkg/yaz/trunk/checksums 2012-07-15 19:28:45 UTC (rev 18749) @@ -1 +1 @@ -54e76ff8ee6f460d68678df298e7da71 yaz-4.1.2.tar.gz +0392d5fdbb5bda53b055e35a166adc56 yaz-4.2.35.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 Jul 15 22:37:59 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 20:37:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[18750] csw/mgar/pkg/cpan/DateTime/trunk Message-ID: Revision: 18750 http://gar.svn.sourceforge.net/gar/?rev=18750&view=rev Author: dmichelsen Date: 2012-07-15 20:37:59 +0000 (Sun, 15 Jul 2012) Log Message: ----------- cpan/DateTime/trunk: Update to 0.76 Modified Paths: -------------- csw/mgar/pkg/cpan/DateTime/trunk/Makefile csw/mgar/pkg/cpan/DateTime/trunk/checksums Modified: csw/mgar/pkg/cpan/DateTime/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime/trunk/Makefile 2012-07-15 19:28:45 UTC (rev 18749) +++ csw/mgar/pkg/cpan/DateTime/trunk/Makefile 2012-07-15 20:37:59 UTC (rev 18750) @@ -1,28 +1,32 @@ NAME = DateTime -VERSION = 0.55 +VERSION = 0.76 CATEGORIES = cpan GARTYPE = v2 AUTHOR = DROLSKY DESCRIPTION = A date and time object define BLURB - DateTime is a class for the representation of date/time combinations, and is - part of the Perl DateTime project. For details on this project please see - http://datetime.perl.org/. The DateTime site has a FAQ which may help answer - many "how do I do X?" questions. The FAQ is at http://datetime.perl.org/?FAQ. endef -PACKAGES = CSWpmdatetime -CATALOGNAME = pm_datetime +CATALOG_RELEASE = unstable LICENSE = LICENSE -DEP_PKGS = CSWpmdatetimetz CSWpmdatetimelocale +BUILD_DEP_PKGS += CSWpm-test-fatal +PACKAGES += CSWpm-datetime +CATALOGNAME_CSWpm-datetime = pm_datetime +SPKG_DESC_CSWpm-datetime = A date and time object +RUNTIME_DEP_PKGS_CSWpm-datetime += CSWpm-params-validate +RUNTIME_DEP_PKGS_CSWpm-datetime += CSWpm-datetime-locale +RUNTIME_DEP_PKGS_CSWpm-datetime += CSWpm-math-round +RUNTIME_DEP_PKGS_CSWpm-datetime += CSWpm-datetime-timezone +OBSOLETED_BY_CSWpm-datetime += CSWpmdatetime +CATALOGNAME_CSWpmdatetime = pm_datetime_stub + CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL BUILD_SCRIPTS = $(WORKSRC)/Build TEST_SCRIPTS = $(WORKSRC)/Build INSTALL_SCRIPTS = $(WORKSRC)/Build include gar/category.mk - Modified: csw/mgar/pkg/cpan/DateTime/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime/trunk/checksums 2012-07-15 19:28:45 UTC (rev 18749) +++ csw/mgar/pkg/cpan/DateTime/trunk/checksums 2012-07-15 20:37:59 UTC (rev 18750) @@ -1 +1 @@ -eb458ff23f5ad612631e428934c26c6c DateTime-0.55.tar.gz +30f55b42478b7eb36d628db9b62f894a DateTime-0.76.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 Jul 15 22:53:57 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 20:53:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[18751] csw/mgar/pkg Message-ID: Revision: 18751 http://gar.svn.sourceforge.net/gar/?rev=18751&view=rev Author: dmichelsen Date: 2012-07-15 20:53:57 +0000 (Sun, 15 Jul 2012) Log Message: ----------- libicu49: Update to 49.1.2 Modified Paths: -------------- csw/mgar/pkg/libicu49/trunk/Makefile csw/mgar/pkg/libicu49/trunk/checksums Added Paths: ----------- csw/mgar/pkg/libicu49/ Modified: csw/mgar/pkg/libicu49/trunk/Makefile =================================================================== --- csw/mgar/pkg/libicu48/trunk/Makefile 2012-07-14 20:56:46 UTC (rev 18732) +++ csw/mgar/pkg/libicu49/trunk/Makefile 2012-07-15 20:53:57 UTC (rev 18751) @@ -1,6 +1,6 @@ # $Id$ NAME = libicu -VERSION = 4.8.1 +VERSION = 49.1.2 CATEGORIES = lib GARTYPE = v2 @@ -16,67 +16,67 @@ LICENSE = license.html -PACKAGES += CSWlibicudata48 -SPKG_DESC_CSWlibicudata48 = International Components for Unicode, libicudata.so.48 -PKGFILES_CSWlibicudata48 += $(call pkgfiles_lib,libicudata.so.48) +PACKAGES += CSWlibicudata49 +SPKG_DESC_CSWlibicudata49 = International Components for Unicode, libicudata.so.49 +PKGFILES_CSWlibicudata49 += $(call pkgfiles_lib,libicudata.so.49) -PACKAGES += CSWlibicui18n48 -SPKG_DESC_CSWlibicui18n48 = International Components for Unicode, libicui18n.so.48 -PKGFILES_CSWlibicui18n48 += $(call pkgfiles_lib,libicui18n.so.48) -RUNTIME_DEP_PKGS_CSWlibicui18n48 += CSWlibicuuc48 -RUNTIME_DEP_PKGS_CSWlibicui18n48 += CSWlibicudata48 +PACKAGES += CSWlibicui18n49 +SPKG_DESC_CSWlibicui18n49 = International Components for Unicode, libicui18n.so.49 +PKGFILES_CSWlibicui18n49 += $(call pkgfiles_lib,libicui18n.so.49) +RUNTIME_DEP_PKGS_CSWlibicui18n49 += CSWlibicuuc49 +RUNTIME_DEP_PKGS_CSWlibicui18n49 += CSWlibicudata49 -PACKAGES += CSWlibicuio48 -SPKG_DESC_CSWlibicuio48 = International Components for Unicode, libicuio.so.48 -PKGFILES_CSWlibicuio48 += $(call pkgfiles_lib,libicuio.so.48) -RUNTIME_DEP_PKGS_CSWlibicuio48 += CSWlibicudata48 -RUNTIME_DEP_PKGS_CSWlibicuio48 += CSWlibicui18n48 -RUNTIME_DEP_PKGS_CSWlibicuio48 += CSWlibicuuc48 +PACKAGES += CSWlibicuio49 +SPKG_DESC_CSWlibicuio49 = International Components for Unicode, libicuio.so.49 +PKGFILES_CSWlibicuio49 += $(call pkgfiles_lib,libicuio.so.49) +RUNTIME_DEP_PKGS_CSWlibicuio49 += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWlibicuio49 += CSWlibicui18n49 +RUNTIME_DEP_PKGS_CSWlibicuio49 += CSWlibicuuc49 -PACKAGES += CSWlibicule48 -SPKG_DESC_CSWlibicule48 = International Components for Unicode, libicule.so.48 -PKGFILES_CSWlibicule48 += $(call pkgfiles_lib,libicule.so.48) -RUNTIME_DEP_PKGS_CSWlibicule48 += CSWlibicuuc48 -RUNTIME_DEP_PKGS_CSWlibicule48 += CSWlibicudata48 +PACKAGES += CSWlibicule49 +SPKG_DESC_CSWlibicule49 = International Components for Unicode, libicule.so.49 +PKGFILES_CSWlibicule49 += $(call pkgfiles_lib,libicule.so.49) +RUNTIME_DEP_PKGS_CSWlibicule49 += CSWlibicuuc49 +RUNTIME_DEP_PKGS_CSWlibicule49 += CSWlibicudata49 -PACKAGES += CSWlibiculx48 -SPKG_DESC_CSWlibiculx48 = International Components for Unicode, libiculx.so.48 -PKGFILES_CSWlibiculx48 += $(call pkgfiles_lib,libiculx.so.48) -RUNTIME_DEP_PKGS_CSWlibiculx48 += CSWlibicuuc48 -RUNTIME_DEP_PKGS_CSWlibiculx48 += CSWlibicudata48 -RUNTIME_DEP_PKGS_CSWlibiculx48 += CSWlibicule48 +PACKAGES += CSWlibiculx49 +SPKG_DESC_CSWlibiculx49 = International Components for Unicode, libiculx.so.49 +PKGFILES_CSWlibiculx49 += $(call pkgfiles_lib,libiculx.so.49) +RUNTIME_DEP_PKGS_CSWlibiculx49 += CSWlibicuuc49 +RUNTIME_DEP_PKGS_CSWlibiculx49 += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWlibiculx49 += CSWlibicule49 -PACKAGES += CSWlibicutest48 -SPKG_DESC_CSWlibicutest48 = International Components for Unicode, libicutest.so.48 -PKGFILES_CSWlibicutest48 += $(call pkgfiles_lib,libicutest.so.48) -RUNTIME_DEP_PKGS_CSWlibicutest48 += CSWlibicudata48 -RUNTIME_DEP_PKGS_CSWlibicutest48 += CSWlibicui18n48 -RUNTIME_DEP_PKGS_CSWlibicutest48 += CSWlibicutu48 -RUNTIME_DEP_PKGS_CSWlibicutest48 += CSWlibicuuc48 +PACKAGES += CSWlibicutest49 +SPKG_DESC_CSWlibicutest49 = International Components for Unicode, libicutest.so.49 +PKGFILES_CSWlibicutest49 += $(call pkgfiles_lib,libicutest.so.49) +RUNTIME_DEP_PKGS_CSWlibicutest49 += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWlibicutest49 += CSWlibicui18n49 +RUNTIME_DEP_PKGS_CSWlibicutest49 += CSWlibicutu49 +RUNTIME_DEP_PKGS_CSWlibicutest49 += CSWlibicuuc49 -PACKAGES += CSWlibicutu48 -SPKG_DESC_CSWlibicutu48 = International Components for Unicode, libicutu.so.48 -PKGFILES_CSWlibicutu48 += $(call pkgfiles_lib,libicutu.so.48) -RUNTIME_DEP_PKGS_CSWlibicutu48 += CSWlibicuuc48 -RUNTIME_DEP_PKGS_CSWlibicutu48 += CSWlibicudata48 -RUNTIME_DEP_PKGS_CSWlibicutu48 += CSWlibicui18n48 +PACKAGES += CSWlibicutu49 +SPKG_DESC_CSWlibicutu49 = International Components for Unicode, libicutu.so.49 +PKGFILES_CSWlibicutu49 += $(call pkgfiles_lib,libicutu.so.49) +RUNTIME_DEP_PKGS_CSWlibicutu49 += CSWlibicuuc49 +RUNTIME_DEP_PKGS_CSWlibicutu49 += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWlibicutu49 += CSWlibicui18n49 -PACKAGES += CSWlibicuuc48 -SPKG_DESC_CSWlibicuuc48 = International Components for Unicode, libicuuc.so.48 -PKGFILES_CSWlibicuuc48 += $(call pkgfiles_lib,libicuuc.so.48) -RUNTIME_DEP_PKGS_CSWlibicuuc48 += CSWlibicudata48 +PACKAGES += CSWlibicuuc49 +SPKG_DESC_CSWlibicuuc49 = International Components for Unicode, libicuuc.so.49 +PKGFILES_CSWlibicuuc49 += $(call pkgfiles_lib,libicuuc.so.49) +RUNTIME_DEP_PKGS_CSWlibicuuc49 += CSWlibicudata49 PACKAGES += CSWlibicu-dev -SPKG_DESC_CSWlibicu-dev = Development files for libicu.so.48 +SPKG_DESC_CSWlibicu-dev = Development files for libicu.so.49 # This package is PKGFILES catchall -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicudata48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicui18n48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicuio48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicule48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibiculx48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicutest48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicutu48 -RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicuuc48 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicui18n49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicuio49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicule49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibiculx49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicutest49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicutu49 +RUNTIME_DEP_PKGS_CSWlibicu-dev += CSWlibicuuc49 OBSOLETED_BY_CSWlibicu-dev += CSWlibicu-devel DISTNAME = icu Modified: csw/mgar/pkg/libicu49/trunk/checksums =================================================================== --- csw/mgar/pkg/libicu48/trunk/checksums 2012-07-14 20:56:46 UTC (rev 18732) +++ csw/mgar/pkg/libicu49/trunk/checksums 2012-07-15 20:53:57 UTC (rev 18751) @@ -1 +1 @@ -af36f635271a239d76d038d6cf8da8df icu4c-4_8_1-src.tgz +bbc609fe5237202d7abf016141012a45 icu4c-49_1_2-src.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 Sun Jul 15 23:34:26 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 21:34:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[18752] csw/mgar/pkg/idzebra/trunk Message-ID: Revision: 18752 http://gar.svn.sourceforge.net/gar/?rev=18752&view=rev Author: dmichelsen Date: 2012-07-15 21:34:26 +0000 (Sun, 15 Jul 2012) Log Message: ----------- idzebra/trunk: Update to 2.0.52 Modified Paths: -------------- csw/mgar/pkg/idzebra/trunk/Makefile csw/mgar/pkg/idzebra/trunk/checksums Modified: csw/mgar/pkg/idzebra/trunk/Makefile =================================================================== --- csw/mgar/pkg/idzebra/trunk/Makefile 2012-07-15 20:53:57 UTC (rev 18751) +++ csw/mgar/pkg/idzebra/trunk/Makefile 2012-07-15 21:34:26 UTC (rev 18752) @@ -1,6 +1,6 @@ # $Id$ NAME = idzebra -VERSION = 2.0.43 +VERSION = 2.0.52 CATEGORIES = lib GARTYPE = v2 @@ -11,16 +11,52 @@ MASTER_SITES = http://ftp.indexdata.dk/pub/zebra/ DISTFILES = $(NAME)-$(VERSION).tar.gz -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz +VENDOR_URL = http://www.indexdata.com/zebra LICENSE = LICENSE.zebra -DEP_PKGS = CSWyaz CSWgcrypt CSWexpat CSWlibxml2 CSWlibxslt CSWbzip2 CSWgpgerr CSWiconv CSWtcl CSWzlib +# Many more missing +BUILD_DEP_PKGS += CSWlibyaz-dev -VENDOR_URL = http://www.indexdata.com/zebra +# DEP_PKGS = CSWyaz CSWgcrypt CSWexpat CSWlibxml2 CSWlibxslt CSWbzip2 CSWgpgerr CSWiconv CSWtcl CSWzlib -# Just wait a _little_ longer until yaz is ready in 64 bit, which itself needs libicu in 64 bit +PACKAGES += CSWidzebra +SPKG_DESC_CSWidzebra = A high-performance, general-purpose structured text indexing and retrieval engine +# I have no idea how this is split, leave as one package for now +# PKGFILES is catchall +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibyaz-icu4 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibbz2-1-0 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibyaz4 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibicudata48 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibz1 +RUNTIME_DEP_PKGS_CSWidzebra += CSWtcl +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibgpg-error0 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibyaz-server4 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibxslt1 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibexslt0 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibicuuc48 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibicui18n48 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWidzebra += CSWlibgcrypt11 + +# Leave everything for now +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/share|root/opt/csw/share/idzebra-2.0-examples/oai-pmh/conf/zebra.cfg +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/share|root/opt/csw/share/doc/idzebra-2.0/installation-upgrade.html +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/share|root/opt/csw/share/doc/idzebra-2.0/tutorial.html +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/idzebra-config-2.0.1 +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/local|root/opt/csw/share/doc/idzebra-2.0/zebra-cfg.html +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/local|root/opt/csw/share/doc/idzebra-2.0/idzebra-config.html +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/local|root/opt/csw/share/doc/idzebra-2.0/installation.html +CHECKPKG_OVERRIDES_CSWidzebra += file-with-bad-content|/usr/local|root/opt/csw/share/doc/idzebra-2.0/simple-indexing.html +CHECKPKG_OVERRIDES_CSWidzebra += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libidzebra-2.0.so +CHECKPKG_OVERRIDES_CSWidzebra += shared-lib-pkgname-mismatch|file=opt/csw/lib/libidzebra-2.0.so.0.0.1|soname=libidzebra-2.0.so.0|pkgname=CSWidzebra|expected=CSWlibidzebra2-0-0 +CHECKPKG_OVERRIDES_CSWidzebra += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libidzebra-2.0.so + +# Just wait a _little_ longer until Tcl is released in 64 bit # BUILD64_LIBS_ONLY = 1 + CONFIGURE_ARGS = $(DIRPATHS) include gar/category.mk Modified: csw/mgar/pkg/idzebra/trunk/checksums =================================================================== --- csw/mgar/pkg/idzebra/trunk/checksums 2012-07-15 20:53:57 UTC (rev 18751) +++ csw/mgar/pkg/idzebra/trunk/checksums 2012-07-15 21:34:26 UTC (rev 18752) @@ -1 +1 @@ -00e623d8f1eada14b9750fc997c847bb idzebra-2.0.43.tar.gz +222e61fb9372933f3f7bcf591cf3738c idzebra-2.0.52.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 Jul 15 23:38:05 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sun, 15 Jul 2012 21:38:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[18753] csw/mgar/pkg/libnet/branches/1.1.x Message-ID: Revision: 18753 http://gar.svn.sourceforge.net/gar/?rev=18753&view=rev Author: dmichelsen Date: 2012-07-15 21:38:05 +0000 (Sun, 15 Jul 2012) Log Message: ----------- libnet/branches/1.1.x: Update to 1.1.6 Modified Paths: -------------- csw/mgar/pkg/libnet/branches/1.1.x/Makefile csw/mgar/pkg/libnet/branches/1.1.x/checksums Removed Paths: ------------- csw/mgar/pkg/libnet/branches/1.1.x/files/libnet.so.1.0.2.i csw/mgar/pkg/libnet/branches/1.1.x/files/libnet.so.1.0.2.s Modified: csw/mgar/pkg/libnet/branches/1.1.x/Makefile =================================================================== --- csw/mgar/pkg/libnet/branches/1.1.x/Makefile 2012-07-15 21:34:26 UTC (rev 18752) +++ csw/mgar/pkg/libnet/branches/1.1.x/Makefile 2012-07-15 21:38:05 UTC (rev 18753) @@ -1,5 +1,5 @@ NAME = libnet -VERSION = 1.1.5 +VERSION = 1.1.6 CATEGORIES = lib DESCRIPTION = The libnet packet construction library @@ -17,33 +17,16 @@ SF_PROJ = libnet-dev MASTER_SITES = $(SF_MIRROR) -DISTFILES = $(NAME)-$(VERSION).tar.gz -DISTFILES += libnet.so.1.0.2.i -DISTFILES += libnet.so.1.0.2.s -PATCHFILES = 0001-Fix-missing-uint-instead-of-u_int.patch +DISTFILES = $(DISTNAME).tar.gz LICENSE = doc/COPYING VENDOR_URL = http://github.com/sam-github/libnet -PACKAGES += CSWlibnet -SPKG_DESC_CSWlibnet = Libnet package construction library (legacy), libnet.so -SPKG_VERSION_CSWlibnet = 1.0.2a -PKGFILES_CSWlibnet += $(libdir)/libnet.so -PKGFILES_CSWlibnet += $(libdir)/libnet.so.1.0.2 - -# These overrides are for the legacy library which should just -# stay the way it is. -CHECKPKG_OVERRIDES_CSWlibnet += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libnet.so -CHECKPKG_OVERRIDES_CSWlibnet += bad-rpath-entry -CHECKPKG_OVERRIDES_CSWlibnet += shared-lib-pkgname-mismatch|file=opt/csw/lib/libnet.so.1.0.2|soname=libnet.so.1.0.2|pkgname=CSWlibnet|expected=CSWlibnet1-0-2 -CHECKPKG_OVERRIDES_CSWlibnet += shared-lib-package-contains-so-symlink|file=/opt/csw/lib/libnet.so - PACKAGES += CSWlibnet1 SPKG_DESC_CSWlibnet1 = Libnet package construction library, libnet.so.1 # Explicitly do *not* include libnet.so.1.0.2 -PKGFILES_CSWlibnet1 = $(call baseisadirs,$(libdir),libnet\.so\.1) -PKGFILES_CSWlibnet1 += $(call baseisadirs,$(libdir),libnet\.so\.1\.6(\.\d+)*) +PKGFILES_CSWlibnet1 = $(call pkgfiles_lib,libnet.so.1) PACKAGES += CSWlibnet-dev SPKG_DESC_CSWlibnet-dev = Development files for libnet.so.1 @@ -56,26 +39,18 @@ BUILD64 = 1 -EXTRA_CONFIGURE_ARGS-32 += LIBNET_CONFIG_LIBS=-L$(libdir)/libnet-new -EXTRA_CONFIGURE_ARGS-64 += LIBNET_CONFIG_LIBS=-L$(libdir) -EXTRA_CONFIGURE_ARGS += $(EXTRA_CONFIGURE_ARGS-$(MEMORYMODEL)) - include gar/category.mk post-install-isa-sparcv8: ginstall -d $(DESTDIR)$(libdir) - cp $(WORKDIR)/libnet.so.1.0.2.s $(DESTDIR)$(libdir)/libnet.so.1.0.2 - rm $(DESTDIR)$(libdir)/libnet.so - ln -s libnet.so.1.0.2 $(DESTDIR)$(libdir)/libnet.so mkdir $(DESTDIR)$(libdir)/libnet-new ln -s ../libnet.so.1 $(DESTDIR)$(libdir)/libnet-new/libnet.so + rm -f $(DESTDIR)$(libdir)/libnet.so @$(MAKECOOKIE) post-install-isa-i386: ginstall -d $(DESTDIR)$(libdir) - cp $(WORKDIR)/libnet.so.1.0.2.i $(DESTDIR)$(libdir)/libnet.so.1.0.2 - rm $(DESTDIR)$(libdir)/libnet.so - ln -s libnet.so.1.0.2 $(DESTDIR)$(libdir)/libnet.so mkdir $(DESTDIR)$(libdir)/libnet-new ln -s ../libnet.so.1 $(DESTDIR)$(libdir)/libnet-new/libnet.so + rm -f $(DESTDIR)$(libdir)/libnet.so @$(MAKECOOKIE) Modified: csw/mgar/pkg/libnet/branches/1.1.x/checksums =================================================================== --- csw/mgar/pkg/libnet/branches/1.1.x/checksums 2012-07-15 21:34:26 UTC (rev 18752) +++ csw/mgar/pkg/libnet/branches/1.1.x/checksums 2012-07-15 21:38:05 UTC (rev 18753) @@ -1 +1 @@ -a9bc1d75a610efcfee200d3e28d8eb8f libnet-1.1.5.tar.gz +710296fe424a49344e5fcc0d09e53317 libnet-1.1.6.tar.gz Deleted: csw/mgar/pkg/libnet/branches/1.1.x/files/libnet.so.1.0.2.i =================================================================== (Binary files differ) Deleted: csw/mgar/pkg/libnet/branches/1.1.x/files/libnet.so.1.0.2.s =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 10:53:46 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 08:53:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18754] csw/mgar/pkg/libofx/trunk/Makefile Message-ID: Revision: 18754 http://gar.svn.sourceforge.net/gar/?rev=18754&view=rev Author: pfelecan Date: 2012-07-16 08:53:46 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: patch for permissive cast; not ready for release Modified Paths: -------------- csw/mgar/pkg/libofx/trunk/Makefile Modified: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile 2012-07-15 21:38:05 UTC (rev 18753) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 08:53:46 UTC (rev 18754) @@ -14,6 +14,7 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(DISTNAME).tar.gz +PATCHFILES += 0001-Permissive-cast.patch GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 10:54:19 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 08:54:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18755] csw/mgar/pkg/libofx/trunk/files/ 0001-Permissive-cast.patch Message-ID: Revision: 18755 http://gar.svn.sourceforge.net/gar/?rev=18755&view=rev Author: pfelecan Date: 2012-07-16 08:54:18 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: patch for permissive cast (the patch itself); not ready for release Added Paths: ----------- csw/mgar/pkg/libofx/trunk/files/0001-Permissive-cast.patch Added: csw/mgar/pkg/libofx/trunk/files/0001-Permissive-cast.patch =================================================================== --- csw/mgar/pkg/libofx/trunk/files/0001-Permissive-cast.patch (rev 0) +++ csw/mgar/pkg/libofx/trunk/files/0001-Permissive-cast.patch 2012-07-16 08:54:18 UTC (rev 18755) @@ -0,0 +1,25 @@ +From 5855a21e84c384205fa65aadbc203f85b399aee4 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Mon, 16 Jul 2012 10:17:35 +0200 +Subject: [PATCH] Permissive cast + +--- + lib/ofx_preproc.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/ofx_preproc.cpp b/lib/ofx_preproc.cpp +index ece191c..1a3dc89 100644 +--- a/lib/ofx_preproc.cpp ++++ b/lib/ofx_preproc.cpp +@@ -238,7 +238,7 @@ int ofx_proc_file(LibofxContextPtr ctx, const char * p_filename) + #endif + char * outchar = iconv_buffer; + int iconv_retval = iconv (conversion_descriptor, +- &inchar, &inbytesleft, ++ (const char**)&inchar, &inbytesleft, + &outchar, &outbytesleft); + if (iconv_retval == -1) + { +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 11:33:23 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 09:33:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[18756] csw/mgar/pkg/libofx/trunk/Makefile Message-ID: Revision: 18756 http://gar.svn.sourceforge.net/gar/?rev=18756&view=rev Author: pfelecan Date: 2012-07-16 09:33:22 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: use pre-configuration autotools; not ready for release Modified Paths: -------------- csw/mgar/pkg/libofx/trunk/Makefile Modified: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 08:54:18 UTC (rev 18755) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 09:33:22 UTC (rev 18756) @@ -36,6 +36,14 @@ PATH := /opt/csw/gnu:$(PATH) +pre-configure-modulated: + @echo "executing $@" + cd $(WORKSRC) && libtoolize + cd $(WORKSRC) && aclocal + cd $(WORKSRC) && automake -a + cd $(WORKSRC) && autoconf + $(MAKECOOKIE) + # this is private and not available publicly mydependencies: for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 11:52:09 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 09:52:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[18757] csw/mgar/pkg/libofx/trunk/Makefile Message-ID: Revision: 18757 http://gar.svn.sourceforge.net/gar/?rev=18757&view=rev Author: pfelecan Date: 2012-07-16 09:52:09 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: force linking with gnugetopt library; not ready for release Modified Paths: -------------- csw/mgar/pkg/libofx/trunk/Makefile Modified: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 09:33:22 UTC (rev 18756) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 09:52:09 UTC (rev 18757) @@ -30,6 +30,8 @@ BUILD_DEP_PKGS += CSWgawk BUILD_DEP_PKGS += CSWlibgnugetopt-dev +EXTRA_LINKER_FLAGS = -lgnugetopt + RUNTIME_DEP_PKGS += CSWlibosp5 include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 14:41:25 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 12:41:25 +0000 Subject: [csw-devel] SF.net SVN: gar:[18758] csw/mgar/pkg/libofx/trunk Message-ID: Revision: 18758 http://gar.svn.sourceforge.net/gar/?rev=18758&view=rev Author: pfelecan Date: 2012-07-16 12:41:25 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: - split in sub-packages - verified and validated some overrides Modified Paths: -------------- csw/mgar/pkg/libofx/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/libofx/trunk/files/0002-Unref-usr-local.patch Modified: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 09:52:09 UTC (rev 18757) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 12:41:25 UTC (rev 18758) @@ -15,6 +15,7 @@ MASTER_SITES = $(SF_MIRRORS) DISTFILES = $(DISTNAME).tar.gz PATCHFILES += 0001-Permissive-cast.patch +PATCHFILES += 0002-Unref-usr-local.patch GARCOMPILER = GNU CONFIGURE_ARGS = $(DIRPATHS) @@ -30,10 +31,68 @@ BUILD_DEP_PKGS += CSWgawk BUILD_DEP_PKGS += CSWlibgnugetopt-dev +# this is needed, at least, on unstable9s EXTRA_LINKER_FLAGS = -lgnugetopt -RUNTIME_DEP_PKGS += CSWlibosp5 +PACKAGES += CSWlibofx-doc +CATALOGNAME_CSWlibofx-doc = libofx_doc +SPKG_DESC_CSWlibofx-doc = $(DESCRIPTION), documentation +OBSOLETED_BY_CSWlibofx-doc = CSWlibofxdoc +CATALOGNAME_CSWlibofxdoc = libofx_doc_stub +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/ChangeLog +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/INSTALL +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/lib/libofx.so.5.0.0 +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp.html +PACKAGES += CSWlibofx-utils +CATALOGNAME_CSWlibofx-utils = libofx_utils +SPKG_DESC_CSWlibofx-utils = $(DESCRIPTION), utilities +PKGFILES_CSWlibofx-utils += /opt/csw/bin/.* +PKGFILES_CSWlibofx-utils += /opt/csw/share/man/.* +OBSOLETED_BY_CSWlibofx-utils = CSWlibofx +CATALOGNAME_CSWlibofx = libofx_stub +RUNTIME_DEP_PKGS_CSWlibofx-utils += CSWlibosp5 +# transitivity: +CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibgnugetopt0 +CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibgcc-s1 +CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibstdc++6 +CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibiconv2 + +PACKAGES += CSWlibofx5 +CATALOGNAME_CSWlibofx5 = libofx5 +PKGFILES_CSWlibofx5 += $(call baseisadirs,$(libdir),libofx\.so\.5\.0\.0) +PKGFILES_CSWlibofx5 += $(call baseisadirs,$(libdir),libofx\.so\.5(\.\d+)*) +PKGFILES_CSWlibofx5 += /opt/csw/share/libofx/.* +SPKG_DESC_CSWlibofx5 += $(DESCRIPTION), libofx.so.5 +OBSOLETED_BY_CSWlibofx5 = CSWlibofxrt +CATALOGNAME_CSWlibofxrt = libofx_rt_stub +RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibgnugetopt0 +RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibiconv2 + +PACKAGES += CSWlibofx-dev +CATALOGNAME_CSWlibofx-dev = libofx_dev +SPKG_DESC_CSWlibofx-dev += $(DESCRIPTION), development files +PKGFILES_CSWlibofx-dev += /opt/csw/lib/libofx.so +PKGFILES_CSWlibofx-dev += $(PKGFILES_DEVEL) +OBSOLETED_BY_CSWlibofx-dev = CSWlibofxdev +CATALOGNAME_CSWlibofxdev = libofx_dev_stub +RUNTIME_DEP_PKGS_CSWlibofx-dev += CSWlibofx5 +ARCHALL_CSWlibofx-dev = 1 +CHECKPKG_OVERRIDES_CSWlibofx-dev += archall-devel-package + include gar/category.mk PATH := /opt/csw/gnu:$(PATH) Added: csw/mgar/pkg/libofx/trunk/files/0002-Unref-usr-local.patch =================================================================== --- csw/mgar/pkg/libofx/trunk/files/0002-Unref-usr-local.patch (rev 0) +++ csw/mgar/pkg/libofx/trunk/files/0002-Unref-usr-local.patch 2012-07-16 12:41:25 UTC (rev 18758) @@ -0,0 +1,25 @@ +From c980079c2cb61f4bcd58307b41089993225b7401 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Mon, 16 Jul 2012 14:00:43 +0200 +Subject: [PATCH] Unref usr local + +--- + lib/ofx_preproc.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/ofx_preproc.cpp b/lib/ofx_preproc.cpp +index 1a3dc89..0498a8a 100644 +--- a/lib/ofx_preproc.cpp ++++ b/lib/ofx_preproc.cpp +@@ -68,7 +68,7 @@ const char *DTD_SEARCH_PATH[DTD_SEARCH_PATH_NUM] = + #ifdef MAKEFILE_DTD_PATH + MAKEFILE_DTD_PATH , + #endif +- "/usr/local/share/libofx/dtd", ++ "/opt/csw/share/libofx/dtd", + "/usr/share/libofx/dtd", + "~" + }; +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 14:58:32 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 12:58:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[18759] csw/mgar/pkg/libofx/trunk/Makefile Message-ID: Revision: 18759 http://gar.svn.sourceforge.net/gar/?rev=18759&view=rev Author: pfelecan Date: 2012-07-16 12:58:32 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: verified and validated more overrides Modified Paths: -------------- csw/mgar/pkg/libofx/trunk/Makefile Modified: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 12:41:25 UTC (rev 18758) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 12:58:32 UTC (rev 18759) @@ -39,21 +39,22 @@ SPKG_DESC_CSWlibofx-doc = $(DESCRIPTION), documentation OBSOLETED_BY_CSWlibofx-doc = CSWlibofxdoc CATALOGNAME_CSWlibofxdoc = libofx_doc_stub -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/ChangeLog -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/INSTALL -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp_source.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp_source.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp_source.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/lib/libofx.so.5.0.0 -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp_source.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp_source.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp_source.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp.html -CHECKPKG_OVERRIDES_CSWlibofx-dev += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/ChangeLog +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/INSTALL +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/local|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/lib/libofx.so.5.0.0 +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/libofx-0_89_85_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp_source.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/lib_2ofx__preproc_8cpp.html +CHECKPKG_OVERRIDES_CSWlibofx-doc += file-with-bad-content|/usr/share|root/opt/csw/share/doc/libofx/html/tar-pax-libofx_2lib_2ofx__preproc_8cpp.html +ARCHALL_CSWlibofx-doc = 1 PACKAGES += CSWlibofx-utils CATALOGNAME_CSWlibofx-utils = libofx_utils @@ -62,10 +63,11 @@ PKGFILES_CSWlibofx-utils += /opt/csw/share/man/.* OBSOLETED_BY_CSWlibofx-utils = CSWlibofx CATALOGNAME_CSWlibofx = libofx_stub -RUNTIME_DEP_PKGS_CSWlibofx-utils += CSWlibosp5 +RUNTIME_DEP_PKGS_CSWlibofx-utils += CSWlibofx5 # transitivity: CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibgnugetopt0 CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibgcc-s1 +CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibosp5 CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibstdc++6 CHECKPKG_OVERRIDES_CSWlibofx-utils += missing-dependency|CSWlibiconv2 @@ -79,16 +81,18 @@ CATALOGNAME_CSWlibofxrt = libofx_rt_stub RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibgnugetopt0 RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibosp5 RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibstdc++6 RUNTIME_DEP_PKGS_CSWlibofx5 += CSWlibiconv2 +CHECKPKG_OVERRIDES_CSWlibofx5 += file-with-bad-content|/usr/share|root/opt/csw/lib/libofx.so.5.0.0 PACKAGES += CSWlibofx-dev CATALOGNAME_CSWlibofx-dev = libofx_dev -SPKG_DESC_CSWlibofx-dev += $(DESCRIPTION), development files +SPKG_DESC_CSWlibofx-dev += $(DESCRIPTION), dev files PKGFILES_CSWlibofx-dev += /opt/csw/lib/libofx.so PKGFILES_CSWlibofx-dev += $(PKGFILES_DEVEL) -OBSOLETED_BY_CSWlibofx-dev = CSWlibofxdev -CATALOGNAME_CSWlibofxdev = libofx_dev_stub +OBSOLETED_BY_CSWlibofx-dev = CSWlibofxdevel +CATALOGNAME_CSWlibofxdevel = libofx_devel_stub RUNTIME_DEP_PKGS_CSWlibofx-dev += CSWlibofx5 ARCHALL_CSWlibofx-dev = 1 CHECKPKG_OVERRIDES_CSWlibofx-dev += archall-devel-package This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 16 16:02:04 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 16 Jul 2012 14:02:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[18760] csw/mgar/pkg/libofx/trunk/Makefile Message-ID: Revision: 18760 http://gar.svn.sourceforge.net/gar/?rev=18760&view=rev Author: pfelecan Date: 2012-07-16 14:02:04 +0000 (Mon, 16 Jul 2012) Log Message: ----------- libofx/trunk: following a "__sync_fetch_and_add_4" error, limit the package to Solaris 10 Modified Paths: -------------- csw/mgar/pkg/libofx/trunk/Makefile Modified: csw/mgar/pkg/libofx/trunk/Makefile =================================================================== --- csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 12:58:32 UTC (rev 18759) +++ csw/mgar/pkg/libofx/trunk/Makefile 2012-07-16 14:02:04 UTC (rev 18760) @@ -34,6 +34,9 @@ # this is needed, at least, on unstable9s EXTRA_LINKER_FLAGS = -lgnugetopt +PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + PACKAGES += CSWlibofx-doc CATALOGNAME_CSWlibofx-doc = libofx_doc SPKG_DESC_CSWlibofx-doc = $(DESCRIPTION), documentation 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 Jul 16 20:11:37 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 16 Jul 2012 18:11:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[18761] csw/mgar/pkg/cpan Message-ID: Revision: 18761 http://gar.svn.sourceforge.net/gar/?rev=18761&view=rev Author: bonivart Date: 2012-07-16 18:11:36 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Cache-Memcached-Fast/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Cache-Memcached-Fast/ csw/mgar/pkg/cpan/Cache-Memcached-Fast/Makefile csw/mgar/pkg/cpan/Cache-Memcached-Fast/branches/ csw/mgar/pkg/cpan/Cache-Memcached-Fast/tags/ csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/ csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/Makefile csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/checksums csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/files/ csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/files/COPYING Added: csw/mgar/pkg/cpan/Cache-Memcached-Fast/Makefile =================================================================== --- csw/mgar/pkg/cpan/Cache-Memcached-Fast/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Cache-Memcached-Fast/Makefile 2012-07-16 18:11:36 UTC (rev 18761) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/Makefile 2012-07-16 18:11:36 UTC (rev 18761) @@ -0,0 +1,19 @@ +NAME = Cache-Memcached-Fast +VERSION = 0.19 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = KROKI + +DESCRIPTION = Perl client for memcached, in C language +define BLURB + Perl client for memcached, in C language +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-cache-memcached-fast +CATALOGNAME = pm_cache_memcached_fast + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/checksums 2012-07-16 18:11:36 UTC (rev 18761) @@ -0,0 +1 @@ +b1d7b4e7efc692804df559f494ac0fe7 Cache-Memcached-Fast-0.19.tar.gz Added: csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Cache-Memcached-Fast/trunk/files/COPYING 2012-07-16 18:11:36 UTC (rev 18761) @@ -0,0 +1,17 @@ +Copyright (C) 2007-2010 Tomash Brechko. All rights reserved. + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself, either Perl version 5.8.8 or, +at your option, any later version of Perl 5 you may have available. + +When C client is used as a standalone library: + +This library is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation; either version 2.1 of the +License, or (at your option) any later version. + +This library 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 +Lesser General Public License for more details. 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 Jul 16 20:36:56 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 18:36:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[18762] csw/mgar/pkg/cpan Message-ID: Revision: 18762 http://gar.svn.sourceforge.net/gar/?rev=18762&view=rev Author: dmichelsen Date: 2012-07-16 18:36:56 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-Deflater/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-Deflater/ csw/mgar/pkg/cpan/Plack-Middleware-Deflater/branches/ csw/mgar/pkg/cpan/Plack-Middleware-Deflater/tags/ csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/Makefile 2012-07-16 18:36:56 UTC (rev 18762) @@ -0,0 +1,22 @@ +NAME = Plack-Middleware-Deflater +VERSION = 0.08 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = KAZEBURO + +DESCRIPTION = Compress response body with Gzip or Deflate +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-plack-middleware-deflater +CATALOGNAME_CSWpm-plack-middleware-deflater = pm_plack_middleware_deflater +SPKG_DESC_CSWpm-plack-middleware-deflater = Compress response body with Gzip or Deflate +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-deflater = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-deflater += CSWpm-plack + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Deflater/trunk/checksums 2012-07-16 18:36:56 UTC (rev 18762) @@ -0,0 +1 @@ +44855c8ea51fcc8bd776b2352765d4c2 Plack-Middleware-Deflater-0.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 Mon Jul 16 20:40:07 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 18:40:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[18763] csw/mgar/pkg/cpan Message-ID: Revision: 18763 http://gar.svn.sourceforge.net/gar/?rev=18763&view=rev Author: dmichelsen Date: 2012-07-16 18:40:06 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-Header/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-Header/ csw/mgar/pkg/cpan/Plack-Middleware-Header/branches/ csw/mgar/pkg/cpan/Plack-Middleware-Header/tags/ csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/Makefile 2012-07-16 18:40:06 UTC (rev 18763) @@ -0,0 +1,22 @@ +NAME = Plack-Middleware-Header +VERSION = 0.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = CHIBA + +DESCRIPTION = Modify HTTP response headers +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-plack-middleware-header +CATALOGNAME_CSWpm-plack-middleware-header = pm_plack_middleware_header +SPKG_DESC_CSWpm-plack-middleware-header = Modify HTTP response headers +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-header = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-header += CSWpm-plack + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Header/trunk/checksums 2012-07-16 18:40:06 UTC (rev 18763) @@ -0,0 +1 @@ +4281495215d854b815e30e3caec67758 Plack-Middleware-Header-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 Mon Jul 16 20:46:13 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 18:46:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[18764] csw/mgar/pkg/cpan Message-ID: Revision: 18764 http://gar.svn.sourceforge.net/gar/?rev=18764&view=rev Author: dmichelsen Date: 2012-07-16 18:46:13 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-Expires/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-Expires/ csw/mgar/pkg/cpan/Plack-Middleware-Expires/branches/ csw/mgar/pkg/cpan/Plack-Middleware-Expires/tags/ csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/Makefile 2012-07-16 18:46:13 UTC (rev 18764) @@ -0,0 +1,24 @@ +NAME = Plack-Middleware-Expires +VERSION = 0.03 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = KAZEBURO + +DESCRIPTION = Mod_expires for plack +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-plack-middleware-expires +CATALOGNAME_CSWpm-plack-middleware-expires = pm_plack_middleware_expires +SPKG_DESC_CSWpm-plack-middleware-expires = Mod_expires for plack +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-expires = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-expires += CSWpm-try-tiny +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-expires += CSWpm-plack +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-expires += CSWpm-libwww-perl + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Expires/trunk/checksums 2012-07-16 18:46:13 UTC (rev 18764) @@ -0,0 +1 @@ +c088d9f71a01ff439f94bc9772556aa0 Plack-Middleware-Expires-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 Mon Jul 16 21:21:27 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 19:21:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[18765] csw/mgar/pkg/cpan Message-ID: Revision: 18765 http://gar.svn.sourceforge.net/gar/?rev=18765&view=rev Author: dmichelsen Date: 2012-07-16 19:21:27 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-Status/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-Status/ csw/mgar/pkg/cpan/Plack-Middleware-Status/branches/ csw/mgar/pkg/cpan/Plack-Middleware-Status/tags/ csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/Makefile 2012-07-16 19:21:27 UTC (rev 18765) @@ -0,0 +1,31 @@ +NAME = Plack-Middleware-Status +VERSION = 1.101150 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = PDONELAN + +DESCRIPTION = Plack Middleware for mapping urls to status code-driven responses +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-libwww-perl +BUILD_DEP_PKGS += CSWpm-plack + +PACKAGES += CSWpm-plack-middleware-status +CATALOGNAME_CSWpm-plack-middleware-status = pm_plack_middleware_status +SPKG_DESC_CSWpm-plack-middleware-status = Plack Middleware for mapping urls to status code-driven responses +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-status = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-status += CSWpm-libwww-perl +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-status += CSWpm-plack + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Status/trunk/checksums 2012-07-16 19:21:27 UTC (rev 18765) @@ -0,0 +1 @@ +043ca893456affd852b68abd7ad09f8f Plack-Middleware-Status-1.101150.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 Jul 16 21:25:07 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 19:25:07 +0000 Subject: [csw-devel] SF.net SVN: gar:[18766] csw/mgar/pkg/cpan Message-ID: Revision: 18766 http://gar.svn.sourceforge.net/gar/?rev=18766&view=rev Author: dmichelsen Date: 2012-07-16 19:25:07 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-MethodOverride/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/ csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/branches/ csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/tags/ csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/Makefile 2012-07-16 19:25:07 UTC (rev 18766) @@ -0,0 +1,27 @@ +NAME = Plack-Middleware-MethodOverride +VERSION = 0.10 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DWHEELER + +DESCRIPTION = Override REST methods to Plack apps via POST +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-plack-middleware-methodov +SPKG_DESC_CSWpm-plack-middleware-methodov = Override REST methods to Plack apps via POST +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-methodov = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-methodov += CSWpm-uri +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-methodov += CSWpm-plack + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-MethodOverride/trunk/checksums 2012-07-16 19:25:07 UTC (rev 18766) @@ -0,0 +1 @@ +844aa657234b3aeb44870a326356955d Plack-Middleware-MethodOverride-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 Jul 16 21:39:13 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 19:39:13 +0000 Subject: [csw-devel] SF.net SVN: gar:[18767] csw/mgar/pkg/cpan/YAML/trunk Message-ID: Revision: 18767 http://gar.svn.sourceforge.net/gar/?rev=18767&view=rev Author: dmichelsen Date: 2012-07-16 19:39:13 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/YAML/trunk: Update to 0.84 and sanitize package name Modified Paths: -------------- csw/mgar/pkg/cpan/YAML/trunk/Makefile csw/mgar/pkg/cpan/YAML/trunk/checksums Modified: csw/mgar/pkg/cpan/YAML/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/Makefile 2012-07-16 19:25:07 UTC (rev 18766) +++ csw/mgar/pkg/cpan/YAML/trunk/Makefile 2012-07-16 19:39:13 UTC (rev 18767) @@ -1,22 +1,22 @@ NAME = YAML -VERSION = 0.72 +VERSION = 0.84 CATEGORIES = cpan GARTYPE = v2 -AUTHOR = ADAMK +AUTHOR = MSTROUT -DESCRIPTION = YAML Aint Markup Language +DESCRIPTION = YAML Ain't Markup Language (tm) define BLURB - The YAML.pm module implements a YAML Loader and Dumper based on the YAML 1.0 - specification. YAML is a generic data serialization language that is - optimized for human readability. It can be used to express the data - structures of most modern programming languages. (Including Perl!!!) endef -PACKAGES = CSWpmyaml -CATALOGNAME = pm_yaml +CATALOG_RELEASE = unstable LICENSE = LICENSE -ARCHALL = 1 +PACKAGES += CSWpm-yaml +CATALOGNAME_CSWpm-yaml = pm_yaml +SPKG_DESC_CSWpm-yaml = YAML Ain't Markup Language (tm) +ARCHALL_CSWpm-yaml = 1 +OBSOLETED_BY_CSWpm-yaml += CSWpmyaml +CATALOGNAME_CSWpmyaml = pm_yaml_stub include gar/category.mk Modified: csw/mgar/pkg/cpan/YAML/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/YAML/trunk/checksums 2012-07-16 19:25:07 UTC (rev 18766) +++ csw/mgar/pkg/cpan/YAML/trunk/checksums 2012-07-16 19:39:13 UTC (rev 18767) @@ -1 +1 @@ -35f8107367a5ba8c50965eca0ea7c370 YAML-0.72.tar.gz +3644f03e3da5d99158963c6613f5ff92 YAML-0.84.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 Jul 16 21:40:19 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 19:40:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18768] csw/mgar/pkg/cpan Message-ID: Revision: 18768 http://gar.svn.sourceforge.net/gar/?rev=18768&view=rev Author: dmichelsen Date: 2012-07-16 19:40:19 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-ReverseProxy/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/branches/ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/tags/ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile 2012-07-16 19:40:19 UTC (rev 18768) @@ -0,0 +1,24 @@ +NAME = Plack-Middleware-ReverseProxy +VERSION = 0.14 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = MIYAGAWA + +DESCRIPTION = Supports app to run as a reverse proxy backend +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +BUILD_DEP_PKGS += CSWpm-test-base + +PACKAGES += CSWpm-plack-middleware-reversep +SPKG_DESC_CSWpm-plack-middleware-reversep = Supports app to run as a reverse proxy backend +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-reversep = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-reversep += CSWpm-yaml +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-reversep += CSWpm-plack + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/checksums =================================================================== 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 Jul 16 21:41:50 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 19:41:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[18769] csw/mgar/pkg/cpan Message-ID: Revision: 18769 http://gar.svn.sourceforge.net/gar/?rev=18769&view=rev Author: dmichelsen Date: 2012-07-16 19:41:50 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-Rewrite/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/ csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/branches/ csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/tags/ csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/ csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/checksums csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/Makefile 2012-07-16 19:41:50 UTC (rev 18769) @@ -0,0 +1,25 @@ +NAME = Plack-Middleware-Rewrite +VERSION = 1.005 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = ARISTOTLE + +DESCRIPTION = Mod_rewrite for Plack +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-libwww-perl +BUILD_DEP_PKGS += CSWpm-plack + +PACKAGES += CSWpm-plack-middleware-rewrite +CATALOGNAME_CSWpm-plack-middleware-rewrite = pm_plack_middleware_rewrite +SPKG_DESC_CSWpm-plack-middleware-rewrite = Mod_rewrite for Plack +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-plack-middleware-rewrite = 1 +RUNTIME_DEP_PKGS_CSWpm-plack-middleware-rewrite += CSWpm-plack + +include gar/category.mk Added: csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Plack-Middleware-Rewrite/trunk/checksums 2012-07-16 19:41:50 UTC (rev 18769) @@ -0,0 +1 @@ +ae1b33dc9145b6792772304f746915ca Plack-Middleware-Rewrite-1.005.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 Jul 16 21:48:40 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 19:48:40 +0000 Subject: [csw-devel] SF.net SVN: gar:[18770] csw/mgar/pkg/cpan/Spiffy/trunk/Makefile Message-ID: Revision: 18770 http://gar.svn.sourceforge.net/gar/?rev=18770&view=rev Author: dmichelsen Date: 2012-07-16 19:48:40 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Spiffy/trunk: Sanizite package name, drop dependency to YAML Modified Paths: -------------- csw/mgar/pkg/cpan/Spiffy/trunk/Makefile Modified: csw/mgar/pkg/cpan/Spiffy/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Spiffy/trunk/Makefile 2012-07-16 19:41:50 UTC (rev 18769) +++ csw/mgar/pkg/cpan/Spiffy/trunk/Makefile 2012-07-16 19:48:40 UTC (rev 18770) @@ -6,20 +6,18 @@ DESCRIPTION = Spiffy Perl Interface Framework For You define BLURB - "Spiffy" is a framework and methodology for doing object oriented (OO) - programming in Perl. Spiffy combines the best parts of Exporter.pm, base.pm, - mixin.pm and SUPER.pm into one magic foundation class. It attempts to fix - all the nits and warts of traditional Perl OO, in a clean, straightforward - and (perhaps someday) standard way. endef -PACKAGES = CSWpmspiffy -CATALOGNAME = pm_spiffy +CATALOG_RELEASE = unstable -# Add required module due to bug report: -# http://www.opencsw.org/mantis/view.php?id=2711 -RUNTIME_DEP_PKGS = CSWpmyaml +LICENSE_TEXT = This module is licensed under the perl license -ARCHALL = 1 +PACKAGES += CSWpm-spiffy +CATALOGNAME_CSWpm-spiffy = pm_spiffy +SPKG_DESC_CSWpm-spiffy = Spiffy Perl Interface Framework For You +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-spiffy = 1 +OBSOLETED_BY_CSWpm-spiffy += CSWpmspiffy +CATALOGNAME_CSWpmspiffy = pm_spiffy_stub 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 Jul 16 22:10:21 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 20:10:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[18771] csw/mgar/pkg/cpan Message-ID: Revision: 18771 http://gar.svn.sourceforge.net/gar/?rev=18771&view=rev Author: dmichelsen Date: 2012-07-16 20:10:21 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Test-Base/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-Base/ csw/mgar/pkg/cpan/Test-Base/branches/ csw/mgar/pkg/cpan/Test-Base/tags/ csw/mgar/pkg/cpan/Test-Base/trunk/ csw/mgar/pkg/cpan/Test-Base/trunk/Makefile csw/mgar/pkg/cpan/Test-Base/trunk/checksums csw/mgar/pkg/cpan/Test-Base/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-Base/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Test-Base/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-Base/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-Base/trunk/Makefile 2012-07-16 20:10:21 UTC (rev 18771) @@ -0,0 +1,22 @@ +NAME = Test-Base +VERSION = 0.60 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = INGY + +DESCRIPTION = A Data Driven Testing Framework +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-test-base +CATALOGNAME_CSWpm-test-base = pm_test_base +SPKG_DESC_CSWpm-test-base = A Data Driven Testing Framework +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-test-base = 1 +RUNTIME_DEP_PKGS_CSWpm-test-base += CSWpm-spiffy + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-Base/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-Base/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-Base/trunk/checksums 2012-07-16 20:10:21 UTC (rev 18771) @@ -0,0 +1 @@ +7d839807da66d69db32fc4b22994f9e4 Test-Base-0.60.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 Jul 16 22:19:19 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 20:19:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18772] csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/ trunk Message-ID: Revision: 18772 http://gar.svn.sourceforge.net/gar/?rev=18772&view=rev Author: dmichelsen Date: 2012-07-16 20:19:18 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack-Middleware-ReverseProxy/trunk: Update checksum and one test looks fishy Modified Paths: -------------- csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/checksums Modified: csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile 2012-07-16 20:10:21 UTC (rev 18771) +++ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/Makefile 2012-07-16 20:19:18 UTC (rev 18772) @@ -21,4 +21,7 @@ RUNTIME_DEP_PKGS_CSWpm-plack-middleware-reversep += CSWpm-yaml RUNTIME_DEP_PKGS_CSWpm-plack-middleware-reversep += CSWpm-plack +# The tests contain now a port as result, I guess this is ok. +SKIPTEST ?= 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/checksums 2012-07-16 20:10:21 UTC (rev 18771) +++ csw/mgar/pkg/cpan/Plack-Middleware-ReverseProxy/trunk/checksums 2012-07-16 20:19:18 UTC (rev 18772) @@ -0,0 +1 @@ +4a4ceb1203a053228cf7d172105c5427 Plack-Middleware-ReverseProxy-0.14.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 Jul 16 22:19:42 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 20:19:42 +0000 Subject: [csw-devel] SF.net SVN: gar:[18773] csw/mgar/pkg/cpan/Plack/trunk Message-ID: Revision: 18773 http://gar.svn.sourceforge.net/gar/?rev=18773&view=rev Author: dmichelsen Date: 2012-07-16 20:19:42 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Plack/trunk: Update to 0.9989 Modified Paths: -------------- csw/mgar/pkg/cpan/Plack/trunk/Makefile csw/mgar/pkg/cpan/Plack/trunk/checksums Modified: csw/mgar/pkg/cpan/Plack/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Plack/trunk/Makefile 2012-07-16 20:19:18 UTC (rev 18772) +++ csw/mgar/pkg/cpan/Plack/trunk/Makefile 2012-07-16 20:19:42 UTC (rev 18773) @@ -1,5 +1,5 @@ NAME = Plack -VERSION = 0.9986 +VERSION = 0.9989 CATEGORIES = cpan GARTYPE = v2 AUTHOR = MIYAGAWA @@ -30,4 +30,13 @@ RUNTIME_DEP_PKGS_CSWpm-plack += CSWpm-file-sharedir RUNTIME_DEP_PKGS_CSWpm-plack += CSWpm-hash-multivalue +# These is now one test failing: +#t/Plack-Loader/restarter.t ......................... 2/? +# Failed test at t/Plack-Loader/restarter.t line 43. +# got: 'Hi first' +# expected: 'Hi second' +#-- /home/dam/mgar/pkg/cpan/Plack/trunk/work/solaris9-sparc/build-isa-sparcv8/Plack-0.9989/t/restartertestfile1.pl updated. +#Killing the existing server (pid:9628) +SKIPTEST ?= 1 + include gar/category.mk Modified: csw/mgar/pkg/cpan/Plack/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Plack/trunk/checksums 2012-07-16 20:19:18 UTC (rev 18772) +++ csw/mgar/pkg/cpan/Plack/trunk/checksums 2012-07-16 20:19:42 UTC (rev 18773) @@ -1 +1 @@ -90d63ab0dc479136906db43ab9a99df1 Plack-0.9986.tar.gz +35a19f40e3292197c66d0ba24c5306d5 Plack-0.9989.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 Jul 16 22:38:59 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 20:38:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[18774] csw/mgar/pkg/cpan Message-ID: Revision: 18774 http://gar.svn.sourceforge.net/gar/?rev=18774&view=rev Author: dmichelsen Date: 2012-07-16 20:38:59 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Modern-Perl/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Modern-Perl/ csw/mgar/pkg/cpan/Modern-Perl/branches/ csw/mgar/pkg/cpan/Modern-Perl/tags/ csw/mgar/pkg/cpan/Modern-Perl/trunk/ csw/mgar/pkg/cpan/Modern-Perl/trunk/Makefile csw/mgar/pkg/cpan/Modern-Perl/trunk/checksums csw/mgar/pkg/cpan/Modern-Perl/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Modern-Perl/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Modern-Perl/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Modern-Perl/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Modern-Perl/trunk/Makefile 2012-07-16 20:38:59 UTC (rev 18774) @@ -0,0 +1,26 @@ +NAME = Modern-Perl +VERSION = 1.20120521 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = CHROMATIC + +DESCRIPTION = Enable all of the features of Modern Perl with one import +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-modern-perl +CATALOGNAME_CSWpm-modern-perl = pm_modern_perl +SPKG_DESC_CSWpm-modern-perl = Enable all of the features of Modern Perl with one import +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-modern-perl = 1 + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/Modern-Perl/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Modern-Perl/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Modern-Perl/trunk/checksums 2012-07-16 20:38:59 UTC (rev 18774) @@ -0,0 +1 @@ +e92541050ee8215e0d0692dac5114d13 Modern-Perl-1.20120521.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 Jul 16 22:44:09 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Mon, 16 Jul 2012 20:44:09 +0000 Subject: [csw-devel] SF.net SVN: gar:[18775] csw/mgar/pkg/cpan/Class-Load-XS/trunk/Makefile Message-ID: Revision: 18775 http://gar.svn.sourceforge.net/gar/?rev=18775&view=rev Author: dmichelsen Date: 2012-07-16 20:44:09 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Class-Load-XS/trunk: Rip out unnecessary dep Modified Paths: -------------- csw/mgar/pkg/cpan/Class-Load-XS/trunk/Makefile Modified: csw/mgar/pkg/cpan/Class-Load-XS/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Class-Load-XS/trunk/Makefile 2012-07-16 20:38:59 UTC (rev 18774) +++ csw/mgar/pkg/cpan/Class-Load-XS/trunk/Makefile 2012-07-16 20:44:09 UTC (rev 18775) @@ -12,9 +12,6 @@ LICENSE = LICENSE -# This is also in CSWperl, but we need a newer version -BUILD_DEP_PKGS += CSWpm-module-build - BUILD_DEP_PKGS += CSWpm-module-implementation BUILD_DEP_PKGS += CSWpm-test-fatal BUILD_DEP_PKGS += CSWpm-class-load 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 Jul 16 23:14:31 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 16 Jul 2012 21:14:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[18776] csw/mgar/pkg/cpan Message-ID: Revision: 18776 http://gar.svn.sourceforge.net/gar/?rev=18776&view=rev Author: bonivart Date: 2012-07-16 21:14:31 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/CGI-Compile/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/CGI-Compile/ csw/mgar/pkg/cpan/CGI-Compile/Makefile csw/mgar/pkg/cpan/CGI-Compile/branches/ csw/mgar/pkg/cpan/CGI-Compile/tags/ csw/mgar/pkg/cpan/CGI-Compile/trunk/ csw/mgar/pkg/cpan/CGI-Compile/trunk/Makefile csw/mgar/pkg/cpan/CGI-Compile/trunk/checksums csw/mgar/pkg/cpan/CGI-Compile/trunk/files/ csw/mgar/pkg/cpan/CGI-Compile/trunk/files/COPYING Added: csw/mgar/pkg/cpan/CGI-Compile/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Compile/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Compile/Makefile 2012-07-16 21:14:31 UTC (rev 18776) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/CGI-Compile/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/CGI-Compile/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Compile/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Compile/trunk/Makefile 2012-07-16 21:14:31 UTC (rev 18776) @@ -0,0 +1,25 @@ +NAME = CGI-Compile +VERSION = 0.15 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = MIYAGAWA + +DESCRIPTION = Compile .cgi scripts to a code reference like ModPerl::Registry +define BLURB + Compile .cgi scripts to a code reference like ModPerl::Registry +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-cgi-compile +CATALOGNAME = pm_cgi_compile +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-file-pushd + +# Remove on next build +CHECKPKG_OVERRIDES_CSWpm-cgi-compile += unidentified-dependency|CSWpm-file-pushd + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/CGI-Compile/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/CGI-Compile/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/CGI-Compile/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/CGI-Compile/trunk/checksums 2012-07-16 21:14:31 UTC (rev 18776) @@ -0,0 +1 @@ +2fcf4bc473107130229f4e0a98c756ce CGI-Compile-0.15.tar.gz Added: csw/mgar/pkg/cpan/CGI-Compile/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/CGI-Compile/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/CGI-Compile/trunk/files/COPYING 2012-07-16 21:14:31 UTC (rev 18776) @@ -0,0 +1,4 @@ + Copyright (c) 2009 Tatsuhiko Miyagawa + + This library is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Mon Jul 16 23:23:52 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 16 Jul 2012 21:23:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18777] csw/mgar/pkg/cpan Message-ID: Revision: 18777 http://gar.svn.sourceforge.net/gar/?rev=18777&view=rev Author: bonivart Date: 2012-07-16 21:23:52 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/File-pushd/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/File-pushd/ csw/mgar/pkg/cpan/File-pushd/Makefile csw/mgar/pkg/cpan/File-pushd/branches/ csw/mgar/pkg/cpan/File-pushd/tags/ csw/mgar/pkg/cpan/File-pushd/trunk/ csw/mgar/pkg/cpan/File-pushd/trunk/Makefile csw/mgar/pkg/cpan/File-pushd/trunk/checksums csw/mgar/pkg/cpan/File-pushd/trunk/files/ Added: csw/mgar/pkg/cpan/File-pushd/Makefile =================================================================== --- csw/mgar/pkg/cpan/File-pushd/Makefile (rev 0) +++ csw/mgar/pkg/cpan/File-pushd/Makefile 2012-07-16 21:23:52 UTC (rev 18777) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/File-pushd/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/File-pushd/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/File-pushd/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/File-pushd/trunk/Makefile 2012-07-16 21:23:52 UTC (rev 18777) @@ -0,0 +1,20 @@ +NAME = File-pushd +VERSION = 1.002 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = DAGOLDEN + +DESCRIPTION = Change directory temporarily for a limited scope +define BLURB + Change directory temporarily for a limited scope +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-file-pushd +CATALOGNAME = pm_file_pushd +ARCHALL = 1 + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/File-pushd/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/File-pushd/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/File-pushd/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/File-pushd/trunk/checksums 2012-07-16 21:23:52 UTC (rev 18777) @@ -0,0 +1 @@ +eac693b6968d99e0a3da89cd7babec11 File-pushd-1.002.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 Jul 16 23:35:14 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 16 Jul 2012 21:35:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[18778] csw/mgar/pkg/cpan Message-ID: Revision: 18778 http://gar.svn.sourceforge.net/gar/?rev=18778&view=rev Author: bonivart Date: 2012-07-16 21:35:14 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/CGI-Emulate-PSGI/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/CGI-Emulate-PSGI/ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/Makefile csw/mgar/pkg/cpan/CGI-Emulate-PSGI/branches/ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/tags/ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/Makefile csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/checksums csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/files/ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/files/COPYING Added: csw/mgar/pkg/cpan/CGI-Emulate-PSGI/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Emulate-PSGI/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/Makefile 2012-07-16 21:35:14 UTC (rev 18778) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/Makefile 2012-07-16 21:35:14 UTC (rev 18778) @@ -0,0 +1,20 @@ +NAME = CGI-Emulate-PSGI +VERSION = 0.14 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = MIYAGAWA + +DESCRIPTION = PSGI adapter for CGI +define BLURB + PSGI adapter for CGI +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-cgi-emulate-psgi +CATALOGNAME = pm_cgi_emulate_psgi +ARCHALL = 1 + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/checksums 2012-07-16 21:35:14 UTC (rev 18778) @@ -0,0 +1 @@ +18f9297154b3b94bcc71a133b3f18b0d CGI-Emulate-PSGI-0.14.tar.gz Added: csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/CGI-Emulate-PSGI/trunk/files/COPYING 2012-07-16 21:35:14 UTC (rev 18778) @@ -0,0 +1,7 @@ + Copyright (c) 2009-2010 by tokuhirom. + + This program is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + + The full text of the license can be found in the LICENSE file included + with this module. 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 Jul 17 00:08:45 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 16 Jul 2012 22:08:45 +0000 Subject: [csw-devel] SF.net SVN: gar:[18779] csw/mgar/pkg/cpan Message-ID: Revision: 18779 http://gar.svn.sourceforge.net/gar/?rev=18779&view=rev Author: bonivart Date: 2012-07-16 22:08:45 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/CHI/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/CHI/ csw/mgar/pkg/cpan/CHI/Makefile csw/mgar/pkg/cpan/CHI/branches/ csw/mgar/pkg/cpan/CHI/tags/ csw/mgar/pkg/cpan/CHI/trunk/ csw/mgar/pkg/cpan/CHI/trunk/Makefile csw/mgar/pkg/cpan/CHI/trunk/checksums csw/mgar/pkg/cpan/CHI/trunk/files/ Added: csw/mgar/pkg/cpan/CHI/Makefile =================================================================== --- csw/mgar/pkg/cpan/CHI/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CHI/Makefile 2012-07-16 22:08:45 UTC (rev 18779) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/CHI/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/CHI/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/CHI/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/CHI/trunk/Makefile 2012-07-16 22:08:45 UTC (rev 18779) @@ -0,0 +1,32 @@ +NAME = CHI +VERSION = 0.55 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = JSWARTZ + +DESCRIPTION = Unified cache handling interface +define BLURB + Unified cache handling interface +endef + +LICENSE = LICENSE + +PACKAGES = CSWpm-chi +CATALOGNAME = pm_chi +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-list-moreutils +RUNTIME_DEP_PKGS += CSWpm-moose +RUNTIME_DEP_PKGS += CSWpm-time-duration +RUNTIME_DEP_PKGS += CSWpm-time-duration-parse +RUNTIME_DEP_PKGS += CSWpm-try-tiny +RUNTIME_DEP_PKGS += CSWpmlogany + +# Remove on next build +CHECKPKG_OVERRIDES_CSWpm-chi += unidentified-dependency|CSWpm-moose +CHECKPKG_OVERRIDES_CSWpm-chi += unidentified-dependency|CSWpm-time-duration +CHECKPKG_OVERRIDES_CSWpm-chi += unidentified-dependency|CSWpm-time-duration-parse + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/CHI/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/CHI/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/CHI/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/CHI/trunk/checksums 2012-07-16 22:08:45 UTC (rev 18779) @@ -0,0 +1 @@ +6cfdf247e3951c52c4cbb3e0890677b8 CHI-0.55.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bonivart at users.sourceforge.net Tue Jul 17 00:41:14 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Mon, 16 Jul 2012 22:41:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[18780] csw/mgar/pkg/cpan Message-ID: Revision: 18780 http://gar.svn.sourceforge.net/gar/?rev=18780&view=rev Author: bonivart Date: 2012-07-16 22:41:14 +0000 (Mon, 16 Jul 2012) Log Message: ----------- cpan/Time-Duration-Parse/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Time-Duration-Parse/ csw/mgar/pkg/cpan/Time-Duration-Parse/Makefile csw/mgar/pkg/cpan/Time-Duration-Parse/branches/ csw/mgar/pkg/cpan/Time-Duration-Parse/tags/ csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/ csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/Makefile csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/checksums csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/files/ csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/files/COPYING Added: csw/mgar/pkg/cpan/Time-Duration-Parse/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-Duration-Parse/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Time-Duration-Parse/Makefile 2012-07-16 22:41:14 UTC (rev 18780) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/cpan/Time-Duration-Parse/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/Makefile 2012-07-16 22:41:14 UTC (rev 18780) @@ -0,0 +1,25 @@ +NAME = Time-Duration-Parse +VERSION = 0.06 +GARTYPE = v2 +CATEGORIES = cpan +AUTHOR = MIYAGAWA + +DESCRIPTION = Parse string that represents time duration +define BLURB + Parse string that represents time duration +endef + +DISTFILES += COPYING + +PACKAGES = CSWpm-time-duration-parse +CATALOGNAME = pm_time_duration_parse +ARCHALL = 1 + +RUNTIME_DEP_PKGS += CSWpm-exporter-lite + +# Remove on next build +CHECKPKG_OVERRIDES_CSWpm-time-duration-parse += unidentified-dependency|CSWpm-exporter-lite + +CONFIGURE_ARGS = + +include gar/category.mk Property changes on: csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/checksums 2012-07-16 22:41:14 UTC (rev 18780) @@ -0,0 +1 @@ +a23b7ca50a909df57e484cf39a3fa414 Time-Duration-Parse-0.06.tar.gz Added: csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/cpan/Time-Duration-Parse/trunk/files/COPYING 2012-07-16 22:41:14 UTC (rev 18780) @@ -0,0 +1,5 @@ +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +Some internal code is taken from Cache and Cache::Cache modules on +CPAN. 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 Tue Jul 17 01:08:21 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Mon, 16 Jul 2012 23:08:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[18781] csw/mgar/pkg/nagios_plugins/trunk Message-ID: Revision: 18781 http://gar.svn.sourceforge.net/gar/?rev=18781&view=rev Author: j_arndt Date: 2012-07-16 23:08:20 +0000 (Mon, 16 Jul 2012) Log Message: ----------- nagios_plugins/trunk: update to 1.4.16 Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile csw/mgar/pkg/nagios_plugins/trunk/checksums Added Paths: ----------- csw/mgar/pkg/nagios_plugins/trunk/files/0002-Use-32-bit-pst3-on-Solaris.patch Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-16 22:41:14 UTC (rev 18780) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-16 23:08:20 UTC (rev 18781) @@ -1,7 +1,7 @@ # $Id$ # NAME = nagios-plugins -VERSION = 1.4.15 +VERSION = 1.4.16 CATEGORIES = apps GARTYPE = v2 @@ -21,7 +21,8 @@ OBSOLETED_BY_CSWnagios-plugins = CSWnagiosp CATALOG_NAME_CSWnagiosp = nagiosp_stub -PATCHFILES += 0004-Use-32-bit-pst3-on-Solaris.patch +#PATCHFILES += 0004-Use-32-bit-pst3-on-Solaris.patch +PATCHFILES += 0002-Use-32-bit-pst3-on-Solaris.patch REINPLACE_USRLOCAL += contrib/* REINPLACE_USRLOCAL += plugins/* @@ -34,12 +35,14 @@ CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --with-openssl=/opt/csw CONFIGURE_ARGS += --with-trusted-path=/bin:/sbin:/usr/bin:/usr/sbin:/opt/csw/bin:/opt/csw/sbin -CONFIGURE_ARGS += --with-mysql-dir=/opt/csw -CONFIGURE_ARGS += --with-pg-dir=/opt/csw/postgresql/include/ +CONFIGURE_ARGS += --with-mysql=/opt/csw +CONFIGURE_ARGS += --with-pgsql=/opt/csw/postgresql CONFIGURE_ARGS += --disable-largefile CONFIGURE_ARGS += --libexecdir=$(prefix)/libexec/nagios-plugins CONFIGURE_ARGS += --with-perl=/opt/csw/bin/perl CONFIGURE_ARGS += --with-openssl=/opt/csw +CONFIGURE_ARGS += --with-gnutls=/opt/csw +CONFIGURE_ARGS += --with-fping-command=/opt/csw/sbin/fping CONFIGURE_ARGS += --with-trusted-path=/usr/bin:/usr/sbin:/opt/csw/bin:/opt/csw/sbin:$(prefix)/libexec/nagios-plugins CONFIGURE_ARGS += --with-ping6-command="/usr/sbin/ping -A inet6 -s %s 56 %d" CONFIGURE_ARGS += --with-snmpget-command=/opt/csw/bin/snmpget Modified: csw/mgar/pkg/nagios_plugins/trunk/checksums =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/checksums 2012-07-16 22:41:14 UTC (rev 18780) +++ csw/mgar/pkg/nagios_plugins/trunk/checksums 2012-07-16 23:08:20 UTC (rev 18781) @@ -1 +1 @@ -56abd6ade8aa860b38c4ca4a6ac5ab0d nagios-plugins-1.4.15.tar.gz +862f5e44fb5bc65ce7e5d86d654d4da0 nagios-plugins-1.4.16.tar.gz Added: csw/mgar/pkg/nagios_plugins/trunk/files/0002-Use-32-bit-pst3-on-Solaris.patch =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/files/0002-Use-32-bit-pst3-on-Solaris.patch (rev 0) +++ csw/mgar/pkg/nagios_plugins/trunk/files/0002-Use-32-bit-pst3-on-Solaris.patch 2012-07-16 23:08:20 UTC (rev 18781) @@ -0,0 +1,32 @@ +From 389067c2d4689c08f289bb25febb25f097386c89 Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Tue, 17 Jul 2012 00:37:48 +0200 +Subject: [PATCH] Use-32-bit-pst3-on-Solaris + +--- + configure | 9 +-------- + 1 file changed, 1 insertion(+), 8 deletions(-) + +diff --git a/configure b/configure +index 1b92218..1a5ebba 100755 +--- a/configure ++++ b/configure +@@ -14647,14 +14647,7 @@ elif test "$ac_cv_uname_s" = "SunOS"; then + ac_cv_ps_cols=9 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: using nagios-plugins internal ps command (pst3) for solaris" >&5 + $as_echo "using nagios-plugins internal ps command (pst3) for solaris" >&6; } +- if test `isainfo -b` = 64 ; then +- pst3_use_64bit=1 +- { $as_echo "$as_me:${as_lineno-$LINENO}: using 64bit pst3" >&5 +-$as_echo "$as_me: using 64bit pst3" >&6;} +- else +- { $as_echo "$as_me:${as_lineno-$LINENO}: using 32bit pst3" >&5 +-$as_echo "$as_me: using 32bit pst3" >&6;} +- fi ++echo "$as_me: using 32bit pst3" >&6; + EXTRAS_ROOT="$EXTRAS_ROOT pst3" + + if test "$pst3_use_64bit" = 1; then +-- +1.7.10.3 + 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 Tue Jul 17 01:16:19 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Mon, 16 Jul 2012 23:16:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18782] csw/mgar/pkg/nagios_plugins/trunk Message-ID: Revision: 18782 http://gar.svn.sourceforge.net/gar/?rev=18782&view=rev Author: j_arndt Date: 2012-07-16 23:16:19 +0000 (Mon, 16 Jul 2012) Log Message: ----------- nagios_plugins/trunk: removing old patchfiles Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Removed Paths: ------------- csw/mgar/pkg/nagios_plugins/trunk/files/0004-Use-32-bit-pst3-on-Solaris.patch csw/mgar/pkg/nagios_plugins/trunk/files/check_procs.c.diff csw/mgar/pkg/nagios_plugins/trunk/files/pst3.c.diff csw/mgar/pkg/nagios_plugins/trunk/files/subst.in.diff Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-16 23:08:20 UTC (rev 18781) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-16 23:16:19 UTC (rev 18782) @@ -1,11 +1,21 @@ # $Id$ # -NAME = nagios-plugins -VERSION = 1.4.16 -CATEGORIES = apps -GARTYPE = v2 +NAME = nagios-plugins +VERSION = 1.4.16 +CATEGORIES = apps +GARTYPE = v2 -SPKG_DESC_CSWnagios-plugins = Plugins for nagios +# +# package definitions +# + +PACKAGES = CSWnagios-plugins +CATALOG_NAME_CSWnagios-plugins = nagios_plugins + +OBSOLETED_BY_CSWnagios-plugins = CSWnagiosp +CATALOG_NAME_CSWnagiosp = nagiosp_stub + +SPKG_DESC_CSWnagios-plugins = Plugins for Nagios define BLURB Plugins for Nagios endef @@ -15,13 +25,6 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz DISTFILES += README.CSW -PACKAGES = CSWnagios-plugins -CATALOG_NAME_CSWnagios-plugins = nagios_plugins - -OBSOLETED_BY_CSWnagios-plugins = CSWnagiosp -CATALOG_NAME_CSWnagiosp = nagiosp_stub - -#PATCHFILES += 0004-Use-32-bit-pst3-on-Solaris.patch PATCHFILES += 0002-Use-32-bit-pst3-on-Solaris.patch REINPLACE_USRLOCAL += contrib/* Deleted: csw/mgar/pkg/nagios_plugins/trunk/files/0004-Use-32-bit-pst3-on-Solaris.patch =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/files/0004-Use-32-bit-pst3-on-Solaris.patch 2012-07-16 23:08:20 UTC (rev 18781) +++ csw/mgar/pkg/nagios_plugins/trunk/files/0004-Use-32-bit-pst3-on-Solaris.patch 2012-07-16 23:16:19 UTC (rev 18782) @@ -1,33 +0,0 @@ -From 4f4cfd00be92ec6ccd35ee3dab72d8c411ded55c Mon Sep 17 00:00:00 2001 -From: Juraj Lutter -Date: Sun, 27 May 2012 22:33:17 +0200 -Subject: [PATCH] Use 32-bit pst3 on Solaris. - ---- - configure | 8 +------- - 1 file changed, 1 insertion(+), 7 deletions(-) - -diff --git a/configure b/configure -index a93e57d..c1696e0 100755 ---- a/configure -+++ b/configure -@@ -18068,14 +18068,8 @@ elif test "$ac_cv_uname_s" = "SunOS"; then - ac_cv_ps_cols=9 - { echo "$as_me:$LINENO: result: using nagios-plugins internal ps command (pst3) for solaris" >&5 - echo "${ECHO_T}using nagios-plugins internal ps command (pst3) for solaris" >&6; } -- if test `isainfo -b` = 64 ; then -- pst3_use_64bit=1 -- { echo "$as_me:$LINENO: using 64bit pst3" >&5 --echo "$as_me: using 64bit pst3" >&6;} -- else -- { echo "$as_me:$LINENO: using 32bit pst3" >&5 -+pst3_use_64bit=0 -- echo "$as_me: using 32bit pst3" >&6;} -+ echo "$as_me: using 32bit pst3" >&6; -- fi - EXTRAS_ROOT="$EXTRAS_ROOT pst3" - - if test "$pst3_use_64bit" = 1; then --- -1.7.10 - Deleted: csw/mgar/pkg/nagios_plugins/trunk/files/check_procs.c.diff =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/files/check_procs.c.diff 2012-07-16 23:08:20 UTC (rev 18781) +++ csw/mgar/pkg/nagios_plugins/trunk/files/check_procs.c.diff 2012-07-16 23:16:19 UTC (rev 18782) @@ -1,12 +0,0 @@ -diff --speed-large-files --minimal -Nru nagios-plugins-1.4.13.orig/plugins/check_procs.c nagios-plugins-1.4.13/plugins/check_procs.c ---- nagios-plugins-1.4.13.orig/plugins/check_procs.c 2008-07-08 11:31:04.000000000 +0200 -+++ nagios-plugins-1.4.13/plugins/check_procs.c 2009-03-26 20:30:33.322034506 +0100 -@@ -194,7 +194,7 @@ - strip (procargs); - - /* Some ps return full pathname for command. This removes path */ -- strcpy(procprog, base_name(procprog)); -+ /* strcpy(procprog, base_name(procprog)); */ - - /* we need to convert the elapsed time to seconds */ - procseconds = convert_to_seconds(procetime); Deleted: csw/mgar/pkg/nagios_plugins/trunk/files/pst3.c.diff =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/files/pst3.c.diff 2012-07-16 23:08:20 UTC (rev 18781) +++ csw/mgar/pkg/nagios_plugins/trunk/files/pst3.c.diff 2012-07-16 23:16:19 UTC (rev 18782) @@ -1,18 +0,0 @@ -diff --speed-large-files --minimal -Nru nagios-plugins-1.4.14.orig/plugins-root/pst3.c nagios-plugins-1.4.14/plugins-root/pst3.c ---- nagios-plugins-1.4.14.orig/plugins-root/pst3.c 2009-09-14 12:21:24.000000000 +0200 -+++ nagios-plugins-1.4.14/plugins-root/pst3.c 2009-10-14 22:02:53.643787730 +0200 -@@ -43,11 +43,11 @@ - - #include - #include --#include --#include -+#include "/usr/include/string.h" -+#include "/usr/include/unistd.h" - #include - #include --#include -+#include "/usr/include/fcntl.h" - #include - #include - #include Deleted: csw/mgar/pkg/nagios_plugins/trunk/files/subst.in.diff =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/files/subst.in.diff 2012-07-16 23:08:20 UTC (rev 18781) +++ csw/mgar/pkg/nagios_plugins/trunk/files/subst.in.diff 2012-07-16 23:16:19 UTC (rev 18782) @@ -1,12 +0,0 @@ -diff --speed-large-files --minimal -Nru nagios-plugins-1.4.13.orig/plugins-scripts/subst.in nagios-plugins-1.4.13/plugins-scripts/subst.in ---- nagios-plugins-1.4.13.orig/plugins-scripts/subst.in 2005-08-31 00:11:42.000000000 +0200 -+++ nagios-plugins-1.4.13/plugins-scripts/subst.in 2009-09-29 22:00:50.232667015 +0200 -@@ -62,7 +62,7 @@ - # subst will replace the fully qualified command with whatever is - # returned from the which subroutine - # --/^[^#]/ && /(\/.*)?\/(bin|sbin|lib|libexec)\// { -+/^[^#]/ && /(\/.*)?\/(bin|sbin|lib)\// { - match($0,/(\/.*)?\/(bin|sbin|lib|libexec)\/[-_a-zA-Z0-9]+/); - c=substr($0,RSTART,RLENGTH); - sub(c,which(c,path)); 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 Jul 17 11:24:44 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 17 Jul 2012 09:24:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[18783] csw/mgar/gar/v2/lib/python/csw_upload_pkg.py Message-ID: Revision: 18783 http://gar.svn.sourceforge.net/gar/?rev=18783&view=rev Author: wahwah Date: 2012-07-17 09:24:44 +0000 (Tue, 17 Jul 2012) Log Message: ----------- csw-upload-pkg: Removing the --remove option This option was confusing to users and did more harm than good. We now have safe_remove_package, which checks if the package you want to remove is free of reverse dependencies, and does not allow to remove the package if it would break any. Modified Paths: -------------- csw/mgar/gar/v2/lib/python/csw_upload_pkg.py Modified: csw/mgar/gar/v2/lib/python/csw_upload_pkg.py =================================================================== --- csw/mgar/gar/v2/lib/python/csw_upload_pkg.py 2012-07-16 23:16:19 UTC (rev 18782) +++ csw/mgar/gar/v2/lib/python/csw_upload_pkg.py 2012-07-17 09:24:44 UTC (rev 18783) @@ -54,15 +54,6 @@ This amounts to 3x2x4 = 24 package catalogs total. -= Removing packages from the catalog = - -The --remove option works the same way as the regular use, except that it -removes assignments of a given package to catalogs, instead of adding them. - -When removing packages from catalogs, files on disk are passed as arguments. -On the buildfarm, all files are available under the /home/mirror/opencsw -directory. - For more information, see: http://wiki.opencsw.org/automated-release-process#toc0 """ @@ -180,7 +171,7 @@ planned_modifications.append( (filename, md5_sum, arch, osrel, cat_arch, cat_osrel)) - # The plan: + # The plan: # - Create groups of files to be inserted into each of the catalogs # - Invoke checkpkg to check every target catalog checkpkg_sets = self._CheckpkgSets(planned_modifications) @@ -193,66 +184,6 @@ file_metadata = metadata_by_md5[md5_sum] self._InsertIntoCatalog(filename, arch, osrel, file_metadata) - def Remove(self): - for filename in self.filenames: - self._RemoveFile(filename) - - def _RemoveFile(self, filename): - md5_sum = self._GetFileMd5sum(filename) - file_in_allpkgs, file_metadata = self._GetSrv4FileMetadata(md5_sum) - if not file_metadata: - logging.warning("Could not find metadata for file %s", repr(filename)) - return - osrel = file_metadata['osrel'] - arch = file_metadata['arch'] - catalogs = self._MatchSrv4ToCatalogs( - filename, DEFAULT_CATREL, arch, osrel, md5_sum) - for unused_catrel, cat_arch, cat_osrel in sorted(catalogs): - self._RemoveFromCatalog(filename, cat_arch, cat_osrel, file_metadata) - - def _RemoveFromCatalog(self, filename, arch, osrel, file_metadata): - print("Removing %s (%s %s) from catalog %s %s %s" - % (file_metadata["catalogname"], - file_metadata["arch"], - file_metadata["osrel"], - DEFAULT_CATREL, arch, osrel)) - md5_sum = self._GetFileMd5sum(filename) - basename = os.path.basename(filename) - parsed_basename = opencsw.ParsePackageFileName(basename) - # TODO: Move this bit to a separate class (RestClient) - url = ( - "%s%s/catalogs/%s/%s/%s/%s/" - % (self.rest_url, - RELEASES_APP, - DEFAULT_CATREL, - arch, - osrel, - md5_sum)) - logging.debug("DELETE @ URL: %s %s", type(url), url) - c = pycurl.Curl() - d = StringIO() - h = StringIO() - c.setopt(pycurl.URL, str(url)) - c.setopt(pycurl.CUSTOMREQUEST, "DELETE") - c.setopt(pycurl.WRITEFUNCTION, d.write) - c.setopt(pycurl.HEADERFUNCTION, h.write) - c.setopt(pycurl.HTTPHEADER, ["Expect:"]) # Fixes the HTTP 417 error - c = self._SetAuth(c) - if self.debug: - c.setopt(c.VERBOSE, 1) - c.perform() - http_code = c.getinfo(pycurl.HTTP_CODE) - logging.debug( - "DELETE curl getinfo: %s %s %s", - type(http_code), - http_code, - c.getinfo(pycurl.EFFECTIVE_URL)) - c.close() - if not (http_code >= 200 and http_code <= 299): - raise RestCommunicationError( - "%s - HTTP code: %s, content: %s" - % (url, http_code, d.getvalue())) - def _GetFileMd5sum(self, filename): if filename not in self.md5_by_filename: logging.debug("_GetFileMd5sum(%s): Reading the file", filename) @@ -558,10 +489,6 @@ parser.add_option("-d", "--debug", dest="debug", default=False, action="store_true") - parser.add_option("--remove", - dest="remove", - default=False, action="store_true", - help="Remove packages from catalogs instead of adding them") parser.add_option("--os-release", dest="os_release", help="If specified, only uploads to the specified OS release.") @@ -618,7 +545,4 @@ debug=options.debug, username=username, password=password) - if options.remove: - uploader.Remove() - else: - uploader.Upload() + uploader.Upload() 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 Jul 17 11:26:36 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Tue, 17 Jul 2012 09:26:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[18784] csw/mgar/pkg/cswutils/trunk/Makefile Message-ID: Revision: 18784 http://gar.svn.sourceforge.net/gar/?rev=18784&view=rev Author: wahwah Date: 2012-07-17 09:26:36 +0000 (Tue, 17 Jul 2012) Log Message: ----------- cswutils/trunk: bump the version of cswutils, csw-upload-pkg was updated Modified Paths: -------------- csw/mgar/pkg/cswutils/trunk/Makefile Modified: csw/mgar/pkg/cswutils/trunk/Makefile =================================================================== --- csw/mgar/pkg/cswutils/trunk/Makefile 2012-07-17 09:24:44 UTC (rev 18783) +++ csw/mgar/pkg/cswutils/trunk/Makefile 2012-07-17 09:26:36 UTC (rev 18784) @@ -1,7 +1,7 @@ # $Id$ NAME = cswutils -VERSION = 1.23 +VERSION = 1.24 CATEGORIES = utils GARTYPE = v2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 17 13:49:44 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 17 Jul 2012 11:49:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[18785] csw/mgar/pkg Message-ID: Revision: 18785 http://gar.svn.sourceforge.net/gar/?rev=18785&view=rev Author: pfelecan Date: 2012-07-17 11:49:43 +0000 (Tue, 17 Jul 2012) Log Message: ----------- tex4ht/trunk: migrated from a private recipe to a GAR based recipe. Added Paths: ----------- csw/mgar/pkg/tex4ht/ csw/mgar/pkg/tex4ht/Makefile csw/mgar/pkg/tex4ht/branches/ csw/mgar/pkg/tex4ht/tags/ csw/mgar/pkg/tex4ht/trunk/ csw/mgar/pkg/tex4ht/trunk/Makefile csw/mgar/pkg/tex4ht/trunk/checksums csw/mgar/pkg/tex4ht/trunk/files/ csw/mgar/pkg/tex4ht/trunk/files/COPYING csw/mgar/pkg/tex4ht/trunk/files/tex4ht.1 Added: csw/mgar/pkg/tex4ht/Makefile =================================================================== --- csw/mgar/pkg/tex4ht/Makefile (rev 0) +++ csw/mgar/pkg/tex4ht/Makefile 2012-07-17 11:49:43 UTC (rev 18785) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/tex4ht/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/tex4ht/trunk/Makefile =================================================================== --- csw/mgar/pkg/tex4ht/trunk/Makefile (rev 0) +++ csw/mgar/pkg/tex4ht/trunk/Makefile 2012-07-17 11:49:43 UTC (rev 18785) @@ -0,0 +1,148 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = tex4ht +VERSION = 1.0.2009_06_11_1038 +GARTYPE = v2 +CATEGORIES = apps + +DESCRIPTION = LaTeX and TeX for Hypertext (HTML) +define BLURB + TeX4ht is a highly configurable TeX-based authoring system dedicated mainly + to produce hypertext. It interacts with TeX-based applications through style + files and postprocessors, leaving the processing of the source files to the + native TeX compiler. Consequently, TeX4ht can handle the features of + TeX-based systems in general, and of the LaTeX and AMS style files in + particular. + + Pre-tailored configurations are offered for different output formats, + including (X)HTML, MathML, OpenDocument, and DocBook. +endef + +MASTER_SITES = http://tug.org/applications/tex4ht/ +DISTFILES = $(NAME).zip +DISTFILES += COPYING +DISTFILES += tex4ht.1 + +PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + +BUILD_DEP_PKGS += CSWtetex + +GARCOMPILER = GNU + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = custom +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PACKAGES += CSWtex4ht-common +CATALOGNAME_CSWtex4ht-common = tex4ht_common +SPKG_DESC_CSWtex4ht-common += $(DESCRIPTION), architecture neutral components +ARCHALL_CSWtex4ht-common = 1 +OBSOLETED_BY_CSWtex4ht-common = CSWtex4htcommon +CATALOGNAME_CSWtex4htcommon = tex4ht_common_stub +RUNTIME_DEP_PKGS_CSWtex4ht-common += CSWimagemagick +CHECKPKG_OVERRIDES_CSWtex4ht-common += surplus-dependency|CSWimagemagick +RUNTIME_DEP_PKGS_CSWtex4ht-common += CSWnetpbm +CHECKPKG_OVERRIDES_CSWtex4ht-common += surplus-dependency|CSWnetpbm +RUNTIME_DEP_PKGS_CSWtex4ht-common += CSWperl +CHECKPKG_OVERRIDES_CSWtex4ht-common += surplus-dependency|CSWperl +RUNTIME_DEP_PKGS_CSWtex4ht-common += CSWpstoedit +CHECKPKG_OVERRIDES_CSWtex4ht-common += surplus-dependency|CSWpstoedit +RUNTIME_DEP_PKGS_CSWtex4ht-common += CSWtetex +CHECKPKG_OVERRIDES_CSWtex4ht-common += surplus-dependency|CSWtetex + +PACKAGES += CSWtex4ht +CATALOGNAME_CSWtex4ht = tex4ht +SPKG_DESC_CSWtex4ht += $(DESCRIPTION) +PKGFILES_CSWtex4ht += /opt/csw/bin/tex4ht +PKGFILES_CSWtex4ht += /opt/csw/bin/t4ht +RUNTIME_DEP_PKGS += CSWtex4ht-common +CHECKPKG_OVERRIDES_CSWtex4ht += surplus-dependency|CSWtex4ht-common + +include gar/category.mk + +genBins = \ + $(WORKSRC)/src/tex4ht \ + $(WORKSRC)/src/t4ht + +envBase = $(NAME).env +envFile = $(WORKSRC)/$(envBase) +origEnvFile = $(WORKSRC)/texmf/$(NAME)/base/unix/$(envBase) + +build-custom: \ + $(genBins) \ + $(envFile) + $(MAKECOOKIE) + +confdir = $(sysconfdir) +sharedir = $(sharedstatedir) +libexecdir = $(sharedir)/$(NAME) +docdir = $(sharedir)/doc/$(NAME) +texdir = $(texmflocaldir) +libdir = $(texdir)/$(NAME) + +LDFLAGS += -lkpathsea + +$(WORKSRC)/src/tex4ht: \ + $(WORKSRC)/src/tex4ht.c + $(CC) $(CFLAGS) -DENVFILE='"$(confdir)/tex4ht.env"' -DKPATHSEA -DHAVE_DIRENT_H $^ -o $@ $(LDFLAGS) + +$(WORKSRC)/src/t4ht: \ + $(WORKSRC)/src/t4ht.c + $(CC) $(CFLAGS) -DENVFILE='"$(confdir)/tex4ht.env"' -DKPATHSEA -DHAVE_DIRENT_H $^ -o $@ $(LDFLAGS) + +$(envFile): \ + $(origEnvFile) + gsed \ + -e 's:^tpath/tex/texmf/fonts/tfm/!$$:t$(sharedir)/texmf-dist/fonts/tfm/!:' \ + -e 's:^i~/tex4ht.dir/texmf/tex4ht:i$(libdir):' \ + $^ > $@ + +install-custom: pkgmandir = $(mandir)/man1 +install-custom: + ginstall --directory $(DESTDIR)/$(bindir) + ginstall $(genBins) $(DESTDIR)/$(bindir) + ginstall \ + $(WORKSRC)/bin/ht/unix/htlatex \ + $(WORKSRC)/bin/ht/unix/httex \ + $(WORKSRC)/bin/unix/ht \ + $(WORKSRC)/bin/unix/httexi \ + $(WORKSRC)/bin/unix/mk4ht \ + $(DESTDIR)/$(bindir) + ginstall --directory $(DESTDIR)/$(confdir) + ginstall $(envFile) $(DESTDIR)/$(confdir) + ginstall --directory $(DESTDIR)/$(libexecdir) + ginstall $(WORKSRC)/bin/unix/mk4ht $(DESTDIR)/$(libexecdir) + ginstall $(WORKSRC)/texmf/tex4ht/bin/tex4ht.jar $(DESTDIR)/$(libexecdir) + find $(WORKSRC)/bin/ht/unix -type f -exec ginstall {} $(DESTDIR)/$(libexecdir) \; + ginstall --directory $(DESTDIR)/$(libdir) + gtar \ + --directory $(WORKSRC)/texmf/tex4ht \ + --create \ + --file=- \ + ht-fonts \ + xtpipes \ + | \ + gtar \ + --directory $(DESTDIR)/$(libdir) \ + --extract \ + --file=- + gtar \ + --directory $(WORKSRC)/texmf \ + --create \ + --file=- \ + tex \ + | \ + gtar \ + --directory $(DESTDIR)/$(texdir) \ + --extract \ + --file=- + ginstall --directory --mode=u=rwx,go=rx $(DESTDIR)/$(pkgmandir) + ginstall --preserve-timestamps --mode=u=rwx,go=r $(FILEDIR)/tex4ht.1 $(DESTDIR)/$(pkgmandir) + $(MAKECOOKIE) + +# this is private and not available publicly +mydependencies: + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done Property changes on: csw/mgar/pkg/tex4ht/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/tex4ht/trunk/checksums =================================================================== --- csw/mgar/pkg/tex4ht/trunk/checksums (rev 0) +++ csw/mgar/pkg/tex4ht/trunk/checksums 2012-07-17 11:49:43 UTC (rev 18785) @@ -0,0 +1 @@ +a3449f7e81a917d6d80073a687448b3f tex4ht.zip Added: csw/mgar/pkg/tex4ht/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/tex4ht/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/tex4ht/trunk/files/COPYING 2012-07-17 11:49:43 UTC (rev 18785) @@ -0,0 +1,416 @@ +The LaTeX Project Public License +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- + +LPPL Version 1.3c 2008-05-04 + +Copyright 1999 2002-2008 LaTeX3 Project + Everyone is allowed to distribute verbatim copies of this + license document, but modification of it is not allowed. + + +PREAMBLE +======== + +The LaTeX Project Public License (LPPL) is the primary license under +which the LaTeX kernel and the base LaTeX packages are distributed. + +You may use this license for any work of which you hold the copyright +and which you wish to distribute. This license may be particularly +suitable if your work is TeX-related (such as a LaTeX package), but +it is written in such a way that you can use it even if your work is +unrelated to TeX. + +The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE', +below, gives instructions, examples, and recommendations for authors +who are considering distributing their works under this license. + +This license gives conditions under which a work may be distributed +and modified, as well as conditions under which modified versions of +that work may be distributed. + +We, the LaTeX3 Project, believe that the conditions below give you +the freedom to make and distribute modified versions of your work +that conform with whatever technical specifications you wish while +maintaining the availability, integrity, and reliability of +that work. If you do not see how to achieve your goal while +meeting these conditions, then read the document `cfgguide.tex' +and `modguide.tex' in the base LaTeX distribution for suggestions. + + +DEFINITIONS +=========== + +In this license document the following terms are used: + + `Work' + Any work being distributed under this License. + + `Derived Work' + Any work that under any applicable law is derived from the Work. + + `Modification' + Any procedure that produces a Derived Work under any applicable + law -- for example, the production of a file containing an + original file associated with the Work or a significant portion of + such a file, either verbatim or with modifications and/or + translated into another language. + + `Modify' + To apply any procedure that produces a Derived Work under any + applicable law. + + `Distribution' + Making copies of the Work available from one person to another, in + whole or in part. Distribution includes (but is not limited to) + making any electronic components of the Work accessible by + file transfer protocols such as FTP or HTTP or by shared file + systems such as Sun's Network File System (NFS). + + `Compiled Work' + A version of the Work that has been processed into a form where it + is directly usable on a computer system. This processing may + include using installation facilities provided by the Work, + transformations of the Work, copying of components of the Work, or + other activities. Note that modification of any installation + facilities provided by the Work constitutes modification of the Work. + + `Current Maintainer' + A person or persons nominated as such within the Work. If there is + no such explicit nomination then it is the `Copyright Holder' under + any applicable law. + + `Base Interpreter' + A program or process that is normally needed for running or + interpreting a part or the whole of the Work. + + A Base Interpreter may depend on external components but these + are not considered part of the Base Interpreter provided that each + external component clearly identifies itself whenever it is used + interactively. Unless explicitly specified when applying the + license to the Work, the only applicable Base Interpreter is a + `LaTeX-Format' or in the case of files belonging to the + `LaTeX-format' a program implementing the `TeX language'. + + + +CONDITIONS ON DISTRIBUTION AND MODIFICATION +=========================================== + +1. Activities other than distribution and/or modification of the Work +are not covered by this license; they are outside its scope. In +particular, the act of running the Work is not restricted and no +requirements are made concerning any offers of support for the Work. + +2. You may distribute a complete, unmodified copy of the Work as you +received it. Distribution of only part of the Work is considered +modification of the Work, and no right to distribute such a Derived +Work may be assumed under the terms of this clause. + +3. You may distribute a Compiled Work that has been generated from a +complete, unmodified copy of the Work as distributed under Clause 2 +above, as long as that Compiled Work is distributed in such a way that +the recipients may install the Compiled Work on their system exactly +as it would have been installed if they generated a Compiled Work +directly from the Work. + +4. If you are the Current Maintainer of the Work, you may, without +restriction, modify the Work, thus creating a Derived Work. You may +also distribute the Derived Work without restriction, including +Compiled Works generated from the Derived Work. Derived Works +distributed in this manner by the Current Maintainer are considered to +be updated versions of the Work. + +5. If you are not the Current Maintainer of the Work, you may modify +your copy of the Work, thus creating a Derived Work based on the Work, +and compile this Derived Work, thus creating a Compiled Work based on +the Derived Work. + +6. If you are not the Current Maintainer of the Work, you may +distribute a Derived Work provided the following conditions are met +for every component of the Work unless that component clearly states +in the copyright notice that it is exempt from that condition. Only +the Current Maintainer is allowed to add such statements of exemption +to a component of the Work. + + a. If a component of this Derived Work can be a direct replacement + for a component of the Work when that component is used with the + Base Interpreter, then, wherever this component of the Work + identifies itself to the user when used interactively with that + Base Interpreter, the replacement component of this Derived Work + clearly and unambiguously identifies itself as a modified version + of this component to the user when used interactively with that + Base Interpreter. + + b. Every component of the Derived Work contains prominent notices + detailing the nature of the changes to that component, or a + prominent reference to another file that is distributed as part + of the Derived Work and that contains a complete and accurate log + of the changes. + + c. No information in the Derived Work implies that any persons, + including (but not limited to) the authors of the original version + of the Work, provide any support, including (but not limited to) + the reporting and handling of errors, to recipients of the + Derived Work unless those persons have stated explicitly that + they do provide such support for the Derived Work. + + d. You distribute at least one of the following with the Derived Work: + + 1. A complete, unmodified copy of the Work; + if your distribution of a modified component is made by + offering access to copy the modified component from a + designated place, then offering equivalent access to copy + the Work from the same or some similar place meets this + condition, even though third parties are not compelled to + copy the Work along with the modified component; + + 2. Information that is sufficient to obtain a complete, + unmodified copy of the Work. + +7. If you are not the Current Maintainer of the Work, you may +distribute a Compiled Work generated from a Derived Work, as long as +the Derived Work is distributed to all recipients of the Compiled +Work, and as long as the conditions of Clause 6, above, are met with +regard to the Derived Work. + +8. The conditions above are not intended to prohibit, and hence do not +apply to, the modification, by any method, of any component so that it +becomes identical to an updated version of that component of the Work as +it is distributed by the Current Maintainer under Clause 4, above. + +9. Distribution of the Work or any Derived Work in an alternative +format, where the Work or that Derived Work (in whole or in part) is +then produced by applying some process to that format, does not relax or +nullify any sections of this license as they pertain to the results of +applying that process. + +10. a. A Derived Work may be distributed under a different license + provided that license itself honors the conditions listed in + Clause 6 above, in regard to the Work, though it does not have + to honor the rest of the conditions in this license. + + b. If a Derived Work is distributed under a different license, that + Derived Work must provide sufficient documentation as part of + itself to allow each recipient of that Derived Work to honor the + restrictions in Clause 6 above, concerning changes from the Work. + +11. This license places no restrictions on works that are unrelated to +the Work, nor does this license place any restrictions on aggregating +such works with the Work by any means. + +12. Nothing in this license is intended to, or may be used to, prevent +complete compliance by all parties with all applicable laws. + + +NO WARRANTY +=========== + +There is no warranty for the Work. Except when otherwise stated in +writing, the Copyright Holder provides the Work `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 Work is with you. Should the Work prove defective, you assume +the cost of all necessary servicing, repair, or correction. + +In no event unless required by applicable law or agreed to in writing +will The Copyright Holder, or any author named in the components of the +Work, or any other party who may distribute and/or modify the Work as +permitted above, be liable to you for damages, including any general, +special, incidental or consequential damages arising out of any use of +the Work or out of inability to use the Work (including, but not limited +to, loss of data, data being rendered inaccurate, or losses sustained by +anyone as a result of any failure of the Work to operate with any other +programs), even if the Copyright Holder or said author or said other +party has been advised of the possibility of such damages. + + +MAINTENANCE OF THE WORK +======================= + +The Work has the status `author-maintained' if the Copyright Holder +explicitly and prominently states near the primary copyright notice in +the Work that the Work can only be maintained by the Copyright Holder +or simply that it is `author-maintained'. + +The Work has the status `maintained' if there is a Current Maintainer +who has indicated in the Work that they are willing to receive error +reports for the Work (for example, by supplying a valid e-mail +address). It is not required for the Current Maintainer to acknowledge +or act upon these error reports. + +The Work changes from status `maintained' to `unmaintained' if there +is no Current Maintainer, or the person stated to be Current +Maintainer of the work cannot be reached through the indicated means +of communication for a period of six months, and there are no other +significant signs of active maintenance. + +You can become the Current Maintainer of the Work by agreement with +any existing Current Maintainer to take over this role. + +If the Work is unmaintained, you can become the Current Maintainer of +the Work through the following steps: + + 1. Make a reasonable attempt to trace the Current Maintainer (and + the Copyright Holder, if the two differ) through the means of + an Internet or similar search. + + 2. If this search is successful, then enquire whether the Work + is still maintained. + + a. If it is being maintained, then ask the Current Maintainer + to update their communication data within one month. + + b. If the search is unsuccessful or no action to resume active + maintenance is taken by the Current Maintainer, then announce + within the pertinent community your intention to take over + maintenance. (If the Work is a LaTeX work, this could be + done, for example, by posting to comp.text.tex.) + + 3a. If the Current Maintainer is reachable and agrees to pass + maintenance of the Work to you, then this takes effect + immediately upon announcement. + + b. If the Current Maintainer is not reachable and the Copyright + Holder agrees that maintenance of the Work be passed to you, + then this takes effect immediately upon announcement. + + 4. If you make an `intention announcement' as described in 2b. above + and after three months your intention is challenged neither by + the Current Maintainer nor by the Copyright Holder nor by other + people, then you may arrange for the Work to be changed so as + to name you as the (new) Current Maintainer. + + 5. If the previously unreachable Current Maintainer becomes + reachable once more within three months of a change completed + under the terms of 3b) or 4), then that Current Maintainer must + become or remain the Current Maintainer upon request provided + they then update their communication data within one month. + +A change in the Current Maintainer does not, of itself, alter the fact +that the Work is distributed under the LPPL license. + +If you become the Current Maintainer of the Work, you should +immediately provide, within the Work, a prominent and unambiguous +statement of your status as Current Maintainer. You should also +announce your new status to the same pertinent community as +in 2b) above. + + +WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE +====================================================== + +This section contains important instructions, examples, and +recommendations for authors who are considering distributing their +works under this license. These authors are addressed as `you' in +this section. + +Choosing This License or Another License +---------------------------------------- + +If for any part of your work you want or need to use *distribution* +conditions that differ significantly from those in this license, then +do not refer to this license anywhere in your work but, instead, +distribute your work under a different license. You may use the text +of this license as a model for your own license, but your license +should not refer to the LPPL or otherwise give the impression that +your work is distributed under the LPPL. + +The document `modguide.tex' in the base LaTeX distribution explains +the motivation behind the conditions of this license. It explains, +for example, why distributing LaTeX under the GNU General Public +License (GPL) was considered inappropriate. Even if your work is +unrelated to LaTeX, the discussion in `modguide.tex' may still be +relevant, and authors intending to distribute their works under any +license are encouraged to read it. + +A Recommendation on Modification Without Distribution +----------------------------------------------------- + +It is wise never to modify a component of the Work, even for your own +personal use, without also meeting the above conditions for +distributing the modified component. While you might intend that such +modifications will never be distributed, often this will happen by +accident -- you may forget that you have modified that component; or +it may not occur to you when allowing others to access the modified +version that you are thus distributing it and violating the conditions +of this license in ways that could have legal implications and, worse, +cause problems for the community. It is therefore usually in your +best interest to keep your copy of the Work identical with the public +one. Many works provide ways to control the behavior of that work +without altering any of its licensed components. + +How to Use This License +----------------------- + +To use this license, place in each of the components of your work both +an explicit copyright notice including your name and the year the work +was authored and/or last substantially modified. Include also a +statement that the distribution and/or modification of that +component is constrained by the conditions in this license. + +Here is an example of such a notice and statement: + + %% pig.dtx + %% Copyright 2005 M. Y. Name + % + % This work may be distributed and/or modified under the + % conditions of the LaTeX Project Public License, either version 1.3 + % of this license or (at your option) any later version. + % The latest version of this license is in + % http://www.latex-project.org/lppl.txt + % and version 1.3 or later is part of all distributions of LaTeX + % version 2005/12/01 or later. + % + % This work has the LPPL maintenance status `maintained'. + % + % The Current Maintainer of this work is M. Y. Name. + % + % This work consists of the files pig.dtx and pig.ins + % and the derived file pig.sty. + +Given such a notice and statement in a file, the conditions +given in this license document would apply, with the `Work' referring +to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being +generated from `pig.dtx' using `pig.ins'), the `Base Interpreter' +referring to any `LaTeX-Format', and both `Copyright Holder' and +`Current Maintainer' referring to the person `M. Y. Name'. + +If you do not want the Maintenance section of LPPL to apply to your +Work, change `maintained' above into `author-maintained'. +However, we recommend that you use `maintained', as the Maintenance +section was added in order to ensure that your Work remains useful to +the community even when you can no longer maintain and support it +yourself. + +Derived Works That Are Not Replacements +--------------------------------------- + +Several clauses of the LPPL specify means to provide reliability and +stability for the user community. They therefore concern themselves +with the case that a Derived Work is intended to be used as a +(compatible or incompatible) replacement of the original Work. If +this is not the case (e.g., if a few lines of code are reused for a +completely different task), then clauses 6b and 6d shall not apply. + + +Important Recommendations +------------------------- + + Defining What Constitutes the Work + + The LPPL requires that distributions of the Work contain all the + files of the Work. It is therefore important that you provide a + way for the licensee to determine which files constitute the Work. + This could, for example, be achieved by explicitly listing all the + files of the Work near the copyright notice of each file or by + using a line such as: + + % This work consists of all files listed in manifest.txt. + + in that place. In the absence of an unequivocal list it might be + impossible for the licensee to determine what is considered by you + to comprise the Work and, in such a case, the licensee would be + entitled to make reasonable conjectures as to which files comprise + the Work. + Added: csw/mgar/pkg/tex4ht/trunk/files/tex4ht.1 =================================================================== --- csw/mgar/pkg/tex4ht/trunk/files/tex4ht.1 (rev 0) +++ csw/mgar/pkg/tex4ht/trunk/files/tex4ht.1 2012-07-17 11:49:43 UTC (rev 18785) @@ -0,0 +1,500 @@ +.\" Written by Andrew Gray , 12 March 1999 +.\" Revised Tue, 22 Jun 1999 09:53:47 +0100 +.\" Revised Sun, 16 Jul 2000 14:08:07 +0100 +.\" Revised Sat, 3 May 2003 22:41:20 +0100 +.\" Revised by Kapil Hari Paranjape Tue, 5 Apr 2005 08:51:27 +0530 +.\" Revised Thu, 11 Sep 2008 12:40:50 +0530 +.TH TEX4HT 1 "5 Apr 2005" +.SH NAME +TeX4ht \- a system for authoring hypertext with TeX and friends +.SH SYNOPSIS +.BR mk4ht +.I command +.I file +.RI "[ " "options1" " ]" +.RI "[ " "options2" " ]" +.RI "[ " "options3" " ]" +.LP +.BR httex | htlatex | httexi +.I file +.RI "[ " "options1" " ]" +.RI "[ " "options2" " ]" +.RI "[ " "options3" " ]" +.LP +.B ht +tex|latex +.IR file " [ " "t4ht options" " ]" +.LP +.B tex4ht +[ +.BI \-f dir-char +] +.I file[.dvi] +[ +.BI \-c tag-name +] [ +.BI \-e env-file +] [ +.BI \-g bitmap-file-ext +] [ +.BR \-h ( e|f|F|g|s|v|V ) +] [ +.BI \-i htf-font-dir +] [ +.BI \-l bookkeeping-file +] [ +.BR \-P ( * | \fIfilter\fP ) +] [ +.BI \-t tfm-font-dir +] [ +.B \-u10 +] [ +.B \-utf8 +] [ +.B \-xs +] +.LP +.B t4ht +[ +.BI \-f dir-char +] +.I file[.lg] +[ +.BI \-c tag-name +] [ +.BI \-d out-dir +] [ +.BI \-e env-file +] [ +.B \-i +] [ +.BI \-m mode +] [ +.BI \-M mode +] [ +.B \-p +] [ +.B \-r +] [ +.BR \-S ( * | \fIfilter\fP ) +] [ +.BI \-X field-content +] [ +.BI \-. field-content +] +.LP +.SH "DESCRIPTION" +(This manual page was written for the Debian GNU/Linux distribution because the +original program does not have a manual page. Instead, it is +documented in detail at the author's website; see below. Please refer to +that documentation for more details or up to date information.) +.PP +This page documents briefly +the portmanteau perl script +.BR mk4ht ", +the more specific shell scripts +.BR httex ", "htlatex ", "httexi ", +and others like them, the lower level shell script interface +.BR ht ", +and the commands +.BR tex4ht " and "t4ht " +that all these scripts invoke. Together these programs constitute +TeX4ht; a highly configurable TeX-based authoring system for producing hypertext. +.PP +TeX4ht interacts with TeX-based applications through a style file +.I tex4ht.sty +and other files which are loaded by this style file, +leaving the processing of the source files to the native TeX +compiler. The output of the TeX compiler is then post-processed by +.BR tex4ht " and "t4ht ". +Consequently, TeX4ht can handle most features of TeX-based systems in +general, and of LaTeX in particular. +.PP +The shell scripts +.BR " httex ", " htlatex " and " httexi +convert TeX (respectively LaTeX and texinfo) into HTML. Typical user +requirements should be satisfied by these scripts which can generally +convert typical TeX source +.IR without +requiring any modifications. +.PP +To convert from a one of the other dialects of TeX (like ConTeXt), +.IR or +to convert into one of the other variants of hypertext +(MathML, XML, OO and so on), it is +.IR recommended +that you use the perl script +.BR "mk4ht". +Most common usage of the +system can be covered by the appropriate use of this command with its options. +.PP +The shell script +.BR " ht +is a much more elementary script which is provided for more complicated +needs. Its correct use depends on a better understanding of the system. +.PP +All these scripts begin with suitable invocations of +.BR tex (1) +or +.BR latex (1) +or other dialects of TeX as required. The post-processing of the +.I .dvi +output is handled by +.BR "tex4ht". +Anything that cannot be rendered using HTML (or its chosen hypertext variant), such +as the creation of bitmap images or CSS (Cascade Style Sheet) files is handled by +the auxiliary program +.BR "t4ht". +The method used for generating the images can be configured. +.PP +.SH OPTIONS +The following is only a very brief summary of the main program options. +For more details of the command-line and configuration options, see the HTML +documentation (see below). +.SS Options for httex, htlatex and httexi +.BR httex ", " htlatex " and " httexi +are shell scripts that can be used to convert a file in the TeX/LaTeX/texinfo format +into HTML. This TeX source file should be like any other TeX source file +normally used to produce a +.I .dvi +file by processing with TeX and friends. The name of such a file is the mandatory file argument +for each script. This is followed by up to three optional arguments (delimited with +quotation marks). These arguments, which are +.B not +required for typical usage, are as follows: +.IP 1. +The first argument is a list of options for the +.I tex4ht.sty +style file (used with tex or latex), separated with commas. +See the HTML documentation for the list of options available. The +.I .log +file generated by tex/latex also includes summaries of some of the options available. +If not empty, this argument must start with +.B html +or +.BR xhtml . +Additional options could be +.B mathml +or +.B docbook +to indicate appropriate style of output. +.IP 2. +This argument is used to select tagged sections of +.I tex4ht.env +that specifies the font files (*.htf) to use. This corresponds to the +.BI \-c +option for the command +.I tex4ht +as explained below. Examples include +.B unicode +or +.BR mozilla . +.IP 3. +This argument lists options for the +.I t4ht +program as explained below. +.LP +See the HTML documentation for more details and examples. +.LP +Similar scripts are +available within the directory +.I /opt/csw/share/tex4ht +for generating other kinds of hypertext output. It is also possible +to use the perl script +.BR mk4ht +as explained below. +.SS Options for mk4ht +.BR mk4ht +is a perl script that can be used to convert TeX source files from +numerous dialects of TeX into different hypertext variants. This script +takes two mandatory arguments: the name of the command to run and the +file to run it on. Each possible command is of the form +"": so for example +.IR xhmlatex +denotes a LaTeX source that needs to be converted to XHTML with +MathML extensions. The possible names for commands can be found by +listing the directory +.I /opt/csw/share/tex4ht. +The three optional arguments to +.BR mk4ht +are identical to those outlined above for +.BR httex ", "htlatex " and " httexi ". +In fact, the command +.BR htlatex " "foo " +is identical to +.BR mk4ht " "htlatex " "foo " +except that the former is shorter to type! However, +.BR mk4ht +can be configured to shorten the command line as follows. +.PP +Each user can create the configuration file +.IR mk4ht.cfg +or +.IR .mk4ht +in the home or working directory to configure commonly used options +for mk4ht; in addition options to clean up temporary files can also +be added to this configuration file. Running the command +.BR mk4ht +without any arguments will summarise the use of this user configuration +file. +.SS Options for ht +.B ht +is a small shell script that is used to run the tex4ht programs. It has two +compulsory arguments, as follows: +.IP 1. +The TeX command name to run, usually either +.B tex +or +.BR latex . +.IP 2. +The input file name (with or without extension). +.PP +It may take any additional options, which will be passed on to the call to +.BR t4ht . +.SS General directory/file search options +Several of the options detailed below relate to setting directory paths to +find particular kinds of files. Note the following when specifying +directories for the programs: +.IP 1. +There must be no space between the option letter (eg, +.BR \-t ) +and the directory/file name. +.IP 2. +The directory name must end with a trailing slash +.RB ( / , +or +.B /! +\- see below). +.IP 3. +You can add an exclamation mark +.RB ( ! ) +to the end of the directory name, to enable sub-directory searching. +.IP 4. +Only one directory can be specified at a time. To search multiple +directories, either use the sub-directory searching facility or repeat the +option. (The directory search options can be repeated as often as required.) +.IP 5. +When compiled with +.B kpathsea +(as in the OpenCSW package), the path-searching is in part taken over by +kpathsea. On a OpeCSW system see +.I /opt/csw/share/doc/tex4ht/README.kpathsea +for more information on path-searching in a kpathsea-enabled tex4ht. +.LP +As well as command-line options, most of these options can (and normally +should) be set in the configuration file +.IR tex4ht.env . +The format within this file is similar, but without using a hyphen before the +option letter. See the HTML documentation for more details on the +configuration options available. The file +.IR tex4ht.env +can be superseded on a per-directory and/or a per-user basis as +explained in the HTML documentation. +as well. +.SS Options for tex4ht +.TP +.BI \-c tag-name +Certain lines within the +.I tex4ht.env +configuration file can be marked with tags. These lines (typically +.I htf-font-dir +search lines) +will be omitted unless specifically requested by specifying the tag name on +the tex4ht command line. If not used, a command-line option of +.BI \-c default +is assumed. (See the supplied tex4ht.env file for examples of tagged +sections.) +.TP +.BI \-e env-file +Specify address of the tex4ht configuration file +.IR tex4ht.env . +.TP +.BI \-g bitmap-file-ext +Set the extension of bitmap images to +.I bitmap-file-ext +instead of the default +.IR .png . +Note that the extension should begin with a dot +.RB ( . ). +Note also that this option only affects images generated automatically for +symbol fonts, and not images generated with the +.B \(rsPicture +macro of tex4ht. +.TP +.B \-he +Trace errors and warnings (produces verbose output). +.TP +.B \-hg +Trace groups +.TP +.B \-hs +Trace +.BR \(rsspecial s. +.TP +.B \-hV +Trace search path for tex4ht.env configuration file +.TP +.B \-hF +Trace search path for +.I .htf +font files +.TP +.B \-hv +Dump contents of found tex4ht.env configuration file to stderr (for debugging) +.TP +.B \-hf +Dump contents of each +.I .htf +font file found to stderr (for debugging) +.TP +.BI \-i htf-font-dir +Set directory for HTF font files (used by tex4ht) to +.IR htf-font-dir . +.TP +.BI \-l bookkeeping-file +Specify name of the file listing cache used to speed up filename lookups +(ignored if compiled with kpathsea support) +.TP +.BI \-P filter +Restrict system calls requested in the source (La)TeX files to utilities whose +names have +.I filter +as a prefix. Use a single asterisk as +.I filter +to allow any system calls. +.TP +.BI \-t tfm-font-dir +Set directory for TFM font files to +.I tfm-font-dir +(ignored if compiled with kpathsea support). +.TP +.BI \-u10 +Use base 10 encoding for unicode characters. +.TP +.BI \-utf8 +Use utf-8 encoding for unicode characters. +.TP +.BI \-xs +Use 8.3 (MSDOS style) file names for the generated PNG files. +.SS Options for t4ht +.TP +.BI \-c tag-name +Certain lines within the +.I tex4ht.env +configuration file can be marked with tags. These lines (typically scripts +for post-processing files) will be omitted unless specifically requested by +specifying the tag name on the tex4ht command line. If not used, a +command-line option of +.BI \-c default +is assumed. (See the supplied tex4ht.env file for examples of tagged +sections.) +.TP +.BI \-d out-dir +Output files to directory +.IR out-dir , +instead of to the current directory. +.TP +.BI \-e env-file +Specify address of the tex4ht configuration file +.IR tex4ht.env . +.TP +.B \-i +Generate verbose debugging output. +.TP +.BI \-m mode +Create any new output files with access mode as indicated by +.IR mode . +The +.I mode +should be a numeric mode, as used by the +.BR chmod (1) +command. +.TP +.BI \-M mode +As +.I -m +but change all mode of all output files (including reused bitmaps). +.TP +.B \-p +Do not convert pictures (ie, images generated with macros like +.BR \(rsPicture , +not characters in symbol fonts that will be automatically converted into a +graphic file). +.TP +.B \-r +Do not resuse existing bitmaps of glyphs (for characters in symbol fonts etc), +but instead generate all bitmaps anew. +.TP +.BI \-S filter +Restrict system calls requested in the source (La)TeX files to utilities whose +names have +.I filter +as a prefix. Use a single asterisk as +.I filter +to allow any system calls. +.TP +.BI \-X field-content +Scripts for post-processing of files can be specified in tex4ht.env. If these +scripts refer to a field %%3, content for that field can be set with this +command-line option. +.TP +.BI \-. field-content +Scripts for post-processing of groups of files with a particular extension can +be specified in tex4ht.env. If these scripts refer to a field %%2, content +for that field can be set with this command-line option. +.SH FILES +.TP +.I /opt/csw/etc/tex4ht.env +Configuration file for tex4ht. This file is commented within the file, and +some additional notes are in +.I /opt/csw/share/doc/tex4ht/README.kpathsea +on a OpenCSW system. Further explanation is available in the HTML +documentation. +.TP +.I /opt/csw/share/texmf/web2c/texmf.cnf +Global configuration file for all TeX-related programs using the kpathsea path +searching library. The variables +.IR TEX4HTINPUTS , +.I T4HTINPUTS +and +.I TEX4HTFONTSET +within this file relate to file searching within +.B tex4ht +and +.BR t4ht. +These variables may also be set in the environment, outwith /opt/csw/texmf/web2c/texmf.cnf. +.TP +.I /opt/csw/share/texmf/tex4ht/ht-fonts/*.htf +Hypertext font files used by tex4ht. +.TP +.IR /opt/csw/share/texmf-local/tex/generic/tex4ht/tex4ht.sty " and " /opt/csw/share/texmf-local/tex/generic/tex4ht/*.4ht +Macro files used by tex or latex when using tex4ht to generate HTML output. +.TP +.I /opt/csw/share/tex4ht/* +Shell scripts for generating different kinds of hypertext output from tex or +latex sources. +.SH "SEE ALSO" +The use of the tex4ht macros is documented in the HTML documentation. +.PP +.BR tex (1), +.BR latex (1), +.BR amstex (1), +.BR kpsewhich (1), +.I http://tug.org/tex4ht/ +.SH BUGS +This manual page is not complete. Users should refer to the HTML +documentation for fuller details of the +configuration options and for details of the use of the tex4ht style files. +.B tex4ht +is still a work in progress, so bug reports +and requests are very welcome. +.SH AUTHOR +This manual page was originally written by Andrew Gray +(and then modified by Kapil Paranjape), +for the Debian GNU/Linux system (but it may be used by others). +Adapted for OpenCSW by Peter Felecan. +.PP +The +.B tex4ht +programs and macro files were written by Eitan Gurari. +. 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 Tue Jul 17 20:52:52 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Tue, 17 Jul 2012 18:52:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18786] csw/mgar/pkg/fping/trunk Message-ID: Revision: 18786 http://gar.svn.sourceforge.net/gar/?rev=18786&view=rev Author: j_arndt Date: 2012-07-17 18:52:52 +0000 (Tue, 17 Jul 2012) Log Message: ----------- fping/trunk: update to 3.2 Modified Paths: -------------- csw/mgar/pkg/fping/trunk/Makefile csw/mgar/pkg/fping/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/fping/trunk/files/fping-2.4b2_to-sequence-fix.patch csw/mgar/pkg/fping/trunk/files/fping-ipv6.patch Modified: csw/mgar/pkg/fping/trunk/Makefile =================================================================== --- csw/mgar/pkg/fping/trunk/Makefile 2012-07-17 11:49:43 UTC (rev 18785) +++ csw/mgar/pkg/fping/trunk/Makefile 2012-07-17 18:52:52 UTC (rev 18786) @@ -1,10 +1,20 @@ -NAME = fping -VERSION = 2.4 -REV = b2_to -CATEGORIES = utils -GARTYPE = v2 +NAME = fping +VERSION = 3.2 +CATEGORIES = utils +GARTYPE = v2 -DESCRIPTION = A ping like program accepting any number of hosts +# +# package definitions +# + +PACKAGES = CSWfping +SPKG_DESC_CSWfping = A ping like program accepting any number of hosts +CATALOGNAME_CSWfping = fping + +# +# blurb +# + define BLURB fping is a ping(1) like program which uses the Internet Control Message Protocol (ICMP) echo request to determine if a host is up. @@ -18,29 +28,32 @@ unreachable. endef -MASTER_SITES = http://fping.sourceforge.net/download/ -MASTER_SITES += http://oss.oetiker.ch/smokeping/pub/ -DISTFILES = $(NAME).tar.gz -#PATCHFILES = fping-2.4b2_to-sequence-fix.patch -PATCHFILES += fping-ipv6.patch +# +# download, distfiles, patchfiles +# +MASTER_SITES = http://fping.org/dist/ +DISTFILES = $(NAME)-$(VERSION).tar.gz +VENDOR_URL = http://fping.org/ + # We define upstream file regex so we can be notifed of new upstream software release -#UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -# If the url used to check for software update is different of MASTER_SITES, then -# uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES -#UPSTREAM_MASTER_SITES = http://fping.sourceforge.net/ +# +# reinplacements +# -SPKG_SOURCEURL = http://fping.sourceforge.net/ +REINPLACE_USRLOCAL += doc/fping* -WORKSRC = $(WORKDIR)/$(NAME)-$(VERSION)$(REV) +# +# configure +# CONFIGURE_ARGS = $(DIRPATHS) +# +# nothing to be done here for installation and packaging +# + include gar/category.mk -SPKG_VERSION := $(SPKG_VERSION)_rev=$(REV) - - - - Modified: csw/mgar/pkg/fping/trunk/checksums =================================================================== --- csw/mgar/pkg/fping/trunk/checksums 2012-07-17 11:49:43 UTC (rev 18785) +++ csw/mgar/pkg/fping/trunk/checksums 2012-07-17 18:52:52 UTC (rev 18786) @@ -1,2 +1 @@ -c5e9dc057bda53ed36af08ee9fb84938 download/fping-ipv6.patch -d5e8be59e307cef76bc479e1684df705 download/fping.tar.gz +efc86557e9b54e5c3becb598a50684a0 fping-3.2.tar.gz Deleted: csw/mgar/pkg/fping/trunk/files/fping-2.4b2_to-sequence-fix.patch =================================================================== --- csw/mgar/pkg/fping/trunk/files/fping-2.4b2_to-sequence-fix.patch 2012-07-17 11:49:43 UTC (rev 18785) +++ csw/mgar/pkg/fping/trunk/files/fping-2.4b2_to-sequence-fix.patch 2012-07-17 18:52:52 UTC (rev 18786) @@ -1,82 +0,0 @@ -Only in fping-2.4b2_to.patch: Makefile -Only in fping-2.4b2_to.patch: config.h -Only in fping-2.4b2_to.patch: config.log -Only in fping-2.4b2_to.patch: config.status -Only in fping-2.4b2_to.patch: fping -diff -u fping-2.4b2_to/fping.c fping-2.4b2_to.patch/fping.c ---- fping-2.4b2_to/fping.c 2001-07-20 19:10:26.000000000 +0200 -+++ fping-2.4b2_to.patch/fping.c 2008-08-18 22:14:38.000000000 +0200 -@@ -1440,7 +1440,7 @@ - icp->icmp_type = ICMP_ECHO; - icp->icmp_code = 0; - icp->icmp_cksum = 0; -- icp->icmp_seq = h->i; -+ icp->icmp_seq = h->i + (h->num_sent) * num_hosts; - icp->icmp_id = ident; - - pdp = ( PING_DATA* )( buffer + SIZE_ICMP_HDR ); -@@ -1527,6 +1527,7 @@ - int n, avg; - HOST_ENTRY *h; - long this_reply; -+ long id; - int this_count; - struct timeval sent_time; - -@@ -1568,6 +1569,7 @@ - }/* IF */ - - icp = ( struct icmp* )( buffer + hlen ); -+ id = icp->icmp_seq % num_hosts; - if( icp->icmp_type != ICMP_ECHOREPLY ) - { - /* handle some problem */ -@@ -1583,10 +1585,10 @@ - - num_pingreceived++; - -- if( icp->icmp_seq >= ( n_short )num_hosts ) -+ if( id >= ( n_short )num_hosts ) - return( 1 ); /* packet received, don't worry about it anymore */ - -- n = icp->icmp_seq; -+ n = id; - h = table[n]; - - /* received ping is cool, so process it */ -@@ -1726,6 +1728,7 @@ - { - struct icmp *sent_icmp; - struct ip *sent_ip; -+ long id = sent_icmp->icmp_seq % num_hosts; - u_char *c; - HOST_ENTRY *h; - -@@ -1737,10 +1740,10 @@ - - if( ( sent_icmp->icmp_type == ICMP_ECHO ) && - ( sent_icmp->icmp_id == ident ) && -- ( sent_icmp->icmp_seq < ( n_short )num_hosts ) ) -+ ( id < ( n_short )num_hosts ) ) - { - /* this is a response to a ping we sent */ -- h = table[sent_icmp->icmp_seq]; -+ h = table[id]; - - if( p->icmp_code > ICMP_UNREACH_MAXTYPE ) - { -@@ -1771,10 +1774,10 @@ - sent_icmp = ( struct icmp* )( c + 28 ); - if( ( sent_icmp->icmp_type = ICMP_ECHO ) && - ( sent_icmp->icmp_id = ident ) && -- ( sent_icmp->icmp_seq < ( n_short )num_hosts ) ) -+ ( id < ( n_short )num_hosts ) ) - { - /* this is a response to a ping we sent */ -- h = table[sent_icmp->icmp_seq]; -+ h = table[id]; - fprintf( stderr, "%s from %s for ICMP Echo sent to %s", - icmp_type_str[p->icmp_type], inet_ntoa( addr->sin_addr ), h->host ); - -Only in fping-2.4b2_to.patch: fping.o -Only in fping-2.4b2_to.patch: stamp-h Deleted: csw/mgar/pkg/fping/trunk/files/fping-ipv6.patch =================================================================== --- csw/mgar/pkg/fping/trunk/files/fping-ipv6.patch 2012-07-17 11:49:43 UTC (rev 18785) +++ csw/mgar/pkg/fping/trunk/files/fping-ipv6.patch 2012-07-17 18:52:52 UTC (rev 18786) @@ -1,952 +0,0 @@ -diff -Naur fping-2.4b2/ChangeLog fping-2.4b2_to-ipv6/ChangeLog ---- fping-2.4b2/ChangeLog Thu Mar 15 03:09:39 2001 -+++ fping-2.4b2_to-ipv6/ChangeLog Mon Jan 21 02:15:04 2002 -@@ -1,12 +1,23 @@ --Tue Mar 14 18:37:50 2001 --Jason Ewasiuk (ZeroHype Technologies Inc.) -+Wed Jan 16 2002 -+Jeroen Massar -+- Revision v2.4b2-to-IPv6 -+ - Added IPv6 support. -+ - Added -I option for selecting source IPv4/IPv6 address. -+ - Makefile.in now generates a Makefile which will build both -+ fping (IPv4) and fping6 (IPv6). Thus it makes an fping (IPv4 only) -+ and an fping6 (IPv6 only). -+ - num_unreachable was counted twice when a sendto() generated errors. -+ - See http://unfix.org/projects/ipv6/ -+ -+Tue Mar 14 2001 -+Jason Ewasiuk - - Revision v2.4b1 - - added -g option for generating IPs from a start to an end value - - two available options, generate IPs from start IP to end IP - or from a passed netmask, such as 192.168.1.0/24 - --Thu Feb 15 14:35:00 2001 --Jason Ewasiuk (ZeroHype Technologies Inc.) -+Thu Feb 15 2001 -+Jason Ewasiuk - - Revision v2.3b1 - - formatting changes to code layout (fping.c) - NOTE: Best viewed with a tab stop of 4 -diff -Naur fping-2.4b2/Makefile.am fping-2.4b2_to-ipv6/Makefile.am ---- fping-2.4b2/Makefile.am Thu Mar 15 03:07:52 2001 -+++ fping-2.4b2_to-ipv6/Makefile.am Wed Jan 16 01:52:18 2002 -@@ -1,5 +1,5 @@ -- - sbin_PROGRAMS = fping - fping_SOURCES = fping.c options.h linux.h - man_MANS = fping.8 - AUTOMAKE_OPTIONS=foreign -+EXTRA_DIST = $(man_MANS) -diff -Naur fping-2.4b2/README fping-2.4b2_to-ipv6/README ---- fping-2.4b2/README Wed Apr 25 20:29:10 2001 -+++ fping-2.4b2_to-ipv6/README Mon Jan 21 02:02:12 2002 -@@ -1,9 +1,9 @@ - fping README - ------------ - --Current maintainer and cool feature adder: -+Current maintainer: - --ZeroHype Technologies Inc. (noc at zerohype.com) http://www.zerohype.com -+David Papp - david at remote.net - - - fping website: http://www.fping.com -@@ -11,6 +11,7 @@ - - Original author: Roland Schemers (schemers at stanford.edu) - Previous maintainer: RL "Bob" Morgan (morgan at stanford.edu) -+IPv6 Support: Jeroen Massar (jeroen at unfix.org / jeroen at ipng.nl) - - - Suggestions and patches: -diff -Naur fping-2.4b2/acconfig.h fping-2.4b2_to-ipv6/acconfig.h ---- fping-2.4b2/acconfig.h Thu Mar 15 03:07:52 2001 -+++ fping-2.4b2_to-ipv6/acconfig.h Sat Nov 3 16:23:40 2001 -@@ -1,4 +1,18 @@ -+#ifndef CONFIG_H -+#define CONFIG_H -+ -+ at TOP@ - - /* VERSION (from configure.in) */ - #undef VERSION - -+ -+ at BOTTOM@ -+ -+/* some OSes do not define this ... lets take a wild guess */ -+ -+#ifndef INADDR_NONE -+# define INADDR_NONE 0xffffffffU -+#endif -+ -+#endif /* CONFIG_H */ -diff -Naur fping-2.4b2/aclocal.m4 fping-2.4b2_to-ipv6/aclocal.m4 ---- fping-2.4b2/aclocal.m4 Thu Jan 1 01:00:00 1970 -+++ fping-2.4b2_to-ipv6/aclocal.m4 Wed Jan 16 01:48:55 2002 -@@ -0,0 +1,127 @@ -+dnl aclocal.m4 generated automatically by aclocal 1.4 -+ -+dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. -+dnl This file is free software; the Free Software Foundation -+dnl gives unlimited permission to copy and/or distribute it, -+dnl with or without modifications, as long as this notice is preserved. -+ -+dnl This program is distributed in the hope that it will be useful, -+dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without -+dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A -+dnl PARTICULAR PURPOSE. -+ -+# Do all the work for Automake. This macro actually does too much -- -+# some checks are only needed if your package does certain things. -+# But this isn't really a big deal. -+ -+# serial 1 -+ -+dnl Usage: -+dnl AM_INIT_AUTOMAKE(package,version, [no-define]) -+ -+AC_DEFUN(AM_INIT_AUTOMAKE, -+[AC_REQUIRE([AC_PROG_INSTALL]) -+PACKAGE=[$1] -+AC_SUBST(PACKAGE) -+VERSION=[$2] -+AC_SUBST(VERSION) -+dnl test to see if srcdir already configured -+if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then -+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) -+fi -+ifelse([$3],, -+AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) -+AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])) -+AC_REQUIRE([AM_SANITY_CHECK]) -+AC_REQUIRE([AC_ARG_PROGRAM]) -+dnl FIXME This is truly gross. -+missing_dir=`cd $ac_aux_dir && pwd` -+AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir) -+AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) -+AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) -+AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) -+AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) -+AC_REQUIRE([AC_PROG_MAKE_SET])]) -+ -+# -+# Check to make sure that the build environment is sane. -+# -+ -+AC_DEFUN(AM_SANITY_CHECK, -+[AC_MSG_CHECKING([whether build environment is sane]) -+# Just in case -+sleep 1 -+echo timestamp > conftestfile -+# Do `set' in a subshell so we don't clobber the current shell's -+# arguments. Must try -L first in case configure is actually a -+# symlink; some systems play weird games with the mod time of symlinks -+# (eg FreeBSD returns the mod time of the symlink's containing -+# directory). -+if ( -+ set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null` -+ if test "[$]*" = "X"; then -+ # -L didn't work. -+ set X `ls -t $srcdir/configure conftestfile` -+ fi -+ if test "[$]*" != "X $srcdir/configure conftestfile" \ -+ && test "[$]*" != "X conftestfile $srcdir/configure"; then -+ -+ # If neither matched, then we have a broken ls. This can happen -+ # if, for instance, CONFIG_SHELL is bash and it inherits a -+ # broken ls alias from the environment. This has actually -+ # happened. Such a system could not be considered "sane". -+ AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken -+alias in your environment]) -+ fi -+ -+ test "[$]2" = conftestfile -+ ) -+then -+ # Ok. -+ : -+else -+ AC_MSG_ERROR([newly created file is older than distributed files! -+Check your system clock]) -+fi -+rm -f conftest* -+AC_MSG_RESULT(yes)]) -+ -+dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY) -+dnl The program must properly implement --version. -+AC_DEFUN(AM_MISSING_PROG, -+[AC_MSG_CHECKING(for working $2) -+# Run test in a subshell; some versions of sh will print an error if -+# an executable is not found, even if stderr is redirected. -+# Redirect stdin to placate older versions of autoconf. Sigh. -+if ($2 --version) < /dev/null > /dev/null 2>&1; then -+ $1=$2 -+ AC_MSG_RESULT(found) -+else -+ $1="$3/missing $2" -+ AC_MSG_RESULT(missing) -+fi -+AC_SUBST($1)]) -+ -+# Like AC_CONFIG_HEADER, but automatically create stamp file. -+ -+AC_DEFUN(AM_CONFIG_HEADER, -+[AC_PREREQ([2.12]) -+AC_CONFIG_HEADER([$1]) -+dnl When config.status generates a header, we must update the stamp-h file. -+dnl This file resides in the same directory as the config header -+dnl that is generated. We must strip everything past the first ":", -+dnl and everything past the last "/". -+AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl -+ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>, -+<>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>, -+<>; do -+ case " <<$>>CONFIG_HEADERS " in -+ *" <<$>>am_file "*<<)>> -+ echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx -+ ;; -+ esac -+ am_indx=`expr "<<$>>am_indx" + 1` -+done<<>>dnl>>) -+changequote([,]))]) -+ -diff -Naur fping-2.4b2/config.h.in fping-2.4b2_to-ipv6/config.h.in ---- fping-2.4b2/config.h.in Thu Mar 15 03:07:52 2001 -+++ fping-2.4b2_to-ipv6/config.h.in Wed Jan 16 01:49:45 2002 -@@ -1,4 +1,7 @@ - /* config.h.in. Generated automatically from configure.in by autoheader. */ -+#ifndef CONFIG_H -+#define CONFIG_H -+ - - /* VERSION (from configure.in) */ - #undef VERSION -@@ -20,3 +23,18 @@ - - /* Define if you have the socket library (-lsocket). */ - #undef HAVE_LIBSOCKET -+ -+/* Name of package */ -+#undef PACKAGE -+ -+/* Version number of package */ -+#undef VERSION -+ -+ -+/* some OSes do not define this ... lets take a wild guess */ -+ -+#ifndef INADDR_NONE -+# define INADDR_NONE 0xffffffffU -+#endif -+ -+#endif /* CONFIG_H */ -diff -Naur fping-2.4b2/configure.in fping-2.4b2_to-ipv6/configure.in ---- fping-2.4b2/configure.in Thu Nov 7 21:11:57 2002 -+++ fping-2.4b2_to-ipv6/configure.in Wed Jan 16 01:48:02 2002 -@@ -1,18 +1,26 @@ - dnl Process this file with autoconf to produce a configure script. - AC_INIT(fping.c) --AM_INIT_AUTOMAKE(fping,fping) -+AM_INIT_AUTOMAKE(fping, 2.4b2_to_ipv6) -+ - AM_CONFIG_HEADER(config.h) -+#VERSION=2.4b2 -+#PACKAGE=fping -+AC_SUBST(PACKAGE) -+AC_SUBST(VERSION) -+AC_DEFINE_UNQUOTED(VERSION,"$VERSION") - - dnl Checks for programs. - --AC_ARG_PROGRAM - AC_PROG_CC - AC_PROG_CPP - AC_PROG_INSTALL - - dnl Checks for libraries. - --AC_CHECK_FUNC(gethostbyname, [] AC_CHECK_LIB(nsl, gethostbyname)) -+AC_CHECK_FUNC(gethostbyname) -+if test $ac_cv_func_gethostbyname = no; then -+ AC_CHECK_LIB(nsl, gethostbyname) -+fi - AC_CHECK_FUNC(connect) - if test $ac_cv_func_connect = no; then - AC_CHECK_LIB(socket, connect) -@@ -21,4 +29,4 @@ - dnl Checks for header files. - AC_CHECK_HEADERS(unistd.h sys/file.h stdlib.h sys/select.h) - --AC_OUTPUT([Makefile]) -+AC_OUTPUT(Makefile) -diff -Naur fping-2.4b2/fping.8 fping-2.4b2_to-ipv6/fping.8 ---- fping-2.4b2/fping.8 Thu Mar 15 03:10:45 2001 -+++ fping-2.4b2_to-ipv6/fping.8 Mon Jan 21 02:05:48 2002 -@@ -192,7 +192,7 @@ - .nf - Roland J. Schemers III, Stanford University, concept and versions 1.x - RL "Bob" Morgan, Stanford University, versions 2.x --ZeroHype Technologies Inc. (http://www.zerohype.com), versions 2.3x and up, -+David Papp, versions 2.3x and up, - fping website: http://www.fping.com - .ni - .SH DIAGNOSTICS -diff -Naur fping-2.4b2/fping.c fping-2.4b2_to-ipv6/fping.c ---- fping-2.4b2/fping.c Fri Jul 20 19:10:26 2001 -+++ fping-2.4b2_to-ipv6/fping.c Mon Jan 21 02:06:30 2002 -@@ -17,12 +17,13 @@ - * - * Current maintainers of fping: - * -- * ZeroHype Technologies Inc. (http://www.zerohype.com) -- * Suggestions and patches, please email noc at zerohype.com -+ * David Papp -+ * Suggestions and patches, please email david at remote.net - * - * - * -- * Original author: Roland Schemers -+ * Original author: Roland Schemers -+ * IPv6 Support: Jeroen Massar - * - * - * -@@ -41,6 +42,7 @@ - * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - */ -+#define IPV6 1 /* This should be a compiler option, or even better be done from the Makefile... ;) */ - - #ifndef _NO_PROTO - #if !__STDC__ && !defined( __cplusplus ) && !defined( FUNCPROTO ) \ -@@ -65,13 +67,16 @@ - - /*** autoconf includes ***/ - --#include - - #include - #include - #include - #include - -+#include -+ -+#include "config.h" -+ - #ifdef HAVE_UNISTD_H - #include - #endif /* HAVE_UNISTD_H */ -@@ -91,8 +96,10 @@ - #include - #endif /* HAVE_SYS_FILE_H */ - -+#ifdef IPV6 -+#include -+#endif - #include --#include - - /* Linux has bizarre ip.h and ip_icmp.h */ - #if defined( __linux__ ) -@@ -126,8 +133,8 @@ - - /*** Constants ***/ - --#define REV_DATE "2001/01/25 11:25:04" --#define EMAIL "noc at zerohype.com" -+#define REV_DATE "2002/01/16 00:33:42" -+#define EMAIL "david at remote.net" - - /*** Ping packet defines ***/ - -@@ -215,6 +222,13 @@ - }; - - #define ICMP_UNREACH_MAXTYPE 15 -+#ifndef IPV6 -+#define FPING_SOCKADDR struct sockaddr_in -+#define FPING_ICMPHDR struct icmp -+#else -+#define FPING_SOCKADDR struct sockaddr_in6 -+#define FPING_ICMPHDR struct icmp6_hdr -+#endif - - /* entry used to keep track of each host we are pinging */ - -@@ -225,7 +239,7 @@ - char *name; /* name as given by user */ - char *host; /* text description of host */ - char *pad; /* pad to align print names */ -- struct sockaddr_in saddr; /* internet address */ -+ FPING_SOCKADDR saddr; /* internet address */ - int timeout; /* time to wait for response */ - u_char running; /* unset when through sending */ - u_char waiting; /* waiting for response */ -@@ -335,7 +349,11 @@ - #else - - void add_name( char *name ); -+#ifndef IPV6 - void add_addr( char *name, char *host, struct in_addr ipaddr ); -+#else -+void add_addr( char *name, char *host, FPING_SOCKADDR *ipaddr ); -+#endif - char *na_cat( char *name, struct in_addr ipaddr ); - char *cpystr( char *string ); - void crash_and_burn( char *message ); -@@ -343,7 +361,7 @@ - char *get_host_by_address( struct in_addr in ); - int in_cksum( u_short *p, int n ); - void u_sleep( int u_sec ); --int recvfrom_wto ( int s, char *buf, int len, struct sockaddr *saddr, int timo ); -+int recvfrom_wto ( int s, char *buf, int len, FPING_SOCKADDR *saddr, int timo ); - void remove_job( HOST_ENTRY *h ); - void send_ping( int s, HOST_ENTRY *h ); - long timeval_diff( struct timeval *a, struct timeval *b ); -@@ -353,7 +371,7 @@ - void print_per_system_splits( void ); - void print_global_stats( void ); - void finish(); --int handle_random_icmp( struct icmp *p, int psize, struct sockaddr_in *addr ); -+int handle_random_icmp( FPING_ICMPHDR *p, int psize, FPING_SOCKADDR *addr ); - char *sprint_tm( int t ); - - #endif /* _NO_PROTO */ -@@ -382,12 +400,14 @@ - #endif /* _NO_PROTO */ - { - int c, i, n; -+#ifdef IPV6 -+ int opton = 1; -+#endif - u_int lt, ht; - int advance; - struct protoent *proto; - char *buf; - uid_t uid; -- - /* check if we are root */ - - if( geteuid() ) -@@ -400,15 +420,62 @@ - }/* IF */ - - /* confirm that ICMP is available on this machine */ -+#ifndef IPV6 - if( ( proto = getprotobyname( "icmp" ) ) == NULL ) -+#else -+ if( ( proto = getprotobyname( "ipv6-icmp" ) ) == NULL ) -+#endif - crash_and_burn( "icmp: unknown protocol" ); - - /* create raw socket for ICMP calls (ping) */ -+#ifndef IPV6 - s = socket( AF_INET, SOCK_RAW, proto->p_proto ); -+#else -+ s = socket( AF_INET6, SOCK_RAW, proto->p_proto ); -+#endif - - if( s < 0 ) - errno_crash_and_burn( "can't create raw socket" ); - -+#ifdef IPV6 -+ /* -+ * let the kerel pass extension headers of incoming packets, -+ * for privileged socket options -+ */ -+#ifdef IPV6_RECVHOPOPTS -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_RECVHOPOPTS, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_RECVHOPOPTS)"); -+#else /* old adv. API */ -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_HOPOPTS, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_HOPOPTS)"); -+#endif -+#ifdef IPV6_RECVDSTOPTS -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_RECVDSTOPTS, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_RECVDSTOPTS)"); -+#else /* old adv. API */ -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_DSTOPTS, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_DSTOPTS)"); -+#endif -+#ifdef IPV6_RECVRTHDRDSTOPTS -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_RECVRTHDRDSTOPTS, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_RECVRTHDRDSTOPTS)"); -+#endif -+#ifdef IPV6_RECVRTHDR -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_RECVRTHDR, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_RECVRTHDR)"); -+#else /* old adv. API */ -+ if (setsockopt(s, IPPROTO_IPV6, IPV6_RTHDR, &opton, -+ sizeof(opton))) -+ err(1, "setsockopt(IPV6_RTHDR)"); -+#endif -+#endif -+ - if( ( uid = getuid() ) ) - { - seteuid( getuid() ); -@@ -1425,7 +1492,7 @@ - #endif /* _NO_PROTO */ - { - char *buffer; -- struct icmp *icp; -+ FPING_ICMPHDR *icp; - PING_DATA *pdp; - int n; - -@@ -1434,9 +1501,10 @@ - crash_and_burn( "can't malloc ping packet" ); - - memset( buffer, 0, ping_pkt_size * sizeof( char ) ); -- icp = ( struct icmp* )buffer; -+ icp = ( FPING_ICMPHDR* )buffer; - - gettimeofday( &h->last_send_time, &tz ); -+#ifndef IPV6 - icp->icmp_type = ICMP_ECHO; - icp->icmp_code = 0; - icp->icmp_cksum = 0; -@@ -1448,14 +1516,25 @@ - pdp->ping_count = h->num_sent; - - icp->icmp_cksum = in_cksum( ( u_short* )icp, ping_pkt_size ); -+#else -+ icp->icmp6_type = ICMP6_ECHO_REQUEST; -+ icp->icmp6_code = 0; -+ icp->icmp6_seq = h->i; -+ icp->icmp6_id = ident; -+ -+ pdp = ( PING_DATA* )( buffer + SIZE_ICMP_HDR ); -+ pdp->ping_ts = h->last_send_time; -+ pdp->ping_count = h->num_sent; - -+ icp->icmp6_cksum = 0; // The IPv6 stack calculates the checksum for us... -+#endif - #if defined(DEBUG) || defined(_DEBUG) - if( trace_flag ) - printf( "sending [%d] to %s\n", h->num_sent, h->host ); - #endif /* DEBUG || _DEBUG */ - - n = sendto( s, buffer, ping_pkt_size, 0, -- ( struct sockaddr* )&h->saddr, sizeof( struct sockaddr_in ) ); -+ ( struct sockaddr* )&h->saddr, sizeof( FPING_SOCKADDR ) ); - - if( n < 0 || n != ping_pkt_size ) - { -@@ -1520,18 +1599,17 @@ - { - int result; - static char buffer[4096]; -- struct sockaddr_in response_addr; -+ FPING_SOCKADDR response_addr; - struct ip *ip; -- int hlen; -- struct icmp *icp; -+ int hlen = 0; -+ FPING_ICMPHDR *icp; - int n, avg; - HOST_ENTRY *h; - long this_reply; - int this_count; - struct timeval sent_time; - -- result = recvfrom_wto( s, buffer, 4096, -- ( struct sockaddr* )&response_addr, select_time ); -+ result = recvfrom_wto( s, buffer, sizeof(buffer), &response_addr, select_time ); - - if( result < 0 ) - return 0; /* timeout */ -@@ -1546,7 +1624,7 @@ - #endif /* DEBUG || _DEBUG */ - - ip = ( struct ip* )buffer; -- -+#ifndef IPV6 - #if defined( __alpha__ ) && __STDC__ && !defined( __GLIBC__ ) - /* The alpha headers are decidedly broken. - * Using an ANSI compiler, it provides ip_vhl instead of ip_hl and -@@ -1556,37 +1634,59 @@ - #else - hlen = ip->ip_hl << 2; - #endif /* defined(__alpha__) && __STDC__ */ -- - if( result < hlen + ICMP_MINLEN ) -+#else -+ if( result < sizeof(FPING_ICMPHDR) ) -+#endif - { - if( verbose_flag ) -+ { -+#ifndef IPV6 - printf( "received packet too short for ICMP (%d bytes from %s)\n", result, - inet_ntoa( response_addr.sin_addr ) ); -- -+#else -+ char buf[INET6_ADDRSTRLEN]; -+ inet_ntop(response_addr.sin6_family, &response_addr.sin6_addr, buf, INET6_ADDRSTRLEN); -+ printf( "received packet too short for ICMP (%d bytes from %s)\n", result, buf); -+#endif -+ } - return( 1 ); /* too short */ -- - }/* IF */ - -- icp = ( struct icmp* )( buffer + hlen ); -+ icp = ( FPING_ICMPHDR* )( buffer + hlen ); -+#ifndef IPV6 - if( icp->icmp_type != ICMP_ECHOREPLY ) -+#else -+ if( icp->icmp6_type != ICMP6_ECHO_REPLY ) -+#endif - { - /* handle some problem */ - if( handle_random_icmp( icp, result, &response_addr ) ) - num_othericmprcvd++; -- - return 1; -- - }/* IF */ - -+#ifndef IPV6 - if( icp->icmp_id != ident ) -+#else -+ if( icp->icmp6_id != ident ) -+#endif - return 1; /* packet received, but not the one we are looking for! */ - - num_pingreceived++; - -+#ifndef IPV6 - if( icp->icmp_seq >= ( n_short )num_hosts ) -+#else -+ if( icp->icmp6_seq >= ( n_short )num_hosts ) -+#endif - return( 1 ); /* packet received, don't worry about it anymore */ - -+#ifndef IPV6 - n = icp->icmp_seq; -+#else -+ n = icp->icmp6_seq; -+#endif - h = table[n]; - - /* received ping is cool, so process it */ -@@ -1595,9 +1695,14 @@ - h->timeout = timeout; - h->num_recv++; - h->num_recv_i++; -- -+ -+#ifndef IPV6 - memcpy( &sent_time, icp->icmp_data + offsetof( PING_DATA, ping_ts ), sizeof( sent_time ) ); - memcpy( &this_count, icp->icmp_data, sizeof( this_count ) ); -+#else -+ memcpy( &sent_time, ((char *)icp->icmp6_data32)+4+offsetof(PING_DATA, ping_ts), sizeof( sent_time ) ); -+ memcpy( &this_count, ((char *)icp->icmp6_data32)+4, sizeof( this_count ) ); -+#endif - - #if defined( DEBUG ) || defined( _DEBUG ) - if( trace_flag ) -@@ -1627,10 +1732,18 @@ - { - fprintf( stderr, "%s : duplicate for [%d], %d bytes, %s ms", - h->host, this_count, result, sprint_tm( this_reply ) ); -- -+#ifndef IPV6 - if( response_addr.sin_addr.s_addr != h->saddr.sin_addr.s_addr ) - fprintf( stderr, " [<- %s]", inet_ntoa( response_addr.sin_addr ) ); -- -+#else -+ if(memcmp(&response_addr.sin6_addr, &h->saddr.sin6_addr, sizeof(response_addr.sin6_addr))) -+ { -+ char buf[INET6_ADDRSTRLEN]; -+ inet_ntop(response_addr.sin6_family, &response_addr.sin6_addr, buf, INET6_ADDRSTRLEN); -+ -+ fprintf( stderr, " [<- %s]", buf); -+ } -+#endif - fprintf( stderr, "\n" ); - - }/* IF */ -@@ -1660,10 +1773,17 @@ - - if( elapsed_flag ) - printf( " (%s ms)", sprint_tm( this_reply ) ); -- -+#ifndef IPV6 - if( response_addr.sin_addr.s_addr != h->saddr.sin_addr.s_addr ) - printf( " [<- %s]", inet_ntoa( response_addr.sin_addr ) ); -- -+#else -+ if(memcmp(&response_addr.sin6_addr, &h->saddr.sin6_addr, sizeof(response_addr.sin6_addr))) -+ { -+ char buf[INET6_ADDRSTRLEN]; -+ inet_ntop(response_addr.sin6_family, &response_addr.sin6_addr, buf, INET6_ADDRSTRLEN); -+ fprintf( stderr, " [<- %s]", buf); -+ } -+#endif - printf( "\n" ); - - }/* IF */ -@@ -1688,9 +1808,17 @@ - ( h->num_recv * 100 ) / h->num_sent ); - - }/* ELSE */ -- -+#ifndef IPV6 - if( response_addr.sin_addr.s_addr != h->saddr.sin_addr.s_addr ) - printf( " [<- %s]", inet_ntoa( response_addr.sin_addr ) ); -+#else -+ if(memcmp(&response_addr.sin6_addr, &h->saddr.sin6_addr, sizeof(response_addr.sin6_addr))) -+ { -+ char buf[INET6_ADDRSTRLEN]; -+ inet_ntop(response_addr.sin6_family, &response_addr.sin6_addr, buf, INET6_ADDRSTRLEN); -+ fprintf( stderr, " [<- %s]", buf); -+ } -+#endif - - printf( "\n" ); - -@@ -1706,7 +1834,7 @@ - - ************************************************************* - -- Inputs: struct icmp *p, int psize, struct sockaddr_in *addr -+ Inputs: FPING_ICMPHDR *p, int psize, FPING_SOCKADDR *addr - - Returns: int - -@@ -1717,22 +1845,33 @@ - - #ifdef _NO_PROTO - int handle_random_icmp( p, psize, addr ) -- struct icmp *p; -+ FPING_ICMPHDR *p; - int psize; -- struct sockaddr_in *addr; -+ FPING_SOCKADDR *addr; - #else --int handle_random_icmp( struct icmp *p, int psize, struct sockaddr_in *addr ) -+int handle_random_icmp( FPING_ICMPHDR *p, int psize, FPING_SOCKADDR *addr ) - #endif /* _NO_PROTO */ - { -- struct icmp *sent_icmp; -+ FPING_ICMPHDR *sent_icmp; - struct ip *sent_ip; - u_char *c; - HOST_ENTRY *h; -+#ifdef IPV6 -+ char addr_ascii[INET6_ADDRSTRLEN]; -+ inet_ntop(addr->sin6_family, &addr->sin6_addr, addr_ascii, INET6_ADDRSTRLEN); -+#endif - - c = ( u_char* )p; -+#ifndef IPV6 - switch( p->icmp_type ) -+#else -+ switch( p->icmp6_type ) -+#endif - { - case ICMP_UNREACH: -+ sent_icmp = ( FPING_ICMPHDR* )( c + 28 ); -+ -+#ifndef IPV6 - sent_icmp = ( struct icmp* )( c + 28 ); - - if( ( sent_icmp->icmp_type == ICMP_ECHO ) && -@@ -1747,16 +1886,37 @@ - fprintf( stderr, "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s", - inet_ntoa( addr->sin_addr ), h->host ); - -+#else -+ if( ( sent_icmp->icmp6_type == ICMP_ECHO ) && -+ ( sent_icmp->icmp6_id == ident ) && -+ ( sent_icmp->icmp6_seq < ( n_short )num_hosts ) ) -+ { -+ /* this is a response to a ping we sent */ -+ h = table[sent_icmp->icmp6_seq]; -+ -+ if( p->icmp6_code > ICMP_UNREACH_MAXTYPE ) -+ { -+ fprintf( stderr, "ICMP Unreachable (Invalid Code) from %s for ICMP Echo sent to %s", -+ addr_ascii, h->host ); -+#endif - }/* IF */ - else - { - fprintf( stderr, "%s from %s for ICMP Echo sent to %s", -+#ifndef IPV6 - icmp_unreach_str[p->icmp_code], inet_ntoa( addr->sin_addr ), h->host ); -+#else -+ icmp_unreach_str[p->icmp6_code], addr_ascii, h->host ); -+#endif - - }/* ELSE */ - - if( inet_addr( h->host ) == -1 ) -+#ifndef IPV6 - fprintf( stderr, " (%s)", inet_ntoa( h->saddr.sin_addr ) ); -+#else -+ fprintf( stderr, " (%s)", addr_ascii); -+#endif - - fprintf( stderr, "\n" ); - -@@ -1768,7 +1928,8 @@ - case ICMP_REDIRECT: - case ICMP_TIMXCEED: - case ICMP_PARAMPROB: -- sent_icmp = ( struct icmp* )( c + 28 ); -+ sent_icmp = ( FPING_ICMPHDR* )( c + 28 ); -+#ifndef IPV6 - if( ( sent_icmp->icmp_type = ICMP_ECHO ) && - ( sent_icmp->icmp_id = ident ) && - ( sent_icmp->icmp_seq < ( n_short )num_hosts ) ) -@@ -1780,6 +1941,19 @@ - - if( inet_addr( h->host ) == -1 ) - fprintf( stderr, " (%s)", inet_ntoa( h->saddr.sin_addr ) ); -+#else -+ if( ( sent_icmp->icmp6_type = ICMP_ECHO ) && -+ ( sent_icmp->icmp6_id = ident ) && -+ ( sent_icmp->icmp6_seq < ( n_short )num_hosts ) ) -+ { -+ /* this is a response to a ping we sent */ -+ h = table[sent_icmp->icmp6_seq]; -+ fprintf( stderr, "%s from %s for ICMP Echo sent to %s", -+ icmp_type_str[p->icmp6_type], addr_ascii, h->host ); -+ -+ if( inet_addr( h->host ) == -1 ) -+ fprintf( stderr, " (%s)", addr_ascii ); -+#endif - - fprintf( stderr, "\n" ); - -@@ -1879,6 +2053,7 @@ - void add_name( char *name ) - #endif /* _NO_PROTO */ - { -+#ifndef IPV6 - struct hostent *host_ent; - u_int ipaddress; - struct in_addr *ipa = ( struct in_addr* )&ipaddress; -@@ -1985,7 +2160,27 @@ - - }/* WHILE */ - }/* ELSE */ -- -+#else -+ FPING_SOCKADDR dst; -+ struct addrinfo *res, hints; -+ int ret_ga; -+ char *hostname; -+ -+ /* getaddrinfo */ -+ bzero(&hints, sizeof(struct addrinfo)); -+ hints.ai_flags = AI_CANONNAME; -+ hints.ai_family = AF_INET6; -+ hints.ai_socktype = SOCK_RAW; -+ hints.ai_protocol = IPPROTO_ICMPV6; -+ -+ ret_ga = getaddrinfo(name, NULL, &hints, &res); -+ if (ret_ga) errx(1, "%s", gai_strerror(ret_ga)); -+ if (res->ai_canonname) hostname = res->ai_canonname; -+ else hostname = name; -+ if (!res->ai_addr) errx(1, "getaddrinfo failed"); -+ (void)memcpy(&dst, res->ai_addr, sizeof(FPING_SOCKADDR)); /*res->ai_addrlen);*/ -+ add_addr(name, name, &dst); -+#endif - } /* add_name() */ - - -@@ -2048,9 +2243,17 @@ - void add_addr( name, host, ipaddr ) - char *name; - char *host; -+#ifndef IPV6 - struct in_addr ipaddr; - #else -+FPING_SOCKADDR *ipaddr; -+#endif -+#else -+#ifndef IPV6 - void add_addr( char *name, char *host, struct in_addr ipaddr ) -+#else -+void add_addr( char *name, char *host, FPING_SOCKADDR *ipaddr ) -+#endif - #endif /* _NO_PROTO */ - { - HOST_ENTRY *p; -@@ -2064,8 +2267,13 @@ - - p->name = name; - p->host = host; -+#ifndef IPV6 - p->saddr.sin_family = AF_INET; - p->saddr.sin_addr = ipaddr; -+#else -+ p->saddr.sin6_family = AF_INET6; -+ (void)memcpy(&p->saddr, ipaddr, sizeof(FPING_SOCKADDR)); -+#endif - p->timeout = timeout; - p->running = 1; - p->min_reply = 10000000; -@@ -2193,7 +2401,11 @@ - #endif /* _NO_PROTO */ - { - struct hostent *h; -+#ifndef IPV6 - h = gethostbyaddr( ( char* )&in, sizeof( struct in_addr ),AF_INET ); -+#else -+ h = gethostbyaddr( ( char* )&in, sizeof( FPING_SOCKADDR ),AF_INET6 ); -+#endif - - if( h == NULL || h->h_name == NULL ) - return inet_ntoa( in ); -@@ -2429,7 +2641,7 @@ - - ************************************************************* - -- Inputs: int s, char* buf, int len, struct sockaddr *saddr, int timo -+ Inputs: int s, char* buf, int len, FPING_SOCKADDR *saddr, int timo - - Returns: int - -@@ -2443,9 +2655,9 @@ - - #ifdef _NO_PROTO - int recvfrom_wto( s, buf, len, saddr, timo ) --int s; char *buf; int len; struct sockaddr *saddr; int timo; -+int s; char *buf; int len; FPING_SOCKADDR *saddr; int timo; - #else --int recvfrom_wto( int s, char *buf, int len, struct sockaddr *saddr, int timo ) -+int recvfrom_wto( int s, char *buf, int len, FPING_SOCKADDR *saddr, int timo ) - #endif /* _NO_PROTO */ - { - int nfound, slen, n; -@@ -2465,8 +2677,12 @@ - if( nfound == 0 ) - return -1; /* timeout */ - -+#ifndef IPV6 - slen = sizeof( struct sockaddr ); -- n = recvfrom( s, buf, len, 0, saddr, &slen ); -+#else -+ slen = sizeof( FPING_SOCKADDR ); -+#endif -+ n = recvfrom( s, buf, len, 0, (struct sockaddr *)saddr, &slen ); - if( n < 0 ) - errno_crash_and_burn( "recvfrom" ); - 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 Jul 17 22:11:28 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 17 Jul 2012 20:11:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[18787] csw/mgar/pkg/cpan/mod_perl2/trunk Message-ID: Revision: 18787 http://gar.svn.sourceforge.net/gar/?rev=18787&view=rev Author: dmichelsen Date: 2012-07-17 20:11:28 +0000 (Tue, 17 Jul 2012) Log Message: ----------- cpan/mod_perl2/trunk: Update to 2.0.7, does not use bdb explicitly any more Modified Paths: -------------- csw/mgar/pkg/cpan/mod_perl2/trunk/Makefile csw/mgar/pkg/cpan/mod_perl2/trunk/checksums Modified: csw/mgar/pkg/cpan/mod_perl2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/mod_perl2/trunk/Makefile 2012-07-17 18:52:52 UTC (rev 18786) +++ csw/mgar/pkg/cpan/mod_perl2/trunk/Makefile 2012-07-17 20:11:28 UTC (rev 18787) @@ -1,9 +1,9 @@ NAME = mod_perl -DISTVERSION = 2.0.4 +DISTVERSION = 2.0.7 VERSION = $(subst -,,$(DISTVERSION)) CATEGORIES = cpan GARTYPE = v2 -AUTHOR = GOZER +AUTHOR = PHRED DESCRIPTION = Persistent Perl interpreter for Apache 2.x define BLURB @@ -25,13 +25,36 @@ # _default_ vhost, causing a lookup of 255.255.255.255. # +# For OpenSSL +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + PACKAGES = CSWap2modperl +# Keep the standard name for now CATALOGNAME = ap2_modperl +CHECKPKG_OVERRIDES_CSWap2modperl += catalogname-does-not-match-pkgname|pkgname=CSWap2modperl|catalogname=ap2_modperl|expected-catalogname=ap2modperl +SPKG_DESC_CSWap2modperl = Persistent Perl interpreter for Apache 2.x +RUNTIME_DEP_PKGS_CSWap2modperl += CSWliblber2-4-2 +RUNTIME_DEP_PKGS_CSWap2modperl += CSWlibaprutil1-0 +RUNTIME_DEP_PKGS_CSWap2modperl += CSWlibexpat1 +RUNTIME_DEP_PKGS_CSWap2modperl += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWap2modperl += CSWapache2 +RUNTIME_DEP_PKGS_CSWap2modperl += CSWlibapr1-0 +RUNTIME_DEP_PKGS_CSWap2modperl += CSWlibldap2-4-2 -RUNTIME_DEP_PKGS += CSWapache2rt CSWexpat CSWiconv -RUNTIME_DEP_PKGS += CSWbdb47 CSWoldaprt -BUILD_DEP_PKGS = $(RUNTIME_DEP_PKGS) +# These are only examples +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Apache2::Directive.3perl +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Apache2::Status.3perl +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/ModPerl::RegistryLoader.3perl +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Apache::TestMB.3perl +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Apache/TestMB.pm +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Apache/TestBuild.pm +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Apache2/Directive.pm +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Apache2/Status.pm +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Apache2/Build.pm +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/ModPerl/RegistryLoader.pm +CHECKPKG_OVERRIDES_CSWap2modperl += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/ModPerl/CScan.pm + CONFIGURE_ARGS = MP_APXS=$(prefix)/apache2/sbin/apxs CONFIGURE_ARGS += MP_PROMPT_DEFAULT=1 CONFIGURE_ARGS += MP_DEBUG=1 @@ -48,9 +71,12 @@ include gar/category.mk -LDFLAGS += -L$(prefix)/bdb44/lib -LD_OPTIONS += -R$(prefix)/bdb44/lib +#LDFLAGS += -L$(prefix)/bdb48/lib +#LD_OPTIONS += -R$(prefix)/bdb44/lib +# EXTRA_LIB += $(prefix)/bdb48/lib +# EXTRA_INC += $(prefix)/bdb48/include + install-custom: ( cd $(WORKSRC) ; $(INSTALL_ENV) make install DESTDIR=$(DESTDIR) ) @$(MAKECOOKIE) Modified: csw/mgar/pkg/cpan/mod_perl2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/mod_perl2/trunk/checksums 2012-07-17 18:52:52 UTC (rev 18786) +++ csw/mgar/pkg/cpan/mod_perl2/trunk/checksums 2012-07-17 20:11:28 UTC (rev 18787) @@ -1,9 +1 @@ -9fe7c7577cb7b74a12de72ec2da7ed25 CSWap2modperl.depend -852f7237f8e589f3431cda92df6a8d7d CSWap2modperl.gspec -bce39a803cbcc9ab82458cef8d57b650 CSWap2modperl.postinstall -b266995026ff19ad4366b4518e648006 CSWap2modperl.preremove -7c728dbb1990e4029ce791182f55f9b0 CSWap2modperl.prototype -0dd379f20ceb32fc77bb3a9bf045097f CSWap2modperl.space -74414e7cba18ec2c10d3bf262f3d661b httpd-perl.conf.CSW -1a05625ae6843085f985f5da8214502a mod_perl-2.0.4.tar.gz -4aa0fc5876b33fa32ff8a18a7c70a82a startup.pl.CSW +e8b3d7b6d67505a8e3050cb9042b944b mod_perl-2.0.7.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Wed Jul 18 08:15:56 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Wed, 18 Jul 2012 06:15:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[18788] csw/mgar/pkg/netsnmp/trunk/Makefile Message-ID: Revision: 18788 http://gar.svn.sourceforge.net/gar/?rev=18788&view=rev Author: cgrzemba Date: 2012-07-18 06:15:56 +0000 (Wed, 18 Jul 2012) Log Message: ----------- netsnmp/trunk: readd openssl support Modified Paths: -------------- csw/mgar/pkg/netsnmp/trunk/Makefile Modified: csw/mgar/pkg/netsnmp/trunk/Makefile =================================================================== --- csw/mgar/pkg/netsnmp/trunk/Makefile 2012-07-17 20:11:28 UTC (rev 18787) +++ csw/mgar/pkg/netsnmp/trunk/Makefile 2012-07-18 06:15:56 UTC (rev 18788) @@ -31,6 +31,7 @@ VENDOR_URL = http://www.net-snmp.org/ BUILD_DEP_PKGS = CSWpysetuptools +PACKAGING_PLATFORMS += Solaris10-sparc Solaris10-i386 PACKAGES += CSWnetsnmp-dev CATALOGNAME_CSWnetsnmp-dev = netsnmp_dev @@ -47,12 +48,15 @@ CATALOGNAME_CSWlibnetsnmp25 = libnetsnmp25 SPKG_DESC_CSWlibnetsnmp25 += $(DESCRIPTION), libsnmp.so.25 PKGFILES_CSWlibnetsnmp25 += $(call baseisadirs,$(libdir),libnetsnmp\.so\.25(\.\d+)*) +RUNTIME_DEP_PKGS_CSWlibnetsnmp25 += CSWlibssl1-0-0 + PACKAGES += CSWlibnetsnmpagent25 CATALOGNAME_CSWlibnetsnmpagent25 = libnetsnmpagent25 SPKG_DESC_CSWlibnetsnmpagent25 += $(DESCRIPTION), libsnmpagent.so.25 PKGFILES_CSWlibnetsnmpagent25 += $(call baseisadirs,$(libdir),libnetsnmpagent\.so\.25(\.\d+)*) RUNTIME_DEP_PKGS_CSWlibnetsnmpagent25 += CSWlibnetsnmp25 +RUNTIME_DEP_PKGS_CSWlibnetsnmpagent25 += CSWlibssl1-0-0 PACKAGES += CSWlibnetsnmphelpers25 CATALOGNAME_CSWlibnetsnmphelpers25 = libnetsnmphelpers25 @@ -65,6 +69,7 @@ PKGFILES_CSWlibnetsnmpmibs25 += $(call baseisadirs,$(libdir),libnetsnmpmibs\.so\.25(\.\d+)*) RUNTIME_DEP_PKGS_CSWlibnetsnmpmibs25 += CSWlibnetsnmp25 RUNTIME_DEP_PKGS_CSWlibnetsnmpmibs25 += CSWlibnetsnmpagent25 +RUNTIME_DEP_PKGS_CSWlibnetsnmpmibs25 += CSWlibssl1-0-0 PACKAGES += CSWlibnetsnmptrapd25 CATALOGNAME_CSWlibnetsnmptrapd25 = libnetsnmptrapd25 @@ -73,6 +78,7 @@ RUNTIME_DEP_PKGS_CSWlibnetsnmptrapd25 += CSWlibnetsnmpmibs25 RUNTIME_DEP_PKGS_CSWlibnetsnmptrapd25 += CSWlibnetsnmp25 RUNTIME_DEP_PKGS_CSWlibnetsnmptrapd25 += CSWlibnetsnmpagent25 +RUNTIME_DEP_PKGS_CSWlibnetsnmptrapd25 += CSWlibssl1-0-0 EXTRA_MERGE_EXCLUDE_FILES += .*/perllocal.pod PACKAGES += CSWpmnetsnmp @@ -84,6 +90,7 @@ RUNTIME_DEP_PKGS_CSWpmnetsnmp += CSWlibnetsnmp25 RUNTIME_DEP_PKGS_CSWpmnetsnmp += CSWlibnetsnmpagent25 CHECKPKG_OVERRIDES_CSWpmnetsnmp += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/site_perl/NetSNMP/TrapReceiver.pm +RUNTIME_DEP_PKGS_CSWpmnetsnmp += CSWlibssl1-0-0 EXTRA_MERGE_EXCLUDE_FILES += .*/*.pyc PACKAGES += CSWpy-netsnmp @@ -93,6 +100,7 @@ RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWpython RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWlibnetsnmp25 +RUNTIME_DEP_PKGS_CSWpy-netsnmp += CSWlibssl1-0-0 PACKAGES += CSWnetsnmp SPKG_DESC_CSWnetsnmp += $(DESCRIPTION), Base @@ -100,6 +108,7 @@ RUNTIME_DEP_PKGS_CSWnetsnmp += CSWlibnetsnmptrapd25 RUNTIME_DEP_PKGS_CSWnetsnmp += CSWlibnetsnmp25 RUNTIME_DEP_PKGS_CSWnetsnmp += CSWlibnetsnmpagent25 +RUNTIME_DEP_PKGS_CSWnetsnmp += CSWlibssl1-0-0 RUNTIME_DEP_PKGS_CSWnetsnmp += CSWperl CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/snmpcmd.1 CHECKPKG_OVERRIDES_CSWnetsnmp += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/snmpconf.1 @@ -139,6 +148,7 @@ # Disable for now # CONFIGURE_ARGS += --with-libwrap=/opt/csw/lib CONFIGURE_ARGS += --enable-ipv6 +CONFIGURE_ARGS += --with-openssl=/opt/csw CONFIGURE_ARGS += --with-transports="UDP TCP Unix" CONFIGURE_ARGS += $(CONFIGURE_ARGS_mm-$(MEMORYMODEL)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 18 16:10:26 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 18 Jul 2012 14:10:26 +0000 Subject: [csw-devel] SF.net SVN: gar:[18789] csw/mgar/pkg Message-ID: Revision: 18789 http://gar.svn.sourceforge.net/gar/?rev=18789&view=rev Author: pfelecan Date: 2012-07-18 14:10:25 +0000 (Wed, 18 Jul 2012) Log Message: ----------- latex2html/trunk: migrated from a private recipe to a GAR based recipe. Added Paths: ----------- csw/mgar/pkg/latex2html/ csw/mgar/pkg/latex2html/Makefile csw/mgar/pkg/latex2html/branches/ csw/mgar/pkg/latex2html/tags/ csw/mgar/pkg/latex2html/trunk/ csw/mgar/pkg/latex2html/trunk/Makefile csw/mgar/pkg/latex2html/trunk/checksums csw/mgar/pkg/latex2html/trunk/files/ csw/mgar/pkg/latex2html/trunk/files/0001-Add-url.patch csw/mgar/pkg/latex2html/trunk/files/0002-Don-t-use-rgb.txt-from-pstoimg.patch csw/mgar/pkg/latex2html/trunk/files/0003-Fix-borders-in-pstoimg.patch csw/mgar/pkg/latex2html/trunk/files/0004-Fix-file-pattern-in-pstoimg.patch csw/mgar/pkg/latex2html/trunk/files/0005-Fix-several-typos.patch csw/mgar/pkg/latex2html/trunk/files/0006-Use-HTML-4.0-by-default.patch csw/mgar/pkg/latex2html/trunk/files/0007-Fixes-bad-perl-in-l2hconf.pin.patch csw/mgar/pkg/latex2html/trunk/files/0008-latex2html-fix-authoraddress.patch csw/mgar/pkg/latex2html/trunk/files/0009-override-dvips-dot-in-filename-problem.patch csw/mgar/pkg/latex2html/trunk/files/0010-manual-fix-address.patch csw/mgar/pkg/latex2html/trunk/files/0011-Makefiles-fixes.patch csw/mgar/pkg/latex2html/trunk/files/0012-Fix-images-types.patch csw/mgar/pkg/latex2html/trunk/files/0013-Fix-romanian.patch csw/mgar/pkg/latex2html/trunk/files/0014-Fix-mathend-mark.patch csw/mgar/pkg/latex2html/trunk/files/0015-Fix-pdfoutput.patch csw/mgar/pkg/latex2html/trunk/files/0016-Fix-gs-stderr.patch csw/mgar/pkg/latex2html/trunk/files/0017-Pstoimg-match-gray.patch csw/mgar/pkg/latex2html/trunk/files/0018-Fix-spaces-in-filenames.patch csw/mgar/pkg/latex2html/trunk/files/0019-Match-multiline.patch csw/mgar/pkg/latex2html/trunk/files/0020-latex2html-fix-defined.patch csw/mgar/pkg/latex2html/trunk/files/0021-Documentation-private-1-and-3.patch csw/mgar/pkg/latex2html/trunk/files/0022-Run-time-style-private-2.patch csw/mgar/pkg/latex2html/trunk/files/0023-Installation-private-7.patch csw/mgar/pkg/latex2html/trunk/files/0024-TeXExpand-private-7.patch csw/mgar/pkg/latex2html/trunk/files/0025-Icons-installation-private-8.patch csw/mgar/pkg/latex2html/trunk/files/0026-pnmcrop-detection.patch csw/mgar/pkg/latex2html/trunk/files/0027-Adapt-makeseg.patch csw/mgar/pkg/latex2html/trunk/files/0028-Call-environment-defined-Perl.patch csw/mgar/pkg/latex2html/trunk/files/abnt.perl csw/mgar/pkg/latex2html/trunk/files/eurosym.perl csw/mgar/pkg/latex2html/trunk/files/floatflt.ins csw/mgar/pkg/latex2html/trunk/files/latex2html.1 csw/mgar/pkg/latex2html/trunk/files/texexpand.1 Added: csw/mgar/pkg/latex2html/Makefile =================================================================== --- csw/mgar/pkg/latex2html/Makefile (rev 0) +++ csw/mgar/pkg/latex2html/Makefile 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/latex2html/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/latex2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/latex2html/trunk/Makefile (rev 0) +++ csw/mgar/pkg/latex2html/trunk/Makefile 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,141 @@ +# $Id$ + +NAME = latex2html +VERSION = 2008 +GARTYPE = v2 +CATEGORIES = apps + +DESCRIPTION = A converter written in Perl that converts LATEX documents to HTML +define BLURB + A converter written in Perl that converts LATEX documents to HTML +endef + +MASTER_SITES = http://mirrors.ctan.org/support/latex2html/ +DISTFILES = $(DISTNAME).tar.gz +# Debian series 7 from +# http://patch-tracker.debian.org/package/latex2html/2008-debian1-7 +PATCHFILES += 0001-Add-url.patch +PATCHFILES += 0002-Don-t-use-rgb.txt-from-pstoimg.patch +PATCHFILES += 0003-Fix-borders-in-pstoimg.patch +PATCHFILES += 0004-Fix-file-pattern-in-pstoimg.patch +PATCHFILES += 0005-Fix-several-typos.patch +PATCHFILES += 0006-Use-HTML-4.0-by-default.patch +PATCHFILES += 0007-Fixes-bad-perl-in-l2hconf.pin.patch +PATCHFILES += 0008-latex2html-fix-authoraddress.patch +PATCHFILES += 0009-override-dvips-dot-in-filename-problem.patch +PATCHFILES += 0010-manual-fix-address.patch +PATCHFILES += 0011-Makefiles-fixes.patch +PATCHFILES += 0012-Fix-images-types.patch +# the following DISTFILES are patches creating new files; why GAR +# doesn't support them? +DISTFILES += abnt.perl +PATCHFILES += 0013-Fix-romanian.patch +PATCHFILES += 0014-Fix-mathend-mark.patch +DISTFILES += floatflt.ins +PATCHFILES += 0015-Fix-pdfoutput.patch +PATCHFILES += 0016-Fix-gs-stderr.patch +PATCHFILES += 0017-Pstoimg-match-gray.patch +PATCHFILES += 0018-Fix-spaces-in-filenames.patch +DISTFILES += texexpand.1 +DISTFILES += latex2html.1 +DISTFILES += eurosym.perl +PATCHFILES += 0019-Match-multiline.patch +PATCHFILES += 0020-latex2html-fix-defined.patch +# previously private and new patches: +PATCHFILES += 0021-Documentation-private-1-and-3.patch +PATCHFILES += 0022-Run-time-style-private-2.patch +PATCHFILES += 0023-Installation-private-7.patch +PATCHFILES += 0024-TeXExpand-private-7.patch +PATCHFILES += 0025-Icons-installation-private-8.patch +PATCHFILES += 0026-pnmcrop-detection.patch +PATCHFILES += 0027-Adapt-makeseg.patch +PATCHFILES += 0028-Call-environment-defined-Perl.patch + +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --with-texpath=$(texmflocaldir)/tex/latex/html + +BUILD_DEP_PKGS += CSWgs +BUILD_DEP_PKGS += CSWnetpbm +BUILD_DEP_PKGS += CSWperl +BUILD_DEP_PKGS += CSWtetex + +BUILD_SCRIPTS = nominal +# as strange as it seems the check and test are build actions... +BUILD_SCRIPTS += check +BUILD_SCRIPTS += test +BUILD_SCRIPTS += documentation + +TEST_SCRIPTS = + +LICENSE = LICENSE + +RUNTIME_DEP_PKGS += CSWgs +RUNTIME_DEP_PKGS += CSWperl +RUNTIME_DEP_PKGS += CSWnetpbm +RUNTIME_DEP_PKGS += CSWtetex + +include gar/category.mk + +build-nominal: + $(MAKE) -C $(WORKSRC) + $(MAKECOOKIE) + +build-check: + $(MAKE) -C $(WORKSRC) $(subst build-,,$@) + $(MAKECOOKIE) + +build-test: + $(MAKE) -C $(WORKSRC) $(subst build-,,$@) + $(MAKECOOKIE) + +build-documentation: + $(MAKE) -C $(WORKSRC) $(subst build-,,$@) + $(MAKECOOKIE) + +pre-install-modulated: + cp $(FILEDIR)/abnt.perl $(WORKSRC)/styles + cp $(FILEDIR)/eurosym.perl $(WORKSRC)/styles + cp $(FILEDIR)/floatflt.ins $(WORKSRC)/texinputs + mkdir -p "$(DESTDIR)/$(sharedstatedir)/lib/$(NAME)/icons" + $(MAKECOOKIE) + +noPack += *.aux +noPack += *.bbl +noPack += *.dat +noPack += *.dvi +noPack += *.glo +noPack += *.gls +noPack += *.idx +noPack += *.ind +noPack += *.index +noPack += *.ist +noPack += *.lof +noPack += *.log +noPack += *.lot +noPack += *.ptr +noPack += *.sty +noPack += *.tex +noPack += *.toc +noPack += .latex2html-init +noPack += Makefile* +noPack += changebar +noPack += changebar +noPack += hthtml +noPack += hthtml +noPack += manual/*.aux +noPack += manual/*.aux +noPack += manual/*.bbl +noPack += manual/*.log +noPack += manual/*.pl +noPack += manual/*.tex +noPack += psfiles +noPack += psfiles +post-install-modulated: + ginstall --directory $(DESTDIR)/$(mandir)/man1 + ginstall $(FILEDIR)/texexpand.1 $(DESTDIR)/$(mandir)/man1 + ginstall $(FILEDIR)/latex2html.1 $(DESTDIR)/$(mandir)/man1 + ginstall --directory $(DESTDIR)/$(docdir) + mv $(DESTDIR)/$(sharedstatedir)/lib/$(NAME)/docs $(DESTDIR)/$(docdir)/$(NAME) + mv $(DESTDIR)/$(sharedstatedir)/lib/$(NAME)/example $(DESTDIR)/$(docdir)/$(NAME) + cd $(DESTDIR)/$(docdir)/$(NAME) && rm -rf $(noPack) + $(MAKECOOKIE) Property changes on: csw/mgar/pkg/latex2html/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/latex2html/trunk/checksums =================================================================== --- csw/mgar/pkg/latex2html/trunk/checksums (rev 0) +++ csw/mgar/pkg/latex2html/trunk/checksums 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1 @@ +275ab6cfa8ca9328446b7f40d8dc302e latex2html-2008.tar.gz Added: csw/mgar/pkg/latex2html/trunk/files/0001-Add-url.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0001-Add-url.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0001-Add-url.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,40 @@ +From 752b1d387c044dda5de34e705e227a11cfbc6a5a Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 14:13:41 +0200 +Subject: [PATCH] Add url 1 of Debian series 7 + +--- + FAQ | 3 +-- + README | 2 +- + 2 files changed, 2 insertions(+), 3 deletions(-) + +diff --git a/FAQ b/FAQ +index 33040f9..9ab2f59 100644 +--- a/FAQ ++++ b/FAQ +@@ -630,8 +630,7 @@ change_end 98.1 + * To join the community of LATEX2HTML users: + More information on a mailing list, discussion archives, bug + reporting forms and more is available at +- http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.ht +- ml ++ http://mirrors.ctan.org/support/latex2html/ + + 2.2 Getting Support and More Information + +diff --git a/README b/README +index d2259d3..645393e 100644 +--- a/README ++++ b/README +@@ -170,7 +170,7 @@ Support and More Information + + Announcements, discussion archives, bug reporting forms and + more are kept at the LaTeX2HTML home at +-http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html. ++http://mirrors.ctan.org/support/latex2html/ + + *** this site has not been updated since November 1996. + Many of the links are still valid, leading to useful information. +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0002-Don-t-use-rgb.txt-from-pstoimg.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0002-Don-t-use-rgb.txt-from-pstoimg.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0002-Don-t-use-rgb.txt-from-pstoimg.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,29 @@ +From 297ca10bb4356c0e256ad502277c9bbd3b14cbcd Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 14:17:30 +0200 +Subject: [PATCH] Don't use rgb.txt from pstoimg 2 of Debian series 7 This + patch prevents pstoimg from using rgb.txt which can make + latex2html calls fail. Author: Atsuhito KOHDA + + +--- + pstoimg.pin | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/pstoimg.pin b/pstoimg.pin +index a9f0777..876f6cd 100755 +--- a/pstoimg.pin ++++ b/pstoimg.pin +@@ -1508,7 +1508,8 @@ sub crop_scale_etc { + $pnmtoimg .= ' -interlace'; + } + if($TRANSPARENT) { +- $trans_color = $TRANSPARENT_COLOR||'gray85'; ++ $trans_color = $TRANSPARENT_COLOR||'#d9d9d9'; # don't lookup rgb.txt ++ #$trans_color = $TRANSPARENT_COLOR||'gray85'; + $pnmtoimg .= ' -trans ' . L2hos->quote($trans_color); + } + } +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0003-Fix-borders-in-pstoimg.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0003-Fix-borders-in-pstoimg.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0003-Fix-borders-in-pstoimg.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,31 @@ +From 80ffac4475d1474c34203ddb165bd1049222fb86 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 14:49:33 +0200 +Subject: [PATCH] Fix borders in pstoimg 3 of Debian series 7 + +This patch fixes the borders of images in pstoimg. +The origin of this patch is actually unknown. Feel free to tell me and I'll +include it. +--- + pstoimg.pin | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/pstoimg.pin b/pstoimg.pin +index 876f6cd..c8bc47e 100755 +--- a/pstoimg.pin ++++ b/pstoimg.pin +@@ -1289,9 +1289,9 @@ sub crop_scale_etc { + my $edge = $1; + my $croparg = ''; + if($edge =~ /b/i) { +- $croparg = "-bot $PNMCROPOPT "; ++ $croparg = "-bot -sides $PNMCROPOPT "; + } elsif($edge =~ /[tlr]/i) { +- $croparg = "-$edge $PNMCROPOPT "; ++ $croparg = "-$edge -sides $PNMCROPOPT "; + } elsif($edge =~ /s/i) { + #RRM: shave at most 1-2 rows of white from the bottom + #if @pipes@ +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0004-Fix-file-pattern-in-pstoimg.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0004-Fix-file-pattern-in-pstoimg.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0004-Fix-file-pattern-in-pstoimg.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,28 @@ +From d1a3df3dd7a0d3d33a335caa9f96e6f70b639d91 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 14:52:49 +0200 +Subject: [PATCH] Fix file pattern in pstoimg 4 of Debian series 7 + +This patch fixes the file pattern in pstoimg to collect the files created by +ghostscript. +Author: Holger Ruckdeschel +--- + pstoimg.pin | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/pstoimg.pin b/pstoimg.pin +index c8bc47e..c5de1a4 100755 +--- a/pstoimg.pin ++++ b/pstoimg.pin +@@ -1006,7 +1006,7 @@ sub pstoimg { + print qq{$prompt: Error: Could not open directory "$pnmdir": $!\n}; + return 0; + } +- my @list = grep(/^\d+_\w*\./,readdir(DIR)); ++ my @list = grep(/^\d+_${pnmbase}\.pnm/,readdir(DIR)); + closedir(DIR); + if(@list) { + my $i; +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0005-Fix-several-typos.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0005-Fix-several-typos.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0005-Fix-several-typos.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,43 @@ +From 30c715466d513d366ae131e16c0c95c18f8aac5c Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 14:55:39 +0200 +Subject: [PATCH] Fix several typos 5 of Debian series 7 + +This patch fixes several typos in the manual of pstoimg +Author: Roland Stigge +--- + pstoimg.pin | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/pstoimg.pin b/pstoimg.pin +index c5de1a4..b9e5014 100755 +--- a/pstoimg.pin ++++ b/pstoimg.pin +@@ -446,13 +446,13 @@ banner() unless($opt{quiet}); + + Use Ghostscript's anti-aliasing feature for rendering "softer" images. + This applies to lines and edges of polygonal and oval or circular shapes. +-Only valid if Ghostscipt 4.03 or higher is installed. ++Only valid if Ghostscript 4.03 or higher is installed. + + =item B<-aaliastext> + + Use Ghostscript's anti-aliasing feature for "smoother" font characters, + without the jagged edges. Similar to B<-antialias> for graphic components. +-Only valid if Ghostscipt 4.03 or higher is installed. ++Only valid if Ghostscript 4.03 or higher is installed. + + =item B<-center> I + +@@ -906,7 +906,7 @@ my $Brx = '-?\d+(?:\.\d*|)'; + =head1 DESCRIPTION + + B iterates over the given input files and runs them through +-Ghostscipt. The resulting pnm (portable anymap files) are processed ++Ghostscript. The resulting pnm (portable anymap files) are processed + with different Netpbm tools (cropping, color mapping, aligning, ...) + and finally converted into (currently) either GIF or PNG format. The + bitmaps can now be included e.g. in WWW pages. +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0006-Use-HTML-4.0-by-default.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0006-Use-HTML-4.0-by-default.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0006-Use-HTML-4.0-by-default.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,27 @@ +From 37c9a54b8456795e163786949f01975a9328cadf Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 14:58:16 +0200 +Subject: [PATCH] Use HTML 4.0 by default 6 of Debian series 7 + +This patch sets HTML 4.0 by default. +Author: Adrian Bunk +--- + l2hconf.pin | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/l2hconf.pin b/l2hconf.pin +index 4bfd5eb..24c6a4e 100644 +--- a/l2hconf.pin ++++ b/l2hconf.pin +@@ -590,7 +590,7 @@ $DEBUG = 0; + # -html_version + # The default HTML version to be produced + # +-$HTML_VERSION = '3.2'; ++$HTML_VERSION = '4.0'; + + + # -no_math +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0007-Fixes-bad-perl-in-l2hconf.pin.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0007-Fixes-bad-perl-in-l2hconf.pin.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0007-Fixes-bad-perl-in-l2hconf.pin.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,23 @@ +From 7ce182625be24a2fb3339dbe9a8660d4be1fe590 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:00:44 +0200 +Subject: [PATCH] Fixes bad perl in l2hconf.pin 7 of Debian series 7 + +This patch removes the first line "#!/perl" from l2hconf.pin +Author: Roland Stigge +--- + l2hconf.pin | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/l2hconf.pin b/l2hconf.pin +index 24c6a4e..66b4286 100644 +--- a/l2hconf.pin ++++ b/l2hconf.pin +@@ -1,4 +1,3 @@ +-#!/perl + # LaTeX2HTML l2hconf.pm + # $Id: l2hconf.pin,v 1.17 2002/06/15 22:46:36 RRM Exp $ + +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0008-latex2html-fix-authoraddress.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0008-latex2html-fix-authoraddress.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0008-latex2html-fix-authoraddress.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,29 @@ +From b2f92bfc270ceafe807f05dfb9a4381097b97786 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:04:30 +0200 +Subject: [PATCH] latex2html fix authoraddress 8 of Debian series 7 + +Remove Nikos Drakos' address from documentation +In some early Debian revision already, Nikos Drakos' old web address (_not_ +the name) was removed from the documentation in favour of Ross Moore's one. +Author: Roland Stigge +--- + latex2html.pin | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/latex2html.pin b/latex2html.pin +index 58f1b76..2f56d6b 100644 +--- a/latex2html.pin ++++ b/latex2html.pin +@@ -14071,7 +14071,7 @@ sub default_textohtmlinfopage { + , "LaTeX2HTML" + , " translator Version $TEX2HTMLVERSION\n" + , "

Copyright © 1993, 1994, 1995, 1996,\n" +- , "Nikos Drakos, \n" ++ , "Nikos Drakos, \n" + , "Computer Based Learning Unit, University of Leeds.\n" + , "
Copyright © 1997, 1998, 1999,\n" + , "Ross Moore, \n" +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0009-override-dvips-dot-in-filename-problem.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0009-override-dvips-dot-in-filename-problem.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0009-override-dvips-dot-in-filename-problem.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,39 @@ +From 89a193af3e2af87b753707a6d567dd2fbb382025 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:08:01 +0200 +Subject: [PATCH] override-dvips-dot-in-filename-problem 9 of Debian series 7 + +Don't complain about multiple dots in filenames +This patch prevents latex2html from complaining about multiple dots in +filenames. Earlier versions of dvips were not able to handle this but the +version on OpenCSW is assumed to be safe. +Author: "Fred L. Drake, Jr." +--- + latex2html.pin | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/latex2html.pin b/latex2html.pin +index 2f56d6b..f89b5bb 100644 +--- a/latex2html.pin ++++ b/latex2html.pin +@@ -524,7 +524,7 @@ $TMP_PREFIX = "l2h" unless ($TMP_PREFIX); + # This can be set to 1 when using a version of dvips that is safe + # from the "dot-in-name" bug. + # _TODO_ this should be determined by configure +-#$DVIPS_SAFE = 1; ++$DVIPS_SAFE = 1; + + $CHARSET = $charset || 'iso-8859-1'; + +@@ -671,7 +671,7 @@ sub set_if_false { + + sub check_for_dots { + local($file) = @_; +- if ($file =~ /\.[^.]*\./) { ++ if ($file =~ /\.[^.]*\./ && !$DVIPS_SAFE) { + die "\n\n\n *** Fatal Error --- but easy to fix ***\n" + . "\nCannot have '.' in file-name prefix, else dvips fails on images" + . "\nChange the name from $file and try again.\n\n"; +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0010-manual-fix-address.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0010-manual-fix-address.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0010-manual-fix-address.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,26 @@ +From 90d20a630cebe125ed55fbb6fe3ca4e1962e7611 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:11:39 +0200 +Subject: [PATCH] manual fix address 10 of Debian series 7 + +--- + docs/manual.tex | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/docs/manual.tex b/docs/manual.tex +index 5207fdc..7850c7c 100644 +--- a/docs/manual.tex ++++ b/docs/manual.tex +@@ -168,8 +168,7 @@ + % + \Glossary{latex2html}{\LaTeX2HTML}{} + \title{The \LaTeX2HTML{} Translator} +-\author{Nikos Drakos} +-\address{Computer Based Learning Unit\\University of Leeds.} ++\author{Nikos Drakos\\Computer Based Learning\\Unit University of Leeds} + \date{\today} + \index{Computer~Based~Learning~Unit!University of Leeds}% + \maketitle +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0011-Makefiles-fixes.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0011-Makefiles-fixes.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0011-Makefiles-fixes.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,176 @@ +From 1188c908e6c2be0bf1cc218be8d2dd3bdc55c203 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:26:42 +0200 +Subject: [PATCH] Makefiles fixes 11 of Debian series 7 + +This patch includes several fixes and adjustments to the Makefiles. +Author: Roland Stigge +--- + docs/Makefile | 41 +++++++++++++++++++++-------------------- + docs/Makefile.frames | 9 +++++---- + 2 files changed, 26 insertions(+), 24 deletions(-) + +diff --git a/docs/Makefile b/docs/Makefile +index de5d63e..53f9969 100644 +--- a/docs/Makefile ++++ b/docs/Makefile +@@ -21,8 +21,8 @@ LATEX = latex + MAKEINDEX = makeindex + BIBTEX = bibtex + +-# L2H = latex2html -no_math -html_version 3.2,math -scalable_fonts +-L2H = latex2html -no_math -html_version 3.2,math ++# L2H = latex2html -no_math -html_version 3.2,math -scalable_fonts ++L2H = latex2html -no_math -html_version 4.0,math + + + # +@@ -30,7 +30,7 @@ L2H = latex2html -no_math -html_version 3.2,math + # to set path-variables before calling other scripts. + # For example... + # +-TEXMF = /usr/local/texmf ++TEXMF = /usr/lib/texmf + + LATEXINPUTDIR = $(TEXMF)/tex/latex// + PKFONTDIR = $(TEXMF)/fonts/public//pk/cx// +@@ -83,50 +83,50 @@ COMMON = -external_file $(TOP) -dir $(TOP) -info 0 -short_index \ + -biblio $(REFNODE) -no_auto_link -no_footnode \ + -split 6 -link 6 -up_url $(TOP).html -up_title $(TOPTITLE) + +-LTOP = -short_index -split 4 -link 5\ ++LTOP = -short_index -split 4 -link 5 -no_auto_link\ + -t $(TOPTITLE) $(TOP).tex + + LSEC1 = $(COMMON) -prefix O \ + -prev_url $(TOP).html -prev_title $(TOPTITLE) \ +- -down_url $(SUP).html -down_title $(S2TITLE) $(OVW).tex ++ -down_url $(SUP).html -down_title $(S2TITLE) $(OVW).tex + + LSEC2 = $(COMMON) -prefix S -debug \ + -prev_url $(OVW).html -prev_title $(S1TITLE) \ +- -down_url $(ENV).html -down_title $(S3TITLE) $(SUP).tex ++ -down_url $(ENV).html -down_title $(S3TITLE) $(SUP).tex + +-# -down_url $(MAN).html -down_title $(S3TITLE) $(SUP).tex ++# -down_url $(MAN).html -down_title $(S3TITLE) $(SUP).tex + + LSEC3 = $(COMMON) -prefix E \ + -prev_url ../$(TOP)/$(SUP).html -prev_title $(S2TITLE) \ +- -down_url ../$(TOP)/$(HYP).html -down_title $(S4TITLE) $(ENV).tex ++ -down_url ../$(TOP)/$(HYP).html -down_title $(S4TITLE) $(ENV).tex + +-# -down_url ../$(TOP)/$(HYP).html -down_title $(S4TITLE) $(MAN).tex ++# -down_url ../$(TOP)/$(HYP).html -down_title $(S4TITLE) $(MAN).tex + + LSEC4 = $(COMMON) -prefix H \ + -prev_url ../$(TOP)/$(ENV).html -prev_title $(S3TITLE) \ +- -down_url ../$(TOP)/$(MAN).html -down_title $(S5TITLE) $(HYP).tex ++ -down_url ../$(TOP)/$(MAN).html -down_title $(S5TITLE) $(HYP).tex + + # -prev_url ../$(TOP)/$(MAN).html -prev_title $(S3TITLE) \ +-# -down_url ../$(TOP)/$(FEA).html -down_title $(S5TITLE) $(HYP).tex ++# -down_url ../$(TOP)/$(FEA).html -down_title $(S5TITLE) $(HYP).tex + + LSEC5 = $(COMMON) -prefix M \ + -prev_url ../$(TOP)/$(HYP).html -prev_title $(S4TITLE) \ +- -down_url ../$(TOP)/$(PRO).html -down_title $(S6TITLE) $(MAN).tex ++ -down_url ../$(TOP)/$(PRO).html -down_title $(S6TITLE) $(MAN).tex + +-# -down_url ../$(TOP)/$(PRO).html -down_title $(S6TITLE) $(FEA).tex ++# -down_url ../$(TOP)/$(PRO).html -down_title $(S6TITLE) $(FEA).tex + + LSEC6 = $(COMMON) -prefix P \ + -prev_url ../$(TOP)/$(MAN).html -prev_title $(S5TITLE) \ +- -down_url ../$(TOP)/$(REFNODE).html -down_title $(BIBLIO) $(PRO).tex ++ -down_url ../$(TOP)/$(REFNODE).html -down_title $(BIBLIO) $(PRO).tex + + # -prev_url ../$(TOP)/$(FEA).html -prev_title $(S5TITLE) \ + +-# -down_url ../$(TOP)/$(CHGNODE).html -down_title $(CHGTITLE) $(PRO).tex ++# -down_url ../$(TOP)/$(CHGNODE).html -down_title $(CHGTITLE) $(PRO).tex + + + LSEC7 = $(COMMON) -prefix C -dir $(TOP) -info 0 \ + -prev_url ../$(TOP)/$(PRO).html -prev_title $(S6TITLE) \ +- -down_url ../$(TOP)/$(GLOSSNODE).html -down_title $(GLOSS) $(CHA).tex ++ -down_url ../$(TOP)/$(GLOSSNODE).html -down_title $(GLOSS) $(CHA).tex + + + # +@@ -202,12 +202,13 @@ images: + $(L2H) -short_index -images_only manual.tex + + htmlclean: +- rm -f manual/.??* manual/*TMP* ++ rm -f manual/.??* manual/*TMP* + + clean: + rm -f manual.dvi manual.ps manual.glo manual.log manual.aux \ + manual.ilg manual.lof manual.lot manual.cb manual.idx \ +- manual.toc ++ manual.toc manual.gls ++ rm -f *.ptr + + + # +@@ -264,7 +265,7 @@ $(TOP)/$(SUP).html: $(SUP).tex $(TOP)/$(INT) \ + $(SUP): + $(L2H) $(LSEC2) + +-S.stamp: $(SUP).tex $(TOP)/$(INT) ++S.stamp: $(SUP).tex $(TOP)/$(INT) + $(L2H) $(LSEC2) + touch $@ + +@@ -279,7 +280,7 @@ $(TOP)/$(MAN).html: $(MAN).tex $(TOP)/$(INT) $(TOP)/H$(INT) $(TOP)/E$(INT) + $(MAN): + $(L2H) $(LSEC5) + +-M.stamp: $(MAN).tex $(TOP)/$(INT) ++M.stamp: $(MAN).tex $(TOP)/$(INT) + $(L2H) $(LSEC5) + touch $@ + +diff --git a/docs/Makefile.frames b/docs/Makefile.frames +index 1f13c75..f95f9d3 100644 +--- a/docs/Makefile.frames ++++ b/docs/Makefile.frames +@@ -26,7 +26,7 @@ LATEX = latex + MAKEINDEX = makeindex + BIBTEX = bibtex + +-L2H = latex2html -no_math -html_version 3.2,math -accent_images textrm -toc_depth 6 ++L2H = latex2html -no_math -html_version 4.0,math -accent_images textrm -toc_depth 6 + #L2H = l2ng -no_math -html_version 4.0,math -scalable_fonts + + L2Hframes = latex2html -no_math -html_version 4.0,math,frame -accent_images textrm -scalable_fonts +@@ -147,13 +147,13 @@ LSEC7 = $(COMMON) -prefix C -dir $(TOP) -info 0 \ + manual.ps: manual.cb manual.dvi + $(DVIPS) manual.dvi -o $@ + +-manual.aux manual.cb: ++manual.aux manual.cb: \ + manual.tex credits.tex licence.tex overview.tex \ + support.tex userman.tex hypextra.tex features.tex \ + problems.tex l2hfiles.dat manhtml.tex l2hman.sty + $(LATEX) manual.tex + +-manual.glo manual.idx: ++manual.glo manual.idx: \ + manual.tex credits.tex licence.tex overview.tex \ + support.tex userman.tex hypextra.tex features.tex \ + problems.tex l2hfiles.dat manhtml.tex l2hman.sty +@@ -234,7 +234,8 @@ htmlclean: + clean: + rm -f manual.dvi manual.ps manual.glo manual.log manual.aux \ + manual.ilg manual.lof manual.lot manual.cb manual.idx \ +- manual.toc ++ manual.toc manual.gls ++ rm -f *.ptr + + + # +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0012-Fix-images-types.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0012-Fix-images-types.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0012-Fix-images-types.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,27 @@ +From a68c3f881db4c17e4c7649371a9ade9240a3186f Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:41:50 +0200 +Subject: [PATCH] Fix images types 12 of Debian series 7 + +By default, IMAGE_TYPES is empty. This patch sets the Debian default + to "png gif". +Author: Roland Stigge +--- + docs/.latex2html-init | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/docs/.latex2html-init b/docs/.latex2html-init +index d5910d2..f90ccf1 100644 +--- a/docs/.latex2html-init ++++ b/docs/.latex2html-init +@@ -6,5 +6,7 @@ $CONTENTS_WIDTH = 250; + $HTML_VALIDATE = ''; + $LOCAL_ICONS = 1; + ++ at IMAGE_TYPES = qw(png gif); ++$IMAGE_TYPE = $IMAGE_TYPES[0]; + + 1; +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0013-Fix-romanian.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0013-Fix-romanian.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0013-Fix-romanian.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,65 @@ +From 9e718a74fbe0fb6d0ebc7ffb5d99ea337f0a9bcd Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:49:01 +0200 +Subject: [PATCH] Fix romanian 13 of Debian series 7 + +This patch fixes several issues in the Romanian version of latex2html. +Author: Roland Stigge +--- + styles/romanian.perl | 14 +++++++------- + 1 file changed, 7 insertions(+), 7 deletions(-) + +diff --git a/styles/romanian.perl b/styles/romanian.perl +index 28ed5bf..e9ed702 100644 +--- a/styles/romanian.perl ++++ b/styles/romanian.perl +@@ -16,23 +16,23 @@ package main; + + if (defined &addto_languages) { &addto_languages('romanian') }; + +-&do_require_extension ('latin2'); ++&do_require_extension ('latin10'); + + sub romanian_titles { + $toc_title = "Cuprins"; +- $lof_title = "Listä de figuri"; +- $lot_title = "Listä de tabele"; ++ $lof_title = "Listg de figuri"; ++ $lot_title = "Listg de tabele"; + $idx_title = "Glosar"; + $ref_title = "Bibliografie"; + $bib_title = "Bibliografie"; + $abs_title = "Rezumat"; + $app_title = "Anexa"; +- $pre_title = "Prefaţä"; ++ $pre_title = "PrefaB;g"; + ## $foot_title = ""; + ## $thm_title = ""; + $fig_name = "Figura"; + $tab_name = "Tabela"; +- $prf_name = "Demonstraţie"; ++ $prf_name = "DemonstraB;ie"; + $page_name = "Pagina"; + # Sectioning-level titles + $part_name = "Partea"; +@@ -52,7 +52,7 @@ sub romanian_titles { + ## $prev_name = ""; + ## $group_name = ""; + # mail fields +- $encl_name = "Anexä"; ++ $encl_name = "Anexg"; + $headto_name = "Pentru"; + $cc_name = "Copie"; + +@@ -75,7 +75,7 @@ sub romanian_today { + &romanian_titles; + $default_language = 'romanian'; + $TITLES_LANGUAGE = 'romanian'; +-$romanian_encoding = 'iso-8859-2'; ++$romanian_encoding = 'is-8859-16'; + + # $Log: romanian.perl,v $ + # Revision 1.1 1998/08/25 01:59:07 RRM +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0014-Fix-mathend-mark.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0014-Fix-mathend-mark.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0014-Fix-mathend-mark.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,28 @@ +From 68b587149e2fe0d6f75b1ff7882345b833a25bb9 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 15:52:49 +0200 +Subject: [PATCH] Fix mathend mark 14 of Debian series 7 + +This patch fixes math.pl to default to empty $mathend_mark to prevent +mathend000# in documents. +Author: Arwin Vosselman +--- + versions/math.pl | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/versions/math.pl b/versions/math.pl +index 6010956..37eadec 100644 +--- a/versions/math.pl ++++ b/versions/math.pl +@@ -39,7 +39,7 @@ if ($HTML_OPTIONS =~ /math/) { + + package main; + +-$mathend_mark = "\n${verbatim_mark}mathend000#"; ++$mathend_mark = ""; + $keepcomments_rx = "\\s*(picture|makeimage|xy|diagram|mathend)[*]?" + unless ($keepcomments_rx =~ /mathend/); + +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0015-Fix-pdfoutput.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0015-Fix-pdfoutput.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0015-Fix-pdfoutput.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,31 @@ +From 77735611cdb772c8ed6fcb836e238c5cd091fa7f Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 16:03:15 +0200 +Subject: [PATCH] Fix pdfoutput 15 of Debian series 7 + +This patch fixes pdf output in latex2html. +Author: Giuseppe Ghibo +--- + texinputs/html.sty | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/texinputs/html.sty b/texinputs/html.sty +index 2f4c413..1b791a5 100644 +--- a/texinputs/html.sty ++++ b/texinputs/html.sty +@@ -36,7 +36,11 @@ + \ifx\pdfoutput\relax \let\pdfunknown\relax + \RequirePackage{hyperref}\let\html at new=\renewcommand + \else +- \RequirePackage{hyperref}\let\html at new=\newcommand ++ \ifcase\pdfoutput ++ \let\pdfunknown\relax \let\html at new=\newcommand ++ \else ++ \RequirePackage[pdftex]{hyperref}\let\html at new=\newcommand ++ \fi + \fi + \fi + \else +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0016-Fix-gs-stderr.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0016-Fix-gs-stderr.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0016-Fix-gs-stderr.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,30 @@ +From aa765f31edac52a6425192a8f2f6c70999e1e403 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 16:10:35 +0200 +Subject: [PATCH] Fix gs stderr + +16 of Debian series 7 + +This patch fixes the gs version detection in the latex2html perl configuration + since gs outputs "gs -h" to stderr. +Author: Giuseppe Ghibo +--- + config/config.pl | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/config/config.pl b/config/config.pl +index a50b56b..1b243d7 100755 +--- a/config/config.pl ++++ b/config/config.pl +@@ -1043,7 +1043,7 @@ if($opt{'have_pstoimg'}) { + my $gs_version; + + my $flag = 0; +- unless(open(GS,"$gs -h |")) { ++ unless(open(GS,"$gs -h 2>&1|")) { + $opt{'have_pstoimg'} = 0; + logit("Error: could not execute $gs\n"); + &warn_no_images(); +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0017-Pstoimg-match-gray.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0017-Pstoimg-match-gray.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0017-Pstoimg-match-gray.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,28 @@ +From abf2d2b9f608bd2ac9abccd4d58c349dbb43e1f2 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 16:17:20 +0200 +Subject: [PATCH] Pstoimg match gray + +This patch fixes gray background detection on dvips via a regexp adjustment in +pstoimg.pin +Author: Diab Jerius +--- + pstoimg.pin | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/pstoimg.pin b/pstoimg.pin +index b9e5014..b199f51 100755 +--- a/pstoimg.pin ++++ b/pstoimg.pin +@@ -1137,7 +1137,7 @@ sub ps2pnm { + } + my $had_nonwhite; + if($opt{white}) { +- $had_nonwhite = ($ps =~ s/(\n\d+ \d+ bop gsave) \d*\.\d+ (TeXcolorgray clippath fill grestore)/$1 1 $2/s); ++ $had_nonwhite = ($ps =~ s/(\d+ \d+ bop gsave) \d*\.\d+ (TeXcolorgray clippath fill grestore)/$1 1 $2/s); + } + $ps_changed = $had_papersize || $had_nonwhite; + if($ps_changed) { +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0018-Fix-spaces-in-filenames.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0018-Fix-spaces-in-filenames.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0018-Fix-spaces-in-filenames.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,34 @@ +From 955dd8b06dc0a6d363f5a051916e736dc802786f Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 16:22:10 +0200 +Subject: [PATCH] Fix spaces in filenames + +This patch adds support for spaces in filenames +Author: Mazen NEIFER +--- + latex2html.pin | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/latex2html.pin b/latex2html.pin +index f89b5bb..6622723 100644 +--- a/latex2html.pin ++++ b/latex2html.pin +@@ -829,11 +829,11 @@ sub driver { + # die "File $TEXEXPAND does not exist or is not executable\n" + # unless (-x $TEXEXPAND); + L2hos->syswait("$TEXEXPAND $dbg -auto_exclude $unseg" +- . "-save_styles $DESTDIR$dd$TMP_${dd}styles " +- . ($TEXINPUTS ? "-texinputs $TEXINPUTS " : '' ) ++ . "-save_styles \"$DESTDIR$dd$TMP_${dd}styles\" " ++ . ($TEXINPUTS ? "-texinputs \"$TEXINPUTS\" " : '' ) + . (($VERBOSITY >2) ? "-verbose " : '' ) +- . "-out $DESTDIR$dd$TMP_$dd$FILE " +- . "$texfilepath$dd$FILE.$EXT") ++ . "-out \"$DESTDIR$dd$TMP_$dd$FILE\" " ++ . "\"$texfilepath$dd$FILE.$EXT\"") + && die " texexpand failed: $!\n"; + print STDOUT "\n *** `texexpand' done ***\n" if ($VERBOSITY > 1); + +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0019-Match-multiline.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0019-Match-multiline.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0019-Match-multiline.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,1295 @@ +From 114592c6f1d4b38e94f2075c54800aa3a5f9172c Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 16:46:47 +0200 +Subject: [PATCH] Match multiline 19 of Debian series 7 + +This patch replaces the $* flag with the matching option "m" for multiline +matching since the former one isn't supported by latest perl. +Author: Roland Stigge +--- + IndicTeX-HTML/itrans.perl | 8 +++---- + latex2html.pin | 16 +++++--------- + styles/alltt.perl | 10 ++++----- + styles/amsmath.perl | 1 - + styles/amstex.perl | 1 - + styles/changebar.perl | 8 +++---- + styles/color.perl | 6 ------ + styles/html.perl | 2 +- + styles/htmllist.perl | 8 +++---- + styles/makeidx.perl | 2 +- + styles/more_amsmath.perl | 11 +++++----- + styles/natbib.perl | 4 +--- + styles/webtex.perl | 16 +++++++------- + versions/html3_1.pl | 50 ++++++++++++++++++------------------------- + versions/html3_2.pl | 34 +++++++++++------------------ + versions/html4_0.pl | 34 +++++++++++------------------ + versions/html4_01.pl | 34 +++++++++++------------------ + versions/html4_1.pl | 34 +++++++++++------------------ + versions/math.pl | 52 +++++++++++++++++++-------------------------- + 19 files changed, 128 insertions(+), 203 deletions(-) + +diff --git a/IndicTeX-HTML/itrans.perl b/IndicTeX-HTML/itrans.perl +index 7c99cb1..dbb618d 100644 +--- a/IndicTeX-HTML/itrans.perl ++++ b/IndicTeX-HTML/itrans.perl +@@ -405,13 +405,13 @@ sub do_env_pre_itrans { + } else { + if ($this_par =~ /^\\/) { + #catch 'paragraphs' that are just TeX macros +- local($savedRS) = $/; $/ = ''; $* = 1; +- if ($this_par =~ /^(\s*\\\w+)+$/s ) { ++ local($savedRS) = $/; $/ = ''; ++ if ($this_par =~ /^(\s*\\\w+)+$/sm ) { + # save them for the next paragraph + $saved_par .= $this_par."\n\n"; +- $/ = $savedRS; $* = 0; next; ++ $/ = $savedRS; next; + } +- $/ = $savedRS; $* = 0; ++ $/ = $savedRS; + } + if ($saved_par) { + #include any saved macros +diff --git a/latex2html.pin b/latex2html.pin +index 6622723..fdf68c2 100644 +--- a/latex2html.pin ++++ b/latex2html.pin +@@ -10618,19 +10618,17 @@ sub do_rightquotes { (($HTML_VERSION < 5)? '”' : ';SPMrdquo;') } + sub do_cmd_parbox { + local($_) = @_; + local($args, $contents, $dum, $pat); +- $* = 1; # Multiline matching ON + ($dum,$pat) = &get_next_optional_argument; # discard this + ($dum,$pat) = &get_next_optional_argument; # discard this + ($dum,$pat) = &get_next_optional_argument; # discard this + $args .= $pat if ($pat); + $pat = &missing_braces unless ( +- (s/$next_pair_pr_rx/$pat=$2;''/eo) +- ||(s/$next_pair_rx/$pat=$2;''/eo)); ++ (s/$next_pair_pr_rx/$pat=$2;''/eom) ++ ||(s/$next_pair_rx/$pat=$2;''/eom)); + $args .= "{".$`.$pat."}"; + $contents = &missing_braces unless ( +- (s/$next_pair_pr_rx/$contents=$2;''/eo) +- ||(s/$next_pair_rx/$contents=$2;''/eo)); +- $* = 0; # Multiline matching OFF ++ (s/$next_pair_pr_rx/$contents=$2;''/eom) ++ ||(s/$next_pair_rx/$contents=$2;''/eom)); + $args .= "{".$`.$contents."}"; + if ($NO_PARBOX_IMAGES) { + $contents = join ('', &do_cmd_par(), $contents, '

' ); +@@ -11445,7 +11443,6 @@ sub list_helper { + # $/ = $savedRS; + # + +- $* = 1; # Multiline matching ON + if (($tag =~ /DL/)&&$labels) { + local($label,$aft,$br_id); + s/\\item\b[\s\r]*([^\[])/do { +@@ -11454,9 +11451,8 @@ sub list_helper { + $label = &translate_environments( + "$O$br_id$C$label$O$br_id$C"); + join('',"\\item\[" , $label, "\]$aft" ); +- }/eg; ++ }/egm; + } +- $* = 0; # Multiline matching OFF + + # This deals with \item[xxx] ... + if ($tag =~ /DL/) { +@@ -13173,9 +13169,7 @@ sub wrap_raw_arg_cmds { + my $padding = ($after =~ /^[a-zA-Z]/s)? ($cmd =~ /\W$/ ? '':' '):''; + + if ($raw_arg_cmds{$cmd} && defined &$wrapper) { +- $* = 1; + ($wrap, $_) = &$wrapper("\\$cmd$star", $padding . $after); +- $* = 0; + # ...but don't leave an unwanted space at the beginning + $_ =~ s/^ //s if($padding && $wrap !~ /\w$/m + && (length($_) == length($after)+1) ); +diff --git a/styles/alltt.perl b/styles/alltt.perl +index 9884f78..ade8b1b 100644 +--- a/styles/alltt.perl ++++ b/styles/alltt.perl +@@ -50,15 +50,15 @@ sub preprocess_alltt { + local ($before, $after, $alltt, $alltt_env); + local ($alltt_begin) = ""; + local ($alltt_end) = ""; +- local($saveRS) = $/; $*=1;undef $/; ++ local($saveRS) = $/; undef $/; + while (/\\begin\s*{($alltt_rx)}([ \t]*\n)?/m) { + $alltt_env = $1; + $alltt = ""; + ($before, $after) = ($`, $'); +- if ($after =~ /\\end\s*{($alltt_rx)}/s) { ++ if ($after =~ /\\end\s*{($alltt_rx)}/sm) { + ($alltt, $after) = ($`, $'); + local(@check) = split("\n",$before); +- local($lastline) = pop @check unless ($before =~ s/\n$//s); ++ local($lastline) = pop @check unless ($before =~ s/\n$//sm); + $alltt = &alltt_helper($alltt) # shield special chars + unless ($lastline =~ /(^|[^\\])(\\\\)*%.*$/m); # unless commented out + undef @check; undef $lastline; +@@ -67,8 +67,8 @@ sub preprocess_alltt { + , $alltt, $alltt_end, "{$alltt_env}", $after); + } + $/ = $saveRS; +- s/$alltt_begin\{([^\}]*)\}/\\begin{$1}/gos; +- s/$alltt_end\{([^\}]*)\}/\\end{$1}/gos; ++ s/$alltt_begin\{([^\}]*)\}/\\begin{$1}/gosm; ++ s/$alltt_end\{([^\}]*)\}/\\end{$1}/gosm; + } + + sub alltt_helper { +diff --git a/styles/amsmath.perl b/styles/amsmath.perl +index 063a6db..ff64e6e 100644 +--- a/styles/amsmath.perl ++++ b/styles/amsmath.perl +@@ -458,7 +458,6 @@ sub get_eqn_number { + , $EQNO_END); + } + } else { $tag = ';SPMnbsp;' } +- $*=0; + if ($labels) { + $labels =~ s/$anchor_mark/$tag/o; + ($labels , $scan); +diff --git a/styles/amstex.perl b/styles/amstex.perl +index b9dc79b..361f08a 100644 +--- a/styles/amstex.perl ++++ b/styles/amstex.perl +@@ -404,7 +404,6 @@ sub get_eqn_number { + , $EQNO_END); + } + } else { $tag = ';SPMnbsp;' } +- $*=0; + if ($labels) { + $labels =~ s/$anchor_mark/$tag/o; + ($labels , $scan); +diff --git a/styles/changebar.perl b/styles/changebar.perl +index e85da46..d837ee2 100644 +--- a/styles/changebar.perl ++++ b/styles/changebar.perl +@@ -126,11 +126,11 @@ sub do_env_changebar { + $_ = &translate_environments($_); + + # multiple ends of change-bars have icons on the same line. +- $* = 1; local($saveRS) = $/; undef $/; ++ local($saveRS) = $/; undef $/; + s/(($endstr[^<]*<\/$cbstyle>)\s*
(<<\d+>>($cbversion_rx)?)?\s*$)/ +- if ($`) {$1} else { $endcb = 0; $2.$3 }/eg; +- s/($cbend_rx\s*$)/ if ($`) { $1 } else { $endcb = 0; $2.$4 }/eg; +- $* = 0; $/ = $saveRS; ++ if ($`) {$1} else { $endcb = 0; $2.$3 }/egm; ++ s/($cbend_rx\s*$)/ if ($`) { $1 } else { $endcb = 0; $2.$4 }/egm; ++ $/ = $saveRS; + + + if ($this_version) { +diff --git a/styles/color.perl b/styles/color.perl +index e326bc3..43b5e46 100644 +--- a/styles/color.perl ++++ b/styles/color.perl +@@ -145,7 +145,6 @@ $BKGSTRING = "bgcolor"; + sub read_rgb_colors { + local($base_file) = @_; + local($file) = $base_file; +- local($prev) = $*; + local($r,$g,$b,$name,$dir); + foreach $dir (split(/$envkey/,$LATEX2HTMLSTYLES)) { + $file = "$dir$dd$base_file" +@@ -154,7 +153,6 @@ sub read_rgb_colors { + if (-f $file) { + if (open(COLORFILE,"<$file")) { + print STDOUT "\n(reading colors from $file" if $DEBUG; +- $* = 0; # Multiline matching OFF + while () { + s/^\s*(\d+)\s+(\d+)\s+(\d+)\s+(\w+(\s\w+)*)\s*/ + ($r,$g,$b,$name)=($1,$2,$3,$4); +@@ -170,14 +168,12 @@ sub read_rgb_colors { + } + } + } +- $* = $prev; # Restore Multiline matching + $_[0]; + } + + sub read_cmyk_colors { + local($base_file) = @_; + local($file) = $base_file; +- local($prev) = $*; + local($c,$m,$y,$k,$name,$dir, at colors); + local($num_rx) = "(\\d|\\d\\.\\d*)"; + foreach $dir (split(/$envkey/,$LATEX2HTMLSTYLES)) { +@@ -187,7 +183,6 @@ sub read_cmyk_colors { + if (-f $file) { + if (open(COLORFILE,"<$file")) { + print STDOUT "\n(reading colors from $file"; +- $* = 0; # Multiline matching OFF + @colors = (); + foreach (@colors) { + next if (/^\s*$/); +@@ -211,7 +206,6 @@ sub read_cmyk_colors { + } + } + } +- $* = $prev; # Restore Multiline matching + $_[0]; + } + +diff --git a/styles/html.perl b/styles/html.perl +index 7968e1d..367f44b 100644 +--- a/styles/html.perl ++++ b/styles/html.perl +@@ -236,7 +236,7 @@ sub do_cmd_htmladdnormallink{ + $url = &missing_braces unless + ((s/$next_pair_pr_rx/$url = $2; ''/eo) + ||(s/$next_pair_rx/$url = $2; ''/eo)); +- $*=1; s/^\s+/\n/; $*=0; ++ s/^\s+/\n/m; + if ($name) { $href = &make_named_href($name,$url,$text) } + else { $href = &make_href($url,$text) } + print "\nHREF:$href" if ($VERBOSITY > 3); +diff --git a/styles/htmllist.perl b/styles/htmllist.perl +index c356d6b..0b0a875 100644 +--- a/styles/htmllist.perl ++++ b/styles/htmllist.perl +@@ -96,7 +96,6 @@ sub do_env_htmllist{ + local($imagemark,$mark,$item_len,$desc_len,$mark_len,$mark_size); + $imagemark = &set_htmllist_marker($bullet) if ($bullet); + +- $* = 1; + local($Maxlength) = 99999; + local($i, at items_done); + print "["; +@@ -114,8 +113,8 @@ sub do_env_htmllist{ + $_ = $&.$'; + push(@items_done,&translate_commands($`)); + $mark = &missing_braces unless ( +- (s/\\htmlitemmark$any_next_pair_pr_rx/$mark=$2;''/eo) +- ||(s/\\htmlitemmark$any_next_pair_rx/$mark=$2;''/eo)); ++ (s/\\htmlitemmark$any_next_pair_pr_rx/$mark=$2;''/eom) ++ ||(s/\\htmlitemmark$any_next_pair_rx/$mark=$2;''/eom)); + $imagemark = &set_htmllist_marker($mark) if ($mark); + # $mark_size = $ImageSizeMarks{$mark}; + # $mark = "$ICONSERVER/$ImageMarks{$2}.gif" if ($ImageMarks{$2}); +@@ -136,7 +135,6 @@ sub do_env_htmllist{ + $_=$'; + } + } +- $* = 0; + $_ = join('', at items_done, $_); undef @items_done; + + #RRM: cannot have anything before the first
  • +@@ -148,7 +146,7 @@ sub do_env_htmllist{ + $preitems =~ s/]*)?>//g; + $preitems = "\n".$preitems if $preitems; + } +- $/ = $savedRS; $* = 0; # Multiline matching OFF ++ $/ = $savedRS; + + $_ = '
    '.$_ unless (/^\s* \001 + # @ -> \002 + # | -> \003 +- $* = 1; $str =~ s/\n\s*/ /g; $* = 0; # remove any newlines ++ $str =~ s/\n\s*/ /gm; # remove any newlines + # protect \001 occurring with images + $str =~ s/\001/\016/g; + +diff --git a/styles/more_amsmath.perl b/styles/more_amsmath.perl +index 8c8ae30..b760a01 100644 +--- a/styles/more_amsmath.perl ++++ b/styles/more_amsmath.perl +@@ -94,7 +94,6 @@ sub get_eqn_number { + , $EQNO_END); + } + } else { $tag = ';SPMnbsp;;SPMnbsp;;SPMnbsp;' } +- $*=0; + if ($labels) { + $labels =~ s/$anchor_mark/$tag/o; + ($labels , $scan); +@@ -285,7 +284,7 @@ sub process_env_equation { + } else { $return .= join('', $mspace , $ecell, $erow); } + } else { + $thismath = $_; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = &process_math_in_latex("indisplay",'','' + , $doimage.$thismath ) unless ($thismath eq '' ); +@@ -430,7 +429,7 @@ sub process_env_multline { + + # columns to be set using \displaystyle + $thismath = $_; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = &process_math_in_latex("indisplay",'','' + , $doimage.$thismath ) unless ($thismath eq '' ); +@@ -767,7 +766,7 @@ sub process_env_align{ + # alternating right/left aligned + $scell = (($scell eq $slcell)? $srcell : $slcell) if ($col_cnt); + $thismath = $_; $col_cnt++; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = &process_math_in_latex("indisplay",'','' + , $doimage.$thismath ) unless ($thismath eq '' ); +@@ -923,7 +922,7 @@ sub do_env_split { + @cols = split(/$mdlim/o); + # left column, set using \displaystyle + $thismath = shift(@cols); +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = &process_math_in_latex("indisplay",'','' + , $doimage.$thismath ) unless ($thismath eq '' ); +@@ -940,7 +939,7 @@ sub do_env_split { + + # right column, set using \displaystyle + $thismath = shift(@cols); +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = &process_math_in_latex("indisplay",'','' + , $doimage.$thismath ) unless ($thismath eq '' ); +diff --git a/styles/natbib.perl b/styles/natbib.perl +index dbbfee4..93d8e1a 100644 +--- a/styles/natbib.perl ++++ b/styles/natbib.perl +@@ -1385,12 +1385,10 @@ sub do_env_thebibliography { + $citefile = $CURRENT_FILE; + $citefiles{$bbl_nr} = $citefile; + s/$next_pair_rx//o; +- $* = 1; # Multiline matching ON + # s/^\s*$//g; # Remove empty lines (otherwise will have paragraphs!) + # s/\n//g; # Remove all \n s --- we format the HTML file ourselves. + # $* = 0; # Multiline matching OFF +- s/\\newblock/\/g; # break at each \newblock +- $* = 0; # Multiline matching OFF ++ s/\\newblock/\/gm; # break at each \newblock + s/\\penalty\d+//mg; # Remove \penalty declarations + + local($this_item,$this_kind, $title); +diff --git a/styles/webtex.perl b/styles/webtex.perl +index 576c882..a0c7c3a 100644 +--- a/styles/webtex.perl ++++ b/styles/webtex.perl +@@ -121,29 +121,29 @@ sub convert_to_webtex { + if($WEBEQ_IMG_ONLY) { return (1,$no_applet) }; + + local($savedRS, $failed, $env_id, $_) = ($/,'','',$orig); +- $/=''; $* = 1; ++ $/=''; + if ($mode =~ /inline/) { + if (/^\s*\\\(/) { $failed = 1 } + else { + $_ = &revert_to_raw_tex($_); +- $_ =~ s/^\s*\$?/\$/s; +- $_ =~ s/\$?$/\$/s; ++ $_ =~ s/^\s*\$?/\$/sm; ++ $_ =~ s/\$?$/\$/sm; + $env_id .= $WEBEQ_INL if $USING_STYLES; + } + } elsif ($mode =~ /display/) { + if (/^\s*\$\$/) { $failed = 1 } + else { + $_ = &revert_to_raw_tex($_); +- $_ =~ s/^\s*(\\\[|\$\$)?/\\\[/s; +- $_ =~ s/(\$\$|\\\])?\s*$/\\\]/s; ++ $_ =~ s/^\s*(\\\[|\$\$)?/\\\[/sm; ++ $_ =~ s/(\$\$|\\\])?\s*$/\\\]/sm; + $env_id .= $WEBEQ_DIS if $USING_STYLES; + } + } else { + print " *** Unknown WebTeX mode, no applet ***"; +- $/ = $savedRS; $* = 0; ++ $/ = $savedRS; + return (0,$no_applet) + } +- $/ = $savedRS; $* = 0; ++ $/ = $savedRS; + return (0,$no_applet) if $failed; + + ($failed,$_) = &check_only_webtex($_); +@@ -324,7 +324,7 @@ sub cleanup_mml_attribs { + local($mml_code) = join('',); + close MML; + +- local($savedRS) = $/; $*=0; $/=''; ++ local($savedRS) = $/; $/=''; + $mml_code =~ s/^\s*

    \n?//s; + $mml_code =~ s/\s*\s*/ + $width=$1;$height=$2;$align=$3;''/e; +diff --git a/versions/html3_1.pl b/versions/html3_1.pl +index 635f10b..3c1f10e 100644 +--- a/versions/html3_1.pl ++++ b/versions/html3_1.pl +@@ -78,7 +78,7 @@ sub do_env_tex2html_wrap { + local($attribs, $border); + if (s/$htmlborder_rx//o) { $attribs = $2; $border = (($4)? "$4" : 1) } + elsif (s/$htmlborder_pr_rx//o) { $attribs = $2; $border = (($4)? "$4" : 1) } +- $* = 1; s/^\s*|\s*$//g; $*=0; ++ s/^\s*|\s*$//gm; + local($saved) = $_; + # if (s/^\\\(|^\$|^\\math|\\\)$|\$$|\\endmath//g) {} + if (s/^$math_start_rx|${math_end_rx}$//g) {} +@@ -161,23 +161,21 @@ sub do_env_equation { + local($seqno) = join('',"\n\n"); +- $* = 1; + do { # include the equation number, using a + $global{'eqn_number'}++; + $eqno = join('', $EQNO_START + , &simplify(&translate_commands('\theequation')) + , $EQNO_END); +- } unless ((s/(\\nonumber|\\notag)//g)||(/\\tag/)); +- if (s/\\tag(\*)?//){ ++ } unless ((s/(\\nonumber|\\notag)//gm)||(/\\tag/)); ++ if (s/\\tag(\*)?//m){ + # AmS-TEX line-number tags. + local($nobrack,$before) = ($1,$`); + $_ = $'; +- s/next_pair_pr_rx//o; ++ s/next_pair_pr_rx//om; + if ($nobrack) { $eqno = $2 } + else { $eqno = join('',$EQNO_START, $2, $EQNO_END ) } + $_ = $before; + } +- $* = 0; + + local($halign) = " ALIGN=\"CENTER\"" unless $FLUSH_EQN; + if ($EQN_TAGS =~ /L/) { +@@ -353,7 +351,7 @@ sub make_math { + + # remove white space at the extremities + # do{ $*=1; s/(^\s+|\s+$)//; $*=0; } unless ($NO_SIMPLE_MATH); +- $*=1; s/^\s//o;s/\s$//; $*=0; ++ s/^\s//o;s/\s$//m; + + $_; + } +@@ -970,7 +968,7 @@ sub do_env_eqnarray { + + if (s/\\lefteqn//) { + $return .= "\"LEFT\" COLSPAN=\"3\">"; +- $* =1; s/(^\s*|$html_specials{'&'}|\s*$)//g; $*=0; ++ s/(^\s*|$html_specials{'&'}|\s*$)//gm; + if (($doimage)||($failed)) { + $_ = (($_)? &process_math_in_latex( + "indisplay" , '', '', $doimage.$_ ):''); +@@ -989,7 +987,7 @@ sub do_env_eqnarray { + + # left column, set using \displaystyle + $thismath = shift(@cols); +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1006,7 +1004,7 @@ sub do_env_eqnarray { + $thismath = shift(@cols); + if (!($#cols < 0)) { + #print "\nEQNARRAY:$#cols : $thismath"; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , 'text', '', $doimage.$thismath ):''); +@@ -1026,7 +1024,7 @@ sub do_env_eqnarray { + &write_warnings($eqnarray_warning); + print "\n\n *** $eqnarray_warning \n"; + } +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1385,7 +1383,7 @@ sub translate_math_commands { + } + + ($pre_text,$labels) = &extract_labels($pre_text); +- local($savedRS) = $/; $/ = ''; $* = 1; ++ local($savedRS) = $/; $/ = ''; + # if ($pre_text =~ m/^((.|\n)*)\\begin\s*(($O|$OP)\d+($C|$CP))$ams_aligned_envs_rx\3/m) { + if ($pre_text =~ m/^()\\begin\s*(($O|$OP)\d+($C|$CP))$ams_aligned_envs_rx\3/m) { + local($env,$star,$orig,$cnt) = ($7,$8,$pre_text.$_,1); +@@ -1394,7 +1392,7 @@ sub translate_math_commands { + # local($savedRS) = $/; $/ = ''; $*=1; + while ( $cnt && $found ) { + $found = ''; +- if ($post_pre_text =~ /\\(begin|end)(($O|$OP)\d+($C|$CP))$env$star\2/s) ++ if ($post_pre_text =~ /\\(begin|end)(($O|$OP)\d+($C|$CP))$env$star\2/sm) + { $pre_text .= $`; $found = $1; + $this_env = $&; $post_pre_text = $'; } + if ($found =~ /begin/) { +@@ -1403,7 +1401,7 @@ sub translate_math_commands { + $cnt--; $pre_text .= $this_env if ($cnt > 0) ; + } + } +- $* = 0; $/ = $savedRS; ++ $/ = $savedRS; + $env .= 'star' if $star; + local($env_cmd) = 'do_env_'.$env; + # parse it further, when possible... +@@ -1430,7 +1428,7 @@ sub translate_math_commands { + $pre_text = &process_math_in_latex($mode,$style,$slevel,$pre_text) + if ($pre_text); + } +- $* = 0; $/ = $savedRS; ++ $/ = $savedRS; + return($labels . $pre_text) unless ($_); + + local($post_text, $this_text, $which_text); +@@ -1494,7 +1492,7 @@ sub make_math_comment{ + $ecomm = "\n\\end{$env}"; + } unless ($env =~/tex2html/); + $_ = &revert_to_raw_tex; +- $* = 1; s/^\s+//; s/\s+$//; $* = 0; ++ s/^\s+//; s/\s+$//m; + $_ = $scomm . $_ . $ecomm; + return() if (length($_) < 12); + $global{'verbatim_counter'}++; +@@ -1637,20 +1635,18 @@ sub parse_math_toks { + local ($saved) = $_; + $_ = $'; + # find the \end, including nested environments of same type. +- $* = 1; + local($cnt, $thisbit, $which) = (1,'',''); +- while ( /\\(begin|end)(<#\d+#>)($env|$array_env_rx)(\*|star)?\2/s ) { ++ while ( /\\(begin|end)(<#\d+#>)($env|$array_env_rx)(\*|star)?\2/sm ) { + $thisbit = $` . $&; $_ = $'; $which = $1; + do { + # mark rows/columns in nested arrays +- $thisbit =~ s/;SPMamp;/$array_col_mark/g; +- $thisbit =~ s/\\(\\|cr(cr)?(\b|$|\d|\W))/$array_row_mark$3/g; ++ $thisbit =~ s/;SPMamp;/$array_col_mark/gm; ++ $thisbit =~ s/\\(\\|cr(cr)?(\b|$|\d|\W))/$array_row_mark$3/gm; + } if ($cnt > 1); + $this .= $thisbit; + if ($which =~ /begin/) {$cnt++} else {$cnt--}; + last if (!$cnt); + } +- $* = 0; + + # $this =~ s/\\cr(cr)?(\b|$|\d|\\|\W)/\\\\$2/g; + local($env_cmd) = "do_env_$env".(($star)? "star" : ''); +@@ -1668,11 +1664,9 @@ sub parse_math_toks { + $this .= $extra; + $this = &process_math_in_latex($mode,$style,$slevel,$this); + } else { +- $*=1; +- $star =~ s/\*/\\\*/o if ($star); +- $this =~ s/^\\begin(<#\d+#>)$env$star\1//; +- $this =~ s/\\end(<#\d+#>)$env$star\1\s*$//; +- $*=0; ++ $star =~ s/\*/\\\*/om if ($star); ++ $this =~ s/^\\begin(<#\d+#>)$env$star\1//m; ++ $this =~ s/\\end(<#\d+#>)$env$star\1\s*$//m; + do { + local($in_array) = 1; + local($_) = $this; +@@ -2376,9 +2370,7 @@ sub get_supsub { + } elsif ($5) { + $supsub .= $1; $which .= (($5 =~ /b/) ? '_' : '^'); + local($multisub_type) = $5; +- $* = 1; +- s/\\end(($O|$OP)\d+($C|$CP))$multisub_type\1/$supsub .= $`.$&;''/e; +- $* = 0; ++ s/\\end(($O|$OP)\d+($C|$CP))$multisub_type\1/$supsub .= $`.$&;''/em; + } else { $supsub .= "\{^\\prime\}" } + } + # include dummy sup/sub-scripts to enhance the vertical spacing +diff --git a/versions/html3_2.pl b/versions/html3_2.pl +index 4093cdb..58429ac 100644 +--- a/versions/html3_2.pl ++++ b/versions/html3_2.pl +@@ -406,9 +406,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + # $at_text .= $celldata; + # if ( $#colspec > -1) { + # $colspec[$#colspec] .= join('', "'); +@@ -434,9 +432,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + $at_text .= $celldata; + + } elsif ( $char =~ /;|\&/ ) { +@@ -596,9 +592,7 @@ sub process_tabular { + + while (/\\parbox/) { + local($parlength) = length($_); +- $* = 1; # multiline matching ON +- s/$wrap_parbox_rx/&convert_parbox_newlines($6)/eg; +- $* = 0; # multiline matching OFF ++ s/$wrap_parbox_rx/&convert_parbox_newlines($6)/egm; + + if ($parlength == length($_)) { + print "\n*** \\parbox's remain in table!!\n"; +@@ -823,9 +817,7 @@ sub process_tabular { + } + $colspec = &translate_environments("$OP$tmp$CP$colspec$OP$tmp$CP"); + $colspec = &translate_commands($colspec); +- $* = 1; +- while ($colspec =~ s/<(\w+)>\s*<\/\1>//g) {}; +- $* = 0; ++ while ($colspec =~ s/<(\w+)>\s*<\/\1>//gm) {}; + $colspec = ';SPMnbsp;' if ($colspec =~ /^\s*$/); + $colspec = join('', $reopens, $colspec + , (@$open_tags_R ? &close_all_tags() : '') +@@ -966,7 +958,7 @@ sub make_math_comment{ + $ecomm = "\n\\end{$env}"; + } unless ($env =~/tex2html/); + $_ = &revert_to_raw_tex; +- $* = 1; s/^\s+//s; s/\s+$//s; $* = 0; ++ s/^\s+//s; s/\s+$//sm; + $_ = $scomm . $_ . $ecomm; + return() if (length($_) < 16); + $global{'verbatim_counter'}++; +@@ -1057,20 +1049,19 @@ sub do_env_equation { + local($seqno) = join('',"\n\n"); +- $* = 1; + do { # get the equation number + $global{'eqn_number'}++; + $eqno = &translate_commands('\theequation'); +- } unless ((s/(\\nonumber|\\notag)//g)||(/\\tag/)); ++ } unless ((s/(\\nonumber|\\notag)//gm)||(/\\tag/)); + if (/\\tag(\*)?/){ + # AmS-TEX line-number tags. + if (defined &get_eqn_number ) { + ($eqno, $_) = &get_eqn_number(1,$_); + } else { +- s/\\tag(\*)?//; ++ s/\\tag(\*)?//m; + local($nobrack,$before) = ($1,$`); + $_ = $'; +- s/next_pair_pr_rx//o; ++ s/next_pair_pr_rx//om; + if ($nobrack) { $eqno = $2; } + else { $eqno = join('',$EQNO_START, $2, $EQNO_END) }; + $_ = $before; +@@ -1078,7 +1069,6 @@ sub do_env_equation { + } elsif ($eqno) { + $eqno = join('',$EQNO_START, $eqno, $EQNO_END) + } else { $eqno = ' ' } # spacer, when no numbering +- $* = 0; + + # include the equation-number, using a
    ",$celldata,'
    + local($halign) = $math_class unless $FLUSH_EQN; +@@ -1255,7 +1245,7 @@ sub do_env_eqnarray { + # if (s/\\lefteqn$OP(\d+)$CP(.*)$OP\1$CP/ $2 /) { + if (s/\\lefteqn//) { + $return .= "\"LEFT\" COLSPAN=\"3\">"; +- $* =1; s/(^\s*|$html_specials{'&'}|\s*$)//g; $*=0; ++ s/(^\s*|$html_specials{'&'}|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $_ = (($_)? &process_math_in_latex( + "indisplay" , '', '', $doimage.$_ ):''); +@@ -1280,7 +1270,7 @@ sub do_env_eqnarray { + + # left column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1300,7 +1290,7 @@ sub do_env_eqnarray { + + # center column, set using \textstyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , 'text', '', $doimage.$thismath ):''); +@@ -1320,7 +1310,7 @@ sub do_env_eqnarray { + + # right column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +diff --git a/versions/html4_0.pl b/versions/html4_0.pl +index ac79a33..57c16e2 100644 +--- a/versions/html4_0.pl ++++ b/versions/html4_0.pl +@@ -745,9 +745,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + # $at_text .= $celldata; + # if ( $#colspec > -1) { + # $colspec[$#colspec] .= join('', "'); +@@ -773,9 +771,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + $at_text .= $celldata; + + } elsif ( $char =~ /;|\&/ ) { +@@ -944,9 +940,7 @@ sub process_tabular { + + while (/\\parbox/) { + local($parlength) = length($_); +- $* = 1; # multiline matching ON +- s/$wrap_parbox_rx/&convert_parbox_newlines($6)/eg; +- $* = 0; # multiline matching OFF ++ s/$wrap_parbox_rx/&convert_parbox_newlines($6)/egm; + + if ($parlength == length($_)) { + print "\n*** \\parbox's remain in table!!\n"; +@@ -1175,9 +1169,7 @@ sub process_tabular { + } + $colspec = &translate_environments("$OP$tmp$CP$colspec$OP$tmp$CP"); + $colspec = &translate_commands($colspec); +- $* = 1; +- while ($colspec =~ s/<(\w+)>\s*<\/\1>//g) {}; +- $* = 0; ++ while ($colspec =~ s/<(\w+)>\s*<\/\1>//gm) {}; + $colspec = ';SPMnbsp;' if ($colspec =~ /^\s*$/); + $colspec = join('', $reopens, $colspec + , (@$open_tags_R ? &close_all_tags() : '') +@@ -1317,7 +1309,7 @@ sub make_math_comment{ + $ecomm = "\n\\end{$env}"; + } unless ($env =~/tex2html/); + $_ = &revert_to_raw_tex; +- $* = 1; s/^\s+//s; s/\s+$//s; $* = 0; ++ s/^\s+//s; s/\s+$//sm; + $_ = $scomm . $_ . $ecomm; + return() if (length($_) < 16); + $global{'verbatim_counter'}++; +@@ -1419,20 +1411,19 @@ sub do_env_equation { + local($seqno) = join('',"\n\n"); +- $* = 1; + do { # get the equation number + $global{'eqn_number'}++; + $eqno = &translate_commands('\theequation'); +- } unless ((s/(\\nonumber|\\notag)//g)||(/\\tag/)); ++ } unless ((s/(\\nonumber|\\notag)//gm)||(/\\tag/)); + if (/\\tag(\*)?/){ + # AmS-TEX line-number tags. + if (defined &get_eqn_number ) { + ($eqno, $_) = &get_eqn_number(1,$_); + } else { +- s/\\tag(\*)?//; ++ s/\\tag(\*)?//m; + local($nobrack,$before) = ($1,$`); + $_ = $'; +- s/next_pair_pr_rx//o; ++ s/next_pair_pr_rx//om; + if ($nobrack) { $eqno = $2; } + else { $eqno = join('',$EQNO_START, $2, $EQNO_END) }; + $_ = $before; +@@ -1440,7 +1431,6 @@ sub do_env_equation { + } elsif ($eqno) { + $eqno = join('',$EQNO_START, $eqno, $EQNO_END) + } else { $eqno = ' ' } # spacer, when no numbering +- $* = 0; + + # include the equation-number, using a
    ",$celldata,'
    + local($halign) = " ALIGN=\"CENTER\"" unless $FLUSH_EQN; +@@ -1620,7 +1610,7 @@ sub do_env_eqnarray { + # if (s/\\lefteqn$OP(\d+)$CP(.*)$OP\1$CP/ $2 /) { + if (s/\\lefteqn//) { + $return .= "\"LEFT\" COLSPAN=\"3\">"; +- $* =1; s/(^\s*|$html_specials{'&'}|\s*$)//g; $*=0; ++ s/(^\s*|$html_specials{'&'}|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $_ = (($_)? &process_math_in_latex( + "indisplay" , '', '', $doimage.$_ ):''); +@@ -1645,7 +1635,7 @@ sub do_env_eqnarray { + + # left column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1665,7 +1655,7 @@ sub do_env_eqnarray { + + # center column, set using \textstyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , 'text', '', $doimage.$thismath ):''); +@@ -1685,7 +1675,7 @@ sub do_env_eqnarray { + + # right column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +diff --git a/versions/html4_01.pl b/versions/html4_01.pl +index dc00415..9cc3e31 100644 +--- a/versions/html4_01.pl ++++ b/versions/html4_01.pl +@@ -766,9 +766,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + # $at_text .= $celldata; + # if ( $#colspec > -1) { + # $colspec[$#colspec] .= join('', "'); +@@ -794,9 +792,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + $at_text .= $celldata; + + } elsif ( $char =~ /;|\&/ ) { +@@ -965,9 +961,7 @@ sub process_tabular { + + while (/\\parbox/) { + local($parlength) = length($_); +- $* = 1; # multiline matching ON +- s/$wrap_parbox_rx/&convert_parbox_newlines($6)/eg; +- $* = 0; # multiline matching OFF ++ s/$wrap_parbox_rx/&convert_parbox_newlines($6)/egm; + + if ($parlength == length($_)) { + print "\n*** \\parbox's remain in table!!\n"; +@@ -1196,9 +1190,7 @@ sub process_tabular { + } + $colspec = &translate_environments("$OP$tmp$CP$colspec$OP$tmp$CP"); + $colspec = &translate_commands($colspec); +- $* = 1; +- while ($colspec =~ s/<(\w+)>\s*<\/\1>//g) {}; +- $* = 0; ++ while ($colspec =~ s/<(\w+)>\s*<\/\1>//gm) {}; + $colspec = ';SPMnbsp;' if ($colspec =~ /^\s*$/); + $colspec = join('', $reopens, $colspec + , (@$open_tags_R ? &close_all_tags() : '') +@@ -1338,7 +1330,7 @@ sub make_math_comment{ + $ecomm = "\n\\end{$env}"; + } unless ($env =~/tex2html/); + $_ = &revert_to_raw_tex; +- $* = 1; s/^\s+//s; s/\s+$//s; $* = 0; ++ s/^\s+//s; s/\s+$//sm; + $_ = $scomm . $_ . $ecomm; + return() if (length($_) < 16); + $global{'verbatim_counter'}++; +@@ -1440,20 +1432,19 @@ sub do_env_equation { + local($seqno) = join('',"\n\n"); +- $* = 1; + do { # get the equation number + $global{'eqn_number'}++; + $eqno = &translate_commands('\theequation'); +- } unless ((s/(\\nonumber|\\notag)//g)||(/\\tag/)); ++ } unless ((s/(\\nonumber|\\notag)//gm)||(/\\tag/)); + if (/\\tag(\*)?/){ + # AmS-TEX line-number tags. + if (defined &get_eqn_number ) { + ($eqno, $_) = &get_eqn_number(1,$_); + } else { +- s/\\tag(\*)?//; ++ s/\\tag(\*)?//m; + local($nobrack,$before) = ($1,$`); + $_ = $'; +- s/next_pair_pr_rx//o; ++ s/next_pair_pr_rx//om; + if ($nobrack) { $eqno = $2; } + else { $eqno = join('',$EQNO_START, $2, $EQNO_END) }; + $_ = $before; +@@ -1461,7 +1452,6 @@ sub do_env_equation { + } elsif ($eqno) { + $eqno = join('',$EQNO_START, $eqno, $EQNO_END) + } else { $eqno = ' ' } # spacer, when no numbering +- $* = 0; + + # include the equation-number, using a
    ",$celldata,'
    + local($halign) = " ALIGN=\"CENTER\"" unless $FLUSH_EQN; +@@ -1641,7 +1631,7 @@ sub do_env_eqnarray { + # if (s/\\lefteqn$OP(\d+)$CP(.*)$OP\1$CP/ $2 /) { + if (s/\\lefteqn//) { + $return .= "\"LEFT\" COLSPAN=\"3\">"; +- $* =1; s/(^\s*|$html_specials{'&'}|\s*$)//g; $*=0; ++ s/(^\s*|$html_specials{'&'}|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $_ = (($_)? &process_math_in_latex( + "indisplay" , '', '', $doimage.$_ ):''); +@@ -1666,7 +1656,7 @@ sub do_env_eqnarray { + + # left column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1686,7 +1676,7 @@ sub do_env_eqnarray { + + # center column, set using \textstyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , 'text', '', $doimage.$thismath ):''); +@@ -1706,7 +1696,7 @@ sub do_env_eqnarray { + + # right column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +diff --git a/versions/html4_1.pl b/versions/html4_1.pl +index dc00415..9cc3e31 100644 +--- a/versions/html4_1.pl ++++ b/versions/html4_1.pl +@@ -766,9 +766,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + # $at_text .= $celldata; + # if ( $#colspec > -1) { + # $colspec[$#colspec] .= join('', "'); +@@ -794,9 +792,7 @@ sub translate_colspec { + } + $celldata .= ' ' if ($celldata =~ /\\\w+$/); + +- $* = 1; # multiline matching ON +- $celldata =~ s/$wrap_parbox_rx/$6/g; +- $* = 0; # multiline matching OFF ++ $celldata =~ s/$wrap_parbox_rx/$6/gm; + $at_text .= $celldata; + + } elsif ( $char =~ /;|\&/ ) { +@@ -965,9 +961,7 @@ sub process_tabular { + + while (/\\parbox/) { + local($parlength) = length($_); +- $* = 1; # multiline matching ON +- s/$wrap_parbox_rx/&convert_parbox_newlines($6)/eg; +- $* = 0; # multiline matching OFF ++ s/$wrap_parbox_rx/&convert_parbox_newlines($6)/egm; + + if ($parlength == length($_)) { + print "\n*** \\parbox's remain in table!!\n"; +@@ -1196,9 +1190,7 @@ sub process_tabular { + } + $colspec = &translate_environments("$OP$tmp$CP$colspec$OP$tmp$CP"); + $colspec = &translate_commands($colspec); +- $* = 1; +- while ($colspec =~ s/<(\w+)>\s*<\/\1>//g) {}; +- $* = 0; ++ while ($colspec =~ s/<(\w+)>\s*<\/\1>//gm) {}; + $colspec = ';SPMnbsp;' if ($colspec =~ /^\s*$/); + $colspec = join('', $reopens, $colspec + , (@$open_tags_R ? &close_all_tags() : '') +@@ -1338,7 +1330,7 @@ sub make_math_comment{ + $ecomm = "\n\\end{$env}"; + } unless ($env =~/tex2html/); + $_ = &revert_to_raw_tex; +- $* = 1; s/^\s+//s; s/\s+$//s; $* = 0; ++ s/^\s+//s; s/\s+$//sm; + $_ = $scomm . $_ . $ecomm; + return() if (length($_) < 16); + $global{'verbatim_counter'}++; +@@ -1440,20 +1432,19 @@ sub do_env_equation { + local($seqno) = join('',"\n\n"); +- $* = 1; + do { # get the equation number + $global{'eqn_number'}++; + $eqno = &translate_commands('\theequation'); +- } unless ((s/(\\nonumber|\\notag)//g)||(/\\tag/)); ++ } unless ((s/(\\nonumber|\\notag)//gm)||(/\\tag/)); + if (/\\tag(\*)?/){ + # AmS-TEX line-number tags. + if (defined &get_eqn_number ) { + ($eqno, $_) = &get_eqn_number(1,$_); + } else { +- s/\\tag(\*)?//; ++ s/\\tag(\*)?//m; + local($nobrack,$before) = ($1,$`); + $_ = $'; +- s/next_pair_pr_rx//o; ++ s/next_pair_pr_rx//om; + if ($nobrack) { $eqno = $2; } + else { $eqno = join('',$EQNO_START, $2, $EQNO_END) }; + $_ = $before; +@@ -1461,7 +1452,6 @@ sub do_env_equation { + } elsif ($eqno) { + $eqno = join('',$EQNO_START, $eqno, $EQNO_END) + } else { $eqno = ' ' } # spacer, when no numbering +- $* = 0; + + # include the equation-number, using a
    ",$celldata,'
    + local($halign) = " ALIGN=\"CENTER\"" unless $FLUSH_EQN; +@@ -1641,7 +1631,7 @@ sub do_env_eqnarray { + # if (s/\\lefteqn$OP(\d+)$CP(.*)$OP\1$CP/ $2 /) { + if (s/\\lefteqn//) { + $return .= "\"LEFT\" COLSPAN=\"3\">"; +- $* =1; s/(^\s*|$html_specials{'&'}|\s*$)//g; $*=0; ++ s/(^\s*|$html_specials{'&'}|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $_ = (($_)? &process_math_in_latex( + "indisplay" , '', '', $doimage.$_ ):''); +@@ -1666,7 +1656,7 @@ sub do_env_eqnarray { + + # left column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1686,7 +1676,7 @@ sub do_env_eqnarray { + + # center column, set using \textstyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , 'text', '', $doimage.$thismath ):''); +@@ -1706,7 +1696,7 @@ sub do_env_eqnarray { + + # right column, set using \displaystyle + $thismath = shift(@cols); $failed = 0; +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($NO_SIMPLE_MATH)||($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +diff --git a/versions/math.pl b/versions/math.pl +index 37eadec..6ce67c3 100644 +--- a/versions/math.pl ++++ b/versions/math.pl +@@ -87,7 +87,7 @@ sub do_env_tex2html_wrap { + local($attribs, $border); + if (s/$htmlborder_rx//o) { $attribs = $2; $border = (($4)? "$4" : 1) } + elsif (s/$htmlborder_pr_rx//o) { $attribs = $2; $border = (($4)? "$4" : 1) } +- $* = 1; s/^\s*|\s*$//g; $*=0; ++ s/^\s*|\s*$//gm; + local($saved) = $_; + # if (s/^\\\(|^\$|^\\math|\\\)$|\$$|\\endmath//g) {} + if (s/^$math_start_rx|${math_end_rx}$//g) {} +@@ -174,23 +174,21 @@ sub do_env_equation { + local($seqno) = join('',"\n\n"); +- $* = 1; + do { # include the equation number, using a
    + $global{'eqn_number'}++; + $eqno = join('', $EQNO_START + , &simplify(&translate_commands('\theequation')) + , $EQNO_END); +- } unless ((s/(\\nonumber|\\notag)//g)||(/\\tag/)); +- if (s/\\tag(\*)?//){ ++ } unless ((s/(\\nonumber|\\notag)//gm)||(/\\tag/)); ++ if (s/\\tag(\*)?//m){ + # AmS-TEX line-number tags. + local($nobrack,$before) = ($1,$`); + $_ = $'; +- s/next_pair_pr_rx//o; ++ s/next_pair_pr_rx//om; + if ($nobrack) { $eqno = $2 } + else { $eqno = join('',$EQNO_START, $2, $EQNO_END ) } + $_ = $before; + } +- $* = 0; + + local($halign) = " ALIGN=\"CENTER\"" unless $FLUSH_EQN; + if ($EQN_TAGS =~ /L/) { +@@ -398,9 +396,9 @@ sub make_math { + + # remove white space at the extremities + # do{ $*=1; s/(^\s+|\s+$)//; $*=0; } unless ($NO_SIMPLE_MATH); +- $*=1; s/^\s//o;s/\s$//; $*=0; ++ s/^\s//o;s/\s$//m; + # but not if there is a comment to finish: +- $*=1; s/($comment_mark\s*\d+)$/$&\n/; $*=0; ++ s/($comment_mark\s*\d+)$/$&\n/m; + + $_; + } +@@ -1029,7 +1027,7 @@ sub do_env_eqnarray { + + if (s/\\lefteqn//) { + $return .= "\"LEFT\" COLSPAN=\"3\">"; +- $* =1; s/(^\s*|$html_specials{'&'}|\s*$)//g; $*=0; ++ s/(^\s*|$html_specials{'&'}|\s*$)//gm; + if (($doimage)||($failed)) { + $_ = (($_)? &process_math_in_latex( + "indisplay" , '', '', $doimage.$_ ):''); +@@ -1048,7 +1046,7 @@ sub do_env_eqnarray { + + # left column, set using \displaystyle + $thismath = shift(@cols); +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1064,7 +1062,7 @@ sub do_env_eqnarray { + # center column, set using \textstyle + $thismath = shift(@cols); + if (!($#cols < 0)) { +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , 'text', '', $doimage.$thismath ):''); +@@ -1084,7 +1082,7 @@ sub do_env_eqnarray { + &write_warnings($eqnarray_warning); + print "\n\n *** $eqnarray_warning \n"; + } +- $* =1; $thismath =~ s/(^\s*|\s*$)//g; $*=0; ++ $thismath =~ s/(^\s*|\s*$)//gm; + if (($doimage)||($failed)) { + $thismath = (($thismath ne '')? &process_math_in_latex( + "indisplay" , '', '', $doimage.$thismath ):''); +@@ -1447,7 +1445,7 @@ sub translate_math_commands { + } + + ($pre_text,$labels) = &extract_labels($pre_text); +- local($savedRS) = $/; $/ = ''; $* = 1; ++ local($savedRS) = $/; $/ = ''; + # if ($pre_text =~ m/^((.|\n)*)\\begin\s*(($O|$OP)\d+($C|$CP))$ams_aligned_envs_rx\3/m) { + if ($pre_text =~ m/^()\\begin\s*(($O|$OP)\d+($C|$CP))$ams_aligned_envs_rx\3/m) { + local($env,$star,$orig,$cnt) = ($7,$8,$pre_text.$_,1); +@@ -1456,7 +1454,7 @@ sub translate_math_commands { + # local($savedRS) = $/; $/ = ''; $*=1; + while ( $cnt && $found ) { + $found = ''; +- if ($post_pre_text =~ /\\(begin|end)(($O|$OP)\d+($C|$CP))$env$star\2/s) ++ if ($post_pre_text =~ /\\(begin|end)(($O|$OP)\d+($C|$CP))$env$star\2/sm) + { $pre_text .= $`; $found = $1; + $this_env = $&; $post_pre_text = $'; } + if ($found =~ /begin/) { +@@ -1465,7 +1463,7 @@ sub translate_math_commands { + $cnt--; $pre_text .= $this_env if ($cnt > 0) ; + } + } +- $* = 0; $/ = $savedRS; ++ $/ = $savedRS; + $env .= 'star' if $star; + local($env_cmd) = 'do_env_'.$env; + # parse it further, when possible... +@@ -1504,7 +1502,7 @@ sub translate_math_commands { + $pre_text = &process_math_in_latex($mode,$style,$slevel,$pre_text) + if ($pre_text); + } +- $* = 0; $/ = $savedRS; ++ $/ = $savedRS; + return($labels . $pre_text) unless ($_); + + print "\nMore math:\n$_" if ($VERBOSITY > 4); +@@ -1572,7 +1570,7 @@ sub make_math_comment{ + $ecomm = "\n\\end{$env}"; + } unless ($env =~/tex2html/); + $_ = &revert_to_raw_tex; +- $* = 1; s/^\s+//; s/\s+$//; $* = 0; ++ s/^\s+//; s/\s+$//m; + $_ = $scomm . $_ . $ecomm; + return() if (length($_) < 12); + $global{'verbatim_counter'}++; +@@ -1715,20 +1713,18 @@ sub parse_math_toks { + local ($saved) = $_; + $_ = $'; + # find the \end, including nested environments of same type. +- $* = 1; + local($cnt, $thisbit, $which) = (1,'',''); +- while ( /\\(begin|end)(<#\d+#>)($env|$array_env_rx)(\*|star)?\2/s ) { ++ while ( /\\(begin|end)(<#\d+#>)($env|$array_env_rx)(\*|star)?\2/sm ) { + $thisbit = $` . $&; $_ = $'; $which = $1; + do { + # mark rows/columns in nested arrays +- $thisbit =~ s/;SPMamp;/$array_col_mark/g; +- $thisbit =~ s/\\(\\|cr(cr)?(\b|$|\d|\W))/$array_row_mark$3/g; ++ $thisbit =~ s/;SPMamp;/$array_col_mark/gm; ++ $thisbit =~ s/\\(\\|cr(cr)?(\b|$|\d|\W))/$array_row_mark$3/gm; + } if ($cnt > 1); + $this .= $thisbit; + if ($which =~ /begin/) {$cnt++} else {$cnt--}; + last if (!$cnt); + } +- $* = 0; + + # $this =~ s/\\cr(cr)?(\b|$|\d|\\|\W)/\\\\$2/g; + local($env_cmd) = "do_env_$env".(($star)? "star" : ''); +@@ -1746,11 +1742,9 @@ sub parse_math_toks { + $this .= $extra; + $this = &process_math_in_latex($mode,$style,$slevel,$this); + } else { +- $*=1; +- $star =~ s/\*/\\\*/o if ($star); +- $this =~ s/^\\begin(<#\d+#>)$env$star\1//s; +- $this =~ s/\\end(<#\d+#>)$env$star\1\s*$//s; +- $*=0; ++ $star =~ s/\*/\\\*/om if ($star); ++ $this =~ s/^\\begin(<#\d+#>)$env$star\1//sm; ++ $this =~ s/\\end(<#\d+#>)$env$star\1\s*$//sm; + do { + local($in_array) = 1; + local($_) = $this; +@@ -2498,9 +2492,7 @@ sub get_supsub { + } elsif ($5) { + $supsub .= $1; $which .= (($5 =~ /b/) ? '_' : '^'); + local($multisub_type) = $5; +- $* = 1; +- s/\\end(($O|$OP)\d+($C|$CP))$multisub_type\1/$supsub .= $`.$&;''/e; +- $* = 0; ++ s/\\end(($O|$OP)\d+($C|$CP))$multisub_type\1/$supsub .= $`.$&;''/em; + } else { $supsub .= "\{^\\prime\}" } + } + # include dummy sup/sub-scripts to enhance the vertical spacing +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0020-latex2html-fix-defined.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0020-latex2html-fix-defined.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0020-latex2html-fix-defined.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,47 @@ +From a0565c0e352725982ecdb6caec6c2a541a8f9329 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 17 Jul 2012 16:52:20 +0200 +Subject: [PATCH] latex2html fix defined 20 of Debian series 7 + +latex2html with current perl gives warnings about the deprecation of +"defined(%hash)". This patches removes them by just removing the resp. +keyword. +Author: Roland Stigge +--- + latex2html.pin | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/latex2html.pin b/latex2html.pin +index fdf68c2..d670c0d 100644 +--- a/latex2html.pin ++++ b/latex2html.pin +@@ -532,7 +532,7 @@ $CHARSET = $charset || 'iso-8859-1'; + # + # If possible, use icons of the same type as generated images + # +-if ($IMAGE_TYPE && defined %{"icons_$IMAGE_TYPE"}) { ++if ($IMAGE_TYPE && %{"icons_$IMAGE_TYPE"}) { + %icons = %{"icons_$IMAGE_TYPE"}; + } + +@@ -2112,7 +2112,7 @@ sub convert_iso_latin_chars { + "\nCould not find translation function for $default_language.\n\n") + } + ); +- if ($USE_UTF ||(!$NO_UTF &&(defined %unicode_table)&&length(%unicode_table)>2)) { ++ if ($USE_UTF ||(!$NO_UTF &&(%unicode_table)&&length(%unicode_table)>2)) { + &convert_to_unicode($_)}; + } + $_ = join('', @case_processed, $_); undef(@case_processed); +@@ -9117,7 +9117,7 @@ sub real_replace_strange_accents { + my ($charset) = "${CHARSET}_character_map_inv"; + $charset =~ s/-/_/g; + # convert upper 8-bit characters +- if (defined %$charset &&($CHARSET =~ /8859[_\-]1$/)) { ++ if (%$charset &&($CHARSET =~ /8859[_\-]1$/)) { + s/([\200-\377])/ + $tmp = $$charset{'&#'.ord($1).';'}; + &mark_string($tmp) if ($tmp =~ m!\{!); +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0021-Documentation-private-1-and-3.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0021-Documentation-private-1-and-3.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0021-Documentation-private-1-and-3.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,61 @@ +From 2f8c774becbf4ad792f4e3291f139abe762d58ea Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 08:53:35 +0200 +Subject: [PATCH] Documentation private 1 and 3 + +--- + Makefile.in | 13 +++++++++++++ + docs/Makefile | 6 +++--- + 2 files changed, 16 insertions(+), 3 deletions(-) + +diff --git a/Makefile.in b/Makefile.in +index ca2ed5f..64a7ce0 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -63,6 +63,19 @@ all: ${SCRIPTS} ${MODULES} + devel: + ${MAKE} all BUILDOPT=-devel + ++documentation: \ ++ docPS \ ++ docHTML ++ ++docPS: ++ cd docs; \ ++ TEXINPUTS=$(srcdir)/texinputs: LATEX2HTMLDIR=$(srcdir) $(MAKE) -f Makefile manual.ps ++ ++docHTML: ++ cd docs; \ ++ TEXINPUTS=$(srcdir)/texinputs: PATH=$(srcdir):${PATH} LATEX2HTMLDIR=$(srcdir) $(MAKE) -f Makefile manual.html ++ ++ + # .SUFFIXES: + + pstoimg: ${cfgfile} ${srcdir}/${buildcmd} pstoimg.pin ${wrappers} +diff --git a/docs/Makefile b/docs/Makefile +index 53f9969..1223a89 100644 +--- a/docs/Makefile ++++ b/docs/Makefile +@@ -140,16 +140,16 @@ manual.aux manual.cb: \ + manual.tex credits.tex licence.tex overview.tex \ + support.tex userman.tex hypextra.tex features.tex \ + problems.tex l2hfiles.dat manhtml.tex l2hman.sty +- $(LATEX) manual.tex ++ $(LATEX) '\nonstopmode\input{manual.tex}' + + manual.glo manual.idx: \ + manual.tex credits.tex licence.tex overview.tex \ + support.tex userman.tex hypextra.tex features.tex \ + problems.tex l2hfiles.dat manhtml.tex l2hman.sty +- $(LATEX) manual.tex ++ $(LATEX) '\nonstopmode\input{manual.tex}' + + manual.dvi: manual.aux manual.ind manual.gls +- $(LATEX) manual.tex ++ $(LATEX) '\nonstopmode\input{manual.tex}' + + manual.ind: manual.idx + $(MAKEINDEX) -s l2hidx.ist manual.idx +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0022-Run-time-style-private-2.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0022-Run-time-style-private-2.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0022-Run-time-style-private-2.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,28 @@ +From ebfa4336a339a13b37386dcced37ee3b1c9914a1 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 09:00:21 +0200 +Subject: [PATCH] Run-time style private 2 + +--- + l2hconf.pin | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/l2hconf.pin b/l2hconf.pin +index 66b4286..41fe807 100644 +--- a/l2hconf.pin ++++ b/l2hconf.pin +@@ -225,7 +225,10 @@ $PSTOIMG = "$PERL @scriptdir@${dd}pstoimg at scriptext@"; + + # This is used to "autoload" perl code to deal with specific style files + # +-$LATEX2HTMLSTYLES = "$LATEX2HTMLDIR${dd}styles"; ++if($ENV{'LATEX2HTMLSTYLES'}) { ++ $LATEX2HTMLSTYLES = $ENV{'LATEX2HTMLSTYLES'}; ++} ++$LATEX2HTMLSTYLES = "$LATEX2HTMLSTYLES${envkey}$LATEX2HTMLDIR${dd}styles"; + + + # This is used to support upcoming versions of html - directory where perl +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0023-Installation-private-7.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0023-Installation-private-7.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0023-Installation-private-7.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,38 @@ +From 265b8dba7f7ec8b9199a1b24e552423969eebc5b Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 09:16:25 +0200 +Subject: [PATCH] Installation private 7 + +--- + config/install.pl | 9 +++++++-- + 1 file changed, 7 insertions(+), 2 deletions(-) + +diff --git a/config/install.pl b/config/install.pl +index 86b91d3..a491cea 100755 +--- a/config/install.pl ++++ b/config/install.pl +@@ -372,14 +372,19 @@ foreach $item (sort keys %Install_items) { + + if($cfg{TEXPATH}) { + print "\nNote: trying to install LaTeX2HTML style files in TeX directory tree\n ($cfg{TEXPATH})\n"; +- unless(mkpath($cfg{TEXPATH})) { ++ ++ my $dest = $cfg{TEXPATH}; ++ ++ # prepend the value of DESTDIR, for package-managers ++ $dest = $ENV{'DESTDIR'}.$dest if($ENV{'DESTDIR'}); ++ ++ unless(mkpath($dest)) { + #my $testpath = $cfg{TEXPATH}; # to strip (latex2)html + #$testpath =~ s/[$dd$dd][^$dd$dd]*$//; + #if((-d $cfg{TEXPATH} && !-w _) || (-d $testpath && !-w _)) { + print STDERR "\nError: Cannot install LaTeX2HTML style files in $cfg{TEXPATH}\n"; + } else { + my $dir = 'texinputs'; +- my $dest = $cfg{TEXPATH}; + unless(opendir(DIR,$dir)) { + print STDERR qq{Error: Could not read directory "$dir": $!\n}; + } else { +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0024-TeXExpand-private-7.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0024-TeXExpand-private-7.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0024-TeXExpand-private-7.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,24 @@ +From a4fe8f4a067e1c79c193cafbeafce48a30c34c79 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 09:22:50 +0200 +Subject: [PATCH] TeXExpand private 7 + +--- + latex2html.pin | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/latex2html.pin b/latex2html.pin +index d670c0d..4387813 100644 +--- a/latex2html.pin ++++ b/latex2html.pin +@@ -828,6 +828,7 @@ sub driver { + # does DOS need to check these here ? + # die "File $TEXEXPAND does not exist or is not executable\n" + # unless (-x $TEXEXPAND); ++ $TEXINPUTS = $ENV{'TEXINPUTS'}; + L2hos->syswait("$TEXEXPAND $dbg -auto_exclude $unseg" + . "-save_styles \"$DESTDIR$dd$TMP_${dd}styles\" " + . ($TEXINPUTS ? "-texinputs \"$TEXINPUTS\" " : '' ) +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0025-Icons-installation-private-8.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0025-Icons-installation-private-8.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0025-Icons-installation-private-8.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,31 @@ +From 369efd6d8bee8ec9897698d9b9f59634e2a0ac31 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 09:47:40 +0200 +Subject: [PATCH] Icons installation private 8 + +--- + config/install.pl | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/config/install.pl b/config/install.pl +index a491cea..6b4728c 100755 +--- a/config/install.pl ++++ b/config/install.pl +@@ -294,12 +294,12 @@ my @icon_types = $cfg{'IMAGE_TYPES'} ? + my $iconrx = join('|', @icon_types); + + my $dest1 = "$cfg{'SHLIBDIR'}${dd}icons"; +-if((-d $dest1 && !-w _) || (-d $cfg{'SHLIBDIR'} && !-w _)) { ++if((-d $ENV{'DESTDIR'}.$dest1 && !-w _) || (-d $ENV{'DESTDIR'}.$cfg{'SHLIBDIR'} && !-w _)) { + print STDERR "Error: Cannot install icons in '$dest1': No write permission.\n"; + $dest1 = ''; + } + my $dest2 = $cfg{'ICONSTORAGE'} || ''; +-if(-d $dest2 && !-w $dest2) { ++if(-d $ENV{'DESTDIR'}.$dest2 && !-w $ENV{'DESTDIR'}.$dest2) { + print STDERR "Error: Cannot install icons in '$dest2': No write permission.\n"; + $dest2 = ''; + } +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0026-pnmcrop-detection.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0026-pnmcrop-detection.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0026-pnmcrop-detection.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,50 @@ +From 1f36a8f997bf56f061a305cdf919db3227f5e58e Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 10:49:53 +0200 +Subject: [PATCH] pnmcrop detection + +Simplification in the context of OpenCSW where the version of netpbm +is greater than 10 and netpbm is a prerequisite of building latex2html + +The removed code is testing incorrectly the version greater than 8... +--- + config/config.pl | 20 +++----------------- + 1 file changed, 3 insertions(+), 17 deletions(-) + +diff --git a/config/config.pl b/config/config.pl +index 1b243d7..be1935a 100755 +--- a/config/config.pl ++++ b/config/config.pl +@@ -1281,26 +1281,12 @@ if($opt{'have_pstoimg'}) { + &checking('if pnmcrop can crop from one direction'); + my $timg = "config${dd}timg.pnm"; + ($stat,$msg,$err) = &get_out_err("$pnmcrop -l $timg"); +- } elsif ($vers > 8) { ++ } else { + my $sub_vers = ''; +- if ($vers =~ /9\.(\d+)/) { +- $sub_vers = $1; +- unless ($sub_vers > 11) { +- $newcfg{'PNMBLACK'} = ' -black '; +- print +- "\n Please update to Netpbm 9.12+, from sourceforge.org/projects/netpbm/\n", +- " else colored cropping-bars will not be removed.\n"; +- } else { +-# $pnmcrop .= ' -sides '; +- $newcfg{'PNMCROPOPT'} = ' -sides '; +- } +- } else { $newcfg{'PNMCROPOPT'} = ' -sides '; } +- $pnmcrop .= ' -verbose ' if ($vers >= 10 || $sub_vers > 10); ++ $newcfg{'PNMCROPOPT'} = ' -sides '; ++ $pnmcrop .= ' -verbose '; + print "\n$pnmcrop"; + $msg = 'there is nothing to crop'; $stat = ''; +- } else { +- print "\nThis $vers for $pnmcrop is not recognisable."; +- $stat = 1; + } + + unless(!$stat && $msg =~ /^p\d+[\s\n]+\d+\s+\d+|nothing to crop/is) { +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0027-Adapt-makeseg.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0027-Adapt-makeseg.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0027-Adapt-makeseg.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,51 @@ +From aad270b2c706ee272824b1a76606221d9d4e4474 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 14:56:25 +0200 +Subject: [PATCH] Adapt makeseg + +Inspired by debian-install.patch +--- + makeseg/makeseg | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +diff --git a/makeseg/makeseg b/makeseg/makeseg +index 76907f4..c1c5116 100755 +--- a/makeseg/makeseg ++++ b/makeseg/makeseg +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#! /usr/bin/env perl + + # Check options and load configuration files + &init; +@@ -17,23 +17,23 @@ + # config file settings therefore override anything set here + + # Location to look for L2H-supported LaTeX styles +-$LATEX2HTMLSTYLES="/usr/local/lib/texmf/latex2html/styles" ++$LATEX2HTMLSTYLES="/opt/csw/share/lib/latex2html/styles" + unless $LATEX2HTMLSTYLES; + + # Location for TeX style files etc. + # $TEXINPUTS is read from the environment if not explicitly supplied + $TEXINPUTS=$ENV{'TEXINPUTS'} unless $TEXINPUTS; +-$TEXINPUTS=".:/usr/local/lib/texmf/tex//" unless $TEXINPUTS; ++$TEXINPUTS=".:/opt/csw/share/texmf-local/tex//" unless $TEXINPUTS; + + # Location for BibTeX Bibliography databases + # $BIBINPUTS is read from the environment if not explicitly supplied + $BIBINPUTS=$ENV{'BIBINPUTS'} unless $BIBINPUTS; +-$BIBINPUTS=".:/usr/local/lib/texmf/bibtex/bib/" unless $BIBINPUTS; ++$BIBINPUTS=".:/opt/csw/share/texmf-local/bibtex/bib/" unless $BIBINPUTS; + + # Location for BibTeX Bibliography styles (in addition to $TEXINPUTS) + # $BSTINPUTS is read from the environment if not explicitly supplied + $BSTINPUTS=$ENV{'BSTINPUTS'} unless $BSTINPUTS; +-$BSTINPUTS="/usr/local/lib/texmf/bibtex/bst/" unless $BSTINPUTS; ++$BSTINPUTS="/opt/csw/share/texmf-local/bibtex/bst/" unless $BSTINPUTS; + + # The lowest sectioning command at which to create segments + # corresponds to -l option +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/0028-Call-environment-defined-Perl.patch =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/0028-Call-environment-defined-Perl.patch (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/0028-Call-environment-defined-Perl.patch 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,45 @@ +From e796cb64140aa16bbabc886c29e847234c05632f Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Wed, 18 Jul 2012 15:25:50 +0200 +Subject: [PATCH] Call environment defined Perl + +Inspired by debian-install.patch +--- + cweb2html/cweb2html | 2 +- + cweb2html/makemake.pl | 2 +- + makemap | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/cweb2html/cweb2html b/cweb2html/cweb2html +index 19984c5..85fe655 100755 +--- a/cweb2html/cweb2html ++++ b/cweb2html/cweb2html +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#! /usr/bin/env perl + + ################################################################################ + # Copyright 1998-1999 by Jens Lippmann (lippmann at rbg.informatik.th-darmstadt.de) +diff --git a/cweb2html/makemake.pl b/cweb2html/makemake.pl +index f517b6a..2a6c2a6 100644 +--- a/cweb2html/makemake.pl ++++ b/cweb2html/makemake.pl +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#! /usr/bin/env perl + + ################################################################################ + # Copyright 1998-1999 by Jens Lippmann (lippmann at rbg.informatik.tu-darmstadt.de) +diff --git a/makemap b/makemap +index 8a097df..0544ff0 100755 +--- a/makemap ++++ b/makemap +@@ -1,4 +1,4 @@ +-#!/usr/bin/perl ++#! /usr/bin/env perl + ###!/usr/local/bin/perl + + $dd = '/'; # directory-delimiter +-- +1.7.10.3 + Added: csw/mgar/pkg/latex2html/trunk/files/abnt.perl =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/abnt.perl (rev 0) +++ csw/mgar/pkg/latex2html/trunk/files/abnt.perl 2012-07-18 14:10:25 UTC (rev 18789) @@ -0,0 +1,41 @@ @@ 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 pfelecan at users.sourceforge.net Wed Jul 18 16:18:10 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 18 Jul 2012 14:18:10 +0000 Subject: [csw-devel] SF.net SVN: gar:[18790] csw/mgar/pkg/latex2html/trunk/Makefile Message-ID: Revision: 18790 http://gar.svn.sourceforge.net/gar/?rev=18790&view=rev Author: pfelecan Date: 2012-07-18 14:18:10 +0000 (Wed, 18 Jul 2012) Log Message: ----------- latex2html/trunk: the package is architecture neutral Modified Paths: -------------- csw/mgar/pkg/latex2html/trunk/Makefile Modified: csw/mgar/pkg/latex2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/latex2html/trunk/Makefile 2012-07-18 14:10:25 UTC (rev 18789) +++ csw/mgar/pkg/latex2html/trunk/Makefile 2012-07-18 14:18:10 UTC (rev 18790) @@ -74,6 +74,8 @@ RUNTIME_DEP_PKGS += CSWnetpbm RUNTIME_DEP_PKGS += CSWtetex +ARCHALL = 1 + include gar/category.mk build-nominal: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 18 16:42:20 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 18 Jul 2012 14:42:20 +0000 Subject: [csw-devel] SF.net SVN: gar:[18791] csw/mgar/pkg/latex2html/trunk Message-ID: Revision: 18791 http://gar.svn.sourceforge.net/gar/?rev=18791&view=rev Author: pfelecan Date: 2012-07-18 14:42:20 +0000 (Wed, 18 Jul 2012) Log Message: ----------- latex2html/trunk: verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/latex2html/trunk/Makefile csw/mgar/pkg/latex2html/trunk/files/abnt.perl Modified: csw/mgar/pkg/latex2html/trunk/Makefile =================================================================== --- csw/mgar/pkg/latex2html/trunk/Makefile 2012-07-18 14:18:10 UTC (rev 18790) +++ csw/mgar/pkg/latex2html/trunk/Makefile 2012-07-18 14:42:20 UTC (rev 18791) @@ -70,10 +70,28 @@ LICENSE = LICENSE RUNTIME_DEP_PKGS += CSWgs +CHECKPKG_OVERRIDES_CSWlatex2html += surplus-dependency|CSWgs RUNTIME_DEP_PKGS += CSWperl RUNTIME_DEP_PKGS += CSWnetpbm +CHECKPKG_OVERRIDES_CSWlatex2html += surplus-dependency|CSWnetpbm RUNTIME_DEP_PKGS += CSWtetex +CHECKPKG_OVERRIDES_CSWlatex2html += surplus-dependency|CSWtetex +# only in comments: +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/lib/l2hconf.pm +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/lib/latex2html/makemap +# TODO: explore packaging of itrans; ignore for the moment as we can +# set the environment manually +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/lib/latex2html/IndicTeX-HTML/itrans.perl +# the following are innocuous: +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/lib/latex2html/foilhtml/foilhtml.dtx +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/lib/latex2html/foilhtml/readme.v12 +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/lib/latex2html/cweb2html/Makefile +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/doc/latex2html/manual.ps +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/doc/latex2html/manual/Pnode1.html +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/doc/latex2html/manual/Snode4.html +CHECKPKG_OVERRIDES_CSWlatex2html += file-with-bad-content|/usr/local|root/opt/csw/share/doc/latex2html/manual/Mnode9.html + ARCHALL = 1 include gar/category.mk Modified: csw/mgar/pkg/latex2html/trunk/files/abnt.perl =================================================================== --- csw/mgar/pkg/latex2html/trunk/files/abnt.perl 2012-07-18 14:18:10 UTC (rev 18790) +++ csw/mgar/pkg/latex2html/trunk/files/abnt.perl 2012-07-18 14:42:20 UTC (rev 18791) @@ -1,6 +1,6 @@ package main; -require "/usr/share/latex2html/styles/article.perl"; +require "/opt/csw/share/lib/latex2html/styles/article.perl"; sub do_abnt_brazil { do_babel_portuges; 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 Jul 18 19:03:06 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 17:03:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[18792] csw/mgar/pkg/cpan/AppConfig/trunk Message-ID: Revision: 18792 http://gar.svn.sourceforge.net/gar/?rev=18792&view=rev Author: dmichelsen Date: 2012-07-18 17:03:05 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/AppConfig/trunk: Update to makemake and sanitize package name Modified Paths: -------------- csw/mgar/pkg/cpan/AppConfig/trunk/Makefile csw/mgar/pkg/cpan/AppConfig/trunk/checksums Removed Paths: ------------- csw/mgar/pkg/cpan/AppConfig/trunk/files/COPYING csw/mgar/pkg/cpan/AppConfig/trunk/files/CSWpmappconfig.gspec Modified: csw/mgar/pkg/cpan/AppConfig/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/AppConfig/trunk/Makefile 2012-07-18 14:42:20 UTC (rev 18791) +++ csw/mgar/pkg/cpan/AppConfig/trunk/Makefile 2012-07-18 17:03:05 UTC (rev 18792) @@ -4,19 +4,19 @@ GARTYPE = v2 AUTHOR = ABW -DESCRIPTION = Perl5 module for configuration files and command line arguments. +DESCRIPTION = Modules for reading configuration files and parsing command line arguments define BLURB - AppConfig is a Perl5 module for managing application configuration - information. It maintains the state of any number of variables and provides - methods for parsing configuration files, command line arguments and CGI - script parameters. endef -DISTFILES = COPYING +CATALOG_RELEASE = unstable -PACKAGES = CSWpmappconfig -CATALOGNAME = pm_appconfig +LICENSE = LICENSE -ARCHALL = 1 +PACKAGES += CSWpm-appconfig +CATALOGNAME_CSWpm-appconfig = pm_appconfig +SPKG_DESC_CSWpm-appconfig = Modules for reading configuration files and parsing command line arguments +ARCHALL_CSWpm-appconfig = 1 +OBSOLETED_BY_CSWpm-appconfig += CSWpmappconfig +CATALOGNAME_CSWpmappconfig = pm_appconfig_stub include gar/category.mk Modified: csw/mgar/pkg/cpan/AppConfig/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/AppConfig/trunk/checksums 2012-07-18 14:42:20 UTC (rev 18791) +++ csw/mgar/pkg/cpan/AppConfig/trunk/checksums 2012-07-18 17:03:05 UTC (rev 18792) @@ -1,2 +1 @@ 21aa4d1bf70a49a94c2dc9293389b3a0 AppConfig-1.66.tar.gz -57fb71a11d83e6f389561b0071e19a1f COPYING Deleted: csw/mgar/pkg/cpan/AppConfig/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/cpan/AppConfig/trunk/files/COPYING 2012-07-18 14:42:20 UTC (rev 18791) +++ csw/mgar/pkg/cpan/AppConfig/trunk/files/COPYING 2012-07-18 17:03:05 UTC (rev 18792) @@ -1,6 +0,0 @@ -Copyright (C) 1997-2004 Andy Wardley. All Rights Reserved. - -Copyright (C) 1997,1998 Canon Research Centre Europe Ltd. - -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/AppConfig/trunk/files/CSWpmappconfig.gspec =================================================================== --- csw/mgar/pkg/cpan/AppConfig/trunk/files/CSWpmappconfig.gspec 2012-07-18 14:42:20 UTC (rev 18791) +++ csw/mgar/pkg/cpan/AppConfig/trunk/files/CSWpmappconfig.gspec 2012-07-18 17:03:05 UTC (rev 18792) @@ -1,11 +0,0 @@ -%var bitname pm_appconfig -%var pkgname CSWpmappconfig -%var arch all -%include url file://%{PKGLIB}/csw_cpan.gspec -%copyright -Copyright (C) 1997-2004 Andy Wardley. All Rights Reserved. - -Copyright (C) 1997,1998 Canon Research Centre Europe Ltd. - -This module 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 Wed Jul 18 19:04:32 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 17:04:32 +0000 Subject: [csw-devel] SF.net SVN: gar:[18793] csw/mgar/pkg/cpan/Template-Toolkit/trunk Message-ID: Revision: 18793 http://gar.svn.sourceforge.net/gar/?rev=18793&view=rev Author: dmichelsen Date: 2012-07-18 17:04:32 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Template-Toolkit/trunk: Update to 2.24 and sanitize package name Modified Paths: -------------- csw/mgar/pkg/cpan/Template-Toolkit/trunk/Makefile csw/mgar/pkg/cpan/Template-Toolkit/trunk/checksums Modified: csw/mgar/pkg/cpan/Template-Toolkit/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Template-Toolkit/trunk/Makefile 2012-07-18 17:03:05 UTC (rev 18792) +++ csw/mgar/pkg/cpan/Template-Toolkit/trunk/Makefile 2012-07-18 17:04:32 UTC (rev 18793) @@ -1,29 +1,42 @@ NAME = Template-Toolkit -VERSION = 2.22 +VERSION = 2.24 CATEGORIES = cpan GARTYPE = v2 AUTHOR = ABW -DESCRIPTION = Template Toolkit 2 +DESCRIPTION = Comprehensive template processing system define BLURB - This documentation describes the Template module which is the direct Perl - interface into the Template Toolkit. It covers the use of the module and - gives a brief summary of configuration options and template directives. - Please see Template::Manual for the complete reference manual which goes - into much greater depth about the features and use of the Template Toolkit. - The Template::Tutorial is also available as an introductory guide to using - the Template Toolkit. endef -PACKAGES = CSWpmtt2 -CATALOGNAME = pm_tt2 +CATALOG_RELEASE = unstable -BUILD_DEP_PKGS = CSWpmxmldom CSWpmappconfig CSWpmpodpom -RUNTIME_DEP_PKGS = CSWpmxmldom CSWpmappconfig CSWpmpodpom +LICENSE_TEXT = This module is licensed under the perl license -CONFIGURE_ARGS = TT_PREFIX=$(DESTDIR)$(datadir)/tt2 -CONFIGURE_ARGS += TT_ACCEPT=y +PACKAGES += CSWpm-template +CATALOGNAME_CSWpm-template = pm_template +SPKG_DESC_CSWpm-template = Comprehensive template processing system +RUNTIME_DEP_PKGS_CSWpm-template += CSWpm-appconfig +OBSOLETED_BY_CSWpm-template += CSWpmtt2 +CATALOGNAME_CSWpmtt2 = pm_tt2_stub +OBSOLETED_BY_CSWpm-template += CSWpmtt2-common +CATALOGNAME_CSWpmtt2-common = pm_tt2common_stub -FIXCONFIG_DIRS = $(DESTDIR) +# I checked some, all of them were examples, maybe take a closer look at some other time +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/bin/ttree +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man1/ttree.1 +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Template::Manual::Intro.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Template::Provider.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Template::Tools::ttree.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Template::Manual::Config.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Template.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Template::Config.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Template.pm +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Template/Config.pm +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Template/Provider.pm +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Template/Manual/Intro.pod +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Template/Manual/Config.pod +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/local|root/opt/csw/lib/perl/csw/Template/Tools/ttree.pod +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/share|root/opt/csw/share/man/man3/Template::Manual::Config.3perl +CHECKPKG_OVERRIDES_CSWpm-template += file-with-bad-content|/usr/share|root/opt/csw/lib/perl/csw/Template/Manual/Config.pod include gar/category.mk Modified: csw/mgar/pkg/cpan/Template-Toolkit/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Template-Toolkit/trunk/checksums 2012-07-18 17:03:05 UTC (rev 18792) +++ csw/mgar/pkg/cpan/Template-Toolkit/trunk/checksums 2012-07-18 17:04:32 UTC (rev 18793) @@ -1 +1 @@ -d98277f6420e5da6b93d99a8db2b3934 Template-Toolkit-2.22.tar.gz +c25fdab1beebf8818c2e624bc9f9d212 Template-Toolkit-2.24.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 18 22:58:00 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 20:58:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[18794] csw/mgar/pkg/cpan Message-ID: Revision: 18794 http://gar.svn.sourceforge.net/gar/?rev=18794&view=rev Author: dmichelsen Date: 2012-07-18 20:58:00 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Moose/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Moose/ csw/mgar/pkg/cpan/Moose/branches/ csw/mgar/pkg/cpan/Moose/tags/ csw/mgar/pkg/cpan/Moose/trunk/ csw/mgar/pkg/cpan/Moose/trunk/Makefile csw/mgar/pkg/cpan/Moose/trunk/checksums csw/mgar/pkg/cpan/Moose/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Moose/trunk ___________________________________________________________________ Added: svn:ignore + cookies download work Added: csw/mgar/pkg/cpan/Moose/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Moose/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Moose/trunk/Makefile 2012-07-18 20:58:00 UTC (rev 18794) @@ -0,0 +1,38 @@ +NAME = Moose +VERSION = 2.0603 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DOY + +DESCRIPTION = A postmodern object system for Perl 5 +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +BUILD_DEP_PKGS += CSWpm-test-fatal +BUILD_DEP_PKGS += CSWpm-test-requires + +PACKAGES += CSWpm-moose +CATALOGNAME_CSWpm-moose = pm_moose +SPKG_DESC_CSWpm-moose = A postmodern object system for Perl 5 +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-class-load-xs +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-sub-exporter +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-mro-compat +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-data-optlist +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-package-stash +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-sub-name +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-dist-checkconflicts +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-list-moreutils +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-package-stash-xs +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-class-load +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-params-util +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-package-deprecationmanager +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-eval-closure +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-try-tiny +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-task-weaken +RUNTIME_DEP_PKGS_CSWpm-moose += CSWpm-devel-globaldestruction + +include gar/category.mk Added: csw/mgar/pkg/cpan/Moose/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Moose/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Moose/trunk/checksums 2012-07-18 20:58:00 UTC (rev 18794) @@ -0,0 +1 @@ +76b5d3541283e6c5f98e23101d6c783c Moose-2.0603.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 18 23:33:15 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:33:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[18795] csw/mgar/pkg/cpan Message-ID: Revision: 18795 http://gar.svn.sourceforge.net/gar/?rev=18795&view=rev Author: dmichelsen Date: 2012-07-18 21:33:14 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/MooseX-Role-Parameterized/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/MooseX-Role-Parameterized/ csw/mgar/pkg/cpan/MooseX-Role-Parameterized/branches/ csw/mgar/pkg/cpan/MooseX-Role-Parameterized/tags/ csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/ csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/Makefile csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/checksums csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/files/ Property changes on: csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/Makefile 2012-07-18 21:33:14 UTC (rev 18795) @@ -0,0 +1,25 @@ +NAME = MooseX-Role-Parameterized +VERSION = 1.00 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SARTAK + +DESCRIPTION = Roles with composition parameters +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +BUILD_DEP_PKGS += CSWpm-test-fatal +BUILD_DEP_PKGS += CSWpm-moose + +PACKAGES += CSWpm-moosex-role-parameterized +CATALOGNAME_CSWpm-moosex-role-parameterized = pm_moosex_role_parameterized +SPKG_DESC_CSWpm-moosex-role-parameterized = Roles with composition parameters +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-moosex-role-parameterized = 1 +RUNTIME_DEP_PKGS_CSWpm-moosex-role-parameterized += CSWpm-moose + +include gar/category.mk Added: csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/MooseX-Role-Parameterized/trunk/checksums 2012-07-18 21:33:14 UTC (rev 18795) @@ -0,0 +1 @@ +8afd9b244bf8b2f60ef18c2fd94d821a MooseX-Role-Parameterized-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 Wed Jul 18 23:35:43 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:35:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[18796] csw/mgar/pkg/cpan Message-ID: Revision: 18796 http://gar.svn.sourceforge.net/gar/?rev=18796&view=rev Author: dmichelsen Date: 2012-07-18 21:35:43 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Text-Aspell/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Text-Aspell/ csw/mgar/pkg/cpan/Text-Aspell/branches/ csw/mgar/pkg/cpan/Text-Aspell/tags/ csw/mgar/pkg/cpan/Text-Aspell/trunk/ csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile csw/mgar/pkg/cpan/Text-Aspell/trunk/checksums csw/mgar/pkg/cpan/Text-Aspell/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Text-Aspell/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile 2012-07-18 21:35:43 UTC (rev 18796) @@ -0,0 +1,18 @@ +NAME = Text-Aspell +VERSION = 0.09 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = HANK + +DESCRIPTION = Perl interface to the GNU Aspell library +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-text-aspell +SPKG_DESC_CSWpm-text-aspell = Perl interface to the GNU Aspell library + +include gar/category.mk Added: csw/mgar/pkg/cpan/Text-Aspell/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Text-Aspell/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Text-Aspell/trunk/checksums 2012-07-18 21:35:43 UTC (rev 18796) @@ -0,0 +1 @@ +67ec8b9c4769969fa714fc25c9c73832 Text-Aspell-0.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 Wed Jul 18 23:38:24 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:38:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[18797] csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile Message-ID: Revision: 18797 http://gar.svn.sourceforge.net/gar/?rev=18797&view=rev Author: dmichelsen Date: 2012-07-18 21:38:24 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Text-Aspell/trunk: Add missing dependency Modified Paths: -------------- csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile Modified: csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile 2012-07-18 21:35:43 UTC (rev 18796) +++ csw/mgar/pkg/cpan/Text-Aspell/trunk/Makefile 2012-07-18 21:38:24 UTC (rev 18797) @@ -14,5 +14,6 @@ PACKAGES += CSWpm-text-aspell SPKG_DESC_CSWpm-text-aspell = Perl interface to the GNU Aspell library +RUNTIME_DEP_PKGS_CSWpm-text-aspell += CSWaspell include gar/category.mk 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 Jul 18 23:43:19 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:43:19 +0000 Subject: [csw-devel] SF.net SVN: gar:[18798] csw/mgar/pkg/nagios_plugins/trunk/Makefile Message-ID: Revision: 18798 http://gar.svn.sourceforge.net/gar/?rev=18798&view=rev Author: j_arndt Date: 2012-07-18 21:43:19 +0000 (Wed, 18 Jul 2012) Log Message: ----------- nagios_plugins/trunk: fixed names of gar variables Modified Paths: -------------- csw/mgar/pkg/nagios_plugins/trunk/Makefile Modified: csw/mgar/pkg/nagios_plugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-18 21:38:24 UTC (rev 18797) +++ csw/mgar/pkg/nagios_plugins/trunk/Makefile 2012-07-18 21:43:19 UTC (rev 18798) @@ -10,10 +10,10 @@ # PACKAGES = CSWnagios-plugins -CATALOG_NAME_CSWnagios-plugins = nagios_plugins +CATALOGNAME_CSWnagios-plugins = nagios_plugins OBSOLETED_BY_CSWnagios-plugins = CSWnagiosp -CATALOG_NAME_CSWnagiosp = nagiosp_stub +CATALOGNAME_CSWnagiosp = nagiosp_stub SPKG_DESC_CSWnagios-plugins = Plugins for Nagios define BLURB 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 Jul 18 23:44:27 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:44:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[18799] csw/mgar/pkg/cpan Message-ID: Revision: 18799 http://gar.svn.sourceforge.net/gar/?rev=18799&view=rev Author: dmichelsen Date: 2012-07-18 21:44:26 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DateTime-Format-DateParse/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-DateParse/ csw/mgar/pkg/cpan/DateTime-Format-DateParse/branches/ csw/mgar/pkg/cpan/DateTime-Format-DateParse/tags/ csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/ csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/Makefile 2012-07-18 21:44:26 UTC (rev 18799) @@ -0,0 +1,29 @@ +NAME = DateTime-Format-DateParse +VERSION = 0.05 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JHOBLITT + +DESCRIPTION = Parses Date::Parse compatible formats +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-datetime-format-dateparse +CATALOGNAME_CSWpm-datetime-format-dateparse = pm_datetime_format_dateparse +SPKG_DESC_CSWpm-datetime-format-dateparse = Parses Date::Parse compatible formats +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-datetime-format-dateparse = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-format-dateparse += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-dateparse += CSWpm-date-parse +RUNTIME_DEP_PKGS_CSWpm-datetime-format-dateparse += CSWpm-datetime-timezone + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-DateParse/trunk/checksums 2012-07-18 21:44:26 UTC (rev 18799) @@ -0,0 +1 @@ +a9a66f74aeba7c45730430dbf9b37cfd DateTime-Format-DateParse-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 Wed Jul 18 23:47:56 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:47:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[18800] csw/mgar/pkg/cpan Message-ID: Revision: 18800 http://gar.svn.sourceforge.net/gar/?rev=18800&view=rev Author: dmichelsen Date: 2012-07-18 21:47:55 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DateTime-Format-Strptime/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-Strptime/ csw/mgar/pkg/cpan/DateTime-Format-Strptime/branches/ csw/mgar/pkg/cpan/DateTime-Format-Strptime/tags/ csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/ csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/Makefile 2012-07-18 21:47:55 UTC (rev 18800) @@ -0,0 +1,24 @@ +NAME = DateTime-Format-Strptime +VERSION = 1.52 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DROLSKY + +DESCRIPTION = Parse and format strp and strf time patterns +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-datetime-format-strptime +CATALOGNAME_CSWpm-datetime-format-strptime = pm_datetime_format_strptime +SPKG_DESC_CSWpm-datetime-format-strptime = Parse and format strp and strf time patterns +ARCHALL_CSWpm-datetime-format-strptime = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-format-strptime += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-strptime += CSWpm-params-validate +RUNTIME_DEP_PKGS_CSWpm-datetime-format-strptime += CSWpm-datetime-locale +RUNTIME_DEP_PKGS_CSWpm-datetime-format-strptime += CSWpm-datetime-timezone + +include gar/category.mk Added: csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Strptime/trunk/checksums 2012-07-18 21:47:55 UTC (rev 18800) @@ -0,0 +1 @@ +525dfc95c715ec9a0c6bc677c721e876 DateTime-Format-Strptime-1.52.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 18 23:55:06 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:55:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[18801] csw/mgar/pkg/cpan Message-ID: Revision: 18801 http://gar.svn.sourceforge.net/gar/?rev=18801&view=rev Author: dmichelsen Date: 2012-07-18 21:55:06 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Test-MockModule/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Test-MockModule/ csw/mgar/pkg/cpan/Test-MockModule/branches/ csw/mgar/pkg/cpan/Test-MockModule/tags/ csw/mgar/pkg/cpan/Test-MockModule/trunk/ csw/mgar/pkg/cpan/Test-MockModule/trunk/Makefile csw/mgar/pkg/cpan/Test-MockModule/trunk/checksums csw/mgar/pkg/cpan/Test-MockModule/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Test-MockModule/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Test-MockModule/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Test-MockModule/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Test-MockModule/trunk/Makefile 2012-07-18 21:55:06 UTC (rev 18801) @@ -0,0 +1,21 @@ +NAME = Test-MockModule +VERSION = 0.05 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = SIMONFLK + +DESCRIPTION = +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-test-mockmodule +CATALOGNAME_CSWpm-test-mockmodule = pm_test_mockmodule +SPKG_DESC_CSWpm-test-mockmodule = +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-test-mockmodule = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Test-MockModule/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Test-MockModule/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Test-MockModule/trunk/checksums 2012-07-18 21:55:06 UTC (rev 18801) @@ -0,0 +1 @@ +1b013aeeb221f83e7f325a2f98169296 Test-MockModule-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 Wed Jul 18 23:59:31 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 21:59:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[18802] csw/mgar/pkg/cpan Message-ID: Revision: 18802 http://gar.svn.sourceforge.net/gar/?rev=18802&view=rev Author: dmichelsen Date: 2012-07-18 21:59:31 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DBIx-Connector/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DBIx-Connector/ csw/mgar/pkg/cpan/DBIx-Connector/branches/ csw/mgar/pkg/cpan/DBIx-Connector/tags/ csw/mgar/pkg/cpan/DBIx-Connector/trunk/ csw/mgar/pkg/cpan/DBIx-Connector/trunk/Makefile csw/mgar/pkg/cpan/DBIx-Connector/trunk/checksums csw/mgar/pkg/cpan/DBIx-Connector/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DBIx-Connector/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DBIx-Connector/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DBIx-Connector/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DBIx-Connector/trunk/Makefile 2012-07-18 21:59:31 UTC (rev 18802) @@ -0,0 +1,29 @@ +NAME = DBIx-Connector +VERSION = 0.52 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DWHEELER + +DESCRIPTION = Fast, safe DBI connection and transaction management +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +BUILD_DEP_PKGS += CSWpm-test-mockmodule + +PACKAGES += CSWpm-dbix-connector +CATALOGNAME_CSWpm-dbix-connector = pm_dbix_connector +SPKG_DESC_CSWpm-dbix-connector = Fast, safe DBI connection and transaction management +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-dbix-connector = 1 +RUNTIME_DEP_PKGS_CSWpm-dbix-connector += CSWpm-dbi + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/DBIx-Connector/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DBIx-Connector/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DBIx-Connector/trunk/checksums 2012-07-18 21:59:31 UTC (rev 18802) @@ -0,0 +1 @@ +d9edfae00213a9d9e89736d08f33dfe7 DBIx-Connector-0.52.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 Jul 19 00:04:41 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:04:41 +0000 Subject: [csw-devel] SF.net SVN: gar:[18803] csw/mgar/pkg/cpan Message-ID: Revision: 18803 http://gar.svn.sourceforge.net/gar/?rev=18803&view=rev Author: dmichelsen Date: 2012-07-18 22:04:41 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Memoize-Memcached/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Memoize-Memcached/ csw/mgar/pkg/cpan/Memoize-Memcached/branches/ csw/mgar/pkg/cpan/Memoize-Memcached/tags/ csw/mgar/pkg/cpan/Memoize-Memcached/trunk/ csw/mgar/pkg/cpan/Memoize-Memcached/trunk/Makefile csw/mgar/pkg/cpan/Memoize-Memcached/trunk/checksums csw/mgar/pkg/cpan/Memoize-Memcached/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Memoize-Memcached/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Memoize-Memcached/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Memoize-Memcached/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Memoize-Memcached/trunk/Makefile 2012-07-18 22:04:41 UTC (rev 18803) @@ -0,0 +1,21 @@ +NAME = Memoize-Memcached +VERSION = 0.03 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DTRISCHUK + +DESCRIPTION = Use a memcached cache to memoize functions +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the unknown license + +PACKAGES += CSWpm-memoize-memcached +CATALOGNAME_CSWpm-memoize-memcached = pm_memoize_memcached +SPKG_DESC_CSWpm-memoize-memcached = Use a memcached cache to memoize functions +ARCHALL_CSWpm-memoize-memcached = 1 +RUNTIME_DEP_PKGS_CSWpm-memoize-memcached += CSWpm-cache-memcached + +include gar/category.mk Added: csw/mgar/pkg/cpan/Memoize-Memcached/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Memoize-Memcached/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Memoize-Memcached/trunk/checksums 2012-07-18 22:04:41 UTC (rev 18803) @@ -0,0 +1 @@ +74117cfc00a7c4915b169eaae0c8b91c Memoize-Memcached-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 Thu Jul 19 00:13:56 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:13:56 +0000 Subject: [csw-devel] SF.net SVN: gar:[18804] csw/mgar/pkg/cpan Message-ID: Revision: 18804 http://gar.svn.sourceforge.net/gar/?rev=18804&view=rev Author: dmichelsen Date: 2012-07-18 22:13:55 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Clone-PP/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Clone-PP/ csw/mgar/pkg/cpan/Clone-PP/branches/ csw/mgar/pkg/cpan/Clone-PP/tags/ csw/mgar/pkg/cpan/Clone-PP/trunk/ csw/mgar/pkg/cpan/Clone-PP/trunk/Makefile csw/mgar/pkg/cpan/Clone-PP/trunk/checksums csw/mgar/pkg/cpan/Clone-PP/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Clone-PP/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Clone-PP/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Clone-PP/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Clone-PP/trunk/Makefile 2012-07-18 22:13:55 UTC (rev 18804) @@ -0,0 +1,21 @@ +NAME = Clone-PP +VERSION = 1.02 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = EVO + +DESCRIPTION = +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-clone-pp +CATALOGNAME_CSWpm-clone-pp = pm_clone_pp +SPKG_DESC_CSWpm-clone-pp = +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-clone-pp = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Clone-PP/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Clone-PP/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Clone-PP/trunk/checksums 2012-07-18 22:13:55 UTC (rev 18804) @@ -0,0 +1 @@ +8dd40e1072232006ff0242a823897e09 Clone-PP-1.02.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 Jul 19 00:19:23 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:19:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[18805] csw/mgar/pkg/cpan Message-ID: Revision: 18805 http://gar.svn.sourceforge.net/gar/?rev=18805&view=rev Author: dmichelsen Date: 2012-07-18 22:19:22 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DateTime-Format-Builder/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-Builder/ csw/mgar/pkg/cpan/DateTime-Format-Builder/branches/ csw/mgar/pkg/cpan/DateTime-Format-Builder/tags/ csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/ csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/Makefile 2012-07-18 22:19:22 UTC (rev 18805) @@ -0,0 +1,30 @@ +NAME = DateTime-Format-Builder +VERSION = 0.80 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DROLSKY + +DESCRIPTION = Create DateTime parser classes and objects +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = COPYING + +PACKAGES += CSWpm-datetime-format-builder +CATALOGNAME_CSWpm-datetime-format-builder = pm_datetime_format_builder +SPKG_DESC_CSWpm-datetime-format-builder = Create DateTime parser classes and objects +ARCHALL_CSWpm-datetime-format-builder = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-format-builder += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-builder += CSWpm-task-weaken +RUNTIME_DEP_PKGS_CSWpm-datetime-format-builder += CSWpm-params-validate +RUNTIME_DEP_PKGS_CSWpm-datetime-format-builder += CSWpm-datetime-format-strptime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-builder += CSWpmclassfactutil + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Builder/trunk/checksums 2012-07-18 22:19:22 UTC (rev 18805) @@ -0,0 +1 @@ +f6c5d5a17b5b7478ff555a2d3cce5136 DateTime-Format-Builder-0.80.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 Jul 19 00:25:18 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:25:18 +0000 Subject: [csw-devel] SF.net SVN: gar:[18806] csw/mgar/pkg/cpan Message-ID: Revision: 18806 http://gar.svn.sourceforge.net/gar/?rev=18806&view=rev Author: dmichelsen Date: 2012-07-18 22:25:18 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DateTime-Format-MySQL/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-MySQL/ csw/mgar/pkg/cpan/DateTime-Format-MySQL/branches/ csw/mgar/pkg/cpan/DateTime-Format-MySQL/tags/ csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/ csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/Makefile 2012-07-18 22:25:18 UTC (rev 18806) @@ -0,0 +1,28 @@ +NAME = DateTime-Format-MySQL +VERSION = 0.04 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DROLSKY + +DESCRIPTION = Parse and format MySQL dates and times +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-datetime-format-mysql +CATALOGNAME_CSWpm-datetime-format-mysql = pm_datetime_format_mysql +SPKG_DESC_CSWpm-datetime-format-mysql = Parse and format MySQL dates and times +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-datetime-format-mysql = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-format-mysql += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-mysql += CSWpm-datetime-format-builder + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-MySQL/trunk/checksums 2012-07-18 22:25:18 UTC (rev 18806) @@ -0,0 +1 @@ +f52377ecdeb19055ae64037fb1ef530e DateTime-Format-MySQL-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 Thu Jul 19 00:27:15 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:27:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[18807] csw/mgar/pkg/cpan Message-ID: Revision: 18807 http://gar.svn.sourceforge.net/gar/?rev=18807&view=rev Author: dmichelsen Date: 2012-07-18 22:27:14 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DateTime-Format-Pg/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-Pg/ csw/mgar/pkg/cpan/DateTime-Format-Pg/branches/ csw/mgar/pkg/cpan/DateTime-Format-Pg/tags/ csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/ csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/Makefile 2012-07-18 22:27:14 UTC (rev 18807) @@ -0,0 +1,23 @@ +NAME = DateTime-Format-Pg +VERSION = 0.16007 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = DMAKI + +DESCRIPTION = Parse and format PostgreSQL dates and times +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE = LICENSE + +PACKAGES += CSWpm-datetime-format-pg +CATALOGNAME_CSWpm-datetime-format-pg = pm_datetime_format_pg +SPKG_DESC_CSWpm-datetime-format-pg = Parse and format PostgreSQL dates and times +ARCHALL_CSWpm-datetime-format-pg = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-format-pg += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-pg += CSWpm-datetime-timezone +RUNTIME_DEP_PKGS_CSWpm-datetime-format-pg += CSWpm-datetime-format-builder + +include gar/category.mk Added: csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Pg/trunk/checksums 2012-07-18 22:27:14 UTC (rev 18807) @@ -0,0 +1 @@ +6fe01e4e42a3b57b9f92e738b26a50f9 DateTime-Format-Pg-0.16007.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 Jul 19 00:28:57 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:28:57 +0000 Subject: [csw-devel] SF.net SVN: gar:[18808] csw/mgar/pkg/cpan Message-ID: Revision: 18808 http://gar.svn.sourceforge.net/gar/?rev=18808&view=rev Author: dmichelsen Date: 2012-07-18 22:28:57 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Convert-NLS_DATE_FORMAT/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/ csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/branches/ csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/tags/ csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/ csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/Makefile csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/checksums csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/Makefile 2012-07-18 22:28:57 UTC (rev 18808) @@ -0,0 +1,21 @@ +NAME = Convert-NLS_DATE_FORMAT +VERSION = 0.05 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = KOLIBRIE + +DESCRIPTION = Convert Oracle NLS_DATE_FORMAT <-> strftime Format Strings +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-convert-nls-date-format +CATALOGNAME_CSWpm-convert-nls-date-format = pm_convert_nls_date_format +SPKG_DESC_CSWpm-convert-nls-date-format = Convert Oracle NLS_DATE_FORMAT <-> strftime Format Strings +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-convert-nls-date-format = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Convert-NLS_DATE_FORMAT/trunk/checksums 2012-07-18 22:28:57 UTC (rev 18808) @@ -0,0 +1 @@ +ac2ba2b65b9002506d5e2ae87adecd04 Convert-NLS_DATE_FORMAT-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 Thu Jul 19 00:31:08 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:31:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[18809] csw/mgar/pkg/cpan Message-ID: Revision: 18809 http://gar.svn.sourceforge.net/gar/?rev=18809&view=rev Author: dmichelsen Date: 2012-07-18 22:31:08 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Time-Clock/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Time-Clock/ csw/mgar/pkg/cpan/Time-Clock/branches/ csw/mgar/pkg/cpan/Time-Clock/tags/ csw/mgar/pkg/cpan/Time-Clock/trunk/ csw/mgar/pkg/cpan/Time-Clock/trunk/Makefile csw/mgar/pkg/cpan/Time-Clock/trunk/checksums csw/mgar/pkg/cpan/Time-Clock/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Time-Clock/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Time-Clock/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Time-Clock/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Time-Clock/trunk/Makefile 2012-07-18 22:31:08 UTC (rev 18809) @@ -0,0 +1,20 @@ +NAME = Time-Clock +VERSION = 1.02 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JSIRACUSA + +DESCRIPTION = Twenty-four hour clock object with nanosecond precision +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-time-clock +CATALOGNAME_CSWpm-time-clock = pm_time_clock +SPKG_DESC_CSWpm-time-clock = Twenty-four hour clock object with nanosecond precision +ARCHALL_CSWpm-time-clock = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Time-Clock/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Time-Clock/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Time-Clock/trunk/checksums 2012-07-18 22:31:08 UTC (rev 18809) @@ -0,0 +1 @@ +6a5c938edd37f5e4da35454cec6eae3b Time-Clock-1.02.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 Jul 19 00:34:36 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:34:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[18810] csw/mgar/pkg/cpan Message-ID: Revision: 18810 http://gar.svn.sourceforge.net/gar/?rev=18810&view=rev Author: dmichelsen Date: 2012-07-18 22:34:36 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/SQL-ReservedWords/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/SQL-ReservedWords/ csw/mgar/pkg/cpan/SQL-ReservedWords/branches/ csw/mgar/pkg/cpan/SQL-ReservedWords/tags/ csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/ csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/Makefile csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/checksums csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/files/ Property changes on: csw/mgar/pkg/cpan/SQL-ReservedWords/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/Makefile 2012-07-18 22:34:36 UTC (rev 18810) @@ -0,0 +1,27 @@ +NAME = SQL-ReservedWords +VERSION = 0.7 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = CHANSEN + +DESCRIPTION = Reserved SQL words by ANSI/ISO +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-sql-reservedwords +CATALOGNAME_CSWpm-sql-reservedwords = pm_sql_reservedwords +SPKG_DESC_CSWpm-sql-reservedwords = Reserved SQL words by ANSI/ISO +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-sql-reservedwords = 1 +RUNTIME_DEP_PKGS_CSWpm-sql-reservedwords += CSWpm-sub-exporter + +CONFIGURE_SCRIPTS = $(WORKSRC)/Build.PL +BUILD_SCRIPTS = $(WORKSRC)/Build +TEST_SCRIPTS = $(WORKSRC)/Build +INSTALL_SCRIPTS = $(WORKSRC)/Build + +include gar/category.mk Added: csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/SQL-ReservedWords/trunk/checksums 2012-07-18 22:34:36 UTC (rev 18810) @@ -0,0 +1 @@ +d5227b8c5fe43dd6aafc59196d4e88a5 SQL-ReservedWords-0.7.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 Jul 19 00:37:00 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:37:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[18811] csw/mgar/pkg/cpan Message-ID: Revision: 18811 http://gar.svn.sourceforge.net/gar/?rev=18811&view=rev Author: dmichelsen Date: 2012-07-18 22:37:00 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/DateTime-Format-Oracle/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DateTime-Format-Oracle/ csw/mgar/pkg/cpan/DateTime-Format-Oracle/branches/ csw/mgar/pkg/cpan/DateTime-Format-Oracle/tags/ csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/ csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/Makefile csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/checksums csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/Makefile 2012-07-18 22:37:00 UTC (rev 18811) @@ -0,0 +1,24 @@ +NAME = DateTime-Format-Oracle +VERSION = 0.06 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = KOLIBRIE + +DESCRIPTION = Parse and format Oracle dates and timestamps +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license + +PACKAGES += CSWpm-datetime-format-oracle +CATALOGNAME_CSWpm-datetime-format-oracle = pm_datetime_format_oracle +SPKG_DESC_CSWpm-datetime-format-oracle = Parse and format Oracle dates and timestamps +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-datetime-format-oracle = 1 +RUNTIME_DEP_PKGS_CSWpm-datetime-format-oracle += CSWpm-convert-nls-date-format +RUNTIME_DEP_PKGS_CSWpm-datetime-format-oracle += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-datetime-format-oracle += CSWpm-datetime-format-builder + +include gar/category.mk Added: csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DateTime-Format-Oracle/trunk/checksums 2012-07-18 22:37:00 UTC (rev 18811) @@ -0,0 +1 @@ +a288d1b06d808f98bf38d472e64f6dda DateTime-Format-Oracle-0.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 Jul 19 00:42:17 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:42:17 +0000 Subject: [csw-devel] SF.net SVN: gar:[18812] csw/mgar/pkg/cpan Message-ID: Revision: 18812 http://gar.svn.sourceforge.net/gar/?rev=18812&view=rev Author: dmichelsen Date: 2012-07-18 22:42:17 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Rose-Object/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Rose-Object/ csw/mgar/pkg/cpan/Rose-Object/branches/ csw/mgar/pkg/cpan/Rose-Object/tags/ csw/mgar/pkg/cpan/Rose-Object/trunk/ csw/mgar/pkg/cpan/Rose-Object/trunk/Makefile csw/mgar/pkg/cpan/Rose-Object/trunk/checksums csw/mgar/pkg/cpan/Rose-Object/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Rose-Object/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Rose-Object/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Rose-Object/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Rose-Object/trunk/Makefile 2012-07-18 22:42:17 UTC (rev 18812) @@ -0,0 +1,20 @@ +NAME = Rose-Object +VERSION = 0.859 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JSIRACUSA + +DESCRIPTION = A simple object base class +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-rose-object +CATALOGNAME_CSWpm-rose-object = pm_rose_object +SPKG_DESC_CSWpm-rose-object = A simple object base class +ARCHALL_CSWpm-rose-object = 1 + +include gar/category.mk Added: csw/mgar/pkg/cpan/Rose-Object/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Rose-Object/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Rose-Object/trunk/checksums 2012-07-18 22:42:17 UTC (rev 18812) @@ -0,0 +1 @@ +f29945067ab64453be3f50c70e4daf85 Rose-Object-0.859.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 Jul 19 00:51:01 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 22:51:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[18813] csw/mgar/pkg/cpan Message-ID: Revision: 18813 http://gar.svn.sourceforge.net/gar/?rev=18813&view=rev Author: dmichelsen Date: 2012-07-18 22:51:00 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Rose-DateTime/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Rose-DateTime/ csw/mgar/pkg/cpan/Rose-DateTime/branches/ csw/mgar/pkg/cpan/Rose-DateTime/tags/ csw/mgar/pkg/cpan/Rose-DateTime/trunk/ csw/mgar/pkg/cpan/Rose-DateTime/trunk/Makefile csw/mgar/pkg/cpan/Rose-DateTime/trunk/checksums csw/mgar/pkg/cpan/Rose-DateTime/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Rose-DateTime/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Rose-DateTime/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Rose-DateTime/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Rose-DateTime/trunk/Makefile 2012-07-18 22:51:00 UTC (rev 18813) @@ -0,0 +1,22 @@ +NAME = Rose-DateTime +VERSION = 0.537 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JSIRACUSA + +DESCRIPTION = DateTime helper functions and parser objects +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the unknown license + +PACKAGES += CSWpm-rose-datetime +CATALOGNAME_CSWpm-rose-datetime = pm_rose_datetime +SPKG_DESC_CSWpm-rose-datetime = DateTime helper functions and parser objects +ARCHALL_CSWpm-rose-datetime = 1 +RUNTIME_DEP_PKGS_CSWpm-rose-datetime += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-rose-datetime += CSWpm-rose-object + +include gar/category.mk Added: csw/mgar/pkg/cpan/Rose-DateTime/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Rose-DateTime/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Rose-DateTime/trunk/checksums 2012-07-18 22:51:00 UTC (rev 18813) @@ -0,0 +1 @@ +3215b1185f8668f257a324efb464853e Rose-DateTime-0.537.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 Jul 19 01:03:01 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 18 Jul 2012 23:03:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[18814] csw/mgar/pkg/cpan/Clone/trunk Message-ID: Revision: 18814 http://gar.svn.sourceforge.net/gar/?rev=18814&view=rev Author: dmichelsen Date: 2012-07-18 23:03:01 +0000 (Wed, 18 Jul 2012) Log Message: ----------- cpan/Clone/trunk: Update to makemake and sanitize package name Modified Paths: -------------- csw/mgar/pkg/cpan/Clone/trunk/Makefile csw/mgar/pkg/cpan/Clone/trunk/checksums Modified: csw/mgar/pkg/cpan/Clone/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/Makefile 2012-07-18 22:51:00 UTC (rev 18813) +++ csw/mgar/pkg/cpan/Clone/trunk/Makefile 2012-07-18 23:03:01 UTC (rev 18814) @@ -4,14 +4,18 @@ GARTYPE = v2 AUTHOR = RDF -DESCRIPTION = Recursively copy Perl datatypes +DESCRIPTION = Recursive copy of nested objects 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 -PACKAGES = CSWpmclone -CATALOGNAME = pm_clone +CATALOG_RELEASE = unstable +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-clone +CATALOGNAME_CSWpm-clone = pm_clone +SPKG_DESC_CSWpm-clone = Recursive copy of nested objects +OBSOLETED_BY_CSWpm-clone += CSWpmclone +CATALOGNAME_CSWpmclone = pm_clone_stub + include gar/category.mk Modified: csw/mgar/pkg/cpan/Clone/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Clone/trunk/checksums 2012-07-18 22:51:00 UTC (rev 18813) +++ csw/mgar/pkg/cpan/Clone/trunk/checksums 2012-07-18 23:03:01 UTC (rev 18814) @@ -1 +1 @@ -65f34e7280d7b7dfb72ab6224e5767f5 download/Clone-0.31.tar.gz +65f34e7280d7b7dfb72ab6224e5767f5 Clone-0.31.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 19 10:33:43 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 19 Jul 2012 08:33:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[18815] csw/mgar/pkg Message-ID: Revision: 18815 http://gar.svn.sourceforge.net/gar/?rev=18815&view=rev Author: pfelecan Date: 2012-07-19 08:33:43 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gwrap/trunk: migrated from a private recipe to a GAR based recipe Added Paths: ----------- csw/mgar/pkg/gwrap/ csw/mgar/pkg/gwrap/Makefile csw/mgar/pkg/gwrap/branches/ csw/mgar/pkg/gwrap/tags/ csw/mgar/pkg/gwrap/trunk/ csw/mgar/pkg/gwrap/trunk/Makefile csw/mgar/pkg/gwrap/trunk/checksums csw/mgar/pkg/gwrap/trunk/files/ csw/mgar/pkg/gwrap/trunk/files/0001-Remove-unused-variable.patch csw/mgar/pkg/gwrap/trunk/files/0002-Inhibit-unused-but-set-variable.patch csw/mgar/pkg/gwrap/trunk/files/0003-Correct-shell.patch Added: csw/mgar/pkg/gwrap/Makefile =================================================================== --- csw/mgar/pkg/gwrap/Makefile (rev 0) +++ csw/mgar/pkg/gwrap/Makefile 2012-07-19 08:33:43 UTC (rev 18815) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/gwrap/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/gwrap/trunk/Makefile =================================================================== --- csw/mgar/pkg/gwrap/trunk/Makefile (rev 0) +++ csw/mgar/pkg/gwrap/trunk/Makefile 2012-07-19 08:33:43 UTC (rev 18815) @@ -0,0 +1,29 @@ +# $Id$ + +NAME = gwrap +VERSION = 1.3.4 +GARTYPE = v2 +CATEGORIES = lib + +DESCRIPTION = A tool for exporting C libraries into Scheme interpreters +define BLURB + A tool for exporting C libraries into Scheme interpreters +endef + +DISTNAME = g-wrap-$(VERSION) +MASTER_SITES = http://www.gnucash.org/pub/g-wrap/source/ +DISTFILES = $(DISTNAME).tar.gz +PATCHFILES += 0001-Remove-unused-variable.patch +PATCHFILES += 0002-Inhibit-unused-but-set-variable.patch +PATCHFILES += 0003-Correct-shell.patch + +BUILD_DEP_PKGS += CSWglib +BUILD_DEP_PKGS += CSWgtk +BUILD_DEP_PKGS += CSWslib + +GARCOMPILER = GNU + +CONFIGURE_ARGS = $(DIRPATHS) + +include gar/category.mk + Property changes on: csw/mgar/pkg/gwrap/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/gwrap/trunk/checksums =================================================================== --- csw/mgar/pkg/gwrap/trunk/checksums (rev 0) +++ csw/mgar/pkg/gwrap/trunk/checksums 2012-07-19 08:33:43 UTC (rev 18815) @@ -0,0 +1 @@ +bf29b8b563cc27d9f7fd90a6243653aa g-wrap-1.3.4.tar.gz Added: csw/mgar/pkg/gwrap/trunk/files/0001-Remove-unused-variable.patch =================================================================== --- csw/mgar/pkg/gwrap/trunk/files/0001-Remove-unused-variable.patch (rev 0) +++ csw/mgar/pkg/gwrap/trunk/files/0001-Remove-unused-variable.patch 2012-07-19 08:33:43 UTC (rev 18815) @@ -0,0 +1,30 @@ +From c0a06c6f99d617f5490a5436eee1a7a9de5eb8eb Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 19 Jul 2012 09:45:10 +0200 +Subject: [PATCH] Remove unused variable + +--- + g-wrap/g-wrap-wct.c | 3 --- + 1 file changed, 3 deletions(-) + +diff --git a/g-wrap/g-wrap-wct.c b/g-wrap/g-wrap-wct.c +index 7af4f45..ce549b7 100644 +--- a/g-wrap/g-wrap-wct.c ++++ b/g-wrap/g-wrap-wct.c +@@ -204,13 +204,10 @@ wcp_data_equal_p(SCM wcp_a, SCM wcp_b) { + SCM + gw_wcp_assimilate_ptr(void *ptr, SCM type) { + /* create a wrapped C pointer of the given type, wrapping ptr */ +- wrapped_c_type_data *type_data; + wrapped_c_pointer_data *ptr_data; + + if(!GW_WCT_P(type)) return SCM_BOOL_F; + +- type_data = (wrapped_c_type_data *) SCM_SMOB_DATA(type); +- + ptr_data = (wrapped_c_pointer_data *) + scm_must_malloc(sizeof(wrapped_c_pointer_data), "gw:wcp"); + +-- +1.7.10.3 + Added: csw/mgar/pkg/gwrap/trunk/files/0002-Inhibit-unused-but-set-variable.patch =================================================================== --- csw/mgar/pkg/gwrap/trunk/files/0002-Inhibit-unused-but-set-variable.patch (rev 0) +++ csw/mgar/pkg/gwrap/trunk/files/0002-Inhibit-unused-but-set-variable.patch 2012-07-19 08:33:43 UTC (rev 18815) @@ -0,0 +1,27 @@ +From edf38ae5b5d69f8267682cf1be1406ab786d1b97 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 19 Jul 2012 10:06:42 +0200 +Subject: [PATCH] Inhibit unused but set variable + +use -Wno-error=unused-but-set-variable for compiling generated code as +we cannot easily change the generator... +--- + test/Makefile.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/test/Makefile.in b/test/Makefile.in +index b49894c..6a4d006 100644 +--- a/test/Makefile.in ++++ b/test/Makefile.in +@@ -209,7 +209,7 @@ test_link_wct_LDADD = ../g-wrap/libgw-wct.la + + + # =========================================================================== +-AM_CFLAGS = -O2 -Wall -Wno-uninitialized -Werror -g \ ++AM_CFLAGS = -O2 -Wall -Wno-uninitialized -Werror -Wno-error=unused-but-set-variable -g \ + -I ${top_srcdir}/g-wrap \ + ${GW_GLIB_CFLAGS_ADD} \ + ${GW_GUILE_GTK_CFLAGS_ADD} +-- +1.7.10.3 + Added: csw/mgar/pkg/gwrap/trunk/files/0003-Correct-shell.patch =================================================================== --- csw/mgar/pkg/gwrap/trunk/files/0003-Correct-shell.patch (rev 0) +++ csw/mgar/pkg/gwrap/trunk/files/0003-Correct-shell.patch 2012-07-19 08:33:43 UTC (rev 18815) @@ -0,0 +1,22 @@ +From 20425afd55e6e6d4a1260a5ee5a253c93a0ada72 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Thu, 19 Jul 2012 10:19:17 +0200 +Subject: [PATCH] Correct shell + +--- + test/guile-test-env | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/test/guile-test-env b/test/guile-test-env +index 64b9555..47b983a 100755 +--- a/test/guile-test-env ++++ b/test/guile-test-env +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#! /usr/bin/env bash + + GUILE_VERSION=$(guile -c '(display (version))') + +-- +1.7.10.3 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 19 14:37:22 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 19 Jul 2012 12:37:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18816] csw/mgar/pkg/gstreamer/trunk Message-ID: Revision: 18816 http://gar.svn.sourceforge.net/gar/?rev=18816&view=rev Author: cgrzemba Date: 2012-07-19 12:37:21 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gstreamer/trunk: add packages, reinplacement do not Modified Paths: -------------- csw/mgar/pkg/gstreamer/trunk/Makefile csw/mgar/pkg/gstreamer/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gstreamer/trunk/files/ csw/mgar/pkg/gstreamer/trunk/files/0001-gtk-doc.mak.patch csw/mgar/pkg/gstreamer/trunk/files/0002-gtk-doc-plugins.mak.patch csw/mgar/pkg/gstreamer/trunk/files/0003-Makefile.in.patch csw/mgar/pkg/gstreamer/trunk/files/0004-Makefile.in.patch csw/mgar/pkg/gstreamer/trunk/files/0005-Makefile.in.patch Modified: csw/mgar/pkg/gstreamer/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstreamer/trunk/Makefile 2012-07-19 08:33:43 UTC (rev 18815) +++ csw/mgar/pkg/gstreamer/trunk/Makefile 2012-07-19 12:37:21 UTC (rev 18816) @@ -1,5 +1,5 @@ NAME = gstreamer -VERSION = 0.10.26 +VERSION = 0.10.29 CATEGORIES = gnome GARTYPE = v2 @@ -18,10 +18,10 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.bz2 +UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -CONFIGURE_ARGS += $(DIRPATHS) -CONFIGURE_ARGS += --disable-debug +GARCOMPILER = SOS12U3 +PACKAGING_PLATFORMS = Solaris10-sparc Solaris10-i386 RUNTIME_DEP_PKGS += CSWglib2 CSWggettextrt CSWlibxml2 BUILD_DEP_PKGS += CSWbison CSWflex-new CSWglib2devel CSWpkgconfig @@ -30,10 +30,132 @@ STRIP_LIBTOOL = 1 +PATCHFILES += 0001-gtk-doc.mak.patch +PATCHFILES += 0002-gtk-doc-plugins.mak.patch +PATCHFILES += 0003-Makefile.in.patch +PATCHFILES += 0004-Makefile.in.patch +PATCHFILES += 0005-Makefile.in.patch + +# root/opt/csw/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html +REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-plugins-0.10/.*html +REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-libs-0.10/.*html +REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-0.10/.*html +REINPLACE_WHEN_USRSHARE = postinstall + +REINPLACE_USERLOCAL += $(prefix)/share/gtk-doc/html/gstreamer-0.10/gst-running.html +REINPLACE_USERLOCAL += $(mandir)/man1/gst-feedback-0.10.1 +REINPLACE_USERLOCAL += $(bindir)/gst-feedback-0.10 +REINPLACE_WHEN_USRLOCAL = postinstall + + +PACKAGES += CSWlibgstbase0-10-0 +CATALOGNAME_CSWlibgstbase0-10-0 = libgstbase0_10_0 +PKGFILES_CSWlibgstbase0-10-0 += $(call baseisadirs,$(libdir),libgstbase-0\.10\.so\.0\.25\.0) +PKGFILES_CSWlibgstbase0-10-0 += $(call baseisadirs,$(libdir),libgstbase-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstbase0-10-0 += $(DESCRIPTION), libgstbase-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstbase0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstbase0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstbase0-10-0 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgstbase0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstbase0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstbase0-10-0 += CSWlibglib2-0-0 + +PACKAGES += CSWlibgstcheck0-10-0 +CATALOGNAME_CSWlibgstcheck0-10-0 = libgstcheck0_10_0 +PKGFILES_CSWlibgstcheck0-10-0 += $(call baseisadirs,$(libdir),libgstcheck-0\.10\.so\.0\.25\.0) +PKGFILES_CSWlibgstcheck0-10-0 += $(call baseisadirs,$(libdir),libgstcheck-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstcheck0-10-0 += $(DESCRIPTION), libgstcheck-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstcheck0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcheck0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcheck0-10-0 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgstcheck0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstcheck0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcheck0-10-0 += CSWlibglib2-0-0 + +PACKAGES += CSWlibgstcontroller0-10-0 +CATALOGNAME_CSWlibgstcontroller0-10-0 = libgstcontroller0_10_0 +PKGFILES_CSWlibgstcontroller0-10-0 += $(call baseisadirs,$(libdir),libgstcontroller-0\.10\.so\.0\.25\.0) +PKGFILES_CSWlibgstcontroller0-10-0 += $(call baseisadirs,$(libdir),libgstcontroller-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstcontroller0-10-0 += $(DESCRIPTION), libgstcontroller-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstcontroller0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcontroller0-10-0 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgstcontroller0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstcontroller0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcontroller0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcontroller0-10-0 += CSWlibgthread2-0-0 + +PACKAGES += CSWlibgstdataprotocol0-10-0 +CATALOGNAME_CSWlibgstdataprotocol0-10-0 = libgstdataprotocol0_10_0 +PKGFILES_CSWlibgstdataprotocol0-10-0 += $(call baseisadirs,$(libdir),libgstdataprotocol-0\.10\.so\.0\.25\.0) +PKGFILES_CSWlibgstdataprotocol0-10-0 += $(call baseisadirs,$(libdir),libgstdataprotocol-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstdataprotocol0-10-0 += $(DESCRIPTION), libgstdataprotocol-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstdataprotocol0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstdataprotocol0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstdataprotocol0-10-0 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgstdataprotocol0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstdataprotocol0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstdataprotocol0-10-0 += CSWlibglib2-0-0 + +PACKAGES += CSWlibgstnet0-10-0 +CATALOGNAME_CSWlibgstnet0-10-0 = libgstnet0_10_0 +PKGFILES_CSWlibgstnet0-10-0 += $(call baseisadirs,$(libdir),libgstnet-0\.10\.so\.0\.25\.0) +PKGFILES_CSWlibgstnet0-10-0 += $(call baseisadirs,$(libdir),libgstnet-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstnet0-10-0 += $(DESCRIPTION), libgstnet-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstnet0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnet0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnet0-10-0 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgstnet0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstnet0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnet0-10-0 += CSWlibglib2-0-0 + +PACKAGES += CSWlibgstreamer0-10-0 +CATALOGNAME_CSWlibgstreamer0-10-0 = libgstreamer0_10_0 +PKGFILES_CSWlibgstreamer0-10-0 += $(call baseisadirs,$(libdir),libgstreamer-0\.10\.so\.0\.25\.0) +PKGFILES_CSWlibgstreamer0-10-0 += $(call baseisadirs,$(libdir),libgstreamer-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstreamer0-10-0 += $(DESCRIPTION), libgstreamer-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstreamer0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstreamer0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstreamer0-10-0 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgstreamer0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstreamer0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstreamer0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWgstreamer-dev +CATALOGNAME_CSWgstreamer-dev = gstreamer_dev +SPKG_DESC_CSWgstreamer-dev += $(DESCRIPTION), development files +PKGFILES_CSWgstreamer-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstnet0-10-0 +RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstdataprotocol0-10-0 +RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstcontroller0-10-0 +RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstcheck0-10-0 + +PACKAGES += CSWgstreamer +SPKG_DESC_CSWgstreamer += $(DESCRIPTION), base +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgstbase0-10-0 +# RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgstdataprotocol0-10-0 +# RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgstcontroller0-10-0 +# RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgstnet0-10-0 +# RUNTIME_DEP_PKGS_CSWgstreamer += CSWlibgstcheck0-10-0 + # no tests.. TEST_SCRIPTS = +CONFIGURE_ARGS += $(DIRPATHS) +CONFIGURE_ARGS += --disable-debug + include gar/category.mk +# remove -L/opt/csw/lib +LDFLAGS = $(strip $($(GARCOMPILER)_LD_FLAGS)) + # select the right flex parser aka CSWflex-new CONFIGURE_ENV += FLEX_PATH=/opt/csw/bin/flex-2.5.35 Modified: csw/mgar/pkg/gstreamer/trunk/checksums =================================================================== --- csw/mgar/pkg/gstreamer/trunk/checksums 2012-07-19 08:33:43 UTC (rev 18815) +++ csw/mgar/pkg/gstreamer/trunk/checksums 2012-07-19 12:37:21 UTC (rev 18816) @@ -1 +1 @@ -ef4fcaceffa97c7c181c03a28a14a257 gstreamer-0.10.26.tar.gz +5238b196a5e7bbc53d57c97b634d31cf gstreamer-0.10.29.tar.gz Added: csw/mgar/pkg/gstreamer/trunk/files/0001-gtk-doc.mak.patch =================================================================== --- csw/mgar/pkg/gstreamer/trunk/files/0001-gtk-doc.mak.patch (rev 0) +++ csw/mgar/pkg/gstreamer/trunk/files/0001-gtk-doc.mak.patch 2012-07-19 12:37:21 UTC (rev 18816) @@ -0,0 +1,10 @@ +--- a/common/gtk-doc.mak ++++ b/common/gtk-doc.mak +@@ -232,6 +232,6 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs Added: csw/mgar/pkg/gstreamer/trunk/files/0002-gtk-doc-plugins.mak.patch =================================================================== --- csw/mgar/pkg/gstreamer/trunk/files/0002-gtk-doc-plugins.mak.patch (rev 0) +++ csw/mgar/pkg/gstreamer/trunk/files/0002-gtk-doc-plugins.mak.patch 2012-07-19 12:37:21 UTC (rev 18816) @@ -0,0 +1,11 @@ +--- a/common/gtk-doc-plugins.mak ++++ b/common/gtk-doc-plugins.mak +@@ -352,7 +352,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + Added: csw/mgar/pkg/gstreamer/trunk/files/0003-Makefile.in.patch =================================================================== --- csw/mgar/pkg/gstreamer/trunk/files/0003-Makefile.in.patch (rev 0) +++ csw/mgar/pkg/gstreamer/trunk/files/0003-Makefile.in.patch 2012-07-19 12:37:21 UTC (rev 18816) @@ -0,0 +1,11 @@ +--- a/docs/gst/Makefile.in ++++ b/docs/gst/Makefile.in +@@ -929,7 +929,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + Added: csw/mgar/pkg/gstreamer/trunk/files/0004-Makefile.in.patch =================================================================== --- csw/mgar/pkg/gstreamer/trunk/files/0004-Makefile.in.patch (rev 0) +++ csw/mgar/pkg/gstreamer/trunk/files/0004-Makefile.in.patch 2012-07-19 12:37:21 UTC (rev 18816) @@ -0,0 +1,11 @@ +--- a/docs/libs/Makefile.in ++++ b/docs/libs/Makefile.in +@@ -924,7 +924,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + Added: csw/mgar/pkg/gstreamer/trunk/files/0005-Makefile.in.patch =================================================================== --- csw/mgar/pkg/gstreamer/trunk/files/0005-Makefile.in.patch (rev 0) +++ csw/mgar/pkg/gstreamer/trunk/files/0005-Makefile.in.patch 2012-07-19 12:37:21 UTC (rev 18816) @@ -0,0 +1,11 @@ +--- a/docs/plugins/Makefile.in ++++ b/docs/plugins/Makefile.in +@@ -1056,7 +1056,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 19 14:57:21 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 19 Jul 2012 12:57:21 +0000 Subject: [csw-devel] SF.net SVN: gar:[18817] csw/mgar/pkg/gwrap/trunk/Makefile Message-ID: Revision: 18817 http://gar.svn.sourceforge.net/gar/?rev=18817&view=rev Author: pfelecan Date: 2012-07-19 12:57:21 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gwrap/trunk: - split in multiple packages - verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/gwrap/trunk/Makefile Modified: csw/mgar/pkg/gwrap/trunk/Makefile =================================================================== --- csw/mgar/pkg/gwrap/trunk/Makefile 2012-07-19 12:37:21 UTC (rev 18816) +++ csw/mgar/pkg/gwrap/trunk/Makefile 2012-07-19 12:57:21 UTC (rev 18817) @@ -17,6 +17,8 @@ PATCHFILES += 0002-Inhibit-unused-but-set-variable.patch PATCHFILES += 0003-Correct-shell.patch +LICENSE = COPYING.LIB + BUILD_DEP_PKGS += CSWglib BUILD_DEP_PKGS += CSWgtk BUILD_DEP_PKGS += CSWslib @@ -25,5 +27,68 @@ CONFIGURE_ARGS = $(DIRPATHS) +PACKAGES += CSWgwrap-dev +CATALOGNAME_CSWgwrap-dev = gwrap_dev +SPKG_DESC_CSWgwrap-dev += $(DESCRIPTION), development files +OBSOLETED_BY_CSWgwrap-dev = CSWgwrap +PKGFILES_CSWgwrap-dev += /opt/csw/lib/libgw-glib.so +PKGFILES_CSWgwrap-dev += $(PKGFILES_DEVEL) +PKGFILES_CSWgwrap-dev += /opt/csw/share/info/.* +RUNTIME_DEP_PKGS_CSWgwrap-dev += CSWlibgw-glib0 +CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgw-glib0 +RUNTIME_DEP_PKGS_CSWgwrap-dev += CSWlibgw-standard0 +CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgw-standard0 +RUNTIME_DEP_PKGS_CSWgwrap-dev += CSWlibgw-wct0 +CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgw-wct0 +RUNTIME_DEP_PKGS_CSWgwrap-dev += CSWlibgwrap-glib1 +CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgwrap-glib1 +RUNTIME_DEP_PKGS_CSWgwrap-dev += CSWlibgwrap-wct1 +CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgwrap-wct1 + +PACKAGES += CSWlibgw-glib0 +CATALOGNAME_CSWlibgw-glib0 = libgw_glib0 +OBSOLETED_BY_CSWlibgw-glib0 = CSWgwrap +PKGFILES_CSWlibgw-glib0 += $(call baseisadirs,$(libdir),libgw-glib\.so\.0\.0\.0) +PKGFILES_CSWlibgw-glib0 += $(call baseisadirs,$(libdir),libgw-glib\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgw-glib0 += $(DESCRIPTION), libgw-glib.so.0 +RUNTIME_DEP_PKGS_CSWlibgw-glib0 += CSWglib +RUNTIME_DEP_PKGS_CSWlibgw-glib0 += CSWguilelib12 + +PACKAGES += CSWlibgw-standard0 +CATALOGNAME_CSWlibgw-standard0 = libgw_standard0 +OBSOLETED_BY_CSWlibgw-standard0 = CSWgwrap +PKGFILES_CSWlibgw-standard0 += $(call baseisadirs,$(libdir),libgw-standard\.so\.0\.0\.0) +PKGFILES_CSWlibgw-standard0 += $(call baseisadirs,$(libdir),libgw-standard\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgw-standard0 += $(DESCRIPTION), libgw-standard.so.0 +RUNTIME_DEP_PKGS_CSWlibgw-standard0 += CSWguilelib12 + +PACKAGES += CSWlibgw-wct0 +CATALOGNAME_CSWlibgw-wct0 = libgw_wct0 +OBSOLETED_BY_CSWlibgw-wct0 = CSWgwrap +PKGFILES_CSWlibgw-wct0 += $(call baseisadirs,$(libdir),libgw-wct\.so\.0\.0\.0) +PKGFILES_CSWlibgw-wct0 += $(call baseisadirs,$(libdir),libgw-wct\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgw-wct0 += $(DESCRIPTION), libgw-wct.so.0 +RUNTIME_DEP_PKGS_CSWlibgw-wct0 += CSWguilelib12 +RUNTIME_DEP_PKGS_CSWlibgw-wct0 += CSWlibgwrap-wct1 + +PACKAGES += CSWlibgwrap-glib1 +CATALOGNAME_CSWlibgwrap-glib1 = libgwrap_glib1 +OBSOLETED_BY_CSWlibgwrap-glib1 = CSWgwrap +PKGFILES_CSWlibgwrap-glib1 += $(call baseisadirs,$(libdir),libgwrap-glib\.so\.1\.0\.0) +PKGFILES_CSWlibgwrap-glib1 += $(call baseisadirs,$(libdir),libgwrap-glib\.so\.1(\.\d+)*) +SPKG_DESC_CSWlibgwrap-glib1 += $(DESCRIPTION), libgwrap-glib.so.1 +RUNTIME_DEP_PKGS_CSWlibgwrap-glib1 += CSWguilelib12 + +PACKAGES += CSWlibgwrap-wct1 +CATALOGNAME_CSWlibgwrap-wct1 = libgwrap_wct1 +OBSOLETED_BY_CSWlibgwrap-wct1 = CSWgwrap +PKGFILES_CSWlibgwrap-wct1 += $(call baseisadirs,$(libdir),libgwrap-wct\.so\.1\.0\.0) +PKGFILES_CSWlibgwrap-wct1 += $(call baseisadirs,$(libdir),libgwrap-wct\.so\.1(\.\d+)*) +SPKG_DESC_CSWlibgwrap-wct1 += $(DESCRIPTION), libgwrap-wct.so.1 +RUNTIME_DEP_PKGS_CSWlibgwrap-wct1 += CSWguilelib12 + include gar/category.mk +# this is private and not available publicly +mydependencies: + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 19 15:20:15 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 19 Jul 2012 13:20:15 +0000 Subject: [csw-devel] SF.net SVN: gar:[18818] csw/mgar/pkg/gwrap/trunk/Makefile Message-ID: Revision: 18818 http://gar.svn.sourceforge.net/gar/?rev=18818&view=rev Author: pfelecan Date: 2012-07-19 13:20:15 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gwrap/trunk: development package is architecture neutral Modified Paths: -------------- csw/mgar/pkg/gwrap/trunk/Makefile Modified: csw/mgar/pkg/gwrap/trunk/Makefile =================================================================== --- csw/mgar/pkg/gwrap/trunk/Makefile 2012-07-19 12:57:21 UTC (rev 18817) +++ csw/mgar/pkg/gwrap/trunk/Makefile 2012-07-19 13:20:15 UTC (rev 18818) @@ -44,6 +44,8 @@ CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgwrap-glib1 RUNTIME_DEP_PKGS_CSWgwrap-dev += CSWlibgwrap-wct1 CHECKPKG_OVERRIDES_CSWgwrap-dev += surplus-dependency|CSWlibgwrap-wct1 +ARCHALL_CSWgwrap-dev = 1 +CHECKPKG_OVERRIDES_CSWgwrap-dev += archall-devel-package PACKAGES += CSWlibgw-glib0 CATALOGNAME_CSWlibgw-glib0 = libgw_glib0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 19 15:22:14 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 19 Jul 2012 13:22:14 +0000 Subject: [csw-devel] SF.net SVN: gar:[18819] csw/mgar/pkg/gsl/trunk/Makefile Message-ID: Revision: 18819 http://gar.svn.sourceforge.net/gar/?rev=18819&view=rev Author: pfelecan Date: 2012-07-19 13:22:14 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gsl/trunk: typo in the neutrality declaration of the development package Modified Paths: -------------- csw/mgar/pkg/gsl/trunk/Makefile Modified: csw/mgar/pkg/gsl/trunk/Makefile =================================================================== --- csw/mgar/pkg/gsl/trunk/Makefile 2012-07-19 13:20:15 UTC (rev 18818) +++ csw/mgar/pkg/gsl/trunk/Makefile 2012-07-19 13:22:14 UTC (rev 18819) @@ -48,7 +48,8 @@ PKGFILES_CSWgsl-dev += $(PKGFILES_DEVEL) RUNTIME_DEP_PKGS_CSWgsl-dev = CSWlibgsl0 RUNTIME_DEP_PKGS_CSWgsl-dev += CSWlibgslcblas0 -ARCHALL_CSWgsl = 1 +ARCHALL_CSWgsl-dev = 1 +CHECKPKG_OVERRIDES_CSWgsl-dev += archall-devel-package PACKAGES += CSWgsl-doc CATALOGNAME_CSWgsl-doc = gsl_doc This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 19 15:26:33 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 19 Jul 2012 13:26:33 +0000 Subject: [csw-devel] SF.net SVN: gar:[18820] csw/mgar/pkg/gstreamer/trunk/Makefile Message-ID: Revision: 18820 http://gar.svn.sourceforge.net/gar/?rev=18820&view=rev Author: cgrzemba Date: 2012-07-19 13:26:33 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gstreamer/trunk: correct typo Modified Paths: -------------- csw/mgar/pkg/gstreamer/trunk/Makefile Modified: csw/mgar/pkg/gstreamer/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstreamer/trunk/Makefile 2012-07-19 13:22:14 UTC (rev 18819) +++ csw/mgar/pkg/gstreamer/trunk/Makefile 2012-07-19 13:26:33 UTC (rev 18820) @@ -37,14 +37,15 @@ PATCHFILES += 0005-Makefile.in.patch # root/opt/csw/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html -REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-plugins-0.10/.*html -REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-libs-0.10/.*html -REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-0.10/.*html +# ./docs/plugins/html ./docs/libs/html ./docs/gst/html +REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-plugins-0.10/.* +REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-libs-0.10/.* +REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-0.10/.* REINPLACE_WHEN_USRSHARE = postinstall -REINPLACE_USERLOCAL += $(prefix)/share/gtk-doc/html/gstreamer-0.10/gst-running.html -REINPLACE_USERLOCAL += $(mandir)/man1/gst-feedback-0.10.1 -REINPLACE_USERLOCAL += $(bindir)/gst-feedback-0.10 +REINPLACE_USRLOCAL += $(prefix)/share/gtk-doc/html/gstreamer-0.10/gst-running.html +REINPLACE_USRLOCAL += $(mandir)/man1/gst-feedback-0.10.1 +REINPLACE_USRLOCAL += $(bindir)/gst-feedback-0.10 REINPLACE_WHEN_USRLOCAL = postinstall @@ -124,6 +125,7 @@ CATALOGNAME_CSWgstreamer-dev = gstreamer_dev SPKG_DESC_CSWgstreamer-dev += $(DESCRIPTION), development files PKGFILES_CSWgstreamer-dev += $(PKGFILES_DEVEL) +PKGFILES_CSWgstreamer-dev += $(prefix)/share/gtk-doc/.* RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstbase0-10-0 RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstnet0-10-0 RUNTIME_DEP_PKGS_CSWgstreamer-dev += CSWlibgstreamer0-10-0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 19 16:01:50 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 19 Jul 2012 14:01:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[18821] csw/mgar/pkg/gstreamer/trunk/Makefile Message-ID: Revision: 18821 http://gar.svn.sourceforge.net/gar/?rev=18821&view=rev Author: cgrzemba Date: 2012-07-19 14:01:50 +0000 (Thu, 19 Jul 2012) Log Message: ----------- gstreamer/trunk: fix reinplace Modified Paths: -------------- csw/mgar/pkg/gstreamer/trunk/Makefile Modified: csw/mgar/pkg/gstreamer/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstreamer/trunk/Makefile 2012-07-19 13:26:33 UTC (rev 18820) +++ csw/mgar/pkg/gstreamer/trunk/Makefile 2012-07-19 14:01:50 UTC (rev 18821) @@ -38,11 +38,13 @@ # root/opt/csw/share/gtk-doc/html/gstreamer-0.10/gstreamer-GstBufferList.html # ./docs/plugins/html ./docs/libs/html ./docs/gst/html -REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-plugins-0.10/.* -REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-libs-0.10/.* -REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-0.10/.* -REINPLACE_WHEN_USRSHARE = postinstall +REINPLACE_USRSHARE += docs/plugins/html/*.html docs/libs/html/*.html docs/gst/html/*.html + # REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-plugins-0.10/.* +# REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-libs-0.10/.* +# REINPLACE_USRSHARE += $(prefix)/share/gtk-doc/html/gstreamer-0.10/.* +# REINPLACE_WHEN_USRSHARE = postinstall + REINPLACE_USRLOCAL += $(prefix)/share/gtk-doc/html/gstreamer-0.10/gst-running.html REINPLACE_USRLOCAL += $(mandir)/man1/gst-feedback-0.10.1 REINPLACE_USRLOCAL += $(bindir)/gst-feedback-0.10 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 Jul 19 23:08:00 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 19 Jul 2012 21:08:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[18822] csw/mgar/pkg/cpan Message-ID: Revision: 18822 http://gar.svn.sourceforge.net/gar/?rev=18822&view=rev Author: dmichelsen Date: 2012-07-19 21:07:59 +0000 (Thu, 19 Jul 2012) Log Message: ----------- cpan/Rose-DB/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Rose-DB/ csw/mgar/pkg/cpan/Rose-DB/branches/ csw/mgar/pkg/cpan/Rose-DB/tags/ csw/mgar/pkg/cpan/Rose-DB/trunk/ csw/mgar/pkg/cpan/Rose-DB/trunk/Makefile csw/mgar/pkg/cpan/Rose-DB/trunk/checksums csw/mgar/pkg/cpan/Rose-DB/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Rose-DB/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Rose-DB/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Rose-DB/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Rose-DB/trunk/Makefile 2012-07-19 21:07:59 UTC (rev 18822) @@ -0,0 +1,35 @@ +NAME = Rose-DB +VERSION = 0.769 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JSIRACUSA + +DESCRIPTION = A DBI wrapper and abstraction layer +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-rose-db +CATALOGNAME_CSWpm-rose-db = pm_rose_db +SPKG_DESC_CSWpm-rose-db = A DBI wrapper and abstraction layer +ARCHALL_CSWpm-rose-db = 1 +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-datetime-format-mysql +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-dbi +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-datetime-format-pg +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-bit-vector +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-datetime-format-oracle +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-rose-datetime +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-time-clock +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-clone-pp +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-sql-reservedwords +RUNTIME_DEP_PKGS_CSWpm-rose-db += CSWpm-rose-object + +# These are only comments +CHECKPKG_OVERRIDES_CSWpm-rose-db += file-with-bad-content|/usr/local|root/opt/csw/share/man/man3/Rose::DB.3perl +CHECKPKG_OVERRIDES_CSWpm-rose-db += file-with-bad-content|/usr/local|root/opt/csw/share/perl/csw/Rose/DB.pm + +include gar/category.mk Added: csw/mgar/pkg/cpan/Rose-DB/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Rose-DB/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Rose-DB/trunk/checksums 2012-07-19 21:07:59 UTC (rev 18822) @@ -0,0 +1 @@ +39c9e523da20e35d71c9400e04f65ec4 Rose-DB-0.769.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 Jul 19 23:27:01 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Thu, 19 Jul 2012 21:27:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[18823] csw/mgar/pkg/cpan Message-ID: Revision: 18823 http://gar.svn.sourceforge.net/gar/?rev=18823&view=rev Author: dmichelsen Date: 2012-07-19 21:27:01 +0000 (Thu, 19 Jul 2012) Log Message: ----------- cpan/Rose-DB-Object/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/Rose-DB-Object/ csw/mgar/pkg/cpan/Rose-DB-Object/branches/ csw/mgar/pkg/cpan/Rose-DB-Object/tags/ csw/mgar/pkg/cpan/Rose-DB-Object/trunk/ csw/mgar/pkg/cpan/Rose-DB-Object/trunk/Makefile csw/mgar/pkg/cpan/Rose-DB-Object/trunk/checksums csw/mgar/pkg/cpan/Rose-DB-Object/trunk/files/ Property changes on: csw/mgar/pkg/cpan/Rose-DB-Object/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/Rose-DB-Object/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/Rose-DB-Object/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/Rose-DB-Object/trunk/Makefile 2012-07-19 21:27:01 UTC (rev 18823) @@ -0,0 +1,29 @@ +NAME = Rose-DB-Object +VERSION = 0.798 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = JSIRACUSA + +DESCRIPTION = Extensible, high performance object-relational mapper (ORM) +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the perl license, please see for details http://dev.perl.org/licenses/ + +PACKAGES += CSWpm-rose-db-object +SPKG_DESC_CSWpm-rose-db-object = Extensible, high performance object-relational mapper (ORM) +# There was no information if this is pure Perl or not. Please remove if necessary. +ARCHALL_CSWpm-rose-db-object = 1 +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-dbi +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-bit-vector +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-rose-datetime +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-clone +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-time-clock +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-datetime +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-rose-object +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-rose-db +RUNTIME_DEP_PKGS_CSWpm-rose-db-object += CSWpm-list-moreutils + +include gar/category.mk Added: csw/mgar/pkg/cpan/Rose-DB-Object/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/Rose-DB-Object/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/Rose-DB-Object/trunk/checksums 2012-07-19 21:27:01 UTC (rev 18823) @@ -0,0 +1 @@ +4970d548822d883fa8e8ad5325ca93db Rose-DB-Object-0.798.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 Fri Jul 20 00:01:50 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Thu, 19 Jul 2012 22:01:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[18824] csw/mgar/pkg/nagios/trunk/Makefile Message-ID: Revision: 18824 http://gar.svn.sourceforge.net/gar/?rev=18824&view=rev Author: j_arndt Date: 2012-07-19 22:01:50 +0000 (Thu, 19 Jul 2012) Log Message: ----------- nagios/trunk: remove unnecessary override, building platform now Solaris 10 Modified Paths: -------------- csw/mgar/pkg/nagios/trunk/Makefile Modified: csw/mgar/pkg/nagios/trunk/Makefile =================================================================== --- csw/mgar/pkg/nagios/trunk/Makefile 2012-07-19 21:27:01 UTC (rev 18823) +++ csw/mgar/pkg/nagios/trunk/Makefile 2012-07-19 22:01:50 UTC (rev 18824) @@ -17,6 +17,8 @@ DISTFILES += cswusergroup DISTFILES += README.CSW +PACKAGING_PLATFORMS = solaris10-i386 solaris10-sparc + PATCHFILES += 0001-Removed-gcc-macro.patch PATCHFILES += 0001-changed-install-and-command-options-in-configure.patch PATCHFILES += 0003-changed-syntax-of-define-statement.patch @@ -125,8 +127,6 @@ CHECKPKG_OVERRIDES_CSWnagios += surplus-dependency|CSWlibiconv2 CHECKPKG_OVERRIDES_CSWnagios += surplus-dependency|CSWjpeg -CHECKPKG_OVERRIDES_CSWnagios += unidentified-dependency|CSWnagios-plugins - include gar/category.mk DOCS = Changelog INSTALLING README UPGRADING This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Fri Jul 20 13:22:23 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 20 Jul 2012 11:22:23 +0000 Subject: [csw-devel] SF.net SVN: gar:[18825] csw/mgar/pkg/gstplugins/trunk Message-ID: Revision: 18825 http://gar.svn.sourceforge.net/gar/?rev=18825&view=rev Author: cgrzemba Date: 2012-07-20 11:22:22 +0000 (Fri, 20 Jul 2012) Log Message: ----------- gstplugins/trunk: update build dependencies Modified Paths: -------------- csw/mgar/pkg/gstplugins/trunk/Makefile csw/mgar/pkg/gstplugins/trunk/checksums Modified: csw/mgar/pkg/gstplugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstplugins/trunk/Makefile 2012-07-19 22:01:50 UTC (rev 18824) +++ csw/mgar/pkg/gstplugins/trunk/Makefile 2012-07-20 11:22:22 UTC (rev 18825) @@ -1,5 +1,5 @@ NAME = gst-plugins-base -VERSION = 0.10.26 +VERSION = 0.10.29 CATEGORIES = gnome GARTYPE = v2 @@ -21,23 +21,32 @@ # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz -DEP_PKGS += CSWgstreamer CSWliboil CSWglib2 CSWgnomevfs2 CSWlibogg -DEP_PKGS += CSWgconf2 CSWggettextrt CSWlibxml2 CSWtheora CSWvorbis -DEP_PKGS += CSWlibice CSWlibx11 CSWlibsm CSWlibxext +PACKAGING_PLATFORMS = Solaris10-sparc Solaris10-i386 +GARCOMPILER = SOS12U3 +BUILD_DEP_PKGS += CSWpkgconfig CSWgstreamer-dev CSWliboildevel CSWlibglib2-dev +BUILD_DEP_PKGS += CSWgnomevfs2-dev CSWlibogg-dev CSWlibgtk2-dev CSWlibatk-dev +BUILD_DEP_PKGS += CSWlibgconf-dev CSWggettextrt CSWlibxml2-dev CSWlibtheora-dev +BUILD_DEP_PKGS += CSWlibice CSWlibx11 CSWlibxvdevel CSWx11videoproto +BUILD_DEP_PKGS += CSWlibsm CSWlibxext +BUILD_DEP_PKGS += CSWlibvorbis-dev CSWpangodevel CSWlibpixman-dev +BUILD_DEP_PKGS += CSWfconfig-dev CSWlibpng-dev CSWx11xproto CSWx11renderproto +BUILD_DEP_PKGS += CSWlibx11devel CSWlibxcbdevel CSWlibxaudevel CSWlibxdmcpdevel + CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --disable-debug CONFIGURE_ARGS += --disable-alsa CONFIGURE_ARGS += --disable-cdparanoia -CONFIGURE_ARGS += --disable-xvideo +# CONFIGURE_ARGS += --disable-xvideo CONFIGURE_ARGS += --disable-gst_v4l CONFIGURE_ARGS += --disable-libvisual -CONFIGURE_ARGS += --disable-pango +# CONFIGURE_ARGS += --disable-pango CONFIGURE_ARGS += --x-includes=$(prefix)/X11/include CONFIGURE_ARGS += --x-libraries=$(prefix)/X11/lib/$(MM_LIBDIR) EXTRA_SOS_LD_FLAGS = -L$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) EXTRA_SOS_LD_OPTIONS = -R$(abspath $(prefix)/X11/lib/$(MM_LIBDIR)) +EXTRA_PKG_CONFIG_PATH += /opt/csw/X11/lib/pkgconfig STRIP_LIBTOOL = 1 @@ -46,10 +55,10 @@ include gar/category.mk # sigh, portable code? -post-configure-modulated: - gsed -i 's/\(LIBS = -lnsl -lsocket\)/\1 -lresolv/' \ - $(WORKSRC)/gst/tcp/Makefile - gsed -i 's/\(giosrc_mounting_LDFLAGS =\)/\1 $$(X_LIBS)/' \ - $(WORKSRC)/tests/examples/gio/Makefile - gsed -i 's/\(volume_LDFLAGS =\)/\1 $$(X_LIBS)/' \ - $(WORKSRC)/tests/examples/volume/Makefile +# post-configure-modulated: +# gsed -i 's/\(LIBS = -lnsl -lsocket\)/\1 -lresolv/' \ +# $(WORKSRC)/gst/tcp/Makefile +# gsed -i 's/\(giosrc_mounting_LDFLAGS =\)/\1 $$(X_LIBS)/' \ +# $(WORKSRC)/tests/examples/gio/Makefile +# gsed -i 's/\(volume_LDFLAGS =\)/\1 $$(X_LIBS)/' \ +# $(WORKSRC)/tests/examples/volume/Makefile Modified: csw/mgar/pkg/gstplugins/trunk/checksums =================================================================== --- csw/mgar/pkg/gstplugins/trunk/checksums 2012-07-19 22:01:50 UTC (rev 18824) +++ csw/mgar/pkg/gstplugins/trunk/checksums 2012-07-20 11:22:22 UTC (rev 18825) @@ -1 +1 @@ -74fec1ea3b24daa796e7ef4a71651156 gst-plugins-base-0.10.26.tar.gz +15da191eaea60f08f6955ce89bc0d211 gst-plugins-base-0.10.29.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Fri Jul 20 15:18:11 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 20 Jul 2012 13:18:11 +0000 Subject: [csw-devel] SF.net SVN: gar:[18826] csw/mgar/pkg/gstplugins/trunk Message-ID: Revision: 18826 http://gar.svn.sourceforge.net/gar/?rev=18826&view=rev Author: cgrzemba Date: 2012-07-20 13:18:10 +0000 (Fri, 20 Jul 2012) Log Message: ----------- gstplugins/trunk: builds, but links only if old gst packages are deinstalled > wrong library search path order... Modified Paths: -------------- csw/mgar/pkg/gstplugins/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/gstplugins/trunk/files/0001-Makefile.in.patch Modified: csw/mgar/pkg/gstplugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstplugins/trunk/Makefile 2012-07-20 11:22:22 UTC (rev 18825) +++ csw/mgar/pkg/gstplugins/trunk/Makefile 2012-07-20 13:18:10 UTC (rev 18826) @@ -24,15 +24,19 @@ PACKAGING_PLATFORMS = Solaris10-sparc Solaris10-i386 GARCOMPILER = SOS12U3 -BUILD_DEP_PKGS += CSWpkgconfig CSWgstreamer-dev CSWliboildevel CSWlibglib2-dev +BUILD_DEP_PKGS += CSWpkgconfig CSWgstreamer-dev CSWliboildevel CSWlibglib2-dev BUILD_DEP_PKGS += CSWgnomevfs2-dev CSWlibogg-dev CSWlibgtk2-dev CSWlibatk-dev -BUILD_DEP_PKGS += CSWlibgconf-dev CSWggettextrt CSWlibxml2-dev CSWlibtheora-dev +BUILD_DEP_PKGS += CSWlibgconf-dev CSWggettextrt CSWlibxml2-dev CSWlibz-dev +BUILD_DEP_PKGS += CSWlibtheora-dev BUILD_DEP_PKGS += CSWlibice CSWlibx11 CSWlibxvdevel CSWx11videoproto BUILD_DEP_PKGS += CSWlibsm CSWlibxext BUILD_DEP_PKGS += CSWlibvorbis-dev CSWpangodevel CSWlibpixman-dev BUILD_DEP_PKGS += CSWfconfig-dev CSWlibpng-dev CSWx11xproto CSWx11renderproto BUILD_DEP_PKGS += CSWlibx11devel CSWlibxcbdevel CSWlibxaudevel CSWlibxdmcpdevel +PATCHFILES += 0001-Makefile.in.patch +REINPLACE_USRSHARE += docs/plugins/html/*.html docs/libs/html/*.html + CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --disable-debug CONFIGURE_ARGS += --disable-alsa @@ -54,6 +58,9 @@ include gar/category.mk +# I want see whats going on +AM_DEFAULT_VERBOSITY:=1 + # sigh, portable code? # post-configure-modulated: # gsed -i 's/\(LIBS = -lnsl -lsocket\)/\1 -lresolv/' \ Added: csw/mgar/pkg/gstplugins/trunk/files/0001-Makefile.in.patch =================================================================== --- csw/mgar/pkg/gstplugins/trunk/files/0001-Makefile.in.patch (rev 0) +++ csw/mgar/pkg/gstplugins/trunk/files/0001-Makefile.in.patch 2012-07-20 13:18:10 UTC (rev 18826) @@ -0,0 +1,22 @@ +--- a/docs/libs/Makefile.in ++++ b/docs/libs/Makefile.in +@@ -945,7 +945,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + +--- a/docs/plugins/Makefile.in ++++ b/docs/plugins/Makefile.in +@@ -1111,7 +1111,7 @@ dist-hook: dist-check-gtkdoc dist-hook-local + -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ + -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ + cd $(distdir) && rm -f $(DISTCLEANFILES) +- -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html ++ -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html + + .PHONY : dist-hook-local docs + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jul 21 17:47:47 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 21 Jul 2012 15:47:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[18827] csw/mgar/pkg/lang-python/pysvn/trunk Message-ID: Revision: 18827 http://gar.svn.sourceforge.net/gar/?rev=18827&view=rev Author: dmichelsen Date: 2012-07-21 15:47:47 +0000 (Sat, 21 Jul 2012) Log Message: ----------- lang-python/pysvn/trunk: Update to 1.7.6, does not build yet Modified Paths: -------------- csw/mgar/pkg/lang-python/pysvn/trunk/Makefile csw/mgar/pkg/lang-python/pysvn/trunk/checksums Modified: csw/mgar/pkg/lang-python/pysvn/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/pysvn/trunk/Makefile 2012-07-20 13:18:10 UTC (rev 18826) +++ csw/mgar/pkg/lang-python/pysvn/trunk/Makefile 2012-07-21 15:47:47 UTC (rev 18827) @@ -3,7 +3,7 @@ # $Id$ NAME = pysvn -VERSION = 1.7.1 +VERSION = 1.7.6 CATEGORIES = lib GARTYPE = v2 DESCRIPTION = Python SVN Extension and WorkBench GUI @@ -24,26 +24,35 @@ * No need to understand the Subversion C API endef -SPKG_SOURCEURL = http://pysvn.tigris.org/ + MASTER_SITES = http://pysvn.barrys-emacs.org/source_kits/ +DISTFILES += $(DISTNAME).tar.gz PATCHFILES = 0002-pysvn.hpp-string-includes-first.patch -PATCHFILES += 0005-Use-dash-capital-R-for-runtime-path.patch -PATCHFILES += 0006-Use-opt-csw-lib.patch +#PATCHFILES += 0005-Use-dash-capital-R-for-runtime-path.patch +#\xC3PATCHFILES += 0006-Use-opt-csw-lib.patch PATCHFILES += 0003-bin-bash-instead-of-bin-sh.patch -PATCHFILES += 0001-fixes-for-tests.patch +# PATCHFILES += 0001-fixes-for-tests.patch PATCHFILES += 0008-gid-in-two-more-places.patch -DISTFILES = $(NAME)-$(VERSION).tar.gz -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz + +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + +VENDOR_URL = http://pysvn.tigris.org/ + LICENSE = LICENSE.txt -RUNTIME_DEP_PKGS = CSWexpat + +BUILD_DEP_PKGS += CSWsvn-devel +BUILD_DEP_PKGS += CSWapache2-dev +BUILD_DEP_PKGS += CSWlibexpat-dev +BUILD_DEP_PKGS += CSWbash + RUNTIME_DEP_PKGS += CSWgcc4corert RUNTIME_DEP_PKGS += CSWgcc4g++rt RUNTIME_DEP_PKGS += CSWneon RUNTIME_DEP_PKGS += CSWpython RUNTIME_DEP_PKGS += CSWsvn -BUILD_DEP_PKGS = $(RUNTIME_DEP_PKGS) CSWsvn-devel CSWapache2-devel CSWbash INCOMPATIBELE_PKGS = CSWpyxml + CONFIGURE_SCRIPTS = pysvn BUILD_SCRIPTS = pysvn INSTALL_SCRIPTS = pysvn @@ -52,16 +61,17 @@ TEST_SCRIPTS_5.10 = pysvn TEST_SCRIPTS = $(TEST_SCRIPTS_$(GAROSREL)) CONFIGURE_ARGS = $(DIRPATHS) -GARCOMPILER = GNU +#GARCOMPILER = GNU include gar/category.mk configure-pysvn: (cd $(WORKSRC)/Source \ && $(CONFIGURE_ENV) python setup.py configure \ - --apr-inc-dir=/opt/csw/apache2/include \ - --apr-lib-dir=/opt/csw/apache2/lib \ - --svn-bin-dir=/opt/csw/bin \ + --apr-inc-dir=$(includedir) \ + --apr-lib-dir=$(libdir) \ + --apu-inc-dir=$(includedir) \ + --svn-bin-dir=$(bindir) \ --svn-inc-dir=/opt/csw/include/subversion-1 \ --svn-lib-dir=/opt/csw/lib/svn \ ) Modified: csw/mgar/pkg/lang-python/pysvn/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/pysvn/trunk/checksums 2012-07-20 13:18:10 UTC (rev 18826) +++ csw/mgar/pkg/lang-python/pysvn/trunk/checksums 2012-07-21 15:47:47 UTC (rev 18827) @@ -1,7 +1 @@ -e6168840de7c75fcecffc6fc7e1831ba 0001-fixes-for-tests.patch -20381f5964a9fc08b04eb6fc69a47d04 0002-pysvn.hpp-string-includes-first.patch -2f3e1b6c0ffed9baecdb1e0719748813 0003-bin-bash-instead-of-bin-sh.patch -a69e791dd03491aca2cfeba83528389a 0005-Use-dash-capital-R-for-runtime-path.patch -be7690f1395b76f984bf12de84418b68 0006-Use-opt-csw-lib.patch -ac24c9b4348fd857353d1444c8448d8d 0008-gid-in-two-more-places.patch -55688ec2083dcada32aa0a4128f6c309 pysvn-1.7.1.tar.gz +010a80f0058713209d62e96b20afbde9 pysvn-1.7.6.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Sat Jul 21 18:02:28 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Sat, 21 Jul 2012 16:02:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[18828] csw/mgar/pkg/cpan Message-ID: Revision: 18828 http://gar.svn.sourceforge.net/gar/?rev=18828&view=rev Author: dmichelsen Date: 2012-07-21 16:02:28 +0000 (Sat, 21 Jul 2012) Log Message: ----------- cpan/DBD-SQLite2/trunk: Initial commit Added Paths: ----------- csw/mgar/pkg/cpan/DBD-SQLite2/ csw/mgar/pkg/cpan/DBD-SQLite2/branches/ csw/mgar/pkg/cpan/DBD-SQLite2/tags/ csw/mgar/pkg/cpan/DBD-SQLite2/trunk/ csw/mgar/pkg/cpan/DBD-SQLite2/trunk/Makefile csw/mgar/pkg/cpan/DBD-SQLite2/trunk/checksums csw/mgar/pkg/cpan/DBD-SQLite2/trunk/files/ Property changes on: csw/mgar/pkg/cpan/DBD-SQLite2/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/cpan/DBD-SQLite2/trunk/Makefile =================================================================== --- csw/mgar/pkg/cpan/DBD-SQLite2/trunk/Makefile (rev 0) +++ csw/mgar/pkg/cpan/DBD-SQLite2/trunk/Makefile 2012-07-21 16:02:28 UTC (rev 18828) @@ -0,0 +1,20 @@ +NAME = DBD-SQLite2 +VERSION = 0.33 +CATEGORIES = cpan +GARTYPE = v2 +AUTHOR = MSERGEANT + +DESCRIPTION = Self Contained RDBMS in a DBI Driver (sqlite 2.x) +define BLURB +endef + +CATALOG_RELEASE = unstable + +LICENSE_TEXT = This module is licensed under the license + +PACKAGES += CSWpm-dbd-sqlite2 +CATALOGNAME_CSWpm-dbd-sqlite2 = pm_dbd_sqlite2 +SPKG_DESC_CSWpm-dbd-sqlite2 = Self Contained RDBMS in a DBI Driver (sqlite 2.x) +RUNTIME_DEP_PKGS_CSWpm-dbd-sqlite2 += CSWpm-dbi + +include gar/category.mk Added: csw/mgar/pkg/cpan/DBD-SQLite2/trunk/checksums =================================================================== --- csw/mgar/pkg/cpan/DBD-SQLite2/trunk/checksums (rev 0) +++ csw/mgar/pkg/cpan/DBD-SQLite2/trunk/checksums 2012-07-21 16:02:28 UTC (rev 18828) @@ -0,0 +1 @@ +babd83fd5eb9ba7560ad4bab4c76c0eb DBD-SQLite2-0.33.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 23 08:56:03 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 23 Jul 2012 06:56:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[18829] csw/mgar/pkg/gdb Message-ID: Revision: 18829 http://gar.svn.sourceforge.net/gar/?rev=18829&view=rev Author: pfelecan Date: 2012-07-23 06:56:03 +0000 (Mon, 23 Jul 2012) Log Message: ----------- gdb/trunk: - migrated from a private recipe to a GAR based recipe - removed patches from a previous tentative to "garify" Modified Paths: -------------- csw/mgar/pkg/gdb/Makefile csw/mgar/pkg/gdb/trunk/Makefile csw/mgar/pkg/gdb/trunk/checksums Added Paths: ----------- csw/mgar/pkg/gdb/trunk/files/0001-OpenSolaris-gdb-solib-svr4.patch csw/mgar/pkg/gdb/trunk/files/0002-OpenSolaris-gdb-fork-child.patch csw/mgar/pkg/gdb/trunk/files/0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch Removed Paths: ------------- csw/mgar/pkg/gdb/trunk/files/gdb.auxv.patch csw/mgar/pkg/gdb/trunk/files/gdb.solib-svr4.patch Modified: csw/mgar/pkg/gdb/Makefile =================================================================== --- csw/mgar/pkg/gdb/Makefile 2012-07-21 16:02:28 UTC (rev 18828) +++ csw/mgar/pkg/gdb/Makefile 2012-07-23 06:56:03 UTC (rev 18829) @@ -1,15 +1,2 @@ -# 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) + $(MAKE) -C trunk $* Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2012-07-21 16:02:28 UTC (rev 18828) +++ csw/mgar/pkg/gdb/trunk/Makefile 2012-07-23 06:56:03 UTC (rev 18829) @@ -1,35 +1,74 @@ +# $Id$ + NAME = gdb -VERSION = 6.8 +VERSION = 7.4.1 +GARTYPE = v2 CATEGORIES = devel -GARTYPE = v2 -DESCRIPTION = The GNU Project Debugger +DESCRIPTION = The GNU Debugger define BLURB -endef + GDB, the GNU Project debugger, allows you to see what is going on 'inside' + another program while it executes -- or what another program was doing at + the moment it crashed. -MASTER_SITES = http://ftp.gnu.org/gnu/gdb/ -DISTFILES = $(NAME)-$(VERSION).tar.bz2 + GDB can do four main kinds of things (plus other things in support of these) + to help you catch bugs in the act: -# Patches from http://cvs.opensolaris.org/source/xref/sfw/usr/src/cmd/gdb/ -PATCHFILES = gdb.auxv.patch -PATCHFILES += gdb.solib-svr4.patch + - Start your program, specifying anything that might affect its behavior. + - Make your program stop on specified conditions. + - Examine what has happened, when your program has stopped. + - Change things in your program, so you can experiment with correcting the + effects of one bug and go on to learn about another. -SPKG_SOURCEURL = http://www.gnu.org/software/gdb + The program being debugged can be written in Ada, C, C++, Objective-C, Pascal + (and many other languages). Those programs might be executing on the same + machine as GDB (native) or on another machine (remote). GDB can run on most + popular UNIX and Microsoft Windows variants. +endef -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz +MASTER_SITES = $(GNU_MIRROR) +DISTFILES = $(DISTNAME).tar.gz +# from private patch 2: +PATCHFILES += 0001-OpenSolaris-gdb-solib-svr4.patch +# from private patch 3: +PATCHFILES += 0002-OpenSolaris-gdb-fork-child.patch +# from private patch 4: +PATCHFILES += 0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch -# 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 = +GARCOMPILER = GNU -RUNTIME_DEP_PKGS = CSWexpat CSWggettextrt CSWiconv CSWncurses +BUILD_DEP_PKGS += CSWgcc4ada +BUILD_DEP_PKGS += CSWflex-new +BUILD_DEP_PKGS += CSWexpect +BUILD_DEP_PKGS += CSWdejagnu +BUILD_DEP_PKGS += CSWlibiconv-dev +BUILD_DEP_PKGS += CSWlibncurses-dev +BUILD_DEP_PKGS += CSWlibz-dev -BUILD64 = 1 -NOISALIST = 1 -CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS = $(DIRPATHS) +CONFIGURE_ARGS += --enable-64-bit-bfd +CONFIGURE_ARGS += --enable-tui +CONFIGURE_ARGS += --with-curses +CONFIGURE_ARGS += --with-expat +CONFIGURE_ARGS += --with-python +# private TCL headers not being installed +# (https://www.opencsw.org/mantis/view.php?id=4652) +#CONFIGURE_ARGS += --enable-gdbtk +#CONFIGURE_ARGS += --with-tcl=/opt/csw/lib +#CONFIGURE_ARGS += --with-tk=/opt/csw/lib +CONFIGURE_ARGS += --with-x +RUNTIME_DEP_PKGS += CSWlibexpat1 +RUNTIME_DEP_PKGS += CSWlibiconv2 +RUNTIME_DEP_PKGS += CSWlibintl8 +RUNTIME_DEP_PKGS += CSWlibncurses5 +RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS += CSWlibz1 + include gar/category.mk -# Needed for testing -PATH := $(PATH):/opt/csw/gcc4/bin +PATH := /opt/csw/gnu:/opt/csw/libexec/flex-2.5.35/bin:$(PATH) + +# this is private and not available publicly +mydependencies: + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done Modified: csw/mgar/pkg/gdb/trunk/checksums =================================================================== --- csw/mgar/pkg/gdb/trunk/checksums 2012-07-21 16:02:28 UTC (rev 18828) +++ csw/mgar/pkg/gdb/trunk/checksums 2012-07-23 06:56:03 UTC (rev 18829) @@ -1,3 +1 @@ -c9da266b884fb8fa54df786dfaadbc7a gdb-6.8.tar.bz2 -0e2918ca6429132ec762588dc722f6d0 gdb.auxv.patch -d10a6f2ec5eaced8a9ae908b2d5e1d3e gdb.solib-svr4.patch +5fb7fca9ef7a9e3cfee0e2f2c0e52051 gdb-7.4.1.tar.gz Added: csw/mgar/pkg/gdb/trunk/files/0001-OpenSolaris-gdb-solib-svr4.patch =================================================================== --- csw/mgar/pkg/gdb/trunk/files/0001-OpenSolaris-gdb-solib-svr4.patch (rev 0) +++ csw/mgar/pkg/gdb/trunk/files/0001-OpenSolaris-gdb-solib-svr4.patch 2012-07-23 06:56:03 UTC (rev 18829) @@ -0,0 +1,28 @@ +From 40c7d0836f4433f9908ffa814fb67507cee07051 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Fri, 20 Jul 2012 15:47:41 +0200 +Subject: [PATCH] OpenSolaris gdb solib svr4 + +--- + gdb/solib-svr4.c | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c +index 69d3cb5..640ef70 100644 +--- a/gdb/solib-svr4.c ++++ b/gdb/solib-svr4.c +@@ -130,6 +130,11 @@ svr4_same_1 (const char *gdb_so_name, const char *inferior_so_name) + if (strcmp (gdb_so_name, "/usr/lib/sparcv9/ld.so.1") == 0 + && strcmp (inferior_so_name, "/lib/sparcv9/ld.so.1") == 0) + return 1; ++ /* Similarly, we observed the same issue with amd64, but with ++ different locations. */ ++ if (strcmp (gdb_so_name, "/usr/lib/amd64/ld.so.1") == 0 ++ && strcmp (inferior_so_name, "/lib/amd64/ld.so.1") == 0) ++ return 1; + + return 0; + } +-- +1.7.10.3 + Added: csw/mgar/pkg/gdb/trunk/files/0002-OpenSolaris-gdb-fork-child.patch =================================================================== --- csw/mgar/pkg/gdb/trunk/files/0002-OpenSolaris-gdb-fork-child.patch (rev 0) +++ csw/mgar/pkg/gdb/trunk/files/0002-OpenSolaris-gdb-fork-child.patch 2012-07-23 06:56:03 UTC (rev 18829) @@ -0,0 +1,87 @@ +From 8a377eecfc6cd2ee3fc1cf1cccc6614917306555 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Fri, 20 Jul 2012 15:56:22 +0200 +Subject: [PATCH] OpenSolaris gdb fork child + +--- + gdb/fork-child.c | 37 +++++++++++++++++++++++++++++++++++++ + 1 file changed, 37 insertions(+) + +diff --git a/gdb/fork-child.c b/gdb/fork-child.c +index cba91f9..8a45a62 100644 +--- a/gdb/fork-child.c ++++ b/gdb/fork-child.c +@@ -43,6 +43,16 @@ extern char **environ; + + static char *exec_wrapper; + ++/* On Solaris, the SHELL may be a hard link to /usr/lib/isaexec. ++ If so, there will be one more exec trap to skip while starting ++ the inferior. */ ++ ++#include ++#include ++#include ++ ++static int isaexec_shell; ++ + /* Break up SCRATCH into an argument vector suitable for passing to + execvp and store it in ARGV. E.g., on "run a b c d" this routine + would get as input the string "a b c d", and as output it would +@@ -144,6 +154,8 @@ fork_inferior (char *exec_file_arg, char *allargs, char **env, + int i; + int save_errno; + ++ isaexec_shell = 0; /* Solaris only */ ++ + /* If no exec file handed to us, get it from the exec-file command + -- with a good, common error message if none is specified. */ + exec_file = exec_file_arg; +@@ -156,12 +168,34 @@ fork_inferior (char *exec_file_arg, char *allargs, char **env, + shell_file = shell_file_arg; + if (STARTUP_WITH_SHELL) + { ++ /* Solaris only, is the shell a hard link to isaexec? */ ++ struct stat buf1, buf2; ++ + /* Figure out what shell to start up the user program under. */ + if (shell_file == NULL) + shell_file = getenv ("SHELL"); + if (shell_file == NULL) + shell_file = default_shell_file; + shell = 1; ++ ++ /* Solaris only, is the shell a hard link to isaexec? ++ If either stat call fails or the user's shell is ++ not linked to isaexec, proceed with gdb's normal ++ behavior, i.e. do not skip an extra exec. ++ ++ Assume that two files are the same if their inode ++ numbers, device numbers, and number of links match. ++ Is it possible to get a false positive if the shell ++ and isaexec are located on different file systems? */ ++ if ( ++ stat ("/usr/lib/isaexec", &buf1) == 0 && ++ stat (shell_file, &buf2) == 0 && ++ buf1.st_ino == buf2.st_ino && ++ buf1.st_dev == buf2.st_dev && ++ buf1.st_nlink == buf2.st_nlink ++ ) { ++ isaexec_shell = 1; ++ } + } + + if (!shell) +@@ -425,6 +459,9 @@ startup_inferior (int ntraps) + else + resume_ptid = minus_one_ptid; + ++ /* Solaris only, increment ntraps if shell is isaexec'ed. */ ++ pending_execs += isaexec_shell; ++ + /* The process was started by the fork that created it, but it will + have stopped one instruction after execing the shell. Here we + must get it up to actual execution of the real program. */ +-- +1.7.10.3 + Added: csw/mgar/pkg/gdb/trunk/files/0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch =================================================================== --- csw/mgar/pkg/gdb/trunk/files/0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch (rev 0) +++ csw/mgar/pkg/gdb/trunk/files/0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch 2012-07-23 06:56:03 UTC (rev 18829) @@ -0,0 +1,33 @@ +From 0b22de02c702dd00ce3b2ce56651a60cb46cf00c Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Fri, 20 Jul 2012 16:04:02 +0200 +Subject: [PATCH] Extend to OpenCSW the OpenSolaris gdb fork child + +--- + gdb/fork-child.c | 10 ++++++++++ + 1 file changed, 10 insertions(+) + +diff --git a/gdb/fork-child.c b/gdb/fork-child.c +index 8a45a62..18c0d2c 100644 +--- a/gdb/fork-child.c ++++ b/gdb/fork-child.c +@@ -196,6 +196,16 @@ fork_inferior (char *exec_file_arg, char *allargs, char **env, + ) { + isaexec_shell = 1; + } ++ /* do the same for Open CSW: */ ++ if ( ++ stat ("/opt/csw/bin/isaexec", &buf1) == 0 && ++ stat (shell_file, &buf2) == 0 && ++ buf1.st_ino == buf2.st_ino && ++ buf1.st_dev == buf2.st_dev && ++ buf1.st_nlink == buf2.st_nlink ++ ) { ++ isaexec_shell = 1; ++ } + } + + if (!shell) +-- +1.7.10.3 + Deleted: csw/mgar/pkg/gdb/trunk/files/gdb.auxv.patch =================================================================== --- csw/mgar/pkg/gdb/trunk/files/gdb.auxv.patch 2012-07-21 16:02:28 UTC (rev 18828) +++ csw/mgar/pkg/gdb/trunk/files/gdb.auxv.patch 2012-07-23 06:56:03 UTC (rev 18829) @@ -1,81 +0,0 @@ ---- gdb-6.8/gdb/auxv.c.orig Sun Aug 2 13:51:23 2009 -+++ gdb-6.8/gdb/auxv.c Sun Aug 2 13:51:46 2009 -@@ -52,9 +52,21 @@ - int fd; - LONGEST n; - -+ /* -+ * Solaris pads auxv for 32 bit process out to 64 bits when being read -+ * by a 64 bit process. gdb expects a 32 bit auxv for 32 bit processes. -+ * We'll remove the padding here. -+ */ -+ int solaris_64_32 = TYPE_LENGTH (builtin_type_void_data_ptr) == 4 && sizeof (void *) == 8; -+ - gdb_assert (object == TARGET_OBJECT_AUXV); - gdb_assert (readbuf || writebuf); - -+ /* -+ * Adjust offest for the 64/32 case. -+ */ -+ if (solaris_64_32) offset *= 2; -+ - pathname = xstrprintf ("/proc/%d/auxv", PIDGET (inferior_ptid)); - fd = open (pathname, writebuf != NULL ? O_WRONLY : O_RDONLY); - xfree (pathname); -@@ -64,10 +76,54 @@ - if (offset != (ULONGEST) 0 - && lseek (fd, (off_t) offset, SEEK_SET) != (off_t) offset) - n = -1; -- else if (readbuf != NULL) -+ else if (readbuf != NULL) { - n = read (fd, readbuf, len); -- else -+ /* -+ * Remove the padding for the 64/32 case. -+ */ -+ if (solaris_64_32) { -+ /* -+ * Solaris pads auxv for 32 bit process out to 64 bits when being read -+ * by a 64 bit process. gdb expects a 32 bit auxv for 32 bit processes. -+ */ -+ unsigned *from, *to; -+ gdb_assert (n % 4 == 0); -+ from = to = (unsigned *)readbuf; -+ while (from < (unsigned *)(readbuf + n)) { -+ /* -+ * The type is always in the first 4 bytes followed by 4 bytes -+ * of padding on both SPARC and x86. -+ */ -+ *to++ = *from; -+ from += 2; -+ /* -+ * The value is before the padding on Intel and after on SPARC. -+ */ -+ switch (gdbarch_byte_order (current_gdbarch)) { -+ case BFD_ENDIAN_LITTLE: -+ *to++ = *from; -+ gdb_assert (*(from + 1) == 0); -+ break; -+ case BFD_ENDIAN_BIG: -+ gdb_assert (*from == 0); -+ *to++ = *(from + 1); -+ break; -+ default: gdb_assert (0); -+ } -+ from += 2; -+ } -+ /* -+ * Adjust the length for the 64/32 case. -+ */ -+ n /= 2; -+ } -+ } else { -+ /* -+ * Does gdb ever write to auxv? -+ */ -+ gdb_assert (!writebuf); - n = write (fd, writebuf, len); -+ } - - (void) close (fd); - Deleted: csw/mgar/pkg/gdb/trunk/files/gdb.solib-svr4.patch =================================================================== --- csw/mgar/pkg/gdb/trunk/files/gdb.solib-svr4.patch 2012-07-21 16:02:28 UTC (rev 18828) +++ csw/mgar/pkg/gdb/trunk/files/gdb.solib-svr4.patch 2012-07-23 06:56:03 UTC (rev 18829) @@ -1,15 +0,0 @@ ---- gdb-6.8/gdb/solib-svr4.c.orig Fri Jul 10 12:25:23 2009 -+++ gdb-6.8/gdb/solib-svr4.c Fri Jul 10 12:25:34 2009 -@@ -1649,6 +1649,12 @@ - if (strcmp (gdb->so_original_name, "/usr/lib/ld.so.1") == 0 - && strcmp (inferior->so_original_name, "/lib/ld.so.1") == 0) - return 1; -+ if (strcmp (gdb->so_original_name, "/usr/lib/amd64/ld.so.1") == 0 -+ && strcmp (inferior->so_original_name, "/lib/amd64/ld.so.1") == 0) -+ return 1; -+ if (strcmp (gdb->so_original_name, "/usr/lib/sparcv9/ld.so.1") == 0 -+ && strcmp (inferior->so_original_name, "/lib/sparcv9/ld.so.1") == 0) -+ return 1; - - return 0; - } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Mon Jul 23 08:59:24 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Mon, 23 Jul 2012 06:59:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[18830] csw/mgar/pkg/gstplugins/trunk/Makefile Message-ID: Revision: 18830 http://gar.svn.sourceforge.net/gar/?rev=18830&view=rev Author: cgrzemba Date: 2012-07-23 06:59:24 +0000 (Mon, 23 Jul 2012) Log Message: ----------- gstplugins/trunk: add runtime dependencies Modified Paths: -------------- csw/mgar/pkg/gstplugins/trunk/Makefile Modified: csw/mgar/pkg/gstplugins/trunk/Makefile =================================================================== --- csw/mgar/pkg/gstplugins/trunk/Makefile 2012-07-23 06:56:03 UTC (rev 18829) +++ csw/mgar/pkg/gstplugins/trunk/Makefile 2012-07-23 06:59:24 UTC (rev 18830) @@ -15,9 +15,6 @@ MASTER_SITES = http://gstreamer.freedesktop.org/src/gst-plugins-base/ DISTFILES = $(NAME)-$(VERSION).tar.gz -PACKAGES = CSWgstplugins -CATALOGNAME = gstplugins - # We define upstream file regex so we can be notifed of new upstream software release UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz @@ -37,6 +34,230 @@ PATCHFILES += 0001-Makefile.in.patch REINPLACE_USRSHARE += docs/plugins/html/*.html docs/libs/html/*.html +PACKAGES = CSWgstplugins +CATALOGNAME = gstplugins +SPKG_DESC_CSWgstplugins += $(DESCRIPTION), base +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibice +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWliboil +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstdataprotocol0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibxext +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibsm +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibtheoraenc1 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibx11 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibtheoradec1 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibogg0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibxv +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgconf2-4 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgio2-0-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWpango +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibvorbisenc2 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibvorbis0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstcontroller0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWgnomevfs2 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgsttag0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstvideo0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstriff0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstpbutils0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstinterfaces0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstaudio0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins += CSWlibgstapp0-10-0 + +PACKAGES += CSWlibgstapp0-10-0 +CATALOGNAME_CSWlibgstapp0-10-0 = libgstapp0_10_0 +PKGFILES_CSWlibgstapp0-10-0 += $(call baseisadirs,$(libdir),libgstapp-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstapp0-10-0 += $(call baseisadirs,$(libdir),libgstapp-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstapp0-10-0 += $(DESCRIPTION), libgstapp-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstapp0-10-0 += CSWlibxml2-2 + + +PACKAGES += CSWlibgstaudio0-10-0 +CATALOGNAME_CSWlibgstaudio0-10-0 = libgstaudio0_10_0 +PKGFILES_CSWlibgstaudio0-10-0 += $(call baseisadirs,$(libdir),libgstaudio-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstaudio0-10-0 += $(call baseisadirs,$(libdir),libgstaudio-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstaudio0-10-0 += $(DESCRIPTION), libgstaudio-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibgstaudio0-10-0 += CSWlibgstinterfaces0-10-0 + +PACKAGES += CSWlibgstcdda0-10-0 +CATALOGNAME_CSWlibgstcdda0-10-0 = libgstcdda0_10_0 +PKGFILES_CSWlibgstcdda0-10-0 += $(call baseisadirs,$(libdir),libgstcdda-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstcdda0-10-0 += $(call baseisadirs,$(libdir),libgstcdda-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstcdda0-10-0 += $(DESCRIPTION), libgstcdda-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibgsttag0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibgstcdda0-10-0 += CSWlibglib2-0-0 + +PACKAGES += CSWlibgstfft0-10-0 +CATALOGNAME_CSWlibgstfft0-10-0 = libgstfft0_10_0 +PKGFILES_CSWlibgstfft0-10-0 += $(call baseisadirs,$(libdir),libgstfft-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstfft0-10-0 += $(call baseisadirs,$(libdir),libgstfft-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstfft0-10-0 += $(DESCRIPTION), libgstfft-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstfft0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstfft0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstfft0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstfft0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstfft0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstfft0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstinterfaces0-10-0 +CATALOGNAME_CSWlibgstinterfaces0-10-0 = libgstinterfaces0_10_0 +PKGFILES_CSWlibgstinterfaces0-10-0 += $(call baseisadirs,$(libdir),libgstinterfaces-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstinterfaces0-10-0 += $(call baseisadirs,$(libdir),libgstinterfaces-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstinterfaces0-10-0 += $(DESCRIPTION), libgstinterfaces-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstinterfaces0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstnetbuffer0-10-0 +CATALOGNAME_CSWlibgstnetbuffer0-10-0 = libgstnetbuffer0_10_0 +PKGFILES_CSWlibgstnetbuffer0-10-0 += $(call baseisadirs,$(libdir),libgstnetbuffer-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstnetbuffer0-10-0 += $(call baseisadirs,$(libdir),libgstnetbuffer-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstnetbuffer0-10-0 += $(DESCRIPTION), libgstnetbuffer-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstnetbuffer0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnetbuffer0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnetbuffer0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstnetbuffer0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnetbuffer0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstnetbuffer0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstpbutils0-10-0 +CATALOGNAME_CSWlibgstpbutils0-10-0 = libgstpbutils0_10_0 +PKGFILES_CSWlibgstpbutils0-10-0 += $(call baseisadirs,$(libdir),libgstpbutils-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstpbutils0-10-0 += $(call baseisadirs,$(libdir),libgstpbutils-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstpbutils0-10-0 += $(DESCRIPTION), libgstpbutils-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstpbutils0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstriff0-10-0 +CATALOGNAME_CSWlibgstriff0-10-0 = libgstriff0_10_0 +PKGFILES_CSWlibgstriff0-10-0 += $(call baseisadirs,$(libdir),libgstriff-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstriff0-10-0 += $(call baseisadirs,$(libdir),libgstriff-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstriff0-10-0 += $(DESCRIPTION), libgstriff-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgsttag0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibgstaudio0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstriff0-10-0 += CSWlibglib2-0-0 + +PACKAGES += CSWlibgstrtp0-10-0 +CATALOGNAME_CSWlibgstrtp0-10-0 = libgstrtp0_10_0 +PKGFILES_CSWlibgstrtp0-10-0 += $(call baseisadirs,$(libdir),libgstrtp-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstrtp0-10-0 += $(call baseisadirs,$(libdir),libgstrtp-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstrtp0-10-0 += $(DESCRIPTION), libgstrtp-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtp0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstrtsp0-10-0 +CATALOGNAME_CSWlibgstrtsp0-10-0 = libgstrtsp0_10_0 +PKGFILES_CSWlibgstrtsp0-10-0 += $(call baseisadirs,$(libdir),libgstrtsp-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstrtsp0-10-0 += $(call baseisadirs,$(libdir),libgstrtsp-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstrtsp0-10-0 += $(DESCRIPTION), libgstrtsp-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstrtsp0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstsdp0-10-0 +CATALOGNAME_CSWlibgstsdp0-10-0 = libgstsdp0_10_0 +PKGFILES_CSWlibgstsdp0-10-0 += $(call baseisadirs,$(libdir),libgstsdp-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstsdp0-10-0 += $(call baseisadirs,$(libdir),libgstsdp-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstsdp0-10-0 += $(DESCRIPTION), libgstsdp-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstsdp0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstsdp0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstsdp0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstsdp0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstsdp0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstsdp0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgsttag0-10-0 +CATALOGNAME_CSWlibgsttag0-10-0 = libgsttag0_10_0 +PKGFILES_CSWlibgsttag0-10-0 += $(call baseisadirs,$(libdir),libgsttag-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgsttag0-10-0 += $(call baseisadirs,$(libdir),libgsttag-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgsttag0-10-0 += $(DESCRIPTION), libgsttag-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgsttag0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWlibgstvideo0-10-0 +CATALOGNAME_CSWlibgstvideo0-10-0 = libgstvideo0_10_0 +PKGFILES_CSWlibgstvideo0-10-0 += $(call baseisadirs,$(libdir),libgstvideo-0\.10\.so\.0\.20\.0) +PKGFILES_CSWlibgstvideo0-10-0 += $(call baseisadirs,$(libdir),libgstvideo-0\.10\.so\.0(\.\d+)*) +SPKG_DESC_CSWlibgstvideo0-10-0 += $(DESCRIPTION), libgstvideo-0.10.so.0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibgstbase0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibgstreamer0-10-0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgstvideo0-10-0 += CSWlibxml2-2 + +PACKAGES += CSWgstplugins-dev +CATALOGNAME_CSWgstplugins-dev = gstplugins_dev +SPKG_DESC_CSWgstplugins-dev += $(DESCRIPTION), development files +PKGFILES_CSWgstplugins-dev += $(PKGFILES_DEVEL) +PKGFILES_CSWgstplugins-dev += $(prefix)/share/docs/plugins/html/*.html +PKGFILES_CSWgstplugins-dev += $(prefix)/share/docs/libs/html/*.html +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstsdp0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstriff0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstcdda0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstnetbuffer0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstfft0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstinterfaces0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstpbutils0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstrtp0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgsttag0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstvideo0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstrtsp0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstapp0-10-0 +RUNTIME_DEP_PKGS_CSWgstplugins-dev += CSWlibgstaudio0-10-0 + CONFIGURE_ARGS += $(DIRPATHS) CONFIGURE_ARGS += --disable-debug CONFIGURE_ARGS += --disable-alsa This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 23 12:55:54 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 23 Jul 2012 10:55:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18831] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 18831 http://gar.svn.sourceforge.net/gar/?rev=18831&view=rev Author: pfelecan Date: 2012-07-23 10:55:53 +0000 (Mon, 23 Jul 2012) Log Message: ----------- gdb/trunk: plan for 64 bit version Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2012-07-23 06:59:24 UTC (rev 18830) +++ csw/mgar/pkg/gdb/trunk/Makefile 2012-07-23 10:55:53 UTC (rev 18831) @@ -36,6 +36,7 @@ PATCHFILES += 0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch GARCOMPILER = GNU +BUILD64 = 1 BUILD_DEP_PKGS += CSWgcc4ada BUILD_DEP_PKGS += CSWflex-new This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From chninkel at users.sourceforge.net Mon Jul 23 13:01:06 2012 From: chninkel at users.sourceforge.net (chninkel at users.sourceforge.net) Date: Mon, 23 Jul 2012 11:01:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[18832] csw/mgar/pkg/openssl1/trunk Message-ID: Revision: 18832 http://gar.svn.sourceforge.net/gar/?rev=18832&view=rev Author: chninkel Date: 2012-07-23 11:01:06 +0000 (Mon, 23 Jul 2012) Log Message: ----------- enables symbol versioning Modified Paths: -------------- csw/mgar/pkg/openssl1/trunk/Makefile Added Paths: ----------- csw/mgar/pkg/openssl1/trunk/files/0007-enables-symbols-versioning.patch csw/mgar/pkg/openssl1/trunk/files/map.openssl.engines csw/mgar/pkg/openssl1/trunk/files/map.openssl.libcrypto csw/mgar/pkg/openssl1/trunk/files/map.openssl.libssl Modified: csw/mgar/pkg/openssl1/trunk/Makefile =================================================================== --- csw/mgar/pkg/openssl1/trunk/Makefile 2012-07-23 10:55:53 UTC (rev 18831) +++ csw/mgar/pkg/openssl1/trunk/Makefile 2012-07-23 11:01:06 UTC (rev 18832) @@ -87,6 +87,7 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz DISTFILES += CSWlibssl1-0-0.checkinstall CSWlibssl1-0-0.preinstall CSWlibssl1-0-0.postinstall DISTFILES += changelog.CSW README.CSW +DISTFILES += map.openssl.libcrypto map.openssl.libssl map.openssl.engines DOCFILES = CHANGES CHANGES.SSLeay PROBLEMS README FAQ README.ASN1 INSTALL NEWS README.ENGINE @@ -113,6 +114,10 @@ # Patch taken from Debian PATCHFILES += c_rehash-compat.patch +# Oh yes, let's do symbol versioning so we don't become +# crazy during library migration +PATCHFILES += 0007-enables-symbols-versioning.patch + # support for pkcs11 engine http://blogs.sun.com/chichang1/entry/how_to_integrate_pkcs11_engine ifdef PKCS11 ifneq ($(shell /usr/bin/uname -r),5.9) @@ -215,6 +220,12 @@ pre-configure-modulated: echo " ==> Creating configure script" cd $(WORKSRC) && ln -nf Configure configure + ln -nf $(WORKDIR)/map.openssl.libcrypto $(WORKSRC)/map.openssl.libcrypto + ln -nf $(WORKDIR)/map.openssl.libssl $(WORKSRC)/map.openssl.libssl + for ENGINE in 4758cca aep atalla cswift gmp chil nuron sureware ubsec padlock capi; do \ + ln -nf $(WORKDIR)/map.openssl.engines $(WORKSRC)/engines/map.openssl.lib$$ENGINE; \ + done + ln -nf $(WORKDIR)/map.openssl.engines $(WORKSRC)/engines/ccgost/map.openssl.libgost @$(MAKECOOKIE) fix-paths: Added: csw/mgar/pkg/openssl1/trunk/files/0007-enables-symbols-versioning.patch =================================================================== --- csw/mgar/pkg/openssl1/trunk/files/0007-enables-symbols-versioning.patch (rev 0) +++ csw/mgar/pkg/openssl1/trunk/files/0007-enables-symbols-versioning.patch 2012-07-23 11:01:06 UTC (rev 18832) @@ -0,0 +1,34 @@ +From 01a8e2d2112b81204bc13771008884296917ba44 Mon Sep 17 00:00:00 2001 +From: Yann Rouillard +Date: Fri, 20 Jul 2012 23:25:25 +0200 +Subject: [PATCH] enables symbols versioning + +--- + Makefile.shared | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.shared b/Makefile.shared +index e753f44..a52ac8c 100644 +--- a/Makefile.shared ++++ b/Makefile.shared +@@ -372,7 +372,7 @@ link_o.solaris: + SHLIB_SUFFIX=; \ + ALLSYMSFLAGS="$${MINUSZ}allextract"; \ + NOALLSYMSFLAGS="$${MINUSZ}defaultextract"; \ +- SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \ ++ SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -M map.openssl.lib$(LIBNAME) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \ + fi; \ + $(LINK_SO_O) + link_a.solaris: +@@ -386,7 +386,7 @@ link_a.solaris: + SHLIB_SUFFIX=;\ + ALLSYMSFLAGS="$${MINUSZ}allextract"; \ + NOALLSYMSFLAGS="$${MINUSZ}defaultextract"; \ +- SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \ ++ SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -M map.openssl.lib$(LIBNAME) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \ + fi; \ + $(LINK_SO_A) + link_app.solaris: +-- +1.7.10.2 + Added: csw/mgar/pkg/openssl1/trunk/files/map.openssl.engines =================================================================== --- csw/mgar/pkg/openssl1/trunk/files/map.openssl.engines (rev 0) +++ csw/mgar/pkg/openssl1/trunk/files/map.openssl.engines 2012-07-23 11:01:06 UTC (rev 18832) @@ -0,0 +1,8 @@ +OPENSSL_1.0.0 { + global: + bind_engine; + v_check; + local: + *; +}; + Added: csw/mgar/pkg/openssl1/trunk/files/map.openssl.libcrypto =================================================================== --- csw/mgar/pkg/openssl1/trunk/files/map.openssl.libcrypto (rev 0) +++ csw/mgar/pkg/openssl1/trunk/files/map.openssl.libcrypto 2012-07-23 11:01:06 UTC (rev 18832) @@ -0,0 +1,3736 @@ +OPENSSL_1.0.0 { + global: + SSLeay; + SSLeay_version; + ASN1_INTEGER_get; + ASN1_INTEGER_set; + ASN1_INTEGER_to_BN; + ASN1_OBJECT_create; + ASN1_OBJECT_free; + ASN1_OBJECT_new; + ASN1_PRINTABLE_type; + ASN1_STRING_cmp; + ASN1_STRING_dup; + ASN1_STRING_free; + ASN1_STRING_new; + ASN1_STRING_print; + ASN1_STRING_set; + ASN1_STRING_type_new; + ASN1_TYPE_free; + ASN1_TYPE_new; + ASN1_UNIVERSALSTRING_to_string; + ASN1_UTCTIME_check; + ASN1_UTCTIME_print; + ASN1_UTCTIME_set; + ASN1_check_infinite_end; + ASN1_d2i_bio; + ASN1_d2i_fp; + ASN1_digest; + ASN1_dup; + ASN1_get_object; + ASN1_i2d_bio; + ASN1_i2d_fp; + ASN1_object_size; + ASN1_parse; + ASN1_put_object; + ASN1_sign; + ASN1_verify; + BF_cbc_encrypt; + BF_cfb64_encrypt; + BF_ecb_encrypt; + BF_encrypt; + BF_ofb64_encrypt; + BF_options; + BF_set_key; + BIO_CONNECT_free; + BIO_CONNECT_new; + BIO_accept; + BIO_ctrl; + BIO_int_ctrl; + BIO_debug_callback; + BIO_dump; + BIO_dup_chain; + BIO_f_base64; + BIO_f_buffer; + BIO_f_cipher; + BIO_f_md; + BIO_f_null; + BIO_fd_non_fatal_error; + BIO_fd_should_retry; + BIO_find_type; + BIO_free; + BIO_free_all; + BIO_get_accept_socket; + BIO_get_host_ip; + BIO_get_port; + BIO_get_retry_BIO; + BIO_get_retry_reason; + BIO_gethostbyname; + BIO_gets; + BIO_new; + BIO_new_accept; + BIO_new_connect; + BIO_new_fd; + BIO_new_file; + BIO_new_fp; + BIO_new_socket; + BIO_pop; + BIO_printf; + BIO_push; + BIO_puts; + BIO_read; + BIO_s_accept; + BIO_s_connect; + BIO_s_fd; + BIO_s_file; + BIO_s_mem; + BIO_s_null; + BIO_s_socket; + BIO_set; + BIO_set_cipher; + BIO_set_tcp_ndelay; + BIO_sock_cleanup; + BIO_sock_error; + BIO_sock_init; + BIO_sock_non_fatal_error; + BIO_sock_should_retry; + BIO_socket_ioctl; + BIO_write; + BN_CTX_free; + BN_CTX_new; + BN_MONT_CTX_free; + BN_MONT_CTX_new; + BN_MONT_CTX_set; + BN_add; + BN_add_word; + BN_hex2bn; + BN_bin2bn; + BN_bn2hex; + BN_bn2bin; + BN_clear; + BN_clear_bit; + BN_clear_free; + BN_cmp; + BN_copy; + BN_div; + BN_div_word; + BN_dup; + BN_free; + BN_from_montgomery; + BN_gcd; + BN_generate_prime; + BN_get_word; + BN_is_bit_set; + BN_is_prime; + BN_lshift; + BN_lshift1; + BN_mask_bits; + BN_mod_exp; + BN_mod_exp_mont; + BN_mod_exp_simple; + BN_mod_inverse; + BN_mod_mul; + BN_mod_mul_montgomery; + BN_mod_word; + BN_mul; + BN_new; + BN_num_bits; + BN_num_bits_word; + BN_options; + BN_print; + BN_print_fp; + BN_rand; + BN_reciprocal; + BN_rshift; + BN_rshift1; + BN_set_bit; + BN_set_word; + BN_sqr; + BN_sub; + BN_to_ASN1_INTEGER; + BN_ucmp; + BN_value_one; + BUF_MEM_free; + BUF_MEM_grow; + BUF_MEM_new; + BUF_strdup; + CONF_free; + CONF_get_number; + CONF_get_section; + CONF_get_string; + CONF_load; + CRYPTO_add_lock; + CRYPTO_dbg_free; + CRYPTO_dbg_malloc; + CRYPTO_dbg_realloc; + CRYPTO_free; + CRYPTO_get_add_lock_callback; + CRYPTO_get_id_callback; + CRYPTO_get_lock_name; + CRYPTO_get_locking_callback; + CRYPTO_get_mem_functions; + CRYPTO_lock; + CRYPTO_malloc; + CRYPTO_mem_ctrl; + CRYPTO_mem_leaks; + CRYPTO_mem_leaks_cb; + CRYPTO_mem_leaks_fp; + CRYPTO_realloc; + CRYPTO_remalloc; + CRYPTO_set_add_lock_callback; + CRYPTO_set_id_callback; + CRYPTO_set_locking_callback; + CRYPTO_set_mem_functions; + CRYPTO_thread_id; + DH_check; + DH_compute_key; + DH_free; + DH_generate_key; + DH_generate_parameters; + DH_new; + DH_size; + DHparams_print; + DHparams_print_fp; + DSA_free; + DSA_generate_key; + DSA_generate_parameters; + DSA_new; + DSA_print; + DSA_print_fp; + DSA_sign; + DSA_sign_setup; + DSA_size; + DSA_verify; + DSAparams_print; + DSAparams_print_fp; + ERR_clear_error; + ERR_error_string; + ERR_free_strings; + ERR_func_error_string; + ERR_get_err_state_table; + ERR_get_error; + ERR_get_error_line; + ERR_get_state; + ERR_get_string_table; + ERR_lib_error_string; + ERR_load_ASN1_strings; + ERR_load_BIO_strings; + ERR_load_BN_strings; + ERR_load_BUF_strings; + ERR_load_CONF_strings; + ERR_load_DH_strings; + ERR_load_DSA_strings; + ERR_load_ERR_strings; + ERR_load_EVP_strings; + ERR_load_OBJ_strings; + ERR_load_PEM_strings; + ERR_load_RSA_strings; + ERR_load_X509_strings; + ERR_load_crypto_strings; + ERR_load_strings; + ERR_peek_error; + ERR_peek_error_line; + ERR_print_errors; + ERR_print_errors_fp; + ERR_put_error; + ERR_reason_error_string; + ERR_remove_state; + EVP_BytesToKey; + EVP_CIPHER_CTX_cleanup; + EVP_CipherFinal; + EVP_CipherInit; + EVP_CipherUpdate; + EVP_DecodeBlock; + EVP_DecodeFinal; + EVP_DecodeInit; + EVP_DecodeUpdate; + EVP_DecryptFinal; + EVP_DecryptInit; + EVP_DecryptUpdate; + EVP_DigestFinal; + EVP_DigestInit; + EVP_DigestUpdate; + EVP_EncodeBlock; + EVP_EncodeFinal; + EVP_EncodeInit; + EVP_EncodeUpdate; + EVP_EncryptFinal; + EVP_EncryptInit; + EVP_EncryptUpdate; + EVP_OpenFinal; + EVP_OpenInit; + EVP_PKEY_assign; + EVP_PKEY_copy_parameters; + EVP_PKEY_free; + EVP_PKEY_missing_parameters; + EVP_PKEY_new; + EVP_PKEY_save_parameters; + EVP_PKEY_size; + EVP_PKEY_type; + EVP_SealFinal; + EVP_SealInit; + EVP_SignFinal; + EVP_VerifyFinal; + EVP_add_cipher; + EVP_add_digest; + EVP_bf_cbc; + EVP_bf_cfb64; + EVP_bf_ecb; + EVP_bf_ofb; + EVP_cleanup; + EVP_des_cbc; + EVP_des_cfb64; + EVP_des_ecb; + EVP_des_ede; + EVP_des_ede3; + EVP_des_ede3_cbc; + EVP_des_ede3_cfb64; + EVP_des_ede3_ofb; + EVP_des_ede_cbc; + EVP_des_ede_cfb64; + EVP_des_ede_ofb; + EVP_des_ofb; + EVP_desx_cbc; + EVP_dss; + EVP_dss1; + EVP_enc_null; + EVP_get_cipherbyname; + EVP_get_digestbyname; + EVP_get_pw_prompt; + EVP_idea_cbc; + EVP_idea_cfb64; + EVP_idea_ecb; + EVP_idea_ofb; + EVP_md5; + EVP_md_null; + EVP_rc2_cbc; + EVP_rc2_cfb64; + EVP_rc2_ecb; + EVP_rc2_ofb; + EVP_rc4; + EVP_read_pw_string; + EVP_set_pw_prompt; + EVP_sha; + EVP_sha1; + MD5; + MD5_Final; + MD5_Init; + MD5_Update; + MDC2; + MDC2_Final; + MDC2_Init; + MDC2_Update; + NETSCAPE_SPKAC_free; + NETSCAPE_SPKAC_new; + NETSCAPE_SPKI_free; + NETSCAPE_SPKI_new; + NETSCAPE_SPKI_sign; + NETSCAPE_SPKI_verify; + OBJ_add_object; + OBJ_cleanup; + OBJ_cmp; + OBJ_create; + OBJ_dup; + OBJ_ln2nid; + OBJ_new_nid; + OBJ_nid2ln; + OBJ_nid2obj; + OBJ_nid2sn; + OBJ_obj2nid; + OBJ_sn2nid; + OBJ_txt2nid; + PEM_ASN1_read; + PEM_ASN1_read_bio; + PEM_ASN1_write; + PEM_ASN1_write_bio; + PEM_SealFinal; + PEM_SealInit; + PEM_SealUpdate; + PEM_SignFinal; + PEM_SignInit; + PEM_SignUpdate; + PEM_X509_INFO_read; + PEM_X509_INFO_read_bio; + PEM_X509_INFO_write_bio; + PEM_dek_info; + PEM_do_header; + PEM_get_EVP_CIPHER_INFO; + PEM_proc_type; + PEM_read; + PEM_read_DHparams; + PEM_read_DSAPrivateKey; + PEM_read_DSAparams; + PEM_read_PKCS7; + PEM_read_PrivateKey; + PEM_read_RSAPrivateKey; + PEM_read_X509; + PEM_read_X509_CRL; + PEM_read_X509_REQ; + PEM_read_bio; + PEM_read_bio_DHparams; + PEM_read_bio_DSAPrivateKey; + PEM_read_bio_DSAparams; + PEM_read_bio_PKCS7; + PEM_read_bio_PrivateKey; + PEM_read_bio_RSAPrivateKey; + PEM_read_bio_X509; + PEM_read_bio_X509_CRL; + PEM_read_bio_X509_REQ; + PEM_write; + PEM_write_DHparams; + PEM_write_DSAPrivateKey; + PEM_write_DSAparams; + PEM_write_PKCS7; + PEM_write_PrivateKey; + PEM_write_RSAPrivateKey; + PEM_write_X509; + PEM_write_X509_CRL; + PEM_write_X509_REQ; + PEM_write_bio; + PEM_write_bio_DHparams; + PEM_write_bio_DSAPrivateKey; + PEM_write_bio_DSAparams; + PEM_write_bio_PKCS7; + PEM_write_bio_PrivateKey; + PEM_write_bio_RSAPrivateKey; + PEM_write_bio_X509; + PEM_write_bio_X509_CRL; + PEM_write_bio_X509_REQ; + PKCS7_DIGEST_free; + PKCS7_DIGEST_new; + PKCS7_ENCRYPT_free; + PKCS7_ENCRYPT_new; + PKCS7_ENC_CONTENT_free; + PKCS7_ENC_CONTENT_new; + PKCS7_ENVELOPE_free; + PKCS7_ENVELOPE_new; + PKCS7_ISSUER_AND_SERIAL_digest; + PKCS7_ISSUER_AND_SERIAL_free; + PKCS7_ISSUER_AND_SERIAL_new; + PKCS7_RECIP_INFO_free; + PKCS7_RECIP_INFO_new; + PKCS7_SIGNED_free; + PKCS7_SIGNED_new; + PKCS7_SIGNER_INFO_free; + PKCS7_SIGNER_INFO_new; + PKCS7_SIGN_ENVELOPE_free; + PKCS7_SIGN_ENVELOPE_new; + PKCS7_dup; + PKCS7_free; + PKCS7_new; + RAND_bytes; + RAND_cleanup; + RAND_file_name; + RAND_load_file; + RAND_seed; + RAND_write_file; + RC2_cbc_encrypt; + RC2_cfb64_encrypt; + RC2_ecb_encrypt; + RC2_encrypt; + RC2_ofb64_encrypt; + RC2_set_key; + RC4; + RC4_options; + RC4_set_key; + RSAPrivateKey_dup; + RSAPublicKey_dup; + RSA_PKCS1_SSLeay; + RSA_free; + RSA_generate_key; + RSA_new; + RSA_new_method; + RSA_print; + RSA_print_fp; + RSA_private_decrypt; + RSA_private_encrypt; + RSA_public_decrypt; + RSA_public_encrypt; + RSA_set_default_method; + RSA_sign; + RSA_sign_ASN1_OCTET_STRING; + RSA_size; + RSA_verify; + RSA_verify_ASN1_OCTET_STRING; + SHA; + SHA1; + SHA1_Final; + SHA1_Init; + SHA1_Update; + SHA_Final; + SHA_Init; + SHA_Update; + OpenSSL_add_all_ciphers; + OpenSSL_add_all_digests; + TXT_DB_create_index; + TXT_DB_free; + TXT_DB_get_by_index; + TXT_DB_insert; + TXT_DB_read; + TXT_DB_write; + X509_ALGOR_free; + X509_ALGOR_new; + X509_ATTRIBUTE_free; + X509_ATTRIBUTE_new; + X509_CINF_free; + X509_CINF_new; + X509_CRL_INFO_free; + X509_CRL_INFO_new; + X509_CRL_add_ext; + X509_CRL_cmp; + X509_CRL_delete_ext; + X509_CRL_dup; + X509_CRL_free; + X509_CRL_get_ext; + X509_CRL_get_ext_by_NID; + X509_CRL_get_ext_by_OBJ; + X509_CRL_get_ext_by_critical; + X509_CRL_get_ext_count; + X509_CRL_new; + X509_CRL_sign; + X509_CRL_verify; + X509_EXTENSION_create_by_NID; + X509_EXTENSION_create_by_OBJ; + X509_EXTENSION_dup; + X509_EXTENSION_free; + X509_EXTENSION_get_critical; + X509_EXTENSION_get_data; + X509_EXTENSION_get_object; + X509_EXTENSION_new; + X509_EXTENSION_set_critical; + X509_EXTENSION_set_data; + X509_EXTENSION_set_object; + X509_INFO_free; + X509_INFO_new; + X509_LOOKUP_by_alias; + X509_LOOKUP_by_fingerprint; + X509_LOOKUP_by_issuer_serial; + X509_LOOKUP_by_subject; + X509_LOOKUP_ctrl; + X509_LOOKUP_file; + X509_LOOKUP_free; + X509_LOOKUP_hash_dir; + X509_LOOKUP_init; + X509_LOOKUP_new; + X509_LOOKUP_shutdown; + X509_NAME_ENTRY_create_by_NID; + X509_NAME_ENTRY_create_by_OBJ; + X509_NAME_ENTRY_dup; + X509_NAME_ENTRY_free; + X509_NAME_ENTRY_get_data; + X509_NAME_ENTRY_get_object; + X509_NAME_ENTRY_new; + X509_NAME_ENTRY_set_data; + X509_NAME_ENTRY_set_object; + X509_NAME_add_entry; + X509_NAME_cmp; + X509_NAME_delete_entry; + X509_NAME_digest; + X509_NAME_dup; + X509_NAME_entry_count; + X509_NAME_free; + X509_NAME_get_entry; + X509_NAME_get_index_by_NID; + X509_NAME_get_index_by_OBJ; + X509_NAME_get_text_by_NID; + X509_NAME_get_text_by_OBJ; + X509_NAME_hash; + X509_NAME_new; + X509_NAME_oneline; + X509_NAME_print; + X509_NAME_set; + X509_OBJECT_free_contents; + X509_OBJECT_retrieve_by_subject; + X509_OBJECT_up_ref_count; + X509_PKEY_free; + X509_PKEY_new; + X509_PUBKEY_free; + X509_PUBKEY_get; + X509_PUBKEY_new; + X509_PUBKEY_set; + X509_REQ_INFO_free; + X509_REQ_INFO_new; + X509_REQ_dup; + X509_REQ_free; + X509_REQ_get_pubkey; + X509_REQ_new; + X509_REQ_print; + X509_REQ_print_fp; + X509_REQ_set_pubkey; + X509_REQ_set_subject_name; + X509_REQ_set_version; + X509_REQ_sign; + X509_REQ_to_X509; + X509_REQ_verify; + X509_REVOKED_add_ext; + X509_REVOKED_delete_ext; + X509_REVOKED_free; + X509_REVOKED_get_ext; + X509_REVOKED_get_ext_by_NID; + X509_REVOKED_get_ext_by_OBJ; + X509_REVOKED_get_ext_by_critical; + X509_REVOKED_get_ext_count; + X509_REVOKED_new; + X509_SIG_free; + X509_SIG_new; + X509_STORE_CTX_cleanup; + X509_STORE_CTX_init; + X509_STORE_add_cert; + X509_STORE_add_lookup; + X509_STORE_get_by_subject; + X509_STORE_load_locations; + X509_STORE_new; + X509_STORE_free; + X509_STORE_set_default_paths; + X509_VAL_free; + X509_VAL_new; + X509_add_ext; + X509_certificate_type; + X509_check_private_key; + X509_cmp_current_time; + X509_delete_ext; + X509_digest; + X509_dup; + X509_free; + X509_get_default_cert_area; + X509_get_default_cert_dir; + X509_get_default_cert_dir_env; + X509_get_default_cert_file; + X509_get_default_cert_file_env; + X509_get_default_private_dir; + X509_get_ext; + X509_get_ext_by_NID; + X509_get_ext_by_OBJ; + X509_get_ext_by_critical; + X509_get_ext_count; + X509_get_issuer_name; + X509_get_pubkey; + X509_get_pubkey_parameters; + X509_get_serialNumber; + X509_get_subject_name; + X509_gmtime_adj; + X509_issuer_and_serial_cmp; + X509_issuer_and_serial_hash; + X509_issuer_name_cmp; + X509_issuer_name_hash; + X509_load_cert_file; + X509_new; + X509_print; + X509_print_fp; + X509_set_issuer_name; + X509_set_notAfter; + X509_set_notBefore; + X509_set_pubkey; + X509_set_serialNumber; + X509_set_subject_name; + X509_set_version; + X509_sign; + X509_subject_name_cmp; + X509_subject_name_hash; + X509_to_X509_REQ; + X509_verify; + X509_verify_cert; + X509_verify_cert_error_string; + X509v3_add_ext; + X509v3_delete_ext; + X509v3_get_ext; + X509v3_get_ext_by_NID; + X509v3_get_ext_by_OBJ; + X509v3_get_ext_by_critical; + X509v3_get_ext_count; + _des_crypt; + a2d_ASN1_OBJECT; + a2i_ASN1_INTEGER; + a2i_ASN1_STRING; + asn1_Finish; + asn1_GetSequence; + bn_div_words; + bn_expand2; + bn_mul_add_words; + bn_mul_words; + BN_uadd; + BN_usub; + bn_sqr_words; + _ossl_old_crypt; + d2i_ASN1_BIT_STRING; + d2i_ASN1_BOOLEAN; + d2i_ASN1_IA5STRING; + d2i_ASN1_INTEGER; + d2i_ASN1_OBJECT; + d2i_ASN1_OCTET_STRING; + d2i_ASN1_PRINTABLE; + d2i_ASN1_PRINTABLESTRING; + d2i_ASN1_SET; + d2i_ASN1_T61STRING; + d2i_ASN1_TYPE; + d2i_ASN1_UTCTIME; + d2i_ASN1_bytes; + d2i_ASN1_type_bytes; + d2i_DHparams; + d2i_DSAPrivateKey; + d2i_DSAPrivateKey_bio; + d2i_DSAPrivateKey_fp; + d2i_DSAPublicKey; + d2i_DSAparams; + d2i_NETSCAPE_SPKAC; + d2i_NETSCAPE_SPKI; + d2i_Netscape_RSA; + d2i_PKCS7; + d2i_PKCS7_DIGEST; + d2i_PKCS7_ENCRYPT; + d2i_PKCS7_ENC_CONTENT; + d2i_PKCS7_ENVELOPE; + d2i_PKCS7_ISSUER_AND_SERIAL; + d2i_PKCS7_RECIP_INFO; + d2i_PKCS7_SIGNED; + d2i_PKCS7_SIGNER_INFO; + d2i_PKCS7_SIGN_ENVELOPE; + d2i_PKCS7_bio; + d2i_PKCS7_fp; + d2i_PrivateKey; + d2i_PublicKey; + d2i_RSAPrivateKey; + d2i_RSAPrivateKey_bio; + d2i_RSAPrivateKey_fp; + d2i_RSAPublicKey; + d2i_X509; + d2i_X509_ALGOR; + d2i_X509_ATTRIBUTE; + d2i_X509_CINF; + d2i_X509_CRL; + d2i_X509_CRL_INFO; + d2i_X509_CRL_bio; + d2i_X509_CRL_fp; + d2i_X509_EXTENSION; + d2i_X509_NAME; + d2i_X509_NAME_ENTRY; + d2i_X509_PKEY; + d2i_X509_PUBKEY; + d2i_X509_REQ; + d2i_X509_REQ_INFO; + d2i_X509_REQ_bio; + d2i_X509_REQ_fp; + d2i_X509_REVOKED; + d2i_X509_SIG; + d2i_X509_VAL; + d2i_X509_bio; + d2i_X509_fp; + DES_cbc_cksum; + DES_cbc_encrypt; + DES_cfb64_encrypt; + DES_cfb_encrypt; + DES_decrypt3; + DES_ecb3_encrypt; + DES_ecb_encrypt; + DES_ede3_cbc_encrypt; + DES_ede3_cfb64_encrypt; + DES_ede3_ofb64_encrypt; + DES_enc_read; + DES_enc_write; + DES_encrypt1; + DES_encrypt2; + DES_encrypt3; + DES_fcrypt; + DES_is_weak_key; + DES_key_sched; + DES_ncbc_encrypt; + DES_ofb64_encrypt; + DES_ofb_encrypt; + DES_options; + DES_pcbc_encrypt; + DES_quad_cksum; + DES_random_key; + _ossl_old_des_random_seed; + _ossl_old_des_read_2passwords; + _ossl_old_des_read_password; + _ossl_old_des_read_pw; + _ossl_old_des_read_pw_string; + DES_set_key; + DES_set_odd_parity; + DES_string_to_2keys; + DES_string_to_key; + DES_xcbc_encrypt; + fcrypt_body; + i2a_ASN1_INTEGER; + i2a_ASN1_OBJECT; + i2a_ASN1_STRING; + i2d_ASN1_BIT_STRING; + i2d_ASN1_BOOLEAN; + i2d_ASN1_IA5STRING; + i2d_ASN1_INTEGER; + i2d_ASN1_OBJECT; + i2d_ASN1_OCTET_STRING; + i2d_ASN1_PRINTABLE; + i2d_ASN1_SET; + i2d_ASN1_TYPE; + i2d_ASN1_UTCTIME; + i2d_ASN1_bytes; + i2d_DHparams; + i2d_DSAPrivateKey; + i2d_DSAPrivateKey_bio; + i2d_DSAPrivateKey_fp; + i2d_DSAPublicKey; + i2d_DSAparams; + i2d_NETSCAPE_SPKAC; + i2d_NETSCAPE_SPKI; + i2d_Netscape_RSA; + i2d_PKCS7; + i2d_PKCS7_DIGEST; + i2d_PKCS7_ENCRYPT; + i2d_PKCS7_ENC_CONTENT; + i2d_PKCS7_ENVELOPE; + i2d_PKCS7_ISSUER_AND_SERIAL; + i2d_PKCS7_RECIP_INFO; + i2d_PKCS7_SIGNED; + i2d_PKCS7_SIGNER_INFO; + i2d_PKCS7_SIGN_ENVELOPE; + i2d_PKCS7_bio; + i2d_PKCS7_fp; + i2d_PrivateKey; + i2d_PublicKey; + i2d_RSAPrivateKey; + i2d_RSAPrivateKey_bio; + i2d_RSAPrivateKey_fp; + i2d_RSAPublicKey; + i2d_X509; + i2d_X509_ALGOR; + i2d_X509_ATTRIBUTE; + i2d_X509_CINF; + i2d_X509_CRL; + i2d_X509_CRL_INFO; + i2d_X509_CRL_bio; + i2d_X509_CRL_fp; + i2d_X509_EXTENSION; + i2d_X509_NAME; + i2d_X509_NAME_ENTRY; + i2d_X509_PKEY; + i2d_X509_PUBKEY; + i2d_X509_REQ; + i2d_X509_REQ_INFO; + i2d_X509_REQ_bio; + i2d_X509_REQ_fp; + i2d_X509_REVOKED; + i2d_X509_SIG; + i2d_X509_VAL; + i2d_X509_bio; + i2d_X509_fp; + idea_cbc_encrypt; + idea_cfb64_encrypt; + idea_ecb_encrypt; + idea_encrypt; + idea_ofb64_encrypt; + idea_options; + idea_set_decrypt_key; + idea_set_encrypt_key; + lh_delete; + lh_doall; + lh_doall_arg; + lh_free; + lh_insert; + lh_new; + lh_node_stats; + lh_node_stats_bio; + lh_node_usage_stats; + lh_node_usage_stats_bio; + lh_retrieve; + lh_stats; + lh_stats_bio; + lh_strhash; + sk_delete; + sk_delete_ptr; + sk_dup; + sk_find; + sk_free; + sk_insert; + sk_new; + sk_pop; + sk_pop_free; + sk_push; + sk_set_cmp_func; + sk_shift; + sk_unshift; + sk_zero; + BIO_f_nbio_test; + ASN1_TYPE_get; + ASN1_TYPE_set; + ERR_load_PKCS7_strings; + X509_find_by_issuer_and_serial; + X509_find_by_subject; + PKCS7_ctrl; + PKCS7_set_type; + PKCS7_set_content; + PKCS7_SIGNER_INFO_set; + PKCS7_add_signer; + PKCS7_add_certificate; + PKCS7_add_crl; + PKCS7_content_new; + PKCS7_dataVerify; + PKCS7_dataInit; + PKCS7_add_signature; + PKCS7_cert_from_signer_info; + PKCS7_get_signer_info; + EVP_mdc2; + PEM_read_bio_RSAPublicKey; + PEM_write_bio_RSAPublicKey; + d2i_RSAPublicKey_bio; + i2d_RSAPublicKey_bio; + PEM_read_RSAPublicKey; + PEM_write_RSAPublicKey; + d2i_RSAPublicKey_fp; + i2d_RSAPublicKey_fp; + BIO_copy_next_retry; + RSA_flags; + X509_STORE_add_crl; + X509_load_crl_file; + EVP_rc2_40_cbc; + EVP_rc4_40; + EVP_CIPHER_CTX_init; + HMAC; + HMAC_Init; + HMAC_Update; + HMAC_Final; + ERR_get_next_error_library; + EVP_PKEY_cmp_parameters; + BIO_ptr_ctrl; + BN_BLINDING_convert; + BN_BLINDING_invert; + BN_BLINDING_update; + RSA_blinding_on; + RSA_blinding_off; + i2t_ASN1_OBJECT; + BN_BLINDING_new; + BN_BLINDING_free; + EVP_cast5_cbc; + EVP_cast5_cfb64; + EVP_cast5_ecb; + EVP_cast5_ofb; + BF_decrypt; + CAST_set_key; + CAST_encrypt; + CAST_decrypt; + CAST_ecb_encrypt; + CAST_cbc_encrypt; + CAST_cfb64_encrypt; + CAST_ofb64_encrypt; + RC2_decrypt; + OBJ_create_objects; + BN_exp; + BN_mul_word; + BN_sub_word; + BN_dec2bn; + BN_bn2dec; + CRYPTO_free_ex_data; + CRYPTO_get_ex_data; + CRYPTO_set_ex_data; + ERR_load_CRYPTO_strings; + EVP_PKEY_bits; + MD5_Transform; + SHA1_Transform; + SHA_Transform; + X509_STORE_CTX_get_chain; + X509_STORE_CTX_get_current_cert; + X509_STORE_CTX_get_error; + X509_STORE_CTX_get_error_depth; + X509_STORE_CTX_get_ex_data; + X509_STORE_CTX_set_cert; + X509_STORE_CTX_set_chain; + X509_STORE_CTX_set_error; + X509_STORE_CTX_set_ex_data; + CRYPTO_dup_ex_data; + CRYPTO_get_new_lockid; + CRYPTO_new_ex_data; + RSA_set_ex_data; + RSA_get_ex_data; + RSA_get_ex_new_index; + RSA_padding_add_PKCS1_type_1; + RSA_padding_add_PKCS1_type_2; + RSA_padding_add_SSLv23; + RSA_padding_add_none; + RSA_padding_check_PKCS1_type_1; + RSA_padding_check_PKCS1_type_2; + RSA_padding_check_SSLv23; + RSA_padding_check_none; + bn_add_words; + CRYPTO_get_ex_new_index; + RIPEMD160_Init; + RIPEMD160_Update; + RIPEMD160_Final; + RIPEMD160; + RIPEMD160_Transform; + BN_bn2mpi; + BN_mpi2bn; + ASN1_BIT_STRING_get_bit; + ASN1_BIT_STRING_set_bit; + BIO_get_ex_data; + BIO_get_ex_new_index; + BIO_set_ex_data; + EVP_PKEY_decrypt; + EVP_PKEY_encrypt; + PKCS7_RECIP_INFO_set; + PKCS7_add_recipient; + PKCS7_add_recipient_info; + PKCS7_set_cipher; + ASN1_TYPE_get_int_octetstring; + ASN1_TYPE_get_octetstring; + ASN1_TYPE_set_int_octetstring; + ASN1_TYPE_set_octetstring; + ASN1_UTCTIME_set_string; + ERR_add_error_data; + ERR_set_error_data; + EVP_CIPHER_asn1_to_param; + EVP_CIPHER_param_to_asn1; + EVP_CIPHER_get_asn1_iv; + EVP_CIPHER_set_asn1_iv; + asn1_add_error; + d2i_ASN1_BMPSTRING; + i2d_ASN1_BMPSTRING; + BN_init; + COMP_CTX_new; + COMP_CTX_free; + X509_STORE_CTX_get_ex_new_index; + OBJ_NAME_add; + BIO_socket_nbio; + EVP_rc2_64_cbc; + OBJ_NAME_cleanup; + OBJ_NAME_get; + OBJ_NAME_init; + OBJ_NAME_new_index; + OBJ_NAME_remove; + BN_MONT_CTX_copy; + RAND_SSLeay; + RAND_set_rand_method; + RSA_memory_lock; + bn_sub_words; + bn_mul_normal; + bn_mul_comba8; + bn_mul_comba4; + bn_sqr_normal; + bn_sqr_comba8; + bn_sqr_comba4; + bn_cmp_words; + bn_mul_recursive; + bn_mul_part_recursive; + bn_sqr_recursive; + bn_mul_low_normal; + BN_RECP_CTX_init; + BN_RECP_CTX_new; + BN_RECP_CTX_free; + BN_RECP_CTX_set; + BN_mod_mul_reciprocal; + BN_mod_exp_recp; + BN_div_recp; + BN_CTX_init; + BN_MONT_CTX_init; + RAND_get_rand_method; + PKCS7_add_attribute; + PKCS7_add_signed_attribute; + PKCS7_digest_from_attributes; + PKCS7_get_attribute; + PKCS7_get_issuer_and_serial; + PKCS7_get_signed_attribute; + COMP_compress_block; + COMP_expand_block; + COMP_rle; + COMP_zlib; + PKCS7_set_attributes; + PKCS7_set_signed_attributes; + X509_ATTRIBUTE_create; + X509_ATTRIBUTE_dup; + ASN1_GENERALIZEDTIME_check; + ASN1_GENERALIZEDTIME_print; + ASN1_GENERALIZEDTIME_set; + ASN1_GENERALIZEDTIME_set_string; + ASN1_TIME_print; + BASIC_CONSTRAINTS_free; + BASIC_CONSTRAINTS_new; + ERR_load_X509V3_strings; + NETSCAPE_CERT_SEQUENCE_free; + NETSCAPE_CERT_SEQUENCE_new; + OBJ_txt2obj; + PEM_read_NETSCAPE_CERT_SEQUENCE; + PEM_read_bio_NETSCAPE_CERT_SEQUENCE; + PEM_write_NETSCAPE_CERT_SEQUENCE; + PEM_write_bio_NETSCAPE_CERT_SEQUENCE; + X509V3_EXT_add; + X509V3_EXT_add_alias; + X509V3_EXT_add_conf; + X509V3_EXT_cleanup; + X509V3_EXT_conf; + X509V3_EXT_conf_nid; + X509V3_EXT_get; + X509V3_EXT_get_nid; + X509V3_EXT_print; + X509V3_EXT_print_fp; + X509V3_add_standard_extensions; + X509V3_add_value; + X509V3_add_value_bool; + X509V3_add_value_int; + X509V3_conf_free; + X509V3_get_value_bool; + X509V3_get_value_int; + X509V3_parse_list; + d2i_ASN1_GENERALIZEDTIME; + d2i_ASN1_TIME; + d2i_BASIC_CONSTRAINTS; + d2i_NETSCAPE_CERT_SEQUENCE; + i2d_ASN1_GENERALIZEDTIME; + i2d_ASN1_TIME; + i2d_BASIC_CONSTRAINTS; + i2d_NETSCAPE_CERT_SEQUENCE; + EVP_MD_CTX_copy; + i2d_ASN1_ENUMERATED; + d2i_ASN1_ENUMERATED; + ASN1_ENUMERATED_set; + ASN1_ENUMERATED_get; + BN_to_ASN1_ENUMERATED; + ASN1_ENUMERATED_to_BN; + i2a_ASN1_ENUMERATED; + a2i_ASN1_ENUMERATED; + i2d_GENERAL_NAME; + d2i_GENERAL_NAME; + GENERAL_NAME_new; + GENERAL_NAME_free; + GENERAL_NAMES_new; + GENERAL_NAMES_free; + d2i_GENERAL_NAMES; + i2d_GENERAL_NAMES; + i2v_GENERAL_NAMES; + i2s_ASN1_OCTET_STRING; + s2i_ASN1_OCTET_STRING; + hex_to_string; + string_to_hex; + DES_ede3_cbcm_encrypt; + RSA_padding_add_PKCS1_OAEP; + RSA_padding_check_PKCS1_OAEP; + X509_CRL_print_fp; + X509_CRL_print; + i2v_GENERAL_NAME; + v2i_GENERAL_NAME; + i2d_PKEY_USAGE_PERIOD; + d2i_PKEY_USAGE_PERIOD; + PKEY_USAGE_PERIOD_new; + PKEY_USAGE_PERIOD_free; + v2i_GENERAL_NAMES; + i2s_ASN1_INTEGER; + X509V3_EXT_d2i; + name_cmp; + i2s_ASN1_ENUMERATED; + i2s_ASN1_ENUMERATED_TABLE; + BIO_s_log; + BIO_f_reliable; + PKCS7_dataFinal; + PKCS7_dataDecode; + X509V3_EXT_CRL_add_conf; + BN_set_params; + BN_get_params; + EVP_ripemd160; + ASN1_TIME_set; + i2d_AUTHORITY_KEYID; + d2i_AUTHORITY_KEYID; + AUTHORITY_KEYID_new; + AUTHORITY_KEYID_free; + ASN1_seq_unpack; + ASN1_seq_pack; + ASN1_unpack_string; + ASN1_pack_string; + PKCS12_MAKE_KEYBAG; + PKCS8_encrypt; + PKCS12_MAKE_SHKEYBAG; + PKCS12_pack_p7data; + PKCS12_pack_p7encdata; + PKCS12_add_localkeyid; + PKCS12_add_friendlyname_asc; + PKCS12_add_friendlyname_uni; + PKCS12_get_friendlyname; + PKCS12_pbe_crypt; + PKCS12_init; + PKCS12_key_gen_asc; + PKCS12_key_gen_uni; + PKCS12_gen_mac; + PKCS12_verify_mac; + PKCS12_set_mac; + PKCS12_setup_mac; + OPENSSL_asc2uni; + OPENSSL_uni2asc; + i2d_PKCS12_BAGS; + PKCS12_BAGS_new; + d2i_PKCS12_BAGS; + PKCS12_BAGS_free; + i2d_PKCS12; + d2i_PKCS12; + PKCS12_new; + PKCS12_free; + i2d_PKCS12_MAC_DATA; + PKCS12_MAC_DATA_new; + d2i_PKCS12_MAC_DATA; + PKCS12_MAC_DATA_free; + i2d_PKCS12_SAFEBAG; + PKCS12_SAFEBAG_new; + d2i_PKCS12_SAFEBAG; + PKCS12_SAFEBAG_free; + ERR_load_PKCS12_strings; + PKCS12_PBE_add; + PKCS8_add_keyusage; + PKCS12_get_attr_gen; + PKCS12_parse; + PKCS12_create; + i2d_PKCS12_bio; + i2d_PKCS12_fp; + d2i_PKCS12_bio; + d2i_PKCS12_fp; + i2d_PBEPARAM; + PBEPARAM_new; + d2i_PBEPARAM; + PBEPARAM_free; + i2d_PKCS8_PRIV_KEY_INFO; + PKCS8_PRIV_KEY_INFO_new; + d2i_PKCS8_PRIV_KEY_INFO; + PKCS8_PRIV_KEY_INFO_free; + EVP_PKCS82PKEY; + EVP_PKEY2PKCS8; + PKCS8_set_broken; + EVP_PBE_alg_add; + PKCS5_pbe_set; + EVP_PBE_cleanup; + i2d_SXNET; + d2i_SXNET; + SXNET_new; + SXNET_free; + i2d_SXNETID; + d2i_SXNETID; + SXNETID_new; + SXNETID_free; + DSA_SIG_new; + DSA_SIG_free; + DSA_do_sign; + DSA_do_verify; + d2i_DSA_SIG; + i2d_DSA_SIG; + i2d_ASN1_VISIBLESTRING; + d2i_ASN1_VISIBLESTRING; + i2d_ASN1_UTF8STRING; + d2i_ASN1_UTF8STRING; + i2d_DIRECTORYSTRING; + d2i_DIRECTORYSTRING; + i2d_DISPLAYTEXT; + d2i_DISPLAYTEXT; + i2d_PBKDF2PARAM; + PBKDF2PARAM_new; + d2i_PBKDF2PARAM; + PBKDF2PARAM_free; + i2d_PBE2PARAM; + PBE2PARAM_new; + d2i_PBE2PARAM; + PBE2PARAM_free; + SXNET_add_id_asc; + SXNET_add_id_ulong; + SXNET_add_id_INTEGER; + SXNET_get_id_asc; + SXNET_get_id_ulong; + SXNET_get_id_INTEGER; + X509V3_set_conf_lhash; + i2d_CERTIFICATEPOLICIES; + CERTIFICATEPOLICIES_new; + CERTIFICATEPOLICIES_free; + d2i_CERTIFICATEPOLICIES; + i2d_POLICYINFO; + POLICYINFO_new; + d2i_POLICYINFO; + POLICYINFO_free; + i2d_POLICYQUALINFO; + POLICYQUALINFO_new; + d2i_POLICYQUALINFO; + POLICYQUALINFO_free; + i2d_USERNOTICE; + USERNOTICE_new; + d2i_USERNOTICE; + USERNOTICE_free; + i2d_NOTICEREF; + NOTICEREF_new; + d2i_NOTICEREF; + NOTICEREF_free; + X509V3_get_string; + X509V3_get_section; + X509V3_string_free; + X509V3_section_free; + X509V3_set_ctx; + s2i_ASN1_INTEGER; + CRYPTO_set_locked_mem_functions; + CRYPTO_get_locked_mem_functions; + CRYPTO_malloc_locked; + CRYPTO_free_locked; + BN_mod_exp2_mont; + ERR_get_error_line_data; + ERR_peek_error_line_data; + PKCS12_PBE_keyivgen; + X509_ALGOR_dup; + i2d_CRL_DIST_POINTS; + CRL_DIST_POINTS_new; + CRL_DIST_POINTS_free; + d2i_CRL_DIST_POINTS; + i2d_DIST_POINT; + DIST_POINT_new; + d2i_DIST_POINT; + DIST_POINT_free; + i2d_DIST_POINT_NAME; + DIST_POINT_NAME_new; + DIST_POINT_NAME_free; + d2i_DIST_POINT_NAME; + X509V3_add_value_uchar; + X509V3_EXT_i2d; + X509V3_EXT_val_prn; + X509V3_EXT_add_list; + EVP_CIPHER_type; + EVP_PBE_CipherInit; + X509V3_add_value_bool_nf; + d2i_ASN1_UINTEGER; + sk_value; + sk_num; + sk_set; + sk_sort; + PKCS5_PBE_add; + PEM_write_bio_PKCS8; + i2d_PKCS8_fp; + PEM_read_bio_PKCS8_PRIV_KEY_INFO; + d2i_PKCS8_bio; + d2i_PKCS8_PRIV_KEY_INFO_fp; + PEM_write_bio_PKCS8_PRIV_KEY_INFO; + PEM_read_PKCS8; + d2i_PKCS8_PRIV_KEY_INFO_bio; + d2i_PKCS8_fp; + PEM_write_PKCS8; + PEM_read_PKCS8_PRIV_KEY_INFO; + PEM_read_bio_PKCS8; + PEM_write_PKCS8_PRIV_KEY_INFO; + PKCS5_PBE_keyivgen; + i2d_PKCS8_bio; + i2d_PKCS8_PRIV_KEY_INFO_fp; + i2d_PKCS8_PRIV_KEY_INFO_bio; + BIO_s_bio; + PKCS5_pbe2_set; + PKCS5_PBKDF2_HMAC_SHA1; + PKCS5_v2_PBE_keyivgen; + PEM_write_bio_PKCS8PrivateKey; + PEM_write_PKCS8PrivateKey; + BIO_ctrl_get_read_request; + BIO_ctrl_pending; + BIO_ctrl_wpending; + BIO_new_bio_pair; + BIO_ctrl_get_write_guarantee; + CRYPTO_num_locks; + CONF_load_bio; + CONF_load_fp; + PKCS7_signatureVerify; + RSA_set_method; + RSA_get_method; + RSA_get_default_method; + RSA_check_key; + OBJ_obj2txt; + DSA_dup_DH; + X509_REQ_get_extensions; + X509_REQ_set_extension_nids; + BIO_nwrite; + X509_REQ_extension_nid; + BIO_nread; + X509_REQ_get_extension_nids; + BIO_nwrite0; + X509_REQ_add_extensions_nid; + BIO_nread0; + X509_REQ_add_extensions; + BIO_new_mem_buf; + DH_set_ex_data; + DH_set_method; + DSA_OpenSSL; + DH_get_ex_data; + DH_get_ex_new_index; + DSA_new_method; + DH_new_method; + DH_OpenSSL; + DSA_get_ex_new_index; + DH_get_default_method; + DSA_set_ex_data; + DH_set_default_method; + DSA_get_ex_data; + X509V3_EXT_REQ_add_conf; + NETSCAPE_SPKI_print; + NETSCAPE_SPKI_set_pubkey; + NETSCAPE_SPKI_b64_encode; + NETSCAPE_SPKI_get_pubkey; + NETSCAPE_SPKI_b64_decode; + UTF8_putc; + UTF8_getc; + RSA_null_method; + ASN1_tag2str; + BIO_ctrl_reset_read_request; + DISPLAYTEXT_new; + ASN1_GENERALIZEDTIME_free; + X509_REVOKED_get_ext_d2i; + X509_set_ex_data; + X509_NAME_add_entry_by_txt; + X509_NAME_add_entry_by_NID; + X509_PURPOSE_get0; + PEM_read_X509_AUX; + d2i_AUTHORITY_INFO_ACCESS; + PEM_write_PUBKEY; + ACCESS_DESCRIPTION_new; + X509_CERT_AUX_free; + d2i_ACCESS_DESCRIPTION; + X509_trust_clear; + X509_TRUST_add; + ASN1_VISIBLESTRING_new; + X509_alias_set1; + ASN1_PRINTABLESTRING_free; + EVP_PKEY_get1_DSA; + ASN1_BMPSTRING_new; + ASN1_mbstring_copy; + ASN1_UTF8STRING_new; + DSA_get_default_method; + ASN1_T61STRING_free; + DSA_set_method; + X509_get_ex_data; + ASN1_STRING_type; + X509_PURPOSE_get_by_sname; + ASN1_TIME_free; + ASN1_OCTET_STRING_cmp; + ASN1_BIT_STRING_new; + X509_get_ext_d2i; + PEM_read_bio_X509_AUX; + ASN1_STRING_set_default_mask_asc; + PEM_write_bio_RSA_PUBKEY; + ASN1_INTEGER_cmp; + d2i_RSA_PUBKEY_fp; + PEM_write_bio_DSA_PUBKEY; + X509_STORE_CTX_free; + EVP_PKEY_set1_DSA; + i2d_DSA_PUBKEY_fp; + X509_load_cert_crl_file; + ASN1_TIME_new; + i2d_RSA_PUBKEY; + X509_STORE_CTX_purpose_inherit; + PEM_read_RSA_PUBKEY; + d2i_X509_AUX; + i2d_DSA_PUBKEY; + X509_CERT_AUX_print; + PEM_read_DSA_PUBKEY; + i2d_RSA_PUBKEY_bio; + ASN1_BIT_STRING_num_asc; + i2d_PUBKEY; + ASN1_UTCTIME_free; + DSA_set_default_method; + X509_PURPOSE_get_by_id; + ACCESS_DESCRIPTION_free; + PEM_read_bio_PUBKEY; + ASN1_STRING_set_by_NID; + X509_PURPOSE_get_id; + DISPLAYTEXT_free; + OTHERNAME_new; + X509_CERT_AUX_new; + X509_TRUST_cleanup; + X509_NAME_add_entry_by_OBJ; + X509_CRL_get_ext_d2i; + X509_PURPOSE_get0_name; + PEM_read_PUBKEY; + i2d_DSA_PUBKEY_bio; + i2d_OTHERNAME; + ASN1_OCTET_STRING_free; + ASN1_BIT_STRING_set_asc; + X509_get_ex_new_index; + ASN1_STRING_TABLE_cleanup; + X509_TRUST_get_by_id; + X509_PURPOSE_get_trust; + ASN1_STRING_length; + ASN1_PRINTABLESTRING_new; + X509V3_get_d2i; + ASN1_ENUMERATED_free; + i2d_X509_CERT_AUX; + X509_STORE_CTX_set_trust; + ASN1_STRING_set_default_mask; + X509_STORE_CTX_new; + EVP_PKEY_get1_RSA; + DIRECTORYSTRING_free; + PEM_write_X509_AUX; + ASN1_OCTET_STRING_set; + d2i_DSA_PUBKEY_fp; + d2i_RSA_PUBKEY; + X509_TRUST_get0_name; + X509_TRUST_get0; + AUTHORITY_INFO_ACCESS_free; + ASN1_IA5STRING_new; + d2i_DSA_PUBKEY; + X509_check_purpose; + ASN1_ENUMERATED_new; + d2i_RSA_PUBKEY_bio; + d2i_PUBKEY; + X509_TRUST_get_trust; + X509_TRUST_get_flags; + ASN1_BMPSTRING_free; + ASN1_T61STRING_new; + ASN1_UTCTIME_new; + i2d_AUTHORITY_INFO_ACCESS; + EVP_PKEY_set1_RSA; + X509_STORE_CTX_set_purpose; + ASN1_IA5STRING_free; + PEM_write_bio_X509_AUX; + X509_PURPOSE_get_count; + X509_NAME_ENTRY_create_by_txt; + ASN1_STRING_get_default_mask; + X509_alias_get0; + ASN1_STRING_data; + i2d_ACCESS_DESCRIPTION; + ASN1_BIT_STRING_free; + PEM_read_bio_RSA_PUBKEY; + X509_add1_reject_object; + X509_check_trust; + PEM_read_bio_DSA_PUBKEY; + X509_PURPOSE_add; + ASN1_STRING_TABLE_get; + ASN1_UTF8STRING_free; + d2i_DSA_PUBKEY_bio; + PEM_write_RSA_PUBKEY; + d2i_OTHERNAME; + PEM_write_DSA_PUBKEY; + X509_PURPOSE_get0_sname; + EVP_PKEY_set1_DH; + ASN1_OCTET_STRING_dup; + ASN1_BIT_STRING_set; + X509_TRUST_get_count; + ASN1_INTEGER_free; + OTHERNAME_free; + i2d_RSA_PUBKEY_fp; + ASN1_INTEGER_dup; + d2i_X509_CERT_AUX; + PEM_write_bio_PUBKEY; + ASN1_VISIBLESTRING_free; + X509_PURPOSE_cleanup; + ASN1_mbstring_ncopy; + ASN1_GENERALIZEDTIME_new; + EVP_PKEY_get1_DH; + ASN1_OCTET_STRING_new; + ASN1_INTEGER_new; + i2d_X509_AUX; + ASN1_BIT_STRING_name_print; + X509_cmp; + ASN1_STRING_length_set; + DIRECTORYSTRING_new; + X509_add1_trust_object; + PKCS12_newpass; + SMIME_write_PKCS7; + SMIME_read_PKCS7; + DES_set_key_checked; + PKCS7_verify; + PKCS7_encrypt; + DES_set_key_unchecked; + SMIME_crlf_copy; + i2d_ASN1_PRINTABLESTRING; + PKCS7_get0_signers; + PKCS7_decrypt; + SMIME_text; + PKCS7_simple_smimecap; + PKCS7_get_smimecap; + PKCS7_sign; + PKCS7_add_attrib_smimecap; + CRYPTO_dbg_set_options; + CRYPTO_remove_all_info; + CRYPTO_get_mem_debug_functions; + CRYPTO_is_mem_check_on; + CRYPTO_set_mem_debug_functions; + CRYPTO_pop_info; + CRYPTO_push_info_; + CRYPTO_set_mem_debug_options; + PEM_write_PKCS8PrivateKey_nid; + PEM_write_bio_PKCS8PrivateKey_nid; + d2i_PKCS8PrivateKey_bio; + ASN1_NULL_free; + d2i_ASN1_NULL; + ASN1_NULL_new; + i2d_PKCS8PrivateKey_bio; + i2d_PKCS8PrivateKey_fp; + i2d_ASN1_NULL; + i2d_PKCS8PrivateKey_nid_fp; + d2i_PKCS8PrivateKey_fp; + i2d_PKCS8PrivateKey_nid_bio; + i2d_PKCS8PrivateKeyInfo_fp; + i2d_PKCS8PrivateKeyInfo_bio; + i2d_PrivateKey_fp; + d2i_PrivateKey_bio; + d2i_PrivateKey_fp; + i2d_PrivateKey_bio; + X509_reject_clear; + X509_TRUST_set_default; + d2i_AutoPrivateKey; + X509_ATTRIBUTE_get0_type; + X509_ATTRIBUTE_set1_data; + X509at_get_attr; + X509at_get_attr_count; + X509_ATTRIBUTE_create_by_NID; + X509_ATTRIBUTE_set1_object; + X509_ATTRIBUTE_count; + X509_ATTRIBUTE_create_by_OBJ; + X509_ATTRIBUTE_get0_object; + X509at_get_attr_by_NID; + X509at_add1_attr; + X509_ATTRIBUTE_get0_data; + X509at_delete_attr; + X509at_get_attr_by_OBJ; + RAND_add; + BIO_number_written; + BIO_number_read; + X509_STORE_CTX_get1_chain; + ERR_load_RAND_strings; + RAND_pseudo_bytes; + X509_REQ_get_attr_by_NID; + X509_REQ_get_attr; + X509_REQ_add1_attr_by_NID; + X509_REQ_get_attr_by_OBJ; + X509at_add1_attr_by_NID; + X509_REQ_add1_attr_by_OBJ; + X509_REQ_get_attr_count; + X509_REQ_add1_attr; + X509_REQ_delete_attr; + X509at_add1_attr_by_OBJ; + X509_REQ_add1_attr_by_txt; + X509_ATTRIBUTE_create_by_txt; + X509at_add1_attr_by_txt; + BN_pseudo_rand; + BN_is_prime_fasttest; + BN_CTX_end; + BN_CTX_start; + BN_CTX_get; + EVP_PKEY2PKCS8_broken; + ASN1_STRING_TABLE_add; + CRYPTO_dbg_get_options; + AUTHORITY_INFO_ACCESS_new; + CRYPTO_get_mem_debug_options; + DES_crypt; + PEM_write_bio_X509_REQ_NEW; + PEM_write_X509_REQ_NEW; + BIO_callback_ctrl; + RAND_egd; + RAND_status; + DES_check_key_parity; + lh_num_items; + DSO_new; + DSO_new_method; + DSO_free; + DSO_flags; + DSO_set_default_method; + DSO_get_default_method; + DSO_get_method; + DSO_set_method; + DSO_load; + DSO_bind_var; + DSO_METHOD_null; + DSO_METHOD_openssl; + DSO_METHOD_dlfcn; + DSO_METHOD_win32; + ERR_load_DSO_strings; + DSO_METHOD_dl; + NCONF_load; + NCONF_load_fp; + NCONF_new; + NCONF_get_string; + NCONF_free; + CONF_dump_fp; + NCONF_load_bio; + NCONF_dump_fp; + NCONF_get_section; + NCONF_dump_bio; + CONF_dump_bio; + NCONF_free_data; + CONF_set_default_method; + ERR_error_string_n; + BIO_snprintf; + DSO_ctrl; + BIO_vfree; + X509_REQ_digest; + X509_CRL_digest; + EVP_CIPHER_CTX_set_key_length; + EVP_CIPHER_CTX_ctrl; + BN_mod_exp_mont_word; + RAND_egd_bytes; + X509_REQ_get1_email; + X509_get1_email; + X509_email_free; + i2d_RSA_NET; + d2i_RSA_NET; + DSO_bind_func; + CRYPTO_get_new_dynlockid; + sk_new_null; + CRYPTO_set_dynlock_destroy_callback; + CRYPTO_destroy_dynlockid; + CRYPTO_set_dynlock_create_callback; + CRYPTO_set_dynlock_lock_callback; + CRYPTO_get_dynlock_lock_callback; + CRYPTO_get_dynlock_destroy_callback; + CRYPTO_get_dynlock_value; + CRYPTO_get_dynlock_create_callback; + c2i_ASN1_BIT_STRING; + i2c_ASN1_BIT_STRING; + RAND_poll; + c2i_ASN1_INTEGER; + i2c_ASN1_INTEGER; + BIO_dump_indent; + ASN1_parse_dump; + c2i_ASN1_OBJECT; + X509_NAME_print_ex_fp; + ASN1_STRING_print_ex_fp; + X509_NAME_print_ex; + ASN1_STRING_print_ex; + MD4; + MD4_Transform; + MD4_Final; + MD4_Update; + MD4_Init; + EVP_md4; + i2d_PUBKEY_bio; + i2d_PUBKEY_fp; + d2i_PUBKEY_bio; + ASN1_STRING_to_UTF8; + BIO_vprintf; + BIO_vsnprintf; + d2i_PUBKEY_fp; + X509_cmp_time; + X509_STORE_CTX_set_time; + X509_STORE_CTX_get1_issuer; + X509_OBJECT_retrieve_match; + X509_OBJECT_idx_by_subject; + X509_STORE_CTX_set_flags; + X509_STORE_CTX_trusted_stack; + X509_time_adj; + X509_check_issued; + ASN1_UTCTIME_cmp_time_t; + X509_keyid_set1; + BIO_next; + DSO_METHOD_vms; + BN_bntest_rand; + OPENSSL_issetugid; + BN_rand_range; + ERR_load_ENGINE_strings; + ENGINE_set_DSA; + ENGINE_get_finish_function; + ENGINE_get_default_RSA; + ENGINE_set_DH; + ENGINE_init; + ENGINE_finish; + ENGINE_load_public_key; + ENGINE_get_DH; + ENGINE_ctrl; + ENGINE_get_init_function; + ENGINE_set_init_function; + ENGINE_set_default_DSA; + ENGINE_get_name; + ENGINE_get_last; + ENGINE_get_prev; + ENGINE_get_default_DH; + ENGINE_get_RSA; + ENGINE_set_default; + ENGINE_get_RAND; + ENGINE_get_first; + ENGINE_by_id; + ENGINE_set_finish_function; + ENGINE_set_RSA; + ENGINE_load_private_key; + ENGINE_set_default_RAND; + ENGINE_remove; + ENGINE_free; + ENGINE_get_next; + ENGINE_set_name; + ENGINE_get_default_DSA; + ENGINE_set_default_RSA; + ENGINE_get_default_RAND; + ENGINE_set_RAND; + ENGINE_set_id; + ENGINE_set_default_DH; + ENGINE_new; + ENGINE_get_id; + ENGINE_add; + ENGINE_get_DSA; + ENGINE_get_ctrl_function; + ENGINE_set_ctrl_function; + BN_pseudo_rand_range; + X509_STORE_CTX_set_verify_cb; + ERR_load_COMP_strings; + PKCS12_item_decrypt_d2i; + ASN1_UTF8STRING_it; + ASN1_UTF8STRING_it; + ENGINE_unregister_ciphers; + ENGINE_get_ciphers; + d2i_OCSP_BASICRESP; + KRB5_CHECKSUM_it; + KRB5_CHECKSUM_it; + EC_POINT_add; + ASN1_item_ex_i2d; + OCSP_CERTID_it; + OCSP_CERTID_it; + d2i_OCSP_RESPBYTES; + X509V3_add1_i2d; + PKCS7_ENVELOPE_it; + PKCS7_ENVELOPE_it; + UI_add_input_boolean; + ENGINE_unregister_RSA; + X509V3_EXT_nconf; + ASN1_GENERALSTRING_free; + d2i_OCSP_CERTSTATUS; + X509_REVOKED_set_serialNumber; + X509_print_ex; + OCSP_ONEREQ_get1_ext_d2i; + ENGINE_register_all_RAND; + ENGINE_load_dynamic; + PBKDF2PARAM_it; + PBKDF2PARAM_it; + EXTENDED_KEY_USAGE_new; + EC_GROUP_clear_free; + OCSP_sendreq_bio; + ASN1_item_digest; + OCSP_BASICRESP_delete_ext; + OCSP_SIGNATURE_it; + OCSP_SIGNATURE_it; + X509_CRL_it; + X509_CRL_it; + OCSP_BASICRESP_add_ext; + KRB5_ENCKEY_it; + KRB5_ENCKEY_it; + UI_method_set_closer; + X509_STORE_set_purpose; + i2d_ASN1_GENERALSTRING; + OCSP_response_status; + i2d_OCSP_SERVICELOC; + ENGINE_get_digest_engine; + EC_GROUP_set_curve_GFp; + OCSP_REQUEST_get_ext_by_OBJ; + _ossl_old_des_random_key; + ASN1_T61STRING_it; + ASN1_T61STRING_it; + EC_GROUP_method_of; + i2d_KRB5_APREQ; + _ossl_old_des_encrypt; + ASN1_PRINTABLE_new; + HMAC_Init_ex; + d2i_KRB5_AUTHENT; + OCSP_archive_cutoff_new; + EC_POINT_set_Jprojective_coordinates_GFp; + _ossl_old_des_is_weak_key; + OCSP_BASICRESP_get_ext_by_OBJ; + EC_POINT_oct2point; + OCSP_SINGLERESP_get_ext_count; + UI_ctrl; + asn1_do_adb; + ASN1_template_i2d; + ENGINE_register_DH; + UI_construct_prompt; + X509_STORE_set_trust; + UI_dup_input_string; + d2i_KRB5_APREQ; + EVP_MD_CTX_copy_ex; + OCSP_request_is_signed; + i2d_OCSP_REQINFO; + KRB5_ENCKEY_free; + OCSP_resp_get0; + GENERAL_NAME_it; + GENERAL_NAME_it; + ASN1_GENERALIZEDTIME_it; + ASN1_GENERALIZEDTIME_it; + X509_STORE_set_flags; + EC_POINT_set_compressed_coordinates_GFp; + OCSP_response_status_str; + d2i_OCSP_REVOKEDINFO; + OCSP_basic_add1_cert; + ERR_get_implementation; + EVP_CipherFinal_ex; + OCSP_CERTSTATUS_new; + CRYPTO_cleanup_all_ex_data; + OCSP_resp_find; + BN_nnmod; + X509_CRL_sort; + X509_REVOKED_set_revocationDate; + ENGINE_register_RAND; + OCSP_SERVICELOC_new; + EC_POINT_set_affine_coordinates_GFp; + _ossl_old_des_options; + SXNET_it; + SXNET_it; + UI_dup_input_boolean; + PKCS12_add_CSPName_asc; + EC_POINT_is_at_infinity; + ENGINE_load_cryptodev; + DSO_convert_filename; + POLICYQUALINFO_it; + POLICYQUALINFO_it; + ENGINE_register_ciphers; + BN_mod_lshift_quick; + DSO_set_filename; + ASN1_item_free; + KRB5_TKTBODY_free; + AUTHORITY_KEYID_it; + AUTHORITY_KEYID_it; + KRB5_APREQBODY_new; + X509V3_EXT_REQ_add_nconf; + ENGINE_ctrl_cmd_string; + i2d_OCSP_RESPDATA; + EVP_MD_CTX_init; + EXTENDED_KEY_USAGE_free; + PKCS7_ATTR_SIGN_it; + PKCS7_ATTR_SIGN_it; + UI_add_error_string; + KRB5_CHECKSUM_free; + OCSP_REQUEST_get_ext; + ENGINE_register_all_digests; + PKEY_USAGE_PERIOD_it; + PKEY_USAGE_PERIOD_it; + PKCS12_unpack_authsafes; + ASN1_item_unpack; + NETSCAPE_SPKAC_it; + NETSCAPE_SPKAC_it; + X509_REVOKED_it; + X509_REVOKED_it; + EVP_aes_128_ecb; + KRB5_AUTHENT_free; + OCSP_BASICRESP_get_ext_by_critical; + OCSP_cert_status_str; + d2i_OCSP_REQUEST; + UI_dup_info_string; + PKCS12_it; + PKCS12_it; + OCSP_SINGLERESP_get_ext_by_critical; + OCSP_CERTSTATUS_free; + _ossl_old_des_crypt; + ASN1_item_i2d; + EVP_DecryptFinal_ex; + ENGINE_load_openssl; + ENGINE_get_cmd_defns; + ENGINE_set_load_privkey_function; + EVP_EncryptFinal_ex; + ENGINE_set_default_digests; + X509_get0_pubkey_bitstr; + asn1_ex_i2c; + ENGINE_register_RSA; + ENGINE_unregister_DSA; + _ossl_old_des_key_sched; + X509_EXTENSION_it; + X509_EXTENSION_it; + i2d_KRB5_AUTHENT; + SXNETID_it; + SXNETID_it; + d2i_OCSP_SINGLERESP; + EDIPARTYNAME_new; + PKCS12_certbag2x509; + _ossl_old_des_ofb64_encrypt; + d2i_EXTENDED_KEY_USAGE; + ERR_print_errors_cb; + ENGINE_set_ciphers; + d2i_KRB5_APREQBODY; + UI_method_get_flusher; + X509_PUBKEY_it; + X509_PUBKEY_it; + _ossl_old_des_enc_read; + PKCS7_ENCRYPT_it; + PKCS7_ENCRYPT_it; + i2d_OCSP_RESPONSE; + EC_GROUP_get_cofactor; + PKCS12_unpack_p7data; + d2i_KRB5_AUTHDATA; + OCSP_copy_nonce; + KRB5_AUTHDATA_new; + OCSP_RESPDATA_new; + EC_GFp_mont_method; + OCSP_REVOKEDINFO_free; + UI_get_ex_data; + KRB5_APREQBODY_free; + EC_GROUP_get0_generator; + UI_get_default_method; + X509V3_set_nconf; + PKCS12_item_i2d_encrypt; + X509_add1_ext_i2d; + PKCS7_SIGNER_INFO_it; + PKCS7_SIGNER_INFO_it; + KRB5_PRINCNAME_new; + PKCS12_SAFEBAG_it; + PKCS12_SAFEBAG_it; + EC_GROUP_get_order; + d2i_OCSP_RESPID; + OCSP_request_verify; + NCONF_get_number_e; + _ossl_old_des_decrypt3; + X509_signature_print; + OCSP_SINGLERESP_free; + ENGINE_load_builtin_engines; + i2d_OCSP_ONEREQ; + OCSP_REQUEST_add_ext; + OCSP_RESPBYTES_new; + EVP_MD_CTX_create; + OCSP_resp_find_status; + X509_ALGOR_it; + X509_ALGOR_it; + ASN1_TIME_it; + ASN1_TIME_it; + OCSP_request_set1_name; + OCSP_ONEREQ_get_ext_count; + UI_get0_result; + PKCS12_AUTHSAFES_it; + PKCS12_AUTHSAFES_it; + EVP_aes_256_ecb; + PKCS12_pack_authsafes; + ASN1_IA5STRING_it; + ASN1_IA5STRING_it; + UI_get_input_flags; + EC_GROUP_set_generator; + _ossl_old_des_string_to_2keys; + OCSP_CERTID_free; + X509_CERT_AUX_it; + X509_CERT_AUX_it; + CERTIFICATEPOLICIES_it; + CERTIFICATEPOLICIES_it; + _ossl_old_des_ede3_cbc_encrypt; + RAND_set_rand_engine; + DSO_get_loaded_filename; + X509_ATTRIBUTE_it; + X509_ATTRIBUTE_it; + OCSP_ONEREQ_get_ext_by_NID; + PKCS12_decrypt_skey; + KRB5_AUTHENT_it; + KRB5_AUTHENT_it; + UI_dup_error_string; + RSAPublicKey_it; + RSAPublicKey_it; + i2d_OCSP_REQUEST; + PKCS12_x509crl2certbag; + OCSP_SERVICELOC_it; + OCSP_SERVICELOC_it; + ASN1_item_sign; + X509_CRL_set_issuer_name; + OBJ_NAME_do_all_sorted; + i2d_OCSP_BASICRESP; + i2d_OCSP_RESPBYTES; + PKCS12_unpack_p7encdata; + HMAC_CTX_init; + ENGINE_get_digest; + OCSP_RESPONSE_print; + KRB5_TKTBODY_it; + KRB5_TKTBODY_it; + ACCESS_DESCRIPTION_it; + ACCESS_DESCRIPTION_it; + PKCS7_ISSUER_AND_SERIAL_it; + PKCS7_ISSUER_AND_SERIAL_it; + PBE2PARAM_it; + PBE2PARAM_it; + PKCS12_certbag2x509crl; + PKCS7_SIGNED_it; + PKCS7_SIGNED_it; + ENGINE_get_cipher; + i2d_OCSP_CRLID; + OCSP_SINGLERESP_new; + ENGINE_cmd_is_executable; + RSA_up_ref; + ASN1_GENERALSTRING_it; + ASN1_GENERALSTRING_it; + ENGINE_register_DSA; + X509V3_EXT_add_nconf_sk; + ENGINE_set_load_pubkey_function; + PKCS8_decrypt; + PEM_bytes_read_bio; + DIRECTORYSTRING_it; + DIRECTORYSTRING_it; + d2i_OCSP_CRLID; + EC_POINT_is_on_curve; + CRYPTO_set_locked_mem_ex_functions; + d2i_KRB5_CHECKSUM; + ASN1_item_dup; + X509_it; + X509_it; + BN_mod_add; + KRB5_AUTHDATA_free; + _ossl_old_des_cbc_cksum; + ASN1_item_verify; + CRYPTO_set_mem_ex_functions; + EC_POINT_get_Jprojective_coordinates_GFp; + ZLONG_it; + ZLONG_it; + CRYPTO_get_locked_mem_ex_functions; + ASN1_TIME_check; + UI_get0_user_data; + HMAC_CTX_cleanup; + DSA_up_ref; + _ossl_old_des_ede3_cfb64_encrypt; + ASN1_BMPSTRING_it; + ASN1_BMPSTRING_it; + ASN1_tag2bit; + UI_method_set_flusher; + X509_ocspid_print; + KRB5_ENCDATA_it; + KRB5_ENCDATA_it; + ENGINE_get_load_pubkey_function; + UI_add_user_data; + OCSP_REQUEST_delete_ext; + UI_get_method; + OCSP_ONEREQ_free; + ASN1_PRINTABLESTRING_it; + ASN1_PRINTABLESTRING_it; + X509_CRL_set_nextUpdate; + OCSP_REQUEST_it; + OCSP_REQUEST_it; + OCSP_BASICRESP_it; + OCSP_BASICRESP_it; + AES_ecb_encrypt; + BN_mod_sqr; + NETSCAPE_CERT_SEQUENCE_it; + NETSCAPE_CERT_SEQUENCE_it; + GENERAL_NAMES_it; + GENERAL_NAMES_it; + AUTHORITY_INFO_ACCESS_it; + AUTHORITY_INFO_ACCESS_it; + ASN1_FBOOLEAN_it; + ASN1_FBOOLEAN_it; + UI_set_ex_data; + _ossl_old_des_string_to_key; + ENGINE_register_all_RSA; + d2i_KRB5_PRINCNAME; + OCSP_RESPBYTES_it; + OCSP_RESPBYTES_it; + X509_CINF_it; + X509_CINF_it; + ENGINE_unregister_digests; + d2i_EDIPARTYNAME; + d2i_OCSP_SERVICELOC; + ENGINE_get_digests; + _ossl_old_des_set_odd_parity; + OCSP_RESPDATA_free; + d2i_KRB5_TICKET; + OTHERNAME_it; + OTHERNAME_it; + EVP_MD_CTX_cleanup; + d2i_ASN1_GENERALSTRING; + X509_CRL_set_version; + BN_mod_sub; + OCSP_SINGLERESP_get_ext_by_NID; + ENGINE_get_ex_new_index; + OCSP_REQUEST_free; + OCSP_REQUEST_add1_ext_i2d; + X509_VAL_it; + X509_VAL_it; + EC_POINTs_make_affine; + EC_POINT_mul; + X509V3_EXT_add_nconf; + X509_TRUST_set; + X509_CRL_add1_ext_i2d; + _ossl_old_des_fcrypt; + DISPLAYTEXT_it; + DISPLAYTEXT_it; + X509_CRL_set_lastUpdate; + OCSP_BASICRESP_free; + OCSP_BASICRESP_add1_ext_i2d; + d2i_KRB5_AUTHENTBODY; + CRYPTO_set_ex_data_implementation; + KRB5_ENCDATA_new; + DSO_up_ref; + OCSP_crl_reason_str; + UI_get0_result_string; + ASN1_GENERALSTRING_new; + X509_SIG_it; + X509_SIG_it; + ERR_set_implementation; + ERR_load_EC_strings; + UI_get0_action_string; + OCSP_ONEREQ_get_ext; + EC_POINT_method_of; + i2d_KRB5_APREQBODY; + _ossl_old_des_ecb3_encrypt; + CRYPTO_get_mem_ex_functions; + ENGINE_get_ex_data; + UI_destroy_method; + ASN1_item_i2d_bio; + OCSP_ONEREQ_get_ext_by_OBJ; + ASN1_primitive_new; + ASN1_PRINTABLE_it; + ASN1_PRINTABLE_it; + EVP_aes_192_ecb; + OCSP_SIGNATURE_new; + LONG_it; + LONG_it; + ASN1_VISIBLESTRING_it; + ASN1_VISIBLESTRING_it; + OCSP_SINGLERESP_add1_ext_i2d; + d2i_OCSP_CERTID; + ASN1_item_d2i_fp; + CRL_DIST_POINTS_it; + CRL_DIST_POINTS_it; + GENERAL_NAME_print; + OCSP_SINGLERESP_delete_ext; + PKCS12_SAFEBAGS_it; + PKCS12_SAFEBAGS_it; + d2i_OCSP_SIGNATURE; + OCSP_request_add1_nonce; + ENGINE_set_cmd_defns; + OCSP_SERVICELOC_free; + EC_GROUP_free; + ASN1_BIT_STRING_it; + ASN1_BIT_STRING_it; + X509_REQ_it; + X509_REQ_it; + _ossl_old_des_cbc_encrypt; + ERR_unload_strings; + PKCS7_SIGN_ENVELOPE_it; + PKCS7_SIGN_ENVELOPE_it; + EDIPARTYNAME_free; + OCSP_REQINFO_free; + EC_GROUP_new_curve_GFp; + OCSP_REQUEST_get1_ext_d2i; + PKCS12_item_pack_safebag; + asn1_ex_c2i; + ENGINE_register_digests; + i2d_OCSP_REVOKEDINFO; + asn1_enc_restore; + UI_free; + UI_new_method; + EVP_EncryptInit_ex; + X509_pubkey_digest; + EC_POINT_invert; + OCSP_basic_sign; + i2d_OCSP_RESPID; + OCSP_check_nonce; + ENGINE_ctrl_cmd; + d2i_KRB5_ENCKEY; + OCSP_parse_url; + OCSP_SINGLERESP_get_ext; + OCSP_CRLID_free; + OCSP_BASICRESP_get1_ext_d2i; + RSAPrivateKey_it; + RSAPrivateKey_it; + ENGINE_register_all_DH; + i2d_EDIPARTYNAME; + EC_POINT_get_affine_coordinates_GFp; + OCSP_CRLID_new; + ENGINE_get_flags; + OCSP_ONEREQ_it; + OCSP_ONEREQ_it; + UI_process; + ASN1_INTEGER_it; + ASN1_INTEGER_it; + EVP_CipherInit_ex; + UI_get_string_type; + ENGINE_unregister_DH; + ENGINE_register_all_DSA; + OCSP_ONEREQ_get_ext_by_critical; + bn_dup_expand; + OCSP_cert_id_new; + BASIC_CONSTRAINTS_it; + BASIC_CONSTRAINTS_it; + BN_mod_add_quick; + EC_POINT_new; + EVP_MD_CTX_destroy; + OCSP_RESPBYTES_free; + EVP_aes_128_cbc; + OCSP_SINGLERESP_get1_ext_d2i; + EC_POINT_free; + DH_up_ref; + X509_NAME_ENTRY_it; + X509_NAME_ENTRY_it; + UI_get_ex_new_index; + BN_mod_sub_quick; + OCSP_ONEREQ_add_ext; + OCSP_request_sign; + EVP_DigestFinal_ex; + ENGINE_set_digests; + OCSP_id_issuer_cmp; + OBJ_NAME_do_all; + EC_POINTs_mul; + ENGINE_register_complete; + X509V3_EXT_nconf_nid; + ASN1_SEQUENCE_it; + ASN1_SEQUENCE_it; + UI_set_default_method; + RAND_query_egd_bytes; + UI_method_get_writer; + UI_OpenSSL; + PEM_def_callback; + ENGINE_cleanup; + DIST_POINT_it; + DIST_POINT_it; + OCSP_SINGLERESP_it; + OCSP_SINGLERESP_it; + d2i_KRB5_TKTBODY; + EC_POINT_cmp; + OCSP_REVOKEDINFO_new; + i2d_OCSP_CERTSTATUS; + OCSP_basic_add1_nonce; + ASN1_item_ex_d2i; + BN_mod_lshift1_quick; + UI_set_method; + OCSP_id_get0_info; + BN_mod_sqrt; + EC_GROUP_copy; + KRB5_ENCDATA_free; + _ossl_old_des_cfb_encrypt; + OCSP_SINGLERESP_get_ext_by_OBJ; + OCSP_cert_to_id; + OCSP_RESPID_new; + OCSP_RESPDATA_it; + OCSP_RESPDATA_it; + d2i_OCSP_RESPDATA; + ENGINE_register_all_complete; + OCSP_check_validity; + PKCS12_BAGS_it; + PKCS12_BAGS_it; + OCSP_url_svcloc_new; + ASN1_template_free; + OCSP_SINGLERESP_add_ext; + KRB5_AUTHENTBODY_it; + KRB5_AUTHENTBODY_it; + X509_supported_extension; + i2d_KRB5_AUTHDATA; + UI_method_get_opener; + ENGINE_set_ex_data; + OCSP_REQUEST_print; + CBIGNUM_it; + CBIGNUM_it; + KRB5_TICKET_new; + KRB5_APREQ_new; + EC_GROUP_get_curve_GFp; + KRB5_ENCKEY_new; + ASN1_template_d2i; + _ossl_old_des_quad_cksum; + OCSP_single_get0_status; + BN_swap; + POLICYINFO_it; + POLICYINFO_it; + ENGINE_set_destroy_function; + asn1_enc_free; + OCSP_RESPID_it; + OCSP_RESPID_it; + EC_GROUP_new; + EVP_aes_256_cbc; + i2d_KRB5_PRINCNAME; + _ossl_old_des_encrypt2; + _ossl_old_des_encrypt3; + PKCS8_PRIV_KEY_INFO_it; + PKCS8_PRIV_KEY_INFO_it; + OCSP_REQINFO_it; + OCSP_REQINFO_it; + PBEPARAM_it; + PBEPARAM_it; + KRB5_AUTHENTBODY_new; + X509_CRL_add0_revoked; + EDIPARTYNAME_it; + EDIPARTYNAME_it; + NETSCAPE_SPKI_it; + NETSCAPE_SPKI_it; + UI_get0_test_string; + ENGINE_get_cipher_engine; + ENGINE_register_all_ciphers; + EC_POINT_copy; + BN_kronecker; + _ossl_old_des_ede3_ofb64_encrypt; + UI_method_get_reader; + OCSP_BASICRESP_get_ext_count; + ASN1_ENUMERATED_it; + ASN1_ENUMERATED_it; + UI_set_result; + i2d_KRB5_TICKET; + X509_print_ex_fp; + EVP_CIPHER_CTX_set_padding; + d2i_OCSP_RESPONSE; + ASN1_UTCTIME_it; + ASN1_UTCTIME_it; + _ossl_old_des_enc_write; + OCSP_RESPONSE_new; + AES_set_encrypt_key; + OCSP_resp_count; + KRB5_CHECKSUM_new; + OCSP_onereq_get0_id; + ENGINE_set_default_ciphers; + NOTICEREF_it; + NOTICEREF_it; + X509V3_EXT_CRL_add_nconf; + OCSP_REVOKEDINFO_it; + OCSP_REVOKEDINFO_it; + AES_encrypt; + OCSP_REQUEST_new; + ASN1_ANY_it; + ASN1_ANY_it; + CRYPTO_ex_data_new_class; + _ossl_old_des_ncbc_encrypt; + i2d_KRB5_TKTBODY; + EC_POINT_clear_free; + AES_decrypt; + asn1_enc_init; + UI_get_result_maxsize; + OCSP_CERTID_new; + ENGINE_unregister_RAND; + UI_method_get_closer; + d2i_KRB5_ENCDATA; + OCSP_request_onereq_count; + OCSP_basic_verify; + KRB5_AUTHENTBODY_free; + ASN1_item_d2i; + ASN1_primitive_free; + i2d_EXTENDED_KEY_USAGE; + i2d_OCSP_SIGNATURE; + asn1_enc_save; + _ossl_old_des_pcbc_encrypt; + PKCS12_MAC_DATA_it; + PKCS12_MAC_DATA_it; + OCSP_accept_responses_new; + asn1_do_lock; + PKCS7_ATTR_VERIFY_it; + PKCS7_ATTR_VERIFY_it; + KRB5_APREQBODY_it; + KRB5_APREQBODY_it; + i2d_OCSP_SINGLERESP; + ASN1_item_ex_new; + UI_add_verify_string; + _ossl_old_des_set_key; + KRB5_PRINCNAME_it; + KRB5_PRINCNAME_it; + EVP_DecryptInit_ex; + i2d_OCSP_CERTID; + ASN1_item_d2i_bio; + EC_POINT_dbl; + asn1_get_choice_selector; + i2d_KRB5_CHECKSUM; + ENGINE_set_table_flags; + AES_options; + OCSP_id_cmp; + OCSP_BASICRESP_new; + OCSP_REQUEST_get_ext_by_NID; + KRB5_APREQ_it; + KRB5_APREQ_it; + ENGINE_get_destroy_function; + CONF_set_nconf; + ASN1_PRINTABLE_free; + OCSP_BASICRESP_get_ext_by_NID; + DIST_POINT_NAME_it; + DIST_POINT_NAME_it; + X509V3_extensions_print; + _ossl_old_des_cfb64_encrypt; + X509_REVOKED_add1_ext_i2d; + _ossl_old_des_ofb_encrypt; + KRB5_TKTBODY_new; + ASN1_OCTET_STRING_it; + ASN1_OCTET_STRING_it; + ERR_load_UI_strings; + i2d_KRB5_ENCKEY; + ASN1_template_new; + OCSP_SIGNATURE_free; + ASN1_item_i2d_fp; + KRB5_PRINCNAME_free; + PKCS7_RECIP_INFO_it; + PKCS7_RECIP_INFO_it; + EXTENDED_KEY_USAGE_it; + EXTENDED_KEY_USAGE_it; + EC_GFp_simple_method; + EC_GROUP_precompute_mult; + OCSP_request_onereq_get0; + UI_method_set_writer; + KRB5_AUTHENT_new; + X509_CRL_INFO_it; + X509_CRL_INFO_it; + DSO_set_name_converter; + AES_set_decrypt_key; + PKCS7_DIGEST_it; + PKCS7_DIGEST_it; + PKCS12_x5092certbag; + EVP_DigestInit_ex; + i2a_ACCESS_DESCRIPTION; + OCSP_RESPONSE_it; + OCSP_RESPONSE_it; + PKCS7_ENC_CONTENT_it; + PKCS7_ENC_CONTENT_it; + OCSP_request_add0_id; + EC_POINT_make_affine; + DSO_get_filename; + OCSP_CERTSTATUS_it; + OCSP_CERTSTATUS_it; + OCSP_request_add1_cert; + UI_get0_output_string; + UI_dup_verify_string; + BN_mod_lshift; + KRB5_AUTHDATA_it; + KRB5_AUTHDATA_it; + asn1_set_choice_selector; + OCSP_basic_add1_status; + OCSP_RESPID_free; + asn1_get_field_ptr; + UI_add_input_string; + OCSP_CRLID_it; + OCSP_CRLID_it; + i2d_KRB5_AUTHENTBODY; + OCSP_REQUEST_get_ext_count; + X509_NAME_it; + X509_NAME_it; + USERNOTICE_it; + USERNOTICE_it; + OCSP_REQINFO_new; + OCSP_BASICRESP_get_ext; + CRYPTO_get_ex_data_implementation; + ASN1_item_pack; + i2d_KRB5_ENCDATA; + X509_PURPOSE_set; + X509_REQ_INFO_it; + X509_REQ_INFO_it; + UI_method_set_opener; + ASN1_item_ex_free; + ASN1_BOOLEAN_it; + ASN1_BOOLEAN_it; + ENGINE_get_table_flags; + UI_create_method; + OCSP_ONEREQ_add1_ext_i2d; + d2i_OCSP_REQINFO; + UI_add_info_string; + UI_get_result_minsize; + ASN1_NULL_it; + ASN1_NULL_it; + BN_mod_lshift1; + d2i_OCSP_ONEREQ; + OCSP_ONEREQ_new; + KRB5_TICKET_it; + KRB5_TICKET_it; + EVP_aes_192_cbc; + KRB5_TICKET_free; + UI_new; + OCSP_response_create; + _ossl_old_des_xcbc_encrypt; + PKCS7_it; + PKCS7_it; + OCSP_REQUEST_get_ext_by_critical; + ENGINE_set_flags; + _ossl_old_des_ecb_encrypt; + OCSP_response_get1_basic; + EVP_Digest; + OCSP_ONEREQ_delete_ext; + ASN1_TBOOLEAN_it; + ASN1_TBOOLEAN_it; + ASN1_item_new; + ASN1_TIME_to_generalizedtime; + BIGNUM_it; + BIGNUM_it; + AES_cbc_encrypt; + ENGINE_get_load_privkey_function; + OCSP_RESPONSE_free; + UI_method_set_reader; + i2d_ASN1_T61STRING; + EC_POINT_set_to_infinity; + ERR_load_OCSP_strings; + EC_POINT_point2oct; + KRB5_APREQ_free; + ASN1_OBJECT_it; + ASN1_OBJECT_it; + OCSP_crlID_new; + CONF_modules_load_file; + CONF_imodule_set_usr_data; + ENGINE_set_default_string; + CONF_module_get_usr_data; + ASN1_add_oid_module; + CONF_modules_finish; + OPENSSL_config; + CONF_modules_unload; + CONF_imodule_get_value; + CONF_module_set_usr_data; + CONF_parse_list; + CONF_module_add; + CONF_get1_default_config_file; + CONF_imodule_get_flags; + CONF_imodule_get_module; + CONF_modules_load; + CONF_imodule_get_name; + CONF_imodule_get_usr_data; + CONF_imodule_set_flags; + ENGINE_add_conf_module; + ERR_peek_last_error_line; + ERR_peek_last_error_line_data; + ERR_peek_last_error; + DES_read_2passwords; + DES_read_password; + UI_UTIL_read_pw; + UI_UTIL_read_pw_string; + OPENSSL_add_all_algorithms_noconf; + OPENSSL_add_all_algorithms_conf; + OPENSSL_load_builtin_modules; + AES_ofb128_encrypt; + AES_ctr128_encrypt; + AES_cfb128_encrypt; + _ossl_096_des_random_seed; + EVP_aes_256_ofb; + EVP_aes_192_ofb; + EVP_aes_128_cfb128; + EVP_aes_256_cfb128; + EVP_aes_128_ofb; + EVP_aes_192_cfb128; + CONF_modules_free; + NCONF_default; + OPENSSL_no_config; + NCONF_WIN32; + ASN1_UNIVERSALSTRING_new; + EVP_des_ede_ecb; + i2d_ASN1_UNIVERSALSTRING; + ASN1_UNIVERSALSTRING_free; + ASN1_UNIVERSALSTRING_it; + ASN1_UNIVERSALSTRING_it; + d2i_ASN1_UNIVERSALSTRING; + EVP_des_ede3_ecb; + X509_REQ_print_ex; + ENGINE_up_ref; + BUF_MEM_grow_clean; + CRYPTO_realloc_clean; + BUF_strlcat; + BIO_indent; + BUF_strlcpy; + OpenSSLDie; + OPENSSL_cleanse; + ERR_release_err_state_table; + EVP_aes_128_cfb8; + EVP_aes_128_cfb1; + EVP_aes_192_cfb8; + FIPS_mode_set; + EVP_aes_256_cfb8; + DES_ede3_cfb_encrypt; + EVP_des_ede3_cfb8; + AES_cfb8_encrypt; + EVP_aes_192_cfb1; + EVP_des_cfb8; + EVP_aes_256_cfb1; + EVP_des_cfb1; + AES_cfb1_encrypt; + EVP_des_ede3_cfb1; + FIPS_mode; + sk_is_sorted; + X509_check_ca; + HMAC_CTX_set_flags; + d2i_PROXY_CERT_INFO_EXTENSION; + PROXY_POLICY_it; + PROXY_POLICY_it; + i2d_PROXY_POLICY; + i2d_PROXY_CERT_INFO_EXTENSION; + d2i_PROXY_POLICY; + PROXY_CERT_INFO_EXTENSION_new; + PROXY_CERT_INFO_EXTENSION_free; + PROXY_CERT_INFO_EXTENSION_it; + PROXY_CERT_INFO_EXTENSION_it; + PROXY_POLICY_free; + PROXY_POLICY_new; + BN_MONT_CTX_set_locked; + EVP_sha384; + EVP_sha512; + EVP_sha224; + EVP_sha256; + BN_mod_exp_mont_consttime; + RSA_X931_hash_id; + RSA_padding_check_X931; + RSA_verify_PKCS1_PSS; + RSA_padding_add_X931; + RSA_padding_add_PKCS1_PSS; + PKCS1_MGF1; + BN_X931_generate_Xpq; + BIO_new_dgram; + BN_get0_nist_prime_384; + ERR_set_mark; + X509_STORE_CTX_set0_crls; + ENGINE_set_STORE; + ENGINE_register_ECDSA; + BN_BLINDING_invert_ex; + NAME_CONSTRAINTS_free; + BN_BLINDING_get_thread_id; + X509_STORE_CTX_set0_param; + POLICY_MAPPING_it; + POLICY_MAPPING_it; + POLICY_CONSTRAINTS_free; + EVP_PKEY_add1_attr_by_NID; + BN_nist_mod_192; + EC_GROUP_get_trinomial_basis; + GENERAL_SUBTREE_free; + NAME_CONSTRAINTS_it; + NAME_CONSTRAINTS_it; + ECDH_get_default_method; + PKCS12_add_safe; + EC_KEY_new_by_curve_name; + ENGINE_register_ECDH; + SHA512_Update; + i2d_ECPrivateKey; + BN_get0_nist_prime_192; + EC_POINT_set_affine_coordinates_GF2m; + BN_GF2m_mod_exp_arr; + X509_keyid_get0; + pitem_new; + BN_GF2m_mod_mul_arr; + o2i_ECPublicKey; + EC_KEY_copy; + BIO_dump_fp; + X509_policy_node_get0_parent; + EC_GROUP_check_discriminant; + i2o_ECPublicKey; + EC_KEY_precompute_mult; + a2i_IPADDRESS; + X509_STORE_CTX_set_depth; + X509_VERIFY_PARAM_inherit; + EC_POINT_point2bn; + X509_policy_tree_get0_policies; + EC_GROUP_new_curve_GF2m; + ENGINE_unregister_STORE; + EVP_PKEY_get1_EC_KEY; + ENGINE_get_default_ECDH; + EC_KEY_get_conv_form; + ASN1_OCTET_STRING_NDEF_it; + ASN1_OCTET_STRING_NDEF_it; + ENGINE_get_static_state; + pqueue_iterator; + ECDSA_SIG_new; + OPENSSL_DIR_end; + BN_GF2m_mod_sqr; + EC_POINT_bn2point; + X509_VERIFY_PARAM_set_depth; + EC_KEY_set_asn1_flag; + EC_KEY_get_key_method_data; + ECDSA_sign_ex; + EC_GROUP_get_point_conversion_form; + PEM_read_bio_ECPKParameters; + EC_GROUP_get_pentanomial_basis; + EVP_PKEY_add1_attr_by_txt; + BN_BLINDING_set_flags; + X509_VERIFY_PARAM_set1_policies; + X509_VERIFY_PARAM_set1_name; + X509_VERIFY_PARAM_set_purpose; + ECDSA_sign_setup; + BN_GF2m_mod_solve_quad_arr; + EC_KEY_up_ref; + POLICY_MAPPING_free; + BN_GF2m_mod_div; + X509_VERIFY_PARAM_set_flags; + EC_KEY_free; + PEM_write_bio_ECPrivateKey; + d2i_EC_PUBKEY; + pqueue_print; + EC_GROUP_have_precompute_mult; + EC_KEY_print_fp; + BN_GF2m_mod_arr; + PEM_write_bio_X509_CERT_PAIR; + EVP_PKEY_cmp; + X509_policy_level_node_count; + X509_VERIFY_PARAM_new; + ECDH_get_ex_data; + EVP_PKEY_get_attr; + ECDSA_do_sign; + ENGINE_unregister_ECDH; + ECDH_OpenSSL; + EC_KEY_set_conv_form; + EC_POINT_dup; + GENERAL_SUBTREE_new; + EC_get_builtin_curves; + X509_policy_node_get0_qualifiers; + EVP_PKEY_set1_EC_KEY; + BN_GF2m_mod_sqrt_arr; + i2d_ECPrivateKey_bio; + ECPKParameters_print_fp; + pqueue_find; + ECDSA_SIG_free; + PEM_write_bio_ECPKParameters; + EC_KEY_set_private_key; + pqueue_peek; + X509_policy_node_get0_policy; + PKCS12_add_safes; + BN_BLINDING_convert_ex; + X509_policy_tree_free; + OPENSSL_ia32cap_loc; + BN_GF2m_poly2arr; + BN_get0_nist_prime_224; + i2d_ECParameters; + i2d_ECPKParameters; + BN_GENCB_call; + d2i_ECPKParameters; + ENGINE_set_ECDH; + NAME_CONSTRAINTS_new; + SHA256_Init; + EC_KEY_get0_public_key; + PEM_write_bio_EC_PUBKEY; + ECParameters_print; + ASN1_generate_nconf; + BUF_memdup; + BN_GF2m_mod_mul; + EC_GROUP_set_seed; + X509_VERIFY_PARAM_set_trust; + EVP_PKEY_get_attr_count; + EC_GROUP_get_curve_GF2m; + BN_is_prime_ex; + X509_STORE_CTX_get0_param; + PEM_read_X509_CERT_PAIR; + X509_STORE_set_depth; + ECDSA_get_ex_data; + SHA224; + BIO_dump_indent_fp; + EC_KEY_set_group; + BUF_strndup; + BN_GF2m_mod; + X509_REQ_check_private_key; + EC_GROUP_get_seed_len; + PEM_read_bio_EC_PUBKEY; + i2d_EC_PUBKEY; + ECDSA_get_default_method; + ASN1_put_eoc; + X509_STORE_CTX_get_explicit_policy; + X509_VERIFY_PARAM_table_cleanup; + X509_VERIFY_PARAM_free; + EC_METHOD_get_field_type; + EC_GFp_nist_method; + EC_GROUP_set_curve_name; + X509_CERT_PAIR_it; + X509_CERT_PAIR_it; + BN_GF2m_mod_sqr_arr; + RSA_setup_blinding; + BIO_s_datagram; + sk_find_ex; + EC_GROUP_set_curve_GF2m; + ENGINE_set_default_ECDSA; + POLICY_CONSTRAINTS_new; + BN_GF2m_mod_sqrt; + ECDH_set_default_method; + EC_KEY_generate_key; + SHA384_Update; + BN_GF2m_arr2poly; + EC_GROUP_check; + d2i_ECPrivateKey_bio; + EC_KEY_insert_key_method_data; + X509_VERIFY_PARAM_get_depth; + SHA224_Final; + SHA224_Update; + d2i_ECPrivateKey; + ASN1_item_ndef_i2d; + ERR_pop_to_mark; + ENGINE_register_all_STORE; + X509_policy_level_get0_node; + i2d_PKCS7_NDEF; + EC_GROUP_get_degree; + ASN1_generate_v3; + X509_policy_tree_level_count; + BN_GF2m_add; + EC_KEY_get0_group; + X509_CERT_PAIR_free; + BN_nist_mod_224; + SHA512_Final; + i2d_EC_PUBKEY_bio; + BIO_dgram_non_fatal_error; + EC_GROUP_get_asn1_flag; + ECDH_get_ex_new_index; + v2i_ASN1_BIT_STRING; + X509_STORE_CTX_set_default; + BN_GF2m_mod_inv; + BN_GF2m_mod_exp; + EC_GROUP_get0_seed; + BN_GF2m_mod_div_arr; + ENGINE_set_ECDSA; + ECPKParameters_print; + EC_KEY_get0_private_key; + PEM_write_EC_PUBKEY; + X509_VERIFY_PARAM_set1; + ECDH_set_method; + v2i_GENERAL_NAME_ex; + ECDH_set_ex_data; + BN_nist_mod_521; + X509_policy_tree_get0_level; + EC_GROUP_set_point_conversion_form; + PEM_read_EC_PUBKEY; + i2d_ECDSA_SIG; + ECDSA_OpenSSL; + EC_KEY_get_enc_flags; + ASN1_const_check_infinite_end; + EVP_PKEY_delete_attr; + ECDSA_set_default_method; + EC_POINT_set_compressed_coordinates_GF2m; + EC_GROUP_cmp; + BN_get0_nist_prime_256; + SHA224_Init; + PEM_read_ECPrivateKey; + SHA512_Init; + BN_set_negative; + ERR_load_ECDSA_strings; + EC_GROUP_get_basis_type; + i2v_ASN1_BIT_STRING; + BN_nist_mod_384; + i2d_X509_CERT_PAIR; + PEM_write_ECPKParameters; + ECDH_compute_key; + ENGINE_register_all_ECDH; + pqueue_pop; + POLICY_CONSTRAINTS_it; + POLICY_CONSTRAINTS_it; + EVP_PKEY_get_attr_by_OBJ; + X509_VERIFY_PARAM_add0_policy; + BN_GF2m_mod_solve_quad; + SHA256; + i2d_ECPrivateKey_fp; + X509_policy_tree_get0_user_policies; + OPENSSL_DIR_read; + ENGINE_register_all_ECDSA; + X509_VERIFY_PARAM_lookup; + EC_POINT_get_affine_coordinates_GF2m; + EC_GROUP_dup; + ENGINE_get_default_ECDSA; + EC_KEY_new; + SHA256_Transform; + EC_KEY_set_enc_flags; + ECDSA_verify; + EC_POINT_point2hex; + ENGINE_get_STORE; + SHA512; + ECDSA_do_sign_ex; + ECDSA_do_verify; + d2i_ECPrivateKey_fp; + SHA512_Transform; + X509_STORE_set1_param; + PEM_write_ECPrivateKey; + EC_KEY_set_public_key; + PEM_read_ECPKParameters; + X509_CERT_PAIR_new; + ENGINE_register_STORE; + RSA_generate_key_ex; + DSA_generate_parameters_ex; + ECParameters_print_fp; + X509V3_NAME_from_section; + EVP_PKEY_add1_attr; + POLICY_MAPPINGS_it; + POLICY_MAPPINGS_it; + GENERAL_SUBTREE_it; + GENERAL_SUBTREE_it; + EC_GROUP_get_curve_name; + PEM_write_X509_CERT_PAIR; + BIO_dump_indent_cb; + d2i_X509_CERT_PAIR; + asn1_const_Finish; + i2d_EC_PUBKEY_fp; + BN_nist_mod_256; + X509_VERIFY_PARAM_add0_table; + pqueue_free; + BN_BLINDING_create_param; + ECDSA_size; + d2i_EC_PUBKEY_bio; + BN_get0_nist_prime_521; + BN_generate_prime_ex; + EC_GROUP_new_by_curve_name; + SHA256_Final; + DH_generate_parameters_ex; + PEM_read_bio_ECPrivateKey; + ENGINE_get_ECDH; + d2i_ECDSA_SIG; + BN_is_prime_fasttest_ex; + ECDSA_sign; + X509_policy_check; + EVP_PKEY_get_attr_by_NID; + ENGINE_get_ECDSA; + EVP_ecdsa; + BN_BLINDING_get_flags; + PKCS12_add_cert; + ERR_load_ECDH_strings; + EC_KEY_dup; + EVP_CIPHER_CTX_rand_key; + ECDSA_set_method; + a2i_IPADDRESS_NC; + d2i_ECParameters; + X509_POLICY_NODE_print; + SHA384_Init; + EC_GF2m_simple_method; + ECDSA_set_ex_data; + SHA384_Final; + PKCS7_set_digest; + EC_KEY_print; + ECDSA_get_ex_new_index; + SHA384; + POLICY_MAPPING_new; + X509_STORE_CTX_get0_policy_tree; + EC_GROUP_set_asn1_flag; + EC_KEY_check_key; + d2i_EC_PUBKEY_fp; + PKCS7_set0_type_other; + PEM_read_bio_X509_CERT_PAIR; + pqueue_next; + EVP_PKEY_add1_attr_by_OBJ; + X509_VERIFY_PARAM_set_time; + pqueue_new; + ENGINE_set_default_ECDH; + PKCS12_add_key; + DSO_merge; + EC_POINT_hex2point; + BIO_dump_cb; + SHA256_Update; + pqueue_insert; + pitem_free; + BN_GF2m_mod_inv_arr; + ENGINE_unregister_ECDSA; + BN_BLINDING_set_thread_id; + get_rfc3526_prime_8192; + X509_VERIFY_PARAM_clear_flags; + get_rfc2409_prime_1024; + DH_check_pub_key; + get_rfc3526_prime_2048; + get_rfc3526_prime_6144; + get_rfc3526_prime_1536; + get_rfc3526_prime_3072; + get_rfc3526_prime_4096; + get_rfc2409_prime_768; + X509_VERIFY_PARAM_get_flags; + EVP_CIPHER_CTX_new; + EVP_CIPHER_CTX_free; + Camellia_cbc_encrypt; + Camellia_cfb128_encrypt; + Camellia_cfb1_encrypt; + Camellia_cfb8_encrypt; + Camellia_ctr128_encrypt; + Camellia_decrypt; + Camellia_ecb_encrypt; + Camellia_encrypt; + Camellia_ofb128_encrypt; + Camellia_set_key; + EVP_camellia_128_cbc; + EVP_camellia_128_cfb128; + EVP_camellia_128_cfb1; + EVP_camellia_128_cfb8; + EVP_camellia_128_ecb; + EVP_camellia_128_ofb; + EVP_camellia_192_cbc; + EVP_camellia_192_cfb128; + EVP_camellia_192_cfb1; + EVP_camellia_192_cfb8; + EVP_camellia_192_ecb; + EVP_camellia_192_ofb; + EVP_camellia_256_cbc; + EVP_camellia_256_cfb128; + EVP_camellia_256_cfb1; + EVP_camellia_256_cfb8; + EVP_camellia_256_ecb; + EVP_camellia_256_ofb; + a2i_ipadd; + EVP_CIPHER_block_size; + EVP_CIPHER_CTX_set_app_data; + BIO_set_callback_arg; + BIO_set_flags; + BIO_method_type; + AES_ige_encrypt; + EVP_CIPHER_CTX_nid; + EVP_CIPHER_iv_length; + EVP_MD_type; + EVP_CIPHER_CTX_key_length; + EVP_MD_size; + EVP_MD_CTX_test_flags; + BIO_clear_flags; + EVP_MD_pkey_type; + EVP_MD_CTX_clear_flags; + EVP_CIPHER_flags; + AES_bi_ige_encrypt; + BIO_get_callback; + BIO_test_flags; + EVP_CIPHER_key_length; + EVP_Cipher; + EVP_CIPHER_nid; + EVP_CIPHER_CTX_block_size; + EVP_MD_CTX_set_flags; + EVP_CIPHER_CTX_cipher; + EVP_CIPHER_CTX_get_app_data; + EVP_MD_block_size; + EVP_CIPHER_CTX_flags; + EVP_MD_CTX_md; + BIO_method_name; + EVP_CIPHER_CTX_iv_length; + BIO_get_callback_arg; + BIO_set_callback; + SEED_decrypt; + SEED_encrypt; + SEED_cbc_encrypt; + EVP_seed_ofb; + SEED_cfb128_encrypt; + SEED_ofb128_encrypt; + EVP_seed_cbc; + SEED_ecb_encrypt; + EVP_seed_ecb; + SEED_set_key; + EVP_seed_cfb128; + X509_EXTENSIONS_it; + X509_EXTENSIONS_it; + X509_get1_ocsp; + OCSP_REQ_CTX_free; + i2d_X509_EXTENSIONS; + OCSP_sendreq_nbio; + OCSP_sendreq_new; + d2i_X509_EXTENSIONS; + X509_ALGORS_it; + X509_ALGORS_it; + X509_ALGOR_get0; + X509_ALGOR_set0; + AES_unwrap_key; + AES_wrap_key; + X509at_get0_data_by_OBJ; + ASN1_TYPE_set1; + ASN1_STRING_set0; + i2d_X509_ALGORS; + COMP_zlib_cleanup; + d2i_X509_ALGORS; + CMS_ReceiptRequest_free; + PEM_write_CMS; + CMS_add0_CertificateChoices; + CMS_unsigned_add1_attr_by_OBJ; + ERR_load_CMS_strings; + CMS_sign_receipt; + i2d_CMS_ContentInfo; + CMS_signed_delete_attr; + d2i_CMS_bio; + CMS_unsigned_get_attr_by_NID; + CMS_verify; + SMIME_read_CMS; + CMS_decrypt_set1_key; + CMS_SignerInfo_get0_algs; + CMS_add1_cert; + CMS_set_detached; + CMS_encrypt; + CMS_EnvelopedData_create; + CMS_uncompress; + CMS_add0_crl; + CMS_SignerInfo_verify_content; + CMS_unsigned_get0_data_by_OBJ; + PEM_write_bio_CMS; + CMS_unsigned_get_attr; + CMS_RecipientInfo_ktri_cert_cmp; + CMS_RecipientInfo_ktri_get0_algs; + CMS_ContentInfo_free; + CMS_final; + CMS_add_simple_smimecap; + CMS_SignerInfo_verify; + CMS_data; + CMS_ContentInfo_it; + CMS_ContentInfo_it; + d2i_CMS_ReceiptRequest; + CMS_compress; + CMS_digest_create; + CMS_SignerInfo_cert_cmp; + CMS_SignerInfo_sign; + CMS_data_create; + i2d_CMS_bio; + CMS_EncryptedData_set1_key; + CMS_decrypt; + CMS_unsigned_delete_attr; + CMS_unsigned_get_attr_count; + CMS_add_smimecap; + PEM_read_CMS; + CMS_signed_get_attr_by_OBJ; + d2i_CMS_ContentInfo; + CMS_add_standard_smimecap; + CMS_ContentInfo_new; + CMS_RecipientInfo_type; + CMS_get0_type; + CMS_is_detached; + CMS_sign; + CMS_signed_add1_attr; + CMS_unsigned_get_attr_by_OBJ; + SMIME_write_CMS; + CMS_EncryptedData_decrypt; + CMS_get0_RecipientInfos; + CMS_add0_RevocationInfoChoice; + CMS_decrypt_set1_pkey; + CMS_SignerInfo_set1_signer_cert; + CMS_get0_signers; + CMS_ReceiptRequest_get0_values; + CMS_signed_get0_data_by_OBJ; + CMS_get0_SignerInfos; + CMS_add0_cert; + CMS_EncryptedData_encrypt; + CMS_digest_verify; + CMS_set1_signers_certs; + CMS_signed_get_attr; + CMS_RecipientInfo_set0_key; + CMS_SignedData_init; + CMS_RecipientInfo_kekri_get0_id; + CMS_verify_receipt; + CMS_ReceiptRequest_it; + CMS_ReceiptRequest_it; + PEM_read_bio_CMS; + CMS_get1_crls; + CMS_add0_recipient_key; + SMIME_read_ASN1; + CMS_ReceiptRequest_new; + CMS_get0_content; + CMS_get1_ReceiptRequest; + CMS_signed_add1_attr_by_OBJ; + CMS_RecipientInfo_kekri_id_cmp; + CMS_add1_ReceiptRequest; + CMS_SignerInfo_get0_signer_id; + CMS_unsigned_add1_attr_by_NID; + CMS_unsigned_add1_attr; + CMS_signed_get_attr_by_NID; + CMS_get1_certs; + CMS_signed_add1_attr_by_NID; + CMS_unsigned_add1_attr_by_txt; + CMS_dataFinal; + CMS_RecipientInfo_ktri_get0_signer_id; + i2d_CMS_ReceiptRequest; + CMS_add1_recipient_cert; + CMS_dataInit; + CMS_signed_add1_attr_by_txt; + CMS_RecipientInfo_decrypt; + CMS_signed_get_attr_count; + CMS_get0_eContentType; + CMS_set1_eContentType; + CMS_ReceiptRequest_create0; + CMS_add1_signer; + CMS_RecipientInfo_set0_pkey; + ENGINE_set_load_ssl_client_cert_function; + ENGINE_get_ssl_client_cert_function; + ENGINE_load_ssl_client_cert; + OPENSSL_isservice; + EVP_CIPHER_CTX_clear_flags; + EVP_CIPHER_CTX_set_flags; + BN_X931_generate_prime_ex; + EVP_CIPHER_CTX_test_flags; + BN_X931_derive_prime_ex; + OPENSSL_init; + CRYPTO_strdup; + pqueue_size; + i2d_TS_ACCURACY; + i2d_TS_MSG_IMPRINT_fp; + i2d_TS_MSG_IMPRINT; + EVP_PKEY_print_public; + EVP_PKEY_CTX_new; + i2d_TS_TST_INFO; + EVP_PKEY_asn1_find; + DSO_METHOD_beos; + TS_CONF_load_cert; + TS_REQ_get_ext; + EVP_PKEY_sign_init; + ASN1_item_print; + TS_TST_INFO_set_nonce; + TS_RESP_dup; + ENGINE_register_pkey_meths; + EVP_PKEY_asn1_add0; + PKCS7_add0_attrib_signing_time; + i2d_TS_TST_INFO_fp; + BIO_asn1_get_prefix; + TS_TST_INFO_set_time; + EVP_PKEY_meth_set_decrypt; + EVP_PKEY_set_type_str; + EVP_PKEY_CTX_get_keygen_info; + TS_REQ_set_policy_id; + d2i_TS_RESP_fp; + ENGINE_get_pkey_asn1_meth_engine; + WHIRLPOOL_Init; + TS_RESP_set_status_info; + EVP_PKEY_keygen; + EVP_DigestSignInit; + TS_ACCURACY_set_millis; + TS_REQ_dup; + GENERAL_NAME_dup; + ASN1_SEQUENCE_ANY_it; + ASN1_SEQUENCE_ANY_it; + WHIRLPOOL; + X509_STORE_get1_crls; + ENGINE_get_pkey_asn1_meth; + EVP_PKEY_asn1_new; + BIO_new_NDEF; + ENGINE_get_pkey_meth; + TS_MSG_IMPRINT_set_algo; + i2d_TS_TST_INFO_bio; + TS_TST_INFO_set_ordering; + TS_TST_INFO_get_ext_by_OBJ; + CRYPTO_THREADID_set_pointer; + TS_CONF_get_tsa_section; + SMIME_write_ASN1; + TS_RESP_CTX_set_signer_key; + EVP_PKEY_encrypt_old; + EVP_PKEY_encrypt_init; + CRYPTO_THREADID_cpy; + ASN1_PCTX_get_cert_flags; + i2d_ESS_SIGNING_CERT; + TS_CONF_load_key; + i2d_ASN1_SEQUENCE_ANY; + d2i_TS_MSG_IMPRINT_bio; + EVP_PKEY_asn1_set_public; + b2i_PublicKey_bio; + BIO_asn1_set_prefix; + EVP_PKEY_new_mac_key; + BIO_new_CMS; + CRYPTO_THREADID_cmp; + TS_REQ_ext_free; + EVP_PKEY_asn1_set_free; + EVP_PKEY_get0_asn1; + d2i_NETSCAPE_X509; + EVP_PKEY_verify_recover_init; + EVP_PKEY_CTX_set_data; + EVP_PKEY_keygen_init; + TS_RESP_CTX_set_status_info; + TS_MSG_IMPRINT_get_algo; + TS_REQ_print_bio; + EVP_PKEY_CTX_ctrl_str; + EVP_PKEY_get_default_digest_nid; + PEM_write_bio_PKCS7_stream; + TS_MSG_IMPRINT_print_bio; + BN_asc2bn; + TS_REQ_get_policy_id; + ENGINE_set_default_pkey_asn1_meths; + d2i_TS_ACCURACY; + DSO_global_lookup; + TS_CONF_set_tsa_name; + i2d_ASN1_SET_ANY; + WHIRLPOOL_BitUpdate; + ASN1_PCTX_get_flags; + TS_TST_INFO_get_ext_by_NID; + TS_RESP_new; + ESS_CERT_ID_dup; + TS_STATUS_INFO_dup; + TS_REQ_delete_ext; + EVP_DigestVerifyFinal; + EVP_PKEY_print_params; + i2d_CMS_bio_stream; + TS_REQ_get_msg_imprint; + OBJ_find_sigid_by_algs; + TS_TST_INFO_get_serial; + TS_REQ_get_nonce; + X509_PUBKEY_set0_param; + EVP_PKEY_CTX_set0_keygen_info; + DIST_POINT_set_dpname; + i2d_ISSUING_DIST_POINT; + ASN1_SET_ANY_it; + ASN1_SET_ANY_it; + EVP_PKEY_CTX_get_data; + TS_STATUS_INFO_print_bio; + EVP_PKEY_derive_init; + d2i_TS_TST_INFO; + EVP_PKEY_asn1_add_alias; + d2i_TS_RESP_bio; + OTHERNAME_cmp; + GENERAL_NAME_set0_value; + PKCS7_RECIP_INFO_get0_alg; + TS_RESP_CTX_new; + TS_RESP_set_tst_info; + PKCS7_final; + EVP_PKEY_base_id; + TS_RESP_CTX_set_signer_cert; + TS_REQ_set_msg_imprint; + EVP_PKEY_CTX_ctrl; + TS_CONF_set_digests; + d2i_TS_MSG_IMPRINT; + EVP_PKEY_meth_set_ctrl; + TS_REQ_get_ext_by_NID; + PKCS5_pbe_set0_algor; + BN_BLINDING_thread_id; + TS_ACCURACY_new; + X509_CRL_METHOD_free; + ASN1_PCTX_get_nm_flags; + EVP_PKEY_meth_set_sign; + CRYPTO_THREADID_current; + EVP_PKEY_decrypt_init; + NETSCAPE_X509_free; + i2b_PVK_bio; + EVP_PKEY_print_private; + GENERAL_NAME_get0_value; + b2i_PVK_bio; + ASN1_UTCTIME_adj; + TS_TST_INFO_new; + EVP_MD_do_all_sorted; + TS_CONF_set_default_engine; + TS_ACCURACY_set_seconds; + TS_TST_INFO_get_time; + PKCS8_pkey_get0; + EVP_PKEY_asn1_get0; + OBJ_add_sigid; + PKCS7_SIGNER_INFO_sign; + EVP_PKEY_paramgen_init; + EVP_PKEY_sign; + OBJ_sigid_free; + EVP_PKEY_meth_set_init; + d2i_ESS_ISSUER_SERIAL; + ISSUING_DIST_POINT_new; + ASN1_TIME_adj; + TS_OBJ_print_bio; + EVP_PKEY_meth_set_verify_recover; + TS_RESP_get_status_info; + CMS_stream; + EVP_PKEY_CTX_set_cb; + PKCS7_to_TS_TST_INFO; + ASN1_PCTX_get_oid_flags; + TS_TST_INFO_add_ext; + EVP_PKEY_meth_set_derive; + i2d_TS_RESP_fp; + i2d_TS_MSG_IMPRINT_bio; + TS_RESP_CTX_set_accuracy; + TS_REQ_set_nonce; + ESS_CERT_ID_new; + ENGINE_pkey_asn1_find_str; + TS_REQ_get_ext_count; + BUF_reverse; + TS_TST_INFO_print_bio; + d2i_ISSUING_DIST_POINT; + ENGINE_get_pkey_meths; + i2b_PrivateKey_bio; + i2d_TS_RESP; + b2i_PublicKey; + TS_VERIFY_CTX_cleanup; + TS_STATUS_INFO_free; + TS_RESP_verify_token; + OBJ_bsearch_ex_; + ASN1_bn_print; + EVP_PKEY_asn1_get_count; + ENGINE_register_pkey_asn1_meths; + ASN1_PCTX_set_nm_flags; + EVP_DigestVerifyInit; + ENGINE_set_default_pkey_meths; + TS_TST_INFO_get_policy_id; + TS_REQ_get_cert_req; + X509_CRL_set_meth_data; + PKCS8_pkey_set0; + ASN1_STRING_copy; + d2i_TS_TST_INFO_fp; + X509_CRL_match; + EVP_PKEY_asn1_set_private; + TS_TST_INFO_get_ext_d2i; + TS_RESP_CTX_add_policy; + d2i_TS_RESP; + TS_CONF_load_certs; + TS_TST_INFO_get_msg_imprint; + ERR_load_TS_strings; + TS_TST_INFO_get_version; + EVP_PKEY_CTX_dup; + EVP_PKEY_meth_set_verify; + i2b_PublicKey_bio; + TS_CONF_set_certs; + EVP_PKEY_asn1_get0_info; + TS_VERIFY_CTX_free; + TS_REQ_get_ext_by_critical; + TS_RESP_CTX_set_serial_cb; + X509_CRL_get_meth_data; + TS_RESP_CTX_set_time_cb; + TS_MSG_IMPRINT_get_msg; + TS_TST_INFO_ext_free; + TS_REQ_get_version; + TS_REQ_add_ext; + EVP_PKEY_CTX_set_app_data; + OBJ_bsearch_; + EVP_PKEY_meth_set_verifyctx; + i2d_PKCS7_bio_stream; + CRYPTO_THREADID_set_numeric; + PKCS7_sign_add_signer; + d2i_TS_TST_INFO_bio; + TS_TST_INFO_get_ordering; + TS_RESP_print_bio; + TS_TST_INFO_get_exts; + HMAC_CTX_copy; + PKCS5_pbe2_set_iv; + ENGINE_get_pkey_asn1_meths; + b2i_PrivateKey; + EVP_PKEY_CTX_get_app_data; + TS_REQ_set_cert_req; + CRYPTO_THREADID_set_callback; + TS_CONF_set_serial; + TS_TST_INFO_free; + d2i_TS_REQ_fp; + TS_RESP_verify_response; + i2d_ESS_ISSUER_SERIAL; + TS_ACCURACY_get_seconds; + EVP_CIPHER_do_all; + b2i_PrivateKey_bio; + OCSP_CERTID_dup; + X509_PUBKEY_get0_param; + TS_MSG_IMPRINT_dup; + PKCS7_print_ctx; + i2d_TS_REQ_bio; + EVP_whirlpool; + EVP_PKEY_asn1_set_param; + EVP_PKEY_meth_set_encrypt; + ASN1_PCTX_set_flags; + i2d_ESS_CERT_ID; + TS_VERIFY_CTX_new; + TS_RESP_CTX_set_extension_cb; + ENGINE_register_all_pkey_meths; + TS_RESP_CTX_set_status_info_cond; + EVP_PKEY_verify; + WHIRLPOOL_Final; + X509_CRL_METHOD_new; + EVP_DigestSignFinal; + TS_RESP_CTX_set_def_policy; + NETSCAPE_X509_it; + NETSCAPE_X509_it; + TS_RESP_create_response; + PKCS7_SIGNER_INFO_get0_algs; + TS_TST_INFO_get_nonce; + EVP_PKEY_decrypt_old; + TS_TST_INFO_set_policy_id; + TS_CONF_set_ess_cert_id_chain; + EVP_PKEY_CTX_get0_pkey; + d2i_TS_REQ; + EVP_PKEY_asn1_find_str; + BIO_f_asn1; + ESS_SIGNING_CERT_new; + EVP_PBE_find; + X509_CRL_get0_by_cert; + EVP_PKEY_derive; + i2d_TS_REQ; + TS_TST_INFO_delete_ext; + ESS_ISSUER_SERIAL_free; + ASN1_PCTX_set_str_flags; + ENGINE_get_pkey_asn1_meth_str; + TS_CONF_set_signer_key; + TS_ACCURACY_get_millis; + TS_RESP_get_token; + TS_ACCURACY_dup; + ENGINE_register_all_pkey_asn1_meths; + X509_CRL_set_default_method; + CRYPTO_THREADID_hash; + CMS_ContentInfo_print_ctx; + TS_RESP_free; + ISSUING_DIST_POINT_free; + ESS_ISSUER_SERIAL_new; + CMS_add1_crl; + PKCS7_add1_attrib_digest; + TS_RESP_CTX_add_md; + TS_TST_INFO_dup; + ENGINE_set_pkey_asn1_meths; + PEM_write_bio_Parameters; + TS_TST_INFO_get_accuracy; + X509_CRL_get0_by_serial; + TS_TST_INFO_set_version; + TS_RESP_CTX_get_tst_info; + TS_RESP_verify_signature; + CRYPTO_THREADID_get_callback; + TS_TST_INFO_get_tsa; + TS_STATUS_INFO_new; + EVP_PKEY_CTX_get_cb; + TS_REQ_get_ext_d2i; + GENERAL_NAME_set0_othername; + TS_TST_INFO_get_ext_count; + TS_RESP_CTX_get_request; + i2d_NETSCAPE_X509; + ENGINE_get_pkey_meth_engine; + EVP_PKEY_meth_set_signctx; + EVP_PKEY_asn1_copy; + ASN1_TYPE_cmp; + EVP_CIPHER_do_all_sorted; + EVP_PKEY_CTX_free; + ISSUING_DIST_POINT_it; + ISSUING_DIST_POINT_it; + d2i_TS_MSG_IMPRINT_fp; + X509_STORE_get1_certs; + EVP_PKEY_CTX_get_operation; + d2i_ESS_SIGNING_CERT; + TS_CONF_set_ordering; + EVP_PBE_alg_add_type; + TS_REQ_set_version; + EVP_PKEY_get0; + BIO_asn1_set_suffix; + i2d_TS_STATUS_INFO; + EVP_MD_do_all; + TS_TST_INFO_set_accuracy; + PKCS7_add_attrib_content_type; + ERR_remove_thread_state; + EVP_PKEY_meth_add0; + TS_TST_INFO_set_tsa; + EVP_PKEY_meth_new; + WHIRLPOOL_Update; + TS_CONF_set_accuracy; + ASN1_PCTX_set_oid_flags; + ESS_SIGNING_CERT_dup; + d2i_TS_REQ_bio; + X509_time_adj_ex; + TS_RESP_CTX_add_flags; + d2i_TS_STATUS_INFO; + TS_MSG_IMPRINT_set_msg; + BIO_asn1_get_suffix; + TS_REQ_free; + EVP_PKEY_meth_free; + TS_REQ_get_exts; + TS_RESP_CTX_set_clock_precision_digits; + TS_RESP_CTX_add_failure_info; + i2d_TS_RESP_bio; + EVP_PKEY_CTX_get0_peerkey; + PEM_write_bio_CMS_stream; + TS_REQ_new; + TS_MSG_IMPRINT_new; + EVP_PKEY_meth_find; + EVP_PKEY_id; + TS_TST_INFO_set_serial; + a2i_GENERAL_NAME; + TS_CONF_set_crypto_device; + EVP_PKEY_verify_init; + TS_CONF_set_policies; + ASN1_PCTX_new; + ESS_CERT_ID_free; + ENGINE_unregister_pkey_meths; + TS_MSG_IMPRINT_free; + TS_VERIFY_CTX_init; + PKCS7_stream; + TS_RESP_CTX_set_certs; + TS_CONF_set_def_policy; + ASN1_GENERALIZEDTIME_adj; + NETSCAPE_X509_new; + TS_ACCURACY_free; + TS_RESP_get_tst_info; + EVP_PKEY_derive_set_peer; + PEM_read_bio_Parameters; + TS_CONF_set_clock_precision_digits; + ESS_ISSUER_SERIAL_dup; + TS_ACCURACY_get_micros; + ASN1_PCTX_get_str_flags; + NAME_CONSTRAINTS_check; + ASN1_BIT_STRING_check; + X509_check_akid; + ENGINE_unregister_pkey_asn1_meths; + ASN1_PCTX_free; + PEM_write_bio_ASN1_stream; + i2d_ASN1_bio_stream; + TS_X509_ALGOR_print_bio; + EVP_PKEY_meth_set_cleanup; + EVP_PKEY_asn1_free; + ESS_SIGNING_CERT_free; + TS_TST_INFO_set_msg_imprint; + GENERAL_NAME_cmp; + d2i_ASN1_SET_ANY; + ENGINE_set_pkey_meths; + i2d_TS_REQ_fp; + d2i_ASN1_SEQUENCE_ANY; + GENERAL_NAME_get0_otherName; + d2i_ESS_CERT_ID; + OBJ_find_sigid_algs; + EVP_PKEY_meth_set_keygen; + PKCS5_PBKDF2_HMAC; + EVP_PKEY_paramgen; + EVP_PKEY_meth_set_paramgen; + BIO_new_PKCS7; + EVP_PKEY_verify_recover; + TS_ext_print_bio; + TS_ASN1_INTEGER_print_bio; + check_defer; + DSO_pathbyaddr; + EVP_PKEY_set_type; + TS_ACCURACY_set_micros; + TS_REQ_to_TS_VERIFY_CTX; + EVP_PKEY_meth_set_copy; + ASN1_PCTX_set_cert_flags; + TS_TST_INFO_get_ext; + EVP_PKEY_asn1_set_ctrl; + TS_TST_INFO_get_ext_by_critical; + EVP_PKEY_CTX_new_id; + TS_REQ_get_ext_by_OBJ; + TS_CONF_set_signer_cert; + X509_NAME_hash_old; + ASN1_TIME_set_string; + EVP_MD_flags; + TS_RESP_CTX_free; + DSAparams_dup; + DHparams_dup; + OCSP_REQ_CTX_add1_header; + OCSP_REQ_CTX_set1_req; + X509_STORE_set_verify_cb; + X509_STORE_CTX_get0_current_crl; + X509_STORE_CTX_get0_parent_ctx; + X509_STORE_CTX_get0_current_issuer; + X509_issuer_name_hash_old; + X509_subject_name_hash_old; + EVP_CIPHER_CTX_copy; + UI_method_get_prompt_constructor; + UI_method_set_prompt_constructor; + EVP_read_pw_string_min; + CRYPTO_cts128_encrypt; + CRYPTO_cts128_decrypt_block; + CRYPTO_cfb128_1_encrypt; + CRYPTO_cbc128_encrypt; + CRYPTO_ctr128_encrypt; + CRYPTO_ofb128_encrypt; + CRYPTO_cts128_decrypt; + CRYPTO_cts128_encrypt_block; + CRYPTO_cbc128_decrypt; + CRYPTO_cfb128_encrypt; + CRYPTO_cfb128_8_encrypt; + + local: + *; +}; + + +OPENSSL_1.0.1 { + global: + + SRP_VBASE_get_by_user; + SRP_Calc_server_key; + SRP_create_verifier; + SRP_create_verifier_BN; + SRP_Calc_u; + SRP_VBASE_free; + SRP_Calc_client_key; + SRP_get_default_gN; + SRP_Calc_x; + SRP_Calc_B; + SRP_VBASE_new; + SRP_check_known_gN_param; + SRP_Calc_A; + SRP_Verify_A_mod_N; + SRP_VBASE_init; + SRP_Verify_B_mod_N; + EC_KEY_set_public_key_affine_coordinates; + EVP_aes_192_ctr; + EVP_PKEY_meth_get0_info; + EVP_PKEY_meth_copy; + ERR_add_error_vdata; + EVP_aes_128_ctr; + EVP_aes_256_ctr; + EC_KEY_get_flags; + RSA_padding_add_PKCS1_PSS_mgf1; + EVP_aes_128_xts; + EVP_aes_256_xts; + EVP_aes_128_gcm; + EC_KEY_clear_flags; + EC_KEY_set_flags; + EVP_aes_256_ccm; + RSA_verify_PKCS1_PSS_mgf1; + EVP_aes_128_ccm; + EVP_aes_192_gcm; + X509_ALGOR_set_md; + EVP_aes_256_gcm; + EVP_aes_192_ccm; + CMAC_CTX_copy; + CMAC_CTX_free; + CMAC_CTX_get0_cipher_ctx; + CMAC_CTX_cleanup; + CMAC_Init; + CMAC_Update; + CMAC_resume; + CMAC_CTX_new; + CMAC_Final; + CRYPTO_ctr128_encrypt_ctr32; + CRYPTO_gcm128_release; + CRYPTO_ccm128_decrypt_ccm64; + CRYPTO_ccm128_encrypt; + CRYPTO_gcm128_encrypt; + CRYPTO_xts128_encrypt; + EVP_rc4_hmac_md5; + CRYPTO_nistcts128_decrypt_block; + CRYPTO_gcm128_setiv; + CRYPTO_nistcts128_encrypt; + EVP_aes_128_cbc_hmac_sha1; + CRYPTO_gcm128_tag; + CRYPTO_ccm128_encrypt_ccm64; + ENGINE_load_rdrand; + CRYPTO_ccm128_setiv; + CRYPTO_nistcts128_encrypt_block; + CRYPTO_gcm128_aad; + CRYPTO_ccm128_init; + CRYPTO_nistcts128_decrypt; + CRYPTO_gcm128_new; + CRYPTO_ccm128_tag; + CRYPTO_ccm128_decrypt; + CRYPTO_ccm128_aad; + CRYPTO_gcm128_init; + CRYPTO_gcm128_decrypt; + ENGINE_load_rsax; + CRYPTO_gcm128_decrypt_ctr32; + CRYPTO_gcm128_encrypt_ctr32; + CRYPTO_gcm128_finish; + EVP_aes_256_cbc_hmac_sha1; + PKCS5_pbkdf2_set; + CMS_add0_recipient_password; + CMS_decrypt_set1_password; + CMS_RecipientInfo_set0_password; + X509_REQ_sign_ctx; + RSA_PSS_PARAMS_new; + X509_CRL_sign_ctx; + X509_signature_dump; + d2i_RSA_PSS_PARAMS; + RSA_PSS_PARAMS_it; + RSA_PSS_PARAMS_it; + RSA_PSS_PARAMS_free; + X509_sign_ctx; + i2d_RSA_PSS_PARAMS; + ASN1_item_sign_ctx; + OPENSSL_stderr; + OPENSSL_cpuid_setup; + OPENSSL_showfatal; +} OPENSSL_1.0.0; + Added: csw/mgar/pkg/openssl1/trunk/files/map.openssl.libssl =================================================================== --- csw/mgar/pkg/openssl1/trunk/files/map.openssl.libssl (rev 0) +++ csw/mgar/pkg/openssl1/trunk/files/map.openssl.libssl 2012-07-23 11:01:06 UTC (rev 18832) @@ -0,0 +1,294 @@ +OPENSSL_1.0.0 { + global: + BIO_f_ssl; + BIO_new_buffer_ssl_connect; + BIO_new_ssl; + BIO_new_ssl_connect; + BIO_ssl_copy_session_id; + BIO_ssl_shutdown; + d2i_SSL_SESSION; + DTLSv1_client_method; + DTLSv1_method; + DTLSv1_server_method; + ERR_load_SSL_strings; + i2d_SSL_SESSION; + PEM_read_bio_SSL_SESSION; + PEM_read_SSL_SESSION; + PEM_write_bio_SSL_SESSION; + PEM_write_SSL_SESSION; + SSL_accept; + SSL_add_client_CA; + SSL_add_dir_cert_subjects_to_stack; + SSL_add_file_cert_subjects_to_stack; + SSL_alert_desc_string; + SSL_alert_desc_string_long; + SSL_alert_type_string; + SSL_alert_type_string_long; + SSL_callback_ctrl; + SSL_check_private_key; + SSL_CIPHER_description; + SSL_CIPHER_get_bits; + SSL_CIPHER_get_name; + SSL_CIPHER_get_version; + SSL_clear; + SSL_COMP_add_compression_method; + SSL_COMP_get_compression_methods; + SSL_COMP_get_name; + SSL_connect; + SSL_copy_session_id; + SSL_ctrl; + SSL_CTX_add_client_CA; + SSL_CTX_add_session; + SSL_CTX_callback_ctrl; + SSL_CTX_check_private_key; + SSL_CTX_ctrl; + SSL_CTX_flush_sessions; + SSL_CTX_free; + SSL_CTX_get_cert_store; + SSL_CTX_get_client_CA_list; + SSL_CTX_get_client_cert_cb; + SSL_CTX_get_ex_data; + SSL_CTX_get_ex_new_index; + SSL_CTX_get_info_callback; + SSL_CTX_get_quiet_shutdown; + SSL_CTX_get_timeout; + SSL_CTX_get_verify_callback; + SSL_CTX_get_verify_depth; + SSL_CTX_get_verify_mode; + SSL_CTX_load_verify_locations; + SSL_CTX_new; + SSL_CTX_remove_session; + SSL_CTX_sess_get_get_cb; + SSL_CTX_sess_get_new_cb; + SSL_CTX_sess_get_remove_cb; + SSL_CTX_sessions; + SSL_CTX_sess_set_get_cb; + SSL_CTX_sess_set_new_cb; + SSL_CTX_sess_set_remove_cb; + SSL_CTX_set1_param; + SSL_CTX_set_cert_store; + SSL_CTX_set_cert_verify_callback; + SSL_CTX_set_cipher_list; + SSL_CTX_set_client_CA_list; + SSL_CTX_set_client_cert_cb; + SSL_CTX_set_client_cert_engine; + SSL_CTX_set_cookie_generate_cb; + SSL_CTX_set_cookie_verify_cb; + SSL_CTX_set_default_passwd_cb; + SSL_CTX_set_default_passwd_cb_userdata; + SSL_CTX_set_default_verify_paths; + SSL_CTX_set_ex_data; + SSL_CTX_set_generate_session_id; + SSL_CTX_set_info_callback; + SSL_CTX_set_msg_callback; + SSL_CTX_set_psk_client_callback; + SSL_CTX_set_psk_server_callback; + SSL_CTX_set_purpose; + SSL_CTX_set_quiet_shutdown; + SSL_CTX_set_session_id_context; + SSL_CTX_set_ssl_version; + SSL_CTX_set_timeout; + SSL_CTX_set_tmp_dh_callback; + SSL_CTX_set_tmp_ecdh_callback; + SSL_CTX_set_tmp_rsa_callback; + SSL_CTX_set_trust; + SSL_CTX_set_verify; + SSL_CTX_set_verify_depth; + SSL_CTX_use_certificate; + SSL_CTX_use_certificate_ASN1; + SSL_CTX_use_certificate_chain_file; + SSL_CTX_use_certificate_file; + SSL_CTX_use_PrivateKey; + SSL_CTX_use_PrivateKey_ASN1; + SSL_CTX_use_PrivateKey_file; + SSL_CTX_use_psk_identity_hint; + SSL_CTX_use_RSAPrivateKey; + SSL_CTX_use_RSAPrivateKey_ASN1; + SSL_CTX_use_RSAPrivateKey_file; + SSL_do_handshake; + SSL_dup; + SSL_dup_CA_list; + SSL_free; + SSL_get1_session; + SSL_get_certificate; + SSL_get_cipher_list; + SSL_get_ciphers; + SSL_get_client_CA_list; + SSL_get_current_cipher; + SSL_get_current_compression; + SSL_get_current_expansion; + SSL_get_default_timeout; + SSL_get_error; + SSL_get_ex_data; + SSL_get_ex_data_X509_STORE_CTX_idx; + SSL_get_ex_new_index; + SSL_get_fd; + SSL_get_finished; + SSL_get_info_callback; + SSL_get_peer_cert_chain; + SSL_get_peer_certificate; + SSL_get_peer_finished; + SSL_get_privatekey; + SSL_get_psk_identity; + SSL_get_psk_identity_hint; + SSL_get_quiet_shutdown; + SSL_get_rbio; + SSL_get_read_ahead; + SSL_get_rfd; + SSL_get_servername; + SSL_get_servername_type; + SSL_get_session; + SSL_get_shared_ciphers; + SSL_get_shutdown; + SSL_get_SSL_CTX; + SSL_get_ssl_method; + SSL_get_verify_callback; + SSL_get_verify_depth; + SSL_get_verify_mode; + SSL_get_verify_result; + SSL_get_version; + SSL_get_wbio; + SSL_get_wfd; + SSL_has_matching_session_id; + SSL_library_init; + SSL_load_client_CA_file; + SSL_load_error_strings; + SSL_new; + SSL_peek; + SSL_pending; + SSL_read; + SSL_renegotiate; + SSL_renegotiate_pending; + SSL_rstate_string; + SSL_rstate_string_long; + SSL_SESSION_free; + SSL_SESSION_get_ex_data; + SSL_SESSION_get_ex_new_index; + SSL_SESSION_get_id; + SSL_SESSION_get_time; + SSL_SESSION_get_timeout; + SSL_SESSION_new; + SSL_SESSION_print; + SSL_SESSION_print_fp; + SSL_SESSION_set_ex_data; + SSL_SESSION_set_time; + SSL_SESSION_set_timeout; + SSL_set1_param; + SSL_set_accept_state; + SSL_set_bio; + SSL_set_cipher_list; + SSL_set_client_CA_list; + SSL_set_connect_state; + SSL_set_ex_data; + SSL_set_fd; + SSL_set_generate_session_id; + SSL_set_info_callback; + SSL_set_msg_callback; + SSL_set_psk_client_callback; + SSL_set_psk_server_callback; + SSL_set_purpose; + SSL_set_quiet_shutdown; + SSL_set_read_ahead; + SSL_set_rfd; + SSL_set_session; + SSL_set_session_id_context; + SSL_set_session_secret_cb; + SSL_set_session_ticket_ext; + SSL_set_session_ticket_ext_cb; + SSL_set_shutdown; + SSL_set_SSL_CTX; + SSL_set_ssl_method; + SSL_set_tmp_dh_callback; + SSL_set_tmp_ecdh_callback; + SSL_set_tmp_rsa_callback; + SSL_set_trust; + SSL_set_verify; + SSL_set_verify_depth; + SSL_set_verify_result; + SSL_set_wfd; + SSL_shutdown; + SSL_state; + SSL_state_string; + SSL_state_string_long; + SSL_use_certificate; + SSL_use_certificate_ASN1; + SSL_use_certificate_file; + SSL_use_PrivateKey; + SSL_use_PrivateKey_ASN1; + SSL_use_PrivateKey_file; + SSL_use_psk_identity_hint; + SSL_use_RSAPrivateKey; + SSL_use_RSAPrivateKey_ASN1; + SSL_use_RSAPrivateKey_file; + SSLv23_client_method; + SSLv23_method; + SSLv23_server_method; + SSLv2_client_method; + SSLv2_method; + SSLv2_server_method; + SSLv3_client_method; + SSLv3_method; + SSLv3_server_method; + SSL_version; + SSL_want; + SSL_write; + TLSv1_client_method; + TLSv1_method; + TLSv1_server_method; + + + + local: + *; +}; + + +OPENSSL_1.0.1 { + global: + SSL_renegotiate_abbreviated; + TLSv1_1_method; + TLSv1_1_client_method; + TLSv1_1_server_method; + SSL_CTX_set_srp_client_pwd_callback; + SSL_get_srp_g; + SSL_CTX_set_srp_username_callback; + SSL_get_srp_userinfo; + SSL_set_srp_server_param; + SSL_set_srp_server_param_pw; + SSL_get_srp_N; + SSL_get_srp_username; + SSL_CTX_set_srp_password; + SSL_CTX_set_srp_strength; + SSL_CTX_set_srp_verify_param_callback; + SSL_CTX_set_srp_cb_arg; + SSL_CTX_set_srp_username; + SSL_CTX_SRP_CTX_init; + SSL_SRP_CTX_init; + SRP_Calc_A_param; + SRP_generate_server_master_secret; + SSL_CTX_SRP_CTX_free; + SRP_generate_client_master_secret; + SSL_srp_server_param_with_username; + SSL_SRP_CTX_free; + SSL_set_debug; + SSL_SESSION_get0_peer; + TLSv1_2_client_method; + SSL_SESSION_set1_id_context; + TLSv1_2_server_method; + SSL_cache_hit; + SSL_set_state; + SSL_CIPHER_get_id; + TLSv1_2_method; + SSL_export_keying_material; + SSL_set_tlsext_use_srtp; + SSL_CTX_set_next_protos_advertised_cb; + SSL_get0_next_proto_negotiated; + SSL_get_selected_srtp_profile; + SSL_CTX_set_tlsext_use_srtp; + SSL_select_next_proto; + SSL_get_srtp_profiles; + SSL_CTX_set_next_proto_select_cb; + SSL_SESSION_get_compress_id; + +} OPENSSL_1.0.0; + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Mon Jul 23 15:08:37 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Mon, 23 Jul 2012 13:08:37 +0000 Subject: [csw-devel] SF.net SVN: gar:[18833] csw/mgar/pkg/lang-python Message-ID: Revision: 18833 http://gar.svn.sourceforge.net/gar/?rev=18833&view=rev Author: cgrzemba Date: 2012-07-23 13:08:36 +0000 (Mon, 23 Jul 2012) Log Message: ----------- lang-python/xpra/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/lang-python/xpra/ csw/mgar/pkg/lang-python/xpra/Makefile csw/mgar/pkg/lang-python/xpra/branches/ csw/mgar/pkg/lang-python/xpra/tags/ csw/mgar/pkg/lang-python/xpra/trunk/ csw/mgar/pkg/lang-python/xpra/trunk/Makefile csw/mgar/pkg/lang-python/xpra/trunk/checksums csw/mgar/pkg/lang-python/xpra/trunk/files/ Added: csw/mgar/pkg/lang-python/xpra/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/xpra/Makefile 2012-07-23 13:08:36 UTC (rev 18833) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/lang-python/xpra/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-23 13:08:36 UTC (rev 18833) @@ -0,0 +1,42 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = xpra +VERSION = 0.3.4 +GARTYPE = v2 +CATEGORIES = utils + +DESCRIPTION = screen for X +define BLURB + Xpra is 'screen for X': it allows you to run X programs, usually on a remote host, direct their display to your local machine, and then to disconnect from these programs and reconnect from the same or another machine, without losing any state. It gives you remote access to individual applications. +Xpra is "rootless" or "seamless": programs you run under it show up on your desktop as regular programs, managed by your regular window manager. +Sessions can be accessed over SSH, or password protected over plain TCP sockets. +Xpra is usable over reasonably slow links and does its best to adapt to changing network bandwidth limits. +endef + +MASTER_SITES = http://xpra.org/src/ +DISTFILES = $(DISTNAME).tar.bz2 + +# File name regex to get notifications about upstream software releases +# NOTE: Use this only if the automatic regex creation +# does not work for your package +# UFILES_REGEX = $(NAME)-(\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 = + +ARCHALL = 1 +BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel +BUILD_DEP_PKGS += CSWlibxfixesdevel CSWlibxcompositedev CSWlibxdamagedevel CSWlibxrandrdevel + +CONFIGURE_SCRIPTS = +BUILD_SCRIPTS = $(WORKSRC)/setup.py +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/setup.py + +INSTALL_ARGS += --root=$(DESTDIR) +INSTALL_ARGS += --prefix=$(prefix) + +include gar/category.mk + Property changes on: csw/mgar/pkg/lang-python/xpra/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/lang-python/xpra/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/xpra/trunk/checksums 2012-07-23 13:08:36 UTC (rev 18833) @@ -0,0 +1 @@ +12d7249fbb7c7032fa42e4ae86fa5fe4 xpra-0.3.4.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Mon Jul 23 15:47:39 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Mon, 23 Jul 2012 13:47:39 +0000 Subject: [csw-devel] SF.net SVN: gar:[18834] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 18834 http://gar.svn.sourceforge.net/gar/?rev=18834&view=rev Author: pfelecan Date: 2012-07-23 13:47:39 +0000 (Mon, 23 Jul 2012) Log Message: ----------- gdb/trunk: configure Python support only for 32 bits ISAs Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2012-07-23 13:08:36 UTC (rev 18833) +++ csw/mgar/pkg/gdb/trunk/Makefile 2012-07-23 13:47:39 UTC (rev 18834) @@ -46,18 +46,21 @@ BUILD_DEP_PKGS += CSWlibncurses-dev BUILD_DEP_PKGS += CSWlibz-dev +CONFIGURE_ARGS-32 += --with-python +CONFIGURE_ARGS-64 += + CONFIGURE_ARGS = $(DIRPATHS) CONFIGURE_ARGS += --enable-64-bit-bfd CONFIGURE_ARGS += --enable-tui CONFIGURE_ARGS += --with-curses CONFIGURE_ARGS += --with-expat -CONFIGURE_ARGS += --with-python # private TCL headers not being installed # (https://www.opencsw.org/mantis/view.php?id=4652) #CONFIGURE_ARGS += --enable-gdbtk #CONFIGURE_ARGS += --with-tcl=/opt/csw/lib #CONFIGURE_ARGS += --with-tk=/opt/csw/lib CONFIGURE_ARGS += --with-x +CONFIGURE_ARGS += $(CONFIGURE_ARGS-$(MEMORYMODEL)) RUNTIME_DEP_PKGS += CSWlibexpat1 RUNTIME_DEP_PKGS += CSWlibiconv2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Mon Jul 23 16:16:05 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Mon, 23 Jul 2012 14:16:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[18835] csw/mgar/pkg/lang-python Message-ID: Revision: 18835 http://gar.svn.sourceforge.net/gar/?rev=18835&view=rev Author: cgrzemba Date: 2012-07-23 14:16:05 +0000 (Mon, 23 Jul 2012) Log Message: ----------- lang-python/cython/trunk: initial commit Added Paths: ----------- csw/mgar/pkg/lang-python/cython/ csw/mgar/pkg/lang-python/cython/Makefile csw/mgar/pkg/lang-python/cython/branches/ csw/mgar/pkg/lang-python/cython/tags/ csw/mgar/pkg/lang-python/cython/trunk/ csw/mgar/pkg/lang-python/cython/trunk/Makefile csw/mgar/pkg/lang-python/cython/trunk/checksums csw/mgar/pkg/lang-python/cython/trunk/files/ Added: csw/mgar/pkg/lang-python/cython/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cython/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/cython/Makefile 2012-07-23 14:16:05 UTC (rev 18835) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/lang-python/cython/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/lang-python/cython/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/cython/trunk/Makefile (rev 0) +++ csw/mgar/pkg/lang-python/cython/trunk/Makefile 2012-07-23 14:16:05 UTC (rev 18835) @@ -0,0 +1,46 @@ +# $Id$ +# TODO (release-critical prefixed with !, non release-critical with *) +# +NAME = Cython +VERSION = 0.16 +GARTYPE = v2 +CATEGORIES = lang + +DESCRIPTION = Cython Compiler +define BLURB + The Cython language makes writing C extensions for the Python language as easy as Python itself. Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. + +The Cython language is very close to the Python language (and most Python code is also valid Cython code), but Cython additionally supports calling C functions and declaring C types on variables and class attributes. This allows the compiler to generate very efficient C code from Cython code. + +This makes Cython the ideal language for writing glue code for external C libraries, and for fast C modules that speed up the execution of Python code. +endef + +MASTER_SITES = http://pypi.python.org/packages/source/C/Cython/ +DISTFILES = $(DISTNAME).tar.gz + +PACKAGING_PLATFORMS += Solaris10-sparc Solaris10-i386 +GARCOMPILER = SOS12U3 + +LICENSE = LICENSE.txt + +REINPLACE_USRLOCAL = $(libdir)/python/site-packages/pyximport/pyximport.py +REINPLACE_WHEN_USRLOCAL = postinstall + +PACKAGES += CSWcython +RUNTIME_DEP_PKGS_CSWcython += CSWpython +RUNTIME_DEP_PKGS_CSWcython += CSWlibpython2-6-1-0 + +PYCOMPILE = 1 +STRIP_LIBTOOL = 1 +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc + +CONFIGURE_ARGS = $(DIRPATHS) + +CONFIGURE_SCRIPTS = +TEST_SCRIPTS = +INSTALL_SCRIPTS = $(WORKSRC)/setup.py +INSTALL_ARGS += --root=$(DESTDIR) +INSTALL_ARGS += --prefix=$(prefix) + +include gar/category.mk + Property changes on: csw/mgar/pkg/lang-python/cython/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/lang-python/cython/trunk/checksums =================================================================== --- csw/mgar/pkg/lang-python/cython/trunk/checksums (rev 0) +++ csw/mgar/pkg/lang-python/cython/trunk/checksums 2012-07-23 14:16:05 UTC (rev 18835) @@ -0,0 +1 @@ +7934186ada3552110aba92062fa88b1c Cython-0.16.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Mon Jul 23 21:07:43 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 23 Jul 2012 19:07:43 +0000 Subject: [csw-devel] SF.net SVN: gar:[18836] csw/mgar/pkg/php5/trunk Message-ID: Revision: 18836 http://gar.svn.sourceforge.net/gar/?rev=18836&view=rev Author: bdwalton Date: 2012-07-23 19:07:41 +0000 (Mon, 23 Jul 2012) Log Message: ----------- php5/trunk: version bump Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile csw/mgar/pkg/php5/trunk/checksums Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2012-07-23 14:16:05 UTC (rev 18835) +++ csw/mgar/pkg/php5/trunk/Makefile 2012-07-23 19:07:41 UTC (rev 18836) @@ -1,5 +1,5 @@ NAME = php5 -VERSION = 5.3.14 +VERSION = 5.3.15 CATEGORIES = lang GARTYPE = v2 SF_PROJ = $(shell echo $(NAME) | sed -e 's/[0-9]//g') Modified: csw/mgar/pkg/php5/trunk/checksums =================================================================== --- csw/mgar/pkg/php5/trunk/checksums 2012-07-23 14:16:05 UTC (rev 18835) +++ csw/mgar/pkg/php5/trunk/checksums 2012-07-23 19:07:41 UTC (rev 18836) @@ -1 +1 @@ -7caac4f71e2f21426c11ac153e538392 php-5.3.14.tar.bz2 +5cfcfd0fa4c4da7576f397073e7993cc php-5.3.15.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Tue Jul 24 02:45:46 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Tue, 24 Jul 2012 00:45:46 +0000 Subject: [csw-devel] SF.net SVN: opencsw:[622] catalog_signatures/etc/gpg/gpg-agent.conf Message-ID: Revision: 622 http://opencsw.svn.sourceforge.net/opencsw/?rev=622&view=rev Author: bdwalton Date: 2012-07-24 00:45:45 +0000 (Tue, 24 Jul 2012) Log Message: ----------- increase gpg timeout values to 30 days (from 7) Signed-off-by: Ben Walton Modified Paths: -------------- catalog_signatures/etc/gpg/gpg-agent.conf Modified: catalog_signatures/etc/gpg/gpg-agent.conf =================================================================== --- catalog_signatures/etc/gpg/gpg-agent.conf 2012-05-30 23:04:01 UTC (rev 621) +++ catalog_signatures/etc/gpg/gpg-agent.conf 2012-07-24 00:45:45 UTC (rev 622) @@ -1,3 +1,3 @@ -default-cache-ttl 604800 -max-cache-ttl 604800 +default-cache-ttl 2592000 +max-cache-ttl 2592000 pinentry-program /opt/catalog_signatures/bin/timeout_pinentry This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From bdwalton at users.sourceforge.net Tue Jul 24 04:32:12 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Tue, 24 Jul 2012 02:32:12 +0000 Subject: [csw-devel] SF.net SVN: opencsw:[623] catalog_signatures/bin/signing_daemon Message-ID: Revision: 623 http://opencsw.svn.sourceforge.net/opencsw/?rev=623&view=rev Author: bdwalton Date: 2012-07-24 02:32:12 +0000 (Tue, 24 Jul 2012) Log Message: ----------- Avoid starting multiple gpg agent processes Be a bit smarter about when/how we start a new gpg agent process. We used to nuke the env file and force a new agent into being. Now, we re-use an existing agent. Signed-off-by: Ben Walton Modified Paths: -------------- catalog_signatures/bin/signing_daemon Modified: catalog_signatures/bin/signing_daemon =================================================================== --- catalog_signatures/bin/signing_daemon 2012-07-24 00:45:45 UTC (rev 622) +++ catalog_signatures/bin/signing_daemon 2012-07-24 02:32:12 UTC (rev 623) @@ -10,10 +10,26 @@ APP_ETC="${APP_HOME}etc" source "${APP_ETC}/signing_daemon.conf" -rm -f ${APP_GPG_ENV} +_gpg_live= +if [ -f ${APP_GPG_ENV} ]; then + _gpg_pid=$(cat ${APP_GPG_ENV} | awk -F: '{print $2}') + _gpg_live=$(ps -ef | awk "\$2 == ${_gpg_pid} {print}") -# we run gpg-agent separately instead of having it fork/exec screen so -# that when screen is detached, gpg-agent continues to run... -eval $(gpg-agent --log-file "${APP_LOGDIR}/gpg-agent.log" --daemon --homedir "${APP_GPG}" --write-env-file "${APP_GPG_ENV}") + if [ -z "${_gpg_live}" ]; then + echo "Cleaning up old gpg agent cruft." + rm "${APP_GPG_ENV}" + fi +fi +if [ -z "${_gpg_live}" ]; then + # we run gpg-agent separately instead of having it fork/exec + # screen so that when screen is detached, gpg-agent continues to + # run... + eval $(gpg-agent --log-file "${APP_LOGDIR}/gpg-agent.log" --daemon --homedir "${APP_GPG}" --write-env-file "${APP_GPG_ENV}") +else + echo "We think a gpg agent is running, so we're attempting to re-use it." + source "${APP_GPG_ENV}" + export GPG_AGENT_INFO +fi + exec screen -c "${APP_ETC}/screenrc" -p 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 Tue Jul 24 04:32:36 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Tue, 24 Jul 2012 02:32:36 +0000 Subject: [csw-devel] SF.net SVN: opencsw:[624] catalog_signatures Message-ID: Revision: 624 http://opencsw.svn.sourceforge.net/opencsw/?rev=624&view=rev Author: bdwalton Date: 2012-07-24 02:32:36 +0000 (Tue, 24 Jul 2012) Log Message: ----------- Avoid trying to start another screen based on PID file Avoid starting more than one screen session and print a message for the caller if it looks as though screen might be running. We're using a simple PID file to mark this for now. We'll add more smarts if required. Signed-off-by: Ben Walton Modified Paths: -------------- catalog_signatures/bin/signing_daemon catalog_signatures/etc/signing_daemon.conf catalog_signatures/tmp/.gitignore Modified: catalog_signatures/bin/signing_daemon =================================================================== --- catalog_signatures/bin/signing_daemon 2012-07-24 02:32:12 UTC (rev 623) +++ catalog_signatures/bin/signing_daemon 2012-07-24 02:32:36 UTC (rev 624) @@ -32,4 +32,11 @@ export GPG_AGENT_INFO fi -exec screen -c "${APP_ETC}/screenrc" -p 0 +if [ -f "${APP_PID}" ]; then + echo "We think a daemon is already running (pid: $(cat ${APP_PID}))." + echo "If this is wrong, remove:" + echo "'${APP_PID}'" +else + echo $$ >"${APP_PID}" + exec screen -c "${APP_ETC}/screenrc" -p 0 +fi Modified: catalog_signatures/etc/signing_daemon.conf =================================================================== --- catalog_signatures/etc/signing_daemon.conf 2012-07-24 02:32:12 UTC (rev 623) +++ catalog_signatures/etc/signing_daemon.conf 2012-07-24 02:32:36 UTC (rev 624) @@ -4,6 +4,7 @@ APP_TMP="${APP_HOME}/tmp" APP_LOGDIR="${APP_HOME}/log" APP_GPG_ENV="${APP_TMP}/gpg-agent-env.conf" +APP_PID="${APP_TMP}/signing_daemon.pid" APP_MIRROR_BASE="/export/mirror" APP_PORT=9981 APP_MAILTO="bwalton maciej ihsan" Modified: catalog_signatures/tmp/.gitignore =================================================================== --- catalog_signatures/tmp/.gitignore 2012-07-24 02:32:12 UTC (rev 623) +++ catalog_signatures/tmp/.gitignore 2012-07-24 02:32:36 UTC (rev 624) @@ -1,3 +1,4 @@ gpg-agent.conf *asc gpg-agent* +signing_daemon.pid 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 Jul 24 10:29:24 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Tue, 24 Jul 2012 08:29:24 +0000 Subject: [csw-devel] SF.net SVN: gar:[18837] csw/mgar/pkg/squid Message-ID: Revision: 18837 http://gar.svn.sourceforge.net/gar/?rev=18837&view=rev Author: dmichelsen Date: 2012-07-24 08:29:23 +0000 (Tue, 24 Jul 2012) Log Message: ----------- squid: Make squid3 the default in trunk and tag away the old recipes Added Paths: ----------- csw/mgar/pkg/squid/tags/squid-2.7STABLE9/ csw/mgar/pkg/squid/trunk/ Removed Paths: ------------- csw/mgar/pkg/squid/branches/squid3/ csw/mgar/pkg/squid/branches/squid3-dam/ csw/mgar/pkg/squid/trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Tue Jul 24 11:55:01 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 24 Jul 2012 09:55:01 +0000 Subject: [csw-devel] SF.net SVN: gar:[18838] csw/mgar/pkg/lang-python/xpra/trunk/Makefile Message-ID: Revision: 18838 http://gar.svn.sourceforge.net/gar/?rev=18838&view=rev Author: cgrzemba Date: 2012-07-24 09:55:00 +0000 (Tue, 24 Jul 2012) Log Message: ----------- lang-python/xpra/trunk: refine build target Modified Paths: -------------- csw/mgar/pkg/lang-python/xpra/trunk/Makefile Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 08:29:23 UTC (rev 18837) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 09:55:00 UTC (rev 18838) @@ -29,14 +29,31 @@ ARCHALL = 1 BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel BUILD_DEP_PKGS += CSWlibxfixesdevel CSWlibxcompositedev CSWlibxdamagedevel CSWlibxrandrdevel +BUILD_DEP_PKGS += CSWx11recordproto CSWlibxextdevel CSWx11fixesproto CSWx11compositeproto +BUILD_DEP_PKGS += CSWx11damageproto CSWx11randrproto CSWcython CSWpython-dev +BUILD_DEP_PKGS += CSWlibx264-dev CSWffmpeg-dev +EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc + CONFIGURE_SCRIPTS = -BUILD_SCRIPTS = $(WORKSRC)/setup.py +BUILD_SCRIPTS = python TEST_SCRIPTS = INSTALL_SCRIPTS = $(WORKSRC)/setup.py +BUILD_ENV += PKG_CONFIG_PATH=/opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig +PYBUILD_CMD = build +BUILD_ARGS += --without-vpx + +INSTALL_ENV += $(BUILD_ENV) INSTALL_ARGS += --root=$(DESTDIR) INSTALL_ARGS += --prefix=$(prefix) +INSTALL_ARGS += $(BUILD_ARGS) +build-python: + (cd $(WORKSRC); \ + python make_constants_pxi.py wimpiggy/lowlevel/constants.txt wimpiggy/lowlevel/constants.pxi; \ + $(BUILD_ENV) python setup.py $(PYBUILD_CMD) $(BUILD_ARGS)) + $(MAKECOOKIE) + include gar/category.mk This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 24 12:54:53 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 24 Jul 2012 10:54:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18839] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 18839 http://gar.svn.sourceforge.net/gar/?rev=18839&view=rev Author: pfelecan Date: 2012-07-24 10:54:53 +0000 (Tue, 24 Jul 2012) Log Message: ----------- gdb/trunk: verified and validated overrides Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2012-07-24 09:55:00 UTC (rev 18838) +++ csw/mgar/pkg/gdb/trunk/Makefile 2012-07-24 10:54:53 UTC (rev 18839) @@ -36,8 +36,9 @@ PATCHFILES += 0003-Extend-to-OpenCSW-the-OpenSolaris-gdb-fork-child.patch GARCOMPILER = GNU -BUILD64 = 1 +BUILD64 = 1 + BUILD_DEP_PKGS += CSWgcc4ada BUILD_DEP_PKGS += CSWflex-new BUILD_DEP_PKGS += CSWexpect @@ -68,7 +69,48 @@ RUNTIME_DEP_PKGS += CSWlibncurses5 RUNTIME_DEP_PKGS += CSWlibpython2-6-1-0 RUNTIME_DEP_PKGS += CSWlibz1 +# this should be declared only for the 32 bit ISAs but I doubt that +# checkpkg can deal with this subtility +RUNTIME_DEP_PKGS += CSWpython +CHECKPKG_OVERRIDES_CSWgdb += file-with-bad-content|/usr/local|root/opt/csw/share/info/gdb.info +CHECKPKG_OVERRIDES_CSWgdb += file-with-bad-content|/usr/share|root/opt/csw/share/info/gdb.info + +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/include/ansidecl.h +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/include/bfd.h +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/include/bfdlink.h +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/include/dis-asm.h +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/include/symcat.h +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/info/bfd.info +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/info/configure.info +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/info/standards.info +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/da/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/de/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/es/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/es/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fi/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fi/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fr/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fr/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ga/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/id/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/id/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ja/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/nl/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/pt_BR/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ro/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ro/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ru/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/rw/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/sv/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/sv/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/tr/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/tr/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/vi/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/vi/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/zh_CN/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/zh_CN/LC_MESSAGES/opcodes.mo + include gar/category.mk PATH := /opt/csw/gnu:/opt/csw/libexec/flex-2.5.35/bin:$(PATH) 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 Jul 24 13:12:28 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 24 Jul 2012 11:12:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[18840] csw/mgar/pkg/perl/branches Message-ID: Revision: 18840 http://gar.svn.sourceforge.net/gar/?rev=18840&view=rev Author: bonivart Date: 2012-07-24 11:12:28 +0000 (Tue, 24 Jul 2012) Log Message: ----------- perl/branches/perl-5.10.1-12548: new branch for Perl 5.10.1 built on Solaris 10 Modified Paths: -------------- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile Added Paths: ----------- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/ Modified: csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile =================================================================== --- csw/mgar/pkg/perl/trunk/Makefile 2011-01-15 10:19:33 UTC (rev 12548) +++ csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 11:12:28 UTC (rev 18840) @@ -19,7 +19,8 @@ PACKAGES = CSWperl CSWperldoc ARCHALL_CSWperldoc = 1 -RUNTIME_DEP_PKGS_CSWperl = CSWbdb48 CSWgdbm +RUNTIME_DEP_PKGS_CSWperl = CSWbdb48 +RUNTIME_DEP_PKGS_CSWperl += CSWlibgdbm4 RUNTIME_DEP_PKGS_CSWperldoc = CSWperl INCOMPATIBLE_PKGS_CSWperl = CSWperlmods CSWpmdigest CSWpmi18nlangtags @@ -31,8 +32,12 @@ PATCHFILES += 0001-change-inc-based-on-rhel5-patch.patch CHECKPKG_OVERRIDES_CSWperldoc += surplus-dependency|CSWperl -CHECKPKG_OVERRIDES_CSWperl += surplus-dependency|CSWgdbm -CHECKPKG_OVERRIDES_CSWperl += soname-not-found|libgdbm.so.3|is|needed|by|opt/csw/lib/perl/5.10.1/auto/GDBM_File/GDBM_File.so +# Paths with /usr/local in examples and such +CHECKPKG_OVERRIDES_CSWperl += file-with-bad-content +CHECKPKG_OVERRIDES_CSWperldoc += file-with-bad-content +# Temporary due to collisions with pm-module-build +CHECKPKG_OVERRIDES_CSWperl += file-collision|/opt/csw/bin/config_data|CSWperl|CSWpm-module-build +CHECKPKG_OVERRIDES_CSWperldoc += file-collision # Core module updates # Not used at the moment, leave one as example @@ -84,7 +89,11 @@ CONFIGURE_ARGS += -Duseshrplib CONFIGURE_ARGS += -Dusesitecustomize CONFIGURE_ARGS += -Dusethreads -#CONFIGURE_ARGS += -Dusedtrace + +ifeq ($(shell uname -r), 5.10) + CONFIGURE_ARGS += -Dusedtrace +endif + CONFIGURE_ARGS += -Dvendorarch=$(libdir)/perl/csw CONFIGURE_ARGS += -Dvendorlib=$(datadir)/perl/csw CONFIGURE_ARGS += -Dvendorprefix=$(prefix) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Tue Jul 24 13:58:36 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 24 Jul 2012 11:58:36 +0000 Subject: [csw-devel] SF.net SVN: gar:[18841] csw/mgar/pkg/lang-python/xpra/trunk/Makefile Message-ID: Revision: 18841 http://gar.svn.sourceforge.net/gar/?rev=18841&view=rev Author: cgrzemba Date: 2012-07-24 11:58:36 +0000 (Tue, 24 Jul 2012) Log Message: ----------- lang-python/xpra/trunk: add runtime dependencies Modified Paths: -------------- csw/mgar/pkg/lang-python/xpra/trunk/Makefile Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 11:12:28 UTC (rev 18840) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 11:58:36 UTC (rev 18841) @@ -26,13 +26,33 @@ # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES # UPSTREAM_MASTER_SITES = -ARCHALL = 1 -BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel +BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel CSWpangodevel BUILD_DEP_PKGS += CSWlibxfixesdevel CSWlibxcompositedev CSWlibxdamagedevel CSWlibxrandrdevel BUILD_DEP_PKGS += CSWx11recordproto CSWlibxextdevel CSWx11fixesproto CSWx11compositeproto BUILD_DEP_PKGS += CSWx11damageproto CSWx11randrproto CSWcython CSWpython-dev BUILD_DEP_PKGS += CSWlibx264-dev CSWffmpeg-dev +REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/xposix/gui.py +REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/platform/client_extras_base.py +REINPLACE_WHEN_USRSHARE = postinstall +REINPLACE_USRLOCAL += $(libdir)/python/site-packages/xpra/xposix/gui.py +REINPLACE_WHEN_USRLOCAL = postinstall + +PACKAGE += CSWxpra + +RUNTIME_DEP_PKGS_CSWxpra += CSWpython +RUNTIME_DEP_PKGS_CSWxpra += CSWlibswscale2 CSWlibavcodec54 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibx11 CSWlibgio2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWpango CSWlibcairo2 CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxdamage CSWlibxcomposite +RUNTIME_DEP_PKGS_CSWxpra += CSWlibx264-125 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxfixes + +CHECKPKG_OVERRIDES_CSWxpra += pkginfo-description-not-starting-with-uppercase|screen|for|X +CHECKPKG_OVERRIDES_CSWxpra += pkgname-does-not-start-with-CSWpy- +CHECKPKG_OVERRIDES_CSWxpra += catalogname-does-not-start-with-py_ + + EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc CONFIGURE_SCRIPTS = 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 Jul 24 14:12:06 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 24 Jul 2012 12:12:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[18842] csw/mgar/pkg/perl/branches/perl-5.10.1-12548/ Makefile Message-ID: Revision: 18842 http://gar.svn.sourceforge.net/gar/?rev=18842&view=rev Author: bonivart Date: 2012-07-24 12:12:06 +0000 (Tue, 24 Jul 2012) Log Message: ----------- perl/branches/perl-5.10.1-12548: add platforms Modified Paths: -------------- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile Modified: csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile =================================================================== --- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 11:58:36 UTC (rev 18841) +++ csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 12:12:06 UTC (rev 18842) @@ -17,13 +17,17 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz -PACKAGES = CSWperl CSWperldoc -ARCHALL_CSWperldoc = 1 +PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 + +PACKAGES += CSWperl RUNTIME_DEP_PKGS_CSWperl = CSWbdb48 RUNTIME_DEP_PKGS_CSWperl += CSWlibgdbm4 -RUNTIME_DEP_PKGS_CSWperldoc = CSWperl INCOMPATIBLE_PKGS_CSWperl = CSWperlmods CSWpmdigest CSWpmi18nlangtags +PACKAGES += CSWperldoc +RUNTIME_DEP_PKGS_CSWperldoc = CSWperl +ARCHALL_CSWperldoc = 1 + SPKG_DESC_CSWperl = $(DESCRIPTION) SPKG_DESC_CSWperldoc = Perl documentation @@ -90,9 +94,9 @@ CONFIGURE_ARGS += -Dusesitecustomize CONFIGURE_ARGS += -Dusethreads -ifeq ($(shell uname -r), 5.10) - CONFIGURE_ARGS += -Dusedtrace -endif +#ifeq ($(shell uname -r), 5.10) +# CONFIGURE_ARGS += -Dusedtrace +#endif CONFIGURE_ARGS += -Dvendorarch=$(libdir)/perl/csw CONFIGURE_ARGS += -Dvendorlib=$(datadir)/perl/csw This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Tue Jul 24 14:24:31 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Tue, 24 Jul 2012 12:24:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[18843] csw/mgar/pkg/lang-python/xpra/trunk/Makefile Message-ID: Revision: 18843 http://gar.svn.sourceforge.net/gar/?rev=18843&view=rev Author: cgrzemba Date: 2012-07-24 12:24:31 +0000 (Tue, 24 Jul 2012) Log Message: ----------- lang-python/xpra/trunk: add rpath Modified Paths: -------------- csw/mgar/pkg/lang-python/xpra/trunk/Makefile Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 12:12:06 UTC (rev 18842) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 12:24:31 UTC (rev 18843) @@ -47,12 +47,23 @@ RUNTIME_DEP_PKGS_CSWxpra += CSWlibxdamage CSWlibxcomposite RUNTIME_DEP_PKGS_CSWxpra += CSWlibx264-125 RUNTIME_DEP_PKGS_CSWxpra += CSWlibxfixes +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgdk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgdk-pixbuf2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibfontconfig1 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibpython2-6-1-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibatk1-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgtk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxrandr +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxtst CHECKPKG_OVERRIDES_CSWxpra += pkginfo-description-not-starting-with-uppercase|screen|for|X CHECKPKG_OVERRIDES_CSWxpra += pkgname-does-not-start-with-CSWpy- CHECKPKG_OVERRIDES_CSWxpra += catalogname-does-not-start-with-py_ - EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc CONFIGURE_SCRIPTS = @@ -61,13 +72,14 @@ INSTALL_SCRIPTS = $(WORKSRC)/setup.py BUILD_ENV += PKG_CONFIG_PATH=/opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig -PYBUILD_CMD = build +PYBUILD_CMD = build_ext BUILD_ARGS += --without-vpx +BUILD_ARGS += --rpath=$(libdir):$(prefix)/X11/lib INSTALL_ENV += $(BUILD_ENV) INSTALL_ARGS += --root=$(DESTDIR) INSTALL_ARGS += --prefix=$(prefix) -INSTALL_ARGS += $(BUILD_ARGS) +INSTALL_ARGS += --without-vpx build-python: (cd $(WORKSRC); \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 24 16:27:03 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 24 Jul 2012 14:27:03 +0000 Subject: [csw-devel] SF.net SVN: gar:[18844] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 18844 http://gar.svn.sourceforge.net/gar/?rev=18844&view=rev Author: pfelecan Date: 2012-07-24 14:27:03 +0000 (Tue, 24 Jul 2012) Log Message: ----------- gdb/trunk: refined overrides and enhanced the exclusion list Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2012-07-24 12:24:31 UTC (rev 18843) +++ csw/mgar/pkg/gdb/trunk/Makefile 2012-07-24 14:27:03 UTC (rev 18844) @@ -85,6 +85,8 @@ EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/info/configure.info EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/info/standards.info EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/da/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/da/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/de/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/de/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/es/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/es/LC_MESSAGES/opcodes.mo @@ -92,16 +94,22 @@ EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fi/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fr/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/fr/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ga/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ga/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/id/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/id/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ja/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ja/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/nl/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/nl/LC_MESSAGES/opcodes.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/pt_BR/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/pt_BR/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ro/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ro/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ru/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/ru/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/rw/LC_MESSAGES/bfd.mo +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/rw/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/sv/LC_MESSAGES/bfd.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/sv/LC_MESSAGES/opcodes.mo EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/locale/tr/LC_MESSAGES/bfd.mo This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Tue Jul 24 16:39:46 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Tue, 24 Jul 2012 14:39:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18845] csw/mgar/pkg Message-ID: Revision: 18845 http://gar.svn.sourceforge.net/gar/?rev=18845&view=rev Author: pfelecan Date: 2012-07-24 14:39:46 +0000 (Tue, 24 Jul 2012) Log Message: ----------- albumshaper/trunk: migrated from a private recipe to a GAR based recipe Added Paths: ----------- csw/mgar/pkg/albumshaper/ csw/mgar/pkg/albumshaper/Makefile csw/mgar/pkg/albumshaper/branches/ csw/mgar/pkg/albumshaper/tags/ csw/mgar/pkg/albumshaper/trunk/ csw/mgar/pkg/albumshaper/trunk/Makefile csw/mgar/pkg/albumshaper/trunk/checksums csw/mgar/pkg/albumshaper/trunk/files/ csw/mgar/pkg/albumshaper/trunk/files/0001-Adapt-OpenCSW.patch csw/mgar/pkg/albumshaper/trunk/files/0002-Fix-extra-qualification.patch csw/mgar/pkg/albumshaper/trunk/files/COPYING Added: csw/mgar/pkg/albumshaper/Makefile =================================================================== --- csw/mgar/pkg/albumshaper/Makefile (rev 0) +++ csw/mgar/pkg/albumshaper/Makefile 2012-07-24 14:39:46 UTC (rev 18845) @@ -0,0 +1,2 @@ +%: + $(MAKE) -C trunk $* Property changes on: csw/mgar/pkg/albumshaper/trunk ___________________________________________________________________ Added: svn:ignore + work Added: csw/mgar/pkg/albumshaper/trunk/Makefile =================================================================== --- csw/mgar/pkg/albumshaper/trunk/Makefile (rev 0) +++ csw/mgar/pkg/albumshaper/trunk/Makefile 2012-07-24 14:39:46 UTC (rev 18845) @@ -0,0 +1,84 @@ +# $Id$ + +NAME = albumshaper +VERSION = 2.1 +GARTYPE = v2 +CATEGORIES = apps + +DESCRIPTION = Photo album creator and photo manipulator +define BLURB + Album Shaper strives to be the most friendly, easy to use, open source + application for organizing, annotating, framing, enhancing, stylizing, and + sharing your digital photos. Album Shaper embraces open formats like XML, + JPEG, and XSLT, while supporting Windows, Mac OS X, and Unix users who speak + a multitude of languages around the world. +endef + +DISTNAME = $(NAME)_$(VERSION) +WORKSRC = $(WORKDIR)/$(DISTNAME)_src +PATCHDIR = $(WORKSRC) +MASTER_SITES = $(SF_MIRRORS) +DISTFILES = $(DISTNAME).tar.bz2 +DISTFILES += COPYING +PATCHFILES += 0001-Adapt-OpenCSW.patch +PATCHFILES += 0002-Fix-extra-qualification.patch + +BUILD_DEP_PKGS += CSWlibiconv-dev +BUILD_DEP_PKGS += CSWlibjpeg-dev +BUILD_DEP_PKGS += CSWlibxml2-dev +BUILD_DEP_PKGS += CSWlibxslt-dev +BUILD_DEP_PKGS += CSWlibz-dev +BUILD_DEP_PKGS += CSWqt4-gxx-dev +BUILD_DEP_PKGS += CSWqtgcc + +GARCOMPILER = GCC3 + +CONFIGURE_SCRIPTS = custom +BUILD_SCRIPTS = custom +TEST_SCRIPTS = +INSTALL_SCRIPTS = custom + +PACKAGES += CSWalbumshaper-common +CATALOGNAME_CSWalbumshaper-common = albumshaper_common +SPKG_DESC_CSWalbumshaper-common += $(DESCRIPTION), architecture neutral components +ARCHALL_CSWalbumshaper-common = 1 +OBSOLETED_BY_CSWalbumshaper-common = CSWalbumshapercommon +CATALOGNAME_CSWalbumshapercommon = albumshaper_common_stub + +PACKAGES += CSWalbumshaper +CATALOGNAME_CSWalbumshaper = albumshaper +SPKG_DESC_CSWalbumshaper += $(DESCRIPTION) +PKGFILES_CSWalbumshaper += /opt/csw/bin/AlbumShaper +PKGFILES_CSWalbumshaper += /opt/csw/bin/AlbumShaper.bin +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWalbumshaper-common +CHECKPKG_OVERRIDES_CSWalbumshaper += surplus-dependency|CSWalbumshaper-common +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibiconv2 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibjpeg7 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibxslt1 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibz1 +RUNTIME_DEP_PKGS_CSWalbumshaper += CSWqtgcc + +include gar/category.mk + +configure-custom: + cd $(WORKSRC) && /opt/csw/kde-gcc/bin/qmake -spec solaris-g++ AlbumShaper.pro + $(MAKECOOKIE) + +build-custom: + QTDIR=/opt/csw/kde-gcc \ + LD_OPTIONS="-L/opt/csw/gcc3/lib -R/opt/csw/kde-gcc/lib -L/opt/csw/kde-gcc/lib -R/opt/csw/lib -L/opt/csw/lib " \ + $(MAKE) -C $(WORKSRC) + $(MAKECOOKIE) + +install-custom: + QTDIR=/opt/csw/kde-gcc \ + INSTALL_ROOT="$(DESTDIR)" \ + $(MAKE) -C $(WORKSRC) install + $(MAKECOOKIE) + +# this is private and not available publicly +mydependencies: + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done Property changes on: csw/mgar/pkg/albumshaper/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/albumshaper/trunk/checksums =================================================================== --- csw/mgar/pkg/albumshaper/trunk/checksums (rev 0) +++ csw/mgar/pkg/albumshaper/trunk/checksums 2012-07-24 14:39:46 UTC (rev 18845) @@ -0,0 +1 @@ +242c260c50fd774f2301dba66deb668b albumshaper_2.1.tar.bz2 Added: csw/mgar/pkg/albumshaper/trunk/files/0001-Adapt-OpenCSW.patch =================================================================== --- csw/mgar/pkg/albumshaper/trunk/files/0001-Adapt-OpenCSW.patch (rev 0) +++ csw/mgar/pkg/albumshaper/trunk/files/0001-Adapt-OpenCSW.patch 2012-07-24 14:39:46 UTC (rev 18845) @@ -0,0 +1,50 @@ +From a14b8a26d4a3b4b1ac214b3c8215b2e8fca7c7d5 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 24 Jul 2012 14:17:04 +0200 +Subject: [PATCH] Adapt OpenCSW + +--- + AlbumShaper.pro | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/AlbumShaper.pro b/AlbumShaper.pro +index 305e4e6..54ecd02 100644 +--- a/AlbumShaper.pro ++++ b/AlbumShaper.pro +@@ -20,13 +20,13 @@ + #------------------------------------------------------- + win32:BIN_DIR = AlbumShaper.win + mac:BUNDLE_DIR = build/AlbumShaper.app +-!mac:unix:BIN_DIR = /usr/bin ++!mac:unix:BIN_DIR = /opt/csw/bin + + #Directory translations, button icons, etc will be installed + #------------------------------------------------------- + win32:DATA_DIR = AlbumShaper.win + mac:DATA_DIR = $${BUNDLE_DIR}/Contents/Resources +-!mac:unix:DATA_DIR = /usr/share/albumshaper ++!mac:unix:DATA_DIR = /opt/csw/share/albumshaper + + #=========================================================================================== + #=========================================================================================== +@@ -183,7 +183,7 @@ contains(CONFIG, static):contains( CONFIG, debug):CONFIG -= static + #if UPX flag was set then setup running upx compression when releasing the binary + !mac:unix:release { + contains( CONFIG, useUpxCompression ) { +- system(which upx > /dev/null && { exit 0; }):QMAKE_POST_LINK = upx $(TARGET) ++ system(type upx > /dev/null && { exit 0; }):QMAKE_POST_LINK = upx $(TARGET) + } + } + +@@ -272,7 +272,7 @@ mac:RC_FILE = resources/macx/AlbumShaper.icns + + #--------- Launcher Script (Linux/FreeBSD) ------------ + !mac:unix:scripts.path = $${BIN_DIR} +-!mac:unix:scripts.commands = cp -f bin/AlbumShaper $${BIN_DIR}/AlbumShaper; ++!mac:unix:scripts.commands = cp -f bin/AlbumShaper $(INSTALL_ROOT)$${BIN_DIR}/AlbumShaper; + + + #=========================================================================================== +-- +1.7.10.3 + Added: csw/mgar/pkg/albumshaper/trunk/files/0002-Fix-extra-qualification.patch =================================================================== --- csw/mgar/pkg/albumshaper/trunk/files/0002-Fix-extra-qualification.patch (rev 0) +++ csw/mgar/pkg/albumshaper/trunk/files/0002-Fix-extra-qualification.patch 2012-07-24 14:39:46 UTC (rev 18845) @@ -0,0 +1,25 @@ +From 56a10ce25c8625f37ba6e94ee83c0c1e3bae5290 Mon Sep 17 00:00:00 2001 +From: Peter Felecan +Date: Tue, 24 Jul 2012 15:11:01 +0200 +Subject: [PATCH] Fix extra qualification + +--- + src/backend/album.h | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/backend/album.h b/src/backend/album.h +index 445cf50..05e8caf 100644 +--- a/src/backend/album.h ++++ b/src/backend/album.h +@@ -113,7 +113,7 @@ public: + int getCreationDay(); + + ///Updates the creation date to today's date +- void Album::updateCreationDate(); ++ void updateCreationDate(); + + ///Updates the modification date to today's date + void updateModificationDate(); +-- +1.7.10.3 + Added: csw/mgar/pkg/albumshaper/trunk/files/COPYING =================================================================== --- csw/mgar/pkg/albumshaper/trunk/files/COPYING (rev 0) +++ csw/mgar/pkg/albumshaper/trunk/files/COPYING 2012-07-24 14:39:46 UTC (rev 18845) @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 Library 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 bonivart at users.sourceforge.net Tue Jul 24 17:12:47 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 24 Jul 2012 15:12:47 +0000 Subject: [csw-devel] SF.net SVN: gar:[18846] csw/mgar/pkg/perl/branches/perl-5.10.1-12548/ Makefile Message-ID: Revision: 18846 http://gar.svn.sourceforge.net/gar/?rev=18846&view=rev Author: bonivart Date: 2012-07-24 15:12:47 +0000 (Tue, 24 Jul 2012) Log Message: ----------- perl/branches/perl-5.10.1-12548: strip files from Module::Build and Parse::CPAN::Meta Modified Paths: -------------- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile Modified: csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile =================================================================== --- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 14:39:46 UTC (rev 18845) +++ csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 15:12:47 UTC (rev 18846) @@ -1,3 +1,6 @@ +# NOTES +# - Files from Module::Build and Parse::CPAN::Meta have been stripped out to +# avoid collisions with the separate packages of those two. NAME = perl VERSION = 5.10.1 CATEGORIES = lang @@ -17,6 +20,7 @@ DISTFILES = $(NAME)-$(VERSION).tar.gz +PACKAGING_PLATFORMS = solaris9-sparc solaris9-i386 PACKAGING_PLATFORMS += solaris10-sparc solaris10-i386 PACKAGES += CSWperl @@ -39,9 +43,6 @@ # Paths with /usr/local in examples and such CHECKPKG_OVERRIDES_CSWperl += file-with-bad-content CHECKPKG_OVERRIDES_CSWperldoc += file-with-bad-content -# Temporary due to collisions with pm-module-build -CHECKPKG_OVERRIDES_CSWperl += file-collision|/opt/csw/bin/config_data|CSWperl|CSWpm-module-build -CHECKPKG_OVERRIDES_CSWperldoc += file-collision # Core module updates # Not used at the moment, leave one as example @@ -117,7 +118,16 @@ EXTRA_LDFLAGS = -L$(libdir) -lperl -EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod +EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod + +# Remove files from CSWpm-module-build +EXTRA_MERGE_EXCLUDE_FILES += .*\/man\/man.\/Module::Build.* +EXTRA_MERGE_EXCLUDE_FILES += \/opt\/csw\/bin\/config_data +EXTRA_MERGE_EXCLUDE_FILES += \/opt\/csw\/share\/man\/man1\/config_data.1 +# Remove files from CSWpm-parse-cpan-meta +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/perl/csw/Parse/CPAN/Meta.pm +EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/man/man3/Parse::CPAN::Meta.3perl + PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* # The diagnostics.pm module needs the podfile to output its messages. 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 Jul 24 18:58:05 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 24 Jul 2012 16:58:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[18847] csw/mgar/pkg/perl/branches/perl-5.10.1-12548/ Makefile Message-ID: Revision: 18847 http://gar.svn.sourceforge.net/gar/?rev=18847&view=rev Author: bonivart Date: 2012-07-24 16:58:05 +0000 (Tue, 24 Jul 2012) Log Message: ----------- perl/branches/perl-5.10.1-12548: fix excludes Modified Paths: -------------- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile Modified: csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile =================================================================== --- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 15:12:47 UTC (rev 18846) +++ csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 16:58:05 UTC (rev 18847) @@ -122,11 +122,11 @@ # Remove files from CSWpm-module-build EXTRA_MERGE_EXCLUDE_FILES += .*\/man\/man.\/Module::Build.* -EXTRA_MERGE_EXCLUDE_FILES += \/opt\/csw\/bin\/config_data -EXTRA_MERGE_EXCLUDE_FILES += \/opt\/csw\/share\/man\/man1\/config_data.1 +EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/bin\/config_data +EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/share\/man\/man1\/config_data.1 # Remove files from CSWpm-parse-cpan-meta -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/perl/csw/Parse/CPAN/Meta.pm -EXTRA_MERGE_EXCLUDE_FILES += /opt/csw/share/man/man3/Parse::CPAN::Meta.3perl +EXTRA_MERGE_EXCLUDE_FILES += .*\/Parse\/CPAN\/Meta.pm +EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/share\/man\/man3\/Parse::CPAN::Meta.3perl PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* 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 Jul 24 21:21:48 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 24 Jul 2012 19:21:48 +0000 Subject: [csw-devel] SF.net SVN: gar:[18848] csw/mgar/pkg/perl/branches/perl-5.10.1-12548/ Makefile Message-ID: Revision: 18848 http://gar.svn.sourceforge.net/gar/?rev=18848&view=rev Author: bonivart Date: 2012-07-24 19:21:47 +0000 (Tue, 24 Jul 2012) Log Message: ----------- perl/branches/perl-5.10.1-12548: fix more excludes Modified Paths: -------------- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile Modified: csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile =================================================================== --- csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 16:58:05 UTC (rev 18847) +++ csw/mgar/pkg/perl/branches/perl-5.10.1-12548/Makefile 2012-07-24 19:21:47 UTC (rev 18848) @@ -121,12 +121,14 @@ EXTRA_MERGE_EXCLUDE_FILES = .*\/perllocal.pod # Remove files from CSWpm-module-build +EXTRA_MERGE_EXCLUDE_FILES += .*\/Module\/Build\.pm +EXTRA_MERGE_EXCLUDE_FILES += .*\/Module\/Build\/.* EXTRA_MERGE_EXCLUDE_FILES += .*\/man\/man.\/Module::Build.* EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/bin\/config_data -EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/share\/man\/man1\/config_data.1 +EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/share\/man\/man1\/config_data\.1 # Remove files from CSWpm-parse-cpan-meta -EXTRA_MERGE_EXCLUDE_FILES += .*\/Parse\/CPAN\/Meta.pm -EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/share\/man\/man3\/Parse::CPAN::Meta.3perl +EXTRA_MERGE_EXCLUDE_FILES += .*\/Parse\/CPAN\/Meta\.pm +EXTRA_MERGE_EXCLUDE_FILES += .*\/opt\/csw\/share\/man\/man3\/Parse::CPAN::Meta\.3perl PKGFILES_CSWperldoc = .*\/pod\/.*\.pod .*\/man\/man.\/.* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From maciej at opencsw.org Tue Jul 24 21:56:28 2012 From: maciej at opencsw.org (=?UTF-8?Q?Maciej_=28Matchek=29_Blizi=C5=84ski?=) Date: Tue, 24 Jul 2012 20:56:28 +0100 Subject: [csw-devel] SF.net SVN: gar:[18843] csw/mgar/pkg/lang-python/xpra/trunk/Makefile In-Reply-To: References: Message-ID: 2012/7/24 : > +BUILD_ARGS += --rpath=$(libdir):$(prefix)/X11/lib I think we are going away from the custom X11 libraries. When we build on Solaris 10, the X headers are complete enough to work. From maciej at opencsw.org Tue Jul 24 21:58:21 2012 From: maciej at opencsw.org (=?UTF-8?Q?Maciej_=28Matchek=29_Blizi=C5=84ski?=) Date: Tue, 24 Jul 2012 20:58:21 +0100 Subject: [csw-devel] SF.net SVN: gar:[18841] csw/mgar/pkg/lang-python/xpra/trunk/Makefile In-Reply-To: References: Message-ID: 2012/7/24 : > Revision: 18841 > http://gar.svn.sourceforge.net/gar/?rev=18841&view=rev > Author: cgrzemba > Date: 2012-07-24 11:58:36 +0000 (Tue, 24 Jul 2012) > Log Message: > ----------- > lang-python/xpra/trunk: add runtime dependencies > > Modified Paths: > -------------- > csw/mgar/pkg/lang-python/xpra/trunk/Makefile > > Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile > =================================================================== > --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 11:12:28 UTC (rev 18840) > +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-24 11:58:36 UTC (rev 18841) > @@ -26,13 +26,33 @@ > # uncomment the next line. Otherwise it is set by default to the value of MASTER_SITES > # UPSTREAM_MASTER_SITES = > > -ARCHALL = 1 > -BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel > +BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel CSWpangodevel I would generally keep one dependency per line. This way the diffs are easier to review. > BUILD_DEP_PKGS += CSWlibxfixesdevel CSWlibxcompositedev CSWlibxdamagedevel CSWlibxrandrdevel > BUILD_DEP_PKGS += CSWx11recordproto CSWlibxextdevel CSWx11fixesproto CSWx11compositeproto > BUILD_DEP_PKGS += CSWx11damageproto CSWx11randrproto CSWcython CSWpython-dev > BUILD_DEP_PKGS += CSWlibx264-dev CSWffmpeg-dev > > +REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/xposix/gui.py > +REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/platform/client_extras_base.py > +REINPLACE_WHEN_USRSHARE = postinstall > +REINPLACE_USRLOCAL += $(libdir)/python/site-packages/xpra/xposix/gui.py > +REINPLACE_WHEN_USRLOCAL = postinstall > + > +PACKAGE += CSWxpra > + > +RUNTIME_DEP_PKGS_CSWxpra += CSWpython > +RUNTIME_DEP_PKGS_CSWxpra += CSWlibswscale2 CSWlibavcodec54 Same goes here. If you keep one dep per line, it's easier to review. > +RUNTIME_DEP_PKGS_CSWxpra += CSWlibx11 I think that we don't want to depend on this library. > CSWlibgio2-0-0 > +RUNTIME_DEP_PKGS_CSWxpra += CSWpango CSWlibcairo2 CSWlibfreetype6 > +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxdamage CSWlibxcomposite > +RUNTIME_DEP_PKGS_CSWxpra += CSWlibx264-125 > +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxfixes > + > +CHECKPKG_OVERRIDES_CSWxpra += pkginfo-description-not-starting-with-uppercase|screen|for|X > +CHECKPKG_OVERRIDES_CSWxpra += pkgname-does-not-start-with-CSWpy- > +CHECKPKG_OVERRIDES_CSWxpra += catalogname-does-not-start-with-py_ > + > + > EXTRA_MERGE_EXCLUDE_FILES = .*\.pyo .*\.pyc > > CONFIGURE_SCRIPTS = > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > > _______________________________________________ > devel mailing list > devel at lists.opencsw.org > https://lists.opencsw.org/mailman/listinfo/devel From bonivart at users.sourceforge.net Tue Jul 24 22:30:04 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Tue, 24 Jul 2012 20:30:04 +0000 Subject: [csw-devel] SF.net SVN: gar:[18849] csw/mgar/pkg/dhcp/trunk Message-ID: Revision: 18849 http://gar.svn.sourceforge.net/gar/?rev=18849&view=rev Author: bonivart Date: 2012-07-24 20:30:04 +0000 (Tue, 24 Jul 2012) Log Message: ----------- dhcp/trunk: update to 4.2.4-P1 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 2012-07-24 19:21:47 UTC (rev 18848) +++ csw/mgar/pkg/dhcp/trunk/Makefile 2012-07-24 20:30:04 UTC (rev 18849) @@ -1,10 +1,13 @@ NAME = dhcp VERSION = 4.2.4 -#RELEASE = P2 -#DISTVERSION = $(VERSION)-$(RELEASE) -#SPKG_VERSION = $(VERSION)$(RELEASE) -#DISTNAME = $(NAME)-$(VERSION)-$(RELEASE) -#WORKSRC = $(WORKDIR)/$(DISTNAME) + +# Enable these for Px-releases +RELEASE = P1 +DISTVERSION = $(VERSION)-$(RELEASE) +SPKG_VERSION = $(VERSION)$(RELEASE) +DISTNAME = $(NAME)-$(VERSION)-$(RELEASE) +WORKSRC = $(WORKDIR)/$(DISTNAME) + CATEGORIES = net GARTYPE = v2 @@ -16,8 +19,9 @@ suitable for use in high-volume and high-reliability applications. endef -MASTER_SITES = http://ftp.isc.org/isc/dhcp/$(VERSION)/ -#MASTER_SITES = http://ftp.isc.org/isc/dhcp/$(DISTVERSION)/ +# Toggle between these for normal/Px-releases +#MASTER_SITES = http://ftp.isc.org/isc/dhcp/$(VERSION)/ +MASTER_SITES = http://ftp.isc.org/isc/dhcp/$(DISTVERSION)/ DISTFILES = $(NAME)-$(VERSION).tar.gz DISTFILES = $(DISTNAME).tar.gz Modified: csw/mgar/pkg/dhcp/trunk/checksums =================================================================== --- csw/mgar/pkg/dhcp/trunk/checksums 2012-07-24 19:21:47 UTC (rev 18848) +++ csw/mgar/pkg/dhcp/trunk/checksums 2012-07-24 20:30:04 UTC (rev 18849) @@ -1 +1 @@ -c244cefe663d43100af757d8ff625a1f dhcp-4.2.4.tar.gz +0ca7181024651f6323951d5498c8020b dhcp-4.2.4-P1.tar.gz 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 Jul 25 05:06:59 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Wed, 25 Jul 2012 03:06:59 +0000 Subject: [csw-devel] SF.net SVN: gar:[18850] csw/mgar/pkg/php5/trunk/Makefile Message-ID: Revision: 18850 http://gar.svn.sourceforge.net/gar/?rev=18850&view=rev Author: bdwalton Date: 2012-07-25 03:06:59 +0000 (Wed, 25 Jul 2012) Log Message: ----------- php5/trunk: ensure that php.ini has a ctype.so extension ready for activation during php5_ctype installation; mantis 4977 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2012-07-24 20:30:04 UTC (rev 18849) +++ csw/mgar/pkg/php5/trunk/Makefile 2012-07-25 03:06:59 UTC (rev 18850) @@ -384,4 +384,7 @@ @echo " ==> Fixing php.ini: adding loadable session.so support" @( cd $(PKGROOT)/$(sysconfdir)/; \ perl -pi -e 's/extension=bz2.so/extension=session.so\n;extension=bz2.so/' php.ini.CSW; ) + @( cd $(PKGROOT)/$(sysconfdir)/; \ + perl -pi -e 's/extension=bz2.so/extension=ctype.so\n;extension=bz2.so/' php.ini.CSW; ) + @echo " ==> Fixing php.ini: adding loadable ctype.so support" @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 25 08:45:28 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 25 Jul 2012 06:45:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[18851] csw/mgar/pkg/albumshaper/trunk/Makefile Message-ID: Revision: 18851 http://gar.svn.sourceforge.net/gar/?rev=18851&view=rev Author: pfelecan Date: 2012-07-25 06:45:28 +0000 (Wed, 25 Jul 2012) Log Message: ----------- albumshaper/trunk: limit availability of new packages to Solaris 10 Modified Paths: -------------- csw/mgar/pkg/albumshaper/trunk/Makefile Modified: csw/mgar/pkg/albumshaper/trunk/Makefile =================================================================== --- csw/mgar/pkg/albumshaper/trunk/Makefile 2012-07-25 03:06:59 UTC (rev 18850) +++ csw/mgar/pkg/albumshaper/trunk/Makefile 2012-07-25 06:45:28 UTC (rev 18851) @@ -38,6 +38,9 @@ TEST_SCRIPTS = INSTALL_SCRIPTS = custom +PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + PACKAGES += CSWalbumshaper-common CATALOGNAME_CSWalbumshaper-common = albumshaper_common SPKG_DESC_CSWalbumshaper-common += $(DESCRIPTION), architecture neutral components This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Wed Jul 25 09:12:50 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Wed, 25 Jul 2012 07:12:50 +0000 Subject: [csw-devel] SF.net SVN: gar:[18852] csw/mgar/pkg/albumshaper/trunk/Makefile Message-ID: Revision: 18852 http://gar.svn.sourceforge.net/gar/?rev=18852&view=rev Author: pfelecan Date: 2012-07-25 07:12:50 +0000 (Wed, 25 Jul 2012) Log Message: ----------- albumshaper/trunk: verifyed and validated overrides Modified Paths: -------------- csw/mgar/pkg/albumshaper/trunk/Makefile Modified: csw/mgar/pkg/albumshaper/trunk/Makefile =================================================================== --- csw/mgar/pkg/albumshaper/trunk/Makefile 2012-07-25 06:45:28 UTC (rev 18851) +++ csw/mgar/pkg/albumshaper/trunk/Makefile 2012-07-25 07:12:50 UTC (rev 18852) @@ -63,6 +63,7 @@ RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibxslt1 RUNTIME_DEP_PKGS_CSWalbumshaper += CSWlibz1 RUNTIME_DEP_PKGS_CSWalbumshaper += CSWqtgcc +CHECKPKG_OVERRIDES_CSWalbumshaper-common += file-with-bad-content|/usr/local|root/opt/csw/share/albumshaper/text/history.html 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 Wed Jul 25 10:49:52 2012 From: bonivart at users.sourceforge.net (bonivart at users.sourceforge.net) Date: Wed, 25 Jul 2012 08:49:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18853] csw/mgar/pkg/bind/trunk Message-ID: Revision: 18853 http://gar.svn.sourceforge.net/gar/?rev=18853&view=rev Author: bonivart Date: 2012-07-25 08:49:51 +0000 (Wed, 25 Jul 2012) Log Message: ----------- bind/trunk: update to 9.8.3-P2 Modified Paths: -------------- csw/mgar/pkg/bind/trunk/Makefile csw/mgar/pkg/bind/trunk/checksums Modified: csw/mgar/pkg/bind/trunk/Makefile =================================================================== --- csw/mgar/pkg/bind/trunk/Makefile 2012-07-25 07:12:50 UTC (rev 18852) +++ csw/mgar/pkg/bind/trunk/Makefile 2012-07-25 08:49:51 UTC (rev 18853) @@ -9,7 +9,7 @@ # Enable these for Px-releases #RELEASE = rc2 -RELEASE = P1 +RELEASE = P2 DISTVERSION = $(VERSION)-$(RELEASE) SPKG_VERSION = $(VERSION)$(RELEASE) DISTNAME = $(NAME)-$(VERSION)-$(RELEASE) @@ -43,7 +43,7 @@ RUNTIME_DEP_PKGS_CSWbind += CSWlibz1 RUNTIME_DEP_PKGS_CSWbind += CSWlibxml2-2 RUNTIME_DEP_PKGS_CSWbind += CSWlibiconv2 -RUNTIME_DEP_PKGS_CSWbind += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWbind += CSWlibssl0-9-8 RUNTIME_DEP_PKGS_CSWbind += CSWliblber2-4-2 RUNTIME_DEP_PKGS_CSWbind += CSWlibldap2-4-2 @@ -59,7 +59,7 @@ RUNTIME_DEP_PKGS_CSWlibbind = CSWlibiconv2 RUNTIME_DEP_PKGS_CSWlibbind += CSWlibz1 RUNTIME_DEP_PKGS_CSWlibbind += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWlibbind += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWlibbind += CSWlibssl0-9-8 PACKAGES += CSWbindutils CATALOGNAME_CSWbindutils = bind_utils @@ -68,7 +68,7 @@ RUNTIME_DEP_PKGS_CSWbindutils += CSWlibiconv2 RUNTIME_DEP_PKGS_CSWbindutils += CSWlibz1 RUNTIME_DEP_PKGS_CSWbindutils += CSWlibxml2-2 -RUNTIME_DEP_PKGS_CSWbindutils += CSWlibssl1-0-0 +RUNTIME_DEP_PKGS_CSWbindutils += CSWlibssl0-9-8 PACKAGES += CSWbindchroot CATALOGNAME_CSWbindchroot = bind_chroot @@ -121,6 +121,7 @@ CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libisccc.so.80.0.1|soname=libisccc.so.80|pkgname=CSWlibbind|expected=CSWlibisccc80 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/libisccfg.so.82.0.2|soname=libisccfg.so.82|pkgname=CSWlibbind|expected=CSWlibisccfg82 CHECKPKG_OVERRIDES_CSWlibbind += shared-lib-pkgname-mismatch|file=opt/csw/lib/liblwres.so.80.0.2|soname=liblwres.so.80|pkgname=CSWlibbind|expected=CSWliblwres80 + include gar/category.mk DOCLIST = README.CSW db.127.0.0 db.localhost named.conf named.root rndc.key Modified: csw/mgar/pkg/bind/trunk/checksums =================================================================== --- csw/mgar/pkg/bind/trunk/checksums 2012-07-25 07:12:50 UTC (rev 18852) +++ csw/mgar/pkg/bind/trunk/checksums 2012-07-25 08:49:51 UTC (rev 18853) @@ -1 +1 @@ -2e84a3c5fa5f23718fff87e47c1fceb0 bind-9.8.3-P1.tar.gz +90217a82d08e7d2513d4d9f3fa32a517 bind-9.8.3-P2.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From dmichelsen at users.sourceforge.net Wed Jul 25 13:53:00 2012 From: dmichelsen at users.sourceforge.net (dmichelsen at users.sourceforge.net) Date: Wed, 25 Jul 2012 11:53:00 +0000 Subject: [csw-devel] SF.net SVN: gar:[18854] csw/mgar/pkg/lang-python/xpra/trunk/Makefile Message-ID: Revision: 18854 http://gar.svn.sourceforge.net/gar/?rev=18854&view=rev Author: dmichelsen Date: 2012-07-25 11:53:00 +0000 (Wed, 25 Jul 2012) Log Message: ----------- lang-python/xpra/trunk: Reorder rule, minor fixes Modified Paths: -------------- csw/mgar/pkg/lang-python/xpra/trunk/Makefile Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-25 08:49:51 UTC (rev 18853) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-25 11:53:00 UTC (rev 18854) @@ -6,7 +6,7 @@ GARTYPE = v2 CATEGORIES = utils -DESCRIPTION = screen for X +DESCRIPTION = Screen for X define BLURB Xpra is 'screen for X': it allows you to run X programs, usually on a remote host, direct their display to your local machine, and then to disconnect from these programs and reconnect from the same or another machine, without losing any state. It gives you remote access to individual applications. Xpra is "rootless" or "seamless": programs you run under it show up on your desktop as regular programs, managed by your regular window manager. @@ -17,15 +17,6 @@ MASTER_SITES = http://xpra.org/src/ DISTFILES = $(DISTNAME).tar.bz2 -# File name regex to get notifications about upstream software releases -# NOTE: Use this only if the automatic regex creation -# does not work for your package -# UFILES_REGEX = $(NAME)-(\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 = - BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel CSWpangodevel BUILD_DEP_PKGS += CSWlibxfixesdevel CSWlibxcompositedev CSWlibxdamagedevel CSWlibxrandrdevel BUILD_DEP_PKGS += CSWx11recordproto CSWlibxextdevel CSWx11fixesproto CSWx11compositeproto @@ -60,7 +51,6 @@ RUNTIME_DEP_PKGS_CSWxpra += CSWlibxrandr RUNTIME_DEP_PKGS_CSWxpra += CSWlibxtst -CHECKPKG_OVERRIDES_CSWxpra += pkginfo-description-not-starting-with-uppercase|screen|for|X CHECKPKG_OVERRIDES_CSWxpra += pkgname-does-not-start-with-CSWpy- CHECKPKG_OVERRIDES_CSWxpra += catalogname-does-not-start-with-py_ @@ -81,11 +71,11 @@ INSTALL_ARGS += --prefix=$(prefix) INSTALL_ARGS += --without-vpx +include gar/category.mk + build-python: (cd $(WORKSRC); \ python make_constants_pxi.py wimpiggy/lowlevel/constants.txt wimpiggy/lowlevel/constants.pxi; \ $(BUILD_ENV) python setup.py $(PYBUILD_CMD) $(BUILD_ARGS)) $(MAKECOOKIE) -include gar/category.mk - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Wed Jul 25 20:42:05 2012 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Wed, 25 Jul 2012 18:42:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[18855] csw/mgar/pkg/tor/trunk Message-ID: Revision: 18855 http://gar.svn.sourceforge.net/gar/?rev=18855&view=rev Author: jake_goerzen Date: 2012-07-25 18:42:04 +0000 (Wed, 25 Jul 2012) Log Message: ----------- tor: update recipe to latest stable release of tor Modified Paths: -------------- csw/mgar/pkg/tor/trunk/Makefile csw/mgar/pkg/tor/trunk/checksums Modified: csw/mgar/pkg/tor/trunk/Makefile =================================================================== --- csw/mgar/pkg/tor/trunk/Makefile 2012-07-25 11:53:00 UTC (rev 18854) +++ csw/mgar/pkg/tor/trunk/Makefile 2012-07-25 18:42:04 UTC (rev 18855) @@ -1,6 +1,6 @@ # $Id$ NAME = tor -VERSION = 0.2.1.28 +VERSION = 0.2.2.37 CATEGORIES = net GARTYPE = v2 @@ -17,9 +17,9 @@ VENDOR_URL = http://www.torproject.org LICENSE = LICENSE -RUNTIME_DEP_PKGS_CSWtor += CSWosslrt RUNTIME_DEP_PKGS_CSWtor += CSWlibevent2-0-5 -RUNTIME_DEP_PKGS_CSWtor += CSWzlib +RUNTIME_DEP_PKGS_CSWtor += CSWlibssl0-9-8 +RUNTIME_DEP_PKGS_CSWtor += CSWlibz1 sysconfdir = /etc/opt/csw CONFIGURE_ARGS = $(DIRPATHS) @@ -32,11 +32,4 @@ MIGRATE_FILES += tor/tor-tsocks.conf MIGRATE_FILES += tor/torrc -# New libevent has not been released -CHECKPKG_OVERRIDES_CSWtor += soname-not-found|libevent-2.0.so.5|is|needed|by|opt/csw/bin/tor -CHECKPKG_OVERRIDES_CSWtor += soname-not-found|libevent-2.0.so.5|is|needed|by|opt/csw/bin/tor-resolve -CHECKPKG_OVERRIDES_CSWtor += soname-not-found|libevent-2.0.so.5|is|needed|by|opt/csw/bin/tor-gencert -CHECKPKG_OVERRIDES_CSWtor += unidentified-dependency|CSWlibevent2-0-5 -CHECKPKG_OVERRIDES_CSWtor += surplus-dependency|CSWlibevent2-0-5 - include gar/category.mk Modified: csw/mgar/pkg/tor/trunk/checksums =================================================================== --- csw/mgar/pkg/tor/trunk/checksums 2012-07-25 11:53:00 UTC (rev 18854) +++ csw/mgar/pkg/tor/trunk/checksums 2012-07-25 18:42:04 UTC (rev 18855) @@ -1 +1 @@ -11e8384414623b50fe50ba7da85893db tor-0.2.1.28.tar.gz +5aafdca4fb6af6e12b503d32b03f14a7 tor-0.2.2.37.tar.gz 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 Jul 25 22:03:08 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Wed, 25 Jul 2012 20:03:08 +0000 Subject: [csw-devel] SF.net SVN: gar:[18856] csw/mgar/pkg/php5/trunk/Makefile Message-ID: Revision: 18856 http://gar.svn.sourceforge.net/gar/?rev=18856&view=rev Author: bdwalton Date: 2012-07-25 20:03:08 +0000 (Wed, 25 Jul 2012) Log Message: ----------- php5/trunk: update the icu dependencies for php5 and mod_php5 Modified Paths: -------------- csw/mgar/pkg/php5/trunk/Makefile Modified: csw/mgar/pkg/php5/trunk/Makefile =================================================================== --- csw/mgar/pkg/php5/trunk/Makefile 2012-07-25 18:42:04 UTC (rev 18855) +++ csw/mgar/pkg/php5/trunk/Makefile 2012-07-25 20:03:08 UTC (rev 18856) @@ -85,8 +85,10 @@ CATALOGNAME_CSWphp5 = php5 SPKG_DESC_CSWphp5 = A High-Level Scripting Language RUNTIME_DEP_PKGS_CSWphp5 += CSWlibxml2-2 CSWlibiconv2 CSWlibexpat1 CSWlibz1 -RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicuio48 CSWlibicuuc48 CSWlibicui18n48 -RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicudata48 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicuio49 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicui18n49 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWphp5 += CSWlibicuuc49 INCOMPATIBLE_PKGS_CSWphp5 = CSWphp5mimemagic CSWphp5mhash CSWphp5dbase INCOMPATIBLE_PKGS_CSWphp5 += CSWphp5ncurses CSWmodphp5 # embeded 'magic' information to detect file types...odd, but... @@ -133,8 +135,10 @@ SPKG_DESC_CSWap2-modphp5 = The apache 2.2.x php5 module RUNTIME_DEP_PKGS_CSWap2-modphp5 = CSWphp5 CSWapache2 CSWlibxml2-2 CSWlibiconv2 RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibexpat1 CSWlibz1 -RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicuio48 CSWlibicuuc48 -RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicui18n48 CSWlibicudata48 +RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicuio49 +RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicui18n49 +RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicudata49 +RUNTIME_DEP_PKGS_CSWap2-modphp5 += CSWlibicuuc49 OBSOLETED_BY_CSWap2-modphp5 = CSWap2modphp5 PKGFILES_CSWap2-modphp5 += $(prefix)/apache2.* CHECKPKG_OVERRIDES_CSWap2-modphp5 += surplus-dependency|CSWphp5 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Thu Jul 26 01:12:54 2012 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Wed, 25 Jul 2012 23:12:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18857] csw/mgar/pkg Message-ID: Revision: 18857 http://gar.svn.sourceforge.net/gar/?rev=18857&view=rev Author: jake_goerzen Date: 2012-07-25 23:12:54 +0000 (Wed, 25 Jul 2012) Log Message: ----------- vidalia: inital commit Added Paths: ----------- csw/mgar/pkg/vidalia/ csw/mgar/pkg/vidalia/Makefile csw/mgar/pkg/vidalia/branches/ csw/mgar/pkg/vidalia/tags/ csw/mgar/pkg/vidalia/trunk/ csw/mgar/pkg/vidalia/trunk/Makefile csw/mgar/pkg/vidalia/trunk/checksums csw/mgar/pkg/vidalia/trunk/files/ Copied: csw/mgar/pkg/vidalia/Makefile (from rev 16055, csw/mgar/pkg/template/Makefile) =================================================================== --- csw/mgar/pkg/vidalia/Makefile (rev 0) +++ csw/mgar/pkg/vidalia/Makefile 2012-07-25 23:12:54 UTC (rev 18857) @@ -0,0 +1,15 @@ +# vim: ft=make ts=4 sw=4 noet + +default: + @echo "You are in the pkg/ directory." + +%: + $(MAKE) -C trunk $* + +paranoid-%: + $(MAKE) -C trunk $* || exit 2 + +export BUILDLOG ?= $(shell pwd)/buildlog.txt + +report-%: + $(MAKE) -C trunk $* || echo " *** make $* in $$i failed ***" >> $(BUILDLOG) Property changes on: csw/mgar/pkg/vidalia/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/vidalia/trunk/Makefile =================================================================== --- csw/mgar/pkg/vidalia/trunk/Makefile (rev 0) +++ csw/mgar/pkg/vidalia/trunk/Makefile 2012-07-25 23:12:54 UTC (rev 18857) @@ -0,0 +1,45 @@ +NAME = vidalia +VERSION = 0.2.19 +GARTYPE = v2 +CATEGORIES = net + +DESCRIPTION = Controller GUI for Tor +define BLURB +Vidalia lets you start and stop Tor, see how much bandwidth you are consuming, see how many circuits you currently have active, see where these circuits are connected on a global map, view messages from Tor about its progress and current state, and let you configure your Tor client, bridge, or relay with a simple interface. Included in Vidalia is an extensive help system which helps you understand all of the options available to you. All of these features are translated into a large number of languages. +endef + +MASTER_SITES = https://www.torproject.org/dist/vidalia/ +DISTFILES = $(DISTNAME).tar.gz + +LICENSE = LICENSE + +# no patches so lets skip this to save a little time +NOGITPATCH = 1 + +GARCOMPILER = GNU + +TEST_SCRIPTS = + +CONFIGURE_SCRIPTS = custom +BUILD_SCRIPTS = custom +INSTALL_SCRIPTS = custom + +PACKAGING_PLATFORMS = solaris10-sparc solaris10-i386 + +include gar/category.mk + +configure-custom: + mkdir $(WORKSRC)/build + cd $(WORKSRC)/build && /opt/csw/bin/cmake \ + -DCMAKE_INSTALL_PREFIX:PATH=/opt/csw \ + -DCMAKE_EXE_LINKER_FLAGS:STRING='-lsocket -lnsl' \ + -DQT_QMAKE_EXECUTABLE=/opt/csw/gxx/bin/qmake .. + @$(MAKECOOKIE) + +build-custom: + cd $(WORKSRC)/build && /opt/csw/bin/gmake + @$(MAKECOOKIE) + +install-custom: + cd $(WORKSRC)/build && /opt/csw/bin/gmake install DESTDIR=$(DESTDIR) + @$(MAKECOOKIE) Property changes on: csw/mgar/pkg/vidalia/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Id Added: csw/mgar/pkg/vidalia/trunk/checksums =================================================================== --- csw/mgar/pkg/vidalia/trunk/checksums (rev 0) +++ csw/mgar/pkg/vidalia/trunk/checksums 2012-07-25 23:12:54 UTC (rev 18857) @@ -0,0 +1 @@ +caf92b44ad2932bbc1c40d6405951c39 vidalia-0.2.19.tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Thu Jul 26 08:32:46 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Thu, 26 Jul 2012 06:32:46 +0000 Subject: [csw-devel] SF.net SVN: gar:[18858] csw/mgar/pkg/lang-python/xpra/trunk/Makefile Message-ID: Revision: 18858 http://gar.svn.sourceforge.net/gar/?rev=18858&view=rev Author: cgrzemba Date: 2012-07-26 06:32:46 +0000 (Thu, 26 Jul 2012) Log Message: ----------- xpra/trunk: add reviewers hints Modified Paths: -------------- csw/mgar/pkg/lang-python/xpra/trunk/Makefile Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-25 23:12:54 UTC (rev 18857) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-26 06:32:46 UTC (rev 18858) @@ -17,11 +17,24 @@ MASTER_SITES = http://xpra.org/src/ DISTFILES = $(DISTNAME).tar.bz2 -BUILD_DEP_PKGS += CSWpy-gobject-dev CSWlibgtk2-dev CSWlibxtstdevel CSWpangodevel -BUILD_DEP_PKGS += CSWlibxfixesdevel CSWlibxcompositedev CSWlibxdamagedevel CSWlibxrandrdevel -BUILD_DEP_PKGS += CSWx11recordproto CSWlibxextdevel CSWx11fixesproto CSWx11compositeproto -BUILD_DEP_PKGS += CSWx11damageproto CSWx11randrproto CSWcython CSWpython-dev -BUILD_DEP_PKGS += CSWlibx264-dev CSWffmpeg-dev +BUILD_DEP_PKGS += CSWpy-gobject-dev +BUILD_DEP_PKGS += CSWlibgtk2-dev +BUILD_DEP_PKGS += CSWlibxtstdevel +BUILD_DEP_PKGS += CSWpangodevel +BUILD_DEP_PKGS += CSWlibxfixesdevel +BUILD_DEP_PKGS += CSWlibxcompositedev +BUILD_DEP_PKGS += CSWlibxdamagedevel +BUILD_DEP_PKGS += CSWlibxrandrdevel +BUILD_DEP_PKGS += CSWx11recordproto +BUILD_DEP_PKGS += CSWlibxextdevel +BUILD_DEP_PKGS += CSWx11fixesproto +BUILD_DEP_PKGS += CSWx11compositeproto +BUILD_DEP_PKGS += CSWx11damageproto +BUILD_DEP_PKGS += CSWx11randrproto +BUILD_DEP_PKGS += CSWcython +BUILD_DEP_PKGS += CSWpython-dev +BUILD_DEP_PKGS += CSWlibx264-dev-dev +BUILD_DEP_PKGS += CSWffmpeg-dev REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/xposix/gui.py REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/platform/client_extras_base.py @@ -32,10 +45,14 @@ PACKAGE += CSWxpra RUNTIME_DEP_PKGS_CSWxpra += CSWpython -RUNTIME_DEP_PKGS_CSWxpra += CSWlibswscale2 CSWlibavcodec54 -RUNTIME_DEP_PKGS_CSWxpra += CSWlibx11 CSWlibgio2-0-0 -RUNTIME_DEP_PKGS_CSWxpra += CSWpango CSWlibcairo2 CSWlibfreetype6 -RUNTIME_DEP_PKGS_CSWxpra += CSWlibxdamage CSWlibxcomposite +RUNTIME_DEP_PKGS_CSWxpra += CSWlibswscale2 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibavcodec54 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibgio2-0-0 +RUNTIME_DEP_PKGS_CSWxpra += CSWpango +RUNTIME_DEP_PKGS_CSWxpra += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxdamage +RUNTIME_DEP_PKGS_CSWxpra += CSWlibxcomposite RUNTIME_DEP_PKGS_CSWxpra += CSWlibx264-125 RUNTIME_DEP_PKGS_CSWxpra += CSWlibxfixes RUNTIME_DEP_PKGS_CSWxpra += CSWlibgthread2-0-0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 26 11:30:28 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 26 Jul 2012 09:30:28 +0000 Subject: [csw-devel] SF.net SVN: gar:[18859] csw/mgar/pkg/libgoffice/trunk Message-ID: Revision: 18859 http://gar.svn.sourceforge.net/gar/?rev=18859&view=rev Author: pfelecan Date: 2012-07-26 09:30:28 +0000 (Thu, 26 Jul 2012) Log Message: ----------- libgoffice/trunk: take over as the package was never released Modified Paths: -------------- csw/mgar/pkg/libgoffice/trunk/Makefile csw/mgar/pkg/libgoffice/trunk/checksums Modified: csw/mgar/pkg/libgoffice/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 06:32:46 UTC (rev 18858) +++ csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 09:30:28 UTC (rev 18859) @@ -1,27 +1,59 @@ -NAME = libgoffice -VERSION = 0.7.4 -CATEGORIES = gnome -GARTYPE = v2 +# $Id$ +NAME = libgoffice +SGVERSION = 0.8 +SGREL = 17 +VERSION = $(SGVERSION).$(SGREL) +CATEGORIES = gnome +GARTYPE = v2 + DESCRIPTION = Document centric objects library define BLURB GOffice is a library of document centric objects and utilities building on top of GLib and Gtk+. endef -MASTER_SITES = $(GNOME_ROOT)/goffice/$(GNOME_SUBV)/ -DISTFILES = goffice-$(VERSION).tar.gz -DISTNAME = goffice-$(VERSION) +SGNAME = goffice +MASTER_SITES = $(GNOME_ROOT)/$(SGNAME)/$(GNOME_SUBV)/ +DISTFILES = $(SGNAME)-$(VERSION).tar.bz2 +DISTNAME = $(SGNAME)-$(VERSION) -RUNTIME_DEP_PKGS += CSWgconf2 CSWggettextrt CSWglib2 CSWgtk2 CSWlibatk -RUNTIME_DEP_PKGS += CSWlibcairo CSWlibglade2 CSWlibgsf CSWlibxml2 CSWlibxrender -RUNTIME_DEP_PKGS += CSWpango CSWsunmath CSWzlib -RUNTIME_DEP_PKGS += CSWbonobo2 CSWgnomekeyring CSWgnomevfs2 CSWlibart -RUNTIME_DEP_PKGS += CSWlibbonoboui CSWlibgnome CSWlibgnomecanvas CSWlibgnomeui -RUNTIME_DEP_PKGS += CSWlibpopt CSWorbit2 +GARCOMPILER = GNU +BUILD_DEP_PKGS += CSWintltool +BUILD_DEP_PKGS += CSWlibatk-dev +BUILD_DEP_PKGS += CSWlibcairo-dev +BUILD_DEP_PKGS += CSWlibfreetype-dev +BUILD_DEP_PKGS += CSWlibgconf-dev +BUILD_DEP_PKGS += CSWlibgdk-pixbuf-dev +BUILD_DEP_PKGS += CSWlibglib2-dev +BUILD_DEP_PKGS += CSWlibgsf-dev +BUILD_DEP_PKGS += CSWlibgsf-dev +BUILD_DEP_PKGS += CSWlibgtk2-dev +BUILD_DEP_PKGS += CSWlibxml2-dev +BUILD_DEP_PKGS += CSWpangodevel + +RUNTIME_DEP_PKGS += CSWlibatk1-0-0 +RUNTIME_DEP_PKGS += CSWlibcairo2 +RUNTIME_DEP_PKGS += CSWlibfontconfig1 +RUNTIME_DEP_PKGS += CSWlibfreetype6 +RUNTIME_DEP_PKGS += CSWlibgcc-s1 +RUNTIME_DEP_PKGS += CSWlibgconf2-4 +RUNTIME_DEP_PKGS += CSWlibgdk-pixbuf2-0-0 +RUNTIME_DEP_PKGS += CSWlibgdk-x11-2-0-0 +RUNTIME_DEP_PKGS += CSWlibgio2-0-0 +RUNTIME_DEP_PKGS += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS += CSWlibgsf1-114 +RUNTIME_DEP_PKGS += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS += CSWlibgtk-x11-2-0-0 +RUNTIME_DEP_PKGS += CSWlibintl8 +RUNTIME_DEP_PKGS += CSWlibxml2-2 +RUNTIME_DEP_PKGS += CSWpango + # We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = goffice-(\d+(?:\.\d+)*).tar.gz +UFILES_REGEX = $(SGNAME)-(\d+(?:\.\d+)*).tar.gz CONFIGURE_ARGS = $(DIRPATHS) @@ -29,4 +61,13 @@ include gar/category.mk -PATH :=/opt/csw/bin:/opt/csw/gnu:$(PATH) +PATH := /opt/csw/gnu:/opt/csw/libexec/flex-2.5.35/bin:$(PATH) + +post-install-modulated: + ginstall --directory $(DESTDIR)/$(docdir)/$(NAME) + cd $(DESTDIR)/$(docdir)/$(NAME) && ln -s ../../gtk-doc/html/$(SGNAME)-$(SGVERSION) html + $(MAKECOOKIE) + +# this is private and not available publicly +mydependencies: + for package in $(PACKAGES); do echo '___' $${package}; $(HOME)/bin/ocswdeplist --depth 1 --dependencies --packaging --csw --prototype $(HOME)/opencsw/$(NAME)/trunk/work/build-global/$${package}.prototype --target $(HOME)/opencsw/$(NAME)/trunk/work/pkgroot; done Modified: csw/mgar/pkg/libgoffice/trunk/checksums =================================================================== --- csw/mgar/pkg/libgoffice/trunk/checksums 2012-07-26 06:32:46 UTC (rev 18858) +++ csw/mgar/pkg/libgoffice/trunk/checksums 2012-07-26 09:30:28 UTC (rev 18859) @@ -1 +1 @@ -efb34403af04315c0ae1b55f89a24b3d download/goffice-0.7.4.tar.gz +b4c924457163e02daf8a8d2428f51d10 goffice-0.8.17.tar.bz2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 26 11:35:44 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 26 Jul 2012 09:35:44 +0000 Subject: [csw-devel] SF.net SVN: gar:[18860] csw/mgar/pkg/libgoffice/trunk/Makefile Message-ID: Revision: 18860 http://gar.svn.sourceforge.net/gar/?rev=18860&view=rev Author: pfelecan Date: 2012-07-26 09:35:43 +0000 (Thu, 26 Jul 2012) Log Message: ----------- libgoffice/trunk: limit availability to Solaris 10 Modified Paths: -------------- csw/mgar/pkg/libgoffice/trunk/Makefile Modified: csw/mgar/pkg/libgoffice/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 09:30:28 UTC (rev 18859) +++ csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 09:35:43 UTC (rev 18860) @@ -33,6 +33,9 @@ BUILD_DEP_PKGS += CSWlibxml2-dev BUILD_DEP_PKGS += CSWpangodevel +PACKAGING_PLATFORMS = solaris10-sparc +PACKAGING_PLATFORMS += solaris10-i386 + RUNTIME_DEP_PKGS += CSWlibatk1-0-0 RUNTIME_DEP_PKGS += CSWlibcairo2 RUNTIME_DEP_PKGS += CSWlibfontconfig1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 26 15:59:53 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 26 Jul 2012 13:59:53 +0000 Subject: [csw-devel] SF.net SVN: gar:[18861] csw/mgar/pkg/libgoffice/trunk/Makefile Message-ID: Revision: 18861 http://gar.svn.sourceforge.net/gar/?rev=18861&view=rev Author: pfelecan Date: 2012-07-26 13:59:53 +0000 (Thu, 26 Jul 2012) Log Message: ----------- libgoffice/trunk: - split in sub-packages - verified and validated most of the overrides Modified Paths: -------------- csw/mgar/pkg/libgoffice/trunk/Makefile Modified: csw/mgar/pkg/libgoffice/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 09:35:43 UTC (rev 18860) +++ csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 13:59:53 UTC (rev 18861) @@ -36,28 +36,49 @@ PACKAGING_PLATFORMS = solaris10-sparc PACKAGING_PLATFORMS += solaris10-i386 -RUNTIME_DEP_PKGS += CSWlibatk1-0-0 -RUNTIME_DEP_PKGS += CSWlibcairo2 -RUNTIME_DEP_PKGS += CSWlibfontconfig1 -RUNTIME_DEP_PKGS += CSWlibfreetype6 -RUNTIME_DEP_PKGS += CSWlibgcc-s1 -RUNTIME_DEP_PKGS += CSWlibgconf2-4 -RUNTIME_DEP_PKGS += CSWlibgdk-pixbuf2-0-0 -RUNTIME_DEP_PKGS += CSWlibgdk-x11-2-0-0 -RUNTIME_DEP_PKGS += CSWlibgio2-0-0 -RUNTIME_DEP_PKGS += CSWlibglib2-0-0 -RUNTIME_DEP_PKGS += CSWlibgmodule2-0-0 -RUNTIME_DEP_PKGS += CSWlibgobject2-0-0 -RUNTIME_DEP_PKGS += CSWlibgsf1-114 -RUNTIME_DEP_PKGS += CSWlibgthread2-0-0 -RUNTIME_DEP_PKGS += CSWlibgtk-x11-2-0-0 -RUNTIME_DEP_PKGS += CSWlibintl8 -RUNTIME_DEP_PKGS += CSWlibxml2-2 -RUNTIME_DEP_PKGS += CSWpango +PACKAGES += CSWlibgoffice-doc +CATALOGNAME_CSWlibgoffice-doc = libgoffice_doc +SPKG_DESC_CSWlibgoffice-doc += $(DESCRIPTION), documentation +REINPLACE_USRSHARE += /opt/csw/share/gtk-doc/html/goffice-0.8/*.html +REINPLACE_WHEN_USRSHARE = postinstall -# We define upstream file regex so we can be notifed of new upstream software release -UFILES_REGEX = $(SGNAME)-(\d+(?:\.\d+)*).tar.gz +PACKAGES += CSWlibgoffice0-8-8 +CATALOGNAME_CSWlibgoffice0-8-8 = libgoffice0_8_8 +SPKG_DESC_CSWlibgoffice0-8-8 += $(DESCRIPTION), libgoffice-0.8.so.8 +PKGFILES_CSWlibgoffice0-8-8 += $(call baseisadirs,$(libdir),libgoffice-0\.8\.so\.8\.0\.17) +PKGFILES_CSWlibgoffice0-8-8 += $(call baseisadirs,$(libdir),libgoffice-0\.8\.so\.8(\.\d+)*) +PKGFILES_CSWlibgoffice0-8-8 += /opt/csw/lib/goffice/.* +PKGFILES_CSWlibgoffice0-8-8 += /opt/csw/share/goffice/.* +PKGFILES_CSWlibgoffice0-8-8 += /opt/csw/share/locale/.* +PKGFILES_CSWlibgoffice0-8-8 += /opt/csw/share/pixmaps/goffice/.* +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibatk1-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibcairo2 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibfontconfig1 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibfreetype6 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgcc-s1 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgconf2-4 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgdk-pixbuf2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgdk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgio2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibglib2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgmodule2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgobject2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgsf1-114 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgthread2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibgtk-x11-2-0-0 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibintl8 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWlibxml2-2 +RUNTIME_DEP_PKGS_CSWlibgoffice0-8-8 += CSWpango +PACKAGES += CSWlibgoffice-dev +CATALOGNAME_CSWlibgoffice-dev = libgoffice_dev +SPKG_DESC_CSWlibgoffice-dev += $(DESCRIPTION), development files +PKGFILES_CSWlibgoffice-dev += /opt/csw/lib/libgoffice-0.8.so +PKGFILES_CSWlibgoffice-dev += $(PKGFILES_DEVEL) +RUNTIME_DEP_PKGS_CSWlibgoffice-dev += CSWlibgoffice0-8-8 +ARCHALL_CSWlibgoffice-dev = 1 +CHECKPKG_OVERRIDES_CSWlibgoffice-dev+= archall-devel-package + CONFIGURE_ARGS = $(DIRPATHS) TEST_TARGET = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 26 16:02:49 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 26 Jul 2012 14:02:49 +0000 Subject: [csw-devel] SF.net SVN: gar:[18862] csw/mgar/pkg/libgoffice/trunk/Makefile Message-ID: Revision: 18862 http://gar.svn.sourceforge.net/gar/?rev=18862&view=rev Author: pfelecan Date: 2012-07-26 14:02:49 +0000 (Thu, 26 Jul 2012) Log Message: ----------- libgoffice/trunk: activated keyword substitution Property Changed: ---------------- csw/mgar/pkg/libgoffice/trunk/Makefile Property changes on: csw/mgar/pkg/libgoffice/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Author Date HeadURL Id Revision This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 26 16:17:52 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 26 Jul 2012 14:17:52 +0000 Subject: [csw-devel] SF.net SVN: gar:[18863] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 18863 http://gar.svn.sourceforge.net/gar/?rev=18863&view=rev Author: pfelecan Date: 2012-07-26 14:17:52 +0000 (Thu, 26 Jul 2012) Log Message: ----------- gdb/trunk: activate isaexec mechanism Modified Paths: -------------- csw/mgar/pkg/gdb/trunk/Makefile Modified: csw/mgar/pkg/gdb/trunk/Makefile =================================================================== --- csw/mgar/pkg/gdb/trunk/Makefile 2012-07-26 14:02:49 UTC (rev 18862) +++ csw/mgar/pkg/gdb/trunk/Makefile 2012-07-26 14:17:52 UTC (rev 18863) @@ -37,7 +37,8 @@ GARCOMPILER = GNU -BUILD64 = 1 +BUILD64 = 1 +ISAEXEC = 1 BUILD_DEP_PKGS += CSWgcc4ada BUILD_DEP_PKGS += CSWflex-new This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Thu Jul 26 16:19:31 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Thu, 26 Jul 2012 14:19:31 +0000 Subject: [csw-devel] SF.net SVN: gar:[18864] csw/mgar/pkg/gdb/trunk/Makefile Message-ID: Revision: 18864 http://gar.svn.sourceforge.net/gar/?rev=18864&view=rev Author: pfelecan Date: 2012-07-26 14:19:31 +0000 (Thu, 26 Jul 2012) Log Message: ----------- gdb/trunk: activate keyword substitution Property Changed: ---------------- csw/mgar/pkg/gdb/trunk/Makefile Property changes on: csw/mgar/pkg/gdb/trunk/Makefile ___________________________________________________________________ Added: svn:keywords + Author Date HeadURL Id Revision This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From jake_goerzen at users.sourceforge.net Fri Jul 27 00:40:54 2012 From: jake_goerzen at users.sourceforge.net (jake_goerzen at users.sourceforge.net) Date: Thu, 26 Jul 2012 22:40:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18865] csw/mgar/pkg/vidalia/trunk/Makefile Message-ID: Revision: 18865 http://gar.svn.sourceforge.net/gar/?rev=18865&view=rev Author: jake_goerzen Date: 2012-07-26 22:40:54 +0000 (Thu, 26 Jul 2012) Log Message: ----------- vidalia: tell cmake to put RPATH into executable Modified Paths: -------------- csw/mgar/pkg/vidalia/trunk/Makefile Modified: csw/mgar/pkg/vidalia/trunk/Makefile =================================================================== --- csw/mgar/pkg/vidalia/trunk/Makefile 2012-07-26 14:19:31 UTC (rev 18864) +++ csw/mgar/pkg/vidalia/trunk/Makefile 2012-07-26 22:40:54 UTC (rev 18865) @@ -16,6 +16,13 @@ # no patches so lets skip this to save a little time NOGITPATCH = 1 +RUNTIME_DEP_PKGS_CSWvidalia += CSWlibqtxml4-gxx +RUNTIME_DEP_PKGS_CSWvidalia += CSWlibqtnetwork4-gxx +RUNTIME_DEP_PKGS_CSWvidalia += CSWlibqtcore4-gxx +RUNTIME_DEP_PKGS_CSWvidalia += CSWlibstdc++6 +RUNTIME_DEP_PKGS_CSWvidalia += CSWlibqtgui4-gxx +RUNTIME_DEP_PKGS_CSWvidalia += CSWlibgcc-s1 + GARCOMPILER = GNU TEST_SCRIPTS = @@ -32,6 +39,7 @@ mkdir $(WORKSRC)/build cd $(WORKSRC)/build && /opt/csw/bin/cmake \ -DCMAKE_INSTALL_PREFIX:PATH=/opt/csw \ + -DCMAKE_INSTALL_RPATH:PATH=/opt/csw/lib:/opt/csw/gxx/lib \ -DCMAKE_EXE_LINKER_FLAGS:STRING='-lsocket -lnsl' \ -DQT_QMAKE_EXECUTABLE=/opt/csw/gxx/bin/qmake .. @$(MAKECOOKIE) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From pfelecan at users.sourceforge.net Fri Jul 27 08:37:27 2012 From: pfelecan at users.sourceforge.net (pfelecan at users.sourceforge.net) Date: Fri, 27 Jul 2012 06:37:27 +0000 Subject: [csw-devel] SF.net SVN: gar:[18866] csw/mgar/pkg/libgoffice/trunk/Makefile Message-ID: Revision: 18866 http://gar.svn.sourceforge.net/gar/?rev=18866&view=rev Author: pfelecan Date: 2012-07-27 06:37:27 +0000 (Fri, 27 Jul 2012) Log Message: ----------- libgoffice/trunk: make the documentation package architecture neutral. Modified Paths: -------------- csw/mgar/pkg/libgoffice/trunk/Makefile Modified: csw/mgar/pkg/libgoffice/trunk/Makefile =================================================================== --- csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-26 22:40:54 UTC (rev 18865) +++ csw/mgar/pkg/libgoffice/trunk/Makefile 2012-07-27 06:37:27 UTC (rev 18866) @@ -39,6 +39,7 @@ PACKAGES += CSWlibgoffice-doc CATALOGNAME_CSWlibgoffice-doc = libgoffice_doc SPKG_DESC_CSWlibgoffice-doc += $(DESCRIPTION), documentation +ARCHALL_CSWlibgoffice-doc = 1 REINPLACE_USRSHARE += /opt/csw/share/gtk-doc/html/goffice-0.8/*.html REINPLACE_WHEN_USRSHARE = postinstall This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. From cgrzemba at users.sourceforge.net Fri Jul 27 11:34:05 2012 From: cgrzemba at users.sourceforge.net (cgrzemba at users.sourceforge.net) Date: Fri, 27 Jul 2012 09:34:05 +0000 Subject: [csw-devel] SF.net SVN: gar:[18867] csw/mgar/pkg/lang-python/xpra/trunk/Makefile Message-ID: Revision: 18867 http://gar.svn.sourceforge.net/gar/?rev=18867&view=rev Author: cgrzemba Date: 2012-07-27 09:34:04 +0000 (Fri, 27 Jul 2012) Log Message: ----------- xpra/trunk: do not use CSWlibx11 Modified Paths: -------------- csw/mgar/pkg/lang-python/xpra/trunk/Makefile Modified: csw/mgar/pkg/lang-python/xpra/trunk/Makefile =================================================================== --- csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-27 06:37:27 UTC (rev 18866) +++ csw/mgar/pkg/lang-python/xpra/trunk/Makefile 2012-07-27 09:34:04 UTC (rev 18867) @@ -33,7 +33,7 @@ BUILD_DEP_PKGS += CSWx11randrproto BUILD_DEP_PKGS += CSWcython BUILD_DEP_PKGS += CSWpython-dev -BUILD_DEP_PKGS += CSWlibx264-dev-dev +BUILD_DEP_PKGS += CSWlibx264-dev BUILD_DEP_PKGS += CSWffmpeg-dev REINPLACE_USRSHARE += $(libdir)/python/site-packages/xpra/xposix/gui.py @@ -79,6 +79,7 @@ INSTALL_SCRIPTS = $(WORKSRC)/setup.py BUILD_ENV += PKG_CONFIG_PATH=/opt/csw/lib/pkgconfig:/opt/csw/X11/lib/pkgconfig +BUILD_ENV += CC=/opt/solarisstudio12.3/bin/cc PYBUILD_CMD = build_ext BUILD_ARGS += --without-vpx BUILD_ARGS += --rpath=$(libdir):$(prefix)/X11/lib 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 Jul 27 17:10:12 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Fri, 27 Jul 2012 15:10:12 +0000 Subject: [csw-devel] SF.net SVN: gar:[18868] csw/mgar/pkg/git/trunk Message-ID: Revision: 18868 http://gar.svn.sourceforge.net/gar/?rev=18868&view=rev Author: bdwalton Date: 2012-07-27 15:10:12 +0000 (Fri, 27 Jul 2012) Log Message: ----------- git/trunk: version bump Modified Paths: -------------- csw/mgar/pkg/git/trunk/Makefile csw/mgar/pkg/git/trunk/checksums Modified: csw/mgar/pkg/git/trunk/Makefile =================================================================== --- csw/mgar/pkg/git/trunk/Makefile 2012-07-27 09:34:04 UTC (rev 18867) +++ csw/mgar/pkg/git/trunk/Makefile 2012-07-27 15:10:12 UTC (rev 18868) @@ -1,5 +1,5 @@ NAME = git -VERSION = 1.7.11.1 +VERSION = 1.7.11.3 #PATCHLEVEL = rc4 DISTNAME = $(NAME)-$(VERSION) CATEGORIES = devel Modified: csw/mgar/pkg/git/trunk/checksums =================================================================== --- csw/mgar/pkg/git/trunk/checksums 2012-07-27 09:34:04 UTC (rev 18867) +++ csw/mgar/pkg/git/trunk/checksums 2012-07-27 15:10:12 UTC (rev 18868) @@ -1 +1 @@ -2c5d85ec5b6e08986d942461debc9d6b git-1.7.11.1.tar.gz +23caacd9f3f421b6c05b40796df3505d git-1.7.11.3.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 Sat Jul 28 09:14:06 2012 From: j_arndt at users.sourceforge.net (j_arndt at users.sourceforge.net) Date: Sat, 28 Jul 2012 07:14:06 +0000 Subject: [csw-devel] SF.net SVN: gar:[18869] csw/mgar/pkg/munin/trunk Message-ID: Revision: 18869 http://gar.svn.sourceforge.net/gar/?rev=18869&view=rev Author: j_arndt Date: 2012-07-28 07:14:06 +0000 (Sat, 28 Jul 2012) Log Message: ----------- munin/trunk: update to 2.0.3 Modified Paths: -------------- csw/mgar/pkg/munin/trunk/Makefile csw/mgar/pkg/munin/trunk/checksums Added Paths: ----------- csw/mgar/pkg/munin/trunk/files/0005-Expand-paths-with-DESTDIR.patch csw/mgar/pkg/munin/trunk/files/0006-paths-in-Makefile.config.patch Removed Paths: ------------- csw/mgar/pkg/munin/trunk/files/0001-paths-in-Makefile.config.patch csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch Modified: csw/mgar/pkg/munin/trunk/Makefile =================================================================== --- csw/mgar/pkg/munin/trunk/Makefile 2012-07-27 15:10:12 UTC (rev 18868) +++ csw/mgar/pkg/munin/trunk/Makefile 2012-07-28 07:14:06 UTC (rev 18869) @@ -1,5 +1,5 @@ NAME = munin -VERSION = 2.0.2 +VERSION = 2.0.3 CATEGORIES = apps GARTYPE = v2 @@ -17,10 +17,10 @@ DISTFILES += CSWmunin-master.README.CSW DISTFILES += CSWmunin-node.README.CSW -PATCHFILES += 0004-Expand-paths-with-DESTDIR.patch -PATCHFILES += 0001-paths-in-Makefile.config.patch PATCHFILES += 0001-paths-and-hostname-in-munin-node.conf.in.patch PATCHFILES += 0001-replace-yourhostname-with-hostname-in-postinstall.patch +PATCHFILES += 0005-Expand-paths-with-DESTDIR.patch +PATCHFILES += 0006-paths-in-Makefile.config.patch # # Reinplacements Modified: csw/mgar/pkg/munin/trunk/checksums =================================================================== --- csw/mgar/pkg/munin/trunk/checksums 2012-07-27 15:10:12 UTC (rev 18868) +++ csw/mgar/pkg/munin/trunk/checksums 2012-07-28 07:14:06 UTC (rev 18869) @@ -1 +1 @@ -5020eaf323f08ec09600a0b07622861a munin-2.0.2.tar.gz +6b3d40c53baed5ead148f4e1a331e450 munin-2.0.3.tar.gz Deleted: csw/mgar/pkg/munin/trunk/files/0001-paths-in-Makefile.config.patch =================================================================== --- csw/mgar/pkg/munin/trunk/files/0001-paths-in-Makefile.config.patch 2012-07-27 15:10:12 UTC (rev 18868) +++ csw/mgar/pkg/munin/trunk/files/0001-paths-in-Makefile.config.patch 2012-07-28 07:14:06 UTC (rev 18869) @@ -1,120 +0,0 @@ -From da269418eb37e98fbe77b0b37c99c8f7783d09df Mon Sep 17 00:00:00 2001 -From: Juergen Arndt -Date: Sun, 3 Jun 2012 18:08:21 +0200 -Subject: [PATCH] paths in Makefile.config - ---- - Makefile.config | 38 +++++++++++++++++++------------------- - 1 file changed, 19 insertions(+), 19 deletions(-) - -diff --git a/Makefile.config b/Makefile.config -index 7cd0b84..1a971a4 100644 ---- a/Makefile.config -+++ b/Makefile.config -@@ -17,10 +17,10 @@ - # - # the base of the Munin installation. - # --PREFIX = $(DESTDIR)/opt/munin -+PREFIX = /opt/csw - - # Where Munin keeps its configurations (server.conf, client.conf, ++) --CONFDIR = $(DESTDIR)/etc/opt/munin -+CONFDIR = /etc/opt/csw/munin - - # Server only - where to put munin-cron - BINDIR = $(PREFIX)/bin -@@ -29,20 +29,20 @@ BINDIR = $(PREFIX)/bin - SBINDIR = $(PREFIX)/sbin - - # Where to put text and html documentation --DOCDIR = $(PREFIX)/doc -+DOCDIR = $(PREFIX)/share/doc/munin - - # Where to put man pages --MANDIR = $(PREFIX)/man -+MANDIR = $(PREFIX)/share/man - - # Where to put internal binaries and plugin repository --LIBDIR = $(PREFIX)/lib -+LIBDIR = $(PREFIX)/libexec/munin - - # Server only - Output directory --HTMLDIR = $(PREFIX)/www/docs --CGIDIR = $(PREFIX)/www/cgi -+HTMLDIR = /var/opt/csw/munin/www -+CGIDIR = /var/opt/csw/munin/www/cgi-bin - - # Where to put RRD files and other internal data, both master and node --DBDIR = $(DESTDIR)/var/opt/munin -+DBDIR = /var/opt/csw/munin/db - - # Client only - Where the spool files are written. Must be writable by - # group "munin", and should be preserved between reboots -@@ -53,17 +53,17 @@ SPOOLDIR = $(DBDIR)/spool - PLUGSTATE = $(DBDIR)/plugin-state - - # Where Munin should place its logs. --LOGDIR = $(PREFIX)/log/munin -+LOGDIR = /var/opt/csw/munin/log - - # Location of PID files and other statefiles. On the server, must be - # writable by the user "munin". --STATEDIR = $(DESTDIR)/var/run/munin -+STATEDIR = /var/opt/csw/munin/run - - # The perl interpreter to use --PERL := $(shell which perl) -+PERL := /opt/csw/bin/perl - - # The python interpreter to use (used by some plugins) --PYTHON := /usr/bin/env python -+PYTHON := /opt/csw/bin/python - - # The ruby interpreter to use (used by some plugins) - RUBY := /usr/bin/env ruby -@@ -89,11 +89,11 @@ JAVALIBDIR:= $(LIBDIR) - GOODSH := $(shell PATH=`getconf PATH 2>/dev/null || echo $(PATH)` sh -c 'type sh | sed "s/.* //"') - - # Path of bash for bash specific plugins --BASH := /bin/bash -+BASH := /usr/bin/bash - - # Server only - Where to install the perl libraries - PERLSITELIB := $(shell $(PERL) -V:sitelib | cut -d"'" -f2) --PERLLIB = $(DESTDIR)$(PERLSITELIB) -+PERLLIB = $(shell $(PERL) -V:sitelib | cut -d"'" -f2) - - # Client only - Install plugins for this architecture - OSTYPE := $(shell uname | tr '[A-Z]' '[a-z]' | cut -f 1 -d _) -@@ -105,7 +105,7 @@ HOSTNAME := $(shell hostname) - # What is the safest way to create a tempfile. - # Default is to figure it out by testing various methods. - # Replace this with a known platform-specific method --MKTEMP := $(shell ./test-mktemp) -+MKTEMP := $(shell mktemp) - - # Munin version number. - VERSION := $(shell ./getversion) -@@ -123,9 +123,9 @@ CGIUSER := nobody - # Which command to use to check if the USER and GROUP to run Munin as, exists. - # These will work on most modern OSes: - # --GETENT := $(shell which getent || which true 2>/dev/null) --CHECKUSER := $(shell $(GETENT) passwd $(USER) >/dev/null 2>/dev/null || (echo "echo User $(USER) nonexistent. Create the user and retry; exit 2")) --CHECKGROUP := $(shell $(GETENT) group $(GROUP) >/dev/null 2>/dev/null || (echo "echo Group $(GROUP) nonexistent. Create the group and retry; exit 2")) -+#GETENT := $(shell which getent || which true 2>/dev/null) -+#CHECKUSER := $(shell $(GETENT) passwd $(USER) >/dev/null 2>/dev/null || (echo "echo User $(USER) nonexistent. Create the user and retry; exit 2")) -+#CHECKGROUP := $(shell $(GETENT) group $(GROUP) >/dev/null 2>/dev/null || (echo "echo Group $(GROUP) nonexistent. Create the group and retry; exit 2")) - - # For OSX, comment out the previous two lines and comment in these - # -@@ -160,4 +160,4 @@ JAR := jar - JCVALID = $(shell $(JC) -version >/dev/null 2>/dev/null && echo "yes") - - # Check whether setruid functionality can be used --HASSETR := $(shell perl -e 'use Config; my @vars=("d_setruid", "d_setreuid", "d_setresuid"); foreach my $$var (@vars) { if ($$Config{$$var} eq "define") { print "1\n"; exit 0; } } print "0\n"; exit 0;' ) -+HASSETR := $(shell /opt/csw/bin/perl -e 'use Config; my @vars=("d_setruid", "d_setreuid", "d_setresuid"); foreach my $$var (@vars) { if ($$Config{$$var} eq "define") { print "1\n"; exit 0; } } print "0\n"; exit 0;' ) --- -1.7.10.3 - Deleted: csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch =================================================================== --- csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch 2012-07-27 15:10:12 UTC (rev 18868) +++ csw/mgar/pkg/munin/trunk/files/0004-Expand-paths-with-DESTDIR.patch 2012-07-28 07:14:06 UTC (rev 18869) @@ -1,367 +0,0 @@ -From 9eda017107a4fc9fa5781a006108f7e1a5540e05 Mon Sep 17 00:00:00 2001 -From: Juergen Arndt -Date: Sun, 1 Jul 2012 09:05:12 +0200 -Subject: [PATCH] Expand paths with DESTDIR - ---- - Makefile | 228 +++++++++++++++++++++++++++++++------------------------------- - 1 file changed, 115 insertions(+), 113 deletions(-) - -diff --git a/Makefile b/Makefile -index a26d2d1..1b5f81c 100644 ---- a/Makefile -+++ b/Makefile -@@ -9,6 +9,8 @@ - DEFAULTS = Makefile.config - CONFIG = Makefile.config - -+DESTDIR = -+ - include $(DEFAULTS) - include $(CONFIG) - -@@ -49,8 +51,8 @@ uninstall: - # This removes the installed config so that the next install-pass installs - # a new config. Target _only_ suitable for maintainers. - unconfig: -- rm -f $(HTMLDIR)/.htaccess -- rm -f $(CONFDIR)/munin.conf -+ rm -f $(DESTDIR)$(HTMLDIR)/.htaccess -+ rm -f $(DESTDIR)$(CONFDIR)/munin.conf - - tags: - -rm -f TAGS -@@ -66,63 +68,63 @@ endif - - install-pre: Makefile Makefile.config - @$(CHECKUSER) -- mkdir -p $(LOGDIR) -- mkdir -p $(STATEDIR) -- mkdir -p $(SPOOLDIR) -- mkdir -p $(CONFDIR) -- $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) -+ mkdir -p $(DESTDIR)$(LOGDIR) -+ mkdir -p $(DESTDIR)$(STATEDIR) -+ mkdir -p $(DESTDIR)$(SPOOLDIR) -+ mkdir -p $(DESTDIR)$(CONFDIR) -+# $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) - - install-master-prime: $(INFILES_MASTER) install-pre install-master -- mkdir -p $(CONFDIR)/templates -- mkdir -p $(CONFDIR)/static -- mkdir -p $(CONFDIR)/templates/partial -- mkdir -p $(CONFDIR)/munin-conf.d -- mkdir -p $(LIBDIR) -- mkdir -p $(BINDIR) -- mkdir -p $(PERLLIB) -- mkdir -p $(PERLLIB)/Munin/Master -- mkdir -p $(HTMLDIR) -- mkdir -p $(DBDIR) -- mkdir -p $(DBDIR)/cgi-tmp -- mkdir -p $(CGIDIR) -- -- $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) -- $(CHMOD) 0755 $(DBDIR) -- -- $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp -- $(CHMOD) 0755 $(DBDIR)/cgi-tmp -+ mkdir -p $(DESTDIR)$(CONFDIR)/templates -+ mkdir -p $(DESTDIR)$(CONFDIR)/static -+ mkdir -p $(DESTDIR)$(CONFDIR)/templates/partial -+ mkdir -p $(DESTDIR)$(CONFDIR)/munin-conf.d -+ mkdir -p $(DESTDIR)$(LIBDIR) -+ mkdir -p $(DESTDIR)$(BINDIR) -+ mkdir -p $(DESTDIR)$(PERLLIB) -+ mkdir -p $(DESTDIR)$(PERLLIB)/Munin/Master -+ mkdir -p $(DESTDIR)$(HTMLDIR) -+ mkdir -p $(DESTDIR)$(DBDIR) -+ mkdir -p $(DESTDIR)$(DBDIR)/cgi-tmp -+ mkdir -p $(DESTDIR)$(CGIDIR) -+ -+# $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) -+ $(CHMOD) 0755 $(DESTDIR)$(DBDIR) -+ -+# $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp -+ $(CHMOD) 0755 $(DESTDIR)$(DBDIR)/cgi-tmp - - for p in master/www/*.tmpl ; do \ -- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/ ; \ -+ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/ ; \ - done - - for p in master/static/* ; do \ -- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/static/ ; \ -+ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/static/ ; \ - done - - for p in master/www/partial/*.tmpl; do \ -- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/partial/ ; \ -+ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/partial/ ; \ - done - -- $(INSTALL) -m 0755 master/DejaVuSansMono.ttf $(LIBDIR)/ -- $(INSTALL) -m 0755 master/DejaVuSans.ttf $(LIBDIR)/ -+ $(INSTALL) -m 0755 master/DejaVuSansMono.ttf $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 master/DejaVuSans.ttf $(DESTDIR)$(LIBDIR)/ - -- test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(HTMLDIR)/.htaccess -- test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(CONFDIR)/ -+ test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(DESTDIR)$(HTMLDIR)/.htaccess -+ test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(DESTDIR)$(CONFDIR)/ - -- $(INSTALL) -m 0755 build/master/_bin/munin-cron $(BINDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-check $(BINDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-update $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-html $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-graph $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-limits $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(LIBDIR)/ -- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(CGIDIR)/munin-cgi-graph -- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(CGIDIR)/munin-cgi-html -+ $(INSTALL) -m 0755 build/master/_bin/munin-cron $(DESTDIR)$(BINDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-check $(DESTDIR)$(BINDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-update $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-html $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-graph $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-limits $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(DESTDIR)$(CGIDIR)/munin-cgi-graph -+ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(DESTDIR)$(CGIDIR)/munin-cgi-html - - # Not ready to be installed yet --# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(LIBDIR)/ -+# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(DESTDIR)$(LIBDIR)/ - - # ALWAYS DO THE OS SPECIFIC PLUGINS LAST! THAT WAY THEY OVERWRITE THE - # GENERIC ONES -@@ -133,66 +135,66 @@ install-node-plugins: install-plugins-prime - install-plugins-prime: install-plugins build $(PLUGINS) Makefile Makefile.config - @$(CHECKGROUP) - -- mkdir -p $(CONFDIR)/plugins -- mkdir -p $(CONFDIR)/plugin-conf.d -- mkdir -p $(LIBDIR)/plugins -- mkdir -p $(PLUGSTATE) -+ mkdir -p $(DESTDIR)$(CONFDIR)/plugins -+ mkdir -p $(DESTDIR)$(CONFDIR)/plugin-conf.d -+ mkdir -p $(DESTDIR)$(LIBDIR)/plugins -+ mkdir -p $(DESTDIR)$(PLUGSTATE) - -- $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) -+# $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) - # using g+rwxs, so plugins can create and modify their state file without help -- $(CHMOD) 02775 $(PLUGSTATE) -- $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d -+# $(CHMOD) 02775 $(PLUGSTATE) -+# $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d - - for p in build/plugins/node.d/* build/plugins/node.d.$(OSTYPE)/* ; do \ - if test -f "$$p" ; then \ - echo Installing $$p; \ -- $(INSTALL) -m 0755 $$p $(LIBDIR)/plugins/; \ -+ $(INSTALL) -m 0755 $$p $(DESTDIR)$(LIBDIR)/plugins/; \ - fi \ - done -- -mv $(LIBDIR)/plugins/*.adv $(LIBDIR) -- $(INSTALL) -m 0644 build/plugins/plugins.history $(LIBDIR)/plugins/ -- $(INSTALL) -m 0644 build/plugins/plugin.sh $(LIBDIR)/plugins/ -+ -mv $(LIBDIR)/plugins/*.adv $(DESTDIR)$(LIBDIR) -+ $(INSTALL) -m 0644 build/plugins/plugins.history $(DESTDIR)$(LIBDIR)/plugins/ -+ $(INSTALL) -m 0644 build/plugins/plugin.sh $(DESTDIR)$(LIBDIR)/plugins/ - - install-plugins-java: build-plugins-java -- mkdir -p $(JAVALIBDIR) -- $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(JAVALIBDIR)/ -+ mkdir -p $(DESTDIR)$(JAVALIBDIR) -+ $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(DESTDIR)$(JAVALIBDIR)/ - - #TODO: - # configure plugins. Or not. Better done under the direction of the installer - # or the packager. - - install-async-prime: -- mkdir -p $(LIBDIR) -- $(INSTALL) -m 0755 build/node/_bin/munin-async $(LIBDIR)/ -- $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(LIBDIR)/ -+ mkdir -p $(DESTDIR)$(LIBDIR) -+ $(INSTALL) -m 0755 build/node/_bin/munin-async $(DESTDIR)$(LIBDIR)/ -+ $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(DESTDIR)$(LIBDIR)/ - - install-node-prime: install-node-pre install-node - - install-node-pre: build/node/munin-node.conf install-pre -- test -f "$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(CONFDIR)/ -+ test -f "$(DESTDIR)$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(DESTDIR)$(CONFDIR)/ - - - install-common-prime: build-common install-common - - - install-man: build-man Makefile Makefile.config -- mkdir -p $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man8 -- $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(MANDIR)/man5/ -- $(INSTALL) -m 0644 build/doc/munin.conf.5 $(MANDIR)/man5/ -- $(INSTALL) -m 0644 build/doc/munin-update.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-limits.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-graph.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-html.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-cron.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin-check.8 $(MANDIR)/man8/ -- $(INSTALL) -m 0644 build/doc/munin.8 $(MANDIR)/man8/ -+ mkdir -p $(DESTDIR)$(MANDIR)/man1 $(DESTDIR)$(MANDIR)/man5 $(DESTDIR)$(MANDIR)/man8 -+ $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(DESTDIR)$(MANDIR)/man5/ -+ $(INSTALL) -m 0644 build/doc/munin.conf.5 $(DESTDIR)$(MANDIR)/man5/ -+ $(INSTALL) -m 0644 build/doc/munin-update.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-limits.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-graph.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-html.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-cron.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin-check.8 $(DESTDIR)$(MANDIR)/man8/ -+ $(INSTALL) -m 0644 build/doc/munin.8 $(DESTDIR)$(MANDIR)/man8/ - - - install-doc: build-doc -- mkdir -p $(DOCDIR)/resources -- $(INSTALL) -m 0644 README $(DOCDIR)/ -- $(INSTALL) -m 0644 COPYING $(DOCDIR)/ -- $(INSTALL) -m 0644 build/resources/* $(DOCDIR)/resources -+ mkdir -p $(DESTDIR)$(DOCDIR)/resources -+ $(INSTALL) -m 0644 README $(DESTDIR)$(DOCDIR)/ -+ $(INSTALL) -m 0644 COPYING $(DESTDIR)$(DOCDIR)/ -+ $(INSTALL) -m 0644 build/resources/* $(DESTDIR)$(DOCDIR)/resources - - ###################################################################### - -@@ -209,29 +211,29 @@ build/%: %.in - @echo "$< -> $@" - @mkdir -p build/`dirname $<` - @sed -e 's|@@PREFIX@@|$(PREFIX)|g' \ -- -e 's|@@CONFDIR@@|$(CONFDIR)|g' \ -- -e 's|@@BINDIR@@|$(BINDIR)|g' \ -- -e 's|@@SBINDIR@@|$(SBINDIR)|g' \ -- -e 's|@@DOCDIR@@|$(DOCDIR)|g' \ -- -e 's|@@LIBDIR@@|$(LIBDIR)|g' \ -- -e 's|@@MANDIR@@|$(MANDIR)|g' \ -- -e 's|@@LOGDIR@@|$(LOGDIR)|g' \ -- -e 's|@@HTMLDIR@@|$(HTMLDIR)|g' \ -- -e 's|@@DBDIR@@|$(DBDIR)|g' \ -- -e 's|@@STATEDIR@@|$(STATEDIR)|g' \ -- -e 's|@@SPOOLDIR@@|$(SPOOLDIR)|g' \ -+ -e 's|@@CONFDIR@@|$(DESTDIR)$(CONFDIR)|g' \ -+ -e 's|@@BINDIR@@|$(DESTDIR)$(BINDIR)|g' \ -+ -e 's|@@SBINDIR@@|$(DESTDIR)$(SBINDIR)|g' \ -+ -e 's|@@DOCDIR@@|$(DESTDIR)$(DOCDIR)|g' \ -+ -e 's|@@LIBDIR@@|$(DESTDIR)$(LIBDIR)|g' \ -+ -e 's|@@MANDIR@@|$(DESTDIR)$(MANDIR)|g' \ -+ -e 's|@@LOGDIR@@|$(DESTDIR)$(LOGDIR)|g' \ -+ -e 's|@@HTMLDIR@@|$(DESTDIR)$(HTMLDIR)|g' \ -+ -e 's|@@DBDIR@@|$(DESTDIR)$(DBDIR)|g' \ -+ -e 's|@@STATEDIR@@|$(DESTDIR)$(STATEDIR)|g' \ -+ -e 's|@@SPOOLDIR@@|$(DESTDIR)$(SPOOLDIR)|g' \ - -e 's|@@PERL@@|$(PERL)|g' \ -- -e 's|@@PERLLIB@@|$(PERLLIB)|g' \ -+ -e 's|@@PERLLIB@@|$(DESTDIR)$(PERLLIB)|g' \ - -e 's|@@PYTHON@@|$(PYTHON)|g' \ - -e 's|@@RUBY@@|$(RUBY)|g' \ - -e 's|@@JAVARUN@@|$(JAVARUN)|g' \ -- -e 's|@@JAVALIBDIR@@|$(JAVALIBDIR)|g' \ -+ -e 's|@@JAVALIBDIR@@|$(DESTDIR)$(JAVALIBDIR)|g' \ - -e 's|@@OSTYPE@@|$(OSTYPE)|g' \ - -e 's|@@HOSTNAME@@|$(HOSTNAME)|g' \ - -e 's|@@MKTEMP@@|$(MKTEMP)|g' \ - -e 's|@@VERSION@@|$(VERSION)|g' \ -- -e 's|@@PLUGSTATE@@|$(PLUGSTATE)|g' \ -- -e 's|@@CGIDIR@@|$(CGIDIR)|g' \ -+ -e 's|@@PLUGSTATE@@|$(DESTDIR)$(PLUGSTATE)|g' \ -+ -e 's|@@CGIDIR@@|$(DESTDIR)$(CGIDIR)|g' \ - -e 's|@@USER@@|$(USER)|g' \ - -e 's|@@GROUP@@|$(GROUP)|g' \ - -e 's|@@PLUGINUSER@@|$(PLUGINUSER)|g' \ -@@ -249,17 +251,17 @@ build-common-pre: common/Build - common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm build-common-pre - rm -f common/blib/lib/Munin/Common/Defaults.pm - $(PERL) -pe 's{(PREFIX \s+=\s).*}{\1q{$(PREFIX)};}x; \ -- s{(CONFDIR \s+=\s).*}{\1q{$(CONFDIR)};}x; \ -- s{(BINDIR \s+=\s).*}{\1q{$(BINDIR)};}x; \ -- s{(SBINDIR \s+=\s).*}{\1q{$(SBINDIR)};}x; \ -- s{(DOCDIR \s+=\s).*}{\1q{$(DOCDIR)};}x; \ -- s{(LIBDIR \s+=\s).*}{\1q{$(LIBDIR)};}x; \ -- s{(MANDIR \s+=\s).*}{\1q{$(MANDIR)};}x; \ -- s{(LOGDIR \s+=\s).*}{\1q{$(LOGDIR)};}x; \ -- s{(HTMLDIR \s+=\s).*}{\1q{$(HTMLDIR)};}x; \ -- s{(DBDIR \s+=\s).*}{\1q{$(DBDIR)};}x; \ -- s{(STATEDIR \s+=\s).*}{\1q{$(STATEDIR)};}x; \ -- s{(SPOOLDIR \s+=\s).*}{\1q{$(SPOOLDIR)};}x; \ -+ s{(CONFDIR \s+=\s).*}{\1q{$(DESTDIR)$(CONFDIR)};}x; \ -+ s{(BINDIR \s+=\s).*}{\1q{$(DESTDIR)$(BINDIR)};}x; \ -+ s{(SBINDIR \s+=\s).*}{\1q{$(DESTDIR)$(SBINDIR)};}x; \ -+ s{(DOCDIR \s+=\s).*}{\1q{$(DESTDIR)$(DOCDIR)};}x; \ -+ s{(LIBDIR \s+=\s).*}{\1q{$(DESTDIR)$(LIBDIR)};}x; \ -+ s{(MANDIR \s+=\s).*}{\1q{$(DESTDIR)$(MANDIR)};}x; \ -+ s{(LOGDIR \s+=\s).*}{\1q{$(DESTDIR)$(LOGDIR)};}x; \ -+ s{(HTMLDIR \s+=\s).*}{\1q{$(DESTDIR)$(HTMLDIR)};}x; \ -+ s{(DBDIR \s+=\s).*}{\1q{$(DESTDIR)$(DBDIR)};}x; \ -+ s{(STATEDIR \s+=\s).*}{\1q{$(DESTDIR)$(STATEDIR)};}x; \ -+ s{(SPOOLDIR \s+=\s).*}{\1q{$(DESTDIR)$(SPOOLDIR)};}x; \ - s{(PERL \s+=\s).*}{\1q{$(PERL)};}x; \ - s{(PERLLIB \s+=\s).*}{\1q{$(PERLLIB)};}x; \ - s{(PYTHON \s+=\s).*}{\1q{$(PYTHON)};}x; \ -@@ -268,8 +270,8 @@ common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm bu - s{(HOSTNAME \s+=\s).*}{\1q{$(HOSTNAME)};}x; \ - s{(MKTEMP \s+=\s).*}{\1q{$(MKTEMP)};}x; \ - s{(VERSION \s+=\s).*}{\1q{$(VERSION)};}x; \ -- s{(PLUGSTATE \s+=\s).*}{\1q{$(PLUGSTATE)};}x; \ -- s{(CGIDIR \s+=\s).*}{\1q{$(CGIDIR)};}x; \ -+ s{(PLUGSTATE \s+=\s).*}{\1q{$(DESTDIR)$(PLUGSTATE)};}x; \ -+ s{(CGIDIR \s+=\s).*}{\1q{$(DESTDIR)$(CGIDIR)};}x; \ - s{(USER \s+=\s).*}{\1q{$(USER)};}x; \ - s{(GROUP \s+=\s).*}{\1q{$(GROUP)};}x; \ - s{(PLUGINUSER \s+=\s).*}{\1q{$(PLUGINUSER)};}x; \ -@@ -371,7 +373,7 @@ old-test: t/*.t - $(MAKE) $@ CONFIG=t/Makefile.config - else - test_plugins = id_default id_root env --old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) -+old-test: t/*.t t/install $(addprefix $(DESTDIR)$(CONFDIR)/plugins/,$(test_plugins)) - @for test in t/*.t; do \ - echo -n "$$test: "; \ - PERL5LIB=$(PERLLIB) $(PERL) $$test;\ -@@ -379,10 +381,10 @@ old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) - endif - - node-monkeywrench: install-node -- rm -rf $(CONFDIR)/plugins -- rm -rf $(LIBDIR)/plugins -- mkdir -p $(LIBDIR)/plugins -- mkdir -p $(CONFDIR)/plugins -+ rm -rf $(DESTDIR)$(CONFDIR)/plugins -+ rm -rf $(DESTDIR)$(LIBDIR)/plugins -+ mkdir -p $(DESTDIR)$(LIBDIR)/plugins -+ mkdir -p $(DESTDIR)$(CONFDIR)/plugins - cp monkeywrench/plugin-break*_ $(LIBDIR)/plugins/ - $(SBINDIR)/munin-node-configure --suggest - echo 'Done?' -@@ -408,12 +410,12 @@ build-common: common/Build - # can't seem to find a way to persuade it to write otherwhere. - install-%: %/Build - cd $* && $(PERL) Build install \ -- --install_path lib=$(PERLLIB) \ -- --install_path bin=$(BINDIR) \ -- --install_path script=$(BINDIR) \ -- --install_path sbin=$(SBINDIR) \ -- --install_path bindoc=$(MANDIR)/man1 \ -- --install_path libdoc=$(MANDIR)/man3 \ -+ --install_path lib=$(DESTDIR)$(PERLLIB) \ -+ --install_path bin=$(DESTDIR)$(BINDIR) \ -+ --install_path script=$(DESTDIR)$(BINDIR) \ -+ --install_path sbin=$(DESTDIR)$(SBINDIR) \ -+ --install_path bindoc=$(DESTDIR)$(MANDIR)/man1 \ -+ --install_path libdoc=$(DESTDIR)$(MANDIR)/man3 \ - - test-%: %/Build - cd $* && $(PERL) Build test --verbose=0 || true --- -1.7.10.3 - Added: csw/mgar/pkg/munin/trunk/files/0005-Expand-paths-with-DESTDIR.patch =================================================================== --- csw/mgar/pkg/munin/trunk/files/0005-Expand-paths-with-DESTDIR.patch (rev 0) +++ csw/mgar/pkg/munin/trunk/files/0005-Expand-paths-with-DESTDIR.patch 2012-07-28 07:14:06 UTC (rev 18869) @@ -0,0 +1,371 @@ +From c4dbc877ec6bbc288bc584f8d0d13acd35a2e12b Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Sat, 28 Jul 2012 08:19:03 +0200 +Subject: [PATCH 5/6] Expand paths with DESTDIR + +--- + Makefile | 230 +++++++++++++++++++++++++++++++------------------------------- + 1 file changed, 116 insertions(+), 114 deletions(-) + +diff --git a/Makefile b/Makefile +index 7ec659f..8388447 100644 +--- a/Makefile ++++ b/Makefile +@@ -9,6 +9,8 @@ + DEFAULTS = Makefile.config + CONFIG = Makefile.config + ++DESTDIR = ++ + include $(DEFAULTS) + include $(CONFIG) + +@@ -55,8 +57,8 @@ uninstall: + # This removes the installed config so that the next install-pass installs + # a new config. Target _only_ suitable for maintainers. + unconfig: +- rm -f $(HTMLDIR)/.htaccess +- rm -f $(CONFDIR)/munin.conf ++ rm -f $(DESTDIR)$(HTMLDIR)/.htaccess ++ rm -f $(DESTDIR)$(CONFDIR)/munin.conf + + tags: + -rm -f TAGS +@@ -68,63 +70,63 @@ install: install-master-prime install-common-prime install-node-prime install-pl + + install-pre: Makefile Makefile.config + @$(CHECKUSER) +- mkdir -p $(LOGDIR) +- mkdir -p $(STATEDIR) +- mkdir -p $(SPOOLDIR) +- mkdir -p $(CONFDIR) +- $(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) ++ mkdir -p $(DESTDIR)$(LOGDIR) ++ mkdir -p $(DESTDIR)$(STATEDIR) ++ mkdir -p $(DESTDIR)$(SPOOLDIR) ++ mkdir -p $(DESTDIR)$(CONFDIR) ++ #$(CHOWN) $(USER) $(LOGDIR) $(STATEDIR) $(SPOOLDIR) + + install-master-prime: $(INFILES_MASTER) install-pre install-master +- mkdir -p $(CONFDIR)/templates +- mkdir -p $(CONFDIR)/static +- mkdir -p $(CONFDIR)/templates/partial +- mkdir -p $(CONFDIR)/munin-conf.d +- mkdir -p $(LIBDIR) +- mkdir -p $(BINDIR) +- mkdir -p $(PERLLIB) +- mkdir -p $(PERLLIB)/Munin/Master +- mkdir -p $(HTMLDIR) +- mkdir -p $(DBDIR) +- mkdir -p $(DBDIR)/cgi-tmp +- mkdir -p $(CGIDIR) +- +- $(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) +- $(CHMOD) 0755 $(DBDIR) +- +- $(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp +- $(CHMOD) 0755 $(DBDIR)/cgi-tmp ++ mkdir -p $(DESTDIR)$(CONFDIR)/templates ++ mkdir -p $(DESTDIR)$(CONFDIR)/static ++ mkdir -p $(DESTDIR)$(CONFDIR)/templates/partial ++ mkdir -p $(DESTDIR)$(CONFDIR)/munin-conf.d ++ mkdir -p $(DESTDIR)$(LIBDIR) ++ mkdir -p $(DESTDIR)$(BINDIR) ++ mkdir -p $(DESTDIR)$(PERLLIB) ++ mkdir -p $(DESTDIR)$(PERLLIB)/Munin/Master ++ mkdir -p $(DESTDIR)$(HTMLDIR) ++ mkdir -p $(DESTDIR)$(DBDIR) ++ mkdir -p $(DESTDIR)$(DBDIR)/cgi-tmp ++ mkdir -p $(DESTDIR)$(CGIDIR) ++ ++ #$(CHOWN) $(USER) $(HTMLDIR) $(DBDIR) ++ $(CHMOD) 0755 $(DESTDIR)$(DBDIR) ++ ++ #$(CHOWN) $(CGIUSER) $(DBDIR)/cgi-tmp ++ $(CHMOD) 0755 $(DESTDIR)$(DBDIR)/cgi-tmp + + for p in master/www/*.tmpl ; do \ +- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/ ; \ ++ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/ ; \ + done + + for p in master/static/* ; do \ +- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/static/ ; \ ++ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/static/ ; \ + done + + for p in master/www/partial/*.tmpl; do \ +- $(INSTALL) -m 0644 "$$p" $(CONFDIR)/templates/partial/ ; \ ++ $(INSTALL) -m 0644 "$$p" $(DESTDIR)$(CONFDIR)/templates/partial/ ; \ + done + +- $(INSTALL) -m 0644 master/DejaVuSansMono.ttf $(LIBDIR)/ +- $(INSTALL) -m 0644 master/DejaVuSans.ttf $(LIBDIR)/ ++ $(INSTALL) -m 0644 master/DejaVuSansMono.ttf $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0644 master/DejaVuSans.ttf $(DESTDIR)$(LIBDIR)/ + +- test -f $(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(HTMLDIR)/.htaccess +- test -f "$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(CONFDIR)/ ++ test -f $(DESTDIR)$(HTMLDIR)/.htaccess || $(INSTALL) -m 0644 build/master/www/munin-htaccess $(DESTDIR)$(HTMLDIR)/.htaccess ++ test -f "$(DESTDIR)$(CONFDIR)/munin.conf" || $(INSTALL) -m 0644 build/master/munin.conf $(DESTDIR)$(CONFDIR)/ + +- $(INSTALL) -m 0755 build/master/_bin/munin-cron $(BINDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-check $(BINDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-update $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-html $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-graph $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-limits $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(LIBDIR)/ +- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(CGIDIR)/munin-cgi-graph +- $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(CGIDIR)/munin-cgi-html ++ $(INSTALL) -m 0755 build/master/_bin/munin-cron $(DESTDIR)$(BINDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-check $(DESTDIR)$(BINDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-update $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-html $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-graph $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-limits $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-datafile2storable $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-storable2datafile $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-graph $(DESTDIR)$(CGIDIR)/munin-cgi-graph ++ $(INSTALL) -m 0755 build/master/_bin/munin-cgi-html $(DESTDIR)$(CGIDIR)/munin-cgi-html + + # Not ready to be installed yet +-# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(LIBDIR)/ ++# $(INSTALL) -m 0755 build/master/_bin/munin-gather $(DESTDIR)$(LIBDIR)/ + + # ALWAYS DO THE OS SPECIFIC PLUGINS LAST! THAT WAY THEY OVERWRITE THE + # GENERIC ONES +@@ -139,29 +141,29 @@ endif + install-plugins-prime: install-plugins build $(PLUGINS) Makefile Makefile.config + @$(CHECKGROUP) + +- mkdir -p $(CONFDIR)/plugins +- mkdir -p $(CONFDIR)/plugin-conf.d +- mkdir -p $(LIBDIR)/plugins +- mkdir -p $(PLUGSTATE) ++ mkdir -p $(DESTDIR)$(CONFDIR)/plugins ++ mkdir -p $(DESTDIR)$(CONFDIR)/plugin-conf.d ++ mkdir -p $(DESTDIR)$(LIBDIR)/plugins ++ mkdir -p $(DESTDIR)$(PLUGSTATE) + +- $(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) ++ #$(CHOWN) $(PLUGINUSER):$(GROUP) $(PLUGSTATE) + # using g+rwxs, so plugins can create and modify their state file without help +- $(CHMOD) 02775 $(PLUGSTATE) +- $(CHMOD) 0755 $(CONFDIR)/plugin-conf.d ++ #$(CHMOD) 02775 $(PLUGSTATE) ++ #$(CHMOD) 0755 $(CONFDIR)/plugin-conf.d + + for p in build/plugins/node.d/* build/plugins/node.d.$(OSTYPE)/* ; do \ + if test -f "$$p" ; then \ + echo Installing $$p; \ +- $(INSTALL) -m 0755 $$p $(LIBDIR)/plugins/; \ ++ $(INSTALL) -m 0755 $$p $(DESTDIR)$(LIBDIR)/plugins/; \ + fi \ + done +- $(HPUXONLY) mv $(LIBDIR)/plugins/*.adv $(LIBDIR) +- $(INSTALL) -m 0644 build/plugins/plugins.history $(LIBDIR)/plugins/ +- $(INSTALL) -m 0644 build/plugins/plugin.sh $(LIBDIR)/plugins/ ++ $(HPUXONLY) mv $(LIBDIR)/plugins/*.adv $(DESTDIR)$(LIBDIR) ++ $(INSTALL) -m 0644 build/plugins/plugins.history $(DESTDIR)$(LIBDIR)/plugins/ ++ $(INSTALL) -m 0644 build/plugins/plugin.sh $(DESTDIR)$(LIBDIR)/plugins/ + + install-plugins-java: build-plugins-java +- mkdir -p $(JAVALIBDIR) +- $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(JAVALIBDIR)/ ++ mkdir -p $(DESTDIR)$(JAVALIBDIR) ++ $(INSTALL) -m 0644 build/plugins/javalib/munin-jmx-plugins.jar $(DESTDIR)$(JAVALIBDIR)/ + mkdir -p $(LIBDIR)/plugins + for p in build/plugins/node.d.java/*; do \ + if test -f "$$p" ; then \ +@@ -175,37 +177,37 @@ install-plugins-java: build-plugins-java + # or the packager. + + install-async-prime: +- mkdir -p $(LIBDIR) +- $(INSTALL) -m 0755 build/node/_bin/munin-async $(LIBDIR)/ +- $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(LIBDIR)/ ++ mkdir -p $(DESTDIR)$(LIBDIR) ++ $(INSTALL) -m 0755 build/node/_bin/munin-async $(DESTDIR)$(LIBDIR)/ ++ $(INSTALL) -m 0755 build/node/_bin/munin-asyncd $(DESTDIR)$(LIBDIR)/ + + install-node-prime: install-node-pre install-node + + install-node-pre: build/node/munin-node.conf install-pre +- test -f "$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(CONFDIR)/ ++ test -f "$(DESTDIR)$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(DESTDIR)$(CONFDIR)/ + + + install-common-prime: build-common install-common + + + install-man: build-man Makefile Makefile.config +- mkdir -p $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man8 +- $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(MANDIR)/man5/ +- $(INSTALL) -m 0644 build/doc/munin.conf.5 $(MANDIR)/man5/ +- $(INSTALL) -m 0644 build/doc/munin-update.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-limits.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-graph.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-html.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-cron.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin-check.8 $(MANDIR)/man8/ +- $(INSTALL) -m 0644 build/doc/munin.8 $(MANDIR)/man8/ ++ mkdir -p $(DESTDIR)$(MANDIR)/man1 $(DESTDIR)$(MANDIR)/man5 $(DESTDIR)$(MANDIR)/man8 ++ $(INSTALL) -m 0644 build/doc/munin-node.conf.5 $(DESTDIR)$(MANDIR)/man5/ ++ $(INSTALL) -m 0644 build/doc/munin.conf.5 $(DESTDIR)$(MANDIR)/man5/ ++ $(INSTALL) -m 0644 build/doc/munin-update.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-limits.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-graph.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-html.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-cron.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin-check.8 $(DESTDIR)$(MANDIR)/man8/ ++ $(INSTALL) -m 0644 build/doc/munin.8 $(DESTDIR)$(MANDIR)/man8/ + + + install-doc: build-doc + mkdir -p $(DOCDIR)/resources +- $(INSTALL) -m 0644 README $(DOCDIR)/ +- $(INSTALL) -m 0644 COPYING $(DOCDIR)/ +- $(INSTALL) -m 0644 build/resources/* $(DOCDIR)/resources ++ $(INSTALL) -m 0644 README $(DESTDIR)$(DOCDIR)/ ++ $(INSTALL) -m 0644 COPYING $(DESTDIR)$(DOCDIR)/ ++ $(INSTALL) -m 0644 build/resources/* $(DESTDIR)$(DOCDIR)/resources + + ###################################################################### + +@@ -218,29 +220,29 @@ build/%: %.in + @echo "$< -> $@" + @mkdir -p build/`dirname $<` + @sed -e 's|@@PREFIX@@|$(PREFIX)|g' \ +- -e 's|@@CONFDIR@@|$(CONFDIR)|g' \ +- -e 's|@@BINDIR@@|$(BINDIR)|g' \ +- -e 's|@@SBINDIR@@|$(SBINDIR)|g' \ +- -e 's|@@DOCDIR@@|$(DOCDIR)|g' \ +- -e 's|@@LIBDIR@@|$(LIBDIR)|g' \ +- -e 's|@@MANDIR@@|$(MANDIR)|g' \ +- -e 's|@@LOGDIR@@|$(LOGDIR)|g' \ +- -e 's|@@HTMLDIR@@|$(HTMLDIR)|g' \ +- -e 's|@@DBDIR@@|$(DBDIR)|g' \ +- -e 's|@@STATEDIR@@|$(STATEDIR)|g' \ +- -e 's|@@SPOOLDIR@@|$(SPOOLDIR)|g' \ ++ -e 's|@@CONFDIR@@|$(DESTDIR)$(CONFDIR)|g' \ ++ -e 's|@@BINDIR@@|$(DESTDIR)$(BINDIR)|g' \ ++ -e 's|@@SBINDIR@@|$(DESTDIR)$(SBINDIR)|g' \ ++ -e 's|@@DOCDIR@@|$(DESTDIR)$(DOCDIR)|g' \ ++ -e 's|@@LIBDIR@@|$(DESTDIR)$(LIBDIR)|g' \ ++ -e 's|@@MANDIR@@|$(DESTDIR)$(MANDIR)|g' \ ++ -e 's|@@LOGDIR@@|$(DESTDIR)$(LOGDIR)|g' \ ++ -e 's|@@HTMLDIR@@|$(DESTDIR)$(HTMLDIR)|g' \ ++ -e 's|@@DBDIR@@|$(DESTDIR)$(DBDIR)|g' \ ++ -e 's|@@STATEDIR@@|$(DESTDIR)$(STATEDIR)|g' \ ++ -e 's|@@SPOOLDIR@@|$(DESTDIR)$(SPOOLDIR)|g' \ + -e 's|@@PERL@@|$(PERL)|g' \ +- -e 's|@@PERLLIB@@|$(PERLLIB)|g' \ ++ -e 's|@@PERLLIB@@|$(DESTDIR)$(PERLLIB)|g' \ + -e 's|@@PYTHON@@|$(PYTHON)|g' \ + -e 's|@@RUBY@@|$(RUBY)|g' \ + -e 's|@@JAVARUN@@|$(JAVARUN)|g' \ +- -e 's|@@JAVALIBDIR@@|$(JAVALIBDIR)|g' \ ++ -e 's|@@JAVALIBDIR@@|$(DESTDIR)$(JAVALIBDIR)|g' \ + -e 's|@@OSTYPE@@|$(OSTYPE)|g' \ + -e 's|@@HOSTNAME@@|$(HOSTNAME)|g' \ + -e 's|@@MKTEMP@@|$(MKTEMP)|g' \ + -e 's|@@VERSION@@|$(VERSION)|g' \ +- -e 's|@@PLUGSTATE@@|$(PLUGSTATE)|g' \ +- -e 's|@@CGIDIR@@|$(CGIDIR)|g' \ ++ -e 's|@@PLUGSTATE@@|$(DESTDIR)$(PLUGSTATE)|g' \ ++ -e 's|@@CGIDIR@@|$(DESTDIR)$(CGIDIR)|g' \ + -e 's|@@USER@@|$(USER)|g' \ + -e 's|@@GROUP@@|$(GROUP)|g' \ + -e 's|@@PLUGINUSER@@|$(PLUGINUSER)|g' \ +@@ -258,17 +260,17 @@ build-common-pre: common/Build + common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm build-common-pre + rm -f common/blib/lib/Munin/Common/Defaults.pm + $(PERL) -pe 's{(PREFIX \s+=\s).*}{\1q{$(PREFIX)};}x; \ +- s{(CONFDIR \s+=\s).*}{\1q{$(CONFDIR)};}x; \ +- s{(BINDIR \s+=\s).*}{\1q{$(BINDIR)};}x; \ +- s{(SBINDIR \s+=\s).*}{\1q{$(SBINDIR)};}x; \ +- s{(DOCDIR \s+=\s).*}{\1q{$(DOCDIR)};}x; \ +- s{(LIBDIR \s+=\s).*}{\1q{$(LIBDIR)};}x; \ +- s{(MANDIR \s+=\s).*}{\1q{$(MANDIR)};}x; \ +- s{(LOGDIR \s+=\s).*}{\1q{$(LOGDIR)};}x; \ +- s{(HTMLDIR \s+=\s).*}{\1q{$(HTMLDIR)};}x; \ +- s{(DBDIR \s+=\s).*}{\1q{$(DBDIR)};}x; \ +- s{(STATEDIR \s+=\s).*}{\1q{$(STATEDIR)};}x; \ +- s{(SPOOLDIR \s+=\s).*}{\1q{$(SPOOLDIR)};}x; \ ++ s{(CONFDIR \s+=\s).*}{\1q{$(DESTDIR)$(CONFDIR)};}x; \ ++ s{(BINDIR \s+=\s).*}{\1q{$(DESTDIR)$(BINDIR)};}x; \ ++ s{(SBINDIR \s+=\s).*}{\1q{$(DESTDIR)$(SBINDIR)};}x; \ ++ s{(DOCDIR \s+=\s).*}{\1q{$(DESTDIR)$(DOCDIR)};}x; \ ++ s{(LIBDIR \s+=\s).*}{\1q{$(DESTDIR)$(LIBDIR)};}x; \ ++ s{(MANDIR \s+=\s).*}{\1q{$(DESTDIR)$(MANDIR)};}x; \ ++ s{(LOGDIR \s+=\s).*}{\1q{$(DESTDIR)$(LOGDIR)};}x; \ ++ s{(HTMLDIR \s+=\s).*}{\1q{$(DESTDIR)$(HTMLDIR)};}x; \ ++ s{(DBDIR \s+=\s).*}{\1q{$(DESTDIR)$(DBDIR)};}x; \ ++ s{(STATEDIR \s+=\s).*}{\1q{$(DESTDIR)$(STATEDIR)};}x; \ ++ s{(SPOOLDIR \s+=\s).*}{\1q{$(DESTDIR)$(SPOOLDIR)};}x; \ + s{(PERL \s+=\s).*}{\1q{$(PERL)};}x; \ + s{(PERLLIB \s+=\s).*}{\1q{$(PERLLIB)};}x; \ + s{(PYTHON \s+=\s).*}{\1q{$(PYTHON)};}x; \ +@@ -277,8 +279,8 @@ common/blib/lib/Munin/Common/Defaults.pm: common/lib/Munin/Common/Defaults.pm bu + s{(HOSTNAME \s+=\s).*}{\1q{$(HOSTNAME)};}x; \ + s{(MKTEMP \s+=\s).*}{\1q{$(MKTEMP)};}x; \ + s{(VERSION \s+=\s).*}{\1q{$(VERSION)};}x; \ +- s{(PLUGSTATE \s+=\s).*}{\1q{$(PLUGSTATE)};}x; \ +- s{(CGIDIR \s+=\s).*}{\1q{$(CGIDIR)};}x; \ ++ s{(PLUGSTATE \s+=\s).*}{\1q{$(DESTDIR)$(PLUGSTATE)};}x; \ ++ s{(CGIDIR \s+=\s).*}{\1q{$(DESTDIR)$(CGIDIR)};}x; \ + s{(USER \s+=\s).*}{\1q{$(USER)};}x; \ + s{(GROUP \s+=\s).*}{\1q{$(GROUP)};}x; \ + s{(PLUGINUSER \s+=\s).*}{\1q{$(PLUGINUSER)};}x; \ +@@ -384,7 +386,7 @@ old-test: t/*.t + $(MAKE) $@ CONFIG=t/Makefile.config + else + test_plugins = id_default id_root env +-old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) ++old-test: t/*.t t/install $(addprefix $(DESTDIR)$(CONFDIR)/plugins/,$(test_plugins)) + @for test in t/*.t; do \ + echo -n "$$test: "; \ + PERL5LIB=$(PERLLIB) $(PERL) $$test;\ +@@ -392,12 +394,12 @@ old-test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) + endif + + node-monkeywrench: install-node +- rm -rf $(CONFDIR)/plugins +- rm -rf $(LIBDIR)/plugins +- mkdir -p $(LIBDIR)/plugins +- mkdir -p $(CONFDIR)/plugins +- cp monkeywrench/plugin-break*_ $(LIBDIR)/plugins/ +- $(SBINDIR)/munin-node-configure --suggest ++ rm -rf $(DESTDIR)$(CONFDIR)/plugins ++ rm -rf $(DESTDIR)$(LIBDIR)/plugins ++ mkdir -p $(DESTDIR)$(LIBDIR)/plugins ++ mkdir -p $(DESTDIR)$(CONFDIR)/plugins ++ cp monkeywrench/plugin-break*_ $(DESTDIR)$(LIBDIR)/plugins/ ++ $(DESTDIR)$(SBINDIR)/munin-node-configure --suggest + echo 'Done?' + + t/install: +@@ -419,12 +421,12 @@ build-common: common/Build + # can't seem to find a way to persuade it to write otherwhere. + install-%: %/Build + cd $* && $(PERL) Build install \ +- --install_path lib=$(PERLLIB) \ +- --install_path bin=$(BINDIR) \ +- --install_path script=$(BINDIR) \ +- --install_path sbin=$(SBINDIR) \ +- --install_path bindoc=$(MANDIR)/man1 \ +- --install_path libdoc=$(MANDIR)/man3 \ ++ --install_path lib=$(DESTDIR)$(PERLLIB) \ ++ --install_path bin=$(DESTDIR)$(BINDIR) \ ++ --install_path script=$(DESTDIR)$(BINDIR) \ ++ --install_path sbin=$(DESTDIR)$(SBINDIR) \ ++ --install_path bindoc=$(DESTDIR)$(MANDIR)/man1 \ ++ --install_path libdoc=$(DESTDIR)$(MANDIR)/man3 \ + + test-%: %/Build + cd $* && $(PERL) Build test --verbose=0 || true +-- +1.7.10.3 + Added: csw/mgar/pkg/munin/trunk/files/0006-paths-in-Makefile.config.patch =================================================================== --- csw/mgar/pkg/munin/trunk/files/0006-paths-in-Makefile.config.patch (rev 0) +++ csw/mgar/pkg/munin/trunk/files/0006-paths-in-Makefile.config.patch 2012-07-28 07:14:06 UTC (rev 18869) @@ -0,0 +1,120 @@ +From c8297f1d1b8d35e75932c9a43060b8dabb7afc54 Mon Sep 17 00:00:00 2001 +From: Juergen Arndt +Date: Sat, 28 Jul 2012 08:25:46 +0200 +Subject: [PATCH 6/6] paths in Makefile.config + +--- + Makefile.config | 38 +++++++++++++++++++------------------- + 1 file changed, 19 insertions(+), 19 deletions(-) + +diff --git a/Makefile.config b/Makefile.config +index 5bb6d18..7abbec8 100644 +--- a/Makefile.config ++++ b/Makefile.config +@@ -17,10 +17,10 @@ + # + # the base of the Munin installation. + # +-PREFIX = $(DESTDIR)/opt/munin ++PREFIX = /opt/csw + + # Where Munin keeps its configurations (server.conf, client.conf, ++) +-CONFDIR = $(DESTDIR)/etc/opt/munin ++CONFDIR = /etc/opt/csw/munin + + # Server only - where to put munin-cron + BINDIR = $(PREFIX)/bin +@@ -29,20 +29,20 @@ BINDIR = $(PREFIX)/bin + SBINDIR = $(PREFIX)/sbin + + # Where to put text and html documentation +-DOCDIR = $(PREFIX)/doc ++DOCDIR = $(PREFIX)/share/doc/munin + + # Where to put man pages +-MANDIR = $(PREFIX)/man ++MANDIR = $(PREFIX)/share/man + + # Where to put internal binaries and plugin repository +-LIBDIR = $(PREFIX)/lib ++LIBDIR = $(PREFIX)/libexec/munin + + # Server only - Output directory +-HTMLDIR = $(PREFIX)/www/docs +-CGIDIR = $(PREFIX)/www/cgi ++HTMLDIR = /var/opt/csw/munin/www ++CGIDIR = /var/opt/csw/munin/www/cgi-bin + + # Where to put RRD files and other internal data, both master and node +-DBDIR = $(DESTDIR)/var/opt/munin ++DBDIR = /var/opt/csw/munin/db + + # Client only - Where the spool files are written. Must be writable by + # group "munin", and should be preserved between reboots +@@ -53,17 +53,17 @@ SPOOLDIR = $(DBDIR)/spool + PLUGSTATE = $(DBDIR)/plugin-state + + # Where Munin should place its logs. +-LOGDIR = $(PREFIX)/log/munin ++LOGDIR = /var/opt/csw/munin/log + + # Location of PID files and other statefiles. On the server, must be + # writable by the user "munin". +-STATEDIR = $(DESTDIR)/var/run/munin ++STATEDIR = /var/opt/csw/munin/run + + # The perl interpreter to use +-PERL := $(shell which perl) ++PERL := /opt/csw/bin/perl + + # The python interpreter to use (used by some plugins) +-PYTHON := /usr/bin/env python ++PYTHON := /opt/csw/bin/python + + # The ruby interpreter to use (used by some plugins) + RUBY := /usr/bin/env ruby +@@ -89,11 +89,11 @@ JAVALIBDIR = $(LIBDIR) + GOODSH := $(shell PATH=`getconf PATH 2>/dev/null || echo $(PATH)` sh -c 'type sh | sed "s/.* //"') + + # Path of bash for bash specific plugins +-BASH := /bin/bash ++BASH := /usr/bin/bash + + # Server only - Where to install the perl libraries + PERLSITELIB := $(shell $(PERL) -V:sitelib | cut -d"'" -f2) +-PERLLIB = $(DESTDIR)$(PERLSITELIB) ++PERLLIB = $(shell $(PERL) -V:sitelib | cut -d"'" -f2) + + # Client only - Install plugins for this architecture + # the LANG=C makes tr work as expected, not regarding any locale it +@@ -108,7 +108,7 @@ HOSTNAME := $(shell hostname) + # What is the safest way to create a tempfile. + # Default is to figure it out by testing various methods. + # Replace this with a known platform-specific method +-MKTEMP := $(shell ./test-mktemp) ++MKTEMP := $(shell mktemp) + + # Munin version number. + VERSION := $(shell ./getversion) +@@ -126,9 +126,9 @@ CGIUSER := nobody + # Which command to use to check if the USER and GROUP to run Munin as, exists. + # These will work on most modern OSes: + # +-GETENT := $(shell which getent || which true 2>/dev/null) +-CHECKUSER := $(shell $(GETENT) passwd $(USER) >/dev/null 2>/dev/null || (echo "echo User $(USER) nonexistent. Create the user and retry; exit 2")) +-CHECKGROUP := $(shell $(GETENT) group $(GROUP) >/dev/null 2>/dev/null || (echo "echo Group $(GROUP) nonexistent. Create the group and retry; exit 2")) ++#GETENT := $(shell which getent || which true 2>/dev/null) ++#CHECKUSER := $(shell $(GETENT) passwd $(USER) >/dev/null 2>/dev/null || (echo "echo User $(USER) nonexistent. Create the user and retry; exit 2")) ++#CHECKGROUP := $(shell $(GETENT) group $(GROUP) >/dev/null 2>/dev/null || (echo "echo Group $(GROUP) nonexistent. Create the group and retry; exit 2")) + + # For OSX, comment out the previous two lines and comment in these + # +@@ -163,4 +163,4 @@ JAR := jar + JCVALID = $(shell $(JC) -version >/dev/null 2>/dev/null && echo "yes") + + # Check whether setruid functionality can be used +-HASSETR := $(shell perl -e 'use Config; my @vars=("d_setruid", "d_setreuid", "d_setresuid"); foreach my $$var (@vars) { if ($$Config{$$var} eq "define") { print "1\n"; exit 0; } } print "0\n"; exit 0;' ) ++HASSETR := $(shell /opt/csw/bin/perl -e 'use Config; my @vars=("d_setruid", "d_setreuid", "d_setresuid"); foreach my $$var (@vars) { if ($$Config{$$var} eq "define") { print "1\n"; exit 0; } } print "0\n"; exit 0;' ) +-- +1.7.10.3 + 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 Jul 29 10:14:54 2012 From: wahwah at users.sourceforge.net (wahwah at users.sourceforge.net) Date: Sun, 29 Jul 2012 08:14:54 +0000 Subject: [csw-devel] SF.net SVN: gar:[18870] csw/mgar/pkg/mysql5/branches/mysql-5.5.x/files/ cswmysql5.tpl Message-ID: Revision: 18870 http://gar.svn.sourceforge.net/gar/?rev=18870&view=rev Author: wahwah Date: 2012-07-29 08:14:53 +0000 (Sun, 29 Jul 2012) Log Message: ----------- mysql5/branches/mysql-5.5.x: Apply contributed start script Modified Paths: -------------- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/files/cswmysql5.tpl Modified: csw/mgar/pkg/mysql5/branches/mysql-5.5.x/files/cswmysql5.tpl =================================================================== --- csw/mgar/pkg/mysql5/branches/mysql-5.5.x/files/cswmysql5.tpl 2012-07-28 07:14:06 UTC (rev 18869) +++ csw/mgar/pkg/mysql5/branches/mysql-5.5.x/files/cswmysql5.tpl 2012-07-29 08:14:53 UTC (rev 18870) @@ -1,206 +1,386 @@ #!/bin/sh # vim:ft=sh: # -# $Id$ -# Start script for MySQL database. +# Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB +# This file is public domain and comes with NO WARRANTY of any kind + +# MySQL daemon start/stop script. + +# Usually this is put in /etc/init.d (at least on machines SYSV R4 based +# systems) and linked to /etc/rc3.d/S99mysql and /etc/rc0.d/K01mysql. +# When this is done the mysql server will be started when the machine is +# started and shut down when the systems goes down. + +# Comments to support chkconfig on RedHat Linux +# chkconfig: 2345 64 36 +# description: A very fast and reliable SQL database engine. + +# Comments to support LSB init script conventions +### BEGIN INIT INFO +# Provides: mysql +# Required-Start: $local_fs $network $remote_fs +# Should-Start: ypbind nscd ldap ntpd xntpd +# Required-Stop: $local_fs $network $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: start and stop MySQL +# Description: MySQL is a very fast and reliable SQL database engine. +### END INIT INFO + +# If you install MySQL on some other places than /opt/mysql-5.5.19, then you +# have to do one of the following things for this script to work: # -# NOTE: Make sure DB_DIR is owned BY the mysql user and group and chmod -# 700. +# - Run this script from within the MySQL installation directory +# - Create a /etc/my.cnf file with the following information: +# [mysqld] +# basedir= +# - Add the above to any other configuration file (for example ~/.my.ini) +# and copy my_print_defaults to /usr/bin +# - Add the path to the mysql-installation-directory to the basedir variable +# below. # -# First time installation can use quick_start-csw in -# /opt/csw/mysql5/share/mysql to build the mysql database for the -# grant tables. Or create the initial database yourself. -# -# Use my.cnf for startup options. See MySQL documention -# for 'Using Option Files'. -# Support for mysql5rc still remains in this startup script. -# +# If you want to affect other MySQL variables, you should make your changes +# in the /etc/my.cnf, ~/.my.cnf or other MySQL configuration files. -RETVAL=0 -prefix="@prefix@" -BASEDIR="${prefix}" -BINDIR="@bindir@" -MYSQL_VAR="@localstatedir@" -sysconfdir="@sysconfdir@" -BASE_VERSION="@BASE_VERSION@" -MYSQLD_DATADIR=$MYSQL_VAR -MYSQLD_PID_FILE=$MYSQL_VAR/mysql.pid -CONFFILE=${sysconfdir}/my.cnf +# If you change base dir, you must also change datadir. These may get +# overwritten by settings in the MySQL configuration files. -# Source the configuration -[ -r /opt/csw/mysql5/etc/mysql5rc ] && . /opt/csw/mysql5/etc/mysql5rc -[ -r @prefix@/etc/mysql5rc ] && . @prefix@/etc/mysql5rc -[ -r /etc/opt/csw/mysql5rc ] && . /etc/opt/csw/mysql5rc +basedir= +datadir= -if [ -r "${sysconfdir}/my.cnf" ]; then - MYSQL_HOME="${MYSQL_VAR}" -elif [ -r "${BASEDIR}/my.cnf" ]; then - MYSQL_HOME="${BASEDIR}" -fi -export MYSQL_HOME +# Default value, in seconds, afterwhich the script should timeout waiting +# for server start. +# Value here is overriden by value in my.cnf. +# 0 means don't wait at all +# Negative numbers mean to wait indefinitely +service_startup_timeout=900 -# To get started quickly, copy a sample configuration file from -# $BASEDIR/share/mysql -# For example, -# cp /opt/csw/mysql5/share/mysql/my-medium.cnf /opt/csw/mysql5/var/my.cnf -# -# Or, manually follow the database creation steps below, and have -# mysql just use defaults for everything. +# Lock directory for RedHat / SuSE. +lockdir='/var/lock/subsys' +lock_file_path="$lockdir/mysql" -# 2006-03-11 Changed to only look for the grant tables database -# 2006-04-16 Changed again. Look for either the grant tables database -# or the options file. -# 2006-12-28 Fix problem. Look for either the grant tables database in -# the default location or the default options file. -if [ ! -d "$MYSQLD_DATADIR/mysql" -a ! -f "$CONFFILE" ] ; then - exit 0 -fi +# The following variables are only set for letting mysql.server find things. -# If CONFFILE is the server default file, unset CONFFILE -if [ "${CONFFILE}" = "${MYSQL_HOME}/my.cnf" \ - -o \ - "${CONFFILE}" = "${sysconfdir}/my.cnf" ]; then - CONFFILE= +# Set some defaults +mysqld_pid_file_path= +if test -z "$basedir" +then + basedir=@prefix@ + bindir=@bindir@ + if test -z "$datadir" + then + datadir=@localstatedir@/mysql5 + fi + sbindir=@prefix@/libexec + libexecdir=@prefix@/libexec +else + bindir="$basedir/bin" + if test -z "$datadir" + then + datadir="$basedir/data" + fi + sbindir="$basedir/libexec" + libexecdir="$basedir/libexec" fi -# If MYSQLD_DATADIR does not contain a mysql directory, unset MYSQLD_DATADIR -# Also, check that MYSQLD_DATADIR contains a mysql directory -if [ ! -d "$MYSQL_HOME/mysql" -a ! -d "$MYSQLD_DATADIR/mysql" ] ; then - MYSQLD_DATADIR= +# datadir_set is used to determine if datadir was set (and so should be +# *not* set inside of the --basedir= handler.) +datadir_set= + +# +# Use LSB init script functions for printing messages, if possible +# +lsb_functions="/lib/lsb/init-functions" +if test -f $lsb_functions ; then + . $lsb_functions +else + log_success_msg() + { + echo " SUCCESS! $@" + } + log_failure_msg() + { + echo " ERROR! $@" + } fi -# Make sure required vars are set -MYSQLD_PID_FILE=${MYSQLD_PID_FILE:=$MYSQL_HOME/mysql.pid} +PATH="/sbin:/usr/sbin:/bin:/usr/bin:$basedir/bin" +export PATH -# If a database already exists, start whether or not there is a conf file. -# If no conf file, the database will just use internal defaults for everything. +mode=$1 # start or stop -start_it() { - if test -r $MYSQLD_PID_FILE ; then - if kill -0 `cat $MYSQLD_PID_FILE` > /dev/null 2>&1 ; then - echo "${MYSQLD_PROG} (`cat $MYSQLD_PID_FILE`) seems to be running." - return 1 - fi - fi +[ $# -ge 1 ] && shift - printf "%-60s" "Starting ${MYSQLD_PROG}: " - # 2006-03-11 - # This script no longer creates the default database. You may create the - # default database manually or use - # /opt/csw/mysql5/share/mysql/quick_start-csw - # if [ ! -d "$BASEDIR/var/mysql" ] ; then - # echo MySQL core database has not been created. - # echo Creating it now... - # $BASEDIR/bin/mysql_install_db - # chown -R mysql:mysql $BASEDIR/var - # fi +other_args="$*" # uncommon, but needed when called from an RPM upgrade action + # Expected: "--skip-networking --skip-grant-tables" + # They are not checked here, intentionally, as it is the resposibility + # of the "spec" file author to give correct arguments only. - # 2006-04-16 --defaults-file is changed to --defaults-extra-file - ${BINDIR}/mysqld_safe \ - `[ -n "$CONFFILE" ] && echo "--defaults-extra-file=$CONFFILE"` \ - --pid-file=$MYSQLD_PID_FILE \ - `[ -n "$MYSQLD_PROG" ] && echo "--mysqld=$MYSQLD_PROG"` \ - `[ -n "$MYSQLD_ANSI" ] && echo "--ansi"` \ - `[ -n "$MYSQLD_BASEDIR" ] && echo "--basedir=$MYSQLD_BASEDIR"` \ - `[ -n "$MYSQLD_BIG_TABLES" ] && echo "--big-tables"` \ - `[ -n "$MYSQLD_BIND_ADDRESS" ] && echo "--bind-address=$MYSQLD_BIND_ADDRESS"` \ - `[ -n "$MYSQLD_CHARACTER_SETS" ] && echo "--character-sets-dir=$MYSQLD_CHARACTER_SETS"` \ - `[ -n "$MYSQLD_CHROOT" ] && echo "--chroot=$MYSQLD_CHROOT"` \ - `[ -n "$MYSQLD_DATADIR" ] && echo "--datadir=$MYSQLD_DATADIR"` \ - `[ -n "$MYSQLD_DEFAULT_CHARSET" ] && echo "--default-character-set=$MYSQLD_DEFAULT_CHARSET"` \ - `[ -n "$MYSQLD_DEFAULT_TABLE_TYPE" ] && echo "--default-table-type=$MYSQLD_DEFAULT_TABLE_TYPE"` \ - `[ -n "$MYSQLD_DELAY_KEY_WRITE_TABLES" ] && echo "--delay-key-write-for-all-tables"` \ - `[ -n "$MYSQLD_ENABLE_LOCKING" ] && echo "--enable-locking"` \ - `[ -n "$MYSQLD_EXIT_INFO" ] && echo "--exit-info"` \ - `[ -n "$MYSQLD_FLUSH" ] && echo "--flush"` \ - `[ -n "$MYSQLD_INIT_FILE" ] && echo "--init-file=$MYSQLD_INIT_FILE"` \ - `[ -n "$MYSQLD_LANGUAGE" ] && echo "--language=$MYSQLD_LANGUAGE"` \ - `[ -n "$MYSQLD_LOG" ] && echo "--log=$MYSQLD_LOG"` \ - `[ -n "$MYSQLD_LOG_ISAM" ] && echo "--log-isam=$MYSQLD_LOG_ISAM"` \ - `[ -n "$MYSQLD_LOG_SLOW_QUERIES" ] && echo "--log-slow-queries=$MYSQLD_LOG_SLOW_QUERIES"` \ - `[ -n "$MYSQLD_LOG_UPDATE" ] && echo "--log-update=$MYSQLD_LOG_UPDATE"` \ - `[ -n "$MYSQLD_LOG_LONG_FORMAT" ] && echo "--log-long-format"` \ - `[ -n "$MYSQLD_LOW_PRIORITY_UPDATES" ] && echo "--low-priority-updates"` \ - `[ -n "$MYSQLD_MEMLOCK" ] && echo "--memlock"` \ - `[ -n "$MYSQLD_MYISAM_RECOVER" ] && echo "--myisam-recover=$MYSQLD_MYISAM_RECOVER"` \ - `[ -n "$MYSQLD_PORT" ] && echo "--port=$MYSQLD_PORT"` \ - `[ -n "$MYSQLD_OLD_PROTOCOL" ] && echo "--old-protocol"` \ - `[ -n "$MYSQLD_ONE_THREAD" ] && echo "--one-thread"` \ - `[ -n "$MYSQLD_SET_VARIABLE" ] && echo "--set-variablevar=$MYSQLD_SET_VARIABLE"` \ - `[ -n "$MYSQLD_SKIP_GRANT_TABLES" ] && echo "--skip-grant-tables"` \ - `[ -n "$MYSQLD_SAFE_MODE" ] && echo "--safe-mode"` \ - `[ -n "$MYSQLD_SECURE" ] && echo "--secure"` \ - `[ -n "$MYSQLD_SKIP_CONCURRENT_INSERT" ] && echo "--skip-concurrent-insert"` \ - `[ -n "$MYSQLD_SKIP_DELAY_KEY_WRITE" ] && echo "--skip-delay-key-write"` \ - `[ -n "$MYSQLD_SKIP_LOCKING" ] && echo "--skip-locking"` \ - `[ -n "$MYSQLD_SKIP_NAME_RESOLVE" ] && echo "--skip-name-resolve"` \ - `[ -n "$MYSQLD_SKIP_NETWORKING" ] && echo "--skip-networking"` \ - `[ -n "$MYSQLD_SKIP_NEW" ] && echo "--skip-new"` \ - `[ -n "$MYSQLD_SKIP_HOST_CACHE" ] && echo "--skip-host-cache"` \ - `[ -n "$MYSQLD_SKIP_SHOW_DATABASE" ] && echo "--skip-show-database"` \ - `[ -n "$MYSQLD_SKIP_THREAD_PRIORITY" ] && echo "--skip-thread-priority"` \ - `[ -n "$MYSQLD_SOCKET" ] && echo "--socket=$MYSQLD_SOCKET"` \ - `[ -n "$MYSQLD_TMPDIR" ] && echo "--tmpdir=$MYSQLD_TMPDIR"` \ - `[ -n "$MYSQLD_USER" ] && echo "--user=$MYSQLD_USER"` \ - & >/dev/null 2>&1 - RETVAL=$? - if [ $RETVAL = 0 ] ; then - echo "[ OK ]" - else - echo "[FAILED]" - return 1 - fi - return 0 +case `echo "testing\c"`,`echo -n testing` in + *c*,-n*) echo_n= echo_c= ;; + *c*,*) echo_n=-n echo_c= ;; + *) echo_n= echo_c='\c' ;; +esac + +parse_server_arguments() { + for arg do + case "$arg" in + --basedir=*) basedir=`echo "$arg" | sed -e 's/^[^=]*=//'` + bindir="$basedir/bin" + if test -z "$datadir_set"; then + datadir="$basedir/data" + fi + sbindir="$basedir/sbin" + libexecdir="$basedir/libexec" + ;; + --datadir=*) datadir=`echo "$arg" | sed -e 's/^[^=]*=//'` + datadir_set=1 + ;; + --pid-file=*) mysqld_pid_file_path=`echo "$arg" | sed -e 's/^[^=]*=//'` ;; + --service-startup-timeout=*) service_startup_timeout=`echo "$arg" | sed -e 's/^[^=]*=//'` ;; + esac + done } -stop_it() { +wait_for_pid () { + verb="$1" # created | removed + pid="$2" # process ID of the program operating on the pid-file + pid_file_path="$3" # path to the PID file. - printf "%-60s" "Shutting down mysqld: " - if test -f "$MYSQLD_PID_FILE" ; then - pkill `pgrep_opts` mysqld_safe >/dev/null 2>&1 - kill `cat $MYSQLD_PID_FILE` >/dev/null 2>&1 - RETVAL=$? - else - RETVAL=1 + i=0 + avoid_race_condition="by checking again" + + while test $i -ne $service_startup_timeout ; do + + case "$verb" in + 'created') + # wait for a PID-file to pop into existence. + test -s "$pid_file_path" && i='' && break + ;; + 'removed') + # wait for this PID-file to disappear + test ! -s "$pid_file_path" && i='' && break + ;; + *) + echo "wait_for_pid () usage: wait_for_pid created|removed pid pid_file_path" + exit 1 + ;; + esac + + # if server isn't running, then pid-file will never be updated + if test -n "$pid"; then + if kill -0 "$pid" 2>/dev/null; then + : # the server still runs + else + # The server may have exited between the last pid-file check and now. + if test -n "$avoid_race_condition"; then + avoid_race_condition="" + continue # Check again. + fi + + # there's nothing that will affect the file. + log_failure_msg "The server quit without updating PID file ($pid_file_path)." + return 1 # not waiting any more. + fi fi - if [ $RETVAL = 0 ] ; then - echo "[ OK ]" - else - echo "[FAILED]" - fi - echo "" + + echo $echo_n ".$echo_c" + i=`expr $i + 1` + sleep 1 + + done + + if test -z "$i" ; then + log_success_msg return 0 + else + log_failure_msg + return 1 + fi } -pgrep_opts() { - if [ -x /bin/zonename ] +# Get arguments from the my.cnf file, +# the only group, which is read from now on is [mysqld] +if test -x ./bin/my_print_defaults +then + print_defaults="./bin/my_print_defaults" +elif test -x $bindir/my_print_defaults +then + print_defaults="$bindir/my_print_defaults" +elif test -x $bindir/mysql_print_defaults +then + print_defaults="$bindir/mysql_print_defaults" +else + # Try to find basedir in @sysconfdir@/my.cnf + conf=@sysconfdir@/my.cnf + print_defaults= + if test -r $conf then - echo "-z `/bin/zonename`" + subpat='^[^=]*basedir[^=]*=\(.*\)$' + dirs=`sed -e "/$subpat/!d" -e 's//\1/' $conf` + for d in $dirs + do + d=`echo $d | sed -e 's/[ ]//g'` + if test -x "$d/bin/my_print_defaults" + then + print_defaults="$d/bin/my_print_defaults" + break + fi + if test -x "$d/bin/mysql_print_defaults" + then + print_defaults="$d/bin/mysql_print_defaults" + break + fi + done fi -} -case $1 in - start) - start_it + # Hope it's in the PATH ... but I doubt it + test -z "$print_defaults" && print_defaults="my_print_defaults" +fi + +# +# Read defaults file from 'basedir'. If there is no defaults file there +# check if it's in the old (depricated) place (datadir) and read it from there +# + +extra_args="" +if test -r "$basedir/my.cnf" +then + extra_args="-e $basedir/my.cnf" +else + if test -r "$datadir/my.cnf" + then + extra_args="-e $datadir/my.cnf" + fi +fi + +parse_server_arguments `$print_defaults $extra_args mysqld server mysql_server mysql.server` + +# +# Set pid file if not given +# +if test -z "$mysqld_pid_file_path" +then + mysqld_pid_file_path=$datadir/`hostname`.pid +else + case "$mysqld_pid_file_path" in + /* ) ;; + * ) mysqld_pid_file_path="$datadir/$mysqld_pid_file_path" ;; + esac +fi + +case "$mode" in + 'start') + # Start daemon + + # Safeguard (relative paths, core dumps..) + cd $basedir + + echo $echo_n "Starting MySQL" + if test -x $bindir/mysqld_safe + then + # Give extra arguments to mysqld with the my.cnf file. This script + # may be overwritten at next upgrade. + $bindir/mysqld_safe --datadir="$datadir" --pid-file="$mysqld_pid_file_path" $other_args >/dev/null 2>&1 & + wait_for_pid created "$!" "$mysqld_pid_file_path"; return_value=$? + + # Make lock for RedHat / SuSE + if test -w "$lockdir" + then + touch "$lock_file_path" + fi + + exit $return_value + else + log_failure_msg "Couldn't find MySQL server ($bindir/mysqld_safe)" + fi ;; - stop) - stop_it + 'stop') + # Stop daemon. We use a signal here to avoid having to know the + # root password. + + if test -s "$mysqld_pid_file_path" + then + mysqld_pid=`cat "$mysqld_pid_file_path"` + + if (kill -0 $mysqld_pid 2>/dev/null) + then + echo $echo_n "Shutting down MySQL" + kill $mysqld_pid + # mysqld should remove the pid file when it exits, so wait for it. + wait_for_pid removed "$mysqld_pid" "$mysqld_pid_file_path"; return_value=$? + else + log_failure_msg "MySQL server process #$mysqld_pid is not running!" + rm "$mysqld_pid_file_path" + fi + + # Delete lock for RedHat / SuSE + if test -f "$lock_file_path" + then + rm -f "$lock_file_path" + fi + exit $return_value + else + log_failure_msg "MySQL server PID file could not be found!" + fi ;; - restart) - stop_it - while pgrep `pgrep_opts` ${MYSQLD_PROG} > /dev/null - do - sleep 1 - done - start_it + 'restart') + # Stop the service and regardless of whether it was + # running or not, start it again. + if $0 stop $other_args; then + $0 start $other_args + else + log_failure_msg "Failed to stop running server, so refusing to try to start." + exit 1 + fi ;; + 'reload'|'force-reload') + if test -s "$mysqld_pid_file_path" ; then + read mysqld_pid < "$mysqld_pid_file_path" + kill -HUP $mysqld_pid && log_success_msg "Reloading service MySQL" + touch "$mysqld_pid_file_path" + else + log_failure_msg "MySQL PID file could not be found!" + exit 1 + fi + ;; + 'status') + # First, check to see if pid file exists + if test -s "$mysqld_pid_file_path" ; then + read mysqld_pid < "$mysqld_pid_file_path" + if kill -0 $mysqld_pid 2>/dev/null ; then + log_success_msg "MySQL running ($mysqld_pid)" + exit 0 + else + log_failure_msg "MySQL is not running, but PID file exists" + exit 1 + fi + else + # Try to find appropriate mysqld process + mysqld_pid=`pgrep $libexecdir/mysqld` + if test -z "$mysqld_pid" ; then + if test -f "$lock_file_path" ; then + log_failure_msg "MySQL is not running, but lock file ($lock_file_path) exists" + exit 2 + fi + log_failure_msg "MySQL is not running" + exit 3 + else + log_failure_msg "MySQL is running but PID file could not be found" + exit 4 + fi + fi + ;; *) - echo "Usage: $0 { start | stop | restart } " + # usage + basename=`basename "$0"` + echo "Usage: $basename {start|stop|restart|reload|force-reload|status} [ MySQL server options ]" + exit 1 ;; esac -exit $RETVAL +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 Mon Jul 30 03:14:22 2012 From: bdwalton at users.sourceforge.net (bdwalton at users.sourceforge.net) Date: Mon, 30 Jul 2012 01:14:22 +0000 Subject: [csw-devel] SF.net SVN: gar:[18871] csw/mgar/pkg/cswclassutils/trunk/files Message-ID: Revision: 18871 http://gar.svn.sourceforge.net/gar/?rev=18871&view=rev Author: bdwalton Date: 2012-07-30 01:14:22 +0000 (Mon, 30 Jul 2012) Log Message: ----------- i.cswcrontab: protect against first run where user has no crontab; mantis 4887 Modified Paths: -------------- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcrontab csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcrontab =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcrontab 2012-07-29 08:14:53 UTC (rev 18870) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswcrontab 2012-07-30 01:14:22 UTC (rev 18871) @@ -68,12 +68,14 @@ TMPFILE=/tmp/cswcrontab.${PKGINST}.$$ - umask 600 - /usr/bin/crontab -l ${USERNAME} | remove_cron_lines "${PKGINST}" "${TMPFILE}" + if [ -f "/var/spool/cron/crontabs/${USERNAME}" ]; then + umask 600 + /usr/bin/crontab -l ${USERNAME} | remove_cron_lines "${PKGINST}" "${TMPFILE}" - debug "Contents of ${TMPFILE} after removing old lines from this package:" - if [ -n "${classutils_debug:-}" ]; then - cat ${TMPFILE} >&2 + debug "Contents of ${TMPFILE} after removing old lines from this package:" + if [ -n "${classutils_debug:-}" ]; then + cat ${TMPFILE} >&2 + fi fi while read LINE; do Modified: csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf =================================================================== --- csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2012-07-29 08:14:53 UTC (rev 18870) +++ csw/mgar/pkg/cswclassutils/trunk/files/CSWcswclassutils.i.cswinitsmf 2012-07-30 01:14:22 UTC (rev 18871) @@ -23,6 +23,7 @@ # 2009-08-10 Fix autoenable bug (Bug ID 0003785) # 2010-10-25 Fix grep bug in FMRI 'dot in name' detection (Bug ID 0004588) # 2011-04-21 Read absolute state value instead of defaulting to enabled +# 2012-07-26 Better handle -R (alt root) for BE patching, etc. -bw DEBUG= # clear to disable debug, set to anything to enable SVCDIR=/var/opt/csw/svc @@ -110,11 +111,11 @@ testpath=$SVCDIR/manifest for i in `echo $FMRI | sed 's/\// /g'`; do testpath=$testpath/$i - if [ ! -d $testpath ]; then + if [ ! -d $PKG_INSTALL_ROOT/$testpath ]; then echo Creating $testpath ... - /usr/bin/mkdir $testpath - /usr/bin/chown root:bin $testpath - /usr/bin/chmod 755 $testpath + /usr/bin/mkdir $PKG_INSTALL_ROOT/$testpath + /usr/bin/chown root:bin $PKG_INSTALL_ROOT/$testpath + /usr/bin/chmod 755 $PKG_INSTALL_ROOT/$testpath /usr/sbin/installf -c cswinitsmf $PKGINST $testpath d 755 root bin fi done @@ -122,10 +123,10 @@ echo FMRI: $FMRI fi echo Creating service script in $SVCDIR/method/svc-$service ... - /usr/bin/ln -s $dest $SVCDIR/method/svc-$service + /usr/bin/ln -s $dest $PKG_INSTALL_ROOT/$SVCDIR/method/svc-$service /usr/sbin/installf -c cswinitsmf $PKGINST $SVCDIR/method/svc-$service=$dest s - /usr/bin/chmod 755 $SVCDIR/method/svc-$service - /usr/bin/chown root:bin $SVCDIR/method/svc-$service + /usr/bin/chmod 755 $PKG_INSTALL_ROOT/$SVCDIR/method/svc-$service + /usr/bin/chown root:bin $PKG_INSTALL_ROOT/$SVCDIR/method/svc-$service MANIFEST= if [ "`grep '^#MANIFEST' $dest`" ]; then @@ -136,7 +137,7 @@ echo Creating manifest ... # Add first part of manifest MANIFEST=$SVCDIR/manifest/$FMRI/$service.xml - cat > $MANIFEST << EOF + cat > $PKG_INSTALL_ROOT/$MANIFEST << EOF