mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
16 lines
331 B
Plaintext
16 lines
331 B
Plaintext
|
#! /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
|