freebsd-ports/www/mod_webapp/pkg-install
Sheldon Hearn dcfd42987e Import mod_webapp, an Apache module that allows Tomcat applications to be
mounted into an Apache server.  Tomcat is a Java servlet and JSP engine.
Apache is the popular webserver.

This port is for Apache 1.3.x.

PR:		ports/53146
Submitted by:	Andre Sachs <asachs@uunet.co.za>
2003-06-12 14:06:21 +00:00

65 lines
1.5 KiB
Bash

#!/bin/sh
#
# Try to activate mod_webapp in the installed httpd.conf and warn
# if this fails. This script could be replaced with a simple @exec
# line in the PLIST if the apache13 package installed an httpd.conf.
#
# $FreeBSD$
#
if [ "$2" != "POST-INSTALL" ]; then
exit 0
fi
TMPDIR=${TMPDIR:=/tmp}
PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}}
apxscmd=${PKG_PREFIX}/sbin/apxs
webappmod=${PKG_PREFIX}/libexec/apache/mod_webapp.so
tmpdir=${PKG_TMPDIR}/instmod_webapp.$$
if [ ! -x ${apxscmd} ]; then
echo Can\'t find the apxs program: ${apxscmd}.
exit 1
fi
confdir=`${apxscmd} -q SYSCONFDIR`
if [ ! -d ${confdir} ]; then
echo Can\'t find Apache conf dir: ${confdir}
exit 1
fi
if [ ! -f ${confdir}/httpd.conf ]; then
if [ ! -f ${confdir}/httpd.conf.default ]; then
echo Can\'t find either of ${confdir}/httpd.conf nor
echo ${confdir}/httpd.conf.default.
exit 1
fi
if ! mkdir ${tmpdir}; then
echo Can\'t create temporary directory: ${tmpdir}
exit 1
fi
cp ${confdir}/httpd.conf.default ${tmpdir}/httpd.conf
if ${apxscmd} -e -S SYSCONFDIR=${tmpdir} -a -n webapp ${webappmod}; then
echo Updating httpd.conf.default in config dir: ${confdir}
cat ${tmpdir}/httpd.conf > ${confdir}/httpd.conf.default
rm -rf ${tmpdir}
exit 0
else
rm -rf ${tmpdir}
echo The apxs command failed to activate mod_webapp in the config
echo file: ${tmpdir}/httpd.conf.
exit 1
fi
elif ${apxscmd} -e -a -n webapp ${webappmod}; then
exit 0
else
echo The apxs command failed to activate mod_webapp in the config
echo file: ${confdir}/httpd.conf
exit 1
fi
exit 0