svn commit: r400170 - in head/www: . tomee tomee/files

Steve Wills swills at FreeBSD.org
Mon Oct 26 00:46:16 UTC 2015


Author: swills
Date: Mon Oct 26 00:46:14 2015
New Revision: 400170
URL: https://svnweb.freebsd.org/changeset/ports/400170

Log:
  www/tomee: create port
  
  Apache TomEE is an all-Apache Java EE 6 Web Profile certified stack
  where Apache Tomcat is top dog. Apache TomEE is assembled from a
  vanilla Apache Tomcat zip file.
  
  WWW: http://tomee.apache.org/
  
  PR:		203897
  Submitted by:	Cecile Neu <cecukemon at gmail.com>

Added:
  head/www/tomee/
  head/www/tomee/Makefile   (contents, props changed)
  head/www/tomee/distinfo   (contents, props changed)
  head/www/tomee/files/
  head/www/tomee/files/tomee.in   (contents, props changed)
  head/www/tomee/pkg-descr   (contents, props changed)
  head/www/tomee/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Oct 25 23:39:49 2015	(r400169)
+++ head/www/Makefile	Mon Oct 26 00:46:14 2015	(r400170)
@@ -2088,6 +2088,7 @@
     SUBDIR += tomcat6
     SUBDIR += tomcat7
     SUBDIR += tomcat8
+    SUBDIR += tomee
     SUBDIR += trac
     SUBDIR += trac-OhlohWidgetsMacro
     SUBDIR += trac-TracGoogleAnalytics

Added: head/www/tomee/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/tomee/Makefile	Mon Oct 26 00:46:14 2015	(r400170)
@@ -0,0 +1,54 @@
+# Created by: Cecile Neu <neu at mycontrol.de>
+# $FreeBSD$
+
+PORTNAME=	tomee
+PORTVERSION=	1.7.2
+CATEGORIES=	www java
+MASTER_SITES=	APACHE/tomee/tomee-${PORTVERSION}
+DISTNAME=	apache-${PORTNAME}-${PORTVERSION}-webprofile
+
+MAINTAINER=	neu at mycontrol.de
+COMMENT=	Open-source Java EE Container by Apache
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	jsvc:${PORTSDIR}/devel/jakarta-commons-daemon
+
+USES=		cpe
+CPE_VENDOR=	apache
+
+USE_JAVA=	yes
+JAVA_VERSION=	1.6+
+NO_BUILD=	yes
+
+USE_RC_SUBR=	${PKGBASE}
+
+TOMEE_SUBDIR?=	${DISTNAME:R}
+TOMEE_HOME=	${PREFIX}/${TOMEE_SUBDIR}
+TOMEE_CONF_FILES=	\
+		catalina.policy catalina.properties context.xml logging.properties \
+		server.xml tomcat-users.xml web.xml tomee.xml system.properties
+PLIST_SUB=	T=${TOMEE_SUBDIR} \
+		WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
+
+SUB_LIST=	TOMEE_HOME=${TOMEE_HOME} \
+		TOMEE_USER=${WWWOWN} \
+		JAVA_HOME=${JAVA_HOME}
+WRKSRC=		${WRKDIR}/apache-${PORTNAME}-webprofile-${PORTVERSION}
+
+.include <bsd.port.pre.mk>
+
+post-patch:
+	@${FIND} ${WRKSRC} -name '*.bat' -delete
+	@${FIND} ${WRKSRC} -name '*.exe' -delete
+	@${FIND} ${WRKSRC} -name '*.bat.original' -delete
+.for f in ${TOMEE_CONF_FILES}
+	@${MV} ${WRKSRC}/conf/${f} ${WRKSRC}/conf/${f}.sample
+.endfor
+
+do-install:
+	${MKDIR} ${STAGEDIR}${TOMEE_HOME}/logs
+	${CP} -R ${WRKSRC}/* ${STAGEDIR}${TOMEE_HOME}
+	${FIND} ${STAGEDIR}${TOMEE_HOME} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
+
+.include <bsd.port.post.mk>

Added: head/www/tomee/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/tomee/distinfo	Mon Oct 26 00:46:14 2015	(r400170)
@@ -0,0 +1,2 @@
+SHA256 (apache-tomee-1.7.2-webprofile.tar.gz) = 9802fef834a3d2944fc325440e1aadbd3b00956e5ef43f5ef9eea8b91a12d230
+SIZE (apache-tomee-1.7.2-webprofile.tar.gz) = 30787317

Added: head/www/tomee/files/tomee.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/tomee/files/tomee.in	Mon Oct 26 00:46:14 2015	(r400170)
@@ -0,0 +1,135 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: tomee
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+
+#
+# Configuration settings for tomee in /etc/rc.conf:
+#
+# tomee_enable (bool):
+#   Set to "NO" by default.
+#   Set it to "YES" to enable TomEE
+#
+# tomee_catalina_base (str)
+#   Set to "%%TOMEE_HOME%%" by default.
+#   Set the CATALINA_BASE variable for the TomEE process
+#
+# tomee_catalina_tmpdir (str)
+#   Set to "${catalina.base}/temp" by default.
+#   Set the CATALINA_TMPDIR variable for the TomEE process
+#
+# tomee_stdout (str)
+#   Set to "${catalina.base}/logs/catalina.out" by default.
+#   Set the stdout redirection. It may also be '/dev/null', '&1' or '&2'
+#
+# tomee_stderr (str)
+#   Set to "&1" by default.
+#   Set the stderr redirection. It may also be '/dev/null', '&1' or '&2'
+#
+# tomee_pipe_cmd (str):
+#   Set to "" by default.
+#   Set a piped command to process stdout/stderr when passthru
+#
+# tomee_logging_manager (str):
+#   Set to "org.apache.juli.ClassLoaderLogManager" by default.
+#   Set the JUL log manager
+#
+# tomee_logging_config (str):
+#   Set to "${catalina.base}/conf/logging.properties" by default.
+#   Set the JUL config file 
+#
+# tomee_java_home (str):
+#   Set to "%%JAVA_HOME%%" by default.
+#   Specify the Java VM to use.
+#
+# tomee_classpath (str):
+#   Set to "" by default.
+#   Addtional classes to add to the CLASSPATH. If set, must start with ':'
+#
+# tomee_java_opts (str):
+#   Set to "" by default.
+#   Java VM args to use.
+#
+# tomee_wait (int):
+#   Set to "30" by default.
+#   Set the wait time (in seconds) for Tomcat process startup
+#
+# You may symlink this script with other names to run multiple
+# instances of tomee with different configurations.
+#
+
+. /etc/rc.subr
+
+case $0 in
+/etc/rc*)
+	# during boot (shutdown) $0 is /etc/rc (/etc/rc.shutdown),
+	# so get the name of the script from $_file
+	name=$_file
+	;;
+*)
+	name=$0
+	;;
+esac
+
+name=tomee
+rcvar=tomee_enable
+
+load_rc_config "${name}"
+
+eval "${rcvar}=\${${rcvar}:-'NO'}"
+eval "_tomee_java_home=\${${name}_java_home:-'%%JAVA_HOME%%'}"
+eval "_tomee_catalina_user=\${${name}_catalina_user:-'%%TOMEE_USER%%'}"
+eval "_tomee_catalina_home='%%TOMEE_HOME%%'"
+eval "_tomee_catalina_base=\${${name}_catalina_base:-'%%TOMEE_HOME%%'}"
+eval "_tomee_catalina_tmpdir=\${${name}_catalina_tmpdir:-'${_tomee_catalina_base}/temp'}"
+eval "_tomee_stdout=\${${name}_stdout:-'${_tomee_catalina_base}/logs/catalina.out'}"
+eval "_tomee_stderr=\${${name}_stderr:-'&1'}"
+eval "_tomee_pipe_cmd=\${${name}_pipe_cmd:-''}"
+eval "_tomee_logging_manager=\${${name}_logging_manager:-'org.apache.juli.ClassLoaderLogManager'}"
+eval "_tomee_logging_config=\${${name}_logging_config:-'${_tomee_catalina_base}/conf/logging.properties'}"
+eval "_tomee_classpath=\${${name}_classpath:-''}"
+eval "_tomee_java_opts=\${${name}_java_opts:-''}"
+eval "_tomee_wait=\${${name}_wait:-'30'}"
+
+pidfile="/var/run/${name}.pid"
+
+required_files="${_tomee_catalina_base}/conf/server.xml"
+required_dirs="${_tomee_catalina_tmpdir}"
+
+extra_commands="reload"
+
+command="%%LOCALBASE%%/bin/jsvc"
+command_args="-java-home '${_tomee_java_home}' \
+	-server \
+	-user ${_tomee_catalina_user} \
+	-pidfile '${pidfile}' \
+	-wait ${_tomee_wait} \
+	-outfile '${_tomee_stdout}' \
+	-errfile '${_tomee_stderr}' \
+	-classpath '%%TOMEE_HOME%%/bin/bootstrap.jar:%%LOCALBASE%%/share/java/classes/commons-daemon.jar:%%TOMEE_HOME%%/bin/tomcat-juli.jar${_tomee_classpath}' \
+	-Djava.util.logging.manager=${_tomee_logging_manager} \
+	-Djava.util.logging.config.file='${_tomee_logging_config}' \
+	${_tomee_java_opts} \
+	-Djava.endorsed.dirs='%%TOMEE_HOME%%/endorsed' \
+	-Dcatalina.home='${_tomee_catalina_home}' \
+	-Dcatalina.base='${_tomee_catalina_base}' \
+	-Djava.io.tmpdir='${_tomee_catalina_tmpdir}' \
+	org.apache.catalina.startup.Bootstrap \
+	${_tomee_pipe_cmd}"
+
+start_precmd="tomee_prestart"
+
+tomee_prestart()
+{
+	if [ -r "${_tomee_catalina_base}/bin/setenv.sh" ]; then
+		. "${_tomee_catalina_base}/bin/setenv.sh"
+	elif [ -r "%%TOMEE_HOME%%/bin/setenv.sh" ]; then
+		. "%%TOMEE_HOME%%/bin/setenv.sh"
+	fi
+}
+
+run_rc_command "$1"

Added: head/www/tomee/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/tomee/pkg-descr	Mon Oct 26 00:46:14 2015	(r400170)
@@ -0,0 +1,5 @@
+Apache TomEE is an all-Apache Java EE 6 Web Profile certified stack 
+where Apache Tomcat is top dog. Apache TomEE is assembled from a 
+vanilla Apache Tomcat zip file.
+
+WWW: http://tomee.apache.org/

Added: head/www/tomee/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/tomee/pkg-plist	Mon Oct 26 00:46:14 2015	(r400170)
@@ -0,0 +1,309 @@
+%%T%%/LICENSE
+%%T%%/NOTICE
+%%T%%/RELEASE-NOTES
+%%T%%/RUNNING.txt
+%%T%%/bin/bootstrap.jar
+%%T%%/bin/catalina-tasks.xml
+%%T%%/bin/catalina.sh
+%%T%%/bin/catalina.sh.original
+%%T%%/bin/commons-daemon-native.tar.gz
+%%T%%/bin/commons-daemon.jar
+%%T%%/bin/configtest.sh
+%%T%%/bin/daemon.sh
+%%T%%/bin/digest.sh
+%%T%%/bin/service.readme.txt
+%%T%%/bin/setclasspath.sh
+%%T%%/bin/shutdown.sh
+%%T%%/bin/startup.sh
+%%T%%/bin/tomcat-juli.jar
+%%T%%/bin/tomcat-native.tar.gz
+%%T%%/bin/tomee.sh
+%%T%%/bin/tool-wrapper.sh
+%%T%%/bin/version.sh
+ at sample %%T%%/conf/catalina.policy.sample
+ at sample %%T%%/conf/catalina.properties.sample
+ at sample %%T%%/conf/context.xml.sample
+ at sample %%T%%/conf/logging.properties.sample
+%%T%%/conf/server.xml.original
+ at sample %%T%%/conf/server.xml.sample
+ at sample %%T%%/conf/system.properties.sample
+%%T%%/conf/tomcat-users.xml.original
+ at sample %%T%%/conf/tomcat-users.xml.sample
+ at sample %%T%%/conf/tomee.xml.sample
+ at sample %%T%%/conf/web.xml.sample
+%%T%%/endorsed/annotation-api.jar
+%%T%%/endorsed/jaxb-api.jar
+%%T%%/lib/FastInfoset-1.2.12.jar
+%%T%%/lib/bval-core-0.5.jar
+%%T%%/lib/bval-jsr303-0.5.jar
+%%T%%/lib/catalina-ant.jar
+%%T%%/lib/catalina-ha.jar
+%%T%%/lib/catalina-tribes.jar
+%%T%%/lib/catalina.jar
+%%T%%/lib/commons-beanutils-core-1.8.3.jar
+%%T%%/lib/commons-cli-1.2.jar
+%%T%%/lib/commons-codec-1.9.jar
+%%T%%/lib/commons-collections-3.2.1.jar
+%%T%%/lib/commons-dbcp-1.4.jar
+%%T%%/lib/commons-digester-1.8.jar
+%%T%%/lib/commons-lang-2.6.jar
+%%T%%/lib/commons-lang3-3.3.2.jar
+%%T%%/lib/commons-logging-1.1.1.jar
+%%T%%/lib/commons-pool-1.5.7.jar
+%%T%%/lib/ecj-4.4.2.jar
+%%T%%/lib/el-api.jar
+%%T%%/lib/geronimo-javamail_1.4_mail-1.8.3.jar
+%%T%%/lib/geronimo-transaction-3.1.1.jar
+%%T%%/lib/howl-1.0.1-1.jar
+%%T%%/lib/hsqldb-2.3.2.jar
+%%T%%/lib/istack-commons-runtime-2.16.jar
+%%T%%/lib/jansi-1.8.jar
+%%T%%/lib/jasper-el.jar
+%%T%%/lib/jasper.jar
+%%T%%/lib/javaee-api-6.0-6.jar
+%%T%%/lib/jaxb-core-2.2.7.jar
+%%T%%/lib/jaxb-impl.jar
+%%T%%/lib/jsp-api.jar
+%%T%%/lib/mbean-annotation-api-4.7.2.jar
+%%T%%/lib/myfaces-api-2.1.17.jar
+%%T%%/lib/myfaces-impl-2.1.17.jar
+%%T%%/lib/openejb-api-4.7.2.jar
+%%T%%/lib/openejb-client-4.7.2.jar
+%%T%%/lib/openejb-core-4.7.2.jar
+%%T%%/lib/openejb-ejbd-4.7.2.jar
+%%T%%/lib/openejb-hsql-4.7.2.jar
+%%T%%/lib/openejb-http-4.7.2.jar
+%%T%%/lib/openejb-javaagent.jar
+%%T%%/lib/openejb-jee-4.7.2.jar
+%%T%%/lib/openejb-jee-accessors-4.7.2.jar
+%%T%%/lib/openejb-jpa-integration-4.7.2.jar
+%%T%%/lib/openejb-jstl-1.2.jar
+%%T%%/lib/openejb-loader-4.7.2.jar
+%%T%%/lib/openejb-server-4.7.2.jar
+%%T%%/lib/openjpa-2.4.0.jar
+%%T%%/lib/openwebbeans-ee-1.2.7.jar
+%%T%%/lib/openwebbeans-ee-common-1.2.7.jar
+%%T%%/lib/openwebbeans-ejb-1.2.7.jar
+%%T%%/lib/openwebbeans-el22-1.2.7.jar
+%%T%%/lib/openwebbeans-impl-1.2.7.jar
+%%T%%/lib/openwebbeans-jsf-1.2.7.jar
+%%T%%/lib/openwebbeans-spi-1.2.7.jar
+%%T%%/lib/openwebbeans-web-1.2.7.jar
+%%T%%/lib/quartz-openejb-shade-2.2.1.jar
+%%T%%/lib/serp-1.14.1.jar
+%%T%%/lib/servlet-api.jar
+%%T%%/lib/slf4j-api-1.7.7.jar
+%%T%%/lib/slf4j-jdk14-1.7.7.jar
+%%T%%/lib/swizzle-stream-1.6.2.jar
+%%T%%/lib/sxc-jaxb-core-0.8.jar
+%%T%%/lib/sxc-runtime-0.8.jar
+%%T%%/lib/tomcat-api.jar
+%%T%%/lib/tomcat-coyote.jar
+%%T%%/lib/tomcat-dbcp.jar
+%%T%%/lib/tomcat-i18n-es.jar
+%%T%%/lib/tomcat-i18n-fr.jar
+%%T%%/lib/tomcat-i18n-ja.jar
+%%T%%/lib/tomcat-jdbc.jar
+%%T%%/lib/tomcat-util.jar
+%%T%%/lib/tomcat7-websocket.jar
+%%T%%/lib/tomee-catalina-1.7.2.jar
+%%T%%/lib/tomee-common-1.7.2.jar
+%%T%%/lib/tomee-jdbc-1.7.2.jar
+%%T%%/lib/tomee-loader-1.7.2.jar
+%%T%%/lib/tomee-mojarra-1.7.2.jar
+%%T%%/lib/tomee-myfaces-1.7.2.jar
+%%T%%/lib/tomee-webapp-1.7.2.jar
+%%T%%/lib/websocket-api.jar
+%%T%%/lib/xbean-asm5-shaded-4.2.jar
+%%T%%/lib/xbean-bundleutils-4.2.jar
+%%T%%/lib/xbean-finder-shaded-4.2.jar
+%%T%%/lib/xbean-naming-4.2.jar
+%%T%%/lib/xbean-reflect-4.2.jar
+%%T%%/temp/safeToDelete.tmp
+%%T%%/webapps/ROOT/RELEASE-NOTES.txt
+%%T%%/webapps/ROOT/WEB-INF/web.xml
+%%T%%/webapps/ROOT/asf-logo-wide.gif
+%%T%%/webapps/ROOT/asf-logo.png
+%%T%%/webapps/ROOT/bg-button.png
+%%T%%/webapps/ROOT/bg-middle.png
+%%T%%/webapps/ROOT/bg-nav-item.png
+%%T%%/webapps/ROOT/bg-nav.png
+%%T%%/webapps/ROOT/bg-upper.png
+%%T%%/webapps/ROOT/build.xml
+%%T%%/webapps/ROOT/favicon.ico
+%%T%%/webapps/ROOT/index.jsp
+%%T%%/webapps/ROOT/tomcat-power.gif
+%%T%%/webapps/ROOT/tomcat.css
+%%T%%/webapps/ROOT/tomcat.gif
+%%T%%/webapps/ROOT/tomcat.png
+%%T%%/webapps/ROOT/tomcat.svg
+%%T%%/webapps/docs/BUILDING.txt
+%%T%%/webapps/docs/RELEASE-NOTES.txt
+%%T%%/webapps/docs/RUNNING.txt
+%%T%%/webapps/docs/WEB-INF/web.xml
+%%T%%/webapps/docs/aio.html
+%%T%%/webapps/docs/api/index.html
+%%T%%/webapps/docs/appdev/build.xml.txt
+%%T%%/webapps/docs/appdev/deployment.html
+%%T%%/webapps/docs/appdev/index.html
+%%T%%/webapps/docs/appdev/installation.html
+%%T%%/webapps/docs/appdev/introduction.html
+%%T%%/webapps/docs/appdev/processes.html
+%%T%%/webapps/docs/appdev/sample/build.xml
+%%T%%/webapps/docs/appdev/sample/docs/README.txt
+%%T%%/webapps/docs/appdev/sample/index.html
+%%T%%/webapps/docs/appdev/sample/sample.war
+%%T%%/webapps/docs/appdev/sample/src/mypackage/Hello.java
+%%T%%/webapps/docs/appdev/sample/web/WEB-INF/web.xml
+%%T%%/webapps/docs/appdev/sample/web/hello.jsp
+%%T%%/webapps/docs/appdev/sample/web/images/tomcat.gif
+%%T%%/webapps/docs/appdev/sample/web/index.html
+%%T%%/webapps/docs/appdev/source.html
+%%T%%/webapps/docs/appdev/web.xml.txt
+%%T%%/webapps/docs/apr.html
+%%T%%/webapps/docs/architecture/index.html
+%%T%%/webapps/docs/architecture/overview.html
+%%T%%/webapps/docs/architecture/requestProcess.html
+%%T%%/webapps/docs/architecture/requestProcess/requestProcess.pdf
+%%T%%/webapps/docs/architecture/requestProcess/roseModel.mdl
+%%T%%/webapps/docs/architecture/startup.html
+%%T%%/webapps/docs/architecture/startup/serverStartup.pdf
+%%T%%/webapps/docs/architecture/startup/serverStartup.txt
+%%T%%/webapps/docs/balancer-howto.html
+%%T%%/webapps/docs/building.html
+%%T%%/webapps/docs/cgi-howto.html
+%%T%%/webapps/docs/changelog.html
+%%T%%/webapps/docs/class-loader-howto.html
+%%T%%/webapps/docs/cluster-howto.html
+%%T%%/webapps/docs/comments.html
+%%T%%/webapps/docs/config/ajp.html
+%%T%%/webapps/docs/config/automatic-deployment.html
+%%T%%/webapps/docs/config/cluster-channel.html
+%%T%%/webapps/docs/config/cluster-deployer.html
+%%T%%/webapps/docs/config/cluster-interceptor.html
+%%T%%/webapps/docs/config/cluster-listener.html
+%%T%%/webapps/docs/config/cluster-manager.html
+%%T%%/webapps/docs/config/cluster-membership.html
+%%T%%/webapps/docs/config/cluster-receiver.html
+%%T%%/webapps/docs/config/cluster-sender.html
+%%T%%/webapps/docs/config/cluster-valve.html
+%%T%%/webapps/docs/config/cluster.html
+%%T%%/webapps/docs/config/context.html
+%%T%%/webapps/docs/config/engine.html
+%%T%%/webapps/docs/config/executor.html
+%%T%%/webapps/docs/config/filter.html
+%%T%%/webapps/docs/config/globalresources.html
+%%T%%/webapps/docs/config/host.html
+%%T%%/webapps/docs/config/http.html
+%%T%%/webapps/docs/config/index.html
+%%T%%/webapps/docs/config/jar-scanner.html
+%%T%%/webapps/docs/config/listeners.html
+%%T%%/webapps/docs/config/loader.html
+%%T%%/webapps/docs/config/manager.html
+%%T%%/webapps/docs/config/realm.html
+%%T%%/webapps/docs/config/resources.html
+%%T%%/webapps/docs/config/server.html
+%%T%%/webapps/docs/config/service.html
+%%T%%/webapps/docs/config/sessionidgenerator.html
+%%T%%/webapps/docs/config/systemprops.html
+%%T%%/webapps/docs/config/valve.html
+%%T%%/webapps/docs/connectors.html
+%%T%%/webapps/docs/default-servlet.html
+%%T%%/webapps/docs/deployer-howto.html
+%%T%%/webapps/docs/developers.html
+%%T%%/webapps/docs/elapi/index.html
+%%T%%/webapps/docs/extras.html
+%%T%%/webapps/docs/funcspecs/fs-admin-apps.html
+%%T%%/webapps/docs/funcspecs/fs-admin-objects.html
+%%T%%/webapps/docs/funcspecs/fs-admin-opers.html
+%%T%%/webapps/docs/funcspecs/fs-default.html
+%%T%%/webapps/docs/funcspecs/fs-jdbc-realm.html
+%%T%%/webapps/docs/funcspecs/fs-jndi-realm.html
+%%T%%/webapps/docs/funcspecs/fs-memory-realm.html
+%%T%%/webapps/docs/funcspecs/index.html
+%%T%%/webapps/docs/funcspecs/mbean-names.html
+%%T%%/webapps/docs/html-manager-howto.html
+%%T%%/webapps/docs/images/add.gif
+%%T%%/webapps/docs/images/asf-logo.gif
+%%T%%/webapps/docs/images/code.gif
+%%T%%/webapps/docs/images/cors-flowchart.png
+%%T%%/webapps/docs/images/design.gif
+%%T%%/webapps/docs/images/docs.gif
+%%T%%/webapps/docs/images/fix.gif
+%%T%%/webapps/docs/images/printer.gif
+%%T%%/webapps/docs/images/tomcat.gif
+%%T%%/webapps/docs/images/tomcat.svg
+%%T%%/webapps/docs/images/update.gif
+%%T%%/webapps/docs/images/void.gif
+%%T%%/webapps/docs/index.html
+%%T%%/webapps/docs/introduction.html
+%%T%%/webapps/docs/jasper-howto.html
+%%T%%/webapps/docs/jdbc-pool.html
+%%T%%/webapps/docs/jndi-datasource-examples-howto.html
+%%T%%/webapps/docs/jndi-resources-howto.html
+%%T%%/webapps/docs/jspapi/index.html
+%%T%%/webapps/docs/logging.html
+%%T%%/webapps/docs/manager-howto.html
+%%T%%/webapps/docs/maven-jars.html
+%%T%%/webapps/docs/mbeans-descriptor-howto.html
+%%T%%/webapps/docs/monitoring.html
+%%T%%/webapps/docs/proxy-howto.html
+%%T%%/webapps/docs/realm-howto.html
+%%T%%/webapps/docs/security-howto.html
+%%T%%/webapps/docs/security-manager-howto.html
+%%T%%/webapps/docs/servletapi/index.html
+%%T%%/webapps/docs/setup.html
+%%T%%/webapps/docs/ssi-howto.html
+%%T%%/webapps/docs/ssl-howto.html
+%%T%%/webapps/docs/tribes/developers.html
+%%T%%/webapps/docs/tribes/faq.html
+%%T%%/webapps/docs/tribes/interceptors.html
+%%T%%/webapps/docs/tribes/introduction.html
+%%T%%/webapps/docs/tribes/membership.html
+%%T%%/webapps/docs/tribes/setup.html
+%%T%%/webapps/docs/tribes/status.html
+%%T%%/webapps/docs/tribes/transport.html
+%%T%%/webapps/docs/virtual-hosting-howto.html
+%%T%%/webapps/docs/web-socket-howto.html
+%%T%%/webapps/docs/websocketapi/index.html
+%%T%%/webapps/docs/windows-auth-howto.html
+%%T%%/webapps/docs/windows-service-howto.html
+%%T%%/webapps/host-manager/META-INF/context.xml
+%%T%%/webapps/host-manager/WEB-INF/jsp/401.jsp
+%%T%%/webapps/host-manager/WEB-INF/jsp/403.jsp
+%%T%%/webapps/host-manager/WEB-INF/jsp/404.jsp
+%%T%%/webapps/host-manager/WEB-INF/web.xml
+%%T%%/webapps/host-manager/images/add.gif
+%%T%%/webapps/host-manager/images/asf-logo.gif
+%%T%%/webapps/host-manager/images/code.gif
+%%T%%/webapps/host-manager/images/design.gif
+%%T%%/webapps/host-manager/images/docs.gif
+%%T%%/webapps/host-manager/images/fix.gif
+%%T%%/webapps/host-manager/images/tomcat.gif
+%%T%%/webapps/host-manager/images/update.gif
+%%T%%/webapps/host-manager/images/void.gif
+%%T%%/webapps/host-manager/index.jsp
+%%T%%/webapps/host-manager/manager.xml
+%%T%%/webapps/manager/META-INF/context.xml
+%%T%%/webapps/manager/WEB-INF/jsp/401.jsp
+%%T%%/webapps/manager/WEB-INF/jsp/403.jsp
+%%T%%/webapps/manager/WEB-INF/jsp/404.jsp
+%%T%%/webapps/manager/WEB-INF/jsp/sessionDetail.jsp
+%%T%%/webapps/manager/WEB-INF/jsp/sessionsList.jsp
+%%T%%/webapps/manager/WEB-INF/web.xml
+%%T%%/webapps/manager/images/add.gif
+%%T%%/webapps/manager/images/asf-logo.gif
+%%T%%/webapps/manager/images/code.gif
+%%T%%/webapps/manager/images/design.gif
+%%T%%/webapps/manager/images/docs.gif
+%%T%%/webapps/manager/images/fix.gif
+%%T%%/webapps/manager/images/tomcat.gif
+%%T%%/webapps/manager/images/update.gif
+%%T%%/webapps/manager/images/void.gif
+%%T%%/webapps/manager/index.jsp
+%%T%%/webapps/manager/status.xsd
+%%T%%/webapps/manager/xform.xsl
+ at dir %%T%%/logs
+ at dir %%T%%/work
+ at exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%T%%/conf %D/%%T%%/logs %D/%%T%%/temp %D/%%T%%/webapps %D/%%T%%/work
+ at unexec [ ! -d %D/%%T%% ] || echo If permanently deleting this package, %D/%%T%% must be removed manually


More information about the svn-ports-all mailing list