diff options
author | asami <asami@FreeBSD.org> | 1996-04-30 05:59:29 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-04-30 05:59:29 +0000 |
commit | 0a9346f43caee43c61e45cac7b6db0e4134e968e (patch) | |
tree | 8ab895fe4f87f32b6900d6748c162f07a28fbfa5 /japanese/pine/scripts | |
parent | 4068046a4e9e82e1aca3797249b24dcfbd4bb37f (diff) | |
download | FreeBSD-ports-0a9346f43caee43c61e45cac7b6db0e4134e968e.zip FreeBSD-ports-0a9346f43caee43c61e45cac7b6db0e4134e968e.tar.gz |
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 0000000..7a808f5 --- /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 + |