[Midnightbsd-cvs] mports [20646] trunk/net: add activemq

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Nov 4 17:46:36 EST 2015


Revision: 20646
          http://svnweb.midnightbsd.org/mports/?rev=20646
Author:   laffer1
Date:     2015-11-04 17:46:36 -0500 (Wed, 04 Nov 2015)
Log Message:
-----------
add activemq

Modified Paths:
--------------
    trunk/net/Makefile

Added Paths:
-----------
    trunk/net/activemq/
    trunk/net/activemq/Makefile
    trunk/net/activemq/distinfo
    trunk/net/activemq/files/
    trunk/net/activemq/files/activemq.in
    trunk/net/activemq/pkg-descr
    trunk/net/activemq/pkg-plist

Modified: trunk/net/Makefile
===================================================================
--- trunk/net/Makefile	2015-11-04 22:43:33 UTC (rev 20645)
+++ trunk/net/Makefile	2015-11-04 22:46:36 UTC (rev 20646)
@@ -4,6 +4,7 @@
 
 SUBDIR += 44bsd-rdist
 SUBDIR += GeoIP
+SUBDIR += activemq
 SUBDIR += asio
 SUBDIR += avahi
 SUBDIR += avahi-app

Added: trunk/net/activemq/Makefile
===================================================================
--- trunk/net/activemq/Makefile	                        (rev 0)
+++ trunk/net/activemq/Makefile	2015-11-04 22:46:36 UTC (rev 20646)
@@ -0,0 +1,111 @@
+# $MidnightBSD$
+# $FreeBSD: head/net/activemq/Makefile 386097 2015-05-11 18:34:57Z mat $
+
+PORTNAME=	activemq
+PORTVERSION=	5.10.1
+CATEGORIES=	net java
+MASTER_SITES=	APACHE/${PORTNAME}/${PORTVERSION}
+DISTNAME=	apache-${PORTNAME}-${PORTVERSION}-bin
+
+MAINTAINER=	ports at MidnightBSD.org
+COMMENT=	Messaging and Integration Patterns provider
+
+LICENSE=	apache2
+
+USES+=		cpe
+CPE_VENDOR=	apache
+NO_BUILD=	yes
+USE_JAVA=	yes
+JAVA_VERSION=	1.7+
+MQDATA=		${PREFIX}/lib/${PORTNAME}
+MQDB?=		/var/db/activemq
+DATADIR=	${MQDATA}
+MQUSER?=	activemq
+MQGROUP?=	${MQUSER}
+USERS=		${MQUSER}
+GROUPS=		${MQGROUP}
+CAMELVERSION=	2.13.1
+SPRINGVERSION=	3.2.8
+JETTYVERSION=	7.6.9.v20130131
+LVDBVERSION=	0.6
+LVDBJNIVERSION=	1.8
+
+ALL_TARGET=	${PORTNAME}
+USE_RC_SUBR=	${PORTNAME}
+
+DOC_FILES=	LICENSE NOTICE README.txt
+ETC_FILES=	activemq.xml \
+		broker-localhost.cert \
+		broker.ks \
+		broker.ts \
+		client.ks \
+		client.ts \
+		credentials-enc.properties \
+		credentials.properties \
+		groups.properties \
+		jetty-realm.properties \
+		jetty.xml \
+		jmx.access \
+		jmx.password \
+		log4j.properties \
+		logging.properties \
+		login.config \
+		users.properties
+WRKSRC=		${WRKDIR}/apache-${PORTNAME}-${PORTVERSION}
+SUB_LIST=	ETC_FILES="${ETC_FILES}" \
+		MQUSER="${MQUSER}" \
+		MQGROUP="${MQGROUP}" \
+		MQDB="${MQDB}"
+PLIST_SUB=	MQUSER="${MQUSER}" \
+		MQGROUP="${MQGROUP}" \
+		MQDB="${MQDB}" \
+		PORTVERSION="${PORTVERSION}" \
+		CAMELVERSION="${CAMELVERSION}" \
+		SPRINGVERSION="${SPRINGVERSION}" \
+		JETTYVERSION="${JETTYVERSION}" \
+		LVDBVERSION="${LVDBVERSION}" \
+		LVDBJNIVERSION="${LVDBJNIVERSION}"
+
+OPTIONS_DEFINE=	DOCS EXAMPLES
+
+.include <bsd.mport.options.mk>
+
+post-patch:
+	 @${REINPLACE_CMD} -e 's|activemq.base}/data|activemq.logs}|g' ${WRKSRC}/conf/log4j.properties
+
+do-install:
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	@cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/
+.for f in ${DOC_FILES}
+	@${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
+.endfor
+.endif
+
+	@${MKDIR} ${STAGEDIR}${MQDATA} ${STAGEDIR}${MQDATA}/bin ${STAGEDIR}${ETCDIR}
+
+.if ${PORT_OPTIONS:MEXAMPLES}
+	@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
+.endif
+
+.for f in ${ETC_FILES}
+	${INSTALL_DATA} ${WRKSRC}/conf/${f} ${STAGEDIR}${ETCDIR}/${f}.sample
+.endfor
+
+.for f in ${PORTNAME} ${PORTNAME}-admin diag
+	@cd ${WRKSRC}/bin && ${INSTALL_SCRIPT} ${f} ${STAGEDIR}${MQDATA}/bin
+.endfor
+
+	@cd ${WRKSRC}/bin && ${INSTALL_DATA} activemq.jar ${STAGEDIR}${MQDATA}/bin
+	@cd ${WRKSRC}/bin && ${INSTALL_DATA} wrapper.jar ${STAGEDIR}${MQDATA}/bin
+
+.for f in webapps webapps-demo lib
+	@cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${MQDATA}
+.endfor
+
+	@${LN} -sf ${MQDB} ${STAGEDIR}${MQDATA}/data
+	@${LN} -sf ${ETCDIR} ${STAGEDIR}${MQDATA}/conf
+	@${LN} -sf ${EXAMPLESDIR} ${STAGEDIR}${MQDATA}/examples
+	@${LN} -sf ${DOCSDIR} ${STAGEDIR}${MQDATA}/docs
+
+.include <bsd.port.mk>


Property changes on: trunk/net/activemq/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/net/activemq/distinfo
===================================================================
--- trunk/net/activemq/distinfo	                        (rev 0)
+++ trunk/net/activemq/distinfo	2015-11-04 22:46:36 UTC (rev 20646)
@@ -0,0 +1,2 @@
+SHA256 (apache-activemq-5.10.1-bin.tar.gz) = 48193c0f2b8e126f9b386829d293e189287e8fe355f1bedc389150ce3e0fda68
+SIZE (apache-activemq-5.10.1-bin.tar.gz) = 45420694


Property changes on: trunk/net/activemq/distinfo
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/net/activemq/files/activemq.in
===================================================================
--- trunk/net/activemq/files/activemq.in	                        (rev 0)
+++ trunk/net/activemq/files/activemq.in	2015-11-04 22:46:36 UTC (rev 20646)
@@ -0,0 +1,145 @@
+#!/bin/sh
+#
+# $FreeBSD: head/net/activemq/files/activemq.in 345533 2014-02-21 20:05:35Z tj $
+#
+
+# PROVIDE: activemq
+# REQUIRE: NETWORKING SERVERS
+# BEFORE: DAEMON
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
+# to enable this service:
+#
+# activemq_enable (bool):   Set to NO by default.
+#               Set it to YES to enable activemq.
+# activemq_user (username): Set to activemq by default.
+#               Set it to required username.
+# activemq_group (group):   Set to activemq by default.
+#               Set it to required group.
+# activemq_classpath (path):   Set to %%DATADIR%% by default.
+#               Set it to java classes directory.
+# activemq_home (path):     Set to %%DATADIR%% by default.
+#               Set it to java home directory.
+# activemq_javargs (args):  Set to -Xmx256M by default.
+#               See java -h for available arguments.
+# activemq_stop_timeout (num):  Set to "10" by default.
+#               Set the timeout in seconds to shutdown.
+#
+
+. /etc/rc.subr
+
+name="activemq"
+rcvar=activemq_enable
+load_rc_config $name
+
+# Set defaults
+: ${activemq_enable:=NO}
+: ${activemq_user:=%%MQUSER%%}
+: ${activemq_group:=%%MQGROUP%%}
+: ${activemq_classpath:=%%ETCDIR%%}
+: ${activemq_conf:=%%ETCDIR%%}
+: ${activemq_data:=%%MQDB%%}
+: ${activemq_logs:=/var/log/activemq}
+: ${activemq_home:=%%DATADIR%%}
+: ${activemq_javargs:='-Xmx512M -Dorg.apache.activemq.UseDedicatedTaskRunner=true -Djava.util.logging.config.file=logging.properties -Dcom.sun.management.jmxremote'}
+: ${activemq_stop_timeout:="10"}
+: ${activemq_hostname:=`/bin/hostname`}
+
+
+pidfile=/var/run/${name}.pid
+
+required_files="%%ETCDIR%%/activemq.xml"
+jar_file="%%DATADIR%%/bin/activemq.jar"
+java_options=" 	-server -jar ${activemq_javargs} \
+		-Dactivemq.classpath=${activemq_classpath} \
+		-Dactivemq.conf=${activemq_conf} \
+		-Dactivemq.data=${activemq_data} \
+		-Dactivemq.logs=${activemq_logs} \
+		-Dactivemq.home=${activemq_home} \
+		-Dactivemq.base=${activemq_home} \
+		-Dactivemq.hostname=${activemq_hostname}"
+
+java_command="%%LOCALBASE%%/bin/java ${java_options} ${jar_file}"
+
+command="/usr/sbin/daemon"
+command_args="-f -p ${pidfile} ${java_command} start"
+start_precmd="activemq_precmd"
+status_cmd="activemq_status"
+stop_cmd="activemq_stop"
+
+activemq_precmd() {
+        touch ${pidfile}
+        chown ${activemq_user}:${activemq_group} ${pidfile}
+	if [ ! -d ${activemq_logs} ]; then 
+		/usr/bin/install -d -o ${activemq_user} -g ${activemq_group} ${activemq_logs}
+	fi
+	if [ ! -d ${activemq_data} ]; then 
+		/usr/bin/install -d -o ${activemq_user} -g ${activemq_group} ${activemq_data}
+	fi
+}
+
+activemq_stop() {
+	rc_pid=$(activemq_check_pidfile $pidfile)
+
+	if [ -z "$rc_pid" ]; then
+		[ -n "$rc_fast" ] && return 0
+		echo "${name} not running? (check $pidfile)."
+		return 1
+	fi
+	
+	echo "Stopping ${name}."
+	${java_command} stop >/dev/null
+	activemq_wait_max_for_pid ${activemq_stop_timeout} ${rc_pid}
+	kill -KILL ${rc_pid} 2> /dev/null && echo "Killed."
+	rm -f ${pidfile}
+}
+
+activemq_status() {
+	rc_pid=$(activemq_check_pidfile $pidfile)
+
+	if [ -z "$rc_pid" ]; then
+		[ -n "$rc_fast" ] && return 0
+		echo "${name} not running? (check $pidfile)."
+		return 1
+	fi
+	echo "${name} is running as pid ${rc_pid}."
+}
+
+activemq_check_pidfile() {
+	_pidfile=$1
+	if [ -z "$_pidfile" ]; then
+		err 3 'USAGE: activemq_check_pidfile pidfile'
+	fi
+	if [ ! -f $_pidfile ]; then
+		debug "pid file ($_pidfile): not readable."
+		return
+	fi
+	read _pid _junk < $_pidfile
+	if [ -z "$_pid" ]; then
+		debug "pid file ($_pidfile): no pid in file."
+		return
+	fi
+	if [ -n "`%%LOCALBASE%%/bin/jps -l | grep -e "^$_pid $jar_file\$"`" ]; then
+		echo -n $_pid
+	fi
+}
+
+activemq_wait_max_for_pid() {
+	_timeout=$1
+	shift
+	_pid=$1
+	_prefix=
+	while [ $_timeout -gt 0 ] ; do
+		echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid
+		_prefix=", "
+		sleep 2
+		kill -0 $_pid 2> /dev/null || break
+		_timeout=$(($_timeout-2))
+	done
+	if [ -n "$_prefix" ]; then
+		echo "."
+	fi
+}
+
+run_rc_command "$1"


Property changes on: trunk/net/activemq/files/activemq.in
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/net/activemq/pkg-descr
===================================================================
--- trunk/net/activemq/pkg-descr	                        (rev 0)
+++ trunk/net/activemq/pkg-descr	2015-11-04 22:46:36 UTC (rev 20646)
@@ -0,0 +1,4 @@
+Apache ActiveMQ is the most popular and powerful open source messaging
+and Integration Patterns provider.
+
+WWW: http://activemq.apache.org


Property changes on: trunk/net/activemq/pkg-descr
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/net/activemq/pkg-plist
===================================================================
--- trunk/net/activemq/pkg-plist	                        (rev 0)
+++ trunk/net/activemq/pkg-plist	2015-11-04 22:46:36 UTC (rev 20646)
@@ -0,0 +1,587 @@
+lib/activemq/bin/activemq
+lib/activemq/bin/activemq-admin
+lib/activemq/bin/activemq.jar
+lib/activemq/bin/diag
+lib/activemq/bin/wrapper.jar
+lib/activemq/conf
+lib/activemq/data
+lib/activemq/docs
+lib/activemq/examples
+lib/activemq/lib/activemq-broker-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-client-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-console-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-jaas-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-kahadb-store-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-openwire-legacy-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-protobuf-1.1.jar
+lib/activemq/lib/activemq-rar.txt
+lib/activemq/lib/activemq-spring-%%PORTVERSION%%.jar
+lib/activemq/lib/activemq-web-%%PORTVERSION%%.jar
+lib/activemq/lib/camel/activemq-camel-%%PORTVERSION%%.jar
+lib/activemq/lib/camel/camel-core-%%CAMELVERSION%%.jar
+lib/activemq/lib/camel/camel-jms-%%CAMELVERSION%%.jar
+lib/activemq/lib/camel/camel-spring-%%CAMELVERSION%%.jar
+lib/activemq/lib/extra/mqtt-client-1.10.jar
+lib/activemq/lib/geronimo-j2ee-management_1.1_spec-1.0.1.jar
+lib/activemq/lib/geronimo-jms_1.1_spec-1.1.1.jar
+lib/activemq/lib/geronimo-jta_1.0.1B_spec-1.0.1.jar
+lib/activemq/lib/hawtbuf-1.10.jar
+lib/activemq/lib/insight-log-core-7.2.0.redhat-024.jar
+lib/activemq/lib/insight-log4j-7.2.0.redhat-024-patched.jar
+lib/activemq/lib/jcl-over-slf4j-1.7.5.jar
+lib/activemq/lib/optional/%%MQUSER%%-shiro-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activeio-core-3.1.4.jar
+lib/activemq/lib/optional/activemq-amqp-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-http-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-jdbc-store-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-jms-pool-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-leveldb-store-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-log4j-appender-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-mqtt-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-partition-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-pool-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-runtime-config-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/activemq-stomp-%%PORTVERSION%%.jar
+lib/activemq/lib/optional/commons-beanutils-1.8.3.jar
+lib/activemq/lib/optional/commons-codec-1.6.jar
+lib/activemq/lib/optional/commons-collections-3.2.1.jar
+lib/activemq/lib/optional/commons-dbcp-1.4.jar
+lib/activemq/lib/optional/commons-lang-2.6.jar
+lib/activemq/lib/optional/commons-net-3.3.jar
+lib/activemq/lib/optional/commons-pool-1.6.jar
+lib/activemq/lib/optional/geronimo-j2ee-connector_1.5_spec-2.0.0.jar
+lib/activemq/lib/optional/guava-12.0.jar
+lib/activemq/lib/optional/hawtbuf-proto-1.10.jar
+lib/activemq/lib/optional/hawtdispatch-1.21.jar
+lib/activemq/lib/optional/hawtdispatch-scala-2.11-1.21.jar
+lib/activemq/lib/optional/hawtdispatch-transport-1.21.jar
+lib/activemq/lib/optional/hawtjni-runtime-1.9.jar
+lib/activemq/lib/optional/httpclient-4.2.5.jar
+lib/activemq/lib/optional/httpcore-4.2.4.jar
+lib/activemq/lib/optional/jackson-core-asl-1.9.12.jar
+lib/activemq/lib/optional/jackson-mapper-asl-1.9.12.jar
+lib/activemq/lib/optional/jasypt-1.9.1.jar
+lib/activemq/lib/optional/jasypt-spring3-1.9.1.jar
+lib/activemq/lib/optional/jaxb2-basics-runtime-%%LVDBVERSION%%.4.jar
+lib/activemq/lib/optional/jettison-1.3.5.jar
+lib/activemq/lib/optional/jmdns-3.4.1.jar
+lib/activemq/lib/optional/leveldb-%%LVDBVERSION%%.jar
+lib/activemq/lib/optional/leveldb-api-%%LVDBVERSION%%.jar
+lib/activemq/lib/optional/leveldbjni-%%LVDBJNIVERSION%%.jar
+lib/activemq/lib/optional/log4j-1.2.17.jar
+lib/activemq/lib/optional/org.apache.servicemix.bundles.josql-1.5_5.jar
+lib/activemq/lib/optional/org.linkedin.util-core-1.4.0.jar
+lib/activemq/lib/optional/org.linkedin.zookeeper-impl-1.4.0.jar
+lib/activemq/lib/optional/proton-j-0.7.jar
+lib/activemq/lib/optional/proton-jms-0.7.jar
+lib/activemq/lib/optional/scala-library-2.11.0.jar
+lib/activemq/lib/optional/shiro-core-1.2.2.jar
+lib/activemq/lib/optional/shiro-spring-1.2.2.jar
+lib/activemq/lib/optional/slf4j-log4j12-1.7.5.jar
+lib/activemq/lib/optional/snappy-0.2.jar
+lib/activemq/lib/optional/snappy-java-1.1.0.1.jar
+lib/activemq/lib/optional/spring-aop-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-beans-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-context-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-core-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-expression-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-jms-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-oxm-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/spring-tx-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/optional/velocity-1.7.jar
+lib/activemq/lib/optional/xbean-spring-3.16.jar
+lib/activemq/lib/optional/xpp3-1.1.4c.jar
+lib/activemq/lib/optional/xstream-1.4.7.jar
+lib/activemq/lib/optional/zookeeper-3.4.5.jar
+lib/activemq/lib/pax-url-aether-1.5.2.jar
+lib/activemq/lib/slf4j-api-1.7.5.jar
+lib/activemq/lib/web/core-3.1.1.jar
+lib/activemq/lib/web/geronimo-servlet_2.5_spec-1.2.jar
+lib/activemq/lib/web/jdom-1.0.jar
+lib/activemq/lib/web/jetty-all-server-%%JETTYVERSION%%.jar
+lib/activemq/lib/web/jetty-websocket-%%JETTYVERSION%%.jar
+lib/activemq/lib/web/jolokia-core-1.2.1.jar
+lib/activemq/lib/web/json-simple-1.1.jar
+lib/activemq/lib/web/jsp-2.1-glassfish-2.1.v20100127.jar
+lib/activemq/lib/web/jsp-api-2.1-glassfish-2.1.v20100127.jar
+lib/activemq/lib/web/rome-1.0.jar
+lib/activemq/lib/web/spring-web-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/lib/web/spring-webmvc-%%SPRINGVERSION%%.RELEASE.jar
+lib/activemq/webapps-demo/demo/META-INF/LICENSE
+lib/activemq/webapps-demo/demo/META-INF/NOTICE
+lib/activemq/webapps-demo/demo/WEB-INF/web.xml
+lib/activemq/webapps-demo/demo/chat.css
+lib/activemq/webapps-demo/demo/chat.html
+lib/activemq/webapps-demo/demo/images/activemq-logo.png
+lib/activemq/webapps-demo/demo/images/asf-logo.png
+lib/activemq/webapps-demo/demo/images/big-bullet.png
+lib/activemq/webapps-demo/demo/images/black-footer-bottom.png
+lib/activemq/webapps-demo/demo/images/black-footer-left.png
+lib/activemq/webapps-demo/demo/images/black-footer-right.png
+lib/activemq/webapps-demo/demo/images/bottom-red-bar.png
+lib/activemq/webapps-demo/demo/images/checker-bg.png
+lib/activemq/webapps-demo/demo/images/content-left.png
+lib/activemq/webapps-demo/demo/images/content-right.png
+lib/activemq/webapps-demo/demo/images/feed_atom.png
+lib/activemq/webapps-demo/demo/images/feed_rss.png
+lib/activemq/webapps-demo/demo/images/left-box-bottom.png
+lib/activemq/webapps-demo/demo/images/left-box-right.png
+lib/activemq/webapps-demo/demo/images/left-box-top.png
+lib/activemq/webapps-demo/demo/images/oval-arrow.png
+lib/activemq/webapps-demo/demo/images/right-box-bottom.png
+lib/activemq/webapps-demo/demo/images/right-box-left.png
+lib/activemq/webapps-demo/demo/images/right-box-top.png
+lib/activemq/webapps-demo/demo/images/small-bullet-gray.png
+lib/activemq/webapps-demo/demo/images/small-bullet-red.png
+lib/activemq/webapps-demo/demo/images/spacer.gif
+lib/activemq/webapps-demo/demo/images/top-red-bar.png
+lib/activemq/webapps-demo/demo/images/white-header-left.png
+lib/activemq/webapps-demo/demo/images/white-header-right.png
+lib/activemq/webapps-demo/demo/images/white-header-top.png
+lib/activemq/webapps-demo/demo/index.html
+lib/activemq/webapps-demo/demo/js/amq.js
+lib/activemq/webapps-demo/demo/js/amq_dojo_adapter.js
+lib/activemq/webapps-demo/demo/js/amq_jquery_adapter.js
+lib/activemq/webapps-demo/demo/js/amq_prototype_adapter.js
+lib/activemq/webapps-demo/demo/js/chat.js
+lib/activemq/webapps-demo/demo/js/common.js
+lib/activemq/webapps-demo/demo/js/css.js
+lib/activemq/webapps-demo/demo/js/dojo.js
+lib/activemq/webapps-demo/demo/js/jquery-1.4.2.min.js
+lib/activemq/webapps-demo/demo/js/mochi/MochiKit.js
+lib/activemq/webapps-demo/demo/js/mochi/__package__.js
+lib/activemq/webapps-demo/demo/js/plotkit/Base.js
+lib/activemq/webapps-demo/demo/js/plotkit/Canvas.js
+lib/activemq/webapps-demo/demo/js/plotkit/Layout.js
+lib/activemq/webapps-demo/demo/js/plotkit/SVG.js
+lib/activemq/webapps-demo/demo/js/plotkit/SweetCanvas.js
+lib/activemq/webapps-demo/demo/js/plotkit/SweetSVG.js
+lib/activemq/webapps-demo/demo/js/plotkit/dummy.svg
+lib/activemq/webapps-demo/demo/js/plotkit/iecanvas.htc
+lib/activemq/webapps-demo/demo/js/prettify.js
+lib/activemq/webapps-demo/demo/js/prototype.js
+lib/activemq/webapps-demo/demo/js/standardista-table-sorting.js
+lib/activemq/webapps-demo/demo/mqtt/chat.css
+lib/activemq/webapps-demo/demo/mqtt/chat.js
+lib/activemq/webapps-demo/demo/mqtt/index.html
+lib/activemq/webapps-demo/demo/mqtt/mqttws31.js
+lib/activemq/webapps-demo/demo/portfolio/portfolio.html
+lib/activemq/webapps-demo/demo/portfolio/portfolio.js
+lib/activemq/webapps-demo/demo/send.html
+lib/activemq/webapps-demo/demo/style.css
+lib/activemq/webapps-demo/demo/styles/prettify.css
+lib/activemq/webapps-demo/demo/styles/site.css
+lib/activemq/webapps-demo/demo/styles/sorttable.css
+lib/activemq/webapps-demo/demo/styles/type-settings.css
+lib/activemq/webapps-demo/demo/test/amq_test.html
+lib/activemq/webapps-demo/demo/test/assets/README
+lib/activemq/webapps-demo/demo/test/assets/jsunittest.js
+lib/activemq/webapps-demo/demo/test/assets/unittest.css
+lib/activemq/webapps-demo/demo/websocket/chat.css
+lib/activemq/webapps-demo/demo/websocket/chat.js
+lib/activemq/webapps-demo/demo/websocket/index.html
+lib/activemq/webapps-demo/demo/websocket/stomp.js
+lib/activemq/webapps/admin/403.html
+lib/activemq/webapps/admin/404.html
+lib/activemq/webapps/admin/500.html
+lib/activemq/webapps/admin/META-INF/LICENSE
+lib/activemq/webapps/admin/META-INF/NOTICE
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter$OsgiUtil.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/WebConsoleStarter.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/config/OsgiConfiguration.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CopyMessage.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateDestination.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/CreateSubscriber.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteDestination.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteJob.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteMessage.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/DeleteSubscriber.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/MoveMessage.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/PurgeDestination.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/controller/SendMessage.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$1.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter$2.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/filter/ApplicationContextFilter.class
+lib/activemq/webapps/admin/WEB-INF/classes/org/apache/activemq/web/handler/BindingBeanNameUrlHandlerMapping.class
+lib/activemq/webapps/admin/WEB-INF/dispatcher-servlet.xml
+lib/activemq/webapps/admin/WEB-INF/jspf/headertags.jspf
+lib/activemq/webapps/admin/WEB-INF/jspf/old.jspf
+lib/activemq/webapps/admin/WEB-INF/tags/form/checkbox.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/escape.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/forEachMapEntry.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/option.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/short.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/text.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/tooltip.tag
+lib/activemq/webapps/admin/WEB-INF/tags/form/uri.tag
+lib/activemq/webapps/admin/WEB-INF/tags/jms/forEachConnection.tag
+lib/activemq/webapps/admin/WEB-INF/tags/jms/forEachMessage.tag
+lib/activemq/webapps/admin/WEB-INF/tags/jms/formatTimestamp.tag
+lib/activemq/webapps/admin/WEB-INF/tags/jms/persistent.tag
+lib/activemq/webapps/admin/WEB-INF/web.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-default.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-embedded.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-invm.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-jndi.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-osgi.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-properties.xml
+lib/activemq/webapps/admin/WEB-INF/webconsole-query.xml
+lib/activemq/webapps/admin/browse.jsp
+lib/activemq/webapps/admin/connection.jsp
+lib/activemq/webapps/admin/connections.jsp
+lib/activemq/webapps/admin/decorators/footer.jsp
+lib/activemq/webapps/admin/decorators/head.jsp
+lib/activemq/webapps/admin/decorators/header.jsp
+lib/activemq/webapps/admin/graph.jsp
+lib/activemq/webapps/admin/images/activemq-logo.png
+lib/activemq/webapps/admin/images/asf-logo.png
+lib/activemq/webapps/admin/images/big-bullet.png
+lib/activemq/webapps/admin/images/black-footer-bottom.png
+lib/activemq/webapps/admin/images/black-footer-left.png
+lib/activemq/webapps/admin/images/black-footer-right.png
+lib/activemq/webapps/admin/images/bottom-red-bar.png
+lib/activemq/webapps/admin/images/checker-bg.png
+lib/activemq/webapps/admin/images/content-left.png
+lib/activemq/webapps/admin/images/content-right.png
+lib/activemq/webapps/admin/images/feed_atom.png
+lib/activemq/webapps/admin/images/feed_rss.png
+lib/activemq/webapps/admin/images/left-box-bottom.png
+lib/activemq/webapps/admin/images/left-box-right.png
+lib/activemq/webapps/admin/images/left-box-top.png
+lib/activemq/webapps/admin/images/oval-arrow.png
+lib/activemq/webapps/admin/images/right-box-bottom.png
+lib/activemq/webapps/admin/images/right-box-left.png
+lib/activemq/webapps/admin/images/right-box-top.png
+lib/activemq/webapps/admin/images/small-bullet-gray.png
+lib/activemq/webapps/admin/images/small-bullet-red.png
+lib/activemq/webapps/admin/images/spacer.gif
+lib/activemq/webapps/admin/images/top-red-bar.png
+lib/activemq/webapps/admin/images/white-header-left.png
+lib/activemq/webapps/admin/images/white-header-right.png
+lib/activemq/webapps/admin/images/white-header-top.png
+lib/activemq/webapps/admin/index.jsp
+lib/activemq/webapps/admin/js/common.js
+lib/activemq/webapps/admin/js/css.js
+lib/activemq/webapps/admin/js/mochi/MochiKit.js
+lib/activemq/webapps/admin/js/mochi/__package__.js
+lib/activemq/webapps/admin/js/plotkit/Base.js
+lib/activemq/webapps/admin/js/plotkit/Canvas.js
+lib/activemq/webapps/admin/js/plotkit/Layout.js
+lib/activemq/webapps/admin/js/plotkit/SVG.js
+lib/activemq/webapps/admin/js/plotkit/SweetCanvas.js
+lib/activemq/webapps/admin/js/plotkit/SweetSVG.js
+lib/activemq/webapps/admin/js/plotkit/dummy.svg
+lib/activemq/webapps/admin/js/plotkit/iecanvas.htc
+lib/activemq/webapps/admin/js/prettify.js
+lib/activemq/webapps/admin/js/standardista-table-sorting.js
+lib/activemq/webapps/admin/message.jsp
+lib/activemq/webapps/admin/network.jsp
+lib/activemq/webapps/admin/queueConsumers.jsp
+lib/activemq/webapps/admin/queueGraph.jsp
+lib/activemq/webapps/admin/queueProducers.jsp
+lib/activemq/webapps/admin/queues.jsp
+lib/activemq/webapps/admin/scheduled.jsp
+lib/activemq/webapps/admin/send.jsp
+lib/activemq/webapps/admin/slave.jsp
+lib/activemq/webapps/admin/styles/prettify.css
+lib/activemq/webapps/admin/styles/site.css
+lib/activemq/webapps/admin/styles/sorttable.css
+lib/activemq/webapps/admin/styles/type-settings.css
+lib/activemq/webapps/admin/subscribers.jsp
+lib/activemq/webapps/admin/test/dummy.jsp
+lib/activemq/webapps/admin/test/index.jsp
+lib/activemq/webapps/admin/test/systemProperties.jsp
+lib/activemq/webapps/admin/topicProducers.jsp
+lib/activemq/webapps/admin/topicSubscribers.jsp
+lib/activemq/webapps/admin/topics.jsp
+lib/activemq/webapps/admin/xml/queues.jsp
+lib/activemq/webapps/admin/xml/subscribers.jsp
+lib/activemq/webapps/admin/xml/topics.jsp
+lib/activemq/webapps/api/WEB-INF/web.xml
+lib/activemq/webapps/favicon.ico
+lib/activemq/webapps/fileserver/META-INF/LICENSE
+lib/activemq/webapps/fileserver/META-INF/NOTICE
+lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter$GuardedHttpServletRequest.class
+lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/FilenameGuardFilter.class
+lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/IOHelper.class
+lib/activemq/webapps/fileserver/WEB-INF/classes/org/apache/activemq/util/RestFilter.class
+lib/activemq/webapps/fileserver/WEB-INF/web.xml
+lib/activemq/webapps/fileserver/index.html
+lib/activemq/webapps/images/activemq-logo.png
+lib/activemq/webapps/images/asf-logo.png
+lib/activemq/webapps/images/big-bullet.png
+lib/activemq/webapps/images/black-footer-bottom.png
+lib/activemq/webapps/images/black-footer-left.png
+lib/activemq/webapps/images/black-footer-right.png
+lib/activemq/webapps/images/bottom-red-bar.png
+lib/activemq/webapps/images/checker-bg.png
+lib/activemq/webapps/images/content-left.png
+lib/activemq/webapps/images/content-right.png
+lib/activemq/webapps/images/feed_atom.png
+lib/activemq/webapps/images/feed_rss.png
+lib/activemq/webapps/images/left-box-bottom.png
+lib/activemq/webapps/images/left-box-right.png
+lib/activemq/webapps/images/left-box-top.png
+lib/activemq/webapps/images/oval-arrow.png
+lib/activemq/webapps/images/right-box-bottom.png
+lib/activemq/webapps/images/right-box-left.png
+lib/activemq/webapps/images/right-box-top.png
+lib/activemq/webapps/images/small-bullet-gray.png
+lib/activemq/webapps/images/small-bullet-red.png
+lib/activemq/webapps/images/spacer.gif
+lib/activemq/webapps/images/top-red-bar.png
+lib/activemq/webapps/images/white-header-left.png
+lib/activemq/webapps/images/white-header-right.png
+lib/activemq/webapps/images/white-header-top.png
+lib/activemq/webapps/index.html
+lib/activemq/webapps/styles/prettify.css
+lib/activemq/webapps/styles/site.css
+lib/activemq/webapps/styles/sorttable.css
+lib/activemq/webapps/styles/type-settings.css
+%%PORTDOCS%%%%DOCSDIR%%/LICENSE 
+%%PORTDOCS%%%%DOCSDIR%%/NOTICE
+%%PORTDOCS%%%%DOCSDIR%%/README.txt
+%%PORTDOCS%%%%DOCSDIR%%/WebConsole-README.txt
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/user-guide.html
+ at owner %%MQUSER%%
+ at group %%MQGROUP%%
+ at unexec if cmp -s %D/%%ETCDIR%%/activemq.xml %D/%%ETCDIR%%/activemq.xml.sample ; then rm -f %D/%%ETCDIR%%/activemq.xml ; fi
+%%ETCDIR%%/activemq.xml.sample
+ at exec if [ ! -f %B/activemq.xml ]; then cp -p %D/%F %B/activemq.xml; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/credentials-enc.properties %D/%%ETCDIR%%/credentials-enc.properties.sample ; then rm -f %D/%%ETCDIR%%/credentials-enc.properties ; fi
+%%ETCDIR%%/credentials-enc.properties.sample
+ at exec if [ ! -f %B/credentials-enc.properties ]; then cp -p %D/%F %B/credentials-enc.properties; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/credentials.properties %D/%%ETCDIR%%/credentials.properties.sample ; then rm -f %D/%%ETCDIR%%/credentials.properties ; fi
+%%ETCDIR%%/credentials.properties.sample
+ at exec if [ ! -f %B/credentials.properties ]; then cp -p %D/%F %B/credentials.properties; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/jetty-realm.properties %D/%%ETCDIR%%/jetty-realm.properties.sample ; then rm -f %D/%%ETCDIR%%/jetty-realm.properties ; fi
+%%ETCDIR%%/jetty-realm.properties.sample
+ at exec if [ ! -f %B/jetty-realm.properties ]; then cp -p %D/%F %B/jetty-realm.properties; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/jetty.xml %D/%%ETCDIR%%/jetty.xml.sample ; then rm -f %D/%%ETCDIR%%/jetty.xml ; fi
+%%ETCDIR%%/jetty.xml.sample
+ at exec if [ ! -f %B/jetty.xml ]; then cp -p %D/%F %B/jetty.xml; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/jmx.access %D/%%ETCDIR%%/jmx.access.sample ; then rm -f %D/%%ETCDIR%%/jmx.access ; fi
+%%ETCDIR%%/jmx.access.sample
+ at exec if [ ! -f %B/jmx.access ]; then cp -p %D/%F %B/jmx.access; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/jmx.password %D/%%ETCDIR%%/jmx.password.sample ; then rm -f %D/%%ETCDIR%%/jmx.password ; fi
+%%ETCDIR%%/jmx.password.sample
+ at exec if [ ! -f %B/jmx.password ]; then cp -p %D/%F %B/jmx.password; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/log4j.properties %D/%%ETCDIR%%/log4j.properties.sample ; then rm -f %D/%%ETCDIR%%/log4j.properties ; fi
+%%ETCDIR%%/log4j.properties.sample
+ at exec if [ ! -f %B/log4j.properties ]; then cp -p %D/%F %B/log4j.properties; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/logging.properties %D/%%ETCDIR%%/logging.properties.sample ; then rm -f %D/%%ETCDIR%%/logging.properties ; fi
+%%ETCDIR%%/logging.properties.sample
+ at exec if [ ! -f %B/logging.properties ]; then cp -p %D/%F %B/logging.properties; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/broker-localhost.cert %D/%%ETCDIR%%/broker-localhost.cert.sample ; then rm -f %D/%%ETCDIR%%/broker-localhost.cert ; fi
+%%ETCDIR%%/broker-localhost.cert.sample
+ at exec if [ ! -f %B/broker-localhost.cert ]; then cp -p %D/%F %B/broker-localhost.cert; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/broker.ks %D/%%ETCDIR%%/broker.ks.sample ; then rm -f %D/%%ETCDIR%%/broker.ks ; fi
+%%ETCDIR%%/broker.ks.sample
+ at exec if [ ! -f %B/broker.ks ]; then cp -p %D/%F %B/broker.ks; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/broker.ts %D/%%ETCDIR%%/broker.ts.sample ; then rm -f %D/%%ETCDIR%%/broker.ts ; fi
+%%ETCDIR%%/broker.ts.sample
+ at exec if [ ! -f %B/broker.ts ]; then cp -p %D/%F %B/broker.ts; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/client.ks %D/%%ETCDIR%%/client.ks.sample ; then rm -f %D/%%ETCDIR%%/client.ks ; fi
+%%ETCDIR%%/client.ks.sample
+ at exec if [ ! -f %B/client.ks ]; then cp -p %D/%F %B/client.ks; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/client.ts %D/%%ETCDIR%%/client.ts.sample ; then rm -f %D/%%ETCDIR%%/client.ts ; fi
+%%ETCDIR%%/client.ts.sample
+ at exec if [ ! -f %B/client.ts ]; then cp -p %D/%F %B/client.ts; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/groups.properties %D/%%ETCDIR%%/groups.properties.sample ; then rm -f %D/%%ETCDIR%%/groups.properties ; fi
+%%ETCDIR%%/groups.properties.sample
+ at exec if [ ! -f %B/groups.properties ]; then cp -p %D/%F %B/groups.properties; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/login.config %D/%%ETCDIR%%/login.config.sample ; then rm -f %D/%%ETCDIR%%/login.config ; fi
+%%ETCDIR%%/login.config.sample
+ at exec if [ ! -f %B/login.config ]; then cp -p %D/%F %B/login.config; fi
+ at unexec if cmp -s %D/%%ETCDIR%%/users.properties %D/%%ETCDIR%%/users.properties.sample ; then rm -f %D/%%ETCDIR%%/users.properties ; fi
+%%ETCDIR%%/users.properties.sample
+ at exec if [ ! -f %B/users.properties ]; then cp -p %D/%F %B/users.properties; fi
+ at owner root
+ at group wheel
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/java/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/java/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/java/src/main/java/example/Listener.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/java/src/main/java/example/Publisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/python/listener.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/amqp/python/publisher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-demo.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-dynamic-network-broker1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-dynamic-network-broker2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-jdbc-performance.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-jdbc.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-leveldb-replicating.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-scalability.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-security.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-specjms.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-static-network-broker1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-static-network-broker2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-stomp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq-throughput.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/activemq.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/camel.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/jetty-demo.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/log4j.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/resin-web.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/conf/web.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/java/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/java/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/java/src/main/java/example/Listener.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/java/src/main/java/example/Publisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/index.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/css/bootstrap.min.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/css/bootstrap.min.responsive.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/img/glyphicons-halflings-white.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/img/glyphicons-halflings.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/js/jquery-1.7.2.min.js
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mqtt/websocket/js/mqttws31.js
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-composite-destinations/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-composite-destinations/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/composite/dest/Consumer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-composite-destinations/src/main/java/example/composite/dest/Producer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-durable-sub/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-durable-sub/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/topic/durable/Publisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-durable-sub/src/main/java/example/topic/durable/Subscriber.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-exclusive-consumer/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-exclusive-consumer/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/queue/exclusive/Consumer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-exclusive-consumer/src/main/java/example/queue/exclusive/Producer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-message-browser/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-message-browser/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/example/browser/Browser.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-message-browser/src/main/java/example/browser/Producer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue/src/main/java/example/queue/Consumer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue/src/main/java/example/queue/Producer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue/src/main/resources/log4j.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue-selector/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue-selector/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/queue/selector/Consumer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-queue-selector/src/main/java/example/queue/selector/Producer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-temp-destinations/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-temp-destinations/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/example/tempdest/Consumer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-temp-destinations/src/main/java/example/tempdest/ProducerRequestReply.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-topic/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-topic/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-topic/src/main/java/example/topic/Publisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-topic/src/main/java/example/topic/Subscriber.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-topic/src/main/resources/log4j.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-transaction/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-transaction/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-transaction/src/main/java/example/transaction/Client.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-wildcard-consumer/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-wildcard-consumer/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/advanced-scenarios/jms-example-wildcard-consumer/src/main/java/example/wildcard/Client.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/cpp/Listener.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/cpp/Publisher.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/cpp/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/ActiveMQExamples.sln
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/ActiveMQExamples.userprefs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Listener/AssemblyInfo.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Listener/Listener.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Listener/Listener.csproj
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Listener/NMSTracer.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Publisher/AssemblyInfo.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Publisher/NMSTracer.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Publisher/Publisher.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/csharp/ActiveMQExamples/Publisher/Publisher.csproj
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/ecommerce/README.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/ecommerce/build.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/ecommerce/src/Retailer.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/ecommerce/src/Supplier.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/ecommerce/src/TransactionsDemo.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/ecommerce/src/Vendor.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/build.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/readme.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/QueueMonitor/QueueMonitor.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/QueueMonitor/QueueMonitor.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/QueueRoundTrip/QueueRoundTrip.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/RequestReply/Replier.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/RequestReply/Requestor.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/SelectorTalk/SelectorTalk.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/Talk/Talk.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/QueuePTPSamples/TransactedTalk/TransactedTalk.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/Chat/Chat.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/DurableChat/DurableChat.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/HierarchicalChat/HierarchicalChat.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/MessageMonitor/MessageMonitor.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/MessageMonitor/MessageMonitor.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/RequestReply/TopicReplier.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/RequestReply/TopicRequestor.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/SelectorChat/SelectorChat.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/TopicPubSubSamples/TransactedChat/TransactedChat.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/exploring-jms/conf/log4j.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/java/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/java/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/java/src/main/java/example/Listener.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/java/src/main/java/example/Publisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/build.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/CommandLineSupport.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/ConsumerTool.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/EmbeddedBroker.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/Log4jJMSAppenderExample.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/ProducerAndConsumerTool.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/ProducerTool.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/RequesterTool.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/StompExample.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/TopicListener.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/TopicPublisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/jndi.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/openwire/swissarmy/src/log4j-jms.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/other/perfharness/perfharness-activemq.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/cpp/Listener.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/cpp/Publisher.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/cpp/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/ActiveMQExamples.sln
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/ActiveMQExamples.userprefs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Listener/AssemblyInfo.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Listener/Listener.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Listener/Listener.csproj
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Listener/NMSTracer.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Publisher/AssemblyInfo.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Publisher/NMSTracer.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Publisher/Publisher.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/csharp/ActiveMQExamples/Publisher/Publisher.csproj
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/java/pom.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/java/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/java/src/main/java/example/Listener.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/java/src/main/java/example/Publisher.java
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/perl/listener
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/perl/publisher
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/perl/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/php/listener.php
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/php/publisher.php
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/php/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/async/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/async/listener.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/async/publisher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/sync/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/sync/listener.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stompest/sync/publisher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stomppy/listener.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stomppy/publisher.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/python/stomppy/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/ruby/catstomp.rb
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/ruby/listener.rb
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/ruby/publisher.rb
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/ruby/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/ruby/stompcat.rb
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/index.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/readme.md
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/css/bootstrap.min.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/css/bootstrap.min.responsive.css
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/img/glyphicons-halflings-white.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/img/glyphicons-halflings.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/js/jquery-1.7.2.min.js
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stomp/websocket/js/stomp.js


Property changes on: trunk/net/activemq/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list