summaryrefslogtreecommitdiff
path: root/devel/subversion16/files/pkg-deinstall.in
blob: a0439b700b4c4121e3c943db1cd543fff2ab4314 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/sh
#
# Try to de-activate mod_dav_svn in the installed httpd.conf and warn
# if this fails.
#
# $FreeBSD: /tmp/pcvs/ports/devel/subversion16/files/pkg-deinstall.in,v 1.1 2010-04-19 10:39:12 lev Exp $
#

if [ "%%MOD_DAV_SVN_INSTALL%%" != "YES" ] ; then
	exit 0
fi

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
	echo -n Removing dav_svn_module, authz_svn_module and dontdothat_module from $i in config dir: ${confdir}...
	awk '{if (!/^LoadModule dav_svn_module/    && 
		  !/^AddModule mod_dav_svn.c/      && \
		  !/^LoadModule authz_svn_module/  && \
		  !/^AddModule mod_authz_svn.c/    && \
		  !/^LoadModule dontdothat_module/ && \
		  !/^AddModule mod_dontdothat.c/    ) \
	    print $0}' < "${confdir}/$i" > "${tmpdir}/$i"
	AWKRC=$?
	diff "${confdir}/$i" "${tmpdir}/$i" | grep "^[<>]" | grep -Evq "^< (Load|Add)Module "
	GREPRC=$?
	# last grep should not find anything
	if [ "x${AWKRC}" = "x0" -a "x${GREPRC}" = "x1"  ] ; then
		echo " Ok"
		cat "${tmpdir}/$i" > "${confdir}/$i"
	else
		echo " Error! Please, remove these modules manually"
	fi
done

rm -rf "${tmpdir}"

exit 0