head	1.2;
access;
symbols
	RELEASE_8_1_0:1.1
	RELEASE_7_3_0:1.1
	RELEASE_8_0_0:1.1
	RELEASE_7_2_0:1.1
	RELEASE_7_1_0:1.1
	RELEASE_6_4_0:1.1
	RELEASE_5_EOL:1.1
	RELEASE_7_0_0:1.1
	RELEASE_6_3_0:1.1
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1
	RELEASE_6_1_0:1.1
	RELEASE_5_5_0:1.1
	RELEASE_6_0_0:1.1
	RELEASE_5_4_0:1.1
	RELEASE_4_11_0:1.1
	RELEASE_5_3_0:1.1
	RELEASE_4_10_0:1.1
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1
	RELEASE_4_9_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2010.08.08.22.19.12;	author pgollucci;	state dead;
branches;
next	1.1;

1.1
date	2003.06.12.14.06.20;	author sheldonh;	state Exp;
branches;
next	;


desc
@@


1.2
log
@www/mod_webapp has been broken for almost a year and the Makefile is in disarray.
@
text
@#!/bin/sh
#
# Try to de-activate mod_webapp in the installed httpd.conf and warn
# if this fails.
#
# $FreeBSD: ports/www/mod_webapp/pkg-deinstall,v 1.1 2003/06/12 14:06:20 sheldonh Exp $
#

if [ "$2" != "POST-DEINSTALL" ]; then
	exit 0
fi

TMPDIR=${TMPDIR:=/tmp}
PKG_TMPDIR=${PKG_TMPDIR:=${TMPDIR}}

apxscmd=${PKG_PREFIX}/sbin/apxs
tmpdir=${PKG_TMPDIR}/deinstmod_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
	conffile=httpd.conf
fi
if [ -f ${confdir}/httpd.conf.default ]; then
	conffile="${conffile} httpd.conf.default"
fi
if [ -z "${conffile}" ]; then
	echo Can\'t find either of ${confdir}/httpd.conf or
	echo ${confdir}/httpd.conf.default.
	exit 1
fi

if ! mkdir ${tmpdir}; then
	echo Can\'t create temporary directory: ${tmpdir}
	exit 1
fi

for i in ${conffile}; do
	awk '{if (!/^LoadModule webapp_module/ && !/^AddModule mod_webapp.c/) \
	    print $0}' < ${confdir}/$i > ${tmpdir}/$i
	echo Updating $i in config dir: ${confdir}
	cat ${tmpdir}/$i > ${confdir}/$i
done

rm -rf ${tmpdir}

exit 0
@


1.1
log
@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>
@
text
@d6 1
a6 1
# $FreeBSD$
@

