summaryrefslogtreecommitdiff
path: root/sysutils/amanda-common/pkg/DEINSTALL
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2001-06-14 21:54:35 +0000
committerjlam <jlam@pkgsrc.org>2001-06-14 21:54:35 +0000
commit73823d7723543ce6ca9a917d6f2b21a7fd895692 (patch)
tree6fecf45920c1d9223cd8581e17ff3277b345ba66 /sysutils/amanda-common/pkg/DEINSTALL
parent5e56dbb4d7d94958bf62383252077f3991dac2d6 (diff)
downloadpkgsrc-73823d7723543ce6ca9a917d6f2b21a7fd895692.tar.gz
- Migrate BUILD_DEFS to Makefile.common
- Apply the patch from pkg/13188 by Ron Roskens <roskens@elfin.net> to fix problems with hard-coding /var/amanda. - Remove USE_X11 from amanda-server since amanda-plot has already been split out. - Don't explicitly look for headers in ${PREFIX}/include.
Diffstat (limited to 'sysutils/amanda-common/pkg/DEINSTALL')
-rw-r--r--sysutils/amanda-common/pkg/DEINSTALL46
1 files changed, 41 insertions, 5 deletions
diff --git a/sysutils/amanda-common/pkg/DEINSTALL b/sysutils/amanda-common/pkg/DEINSTALL
index e0456852ffa..a9939d18e20 100644
--- a/sysutils/amanda-common/pkg/DEINSTALL
+++ b/sysutils/amanda-common/pkg/DEINSTALL
@@ -1,26 +1,62 @@
#!/bin/sh
#
-# $NetBSD: DEINSTALL,v 1.1 2000/08/17 02:26:30 wiz Exp $
+# $NetBSD: DEINSTALL,v 1.2 2001/06/14 21:54:36 jlam Exp $
#
PKGNAME=$1
STAGE=$2
USER=@AMUSER@
+AMVAR=@AMVAR@
+
+CAT="@CAT@"
+RMDIR="@RMDIR@"
+TRUE="@TRUE@"
case ${STAGE} in
DEINSTALL)
;;
+
POST-DEINSTALL)
- cat << EOF
+ ${RMDIR} ${AMVAR}/gnutar-lists 2>/dev/null || ${TRUE}
+ ${RMDIR} ${AMVAR} 2>/dev/null || ${TRUE}
+
+ existing_dirs=''
+ for dir in ${AMVAR}/gnutar-lists ${AMVAR}
+ do
+ if [ -d ${dir} ]
+ then
+ existing_dirs="${existing_dirs} ${dir}"
+ fi
+ done
+
+ ${CAT} << EOF
===========================================================================
-If you won't be using ${PKGNAME} any longer, you may want to
-remove the \`${USER}' user.
+If you won't be using ${PKGNAME} any longer, you may want to remove:
+
+ * the \`${USER}' user
+EOF
+
+ if [ -n "${existing_dirs}" ]
+ then
+ ${CAT} << EOF
+
+ * the following directories:
+
+EOF
+ for dir in ${existing_dirs}
+ do
+ echo " ${dir}"
+ done
+ fi
+
+ ${CAT} << EOF
===========================================================================
EOF
;;
+
*)
- echo "Unexpected argument: $2"
+ echo "Unexpected argument: ${STAGE}"
exit 1
;;
esac