freebsd-ports/sysutils/pear-Log/pkg-deinstall
Edwin Groothuis 3740831439 PEAR ports: handling PEAR's registry.
PEAR uses a "registry" to register installed modules, and
	this registry is initialized during the installation of
	mod_php4 (since 4.3.0).

	Unfortunately, installing PEAR modules through the ports
	does not maintain this registry.

	This PR fix this problem for the following ports:
	- sysutils/pear-Log
	- devel/pear-PEAR
	- devel/pear-Date
	- devel/pear-I18N
	- devel/pear-HTML_Common
	- devel/pear-HTML_Select_Common
	- security/pear-Crypt_CBC
	- mail/pear-Mail_Mime
	- net/pear-Net_Sieve
	- sysutils/pear-File
	- archivers/pear-Archive_Tar

PR:		ports/47921
Submitted by:	Thierry Thomas <thierry@pompo.net>
2003-02-24 05:27:41 +00:00

14 lines
246 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# Remove package declaration from PEAR's registry.
if [ x$2 != xDEINSTALL ]; then
exit
fi
PKG_NAME=${1%%-[0-9._]*}
PACKAGE=$(echo $PKG_NAME | sed 's/pear-//')
${PKG_PREFIX}/bin/pear uninstall -r ${PACKAGE} || true