mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
11 lines
425 B
Plaintext
11 lines
425 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "$2" != "POST-INSTALL" ]; then exit 0; fi
|
||
|
echo "####################################################################"
|
||
|
echo "If you want to use 'SJ3' as a japanese input method, then you should"
|
||
|
echo "insert the following two lines into ~/.emacs"
|
||
|
echo ""
|
||
|
echo "(load \"sj3-egg\")"
|
||
|
echo "(setq egg-default-startup-file \"eggrc-sj3\")"
|
||
|
echo "####################################################################"
|