mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
a6e587c45c
Submitted by: Scott Blachowicz
16 lines
331 B
Bash
16 lines
331 B
Bash
#! /bin/sh
|
|
|
|
case "$2" in
|
|
""|POST-INSTALL) cat <<EOF
|
|
=============================================================
|
|
|
|
Some files you might need to customize include the following:
|
|
|
|
${PKG_PREFIX}/etc/nmh/mhn.defaults
|
|
${PKG_PREFIX}/etc/nmh/mts.conf
|
|
|
|
=============================================================
|
|
EOF
|
|
;;
|
|
esac
|