summaryrefslogtreecommitdiff
path: root/mail/mutt/DEINSTALL
diff options
context:
space:
mode:
authorjlam <jlam>2002-01-30 23:05:45 +0000
committerjlam <jlam>2002-01-30 23:05:45 +0000
commitd7510d91dbf71c6c5a73da1713e495c28f278a0e (patch)
treecfdd2a7b48456d8e3c6ab7254722c0ac149cdea5 /mail/mutt/DEINSTALL
parenta84bd552eefdc3fbf45f335c82cad317df030cf2 (diff)
downloadpkgsrc-d7510d91dbf71c6c5a73da1713e495c28f278a0e.tar.gz
* Use the general INSTALL/DEINSTALL scripts
* Honor ${PKG_SYSCONFDIR} for the location of the config files (Muttrc, mime.types). * Rearrange lines slightly to minimize differences between mutt/Makefile and mutt-devel/Makefile to simplify updating mutt when the next release (1.4?) is released.
Diffstat (limited to 'mail/mutt/DEINSTALL')
-rw-r--r--mail/mutt/DEINSTALL68
1 files changed, 0 insertions, 68 deletions
diff --git a/mail/mutt/DEINSTALL b/mail/mutt/DEINSTALL
deleted file mode 100644
index 4f319ee3d78..00000000000
--- a/mail/mutt/DEINSTALL
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/bin/sh
-#
-# $NetBSD: DEINSTALL,v 1.1 2001/11/01 01:00:37 zuntum Exp $
-
-PKGNAME=$1
-STAGE=$2
-
-CAT="@CAT@"
-CMP="@CMP@"
-RM="@RM@"
-
-SAMPLECONFDIR=${PKG_PREFIX}/share/doc/mutt/samples
-CONFDIR=${PKG_PREFIX}/etc
-CONFFILES="Muttrc"
-NONCONFFILES="mime.types"
-
-case ${STAGE} in
-DEINSTALL)
- # Remove configuration files if they don't differ from the default
- # config file.
- #
- for file in ${CONFFILES} ${NONCONFFILES}
- do
- FILE=${CONFDIR}/${file}
- SAMPLEFILE=${SAMPLECONFDIR}/${file}
- if ${CMP} -s ${FILE} ${SAMPLEFILE}
- then
- ${RM} -f ${FILE}
- fi
- done
- ;;
-
-POST-DEINSTALL)
- modified_files=''
- for file in ${CONFFILES} ${NONCONFFILES}
- do
- FILE=${CONFDIR}/${file}
- if [ -f ${FILE} ]
- then
- modified_files="${modified_files} ${FILE}"
- fi
- done
-
- if [ -n "${modified_files}" ]
- then
- ${CAT} << EOF
-===========================================================================
-If you won't be using ${PKGNAME} any longer, you may want to remove:
-
- * the following files:
-
-EOF
- for file in ${modified_files}
- do
- echo " ${file}"
- done
- ${CAT} << EOF
-===========================================================================
-EOF
- fi
- ;;
-
-*)
- echo "Unexpected argument: ${STAGE}"
- exit 1
- ;;
-esac
-exit 0