diff options
author | wiz <wiz@pkgsrc.org> | 2002-08-06 14:04:34 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-08-06 14:04:34 +0000 |
commit | b925816817e2541454f07b4d0aeb5b27e79dcae6 (patch) | |
tree | 504ac74e084d0125548ebb0a87a57e8c67594e6d /print/xpdf-latin2/DEINSTALL | |
parent | d1c1903912cc457a221a6160703f4df45638a89a (diff) | |
download | pkgsrc-b925816817e2541454f07b4d0aeb5b27e79dcae6.tar.gz |
Initial import of language support packages for xpdf.
Most of them provided by Rui-Xiang Guo in pkg/16258-16264.
I updated them to the current versions and did some cleanup (e.g.,
adding DIST_SUBDIR).
Diffstat (limited to 'print/xpdf-latin2/DEINSTALL')
-rw-r--r-- | print/xpdf-latin2/DEINSTALL | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/print/xpdf-latin2/DEINSTALL b/print/xpdf-latin2/DEINSTALL new file mode 100644 index 00000000000..c7005a86a97 --- /dev/null +++ b/print/xpdf-latin2/DEINSTALL @@ -0,0 +1,24 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1.1.1 2002/08/06 14:04:34 wiz Exp $ + +PKGNAME=$1 +STAGE=$2 + +XPDFRC=${PKG_PREFIX}/etc/xpdfrc + +case ${STAGE} in +DEINSTALL) + ;; + +POST-DEINSTALL) + sed -e "/atin2/d" ${XPDFRC} > ${XPDFRC}.tmp + mv -f ${XPDFRC}.tmp ${XPDFRC} + ;; + +*) + echo "Unexpected argument: ${STAGE}" + exit 1 + ;; +esac +exit 0 |