mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
d9ab5e69e8
PR: ports/15627 Submitted by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
27 lines
1.4 KiB
Bash
27 lines
1.4 KiB
Bash
#!/bin/sh
|
|
|
|
if [ -z "${SITE_STARTUP_FILE}" ]; then
|
|
${CAT} <<EOF > ${WRKTMPDIR}/MESSAGE
|
|
*************************************************************************
|
|
* You must set at least following elisps to your own dot.emacs file: *
|
|
* *
|
|
* (autoload 'mew "mew" nil t) *
|
|
* (autoload 'mew-send "mew" nil t) *
|
|
* (setq mew-mail-domain-list '("Name_Server_Domain_Name")) *
|
|
* *
|
|
*************************************************************************
|
|
EOF
|
|
else
|
|
${CAT} <<EOF > ${WRKTMPDIR}/MESSAGE
|
|
*************************************************************************
|
|
* You must set at least following elisps to your own dot.emacs file: *
|
|
* *
|
|
* (require 'mew-${EMACS_PORT_NAME}-startup) *
|
|
* (autoload 'mew "mew" nil t) *
|
|
* (autoload 'mew-send "mew" nil t) *
|
|
* (setq mew-mail-domain-list '("Name_Server_Domain_Name")) *
|
|
* *
|
|
*************************************************************************
|
|
EOF
|
|
fi
|