aboutsummaryrefslogtreecommitdiff
path: root/japanese/linux-netscape47-communicator
diff options
context:
space:
mode:
authorR. Imura <imura@FreeBSD.org>2000-05-14 17:50:20 +0000
committerR. Imura <imura@FreeBSD.org>2000-05-14 17:50:20 +0000
commit26aa466b33a0d88ad5fb12f48af715e04639d63f (patch)
tree311098f77e8152c4e2ec5b89ed91a49326306a06 /japanese/linux-netscape47-communicator
parentc6e117041e2350ca62ec190d6e1cdce340bb670f (diff)
downloadports-26aa466b33a0d88ad5fb12f48af715e04639d63f.tar.gz
ports-26aa466b33a0d88ad5fb12f48af715e04639d63f.zip
Notes
Diffstat (limited to 'japanese/linux-netscape47-communicator')
-rw-r--r--japanese/linux-netscape47-communicator/Makefile2
-rw-r--r--japanese/linux-netscape47-communicator/files/start.sh.in9
2 files changed, 9 insertions, 2 deletions
diff --git a/japanese/linux-netscape47-communicator/Makefile b/japanese/linux-netscape47-communicator/Makefile
index 01913e353712..fbafeca5b9b3 100644
--- a/japanese/linux-netscape47-communicator/Makefile
+++ b/japanese/linux-netscape47-communicator/Makefile
@@ -8,6 +8,8 @@
RUN_DEPENDS= ${PREFIX}/bin/${BROWSER_ARC}-${BROWSER_VERSION}:${PORTSDIR}/www/linux-netscape47-${BROWSER}
RUN_DEPENDS+= /compat/linux/usr/share/locale/ja_JP:${PORTSDIR}/japanese/linux_locale
+MAINTAINER= imura@FreeBSD.org
+
BROWSER_ARC= ${BROWSER}-linux
MASTERDIR_LINUX= ${.CURDIR}/../linux-netscape47-communicator
NSUBDIR= lib/netscape-linux
diff --git a/japanese/linux-netscape47-communicator/files/start.sh.in b/japanese/linux-netscape47-communicator/files/start.sh.in
index ceafe9bfe94d..cefb2e2650f5 100644
--- a/japanese/linux-netscape47-communicator/files/start.sh.in
+++ b/japanese/linux-netscape47-communicator/files/start.sh.in
@@ -4,7 +4,7 @@ if [ ! -d $HOME/.netscape ]; then
cp @RDIR@/preferences.js $HOME/.netscape
chmod 644 $HOME/.netscape/preferences.js
fi
-export LANG=ja_JP.EUC
+export LANG=@LANG@
export LC_ALL=${LANG}
export LC_CTYPE=${LANG}
export MOZILLA_HOME=@NDIR@
@@ -15,4 +15,9 @@ export XAPPLRESDIR=@RDIR@
export TIMID_DIR=/usr/local/lib/timidity
export XCMSDB=/dev/null
ulimit -c 0
-exec ${MOZILLA_HOME}/@BROWSER_BIN@ "$@"
+if [ -x /compat/linux/usr/X11R6/lib/libXm-ns.so.1.0.2 ]; then
+ export LD_PRELOAD=/usr/compat/linux/usr/lib/libg++.so.2.7.2
+ exec ${MOZILLA_HOME}/netscape-dynMotif "$@"
+else
+ exec ${MOZILLA_HOME}/@BROWSER_BIN@ "$@"
+fi