head	1.2;
access;
symbols
	RELEASE_8_3_0:1.1
	RELEASE_9_0_0:1.1
	RELEASE_7_4_0:1.1
	RELEASE_8_2_0:1.1
	RELEASE_6_EOL:1.1
	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;
locks; strict;
comment	@# @;


1.2
date	2012.11.17.06.02.40;	author svnexp;	state Exp;
branches;
next	1.1;

1.1
date	2008.08.17.06.27.23;	author edwin;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Switch exporter over
@
text
@#!/bin/sh
#
# Try to de-activate authopenid_module in the installed httpd.conf and warn
# if this fails.
#
# $FreeBSD: head/www/mod_auth_openid/pkg-deinstall 300897 2012-07-14 14:29:18Z beat $
#

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 authopenid_module/) \
	    print $0}' < ${confdir}/$i > ${tmpdir}/$i
	echo Removing authopenid_module from $i in config dir: ${confdir}
	cat ${tmpdir}/$i > ${confdir}/$i
done

rm -rf ${tmpdir}

exit 0
@


1.1
log
@New port: www/mod_auth_openid An authentication module for the
Apache 2 webserver with OpenID

	mod_auth_openid is an authentication module for the Apache
	2 webserver.  It handles the functions of an OpenID consumer
	as specified in the OpenID 2.0 specification.

	WWW: http://trac.butterfat.net/public/mod_auth_openid

PR:		ports/126218
Submitted by:	Sutra Zhou <zhoushuqun@@gmail.com>
@
text
@d6 1
a6 1
# $FreeBSD$
@

