53e4a5ba09
- 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.
18 lines
438 B
Bash
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
|