freebsd-ports/devel/subversion-devel/pkg-deinstall
Bruce A. Mah 7b04089642 Enable building of the mod_dav_svn module if MOD_DAV_SVN is defined.
This enables integration of subversion with the Apache 2.0 Web server.

While here, remove an unnecessary dependency on an external gdiff
program.

(pkg_deinstall script snarfed from ports/www/mod_perl)

Reviewed by:	Craig Rodrigues <rodrigc@attbi.com>, tom,
		Garrett Rooney <rooneg@electricjellyfish.net>
Approved by:	Craig Rodrigues <rodrigc@attbi.com> (MAINTAINER)
2003-05-23 01:31:48 +00:00

57 lines
1.1 KiB
Bash

#!/bin/sh
#
# Try to de-activate mod_dav_svn in the installed httpd.conf and warn
# if this fails.
#
# $FreeBSD$
#
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_dav_svn.$$
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 dav_svn_module/ && !/^AddModule mod_dav_svn.c/) \
print $0}' < ${confdir}/$i > ${tmpdir}/$i
echo Removing dav_svn_module from $i in config dir: ${confdir}
cat ${tmpdir}/$i > ${confdir}/$i
done
rm -rf ${tmpdir}
exit 0