diff options
Diffstat (limited to 'devel/subversion16/files')
-rw-r--r-- | devel/subversion16/files/pkg-deinstall.in | 75 | ||||
-rw-r--r-- | devel/subversion16/files/pkg-install.in | 57 |
2 files changed, 132 insertions, 0 deletions
diff --git a/devel/subversion16/files/pkg-deinstall.in b/devel/subversion16/files/pkg-deinstall.in new file mode 100644 index 000000000000..a0439b700b4c --- /dev/null +++ b/devel/subversion16/files/pkg-deinstall.in @@ -0,0 +1,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 diff --git a/devel/subversion16/files/pkg-install.in b/devel/subversion16/files/pkg-install.in new file mode 100644 index 000000000000..bfca60ceb265 --- /dev/null +++ b/devel/subversion16/files/pkg-install.in @@ -0,0 +1,57 @@ +#!/bin/sh +# +# Date created: 18 Apr 2010 +# Whom: ohauer@gmx.de +# +# Try to activate mod_dav.so in httpd.conf only if the module is not already active. +# This script is a workaround for apxs bug: +# https://issues.apache.org/bugzilla/show_bug.cgi?id=47397 +# +# $FreeBSD$ +# + +if [ "%%MOD_DAV_SVN_INSTALL%%" != "YES" ] ; then + exit 0 +fi + +if [ "$2" != "PRE-INSTALL" ]; then + exit 0 +fi + +APXSCMD=${PKG_PREFIX}/sbin/apxs + +if [ ! -x ${APXSCMD} ]; then + echo Can\'t find the apxs program: ${APXSCMD}. + exit 1 +fi + +SYSCONFDIR=`${APXSCMD} -q SYSCONFDIR` +LIBEXECDIR=`${APXSCMD} -q LIBEXECDIR` + +if [ ! -d "${SYSCONFDIR}" ]; then + echo Can\'t find Apache conf dir: ${SYSCONFDIR} + exit 1 +fi + +if [ -f "${SYSCONFDIR}/httpd.conf" ]; then + CONFFILE=httpd.conf +fi + +if [ -z "${CONFFILE}" ]; then + echo "Can\'t find ${SYSCONFDIR}/${CONFFILE}" + exit 1 +fi + +# use only 'egrep -e' else the check works not correct +if [ ! -n "`egrep -e '^(Load|Add)Module.*dav_module' ${SYSCONFDIR}/${CONFFILE}`" ]; then + if [ -f ${LIBEXECDIR}/mod_dav.so ]; then + ${APXSCMD} -e -S LIBEXECDIR=${LIBEXECDIR} -a -n dav ${LIBEXECDIR}/mod_dav.so + else + echo "cannot find ${LIBEXECDIR}/mod_dav.so" + exit 1 + fi +else + echo "dav_module already active in ${SYSCONFDIR}/${CONFFILE}" +fi + +exit 0 |