pkgsrc/sysutils/xcdroast/INSTALL
jlam c3c74b88b6 * Use buildlink2.
* Install some documentation.
* Honor PKG_SYSCONFDIR (and warn user that the config file directory may
  have changed).
* Allow for compiling with OSS support on NetBSD, though it is currently
  commented out.
2002-09-26 12:29:55 +00:00

20 lines
662 B
Text

# $NetBSD: INSTALL,v 1.1 2002/09/26 12:29:55 jlam Exp $
case ${STAGE} in
POST-INSTALL)
if [ "${PKG_SYSCONFDIR}" != "${PKG_PREFIX}/etc" ]; then
if [ -f ${PREFIX}/etc/xcdroast.conf ]; then
${CAT} << EOF
===========================================================================
========================
=== IMPORTANT NOTICE ===
========================
The default location of the xcdroast configuration files has changed.
Please move them from ${PKG_PREFIX}/etc to /etc.
===========================================================================
EOF
fi
fi
;;
esac