#!/bin/sh # # Try to de-activate mod_webapp 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_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 cgit/cgit.cgi/'>index : freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/p5-Text-ParagraphDiff
Commit message (Expand)AuthorAgeFilesLines
* - Fix shebangsamdmi32015-05-311-2/+4
* Move p5- ports from ports@ to perl@.mat2015-05-111-1/+1
* Remove Author from pkg-descr and white space fixesbapt2015-03-031-1/+0
* Cleanup plistbapt2014-12-091-1/+0
* Change the way Perl modules are installed, update the default Perl to 5.18.mat2014-11-262-4/+1
* Remove NOPORTDOCS and NOPORTEXAMPLES.adamw2014-07-05