827643d4bb
This avoids the need for a confusing line of the form: DEINSTALL_TEMPLATE+= path/to/INSTALL in the package Makefile, and actually removes the need to specify it altogether since by convention, the existence of the DEINSTALL script is enough to add it to DEINSTALL_TEMPLATE.
18 lines
371 B
Bash
18 lines
371 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: DEINSTALL,v 1.1 2006/06/15 20:40:15 jlam Exp $
|
|
|
|
ADOBE_RESOURCEDIR="@ADOBE_RESOURCEDIR@"
|
|
GS_RESOURCEDIR="@GS_RESOURCEDIR@"
|
|
PKG_INFO="@PKG_INFO@"
|
|
|
|
case ${STAGE} in
|
|
DEINSTALL)
|
|
${PKG_INFO} -qL adobe-cmaps | ${GREP} "/Resource/CMap/" |
|
|
while read src; do
|
|
base=`${BASENAME} $src`
|
|
dest="${GS_RESOURCEDIR}/CMap/$base"
|
|
${RM} -f $dest
|
|
done
|
|
;;
|
|
esac
|