mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
e9256feffb
packages. The editors/mule-common package contains the language- independent parts. Add some new ports based on input methods. They don't take up much space because of efficient sharing. PR: 4411 Submitted by: Satoshi Taoka <taoka@infonets.hiroshima-u.ac.jp>
11 lines
425 B
Bash
11 lines
425 B
Bash
#!/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 "####################################################################"
|