diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-04-30 05:59:29 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-04-30 05:59:29 +0000 |
commit | 0ad8957a8e721d448f1b580148947bc887696d75 (patch) | |
tree | ed4bf69749ded002d12359ddb223c8c8df2c9c34 /japanese/pine/scripts | |
parent | Put variables in right order. People, please take a look at the sample (diff) |
Japanized pine for reading and writing Japanese mails (obviously!).
Submitted by: max@sfc.wide.ad.jp
Diffstat (limited to 'japanese/pine/scripts')
-rw-r--r-- | japanese/pine/scripts/configure | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/japanese/pine/scripts/configure b/japanese/pine/scripts/configure new file mode 100644 index 000000000000..7a808f5dbf08 --- /dev/null +++ b/japanese/pine/scripts/configure @@ -0,0 +1,23 @@ +#!/bin/sh + +if [ ! -f ${WRKSRC}/pine/pine-e.hlp ] ; then + mv ${WRKSRC}/pine/pine.hlp ${WRKSRC}/pine/pine-e.hlp +fi + +echo -n "Do you want pine to display its menu and help message in Japanese? (y/n)> " +read ans +case X$ans in +y*|Y*) +ln -fs ${WRKSRC}/pine-j.hlp ${WRKSRC}/pine.hlp +;; +*) +ln -fs ${WRKSRC}/pine/pine-e.hlp ${WRKSRC}/pine/pine.hlp +ed -s ${WRKSRC}/pico/kanji.h << EOP +46c +#undef KANJI_MSG +. +w +EOP +;; +esac + |