mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
31aa8fb80e
* Remove obsolete environment variables. * Change the default message fonts 16dots -> 14dots. A user could change the work by setting up the environment ``USE_16DOT_FONT''. * Change the calling way for the SED script. * Enable to switch the locale function of ``LD_PRELOAD'' method instead of ``PATH LOCALE'' one, by the environment ``JA_NETSCAPE_USE_LD_PRELOAD''. * Follow up the distribution resource file's update and change the md5. PR: ports/8529 Submitted by: myself Obtained from: sada's local machine
18 lines
523 B
Bash
18 lines
523 B
Bash
#!/bin/sh
|
|
export LANG=ja_JP.EUC
|
|
export LC_ALL=${LANG}
|
|
export LC_CTYPE=${LANG}
|
|
export MOZILLA_HOME=@NDIR@
|
|
export CLASSPATH=.:${MOZILLA_HOME}
|
|
export NS_NETHELP_PATH=${MOZILLA_HOME}/${LANG}
|
|
export XKEYSYMDB=@X11BASE@/lib/X11/XKeysymDB
|
|
export XAPPLRESDIR=@RDIR@
|
|
export TIMID_DIR=/usr/local/lib/timidity
|
|
export XCMSDB=/dev/null
|
|
if [ x$JA_NETSCAPE_USE_LD_PRELOAD != x -a x$JA_NETSCAPE_USE_LD_PRELOAD != xno ]; then
|
|
export LD_PRELOAD=libxpg4.so.2.0
|
|
else
|
|
export PATH_LOCALE=@RDIR@/locale
|
|
fi
|
|
exec ${MOZILLA_HOME}/@BROWSER@.bin $*
|