#!/bin/sh 

PKGNAME=w3-recs-2002

if [ -x /usr/sbin/dhelp_parse ]; then
  /usr/sbin/dhelp_parse -d /usr/share/doc/$PKGNAME/RECS
fi


if [ "$1" = remove -o "$1" = upgrade ]; then
   if command -v install-docs >/dev/null 2>&1; then
   	for name in xmldsig-core p3p xml-exc-c14n xmldsig-filter2 \
	            xmlenc-core xmlenc-decrypt uaag
	do
          install-docs -r rec-$name
	done
   fi
fi

find /usr/share/doc/$PKGNAME -name .dhelp -exec rm -f {} \;

#DEBHELPER#
