summaryrefslogtreecommitdiff
path: root/sysutils/condor
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-06-05 13:02:35 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-06-05 13:02:35 +0000
commit9396d39081cfca59192f98008de4627e2a4479cf (patch)
treedf372c6f8e6fe345819b1b5f9ccdc4d353223db8 /sysutils/condor
parentUpdate to the 20070604 snapshot of GCC 4.1.3. (diff)
Condor is a open-source, specialized workload management system for
compute-intensive jobs. Like other full-featured batch systems, Condor provides a job queueing mechanism, scheduling policy, priority scheme, resource monitoring, and resource management. Users submit their serial or parallel jobs to Condor, Condor places them into a queue, chooses when and where to run the jobs based upon a policy, carefully monitors their progress, and ultimately informs the user upon completion. Condor also contains mechanisms to submit jobs to grid-sites and supports many different grid toolkits. WWW: http://www.cs.wisc.edu/condor/ PR: ports/112510 Submitted by: Andy Pavlo
Notes
Notes: svn path=/head/; revision=192835
Diffstat (limited to 'sysutils/condor')
-rw-r--r--sysutils/condor/Makefile113
-rw-r--r--sysutils/condor/distinfo3
-rw-r--r--sysutils/condor/files/patch-condor_configure27
-rw-r--r--sysutils/condor/pkg-descr14
-rw-r--r--sysutils/condor/pkg-message15
-rw-r--r--sysutils/condor/pkg-plist734
6 files changed, 906 insertions, 0 deletions
diff --git a/sysutils/condor/Makefile b/sysutils/condor/Makefile
new file mode 100644
index 000000000000..3729b94acaff
--- /dev/null
+++ b/sysutils/condor/Makefile
@@ -0,0 +1,113 @@
+# New ports collection makefile for: condor
+# Date created: 01 May 2007
+# Whom: Andy Pavlo
+#
+# $FreeBSD$
+#
+
+PORTNAME= condor
+PORTVERSION= 6.8.4
+CATEGORIES= sysutils parallel
+MASTER_SITES= http://www.cs.wisc.edu/condor/cgi-bin/downloads/sendfile.pl/${OSREL}/v6.8/
+DISTNAME= condor-${PORTVERSION}-freebsd6-x86-dynamic
+
+MAINTAINER= pavlo@cs.wisc.edu
+COMMENT= Condor High-Throughput Distributed Batch System
+
+ONLY_FOR_ARCHS= amd64 i386
+WRKSRC= ${WRKDIR}/condor-${PORTVERSION}
+OPTIONS= SUBMIT_NODE "Configure system to be able to submit jobs" On \
+ EXECUTE_NODE "Configure system to execute jobs in pool" On \
+ MANAGER_NODE "Configure system as central manager node" On
+USE_LDCONFIG= yes
+NO_BUILD= yes
+#NO_PACKAGE= yes
+USE_PERL5_BUILD= yes
+
+# We conflict with the developer series version of Condor
+CONFLICTS= condor-devel-[0-9]*
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITHOUT_SUBMIT_NODE)
+INSTALL_SUBMIT_NODE=
+.else
+INSTALL_SUBMIT_NODE= submit,
+.endif
+
+.if defined(WITHOUT_EXECUTE_NODE)
+INSTALL_EXECUTE_NODE=
+.else
+INSTALL_EXECUTE_NODE= execute,
+.endif
+
+.if defined(WITHOUT_MANAGER_NODE)
+INSTALL_MANAGER_NODE=
+.else
+INSTALL_MANAGER_NODE= manager,
+.endif
+
+# Where Condor will store files it needs
+LOCAL_DIR= ${DEST_DIR}/var/${PORTNAME}
+
+pre-install:
+ ${MKDIR} ${LOCAL_DIR}/execute
+ ${MKDIR} ${LOCAL_DIR}/spool
+ ${MKDIR} ${LOCAL_DIR}/log
+
+do-install:
+ ${WRKSRC}/condor_configure --type=${INSTALL_SUBMIT_NODE}${INSTALL_EXECUTE_NODE}${INSTALL_MANAGER_NODE} --install=${WRKSRC}/release.tar --install-dir=${PREFIX} --local-dir=${LOCAL_DIR} --maybe-daemon-owner --overwrite
+ ${MV} ${PREFIX}/etc/examples/ ${PREFIX}/etc/condor_config.examples
+ ${PERL} -pi -e "s|^HOSTALLOW_WRITE = .*|HOSTALLOW_WRITE = *|" ${PREFIX}/etc/condor_config
+ ${PERL} -pi -e "s|^MASTER=.*|MASTER=${PREFIX}/sbin/condor_master|" ${PREFIX}/etc/condor_config.examples/condor.boot
+ ${PERL} -pi -e "s|^PS=.*|PS=${PS}|" ${PREFIX}/etc/condor_config.examples/condor.boot
+ ${CP} ${PREFIX}/etc/condor_config.examples/condor.boot ${PREFIX}/etc/rc.d/condor
+
+post-install:
+ ${CAT} ${PKGMESSAGE}
+ @( ${ECHO_MSG} ""; \
+ ${ECHO_MSG} "Set the following parameter in your environment:"; \
+ ${ECHO_MSG} "CONDOR_CONFIG = ${PREFIX}/etc/condor_config"; \
+ ${ECHO_MSG} ""; \
+ ${ECHO_MSG} "Sample configuration files may be found in ${PREFIX}/condor_config.examples/"; \
+ ${ECHO_MSG} ""; \
+ ${ECHO_MSG} "Condor can be started with the following command:"; \
+ ${ECHO_MSG} "${PREFIX}/etc/rc.d/condor start"; \
+ ${ECHO_MSG} "" )
+
+MAN1= condor_advertise.1 \
+ condor_checkpoint.1 \
+ condor_compile.1 \
+ condor_configure.1 \
+ condor_config_val.1 \
+ condor_findhost.1 \
+ condor_glidein.1 \
+ condor_history.1 \
+ condor_hold.1 \
+ condor_master.1 \
+ condor_master_off.1 \
+ condor_off.1 \
+ condor_on.1 \
+ condor_preen.1 \
+ condor_prio.1 \
+ condor_q.1 \
+ condor_qedit.1 \
+ condor_reconfig.1 \
+ condor_rm.1 \
+ condor_reconfig_schedd.1 \
+ condor_release.1 \
+ condor_reschedule.1 \
+ condor_restart.1 \
+ condor_run.1 \
+ condor_stats.1 \
+ condor_status.1 \
+ condor_store_cred.1 \
+ condor_submit.1 \
+ condor_submit_dag.1 \
+ condor_updates_stats.1 \
+ condor_userlog.1 \
+ condor_userprio.1 \
+ condor_vacate.1 \
+ condor_vacate_job.1
+
+.include <bsd.port.post.mk>
diff --git a/sysutils/condor/distinfo b/sysutils/condor/distinfo
new file mode 100644
index 000000000000..e7b6736f5330
--- /dev/null
+++ b/sysutils/condor/distinfo
@@ -0,0 +1,3 @@
+MD5 (condor-6.8.4-freebsd6-x86-dynamic.tar.gz) = 950fa962f2a9b5af20fc572ea506c5c7
+SHA256 (condor-6.8.4-freebsd6-x86-dynamic.tar.gz) = 5e246718ef080564c6c551cc6f8e762f4381bdbd6717ce4f07b189d5e7b6846e
+SIZE (condor-6.8.4-freebsd6-x86-dynamic.tar.gz) = 91225595
diff --git a/sysutils/condor/files/patch-condor_configure b/sysutils/condor/files/patch-condor_configure
new file mode 100644
index 000000000000..ab045fd582fe
--- /dev/null
+++ b/sysutils/condor/files/patch-condor_configure
@@ -0,0 +1,27 @@
+--- condor_configure.orig Thu Feb 1 07:11:10 2007
++++ condor_configure Sat Apr 28 18:26:02 2007
+@@ -134,6 +134,7 @@
+ $opt_maybe_daemon_owner,
+ $opt_install_log,
+ $opt_verbose,
++ $opt_overwrite,
+ );
+
+
+@@ -482,6 +483,7 @@
+ "install-log=s" => \$opt_install_log,
+ "verbose!" => \$opt_verbose,
+ "help" => sub {print $Usage; exit 0},
++ "overwrite" => \$opt_overwrite,
+ ) or die $Usage;
+
+ if ($opt_local_dir && !($opt_local_dir =~ m/^\//)) {
+@@ -629,7 +631,7 @@
+
+ # Move the sbin directories instead of overwriting them,
+ # so that the running daemons don't blow up
+- if ( -d "$release_dir/sbin" ) {
++ if ( !$opt_overwrite && -d "$release_dir/sbin" ) {
+ rename ("$release_dir/sbin", "$release_dir/sbin.old.$timestamp") or
+ die "Unable to move $release_dir/sbin!\n";
+ }
diff --git a/sysutils/condor/pkg-descr b/sysutils/condor/pkg-descr
new file mode 100644
index 000000000000..1001b590e1f7
--- /dev/null
+++ b/sysutils/condor/pkg-descr
@@ -0,0 +1,14 @@
+Condor is a open-source, specialized workload management system for
+compute-intensive jobs. Like other full-featured batch systems, Condor
+provides a job queueing mechanism, scheduling policy, priority scheme,
+resource monitoring, and resource management. Users submit their serial
+or parallel jobs to Condor, Condor places them into a queue, chooses
+when and where to run the jobs based upon a policy, carefully monitors
+their progress, and ultimately informs the user upon completion. Condor
+also contains mechanisms to submit jobs to grid-sites and supports many
+different grid toolkits.
+
+It is developed at the University of Wisconsin-Madison's Department
+of Computer Sciences.
+
+WWW: http://www.cs.wisc.edu/condor/
diff --git a/sysutils/condor/pkg-message b/sysutils/condor/pkg-message
new file mode 100644
index 000000000000..a65945ec162e
--- /dev/null
+++ b/sysutils/condor/pkg-message
@@ -0,0 +1,15 @@
+SECURITY NOTICE:
+Condor has been configured to accepted incoming connections from any
+domain. This is useful for those that are just getting started with
+Condor and does not pose any immediate threat to your system. Nevertheless,
+we recommend changing this to only hosts that you trust to communicate with
+your Condor pool.
+
+See the manual for more information about tuning the HOSTALLOW_* paramters
+in your system's condor_config file.
+
+IMPORTANT:
+You must set the CONDOR_CONFIG environment variable to the value shown
+below before trying to start the master daemon, or submitting jobs to
+Condor. This is will be fixed in future Condor stable series releases.
+It is already fixed in the condor-devel port.
diff --git a/sysutils/condor/pkg-plist b/sysutils/condor/pkg-plist
new file mode 100644
index 000000000000..84c9b233e7f3
--- /dev/null
+++ b/sysutils/condor/pkg-plist
@@ -0,0 +1,734 @@
+bin/condor
+bin/condor_check_userlogs
+bin/condor_checkpoint
+bin/condor_cod
+bin/condor_compile
+bin/condor_config_val
+bin/condor_dagman
+bin/condor_dump_history
+bin/condor_findhost
+bin/condor_glidein
+bin/condor_history
+bin/condor_hold
+bin/condor_prio
+bin/condor_q
+bin/condor_qedit
+bin/condor_release
+bin/condor_reschedule
+bin/condor_rm
+bin/condor_run
+bin/condor_stats
+bin/condor_status
+bin/condor_submit
+bin/condor_submit_dag
+bin/condor_transfer_data
+bin/condor_transferer
+bin/condor_userlog
+bin/condor_userlog_job_counter
+bin/condor_userprio
+bin/condor_vacate
+bin/condor_vacate_job
+bin/condor_version
+bin/condor_wait
+etc/condor_config
+etc/condor_config.examples/README
+etc/condor_config.examples/condor.boot
+etc/condor_config.examples/condor.generic
+etc/condor_config.examples/condor_config.generic
+etc/condor_config.examples/condor_config.local.central.manager
+etc/condor_config.examples/condor_config.local.ckpt.server
+etc/condor_config.examples/condor_config.local.dedicated.resource
+etc/condor_config.examples/condor_config.local.dedicated.submit
+etc/condor_config.examples/condor_config.local.ha_condor_client
+etc/condor_config.examples/condor_config.local.ha_condor_had
+etc/condor_config.examples/condor_config.local.root.ckpt.server
+etc/condor_config.examples/condor_config.local.view_server
+etc/condor_config.examples/condor_config.root.generic
+etc/condor_config.examples/condor_config.submit.generic
+etc/condor_config.examples/lamscript
+etc/condor_config.examples/mp1script
+etc/rc.d/condor
+include/README
+include/chirp_client.h
+include/condor_constants.h
+include/condor_event.h
+include/condor_holdcodes.h
+include/drmaa.h
+include/file_lock.h
+include/user_log.README
+include/user_log.c++.h
+lib/Chirp.jar
+lib/Condor.pm
+lib/CondorJavaInfo.class
+lib/CondorJavaWrapper.class
+lib/Execute.pm
+lib/FileLock.pm
+lib/gt3/build-client.xml
+lib/gt3/build-packages.xml
+lib/gt3/build-samples.xml
+lib/gt3/build-services.xml
+lib/gt3/build-tools.xml
+lib/gt3/build.xml
+lib/gt3/client-config.wsdd
+lib/gt3/client-gui-config.xml
+lib/gt3/client-server-config.wsdd
+lib/gt3/lib/axis.jar
+lib/gt3/lib/cas.jar
+lib/gt3/lib/casClients.jar
+lib/gt3/lib/casServer.jar
+lib/gt3/lib/casTests.jar
+lib/gt3/lib/cog-axis.jar
+lib/gt3/lib/cog-jglobus.jar
+lib/gt3/lib/cog-tomcat.jar
+lib/gt3/lib/commons-collections.jar
+lib/gt3/lib/commons-dbcp.jar
+lib/gt3/lib/commons-discovery.jar
+lib/gt3/lib/commons-logging.jar
+lib/gt3/lib/commons-pool.jar
+lib/gt3/lib/cryptix-asn1.jar
+lib/gt3/lib/cryptix.jar
+lib/gt3/lib/cryptix32.jar
+lib/gt3/lib/exolabcore-0.3.5.jar
+lib/gt3/lib/filestreaming.jar
+lib/gt3/lib/gram-rips.jar
+lib/gt3/lib/grim.jar
+lib/gt3/lib/gt3-gahp.jar
+lib/gt3/lib/jaxrpc.jar
+lib/gt3/lib/jboss-j2ee.jar
+lib/gt3/lib/jce-jdk13-120.jar
+lib/gt3/lib/jgss.jar
+lib/gt3/lib/jug-1.0.1.jar
+lib/gt3/lib/log4j-1.2.8.jar
+lib/gt3/lib/mds-aggregator.jar
+lib/gt3/lib/mds-db.jar
+lib/gt3/lib/mds-index.jar
+lib/gt3/lib/mds-providers.jar
+lib/gt3/lib/mjs.jar
+lib/gt3/lib/mmjfs.jar
+lib/gt3/lib/multirft.jar
+lib/gt3/lib/ogsa-samples.jar
+lib/gt3/lib/ogsa.jar
+lib/gt3/lib/ogsa_messaging_jms.jar
+lib/gt3/lib/openjms-0.7.5.jar
+lib/gt3/lib/opensaml.jar
+lib/gt3/lib/pg73jdbc2.jar
+lib/gt3/lib/puretls.jar
+lib/gt3/lib/saaj.jar
+lib/gt3/lib/sdb.jar
+lib/gt3/lib/servlet.jar
+lib/gt3/lib/wsdl4j.jar
+lib/gt3/lib/wsif.jar
+lib/gt3/lib/xalan.jar
+lib/gt3/lib/xercesImpl.jar
+lib/gt3/lib/xindice-1.1b3.jar
+lib/gt3/lib/xindice-servicegroup-stub.jar
+lib/gt3/lib/xindice-servicegroup.jar
+lib/gt3/lib/xml-apis-1.1.jar
+lib/gt3/lib/xmlParserAPIs.jar
+lib/gt3/lib/xmldb-api-20021118.jar
+lib/gt3/lib/xmldb-api-sdk-20021118.jar
+lib/gt3/lib/xmldb-common.jar
+lib/gt3/lib/xmldb-xupdate.jar
+lib/gt3/lib/xmlrpc-1.1.jar
+lib/gt3/lib/xmlsec.jar
+lib/gt3/local-client-config.wsdd
+lib/gt3/local-server-config.wsdd
+lib/gt3/local-server-config.wsdd.in
+lib/gt3/ogsa.properties
+lib/gt3/schema/NStoPkg.properties
+lib/gt3/schema/base/aggregator/data_aggregator_port_type.gwsdl
+lib/gt3/schema/base/gram/condor_gram_rsl.xsd
+lib/gt3/schema/base/gram/examples/condor_gram_rsl_example_1.xml
+lib/gt3/schema/base/gram/examples/gram_rsl_example_1.xml
+lib/gt3/schema/base/gram/examples/gram_rsl_example_2.xml
+lib/gt3/schema/base/gram/examples/gram_rsl_example_3.xml
+lib/gt3/schema/base/gram/examples/lsf_gram_rsl_example_1.xml
+lib/gt3/schema/base/gram/examples/pbs_gram_rsl_example_1.xml
+lib/gt3/schema/base/gram/examples/scheduler_gram_rsl_example_1.xml
+lib/gt3/schema/base/gram/examples/test.xml
+lib/gt3/schema/base/gram/failure_test.xsd
+lib/gt3/schema/base/gram/gram_rsl.xsd
+lib/gt3/schema/base/gram/lsf_gram_rsl.xsd
+lib/gt3/schema/base/gram/managed_job_bindings.wsdl
+lib/gt3/schema/base/gram/managed_job_port_type.gwsdl
+lib/gt3/schema/base/gram/managed_job_port_type.wsdl
+lib/gt3/schema/base/gram/managed_job_port_type.xsd
+lib/gt3/schema/base/gram/managed_job_service.wsdl
+lib/gt3/schema/base/gram/managed_job_types.wsdl
+lib/gt3/schema/base/gram/managed_job_types.xsd
+lib/gt3/schema/base/gram/mmjfs.gwsdl
+lib/gt3/schema/base/gram/mmjfs.wsdl
+lib/gt3/schema/base/gram/mmjfs_bindings.wsdl
+lib/gt3/schema/base/gram/mmjfs_service.wsdl
+lib/gt3/schema/base/gram/pbs_gram_rsl.xsd
+lib/gt3/schema/base/gram/rips.gwsdl
+lib/gt3/schema/base/gram/rips.wsdl
+lib/gt3/schema/base/gram/rips.xsd
+lib/gt3/schema/base/gram/rips_bindings.wsdl
+lib/gt3/schema/base/gram/rips_service.wsdl
+lib/gt3/schema/base/gram/rsl.xsd
+lib/gt3/schema/base/gram/rsl_enum.xsd
+lib/gt3/schema/base/gram/scheduler_gram_rsl.xsd
+lib/gt3/schema/base/index/index_bindings.wsdl
+lib/gt3/schema/base/index/index_service.wsdl
+lib/gt3/schema/base/index/index_service_port_type.gwsdl
+lib/gt3/schema/base/index/index_service_port_type.wsdl
+lib/gt3/schema/base/multirft/multirft_bindings.wsdl
+lib/gt3/schema/base/multirft/multirft_port_type.gwsdl
+lib/gt3/schema/base/multirft/multirft_port_type.wsdl
+lib/gt3/schema/base/multirft/multirft_port_type.xsd
+lib/gt3/schema/base/multirft/multirft_service.wsdl
+lib/gt3/schema/base/multirft/multirft_types.wsdl
+lib/gt3/schema/base/provider/service_data_provider_execution_port_type.gwsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_bindings.wsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_factory_bindings.wsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_factory_port_type.gwsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_factory_port_type.wsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_factory_service.wsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_port_type.gwsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_port_type.wsdl
+lib/gt3/schema/base/servicegroup/xindice_servicegroup_service.wsdl
+lib/gt3/schema/base/streaming/file_stream_bindings.wsdl
+lib/gt3/schema/base/streaming/file_stream_factory_bindings.wsdl
+lib/gt3/schema/base/streaming/file_stream_factory_port_type.gwsdl
+lib/gt3/schema/base/streaming/file_stream_factory_port_type.wsdl
+lib/gt3/schema/base/streaming/file_stream_factory_service.wsdl
+lib/gt3/schema/base/streaming/file_stream_port_type.gwsdl
+lib/gt3/schema/base/streaming/file_stream_port_type.wsdl
+lib/gt3/schema/base/streaming/file_stream_port_type.xsd
+lib/gt3/schema/base/streaming/file_stream_service.wsdl
+lib/gt3/schema/core/admin/admin_bindings.wsdl
+lib/gt3/schema/core/admin/admin_port_type.gwsdl
+lib/gt3/schema/core/admin/admin_port_type.wsdl
+lib/gt3/schema/core/admin/admin_port_type.xsd
+lib/gt3/schema/core/admin/admin_service.wsdl
+lib/gt3/schema/core/admin/admin_types.wsdl
+lib/gt3/schema/core/factory/gsi_factory_service.wsdl
+lib/gt3/schema/core/logging/logging_bindings.wsdl
+lib/gt3/schema/core/logging/logging_port_type.gwsdl
+lib/gt3/schema/core/logging/logging_port_type.wsdl
+lib/gt3/schema/core/logging/logging_port_type.xsd
+lib/gt3/schema/core/logging/logging_service.wsdl
+lib/gt3/schema/core/management/management_bindings.wsdl
+lib/gt3/schema/core/management/management_port_type.gwsdl
+lib/gt3/schema/core/management/management_port_type.wsdl
+lib/gt3/schema/core/management/management_port_type.xsd
+lib/gt3/schema/core/management/management_service.wsdl
+lib/gt3/schema/core/notification/gsi_notification_sink_service.wsdl
+lib/gt3/schema/core/notification/gsi_notification_subscription_service.wsdl
+lib/gt3/schema/core/notification/jms_adapter_bindings.wsdl
+lib/gt3/schema/core/notification/jms_adapter_port_type.gwsdl
+lib/gt3/schema/core/notification/jms_adapter_port_type.wsdl
+lib/gt3/schema/core/notification/jms_adapter_port_type.xsd
+lib/gt3/schema/core/notification/jms_adapter_service.wsdl
+lib/gt3/schema/core/notification/notification.wsdl
+lib/gt3/schema/core/notification/notification.xsd
+lib/gt3/schema/core/ping/ping_bindings.wsdl
+lib/gt3/schema/core/ping/ping_port_type.gwsdl
+lib/gt3/schema/core/ping/ping_port_type.wsdl
+lib/gt3/schema/core/ping/ping_port_type.xsd
+lib/gt3/schema/core/ping/ping_service.wsdl
+lib/gt3/schema/core/proxy/dummy_proxy_service.wsdl
+lib/gt3/schema/core/proxy/proxy_factory_service.wsdl
+lib/gt3/schema/core/types/properties_detail.wsdl
+lib/gt3/schema/core/types/properties_detail.xsd
+lib/gt3/schema/core/types/query.wsdl
+lib/gt3/schema/core/types/query.xsd
+lib/gt3/schema/core/types/servicedata.wsdl
+lib/gt3/schema/core/types/servicedata.xsd
+lib/gt3/schema/core/types/subscription.wsdl
+lib/gt3/schema/core/types/subscription.xsd
+lib/gt3/schema/core/types/timestamp.wsdl
+lib/gt3/schema/core/types/timestamp.xsd
+lib/gt3/schema/generated/ArraySample/ArraySampleService.wsdl
+lib/gt3/schema/generated/GenerateCounter/GenerateCounterService.wsdl
+lib/gt3/schema/ogsi/gwsdl.xsd
+lib/gt3/schema/ogsi/gwsdl_port_type.wsdl
+lib/gt3/schema/ogsi/gwsdl_port_type.xsd
+lib/gt3/schema/ogsi/ogsi.gwsdl
+lib/gt3/schema/ogsi/ogsi.wsdl
+lib/gt3/schema/ogsi/ogsi.xsd
+lib/gt3/schema/ogsi/ogsi_bindings.wsdl
+lib/gt3/schema/ogsi/ogsi_factory.gwsdl
+lib/gt3/schema/ogsi/ogsi_factory.wsdl
+lib/gt3/schema/ogsi/ogsi_factory_bindings.wsdl
+lib/gt3/schema/ogsi/ogsi_factory_service.wsdl
+lib/gt3/schema/ogsi/ogsi_handle_resolver_service.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_factory.gwsdl
+lib/gt3/schema/ogsi/ogsi_notification_factory.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_factory_bindings.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_factory_service.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_service_group.gwsdl
+lib/gt3/schema/ogsi/ogsi_notification_service_group.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_service_group_bindings.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_service_group_service.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_sink_service.wsdl
+lib/gt3/schema/ogsi/ogsi_notification_subscription_service.wsdl
+lib/gt3/schema/ogsi/ogsi_service.wsdl
+lib/gt3/schema/ogsi/ogsi_service_data.wsdl
+lib/gt3/schema/ogsi/ogsi_service_data.xsd
+lib/gt3/schema/ogsi/ogsi_service_group_entry_service.wsdl
+lib/gt3/schema/ogsi/ogsi_service_group_registration.gwsdl
+lib/gt3/schema/ogsi/ogsi_service_group_registration.wsdl
+lib/gt3/schema/ogsi/ogsi_service_group_registration_bindings.wsdl
+lib/gt3/schema/ogsi/ogsi_service_group_registration_service.wsdl
+lib/gt3/schema/ogsi/service_data.xsd
+lib/gt3/schema/ogsi/wsdl.xsd
+lib/gt3/schema/ogsi/wsdl12.xsd
+lib/gt3/schema/ogsi/xsd.xsd
+lib/gt3/schema/samples/any/any_bindings.wsdl
+lib/gt3/schema/samples/any/any_port_type.wsdl
+lib/gt3/schema/samples/any/any_service.wsdl
+lib/gt3/schema/samples/chat/chat_bindings.wsdl
+lib/gt3/schema/samples/chat/chat_port_type.gwsdl
+lib/gt3/schema/samples/chat/chat_port_type.wsdl
+lib/gt3/schema/samples/chat/chat_port_type.xsd
+lib/gt3/schema/samples/chat/chat_service.wsdl
+lib/gt3/schema/samples/counter/counter_bindings.wsdl
+lib/gt3/schema/samples/counter/counter_port_type.gwsdl
+lib/gt3/schema/samples/counter/counter_port_type.wsdl
+lib/gt3/schema/samples/counter/counter_port_type.xsd
+lib/gt3/schema/samples/counter/counter_service.wsdl
+lib/gt3/schema/samples/counter/encoded_counter_service.wsdl
+lib/gt3/schema/samples/counter/gsi_counter_bindings.wsdl
+lib/gt3/schema/samples/counter/gsi_counter_service.wsdl
+lib/gt3/schema/samples/counter/notification_counter_bindings.wsdl
+lib/gt3/schema/samples/counter/notification_counter_port_type.gwsdl
+lib/gt3/schema/samples/counter/notification_counter_port_type.wsdl
+lib/gt3/schema/samples/counter/notification_counter_service.wsdl
+lib/gt3/schema/samples/counter/routable_counter_bindings.wsdl
+lib/gt3/schema/samples/counter/routable_counter_port_type.gwsdl
+lib/gt3/schema/samples/counter/routable_counter_port_type.wsdl
+lib/gt3/schema/samples/counter/routable_counter_port_type.xsd
+lib/gt3/schema/samples/counter/routable_counter_service.wsdl
+lib/gt3/schema/samples/exception/exception_bindings.wsdl
+lib/gt3/schema/samples/exception/exception_port_type.wsdl
+lib/gt3/schema/samples/exception/exception_service.wsdl
+lib/gt3/schema/samples/extension/counter_multiply_bindings.wsdl
+lib/gt3/schema/samples/extension/counter_multiply_port_type.wsdl
+lib/gt3/schema/samples/extension/counter_multiply_service.wsdl
+lib/gt3/schema/samples/extension/counter_notification_service.wsdl
+lib/gt3/schema/samples/google/google_search_service.wsdl
+lib/gt3/schema/samples/gwsdl/base_port_types.gwsdl
+lib/gt3/schema/samples/gwsdl/top_bindings.wsdl
+lib/gt3/schema/samples/gwsdl/top_port_type.gwsdl
+lib/gt3/schema/samples/gwsdl/top_port_type.wsdl
+lib/gt3/schema/samples/gwsdl/top_port_type.xsd
+lib/gt3/schema/samples/gwsdl/top_service.wsdl
+lib/gt3/schema/samples/notification/sink_listener_bindings.wsdl
+lib/gt3/schema/samples/notification/sink_listener_port_type.gwsdl
+lib/gt3/schema/samples/notification/sink_listener_port_type.wsdl
+lib/gt3/schema/samples/notification/sink_listener_port_type.xsd
+lib/gt3/schema/samples/notification/sink_listener_service.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_all_bindings.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_all_port_type.gwsdl
+lib/gt3/schema/samples/ogsi/ogsi_all_port_type.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_all_port_type.xsd
+lib/gt3/schema/samples/ogsi/ogsi_all_service.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_notification_bindings.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_notification_port_type.gwsdl
+lib/gt3/schema/samples/ogsi/ogsi_notification_port_type.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_notification_service.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_service_group_bindings.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_service_group_port_type.gwsdl
+lib/gt3/schema/samples/ogsi/ogsi_service_group_port_type.wsdl
+lib/gt3/schema/samples/ogsi/ogsi_service_group_service.wsdl
+lib/gt3/schema/samples/registry/vo_registry_service.wsdl
+lib/gt3/schema/samples/servicedata/service_data_bindings.wsdl
+lib/gt3/schema/samples/servicedata/service_data_port_type.gwsdl
+lib/gt3/schema/samples/servicedata/service_data_port_type.wsdl
+lib/gt3/schema/samples/servicedata/service_data_port_type.xsd
+lib/gt3/schema/samples/servicedata/service_data_service.wsdl
+lib/gt3/schema/samples/temperature/xmethods_temperature_service.wsdl
+lib/gt3/schema/samples/weather/weather_bindings.wsdl
+lib/gt3/schema/samples/weather/weather_port_type.wsdl
+lib/gt3/schema/samples/weather/weather_service.wsdl
+lib/gt3/schema/security/authentication/gss_secure_conversation.xsd
+lib/gt3/schema/security/authentication/gss_secure_conversation_bindings.wsdl
+lib/gt3/schema/security/authentication/gss_secure_conversation_port_type.gwsdl
+lib/gt3/schema/security/authentication/gss_secure_conversation_port_type.wsdl
+lib/gt3/schema/security/authentication/gss_secure_conversation_port_type.xsd
+lib/gt3/schema/security/authentication/gss_secure_conversation_service.wsdl
+lib/gt3/schema/tests/complex/NestedArrayService.wsdl
+lib/gt3/schema/tests/complex/NestedService.wsdl
+lib/gt3/schema/tests/security/security_test_port_type.gwsdl
+lib/gt3/schema/tests/serialization/serialization_port_type.gwsdl
+lib/gt3/server-config.wsdd
+lib/gt3/server-config.wsdd.in
+lib/gt4-gahp.jar
+lib/gt4/README.CONDOR_EXTERNAL
+lib/gt4/client-config.wsdd
+lib/gt4/container-log4j.properties
+lib/gt4/endorsed/xalan.jar
+lib/gt4/etc/globus_wsrf_core/client-jndi-config.xml
+lib/gt4/etc/globus_wsrf_core/client-server-config.wsdd
+lib/gt4/etc/globus_wsrf_core/global_security_descriptor.xml
+lib/gt4/etc/globus_wsrf_core/jndi-config.xml
+lib/gt4/etc/globus_wsrf_core/server-config.wsdd
+lib/gt4/lib/addressing-1.0.jar
+lib/gt4/lib/axis-url.jar
+lib/gt4/lib/axis.jar
+lib/gt4/lib/bootstrap.jar
+lib/gt4/lib/cog-axis.jar
+lib/gt4/lib/cog-jglobus.jar
+lib/gt4/lib/cog-tomcat.jar
+lib/gt4/lib/cog-url.jar
+lib/gt4/lib/commonj.jar
+lib/gt4/lib/commons-beanutils.jar
+lib/gt4/lib/commons-cli-2.0.jar
+lib/gt4/lib/commons-collections-3.0.jar
+lib/gt4/lib/commons-dbcp.jar
+lib/gt4/lib/commons-digester.jar
+lib/gt4/lib/commons-discovery.jar
+lib/gt4/lib/commons-logging.jar
+lib/gt4/lib/commons-pool.jar
+lib/gt4/lib/concurrent.jar
+lib/gt4/lib/cryptix-asn1.jar
+lib/gt4/lib/cryptix.jar
+lib/gt4/lib/cryptix32.jar
+lib/gt4/lib/globus_delegation_client.jar
+lib/gt4/lib/globus_delegation_service.jar
+lib/gt4/lib/globus_delegation_stubs.jar
+lib/gt4/lib/globus_usage_core.jar
+lib/gt4/lib/globus_usage_packets_common.jar
+lib/gt4/lib/globus_wsrf_gram_service_java_usage.jar
+lib/gt4/lib/globus_wsrf_mds_aggregator.jar
+lib/gt4/lib/globus_wsrf_mds_aggregator_stubs.jar
+lib/gt4/lib/globus_wsrf_rendezvous_service.jar
+lib/gt4/lib/globus_wsrf_rendezvous_stubs.jar
+lib/gt4/lib/globus_wsrf_rft.jar
+lib/gt4/lib/globus_wsrf_rft_client.jar
+lib/gt4/lib/globus_wsrf_rft_service_java_usage.jar
+lib/gt4/lib/globus_wsrf_rft_stubs.jar
+lib/gt4/lib/globus_wsrf_servicegroup.jar
+lib/gt4/lib/globus_wsrf_servicegroup_stubs.jar
+lib/gt4/lib/gram-client.jar
+lib/gt4/lib/gram-monitoring.jar
+lib/gt4/lib/gram-service.jar
+lib/gt4/lib/gram-stubs.jar
+lib/gt4/lib/gram-utils.jar
+lib/gt4/lib/jaxrpc.jar
+lib/gt4/lib/jce-jdk13-125.jar
+lib/gt4/lib/jgss.jar
+lib/gt4/lib/log4j-1.2.8.jar
+lib/gt4/lib/naming-common.jar
+lib/gt4/lib/naming-factory.jar
+lib/gt4/lib/naming-java.jar
+lib/gt4/lib/naming-resources.jar
+lib/gt4/lib/opensaml.jar
+lib/gt4/lib/pg73jdbc2.jar
+lib/gt4/lib/puretls.jar
+lib/gt4/lib/resolver.jar
+lib/gt4/lib/saaj.jar
+lib/gt4/lib/servlet.jar
+lib/gt4/lib/wsdl4j.jar
+lib/gt4/lib/wsrf_common.jar
+lib/gt4/lib/wsrf_core.jar
+lib/gt4/lib/wsrf_core_registry.jar
+lib/gt4/lib/wsrf_core_registry_stubs.jar
+lib/gt4/lib/wsrf_core_stubs.jar
+lib/gt4/lib/wsrf_mds_usefulrp.jar
+lib/gt4/lib/wsrf_mds_usefulrp_schema_stubs.jar
+lib/gt4/lib/wsrf_provider_jce.jar
+lib/gt4/lib/wsrf_tools.jar
+lib/gt4/lib/wss4j.jar
+lib/gt4/lib/xalan.jar
+lib/gt4/lib/xercesImpl.jar
+lib/gt4/lib/xml-apis.jar
+lib/gt4/lib/xmlsec.jar
+lib/gt4/log4j.properties
+lib/gt4/share/schema/core/management/shutdown_bindings.wsdl
+lib/gt4/share/schema/core/management/shutdown_port_type.wsdl
+lib/gt4/share/schema/core/management/shutdown_service.wsdl
+lib/gt4/share/schema/core/notification/notification_consumer_bindings.wsdl
+lib/gt4/share/schema/core/notification/notification_consumer_flattened.wsdl
+lib/gt4/share/schema/core/notification/notification_consumer_service.wsdl
+lib/gt4/share/schema/core/notification/subscription_manager_bindings.wsdl
+lib/gt4/share/schema/core/notification/subscription_manager_flattened.wsdl
+lib/gt4/share/schema/core/notification/subscription_manager_service.wsdl
+lib/gt4/share/schema/core/registry/registry_bindings.wsdl
+lib/gt4/share/schema/core/registry/registry_entry_bindings.wsdl
+lib/gt4/share/schema/core/registry/registry_entry_flattened.wsdl
+lib/gt4/share/schema/core/registry/registry_entry_service.wsdl
+lib/gt4/share/schema/core/registry/registry_flattened.wsdl
+lib/gt4/share/schema/core/registry/registry_service.wsdl
+lib/gt4/share/schema/core/samples/authzService/authzService_bindings.wsdl
+lib/gt4/share/schema/core/samples/authzService/authzService_flattened.wsdl
+lib/gt4/share/schema/core/samples/authzService/authzService_service.wsdl
+lib/gt4/share/schema/core/samples/counter/counter_bindings.wsdl
+lib/gt4/share/schema/core/samples/counter/counter_flattened.wsdl
+lib/gt4/share/schema/core/samples/counter/counter_service.wsdl
+lib/gt4/share/schema/core/samples/management/management_bindings.wsdl
+lib/gt4/share/schema/core/samples/management/management_flattened.wsdl
+lib/gt4/share/schema/core/samples/management/management_service.wsdl
+lib/gt4/share/schema/core/security/authorization/authz_bindings.wsdl
+lib/gt4/share/schema/core/security/authorization/authz_port_type.wsdl
+lib/gt4/share/schema/core/security/authorization/authz_service.wsdl
+lib/gt4/share/schema/core/security/secconv/secure_conversation_bindings.wsdl
+lib/gt4/share/schema/core/security/secconv/secure_conversation_port_type.wsdl
+lib/gt4/share/schema/core/security/secconv/secure_conversation_service.wsdl
+lib/gt4/share/schema/core/tests/basic/TestRPCService.wsdl
+lib/gt4/share/schema/core/tests/basic/test_bindings.wsdl
+lib/gt4/share/schema/core/tests/basic/test_flattened.wsdl
+lib/gt4/share/schema/core/tests/basic/test_service.wsdl
+lib/gt4/share/schema/core/tests/c-providers/ResourcePropertiesTest.wsdl
+lib/gt4/share/schema/core/tests/c-providers/ResourcePropertiesTest_bindings.wsdl
+lib/gt4/share/schema/core/tests/c-providers/ResourcePropertiesTest_service.wsdl
+lib/gt4/share/schema/core/tests/interop/notification_consumer_factory_bindings.wsdl
+lib/gt4/share/schema/core/tests/interop/notification_consumer_factory_port_type.wsdl
+lib/gt4/share/schema/core/tests/interop/notification_consumer_factory_service.wsdl
+lib/gt4/share/schema/core/tests/interop/widget_bindings.wsdl
+lib/gt4/share/schema/core/tests/interop/widget_notification_bindings.wsdl
+lib/gt4/share/schema/core/tests/interop/widget_notification_flattened.wsdl
+lib/gt4/share/schema/core/tests/interop/widget_notification_service.wsdl
+lib/gt4/share/schema/core/tests/interop/widget_port_type.wsdl
+lib/gt4/share/schema/core/tests/interop/widget_service.wsdl
+lib/gt4/share/schema/core/tests/invalidate/invalidate_port_type.wsdl
+lib/gt4/share/schema/core/tests/notification/notification_test_bindings.wsdl
+lib/gt4/share/schema/core/tests/notification/notification_test_flattened.wsdl
+lib/gt4/share/schema/core/tests/notification/notification_test_service.wsdl
+lib/gt4/share/schema/core/tests/notification/persistence_test_subscription_manager_bindings.wsdl
+lib/gt4/share/schema/core/tests/notification/persistence_test_subscription_manager_flattened.wsdl
+lib/gt4/share/schema/core/tests/notification/persistence_test_subscription_manager_service.wsdl
+lib/gt4/share/schema/core/tests/performance/basic_perf_test_bindings.wsdl
+lib/gt4/share/schema/core/tests/performance/basic_perf_test_port_type.wsdl
+lib/gt4/share/schema/core/tests/performance/basic_perf_test_service.wsdl
+lib/gt4/share/schema/core/tests/performance/counter_bindings.wsdl
+lib/gt4/share/schema/core/tests/performance/counter_flattened.wsdl
+lib/gt4/share/schema/core/tests/performance/counter_service.wsdl
+lib/gt4/share/schema/core/tests/security/security_test_bindings.wsdl
+lib/gt4/share/schema/core/tests/security/security_test_flattened.wsdl
+lib/gt4/share/schema/core/tests/security/security_test_service.wsdl
+lib/gt4/share/schema/core/types/timestamp.wsdl
+lib/gt4/share/schema/core/types/timestamp.xsd
+lib/gt4/share/schema/ws/addressing/WS-Addressing.xsd
+lib/gt4/share/schema/ws/policy/policy.xsd
+lib/gt4/share/schema/ws/policy/utility.xsd
+lib/gt4/share/schema/ws/secconv/ws-secureconversation.xsd
+lib/gt4/share/schema/ws/security/oasis-200401-wss-wssecurity-secext-1.0.xsd
+lib/gt4/share/schema/ws/security/oasis-200401-wss-wssecurity-utility-1.0.xsd
+lib/gt4/share/schema/ws/security/xmldsig-core-schema.xsd
+lib/gt4/share/schema/ws/trust/ws-trust.wsdl
+lib/gt4/share/schema/ws/trust/ws-trust.xsd
+lib/gt4/share/schema/ws/xml.xsd
+lib/gt4/share/schema/wsrf/faults/WS-BaseFaults.wsdl
+lib/gt4/share/schema/wsrf/faults/WS-BaseFaults.xsd
+lib/gt4/share/schema/wsrf/lifetime/WS-ResourceLifetime.wsdl
+lib/gt4/share/schema/wsrf/lifetime/WS-ResourceLifetime.xsd
+lib/gt4/share/schema/wsrf/lifetime/WS-ResourceLifetime_bindings.wsdl
+lib/gt4/share/schema/wsrf/lifetime/WS-ResourceLifetime_service.wsdl
+lib/gt4/share/schema/wsrf/notification/WS-BaseN.wsdl
+lib/gt4/share/schema/wsrf/notification/WS-BaseN.xsd
+lib/gt4/share/schema/wsrf/notification/WS-BaseN_bindings.wsdl
+lib/gt4/share/schema/wsrf/notification/WS-BaseN_service.wsdl
+lib/gt4/share/schema/wsrf/notification/WS-Topics.xsd
+lib/gt4/share/schema/wsrf/properties/WS-ResourceProperties.wsdl
+lib/gt4/share/schema/wsrf/properties/WS-ResourceProperties.xsd
+lib/gt4/share/schema/wsrf/properties/WS-ResourceProperties_bindings.wsdl
+lib/gt4/share/schema/wsrf/properties/WS-ResourceProperties_service.wsdl
+lib/gt4/share/schema/wsrf/servicegroup/WS-ServiceGroup.wsdl
+lib/gt4/share/schema/wsrf/servicegroup/WS-ServiceGroup.xsd
+lib/gt4/share/schema/wsrf/servicegroup/WS-ServiceGroup_bindings.wsdl
+lib/gt4/share/schema/wsrf/servicegroup/WS-ServiceGroup_service.wsdl
+lib/libchirp_client.a
+lib/libcondorapi.a
+lib/libcondorapi.so
+lib/libcondordrmaa.a
+lib/libdrmaa.so
+lib/scimark2lib.jar
+lib/ugahp.jar
+lib/webservice/condorAccountant.wsdl
+lib/webservice/condorCgahp.wsdl
+lib/webservice/condorCollector.wsdl
+lib/webservice/condorDagman.wsdl
+lib/webservice/condorDcskel.wsdl
+lib/webservice/condorGridmanager.wsdl
+lib/webservice/condorHad.wsdl
+lib/webservice/condorMaster.wsdl
+lib/webservice/condorNegotiator.wsdl
+lib/webservice/condorQuill.wsdl
+lib/webservice/condorSchedd.wsdl
+lib/webservice/condorShadow.wsdl
+lib/webservice/condorStartd.wsdl
+lib/webservice/condorStarter.wsdl
+libexec/condor_chirp
+libexec/condor_ssh
+libexec/gcb_broker
+libexec/gcb_relay_server
+libexec/glite/condorc-advertiser
+libexec/glite/condorc-authorizer
+libexec/glite/condorc-initialize
+libexec/glite/condorc-launcher
+libexec/glite/grid_monitor.sh
+libexec/globus-gridftp-server
+libexec/gridftp_wrapper.sh
+libexec/rsh
+libexec/sshd.sh
+sbin/cleanup_release
+sbin/condor
+sbin/condor_advertise
+sbin/condor_c-gahp
+sbin/condor_c-gahp_worker_thread
+sbin/condor_checkpoint
+sbin/condor_ckpt_server
+sbin/condor_cleanup_local
+sbin/condor_cold_start
+sbin/condor_cold_stop
+sbin/condor_collector
+sbin/condor_config_bind
+sbin/condor_configure
+sbin/condor_convert_history
+sbin/condor_fetchlog
+sbin/condor_gridmanager
+sbin/condor_gridshell
+sbin/condor_had
+sbin/condor_init
+sbin/condor_install
+sbin/condor_install_local
+sbin/condor_local_start
+sbin/condor_local_stop
+sbin/condor_master
+sbin/condor_master_off
+sbin/condor_negotiator
+sbin/condor_off
+sbin/condor_on
+sbin/condor_preen
+sbin/condor_pvmd
+sbin/condor_pvmgs
+sbin/condor_quill
+sbin/condor_reconfig
+sbin/condor_reconfig_schedd
+sbin/condor_replication
+sbin/condor_reschedule
+sbin/condor_restart
+sbin/condor_schedd
+sbin/condor_shadow
+sbin/condor_shadow.pvm
+sbin/condor_shadow.std
+sbin/condor_startd
+sbin/condor_starter
+sbin/condor_starter.pvm
+sbin/condor_starter.std
+sbin/condor_store_cred
+sbin/condor_updates_stats
+sbin/condor_vacate
+sbin/filelock_midwife
+sbin/filelock_undertaker
+sbin/gahp_server
+sbin/grid_monitor.sh
+sbin/gt3_gahp
+sbin/gt4_gahp
+sbin/install_release
+sbin/nordugrid_gahp
+sbin/unicore_gahp
+sbin/uniq_pid_command
+sbin/uniq_pid_midwife
+sbin/uniq_pid_undertaker
+src/chirp/chirp_client.c
+src/chirp/chirp_client.h
+src/drmaa/Makefile.in
+src/drmaa/README
+src/drmaa/STATUS
+src/drmaa/WISDOM
+src/drmaa/auxDrmaa.c
+src/drmaa/auxDrmaa.h
+src/drmaa/config.h.in
+src/drmaa/configure
+src/drmaa/configure.in
+src/drmaa/documentation
+src/drmaa/drmaa.h
+src/drmaa/drmaa_common.c
+src/drmaa/drmaa_common.h
+src/drmaa/iniparser.c
+src/drmaa/iniparser.h
+src/drmaa/libDrmaa.c
+@dirrm src/drmaa
+@dirrm src/chirp
+@dirrm src
+@dirrm libexec/glite
+@dirrm lib/webservice
+@dirrm lib/gt4/share/schema/wsrf/servicegroup
+@dirrm lib/gt4/share/schema/wsrf/properties
+@dirrm lib/gt4/share/schema/wsrf/notification
+@dirrm lib/gt4/share/schema/wsrf/lifetime
+@dirrm lib/gt4/share/schema/wsrf/faults
+@dirrm lib/gt4/share/schema/wsrf
+@dirrm lib/gt4/share/schema/ws/trust
+@dirrm lib/gt4/share/schema/ws/security
+@dirrm lib/gt4/share/schema/ws/secconv
+@dirrm lib/gt4/share/schema/ws/policy
+@dirrm lib/gt4/share/schema/ws/addressing
+@dirrm lib/gt4/share/schema/ws
+@dirrm lib/gt4/share/schema/core/types
+@dirrm lib/gt4/share/schema/core/tests/security
+@dirrm lib/gt4/share/schema/core/tests/performance
+@dirrm lib/gt4/share/schema/core/tests/notification
+@dirrm lib/gt4/share/schema/core/tests/invalidate
+@dirrm lib/gt4/share/schema/core/tests/interop
+@dirrm lib/gt4/share/schema/core/tests/c-providers
+@dirrm lib/gt4/share/schema/core/tests/basic
+@dirrm lib/gt4/share/schema/core/tests
+@dirrm lib/gt4/share/schema/core/security/secconv
+@dirrm lib/gt4/share/schema/core/security/authorization
+@dirrm lib/gt4/share/schema/core/security
+@dirrm lib/gt4/share/schema/core/samples/management
+@dirrm lib/gt4/share/schema/core/samples/counter
+@dirrm lib/gt4/share/schema/core/samples/authzService
+@dirrm lib/gt4/share/schema/core/samples
+@dirrm lib/gt4/share/schema/core/registry
+@dirrm lib/gt4/share/schema/core/notification
+@dirrm lib/gt4/share/schema/core/management
+@dirrm lib/gt4/share/schema/core
+@dirrm lib/gt4/share/schema
+@dirrm lib/gt4/share
+@dirrm lib/gt4/lib
+@dirrm lib/gt4/etc/globus_wsrf_core
+@dirrm lib/gt4/etc
+@dirrm lib/gt4/endorsed
+@dirrm lib/gt4
+@dirrm lib/gt3/schema/tests/serialization
+@dirrm lib/gt3/schema/tests/security
+@dirrm lib/gt3/schema/tests/complex
+@dirrm lib/gt3/schema/tests
+@dirrm lib/gt3/schema/security/authentication
+@dirrm lib/gt3/schema/security
+@dirrm lib/gt3/schema/samples/weather
+@dirrm lib/gt3/schema/samples/temperature
+@dirrm lib/gt3/schema/samples/servicedata
+@dirrm lib/gt3/schema/samples/registry
+@dirrm lib/gt3/schema/samples/ogsi
+@dirrm lib/gt3/schema/samples/notification
+@dirrm lib/gt3/schema/samples/gwsdl
+@dirrm lib/gt3/schema/samples/google
+@dirrm lib/gt3/schema/samples/extension
+@dirrm lib/gt3/schema/samples/exception
+@dirrm lib/gt3/schema/samples/counter
+@dirrm lib/gt3/schema/samples/chat
+@dirrm lib/gt3/schema/samples/any
+@dirrm lib/gt3/schema/samples
+@dirrm lib/gt3/schema/ogsi
+@dirrm lib/gt3/schema/generated/GenerateCounter
+@dirrm lib/gt3/schema/generated/ArraySample
+@dirrm lib/gt3/schema/generated
+@dirrm lib/gt3/schema/core/types
+@dirrm lib/gt3/schema/core/proxy
+@dirrm lib/gt3/schema/core/ping
+@dirrm lib/gt3/schema/core/notification
+@dirrm lib/gt3/schema/core/management
+@dirrm lib/gt3/schema/core/logging
+@dirrm lib/gt3/schema/core/factory
+@dirrm lib/gt3/schema/core/admin
+@dirrm lib/gt3/schema/core
+@dirrm lib/gt3/schema/base/streaming
+@dirrm lib/gt3/schema/base/servicegroup
+@dirrm lib/gt3/schema/base/provider
+@dirrm lib/gt3/schema/base/multirft
+@dirrm lib/gt3/schema/base/index
+@dirrm lib/gt3/schema/base/gram/examples
+@dirrm lib/gt3/schema/base/gram
+@dirrm lib/gt3/schema/base/aggregator
+@dirrm lib/gt3/schema/base
+@dirrm lib/gt3/schema
+@dirrm lib/gt3/lib
+@dirrm lib/gt3
+@dirrm etc/condor_config.examples