mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
c8e157b3bf
(lots of bug fixes, plus the port's locking is fixed, and inc will honour a mode 775 /var/mail). Also pacify portlint. Submitted by: Scott Blachowicz (partially)
16 lines
330 B
Bash
16 lines
330 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
|