diff options
author | cjh <cjh@FreeBSD.org> | 2000-06-25 21:14:14 +0800 |
---|---|---|
committer | cjh <cjh@FreeBSD.org> | 2000-06-25 21:14:14 +0800 |
commit | ee0bdaba6ff40142c58df379eacdf88f153842ff (patch) | |
tree | 20656674143b7457b70fb0e819e31ee47d85023a /korean | |
parent | daa0106632d0f504490cfff85f951520986b7dc1 (diff) | |
download | freebsd-ports-gnome-ee0bdaba6ff40142c58df379eacdf88f153842ff.tar.gz freebsd-ports-gnome-ee0bdaba6ff40142c58df379eacdf88f153842ff.tar.zst freebsd-ports-gnome-ee0bdaba6ff40142c58df379eacdf88f153842ff.zip |
Korean-enabled Netscape Comunicator for Linux.
Diffstat (limited to 'korean')
-rw-r--r-- | korean/linux-netscape47-communicator/Makefile | 18 | ||||
-rw-r--r-- | korean/linux-netscape47-communicator/files/start.sh.in | 22 |
2 files changed, 40 insertions, 0 deletions
diff --git a/korean/linux-netscape47-communicator/Makefile b/korean/linux-netscape47-communicator/Makefile new file mode 100644 index 000000000000..58facb837484 --- /dev/null +++ b/korean/linux-netscape47-communicator/Makefile @@ -0,0 +1,18 @@ +# New ports collection makefile for: Netscape browser with Korean resources +# Date created: 25 Jun 2000 +# Whom: cjh@FreeBSD.org +# +# $FreeBSD$ +# + +RUN_DEPENDS= ${PREFIX}/bin/${BROWSER_ARC}-${BROWSER_VERSION}:${PORTSDIR}/www/linux-netscape47-${BROWSER} +RUN_DEPENDS+= /compat/linux/usr/share/locale/ko/LC_MESSAGES/SYS_LC_MESSAGES:${PORTSDIR}/korean/linux_locale + +MAINTAINER= cjh@FreeBSD.org + +BROWSER_ARC= ${BROWSER}-linux +MASTERDIR_LINUX= ${.CURDIR}/../linux-netscape47-communicator +NSUBDIR= lib/netscape-linux +START_SCRIPT= ${MASTERDIR_LINUX}/files/start.sh.in + +.include "${.CURDIR}/../netscape47-communicator/Makefile" diff --git a/korean/linux-netscape47-communicator/files/start.sh.in b/korean/linux-netscape47-communicator/files/start.sh.in new file mode 100644 index 000000000000..f28c878eb48b --- /dev/null +++ b/korean/linux-netscape47-communicator/files/start.sh.in @@ -0,0 +1,22 @@ +#!/bin/sh +if [ ! -d $HOME/.netscape ]; then + mkdir -m 700 $HOME/.netscape + cp @RDIR@/preferences.js $HOME/.netscape + chmod 644 $HOME/.netscape/preferences.js +fi +export LANG=@LANG@ +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 +ulimit -c 0 +if [ -x /compat/linux/usr/X11R6/lib/libXm-ns.so.1.0.2 ]; then + exec ${MOZILLA_HOME}/netscape-dynMotif "$@" +else + exec ${MOZILLA_HOME}/@BROWSER_BIN@ "$@" +fi |