pkgsrc/cad/pcb/DEINSTALL
dmcmahill 53e4a5ba09 - use getcwd() instead of getwd().
- remove all compiler warnings on alpha

- add ${PKG_SYSCONFDIR}/pcb/local.inc where admins can list site specific
  libraries to be included instead of modifying one of the regularly
  installed/deinstalled files.  This way a local config is preserved when
  the pkg is upgraded.  Also a local config can be applied without modifying
  one of the files which is checksummed during the install.
2002-05-31 19:56:19 +00:00

18 lines
438 B
Bash

#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2002/05/31 19:56:19 dmcmahill Exp $
#
case "$2" in
DEINSTALL) cat <<EOF
=============================================================
Note that the local library configuration file
(@pkg_sysconfdir@/pcb/local.inc) is not removed by the
deinstallation process. You should remove this by hand, if
you no longer need it.
=============================================================
EOF
;;
esac