ports/109166: [NEW PORT]Apache Tomcat 6.0.9
Nemo Liu
nemoliu at gmail.com
Wed Feb 14 15:40:05 UTC 2007
>Number: 109166
>Category: ports
>Synopsis: [NEW PORT]Apache Tomcat 6.0.9
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: change-request
>Submitter-Id: current-users
>Arrival-Date: Wed Feb 14 15:40:04 GMT 2007
>Closed-Date:
>Last-Modified:
>Originator: Nemo Liu
>Release: 6.2
>Organization:
>Environment:
FreeBSD monitor.internal.sina.com.cn 6.2-STORM-r3 FreeBSD 6.2-STORM-r3 #0: Tue Jan 30 18:26:24 CST 2007 root at monitor.internal.sina.com.cn:/usr/obj/usr/src/sys/TANGO i386
>Description:
NEW PORT: Apache Tomcat 6.0.9
Apache Tomcat version 6.0 implements the Servlet 2.5 and JavaServer Pages 2.1 specifications from the Java Community Process, and includes many additional features that make it a useful platform for developing and deploying web applications and web services.
>How-To-Repeat:
>Fix:
Patch attached with submission follows:
# This is a shell archive. Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file". Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
# /usr/ports/www/tomcat6
# /usr/ports/www/tomcat6/files
# /usr/ports/www/tomcat6/files/pkg-deinstall.in
# /usr/ports/www/tomcat6/files/patch-conf__server.xml
# /usr/ports/www/tomcat6/files/pkg-install.in
# /usr/ports/www/tomcat6/files/tomcat6.sh.in
# /usr/ports/www/tomcat6/Makefile
# /usr/ports/www/tomcat6/distinfo
# /usr/ports/www/tomcat6/pkg-descr
# /usr/ports/www/tomcat6/pkg-plist
#
echo c - /usr/ports/www/tomcat6
mkdir -p /usr/ports/www/tomcat6 > /dev/null 2>&1
echo c - /usr/ports/www/tomcat6/files
mkdir -p /usr/ports/www/tomcat6/files > /dev/null 2>&1
echo x - /usr/ports/www/tomcat6/files/pkg-deinstall.in
sed 's/^X//' >/usr/ports/www/tomcat6/files/pkg-deinstall.in << 'END-of-/usr/ports/www/tomcat6/files/pkg-deinstall.in'
X#!/bin/sh
X#
X# This script does the following.
X#
X# * Checks if the PID file exists. If it does, it kills the
X# process and removes the PID file.
X#
X# * Checks if the '%%USER%%' user exists. If it does, then it displays
X# a message.
X#
X# $FreeBSD: ports/www/tomcat55/files/pkg-deinstall.in,v 1.1 2006/02/07 08:50:09 lawrance Exp $
X#
X
XUSER=%%USER%%
XPID_FILE=%%PID_FILE%%
X
X# Make sure we're in the right stage of the process
Xif [ "$2" = "DEINSTALL" ]; then
X
X # Kill the process if it is still running
X if [ -s ${PID_FILE} ]; then
X PID=`cat ${PID_FILE}`
X echo -n ">> Killing Tomcat process (${PID})..."
X /bin/kill ${PID} > /dev/null 2> /dev/null
X if [ $? -eq 0 ]; then
X echo " [ DONE ]"
X else
X echo " [ FAILED ]"
X fi
X echo -n ">> Removing PID file (${PID_FILE})..."
X rm ${PID_FILE} > /dev/null 2> /dev/null
X if [ $? -eq 0 ]; then
X echo " [ DONE ]"
X else
X echo " [ FAILED ]"
X fi
X fi
Xfi
X
Xif [ "$2" = "POST-DEINSTALL" ]; then
X # If the user exists, then display a message
X if pw usershow "${USER}" 2>/dev/null 1>&2; then
X echo "To delete the ${USER} user permanently, use 'pw userdel ${USER}'"
X fi
Xfi
X
Xexit 0
END-of-/usr/ports/www/tomcat6/files/pkg-deinstall.in
echo x - /usr/ports/www/tomcat6/files/patch-conf__server.xml
sed 's/^X//' >/usr/ports/www/tomcat6/files/patch-conf__server.xml << 'END-of-/usr/ports/www/tomcat6/files/patch-conf__server.xml'
X--- ./conf/server.xml.orig Wed Feb 14 18:01:28 2007
X+++ ./conf/server.xml Wed Feb 14 18:01:20 2007
X@@ -2,7 +2,7 @@
X define subcomponents such as "Valves" at this level.
X Documentation at /docs/config/server.html
X -->
X-<Server port="8005" shutdown="SHUTDOWN">
X+<Server port="%SHUTDOWN_PORT%%" shutdown="SHUTDOWN">
X
X <!--APR library loader. Documentation at /docs/apr.html -->
X <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" />
X@@ -40,7 +40,7 @@
X APR (HTTP/AJP) Connector: /docs/apr.html
X Define a non-SSL HTTP/1.1 Connector on port 8080
X -->
X- <Connector port="8080" protocol="HTTP/1.1"
X+ <Connector port="%%HTTP_PORT%%" protocol="HTTP/1.1"
X maxThreads="150" connectionTimeout="20000"
X redirectPort="8443" />
X
X@@ -55,7 +55,7 @@
X -->
X
X <!-- Define an AJP 1.3 Connector on port 8009 -->
X- <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
X+ <Connector port="%%AJP_1_3_PORT%%" protocol="AJP/1.3" redirectPort="8443" />
X
X
X <!-- An Engine represents the entry point (within Catalina) that processes
END-of-/usr/ports/www/tomcat6/files/patch-conf__server.xml
echo x - /usr/ports/www/tomcat6/files/pkg-install.in
sed 's/^X//' >/usr/ports/www/tomcat6/files/pkg-install.in << 'END-of-/usr/ports/www/tomcat6/files/pkg-install.in'
X#!/bin/sh
X#
X# Checks if the '%%USER%%' user and '%%GROUP%%' group exist. If they don't, then
X# an attempt is made to create both.
X#
X# $FreeBSD: ports/www/tomcat55/files/pkg-install.in,v 1.1 2006/02/07 08:50:09 lawrance Exp $
X#
X
X# Make sure we're called during the 'make install' process
Xif [ "$2" != "PRE-INSTALL" ]; then
X exit 0
Xfi
X
X# Set some constants
XUID=80
XGID=${UID}
XUSER=%%USER%%
XGROUP=%%GROUP%%
X
X# See if the group already exists
Xif ! pw groupshow "${GROUP}" 2>/dev/null 1>&2; then
X
X # If not, try to create it
X if pw groupadd "${GROUP}" -g ${GID}; then
X echo "Added group \"${GROUP}\"."
X elif pw groupadd "${GROUP}"; then
X echo "Added group \"${GROUP}\"."
X else
X echo "Adding group \"${GROUP}\" failed..."
X exit 1
X fi
Xfi
X
X# See if the user already exists
Xif ! pw usershow "${USER}" 2>/dev/null 1>&2; then
X
X # If not, try to create it
X if pw useradd "${USER}" -u ${UID} -g "${GROUP}" -h - \
X -s "/sbin/nologin" -d "/nonexistent" \
X -c "World Wide Web Owner";
X then
X echo "Added user \"${USER}\"."
X elif pw useradd "${USER}" -g "${GROUP}" -h - \
X -s "/sbin/nologin" -d "/nonexistent" \
X -c "World Wide Web Owner";
X then
X echo "Added user \"${USER}\"."
X else
X echo "Adding user \"${USER}\" failed..."
X exit 1
X fi
Xfi
Xexit 0
END-of-/usr/ports/www/tomcat6/files/pkg-install.in
echo x - /usr/ports/www/tomcat6/files/tomcat6.sh.in
sed 's/^X//' >/usr/ports/www/tomcat6/files/tomcat6.sh.in << 'END-of-/usr/ports/www/tomcat6/files/tomcat6.sh.in'
X#!/bin/sh
X#
X# $FreeBSD$
X#
X
X# PROVIDE: tomcat%%TOMCAT_VERSION%%
X# REQUIRE: NETWORKING SERVERS
X# BEFORE: DAEMON
X# KEYWORD: shutdown
X
X#
X# Configuration settings for tomcat%%TOMCAT_VERSION%% in /etc/rc.conf:
X#
X# tomcat%%TOMCAT_VERSION%%_enable (bool):
X# Set to "NO" by default.
X# Set it to "YES" to enable tomcat%%TOMCAT_VERSION%%
X#
X# tomcat%%TOMCAT_VERSION%%_flags (str):
X# Set to "" by default.
X# Extra flags passed to start command
X#
X# tomcat%%TOMCAT_VERSION%%_catalina_home (str)
X# Set to "%%TOMCAT_HOME%%" by default.
X# Set the CATALINA_HOME variable for the Tomcat process
X#
X# tomcat%%TOMCAT_VERSION%%_catalina_base (str)
X# Set to "%%TOMCAT_HOME%%" by default.
X# Set the CATALINA_BASE variable for the Tomcat process
X#
X# tomcat%%TOMCAT_VERSION%%_catalina_tmpdir (str)
X# Set to "%%TOMCAT_HOME%%/temp" by default.
X# Set the CATALINA_TMPDIR variable for the Tomcat process
X#
X# tomcat%%TOMCAT_VERSION%%_stdout_log (str)
X# Set to "%%STDOUT_LOG%%" by default.
X# Set the location for the Tomcat process log (standard output)
X#
X# tomcat%%TOMCAT_VERSION%%_stderr_log (str)
X# Set to "%%STDERR_LOG%%" by default.
X# Set the location for the Tomcat process log (error output)
X#
X# tomcat%%TOMCAT_VERSION%%_stop_timeout (num)
X# Set to "10" by default.
X# Sets the timeout in seconds to allow tomcat to shutdown.
X# After the timeout has elapsed, tomcat will be killed.
X#
X# tomcat%%TOMCAT_VERSION%%_java_home (str):
X# tomcat%%TOMCAT_VERSION%%_java_vendor (str):
X# tomcat%%TOMCAT_VERSION%%_java_version (str):
X# tomcat%%TOMCAT_VERSION%%_java_os (str):
X# Specify the requirements of the Java VM to use. See javavm(1).
X#
X# tomcat%%TOMCAT_VERSION%%_classpath (str):
X# Set to "" by default.
X# Addtional classes to add to the CLASSPATH
X#
X# tomcat%%TOMCAT_VERSION%%_java_opts (str):
X# Set to "" by default.
X# Java VM args to use.
X#
X
Xtomcat%%TOMCAT_VERSION%%_enable="${tomcat%%TOMCAT_VERSION%%_enable:-"NO"}"
Xtomcat%%TOMCAT_VERSION%%_java_version="${tomcat%%TOMCAT_VERSION%%_java_version:-"%%JAVA_VERSION%%"}"
Xtomcat%%TOMCAT_VERSION%%_user="${tomcat%%TOMCAT_VERSION%%_user:-"%%USER%%"}"
Xtomcat%%TOMCAT_VERSION%%_catalina_home="${tomcat%%TOMCAT_VERSION%%_catalina_home:-"%%TOMCAT_HOME%%"}"
Xtomcat%%TOMCAT_VERSION%%_catalina_base="${tomcat%%TOMCAT_VERSION%%_catalina_base:-"%%TOMCAT_HOME%%"}"
Xtomcat%%TOMCAT_VERSION%%_catalina_tmpdir="${tomcat%%TOMCAT_VERSION%%_catalina_tmpdir:-"%%TOMCAT_HOME%%/temp"}"
Xtomcat%%TOMCAT_VERSION%%_stdout_log="${tomcat%%TOMCAT_VERSION%%_stdout_log:-"%%STDOUT_LOG%%"}"
Xtomcat%%TOMCAT_VERSION%%_stderr_log="${tomcat%%TOMCAT_VERSION%%_stderr_log:-"%%STDERR_LOG%%"}"
Xtomcat%%TOMCAT_VERSION%%_stop_timeout="${tomcat%%TOMCAT_VERSION%%_stop_timeout:-"10"}"
X
X. %%RC_SUBR%%
X
Xname="tomcat%%TOMCAT_VERSION%%"
Xrcvar=`set_rcvar`
Xpidfile="%%PID_FILE%%"
X
Xload_rc_config "${name}"
X
Xif [ -n "${tomcat%%TOMCAT_VERSION%%_java_home}" ] ; then
X export JAVA_HOME="${tomcat%%TOMCAT_VERSION%%_java_home}"
Xfi
X
Xif [ -n "${tomcat%%TOMCAT_VERSION%%_java_version}" ] ; then
X export JAVA_VERSION="${tomcat%%TOMCAT_VERSION%%_java_version}"
Xfi
X
Xif [ -n "${tomcat%%TOMCAT_VERSION%%_java_vendor}" ] ; then
X export JAVA_VENDOR="${tomcat%%TOMCAT_VERSION%%_java_vendor}"
Xfi
X
Xif [ -n "${tomcat%%TOMCAT_VERSION%%_java_os}" ] ; then
X export JAVA_OS="${tomcat%%TOMCAT_VERSION%%_java_os}"
Xfi
X
Xjava_command="%%LOCALBASE%%/bin/java \
X ${tomcat%%TOMCAT_VERSION%%_java_opts} \
X -Djava.endorsed.dirs=$JAVA_ENDORSED_DIRS \
X -classpath %%TOMCAT_HOME%%/%%JAR_FILE%%:%%TOMCAT_HOME%%/bin/commons-logging-api.jar:${tomcat%%TOMCAT_VERSION%%_classpath} \
X -Dcatalina.base=${tomcat%%TOMCAT_VERSION%%_catalina_base} \
X -Dcatalina.home=${tomcat%%TOMCAT_VERSION%%_catalina_home} \
X -Djava.io.tmpdir=${tomcat%%TOMCAT_VERSION%%_catalina_tmpdir} \
X org.apache.catalina.startup.Bootstrap"
X
Xlog_args=">> ${tomcat%%TOMCAT_VERSION%%_stdout_log} \
X 2>> ${tomcat%%TOMCAT_VERSION%%_stderr_log} "
X
X# Subvert the check_pid_file procname check.
Xif [ -f $pidfile ]; then
X read rc_pid junk < $pidfile
X if [ ! -z "$rc_pid" ]; then
X procname=`ps -o ucomm= $rc_pid`
X fi
Xfi
X
Xrequired_files="${tomcat%%TOMCAT_VERSION%%_catalina_home}/conf/server.xml"
X
Xcommand="/usr/sbin/daemon"
Xflags="-p ${pidfile} ${java_command} start ${tomcat%%TOMCAT_VERSION%%_flags} ${log_args}"
X
Xstart_precmd=pid_touch
Xstop_cmd="tomcat%%TOMCAT_VERSION%%_stop"
X
Xpid_touch ()
X{
X touch $pidfile
X chown $tomcat%%TOMCAT_VERSION%%_user $pidfile
X}
X
Xtomcat%%TOMCAT_VERSION%%_stop() {
X rc_pid=$(check_pidfile $pidfile *$procname*)
X
X if [ -z "$rc_pid" ]; then
X [ -n "$rc_fast" ] && return 0
X if [ -n "$pidfile" ]; then
X echo "${name} not running? (check $pidfile)."
X else
X echo "${name} not running?"
X fi
X return 1
X fi
X
X echo "Stopping ${name}."
X ${java_command} stop
X tomcat_wait_max_for_pid ${tomcat%%TOMCAT_VERSION%%_stop_timeout} ${rc_pid}
X kill -KILL ${rc_pid} 2> /dev/null && echo "Killed."
X echo -n > ${pidfile}
X}
X
Xtomcat_wait_max_for_pid() {
X _timeout=$1
X shift
X _pid=$1
X _prefix=
X while [ $_timeout -gt 0 ] ; do
X echo -n ${_prefix:-"Waiting (max $_timeout secs) for PIDS: "}$_pid
X _prefix=", "
X sleep 2
X kill -0 $_pid 2> /dev/null || break
X _timeout=$(($_timeout-2))
X done
X if [ -n "$_prefix" ]; then
X echo "."
X fi
X}
X
Xrun_rc_command "$1"
END-of-/usr/ports/www/tomcat6/files/tomcat6.sh.in
echo x - /usr/ports/www/tomcat6/Makefile
sed 's/^X//' >/usr/ports/www/tomcat6/Makefile << 'END-of-/usr/ports/www/tomcat6/Makefile'
X# New ports collection makefile for: apache-tomcat
X# Date created: 14 Feb 2007
X# Whom: Nemo Liu <nemoliu at gmail.com>
X#
X# $FreeBSD$
X#
X
XPORTNAME= apache-tomcat
XPORTVERSION= 6.0.9
XCATEGORIES= www java
XMASTER_SITES= ${MASTER_SITE_APACHE}
XMASTER_SITE_SUBDIR= tomcat/tomcat-6/v${PORTVERSION}/bin
X
XMAINTAINER= nemoliu at gmail.com
XCOMMENT= Open-source Java web server by Apache, 6.x branch
X
XUSE_JAVA= yes
XJAVA_VERSION= 1.5+
XNO_BUILD= YES
X
XUSE_RC_SUBR= tomcat6.sh
XSUB_FILES= pkg-install pkg-deinstall
X
XMAJOR_VER= ${PORTVERSION:R}
XAPP_HOME?= ${PREFIX}/${PKGBASE}${PORTVERSION:R}
XLOG_DIR= ${APP_HOME}/logs
XAPP_TITLE= Apache Tomcat
XAPP_SHORTNAME= tomcat${MAJOR_VER:S/.//}
XTOMCAT_USER?= www
XTOMCAT_GROUP?= www
XPW?= /usr/sbin/pw
XHTTP_PORT?= 8180
XSHUTDOWN_PORT?= 8005
XAJP_1_3_PORT?= 8009
XSTDOUT_LOG= ${LOG_DIR}/stdout.log
XSTDERR_LOG= ${LOG_DIR}/stderr.log
XPID_FILE= /var/run/${APP_SHORTNAME}.pid
XWRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work
XWRKSRC= ${WRKDIR}/apache-tomcat-${PORTVERSION}
XREPLACE_FILES= ${WRKSRC}/conf/server.xml
XREPLACE_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
XJAR_FILE= bin/bootstrap.jar
XPLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} WWWOWN=${TOMCAT_USER} WWWGRP=${TOMCAT_GROUP}
XLATEST_LINK= ${APP_SHORTNAME}
XCONF_EXT= sample
XPLIST_SUB+= CONF_EXT=${CONF_EXT}
X
XSUB_LIST= AJP_1_3_PORT=${AJP_1_3_PORT} \
X APP_HOME=${APP_HOME} \
X APP_SHORTNAME=${APP_SHORTNAME} \
X APP_TITLE="${APP_TITLE}" \
X GROUP=${TOMCAT_GROUP} \
X HTTP_PORT=${HTTP_PORT} \
X JAR_FILE=${JAR_FILE} \
X PID_FILE=${PID_FILE} \
X SHUTDOWN_PORT=${SHUTDOWN_PORT} \
X STDERR_LOG=${STDERR_LOG} \
X STDOUT_LOG=${STDOUT_LOG} \
X TOMCAT_HOME=${APP_HOME} \
X TOMCAT_VERSION=${MAJOR_VER:S/.//} \
X USER=${TOMCAT_USER}
X
X.include <bsd.port.pre.mk>
X
Xpre-patch:
X @${ECHO_MSG} "Installation settings:"
X @${ECHO_MSG} " Destination directory: ${APP_HOME}"
X @${ECHO_MSG} " Location of JDK: ${JAVA_HOME}"
X @${ECHO_MSG} " Location of Java port: ${JAVA_PORT}"
X @${ECHO_MSG} " Running as (user/group): ${TOMCAT_USER}/${TOMCAT_GROUP}"
X @${ECHO_MSG} " HTTP port: ${HTTP_PORT}"
X @${ECHO_MSG} " Shutdown listener port: ${SHUTDOWN_PORT}"
X @${ECHO_MSG} " AJP 1.3 connector port: ${AJP_1_3_PORT}"
X @${ECHO_MSG} " Logfile stdout: ${STDOUT_LOG}"
X @${ECHO_MSG} " Logfile stderr: ${STDERR_LOG}"
X
Xpost-patch:
X @${ECHO_MSG} -n ">> Removing unneeded files..."
X @${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.exe'`
X @${ECHO_MSG} " [ DONE ]"
X
X.for file in ${REPLACE_FILES}
X @${ECHO_MSG} -n ">> Customizing `basename ${file}`..."
X @${SED} ${REPLACE_LIST_TEMP} ${file} > ${WRKDIR}/`basename ${file}`
X @${ECHO_MSG} " [ DONE ]"
X.endfor
X
Xpre-install:
X @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
X
Xdo-install:
X @${ECHO_MSG} -n ">> Creating destination directory..."
X @${MKDIR} ${APP_HOME}
X @${MKDIR} ${LOG_DIR}
X @${ECHO_MSG} " [ DONE ]"
X
X @${ECHO_MSG} ">> Copying files to destination directory..."
X @${CP} ${WRKDIR}/server.xml ${WRKSRC}/conf/
X @(cd ${WRKSRC};${FIND} conf -type f | ${SED} -e '/${CONF_EXT}/d') \
X | while read a; do \
X ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.${CONF_EXT}; \
X if [ ! -e "${APP_HOME}/$$a" ]; then \
X ${ECHO_MSG} " Installing local configuration file: ${APP_HOME}/$$a"; \
X ${CP} ${WRKSRC}/$$a.${CONF_EXT} ${WRKSRC}/$$a; \
X else \
X ${ECHO_MSG} " Preserving local configuration file: ${APP_HOME}/$$a"; \
X fi; \
X done
X @${CP} -R ${WRKSRC}/* ${APP_HOME}
X @${ECHO_MSG} " [ DONE ]"
X
X @${ECHO_MSG} -n ">> Creating log files..."
X @${INSTALL} -m 664 -o ${TOMCAT_USER} -g ${TOMCAT_GROUP} /dev/null ${STDOUT_LOG}
X @${INSTALL} -m 664 -o ${TOMCAT_USER} -g ${TOMCAT_GROUP} /dev/null ${STDERR_LOG}
X @${ECHO_MSG} " [ DONE ]"
X
X @${ECHO_MSG} -n ">> Creating symlink to tools.jar..."
X @${LN} -sf ${JAVA_HOME}/lib/tools.jar ${APP_HOME}/lib/tools.jar
X @${ECHO_MSG} " [ DONE ]"
X
X @${ECHO_MSG} -n ">> Fixing ownership settings..."
X @${CHOWN} -R ${TOMCAT_USER}:${TOMCAT_GROUP} ${APP_HOME}/conf ${APP_HOME}/logs \
X ${APP_HOME}/temp ${APP_HOME}/work
X @${ECHO_MSG} " [ DONE ]"
X
X @${ECHO_MSG} -n ">> Fixing permissions..."
X @${CHMOD} 755 `${FIND} ${APP_HOME} -type d`
X @${ECHO_MSG} " [ DONE ]"
X
Xpost-install:
X @${ECHO_MSG} "${APP_TITLE} ${PORTVERSION} has been installed in ${APP_HOME}."
X
X.include <bsd.port.post.mk>
END-of-/usr/ports/www/tomcat6/Makefile
echo x - /usr/ports/www/tomcat6/distinfo
sed 's/^X//' >/usr/ports/www/tomcat6/distinfo << 'END-of-/usr/ports/www/tomcat6/distinfo'
XMD5 (apache-tomcat-6.0.9.tar.gz) = 3343b79d05810c61dcbd0121cc64c380
XSHA256 (apache-tomcat-6.0.9.tar.gz) = 3ba26d44efd9057961071e6b07f1ddce271f8616912d53e940b3756ddacc3237
XSIZE (apache-tomcat-6.0.9.tar.gz) = 5813513
END-of-/usr/ports/www/tomcat6/distinfo
echo x - /usr/ports/www/tomcat6/pkg-descr
sed 's/^X//' >/usr/ports/www/tomcat6/pkg-descr << 'END-of-/usr/ports/www/tomcat6/pkg-descr'
XApache Tomcat is a web server written in 100% Pure Java.
X
XApache Tomcat version 6.0 implements the Servlet 2.5 and JavaServer Pages 2.1
Xspecifications from the Java Community Process, and includes many additional
Xfeatures that make it a useful platform for developing and deploying web app
X-lications and web services.
X
XWWW: http://tomcat.apache.org/
END-of-/usr/ports/www/tomcat6/pkg-descr
echo x - /usr/ports/www/tomcat6/pkg-plist
sed 's/^X//' >/usr/ports/www/tomcat6/pkg-plist << 'END-of-/usr/ports/www/tomcat6/pkg-plist'
Xapache-tomcat6.0/LICENSE
Xapache-tomcat6.0/NOTICE
Xapache-tomcat6.0/RELEASE-NOTES
Xapache-tomcat6.0/RUNNING.txt
Xapache-tomcat6.0/bin/bootstrap.jar
Xapache-tomcat6.0/bin/catalina-tasks.xml
Xapache-tomcat6.0/bin/catalina.sh
Xapache-tomcat6.0/bin/commons-daemon.jar
Xapache-tomcat6.0/bin/digest.sh
Xapache-tomcat6.0/bin/jsvc.tar.gz
Xapache-tomcat6.0/bin/setclasspath.sh
Xapache-tomcat6.0/bin/shutdown.sh
Xapache-tomcat6.0/bin/startup.sh
Xapache-tomcat6.0/bin/tomcat-juli.jar
Xapache-tomcat6.0/bin/tomcat-native.tar.gz
Xapache-tomcat6.0/bin/tool-wrapper.sh
Xapache-tomcat6.0/bin/version.sh
Xapache-tomcat6.0/conf/catalina.policy
Xapache-tomcat6.0/conf/catalina.policy.sample
Xapache-tomcat6.0/conf/catalina.properties
Xapache-tomcat6.0/conf/catalina.properties.sample
Xapache-tomcat6.0/conf/context.xml
Xapache-tomcat6.0/conf/context.xml.sample
Xapache-tomcat6.0/conf/logging.properties
Xapache-tomcat6.0/conf/logging.properties.sample
Xapache-tomcat6.0/conf/server.xml
Xapache-tomcat6.0/conf/server.xml.sample
Xapache-tomcat6.0/conf/tomcat-users.xml
Xapache-tomcat6.0/conf/tomcat-users.xml.sample
Xapache-tomcat6.0/conf/web.xml
Xapache-tomcat6.0/conf/web.xml.sample
Xapache-tomcat6.0/lib/annotations-api.jar
Xapache-tomcat6.0/lib/catalina-ant.jar
Xapache-tomcat6.0/lib/catalina-ha.jar
Xapache-tomcat6.0/lib/catalina-tribes.jar
Xapache-tomcat6.0/lib/catalina.jar
Xapache-tomcat6.0/lib/el-api.jar
Xapache-tomcat6.0/lib/jasper-el.jar
Xapache-tomcat6.0/lib/jasper-jdt.jar
Xapache-tomcat6.0/lib/jasper.jar
Xapache-tomcat6.0/lib/jsp-api.jar
Xapache-tomcat6.0/lib/servlet-api.jar
Xapache-tomcat6.0/lib/tomcat-coyote.jar
Xapache-tomcat6.0/lib/tomcat-dbcp.jar
Xapache-tomcat6.0/lib/tomcat-i18n-es.jar
Xapache-tomcat6.0/lib/tomcat-i18n-fr.jar
Xapache-tomcat6.0/lib/tomcat-i18n-ja.jar
Xapache-tomcat6.0/lib/tools.jar
Xapache-tomcat6.0/logs/stderr.log
Xapache-tomcat6.0/logs/stdout.log
Xapache-tomcat6.0/temp/safeToDelete.tmp
Xapache-tomcat6.0/webapps/ROOT/RELEASE-NOTES.txt
Xapache-tomcat6.0/webapps/ROOT/WEB-INF/web.xml
Xapache-tomcat6.0/webapps/ROOT/admin/index.html
Xapache-tomcat6.0/webapps/ROOT/asf-logo-wide.gif
Xapache-tomcat6.0/webapps/ROOT/build.xml
Xapache-tomcat6.0/webapps/ROOT/favicon.ico
Xapache-tomcat6.0/webapps/ROOT/index.html
Xapache-tomcat6.0/webapps/ROOT/index.jsp
Xapache-tomcat6.0/webapps/ROOT/tomcat-power.gif
Xapache-tomcat6.0/webapps/ROOT/tomcat.gif
Xapache-tomcat6.0/webapps/ROOT/tomcat.svg
Xapache-tomcat6.0/webapps/docs/BUILDING.txt
Xapache-tomcat6.0/webapps/docs/NOTICE
Xapache-tomcat6.0/webapps/docs/RUNNING.txt
Xapache-tomcat6.0/webapps/docs/WEB-INF/web.xml
Xapache-tomcat6.0/webapps/docs/aio.html
Xapache-tomcat6.0/webapps/docs/api/index.html
Xapache-tomcat6.0/webapps/docs/appdev/build.xml.txt
Xapache-tomcat6.0/webapps/docs/appdev/deployment.html
Xapache-tomcat6.0/webapps/docs/appdev/index.html
Xapache-tomcat6.0/webapps/docs/appdev/installation.html
Xapache-tomcat6.0/webapps/docs/appdev/introduction.html
Xapache-tomcat6.0/webapps/docs/appdev/printer/deployment.html
Xapache-tomcat6.0/webapps/docs/appdev/printer/docs/appdev/build.xml.txt
Xapache-tomcat6.0/webapps/docs/appdev/printer/docs/appdev/web.xml.txt
Xapache-tomcat6.0/webapps/docs/appdev/printer/index.html
Xapache-tomcat6.0/webapps/docs/appdev/printer/installation.html
Xapache-tomcat6.0/webapps/docs/appdev/printer/introduction.html
Xapache-tomcat6.0/webapps/docs/appdev/printer/processes.html
Xapache-tomcat6.0/webapps/docs/appdev/printer/source.html
Xapache-tomcat6.0/webapps/docs/appdev/processes.html
Xapache-tomcat6.0/webapps/docs/appdev/sample/build.xml
Xapache-tomcat6.0/webapps/docs/appdev/sample/docs/README.txt
Xapache-tomcat6.0/webapps/docs/appdev/sample/index.html
Xapache-tomcat6.0/webapps/docs/appdev/sample/sample.war
Xapache-tomcat6.0/webapps/docs/appdev/sample/src/mypackage/Hello.java
Xapache-tomcat6.0/webapps/docs/appdev/sample/web/WEB-INF/web.xml
Xapache-tomcat6.0/webapps/docs/appdev/sample/web/hello.jsp
Xapache-tomcat6.0/webapps/docs/appdev/sample/web/images/tomcat.gif
Xapache-tomcat6.0/webapps/docs/appdev/sample/web/index.html
Xapache-tomcat6.0/webapps/docs/appdev/source.html
Xapache-tomcat6.0/webapps/docs/appdev/web.xml.txt
Xapache-tomcat6.0/webapps/docs/apr.html
Xapache-tomcat6.0/webapps/docs/architecture/index.html
Xapache-tomcat6.0/webapps/docs/architecture/overview.html
Xapache-tomcat6.0/webapps/docs/architecture/printer/index.html
Xapache-tomcat6.0/webapps/docs/architecture/printer/overview.html
Xapache-tomcat6.0/webapps/docs/architecture/printer/requestProcess.html
Xapache-tomcat6.0/webapps/docs/architecture/printer/startup.html
Xapache-tomcat6.0/webapps/docs/architecture/requestProcess.html
Xapache-tomcat6.0/webapps/docs/architecture/requestProcess/requestProcess.pdf
Xapache-tomcat6.0/webapps/docs/architecture/requestProcess/roseModel.mdl
Xapache-tomcat6.0/webapps/docs/architecture/startup.html
Xapache-tomcat6.0/webapps/docs/architecture/startup/serverStartup.pdf
Xapache-tomcat6.0/webapps/docs/architecture/startup/serverStartup.txt
Xapache-tomcat6.0/webapps/docs/balancer-howto.html
Xapache-tomcat6.0/webapps/docs/building.html
Xapache-tomcat6.0/webapps/docs/cgi-howto.html
Xapache-tomcat6.0/webapps/docs/changelog.html
Xapache-tomcat6.0/webapps/docs/class-loader-howto.html
Xapache-tomcat6.0/webapps/docs/cluster-howto.html
Xapache-tomcat6.0/webapps/docs/config/ajp.html
Xapache-tomcat6.0/webapps/docs/config/cluster-channel.html
Xapache-tomcat6.0/webapps/docs/config/cluster-deployer.html
Xapache-tomcat6.0/webapps/docs/config/cluster-interceptor.html
Xapache-tomcat6.0/webapps/docs/config/cluster-listener.html
Xapache-tomcat6.0/webapps/docs/config/cluster-manager.html
Xapache-tomcat6.0/webapps/docs/config/cluster-membership.html
Xapache-tomcat6.0/webapps/docs/config/cluster-receiver.html
Xapache-tomcat6.0/webapps/docs/config/cluster-sender.html
Xapache-tomcat6.0/webapps/docs/config/cluster-valve.html
Xapache-tomcat6.0/webapps/docs/config/cluster.html
Xapache-tomcat6.0/webapps/docs/config/context.html
Xapache-tomcat6.0/webapps/docs/config/engine.html
Xapache-tomcat6.0/webapps/docs/config/globalresources.html
Xapache-tomcat6.0/webapps/docs/config/host.html
Xapache-tomcat6.0/webapps/docs/config/http.html
Xapache-tomcat6.0/webapps/docs/config/index.html
Xapache-tomcat6.0/webapps/docs/config/loader.html
Xapache-tomcat6.0/webapps/docs/config/manager.html
Xapache-tomcat6.0/webapps/docs/config/printer/ajp.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-channel.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-deployer.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-interceptor.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-listener.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-manager.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-membership.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-receiver.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-sender.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster-valve.html
Xapache-tomcat6.0/webapps/docs/config/printer/cluster.html
Xapache-tomcat6.0/webapps/docs/config/printer/context.html
Xapache-tomcat6.0/webapps/docs/config/printer/engine.html
Xapache-tomcat6.0/webapps/docs/config/printer/globalresources.html
Xapache-tomcat6.0/webapps/docs/config/printer/host.html
Xapache-tomcat6.0/webapps/docs/config/printer/http.html
Xapache-tomcat6.0/webapps/docs/config/printer/index.html
Xapache-tomcat6.0/webapps/docs/config/printer/loader.html
Xapache-tomcat6.0/webapps/docs/config/printer/manager.html
Xapache-tomcat6.0/webapps/docs/config/printer/realm.html
Xapache-tomcat6.0/webapps/docs/config/printer/resources.html
Xapache-tomcat6.0/webapps/docs/config/printer/server.html
Xapache-tomcat6.0/webapps/docs/config/printer/service.html
Xapache-tomcat6.0/webapps/docs/config/printer/valve.html
Xapache-tomcat6.0/webapps/docs/config/realm.html
Xapache-tomcat6.0/webapps/docs/config/resources.html
Xapache-tomcat6.0/webapps/docs/config/server.html
Xapache-tomcat6.0/webapps/docs/config/service.html
Xapache-tomcat6.0/webapps/docs/config/valve.html
Xapache-tomcat6.0/webapps/docs/connectors.html
Xapache-tomcat6.0/webapps/docs/default-servlet.html
Xapache-tomcat6.0/webapps/docs/deployer-howto.html
Xapache-tomcat6.0/webapps/docs/developers.html
Xapache-tomcat6.0/webapps/docs/extras.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-admin-apps.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-admin-objects.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-admin-opers.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-default.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-invoker.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-jdbc-realm.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-jndi-realm.html
Xapache-tomcat6.0/webapps/docs/funcspecs/fs-memory-realm.html
Xapache-tomcat6.0/webapps/docs/funcspecs/index.html
Xapache-tomcat6.0/webapps/docs/funcspecs/mbean-names.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-admin-apps.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-admin-objects.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-admin-opers.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-default.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-invoker.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-jdbc-realm.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-jndi-realm.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/fs-memory-realm.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/index.html
Xapache-tomcat6.0/webapps/docs/funcspecs/printer/mbean-names.html
Xapache-tomcat6.0/webapps/docs/html-manager-howto.html
Xapache-tomcat6.0/webapps/docs/images/add.gif
Xapache-tomcat6.0/webapps/docs/images/asf-logo.gif
Xapache-tomcat6.0/webapps/docs/images/code.gif
Xapache-tomcat6.0/webapps/docs/images/design.gif
Xapache-tomcat6.0/webapps/docs/images/docs.gif
Xapache-tomcat6.0/webapps/docs/images/fix.gif
Xapache-tomcat6.0/webapps/docs/images/printer.gif
Xapache-tomcat6.0/webapps/docs/images/tomcat.gif
Xapache-tomcat6.0/webapps/docs/images/tomcat.svg
Xapache-tomcat6.0/webapps/docs/images/update.gif
Xapache-tomcat6.0/webapps/docs/images/void.gif
Xapache-tomcat6.0/webapps/docs/index.html
Xapache-tomcat6.0/webapps/docs/introduction.html
Xapache-tomcat6.0/webapps/docs/jasper-howto.html
Xapache-tomcat6.0/webapps/docs/jndi-datasource-examples-howto.html
Xapache-tomcat6.0/webapps/docs/jndi-resources-howto.html
Xapache-tomcat6.0/webapps/docs/logging.html
Xapache-tomcat6.0/webapps/docs/manager-howto.html
Xapache-tomcat6.0/webapps/docs/maven-jars.html
Xapache-tomcat6.0/webapps/docs/mbeans-descriptor-howto.html
Xapache-tomcat6.0/webapps/docs/monitoring.html
Xapache-tomcat6.0/webapps/docs/printer/BUILDING.txt
Xapache-tomcat6.0/webapps/docs/printer/NOTICE
Xapache-tomcat6.0/webapps/docs/printer/RUNNING.txt
Xapache-tomcat6.0/webapps/docs/printer/aio.html
Xapache-tomcat6.0/webapps/docs/printer/apr.html
Xapache-tomcat6.0/webapps/docs/printer/balancer-howto.html
Xapache-tomcat6.0/webapps/docs/printer/building.html
Xapache-tomcat6.0/webapps/docs/printer/cgi-howto.html
Xapache-tomcat6.0/webapps/docs/printer/changelog.html
Xapache-tomcat6.0/webapps/docs/printer/class-loader-howto.html
Xapache-tomcat6.0/webapps/docs/printer/cluster-howto.html
Xapache-tomcat6.0/webapps/docs/printer/connectors.html
Xapache-tomcat6.0/webapps/docs/printer/default-servlet.html
Xapache-tomcat6.0/webapps/docs/printer/deployer-howto.html
Xapache-tomcat6.0/webapps/docs/printer/developers.html
Xapache-tomcat6.0/webapps/docs/printer/extras.html
Xapache-tomcat6.0/webapps/docs/printer/html-manager-howto.html
Xapache-tomcat6.0/webapps/docs/printer/index.html
Xapache-tomcat6.0/webapps/docs/printer/introduction.html
Xapache-tomcat6.0/webapps/docs/printer/jasper-howto.html
Xapache-tomcat6.0/webapps/docs/printer/jndi-datasource-examples-howto.html
Xapache-tomcat6.0/webapps/docs/printer/jndi-resources-howto.html
Xapache-tomcat6.0/webapps/docs/printer/logging.html
Xapache-tomcat6.0/webapps/docs/printer/manager-howto.html
Xapache-tomcat6.0/webapps/docs/printer/maven-jars.html
Xapache-tomcat6.0/webapps/docs/printer/mbeans-descriptor-howto.html
Xapache-tomcat6.0/webapps/docs/printer/monitoring.html
Xapache-tomcat6.0/webapps/docs/printer/proxy-howto.html
Xapache-tomcat6.0/webapps/docs/printer/realm-howto.html
Xapache-tomcat6.0/webapps/docs/printer/security-manager-howto.html
Xapache-tomcat6.0/webapps/docs/printer/setup.html
Xapache-tomcat6.0/webapps/docs/printer/ssi-howto.html
Xapache-tomcat6.0/webapps/docs/printer/ssl-howto.html
Xapache-tomcat6.0/webapps/docs/printer/status.html
Xapache-tomcat6.0/webapps/docs/printer/virtual-hosting-howto.html
Xapache-tomcat6.0/webapps/docs/printer/windows-service-howto.html
Xapache-tomcat6.0/webapps/docs/proxy-howto.html
Xapache-tomcat6.0/webapps/docs/realm-howto.html
Xapache-tomcat6.0/webapps/docs/security-manager-howto.html
Xapache-tomcat6.0/webapps/docs/setup.html
Xapache-tomcat6.0/webapps/docs/ssi-howto.html
Xapache-tomcat6.0/webapps/docs/ssl-howto.html
Xapache-tomcat6.0/webapps/docs/status.html
Xapache-tomcat6.0/webapps/docs/tribes/faq.html
Xapache-tomcat6.0/webapps/docs/tribes/introduction.html
Xapache-tomcat6.0/webapps/docs/tribes/setup.html
Xapache-tomcat6.0/webapps/docs/virtual-hosting-howto.html
Xapache-tomcat6.0/webapps/docs/windows-service-howto.html
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/CookieExample.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/CookieExample.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/HelloWorldExample.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/HelloWorldExample.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/LocalStrings.properties
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/LocalStrings_en.properties
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/LocalStrings_es.properties
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/LocalStrings_fr.properties
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/LocalStrings_pt.properties
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/RequestHeaderExample.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/RequestHeaderExample.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/RequestInfoExample.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/RequestInfoExample.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/RequestParamExample.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/RequestParamExample.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/SessionExample.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/SessionExample.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/Entries.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/Entries.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/Entry.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/Entry.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/JspCalendar.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/JspCalendar.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/TableBean.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/cal/TableBean.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/chat/ChatServlet$MessageSender.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/chat/ChatServlet.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/chat/ChatServlet.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/checkbox/CheckTest.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/checkbox/CheckTest.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/colors/ColorGameBean.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/colors/ColorGameBean.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilter.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionFilterTestServlet.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionResponseStream.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters/CompressionServletResponseWrapper.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/dates/JspCalendar.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/dates/JspCalendar.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/error/Smart.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/error/Smart.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/FooTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/FooTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/FooTagExtraInfo.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/LogTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/LogTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/ShowSource.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/examples/ShowSource.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/filters/ExampleFilter.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/filters/ExampleFilter.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/filters/RequestDumperFilter.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/filters/SetCharacterEncodingFilter.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/BookBean.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/FooBean.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/el/Functions.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/EchoAttributesTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/FindBookSimpleTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/HelloWorldSimpleTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/RepeatSimpleTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/ShuffleSimpleTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag/TileSimpleTag.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/listeners/ContextListener.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/listeners/ContextListener.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/listeners/SessionListener.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/listeners/SessionListener.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/num/NumberGuessBean.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/num/NumberGuessBean.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/servletToJsp.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/servletToJsp.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/sessions/DummyCart.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/sessions/DummyCart.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/util/HTMLFilter.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/util/HTMLFilter.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/validators/DebugValidator.class
Xapache-tomcat6.0/webapps/examples/WEB-INF/classes/validators/DebugValidator.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/jsp/applet/Clock2.java
Xapache-tomcat6.0/webapps/examples/WEB-INF/jsp/debug-taglib.tld
Xapache-tomcat6.0/webapps/examples/WEB-INF/jsp/example-taglib.tld
Xapache-tomcat6.0/webapps/examples/WEB-INF/jsp2/jsp2-example-taglib.tld
Xapache-tomcat6.0/webapps/examples/WEB-INF/lib/jstl.jar
Xapache-tomcat6.0/webapps/examples/WEB-INF/lib/standard.jar
Xapache-tomcat6.0/webapps/examples/WEB-INF/tags/displayProducts.tag
Xapache-tomcat6.0/webapps/examples/WEB-INF/tags/helloWorld.tag
Xapache-tomcat6.0/webapps/examples/WEB-INF/tags/panel.tag
Xapache-tomcat6.0/webapps/examples/WEB-INF/tags/xhtmlbasic.tag
Xapache-tomcat6.0/webapps/examples/WEB-INF/web.xml
Xapache-tomcat6.0/webapps/examples/index.html
Xapache-tomcat6.0/webapps/examples/jsp/cal/cal1.jsp
Xapache-tomcat6.0/webapps/examples/jsp/cal/cal2.jsp
Xapache-tomcat6.0/webapps/examples/jsp/cal/calendar.html
Xapache-tomcat6.0/webapps/examples/jsp/cal/login.html
Xapache-tomcat6.0/webapps/examples/jsp/chat/chat.jsp
Xapache-tomcat6.0/webapps/examples/jsp/chat/login.jsp
Xapache-tomcat6.0/webapps/examples/jsp/chat/post.jsp
Xapache-tomcat6.0/webapps/examples/jsp/checkbox/CheckTest.html
Xapache-tomcat6.0/webapps/examples/jsp/checkbox/check.html
Xapache-tomcat6.0/webapps/examples/jsp/checkbox/checkresult.jsp
Xapache-tomcat6.0/webapps/examples/jsp/checkbox/cresult.html
Xapache-tomcat6.0/webapps/examples/jsp/colors/ColorGameBean.html
Xapache-tomcat6.0/webapps/examples/jsp/colors/clr.html
Xapache-tomcat6.0/webapps/examples/jsp/colors/colors.html
Xapache-tomcat6.0/webapps/examples/jsp/colors/colrs.jsp
Xapache-tomcat6.0/webapps/examples/jsp/dates/date.html
Xapache-tomcat6.0/webapps/examples/jsp/dates/date.jsp
Xapache-tomcat6.0/webapps/examples/jsp/error/er.html
Xapache-tomcat6.0/webapps/examples/jsp/error/err.jsp
Xapache-tomcat6.0/webapps/examples/jsp/error/error.html
Xapache-tomcat6.0/webapps/examples/jsp/error/errorpge.jsp
Xapache-tomcat6.0/webapps/examples/jsp/forward/forward.jsp
Xapache-tomcat6.0/webapps/examples/jsp/forward/fwd.html
Xapache-tomcat6.0/webapps/examples/jsp/forward/one.jsp
Xapache-tomcat6.0/webapps/examples/jsp/forward/two.html
Xapache-tomcat6.0/webapps/examples/jsp/images/code.gif
Xapache-tomcat6.0/webapps/examples/jsp/images/execute.gif
Xapache-tomcat6.0/webapps/examples/jsp/images/read.gif
Xapache-tomcat6.0/webapps/examples/jsp/images/return.gif
Xapache-tomcat6.0/webapps/examples/jsp/include/foo.html
Xapache-tomcat6.0/webapps/examples/jsp/include/foo.jsp
Xapache-tomcat6.0/webapps/examples/jsp/include/inc.html
Xapache-tomcat6.0/webapps/examples/jsp/include/include.jsp
Xapache-tomcat6.0/webapps/examples/jsp/index.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/basic-arithmetic.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/basic-arithmetic.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/basic-comparisons.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/basic-comparisons.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/functions.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/functions.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/implicit-objects.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/el/implicit-objects.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspattribute/jspattribute.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspattribute/jspattribute.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspattribute/shuffle.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspattribute/shuffle.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspx/basic.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspx/basic.jspx
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspx/svgexample.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspx/textRotate.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspx/textRotate.jpg
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/jspx/textRotate.jspx
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/misc/coda.jspf
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/misc/config.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/misc/config.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/misc/dynamicattrs.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/misc/dynamicattrs.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/misc/prelude.jspf
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag/book.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag/book.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag/hello.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag/hello.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag/repeat.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag/repeat.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles/hello.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles/hello.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles/panel.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles/panel.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles/products.html
Xapache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles/products.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsptoserv/hello.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsptoserv/jsptoservlet.jsp
Xapache-tomcat6.0/webapps/examples/jsp/jsptoserv/jts.html
Xapache-tomcat6.0/webapps/examples/jsp/num/numguess.html
Xapache-tomcat6.0/webapps/examples/jsp/num/numguess.jsp
Xapache-tomcat6.0/webapps/examples/jsp/plugin/applet/Clock2.java
Xapache-tomcat6.0/webapps/examples/jsp/plugin/plugin.html
Xapache-tomcat6.0/webapps/examples/jsp/plugin/plugin.jsp
Xapache-tomcat6.0/webapps/examples/jsp/security/protected/error.jsp
Xapache-tomcat6.0/webapps/examples/jsp/security/protected/index.jsp
Xapache-tomcat6.0/webapps/examples/jsp/security/protected/login.jsp
Xapache-tomcat6.0/webapps/examples/jsp/sessions/DummyCart.html
Xapache-tomcat6.0/webapps/examples/jsp/sessions/carts.html
Xapache-tomcat6.0/webapps/examples/jsp/sessions/carts.jsp
Xapache-tomcat6.0/webapps/examples/jsp/sessions/crt.html
Xapache-tomcat6.0/webapps/examples/jsp/simpletag/foo.html
Xapache-tomcat6.0/webapps/examples/jsp/simpletag/foo.jsp
Xapache-tomcat6.0/webapps/examples/jsp/snp/snoop.html
Xapache-tomcat6.0/webapps/examples/jsp/snp/snoop.jsp
Xapache-tomcat6.0/webapps/examples/jsp/source.jsp
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/choose.html
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/choose.jsp
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/foreach.html
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/foreach.jsp
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/howto.html
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/if.html
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/if.jsp
Xapache-tomcat6.0/webapps/examples/jsp/tagplugin/notes.html
Xapache-tomcat6.0/webapps/examples/jsp/xml/xml.html
Xapache-tomcat6.0/webapps/examples/jsp/xml/xml.jsp
Xapache-tomcat6.0/webapps/examples/servlets/cookies.html
Xapache-tomcat6.0/webapps/examples/servlets/helloworld.html
Xapache-tomcat6.0/webapps/examples/servlets/images/code.gif
Xapache-tomcat6.0/webapps/examples/servlets/images/execute.gif
Xapache-tomcat6.0/webapps/examples/servlets/images/return.gif
Xapache-tomcat6.0/webapps/examples/servlets/index.html
Xapache-tomcat6.0/webapps/examples/servlets/reqheaders.html
Xapache-tomcat6.0/webapps/examples/servlets/reqinfo.html
Xapache-tomcat6.0/webapps/examples/servlets/reqparams.html
Xapache-tomcat6.0/webapps/examples/servlets/sessions.html
Xapache-tomcat6.0/webapps/host-manager/META-INF/context.xml
Xapache-tomcat6.0/webapps/host-manager/WEB-INF/web.xml
Xapache-tomcat6.0/webapps/host-manager/host-manager.xml
Xapache-tomcat6.0/webapps/host-manager/images/add.gif
Xapache-tomcat6.0/webapps/host-manager/images/asf-logo.gif
Xapache-tomcat6.0/webapps/host-manager/images/code.gif
Xapache-tomcat6.0/webapps/host-manager/images/design.gif
Xapache-tomcat6.0/webapps/host-manager/images/docs.gif
Xapache-tomcat6.0/webapps/host-manager/images/fix.gif
Xapache-tomcat6.0/webapps/host-manager/images/tomcat.gif
Xapache-tomcat6.0/webapps/host-manager/images/update.gif
Xapache-tomcat6.0/webapps/host-manager/images/void.gif
Xapache-tomcat6.0/webapps/host-manager/manager.xml
Xapache-tomcat6.0/webapps/manager/401.jsp
Xapache-tomcat6.0/webapps/manager/META-INF/context.xml
Xapache-tomcat6.0/webapps/manager/WEB-INF/web.xml
Xapache-tomcat6.0/webapps/manager/images/add.gif
Xapache-tomcat6.0/webapps/manager/images/asf-logo.gif
Xapache-tomcat6.0/webapps/manager/images/code.gif
Xapache-tomcat6.0/webapps/manager/images/design.gif
Xapache-tomcat6.0/webapps/manager/images/docs.gif
Xapache-tomcat6.0/webapps/manager/images/fix.gif
Xapache-tomcat6.0/webapps/manager/images/tomcat.gif
Xapache-tomcat6.0/webapps/manager/images/update.gif
Xapache-tomcat6.0/webapps/manager/images/void.gif
Xapache-tomcat6.0/webapps/manager/manager.xml
Xapache-tomcat6.0/webapps/manager/status.xsd
Xapache-tomcat6.0/webapps/manager/xform.xsl
X at dirrm share/nls/en_US.US-ASCII
X at dirrm share/nls/POSIX
X at dirrm apache-tomcat6.0/webapps/manager/images
X at dirrm apache-tomcat6.0/webapps/manager/WEB-INF
X at dirrm apache-tomcat6.0/webapps/manager/META-INF
X at dirrm apache-tomcat6.0/webapps/manager
X at dirrm apache-tomcat6.0/webapps/host-manager/images
X at dirrm apache-tomcat6.0/webapps/host-manager/WEB-INF
X at dirrm apache-tomcat6.0/webapps/host-manager/META-INF
X at dirrm apache-tomcat6.0/webapps/host-manager
X at dirrm apache-tomcat6.0/webapps/examples/servlets/images
X at dirrm apache-tomcat6.0/webapps/examples/servlets
X at dirrm apache-tomcat6.0/webapps/examples/jsp/xml
X at dirrm apache-tomcat6.0/webapps/examples/jsp/tagplugin
X at dirrm apache-tomcat6.0/webapps/examples/jsp/snp
X at dirrm apache-tomcat6.0/webapps/examples/jsp/simpletag
X at dirrm apache-tomcat6.0/webapps/examples/jsp/sessions
X at dirrm apache-tomcat6.0/webapps/examples/jsp/security/protected
X at dirrm apache-tomcat6.0/webapps/examples/jsp/security
X at dirrm apache-tomcat6.0/webapps/examples/jsp/plugin/applet
X at dirrm apache-tomcat6.0/webapps/examples/jsp/plugin
X at dirrm apache-tomcat6.0/webapps/examples/jsp/num
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsptoserv
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2/tagfiles
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2/simpletag
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2/misc
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2/jspx
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2/jspattribute
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2/el
X at dirrm apache-tomcat6.0/webapps/examples/jsp/jsp2
X at dirrm apache-tomcat6.0/webapps/examples/jsp/include
X at dirrm apache-tomcat6.0/webapps/examples/jsp/images
X at dirrm apache-tomcat6.0/webapps/examples/jsp/forward
X at dirrm apache-tomcat6.0/webapps/examples/jsp/error
X at dirrm apache-tomcat6.0/webapps/examples/jsp/dates
X at dirrm apache-tomcat6.0/webapps/examples/jsp/colors
X at dirrm apache-tomcat6.0/webapps/examples/jsp/checkbox
X at dirrm apache-tomcat6.0/webapps/examples/jsp/chat
X at dirrm apache-tomcat6.0/webapps/examples/jsp/cal
X at dirrm apache-tomcat6.0/webapps/examples/jsp
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/tags
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/lib
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/jsp2
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/jsp/applet
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/jsp
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/validators
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/util
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/sessions
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/num
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/listeners
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/simpletag
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples/el
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2/examples
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/jsp2
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/filters
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/examples
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/error
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/dates
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/compressionFilters
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/colors
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/checkbox
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/chat
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes/cal
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF/classes
X at dirrm apache-tomcat6.0/webapps/examples/WEB-INF
X at dirrm apache-tomcat6.0/webapps/examples
X at dirrm apache-tomcat6.0/webapps/docs/tribes
X at dirrm apache-tomcat6.0/webapps/docs/printer
X at dirrm apache-tomcat6.0/webapps/docs/images
X at dirrm apache-tomcat6.0/webapps/docs/funcspecs/printer
X at dirrm apache-tomcat6.0/webapps/docs/funcspecs
X at dirrm apache-tomcat6.0/webapps/docs/funcspec
X at dirrm apache-tomcat6.0/webapps/docs/config/printer
X at dirrm apache-tomcat6.0/webapps/docs/config
X at dirrm apache-tomcat6.0/webapps/docs/architecture/startup
X at dirrm apache-tomcat6.0/webapps/docs/architecture/requestProcess
X at dirrm apache-tomcat6.0/webapps/docs/architecture/printer
X at dirrm apache-tomcat6.0/webapps/docs/architecture
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample/web/images
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample/web/WEB-INF
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample/web
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample/src/mypackage
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample/src
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample/docs
X at dirrm apache-tomcat6.0/webapps/docs/appdev/sample
X at dirrm apache-tomcat6.0/webapps/docs/appdev/printer/docs/appdev
X at dirrm apache-tomcat6.0/webapps/docs/appdev/printer/docs
X at dirrm apache-tomcat6.0/webapps/docs/appdev/printer
X at dirrm apache-tomcat6.0/webapps/docs/appdev
X at dirrm apache-tomcat6.0/webapps/docs/api
X at dirrm apache-tomcat6.0/webapps/docs/WEB-INF
X at dirrm apache-tomcat6.0/webapps/docs
X at dirrm apache-tomcat6.0/webapps/ROOT/admin
X at dirrm apache-tomcat6.0/webapps/ROOT/WEB-INF
X at dirrm apache-tomcat6.0/webapps/ROOT
X at dirrm apache-tomcat6.0/webapps
X at dirrm apache-tomcat6.0/temp
X at dirrm apache-tomcat6.0/logs
X at dirrm apache-tomcat6.0/lib
X at dirrm apache-tomcat6.0/conf
X at dirrm apache-tomcat6.0/bin
END-of-/usr/ports/www/tomcat6/pkg-plist
exit
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list