diff options
author | Steve Price <steve@FreeBSD.org> | 1998-11-21 20:11:02 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1998-11-21 20:11:02 +0000 |
commit | fd6d9aea13a6322efd57d6505e8842471ed0da8c (patch) | |
tree | a1658807dfdab9ae9d3f1970fd734ea8d39a5084 | |
parent | 6bffea543319de8efb96dbaaa31a107c42c7dae8 (diff) | |
download | ports-fd6d9aea13a6322efd57d6505e8842471ed0da8c.tar.gz ports-fd6d9aea13a6322efd57d6505e8842471ed0da8c.zip |
Notes
25 files changed, 1077 insertions, 758 deletions
diff --git a/korean/netscape3/Makefile b/korean/netscape3/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape3/Makefile +++ b/korean/netscape3/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR diff --git a/korean/netscape3/distinfo b/korean/netscape3/distinfo index 2e9161d15aba..4210dc4653cd 100644 --- a/korean/netscape3/distinfo +++ b/korean/netscape3/distinfo @@ -1,2 +1,2 @@ -MD5 (netscape-v301-export.x86-unknown-bsd.tar.gz) = 6e2f49b564cdf9212d72239f889f8f58 MD5 (netscape-ko-v301.alpha-dec-osf2.0.tar.gz) = 8f4884ddbadc5e369fd7eb8a653be2c8 +MD5 (NLS.tar.gz) = f79a6c0b6f9018f522b55cbb21be866f diff --git a/korean/netscape3/files/netscape.sh b/korean/netscape3/files/netscape.sh index 4873197b81dc..3a4b9d16729d 100644 --- a/korean/netscape3/files/netscape.sh +++ b/korean/netscape3/files/netscape.sh @@ -1,7 +1,7 @@ #!/bin/sh +export LANG ; LANG=ko_KR.EUC export XKEYSYMDB ; XKEYSYMDB=@X11BASE@/lib/X11/XKeysymDB -export XNLSPATH ; XNLSPATH=@X11BASE@/lib/X11/nls -export XAPPLRESDIR ; XAPPLRESDIR=@X11BASE@/lib/X11/ko_KR.EUC/app-defaults -export CLASSPATH ; CLASSPATH=.:/usr/local/lib/netscape -export LANG; LANG=ko_KR.EUC +export XNLSPATH ; XNLSPATH=@PREFIX@/lib/netscape/nls +export XAPPLRESDIR ; XAPPLRESDIR=@PREFIX@/lib/netscape/$LANG +export CLASSPATH ; CLASSPATH=.:@PREFIX@/lib/netscape exec /usr/local/lib/netscape/netscape.bin $* diff --git a/korean/netscape3/files/patch-aa b/korean/netscape3/files/patch-aa index 251f08e9c441..371f5853ab6d 100644 --- a/korean/netscape3/files/patch-aa +++ b/korean/netscape3/files/patch-aa @@ -1,152 +1,155 @@ -*** netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ---- netscape-ko/Netscape.ad-ko Sat Apr 12 12:27:39 1997 -*************** -*** 57,63 **** - - ! This is the directory where Netscape finds external files such as icons. - ! -! *appDir: /usr/lib/X11/ko_KR.eucKR/netscape - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: ---- 57,64 ---- - - ! This is the directory where Netscape finds external files such as icons. - ! -! !*appDir: /usr/lib/X11/ko_KR.eucKR/netscape -! *appDir: /usr/local/lib/netscape/ko_KR.EUC - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: -*************** -*** 141,147 **** - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! *useStderrDialog: True - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood ---- 142,149 ---- - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! !*useStderrDialog: True -! *useStderrDialog: False - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood -*************** -*** 4357,4366 **** ---- 4359,4373 ---- - ! the document display area. - ! ============================================================================ - ! -+ *fontList:\ -+ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - ! SGI default: - !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4369,4378 **** ---- 4376,4392 ---- - !*menuBar*historyTruncated.fontList:\ - ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* - !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -+ *menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *menuBar*historyTruncated.fontList:\ -+ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4380,4391 **** ---- 4394,4413 ---- - ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* -+ *mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - - ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, -*************** -*** 4395,4400 **** ---- 4417,4430 ---- - !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ - !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ - !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC -+ *XmLGrid*fontList:\ -+ -*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ -+ -*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ -+ -*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC -+ - - - -*************** -*** 4709,4714 **** ---- 4739,4745 ---- - ! Navigator mouse documentation. - ! - !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - Netscape*tipLabel.background: #FFFFCC - Netscape*tipLabel.foreground: Black - Netscape*tipShell.borderColor: Black -*************** -*** 5167,5176 **** - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! *fontList:\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*: - *preeditType: root - - *versionLocale: ko ---- 5198,5210 ---- - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! !*fontList:\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*: -! !*fontList:\ -! ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -! !-*-*-medium-r-normal--*-120-*-*-*-*: - *preeditType: root - - *versionLocale: ko +--- netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ++++ netscape-ko/Netscape.ad-ko Mon Nov 16 20:28:03 1998 +@@ -7,6 +7,7 @@ + ! Bugs and commentary to x_cbug@netscape.com. + ! + ! Modified: dp Suresh <dp@netscape.com>, 01-Aug-95 ++! CHOI Junho <junker@jazz.snu.ac.kr>, 16-Nov-98 for FreeBSD + ! + ! ========================================================== + ! NOTE: If you're looking here for things to customize, look +@@ -57,7 +58,8 @@ + + ! This is the directory where Netscape finds external files such as icons. + ! +-*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++!*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++*appDir: /usr/local/lib/netscape/ko_KR.EUC + + ! This resource is the same as the -visual command line option, which selects + ! an X visual on which the windows should be created. Legal options are: +@@ -141,8 +143,10 @@ + ! If you find a need to let one or both of them continue on to the actual + ! terminal of Netscape, you can do it by setting these resources to False. + ! +-*useStderrDialog: True +-*useStdoutDialog: True ++!*useStderrDialog: True ++*useStderrDialog: False ++!*useStdoutDialog: True ++*useStdoutDialog: False + + ! For those MIME content-encodings which are not directly understood + ! internally, it is possible to specify another Unix program to use as +@@ -2632,7 +2636,7 @@ + ! changed at runtime; these resources won't override that. + *title: Netscape + *iconName: Netscape +-*Navigator.title: Netscape Navigator 3.01 ++*Navigator.title: Netscape Navigator 3.04 + *Mail.title: Netscape ¸ÞÀÏ + *Mail.iconName: ¸ÞÀÏ + +@@ -4347,7 +4351,7 @@ + + + ! Do not under any circumstances change the following line: +-Netscape.version: 3.01 ++Netscape.version: 3.04 + + + ! ============================================================================ +@@ -4357,10 +4361,15 @@ + ! the document display area. + ! ============================================================================ + ! ++*fontList:\ ++ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + ! SGI default: + !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* +@@ -4369,10 +4378,17 @@ + !*menuBar*historyTruncated.fontList:\ + ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* + !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* ++*menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*menuBar*historyTruncated.fontList:\ ++ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* +@@ -4380,12 +4396,20 @@ + ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* ++*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + + ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, +@@ -4395,6 +4419,14 @@ + !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ + !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ + !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC ++*XmLGrid*fontList:\ ++-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ ++-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ ++-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC ++ + + + +@@ -4709,6 +4741,7 @@ + ! Navigator mouse documentation. + ! + !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + Netscape*tipLabel.background: #FFFFCC + Netscape*tipLabel.foreground: Black + Netscape*tipShell.borderColor: Black +@@ -5167,10 +5200,13 @@ + *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå + *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã + *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã +-*fontList:\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++!-*-*-medium-r-normal--*-120-*-*-*-*: + *preeditType: root + + *versionLocale: ko +@@ -5227,6 +5263,7 @@ + *localeCharset*ja_JP: x-euc-jp + *localeCharset*ko_KR.deckorean: euc-kr + *localeCharset*ko_KR.eucKR: euc-kr ++*localeCharset*ko_KR.EUC: euc-kr + *localeCharset*ko_KR: euc-kr + *localeCharset*nl_BE.ISO8859-1: iso-8859-1 + *localeCharset*nl_NL.ISO8859-1: iso-8859-1 diff --git a/korean/netscape3/files/patch-ab b/korean/netscape3/files/patch-ab new file mode 100644 index 000000000000..d0d4ba4fdc61 --- /dev/null +++ b/korean/netscape3/files/patch-ab @@ -0,0 +1,8 @@ +--- nls.orig/nls.alias Tue Nov 17 10:31:52 1998 ++++ nls/nls.alias Tue Nov 17 10:32:06 1998 +@@ -6,4 +6,4 @@ + ja_JP.eucJP ja_JP.ujis + ct wr_WR.ct + chinese zh_CN.ugb +-korean ko_KR.euc ++ko_KR.EUC ko_KR.euc diff --git a/korean/netscape3/pkg-descr b/korean/netscape3/pkg-descr index b283628ce888..558804dd9d41 100644 --- a/korean/netscape3/pkg-descr +++ b/korean/netscape3/pkg-descr @@ -1,8 +1,10 @@ -Netscape 3.01(Korean) +Netscape 3.04(Korean) --------------------- This is the netscape web-surfboard. Please read the file "/usr/local/lib/netscape/LICENSE" for the licensing terms. +And, read the file "/usr/local/lib/netscape/ko_KR.EUC/README" +for Korean version information. Note: If Java applets fail to display. Type this as root: cd /usr/X11R6/lib/X11/fonts/misc @@ -10,9 +12,9 @@ Note: If Java applets fail to display. Type this as root: chmod 444 fonts.dir And then exit and restart your X server. -This version of Netscape is some hack of Netscape 3.01 and international -supplementary file of Korean, OSF/1 2.0 version. Please check there is -no FreeBSD version of intl. It need Hanyang X11 fonts(KSC5601-1987.0) +This version of Netscape is some hack of Netscape 3.04 and international +supplementary file of Korean, OSF/1 version(3.01). +It need Hanyang X11 fonts(KSC5601-1987.0) -- Port By CHOI Junho <junker@jazz.snu.ac.kr> diff --git a/korean/netscape3/pkg-plist b/korean/netscape3/pkg-plist index 8ab3b8700c4e..8feff74848ae 100644 --- a/korean/netscape3/pkg-plist +++ b/korean/netscape3/pkg-plist @@ -1,12 +1,9 @@ @cwd /usr/local +@exec echo "Updating %D/bin/netscape"; mv %D/bin/netscape %D/bin/netscape.orig bin/netscape -lib/netscape/LICENSE -lib/netscape/README -lib/netscape/netscape.bin -lib/netscape/mailcap -lib/netscape/movemail -lib/netscape/java_301 -lib/netscape/Netscape.ad +@unexec echo "Recovering %D/bin/netscape"; mv %D/bin/netscape.orig %D/bin/netscape +lib/netscape/ko_KR.EUC/Netscape +lib/netscape/ko_KR.EUC/README lib/netscape/ko_KR.EUC/about lib/netscape/ko_KR.EUC/splash lib/netscape/ko_KR.EUC/license @@ -62,10 +59,21 @@ lib/netscape/ko_KR.EUC/TReload.pt.xpm lib/netscape/ko_KR.EUC/TStop.pt.i.xpm lib/netscape/ko_KR.EUC/TStop.pt.xpm @dirrm lib/netscape/ko_KR.EUC -@dirrm lib/netscape -@cwd /usr/X11R6 -lib/X11/nls/C -lib/X11/nls/ko_KR.euc -lib/X11/nls/nls.dir -lib/X11/nls/nls.alias -lib/X11/ko_KR.EUC/app-defaults/Netscape +lib/netscape/nls/C +lib/netscape/nls/ja_JP.jis7 +lib/netscape/nls/ja_JP.jis8 +lib/netscape/nls/ja_JP.mscode +lib/netscape/nls/ja_JP.ujis +lib/netscape/nls/ja_JP.pjis +lib/netscape/nls/ko_KR.euc +lib/netscape/nls/local_im_tbl/lt_LN.bit7 +lib/netscape/nls/local_im_tbl/lt_LN.bit8 +@dirrm lib/netscape/nls/local_im_tbl +lib/netscape/nls/lt_LN.bit7 +lib/netscape/nls/lt_LN.bit8 +lib/netscape/nls/nls.alias +lib/netscape/nls/nls.dir +lib/netscape/nls/wr_WR.ct +lib/netscape/nls/zh_CN.ugb +lib/netscape/nls/zh_TW.big5 +@dirrm lib/netscape/nls diff --git a/korean/netscape4-communicator/Makefile b/korean/netscape4-communicator/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape4-communicator/Makefile +++ b/korean/netscape4-communicator/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR diff --git a/korean/netscape4-communicator/distinfo b/korean/netscape4-communicator/distinfo index 2e9161d15aba..4210dc4653cd 100644 --- a/korean/netscape4-communicator/distinfo +++ b/korean/netscape4-communicator/distinfo @@ -1,2 +1,2 @@ -MD5 (netscape-v301-export.x86-unknown-bsd.tar.gz) = 6e2f49b564cdf9212d72239f889f8f58 MD5 (netscape-ko-v301.alpha-dec-osf2.0.tar.gz) = 8f4884ddbadc5e369fd7eb8a653be2c8 +MD5 (NLS.tar.gz) = f79a6c0b6f9018f522b55cbb21be866f diff --git a/korean/netscape4-communicator/files/patch-aa b/korean/netscape4-communicator/files/patch-aa index 251f08e9c441..371f5853ab6d 100644 --- a/korean/netscape4-communicator/files/patch-aa +++ b/korean/netscape4-communicator/files/patch-aa @@ -1,152 +1,155 @@ -*** netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ---- netscape-ko/Netscape.ad-ko Sat Apr 12 12:27:39 1997 -*************** -*** 57,63 **** - - ! This is the directory where Netscape finds external files such as icons. - ! -! *appDir: /usr/lib/X11/ko_KR.eucKR/netscape - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: ---- 57,64 ---- - - ! This is the directory where Netscape finds external files such as icons. - ! -! !*appDir: /usr/lib/X11/ko_KR.eucKR/netscape -! *appDir: /usr/local/lib/netscape/ko_KR.EUC - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: -*************** -*** 141,147 **** - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! *useStderrDialog: True - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood ---- 142,149 ---- - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! !*useStderrDialog: True -! *useStderrDialog: False - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood -*************** -*** 4357,4366 **** ---- 4359,4373 ---- - ! the document display area. - ! ============================================================================ - ! -+ *fontList:\ -+ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - ! SGI default: - !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4369,4378 **** ---- 4376,4392 ---- - !*menuBar*historyTruncated.fontList:\ - ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* - !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -+ *menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *menuBar*historyTruncated.fontList:\ -+ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4380,4391 **** ---- 4394,4413 ---- - ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* -+ *mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - - ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, -*************** -*** 4395,4400 **** ---- 4417,4430 ---- - !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ - !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ - !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC -+ *XmLGrid*fontList:\ -+ -*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ -+ -*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ -+ -*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC -+ - - - -*************** -*** 4709,4714 **** ---- 4739,4745 ---- - ! Navigator mouse documentation. - ! - !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - Netscape*tipLabel.background: #FFFFCC - Netscape*tipLabel.foreground: Black - Netscape*tipShell.borderColor: Black -*************** -*** 5167,5176 **** - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! *fontList:\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*: - *preeditType: root - - *versionLocale: ko ---- 5198,5210 ---- - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! !*fontList:\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*: -! !*fontList:\ -! ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -! !-*-*-medium-r-normal--*-120-*-*-*-*: - *preeditType: root - - *versionLocale: ko +--- netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ++++ netscape-ko/Netscape.ad-ko Mon Nov 16 20:28:03 1998 +@@ -7,6 +7,7 @@ + ! Bugs and commentary to x_cbug@netscape.com. + ! + ! Modified: dp Suresh <dp@netscape.com>, 01-Aug-95 ++! CHOI Junho <junker@jazz.snu.ac.kr>, 16-Nov-98 for FreeBSD + ! + ! ========================================================== + ! NOTE: If you're looking here for things to customize, look +@@ -57,7 +58,8 @@ + + ! This is the directory where Netscape finds external files such as icons. + ! +-*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++!*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++*appDir: /usr/local/lib/netscape/ko_KR.EUC + + ! This resource is the same as the -visual command line option, which selects + ! an X visual on which the windows should be created. Legal options are: +@@ -141,8 +143,10 @@ + ! If you find a need to let one or both of them continue on to the actual + ! terminal of Netscape, you can do it by setting these resources to False. + ! +-*useStderrDialog: True +-*useStdoutDialog: True ++!*useStderrDialog: True ++*useStderrDialog: False ++!*useStdoutDialog: True ++*useStdoutDialog: False + + ! For those MIME content-encodings which are not directly understood + ! internally, it is possible to specify another Unix program to use as +@@ -2632,7 +2636,7 @@ + ! changed at runtime; these resources won't override that. + *title: Netscape + *iconName: Netscape +-*Navigator.title: Netscape Navigator 3.01 ++*Navigator.title: Netscape Navigator 3.04 + *Mail.title: Netscape ¸ÞÀÏ + *Mail.iconName: ¸ÞÀÏ + +@@ -4347,7 +4351,7 @@ + + + ! Do not under any circumstances change the following line: +-Netscape.version: 3.01 ++Netscape.version: 3.04 + + + ! ============================================================================ +@@ -4357,10 +4361,15 @@ + ! the document display area. + ! ============================================================================ + ! ++*fontList:\ ++ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + ! SGI default: + !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* +@@ -4369,10 +4378,17 @@ + !*menuBar*historyTruncated.fontList:\ + ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* + !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* ++*menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*menuBar*historyTruncated.fontList:\ ++ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* +@@ -4380,12 +4396,20 @@ + ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* ++*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + + ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, +@@ -4395,6 +4419,14 @@ + !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ + !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ + !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC ++*XmLGrid*fontList:\ ++-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ ++-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ ++-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC ++ + + + +@@ -4709,6 +4741,7 @@ + ! Navigator mouse documentation. + ! + !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + Netscape*tipLabel.background: #FFFFCC + Netscape*tipLabel.foreground: Black + Netscape*tipShell.borderColor: Black +@@ -5167,10 +5200,13 @@ + *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå + *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã + *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã +-*fontList:\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++!-*-*-medium-r-normal--*-120-*-*-*-*: + *preeditType: root + + *versionLocale: ko +@@ -5227,6 +5263,7 @@ + *localeCharset*ja_JP: x-euc-jp + *localeCharset*ko_KR.deckorean: euc-kr + *localeCharset*ko_KR.eucKR: euc-kr ++*localeCharset*ko_KR.EUC: euc-kr + *localeCharset*ko_KR: euc-kr + *localeCharset*nl_BE.ISO8859-1: iso-8859-1 + *localeCharset*nl_NL.ISO8859-1: iso-8859-1 diff --git a/korean/netscape4-communicator/pkg-descr b/korean/netscape4-communicator/pkg-descr index b283628ce888..558804dd9d41 100644 --- a/korean/netscape4-communicator/pkg-descr +++ b/korean/netscape4-communicator/pkg-descr @@ -1,8 +1,10 @@ -Netscape 3.01(Korean) +Netscape 3.04(Korean) --------------------- This is the netscape web-surfboard. Please read the file "/usr/local/lib/netscape/LICENSE" for the licensing terms. +And, read the file "/usr/local/lib/netscape/ko_KR.EUC/README" +for Korean version information. Note: If Java applets fail to display. Type this as root: cd /usr/X11R6/lib/X11/fonts/misc @@ -10,9 +12,9 @@ Note: If Java applets fail to display. Type this as root: chmod 444 fonts.dir And then exit and restart your X server. -This version of Netscape is some hack of Netscape 3.01 and international -supplementary file of Korean, OSF/1 2.0 version. Please check there is -no FreeBSD version of intl. It need Hanyang X11 fonts(KSC5601-1987.0) +This version of Netscape is some hack of Netscape 3.04 and international +supplementary file of Korean, OSF/1 version(3.01). +It need Hanyang X11 fonts(KSC5601-1987.0) -- Port By CHOI Junho <junker@jazz.snu.ac.kr> diff --git a/korean/netscape4-communicator/pkg-plist b/korean/netscape4-communicator/pkg-plist index 8ab3b8700c4e..8feff74848ae 100644 --- a/korean/netscape4-communicator/pkg-plist +++ b/korean/netscape4-communicator/pkg-plist @@ -1,12 +1,9 @@ @cwd /usr/local +@exec echo "Updating %D/bin/netscape"; mv %D/bin/netscape %D/bin/netscape.orig bin/netscape -lib/netscape/LICENSE -lib/netscape/README -lib/netscape/netscape.bin -lib/netscape/mailcap -lib/netscape/movemail -lib/netscape/java_301 -lib/netscape/Netscape.ad +@unexec echo "Recovering %D/bin/netscape"; mv %D/bin/netscape.orig %D/bin/netscape +lib/netscape/ko_KR.EUC/Netscape +lib/netscape/ko_KR.EUC/README lib/netscape/ko_KR.EUC/about lib/netscape/ko_KR.EUC/splash lib/netscape/ko_KR.EUC/license @@ -62,10 +59,21 @@ lib/netscape/ko_KR.EUC/TReload.pt.xpm lib/netscape/ko_KR.EUC/TStop.pt.i.xpm lib/netscape/ko_KR.EUC/TStop.pt.xpm @dirrm lib/netscape/ko_KR.EUC -@dirrm lib/netscape -@cwd /usr/X11R6 -lib/X11/nls/C -lib/X11/nls/ko_KR.euc -lib/X11/nls/nls.dir -lib/X11/nls/nls.alias -lib/X11/ko_KR.EUC/app-defaults/Netscape +lib/netscape/nls/C +lib/netscape/nls/ja_JP.jis7 +lib/netscape/nls/ja_JP.jis8 +lib/netscape/nls/ja_JP.mscode +lib/netscape/nls/ja_JP.ujis +lib/netscape/nls/ja_JP.pjis +lib/netscape/nls/ko_KR.euc +lib/netscape/nls/local_im_tbl/lt_LN.bit7 +lib/netscape/nls/local_im_tbl/lt_LN.bit8 +@dirrm lib/netscape/nls/local_im_tbl +lib/netscape/nls/lt_LN.bit7 +lib/netscape/nls/lt_LN.bit8 +lib/netscape/nls/nls.alias +lib/netscape/nls/nls.dir +lib/netscape/nls/wr_WR.ct +lib/netscape/nls/zh_CN.ugb +lib/netscape/nls/zh_TW.big5 +@dirrm lib/netscape/nls diff --git a/korean/netscape4-navigator/Makefile b/korean/netscape4-navigator/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape4-navigator/Makefile +++ b/korean/netscape4-navigator/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR diff --git a/korean/netscape47-communicator/Makefile b/korean/netscape47-communicator/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape47-communicator/Makefile +++ b/korean/netscape47-communicator/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR diff --git a/korean/netscape47-communicator/distinfo b/korean/netscape47-communicator/distinfo index 2e9161d15aba..4210dc4653cd 100644 --- a/korean/netscape47-communicator/distinfo +++ b/korean/netscape47-communicator/distinfo @@ -1,2 +1,2 @@ -MD5 (netscape-v301-export.x86-unknown-bsd.tar.gz) = 6e2f49b564cdf9212d72239f889f8f58 MD5 (netscape-ko-v301.alpha-dec-osf2.0.tar.gz) = 8f4884ddbadc5e369fd7eb8a653be2c8 +MD5 (NLS.tar.gz) = f79a6c0b6f9018f522b55cbb21be866f diff --git a/korean/netscape47-communicator/files/patch-aa b/korean/netscape47-communicator/files/patch-aa index 251f08e9c441..371f5853ab6d 100644 --- a/korean/netscape47-communicator/files/patch-aa +++ b/korean/netscape47-communicator/files/patch-aa @@ -1,152 +1,155 @@ -*** netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ---- netscape-ko/Netscape.ad-ko Sat Apr 12 12:27:39 1997 -*************** -*** 57,63 **** - - ! This is the directory where Netscape finds external files such as icons. - ! -! *appDir: /usr/lib/X11/ko_KR.eucKR/netscape - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: ---- 57,64 ---- - - ! This is the directory where Netscape finds external files such as icons. - ! -! !*appDir: /usr/lib/X11/ko_KR.eucKR/netscape -! *appDir: /usr/local/lib/netscape/ko_KR.EUC - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: -*************** -*** 141,147 **** - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! *useStderrDialog: True - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood ---- 142,149 ---- - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! !*useStderrDialog: True -! *useStderrDialog: False - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood -*************** -*** 4357,4366 **** ---- 4359,4373 ---- - ! the document display area. - ! ============================================================================ - ! -+ *fontList:\ -+ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - ! SGI default: - !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4369,4378 **** ---- 4376,4392 ---- - !*menuBar*historyTruncated.fontList:\ - ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* - !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -+ *menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *menuBar*historyTruncated.fontList:\ -+ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4380,4391 **** ---- 4394,4413 ---- - ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* -+ *mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - - ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, -*************** -*** 4395,4400 **** ---- 4417,4430 ---- - !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ - !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ - !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC -+ *XmLGrid*fontList:\ -+ -*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ -+ -*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ -+ -*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC -+ - - - -*************** -*** 4709,4714 **** ---- 4739,4745 ---- - ! Navigator mouse documentation. - ! - !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - Netscape*tipLabel.background: #FFFFCC - Netscape*tipLabel.foreground: Black - Netscape*tipShell.borderColor: Black -*************** -*** 5167,5176 **** - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! *fontList:\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*: - *preeditType: root - - *versionLocale: ko ---- 5198,5210 ---- - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! !*fontList:\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*: -! !*fontList:\ -! ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -! !-*-*-medium-r-normal--*-120-*-*-*-*: - *preeditType: root - - *versionLocale: ko +--- netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ++++ netscape-ko/Netscape.ad-ko Mon Nov 16 20:28:03 1998 +@@ -7,6 +7,7 @@ + ! Bugs and commentary to x_cbug@netscape.com. + ! + ! Modified: dp Suresh <dp@netscape.com>, 01-Aug-95 ++! CHOI Junho <junker@jazz.snu.ac.kr>, 16-Nov-98 for FreeBSD + ! + ! ========================================================== + ! NOTE: If you're looking here for things to customize, look +@@ -57,7 +58,8 @@ + + ! This is the directory where Netscape finds external files such as icons. + ! +-*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++!*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++*appDir: /usr/local/lib/netscape/ko_KR.EUC + + ! This resource is the same as the -visual command line option, which selects + ! an X visual on which the windows should be created. Legal options are: +@@ -141,8 +143,10 @@ + ! If you find a need to let one or both of them continue on to the actual + ! terminal of Netscape, you can do it by setting these resources to False. + ! +-*useStderrDialog: True +-*useStdoutDialog: True ++!*useStderrDialog: True ++*useStderrDialog: False ++!*useStdoutDialog: True ++*useStdoutDialog: False + + ! For those MIME content-encodings which are not directly understood + ! internally, it is possible to specify another Unix program to use as +@@ -2632,7 +2636,7 @@ + ! changed at runtime; these resources won't override that. + *title: Netscape + *iconName: Netscape +-*Navigator.title: Netscape Navigator 3.01 ++*Navigator.title: Netscape Navigator 3.04 + *Mail.title: Netscape ¸ÞÀÏ + *Mail.iconName: ¸ÞÀÏ + +@@ -4347,7 +4351,7 @@ + + + ! Do not under any circumstances change the following line: +-Netscape.version: 3.01 ++Netscape.version: 3.04 + + + ! ============================================================================ +@@ -4357,10 +4361,15 @@ + ! the document display area. + ! ============================================================================ + ! ++*fontList:\ ++ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + ! SGI default: + !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* +@@ -4369,10 +4378,17 @@ + !*menuBar*historyTruncated.fontList:\ + ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* + !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* ++*menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*menuBar*historyTruncated.fontList:\ ++ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* +@@ -4380,12 +4396,20 @@ + ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* ++*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + + ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, +@@ -4395,6 +4419,14 @@ + !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ + !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ + !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC ++*XmLGrid*fontList:\ ++-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ ++-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ ++-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC ++ + + + +@@ -4709,6 +4741,7 @@ + ! Navigator mouse documentation. + ! + !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + Netscape*tipLabel.background: #FFFFCC + Netscape*tipLabel.foreground: Black + Netscape*tipShell.borderColor: Black +@@ -5167,10 +5200,13 @@ + *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå + *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã + *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã +-*fontList:\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++!-*-*-medium-r-normal--*-120-*-*-*-*: + *preeditType: root + + *versionLocale: ko +@@ -5227,6 +5263,7 @@ + *localeCharset*ja_JP: x-euc-jp + *localeCharset*ko_KR.deckorean: euc-kr + *localeCharset*ko_KR.eucKR: euc-kr ++*localeCharset*ko_KR.EUC: euc-kr + *localeCharset*ko_KR: euc-kr + *localeCharset*nl_BE.ISO8859-1: iso-8859-1 + *localeCharset*nl_NL.ISO8859-1: iso-8859-1 diff --git a/korean/netscape47-communicator/pkg-descr b/korean/netscape47-communicator/pkg-descr index b283628ce888..558804dd9d41 100644 --- a/korean/netscape47-communicator/pkg-descr +++ b/korean/netscape47-communicator/pkg-descr @@ -1,8 +1,10 @@ -Netscape 3.01(Korean) +Netscape 3.04(Korean) --------------------- This is the netscape web-surfboard. Please read the file "/usr/local/lib/netscape/LICENSE" for the licensing terms. +And, read the file "/usr/local/lib/netscape/ko_KR.EUC/README" +for Korean version information. Note: If Java applets fail to display. Type this as root: cd /usr/X11R6/lib/X11/fonts/misc @@ -10,9 +12,9 @@ Note: If Java applets fail to display. Type this as root: chmod 444 fonts.dir And then exit and restart your X server. -This version of Netscape is some hack of Netscape 3.01 and international -supplementary file of Korean, OSF/1 2.0 version. Please check there is -no FreeBSD version of intl. It need Hanyang X11 fonts(KSC5601-1987.0) +This version of Netscape is some hack of Netscape 3.04 and international +supplementary file of Korean, OSF/1 version(3.01). +It need Hanyang X11 fonts(KSC5601-1987.0) -- Port By CHOI Junho <junker@jazz.snu.ac.kr> diff --git a/korean/netscape47-communicator/pkg-plist b/korean/netscape47-communicator/pkg-plist index 8ab3b8700c4e..8feff74848ae 100644 --- a/korean/netscape47-communicator/pkg-plist +++ b/korean/netscape47-communicator/pkg-plist @@ -1,12 +1,9 @@ @cwd /usr/local +@exec echo "Updating %D/bin/netscape"; mv %D/bin/netscape %D/bin/netscape.orig bin/netscape -lib/netscape/LICENSE -lib/netscape/README -lib/netscape/netscape.bin -lib/netscape/mailcap -lib/netscape/movemail -lib/netscape/java_301 -lib/netscape/Netscape.ad +@unexec echo "Recovering %D/bin/netscape"; mv %D/bin/netscape.orig %D/bin/netscape +lib/netscape/ko_KR.EUC/Netscape +lib/netscape/ko_KR.EUC/README lib/netscape/ko_KR.EUC/about lib/netscape/ko_KR.EUC/splash lib/netscape/ko_KR.EUC/license @@ -62,10 +59,21 @@ lib/netscape/ko_KR.EUC/TReload.pt.xpm lib/netscape/ko_KR.EUC/TStop.pt.i.xpm lib/netscape/ko_KR.EUC/TStop.pt.xpm @dirrm lib/netscape/ko_KR.EUC -@dirrm lib/netscape -@cwd /usr/X11R6 -lib/X11/nls/C -lib/X11/nls/ko_KR.euc -lib/X11/nls/nls.dir -lib/X11/nls/nls.alias -lib/X11/ko_KR.EUC/app-defaults/Netscape +lib/netscape/nls/C +lib/netscape/nls/ja_JP.jis7 +lib/netscape/nls/ja_JP.jis8 +lib/netscape/nls/ja_JP.mscode +lib/netscape/nls/ja_JP.ujis +lib/netscape/nls/ja_JP.pjis +lib/netscape/nls/ko_KR.euc +lib/netscape/nls/local_im_tbl/lt_LN.bit7 +lib/netscape/nls/local_im_tbl/lt_LN.bit8 +@dirrm lib/netscape/nls/local_im_tbl +lib/netscape/nls/lt_LN.bit7 +lib/netscape/nls/lt_LN.bit8 +lib/netscape/nls/nls.alias +lib/netscape/nls/nls.dir +lib/netscape/nls/wr_WR.ct +lib/netscape/nls/zh_CN.ugb +lib/netscape/nls/zh_TW.big5 +@dirrm lib/netscape/nls diff --git a/korean/netscape47-navigator/Makefile b/korean/netscape47-navigator/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape47-navigator/Makefile +++ b/korean/netscape47-navigator/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR diff --git a/korean/netscape48-communicator/Makefile b/korean/netscape48-communicator/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape48-communicator/Makefile +++ b/korean/netscape48-communicator/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR diff --git a/korean/netscape48-communicator/distinfo b/korean/netscape48-communicator/distinfo index 2e9161d15aba..4210dc4653cd 100644 --- a/korean/netscape48-communicator/distinfo +++ b/korean/netscape48-communicator/distinfo @@ -1,2 +1,2 @@ -MD5 (netscape-v301-export.x86-unknown-bsd.tar.gz) = 6e2f49b564cdf9212d72239f889f8f58 MD5 (netscape-ko-v301.alpha-dec-osf2.0.tar.gz) = 8f4884ddbadc5e369fd7eb8a653be2c8 +MD5 (NLS.tar.gz) = f79a6c0b6f9018f522b55cbb21be866f diff --git a/korean/netscape48-communicator/files/patch-aa b/korean/netscape48-communicator/files/patch-aa index 251f08e9c441..371f5853ab6d 100644 --- a/korean/netscape48-communicator/files/patch-aa +++ b/korean/netscape48-communicator/files/patch-aa @@ -1,152 +1,155 @@ -*** netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ---- netscape-ko/Netscape.ad-ko Sat Apr 12 12:27:39 1997 -*************** -*** 57,63 **** - - ! This is the directory where Netscape finds external files such as icons. - ! -! *appDir: /usr/lib/X11/ko_KR.eucKR/netscape - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: ---- 57,64 ---- - - ! This is the directory where Netscape finds external files such as icons. - ! -! !*appDir: /usr/lib/X11/ko_KR.eucKR/netscape -! *appDir: /usr/local/lib/netscape/ko_KR.EUC - - ! This resource is the same as the -visual command line option, which selects - ! an X visual on which the windows should be created. Legal options are: -*************** -*** 141,147 **** - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! *useStderrDialog: True - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood ---- 142,149 ---- - ! If you find a need to let one or both of them continue on to the actual - ! terminal of Netscape, you can do it by setting these resources to False. - ! -! !*useStderrDialog: True -! *useStderrDialog: False - *useStdoutDialog: True - - ! For those MIME content-encodings which are not directly understood -*************** -*** 4357,4366 **** ---- 4359,4373 ---- - ! the document display area. - ! ============================================================================ - ! -+ *fontList:\ -+ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - ! SGI default: - !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4369,4378 **** ---- 4376,4392 ---- - !*menuBar*historyTruncated.fontList:\ - ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* - !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -+ *menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *menuBar*historyTruncated.fontList:\ -+ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* -*************** -*** 4380,4391 **** ---- 4394,4413 ---- - ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* - !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* -+ *mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -+ *mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - - - ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, -*************** -*** 4395,4400 **** ---- 4417,4430 ---- - !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ - !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ - !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC -+ *XmLGrid*fontList:\ -+ -*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ -+ -*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ -+ -*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ -+ -hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC -+ - - - -*************** -*** 4709,4714 **** ---- 4739,4745 ---- - ! Navigator mouse documentation. - ! - !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* -+ *tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: - Netscape*tipLabel.background: #FFFFCC - Netscape*tipLabel.foreground: Black - Netscape*tipShell.borderColor: Black -*************** -*** 5167,5176 **** - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! *fontList:\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! -adecw-screen-medium-r-normal--*-180-*-*-m-*: - *preeditType: root - - *versionLocale: ko ---- 5198,5210 ---- - *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå - *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã - *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã -! !*fontList:\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ -! !-adecw-screen-medium-r-normal--*-180-*-*-m-*: -! !*fontList:\ -! ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: -! !-*-*-medium-r-normal--*-120-*-*-*-*: - *preeditType: root - - *versionLocale: ko +--- netscape-ko/Netscape.ad-ko.orig Thu Jan 30 13:56:58 1997 ++++ netscape-ko/Netscape.ad-ko Mon Nov 16 20:28:03 1998 +@@ -7,6 +7,7 @@ + ! Bugs and commentary to x_cbug@netscape.com. + ! + ! Modified: dp Suresh <dp@netscape.com>, 01-Aug-95 ++! CHOI Junho <junker@jazz.snu.ac.kr>, 16-Nov-98 for FreeBSD + ! + ! ========================================================== + ! NOTE: If you're looking here for things to customize, look +@@ -57,7 +58,8 @@ + + ! This is the directory where Netscape finds external files such as icons. + ! +-*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++!*appDir: /usr/lib/X11/ko_KR.eucKR/netscape ++*appDir: /usr/local/lib/netscape/ko_KR.EUC + + ! This resource is the same as the -visual command line option, which selects + ! an X visual on which the windows should be created. Legal options are: +@@ -141,8 +143,10 @@ + ! If you find a need to let one or both of them continue on to the actual + ! terminal of Netscape, you can do it by setting these resources to False. + ! +-*useStderrDialog: True +-*useStdoutDialog: True ++!*useStderrDialog: True ++*useStderrDialog: False ++!*useStdoutDialog: True ++*useStdoutDialog: False + + ! For those MIME content-encodings which are not directly understood + ! internally, it is possible to specify another Unix program to use as +@@ -2632,7 +2636,7 @@ + ! changed at runtime; these resources won't override that. + *title: Netscape + *iconName: Netscape +-*Navigator.title: Netscape Navigator 3.01 ++*Navigator.title: Netscape Navigator 3.04 + *Mail.title: Netscape ¸ÞÀÏ + *Mail.iconName: ¸ÞÀÏ + +@@ -4347,7 +4351,7 @@ + + + ! Do not under any circumstances change the following line: +-Netscape.version: 3.01 ++Netscape.version: 3.04 + + + ! ============================================================================ +@@ -4357,10 +4361,15 @@ + ! the document display area. + ! ============================================================================ + ! ++*fontList:\ ++ -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + !*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*XmList*fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + ! SGI default: + !*menuBar*fontList: -*-helvetica-bold-o-*-*-*-120-*-*-*-*-iso8859-* +@@ -4369,10 +4378,17 @@ + !*menuBar*historyTruncated.fontList:\ + ! -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-* + !*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* ++*menuBar*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*menuBar*historyTruncated.fontList:\ ++ -*-helvetica-medium-o-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*popup*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*topArea*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmTextField.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*topArea*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*fontList: -*-helvetica-bold-r-*-*-*-120-*-*-*-*-iso8859-* +@@ -4380,12 +4396,20 @@ + ! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*bookmark*fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*selectedLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmTextField.fontList:-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*bookmark*XmText.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* + !*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-* ++*mouseDocumentation.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*docinfoButton.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++*mailto*urlLabel.fontList: -*-helvetica-medium-r-*-*-*-140-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + !*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*licenseDialog*text.fontList: -*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + + + ! These are the fonts used in the outline lists used in Mail, News, Bookmarks, +@@ -4395,6 +4419,14 @@ + !-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*,\ + !-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*=BOLD,\ + !-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*=ITALIC ++*XmLGrid*fontList:\ ++-*-helvetica-medium-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:,\ ++-*-helvetica-bold-r-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=BOLD,\ ++-*-helvetica-medium-o-*-*-*-100-*-*-*-*-iso8859-*;\ ++-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0:=ITALIC ++ + + + +@@ -4709,6 +4741,7 @@ + ! Navigator mouse documentation. + ! + !*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-* ++*tipLabel.fontList: -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: + Netscape*tipLabel.background: #FFFFCC + Netscape*tipLabel.foreground: Black + Netscape*tipShell.borderColor: Black +@@ -5167,10 +5200,13 @@ + *postAndMailReply.tipString: ´º½º ¹× ¸ÞÀÏ ´äÀå + *markThreadRead.tipString: ÀÐÀº ¾²·¹µå·Î Ç¥½Ã + *markAllRead.tipString: ¸ðµÎ ÀÐÀº °ÍÀ¸·Î Ç¥½Ã +-*fontList:\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ +--adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-iso8859-1=ISO8859-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*-ksc5601.1987-1=KSC5601.1987-1,\ ++!-adecw-screen-medium-r-normal--*-180-*-*-m-*: ++!*fontList:\ ++! -*-helvetica-medium-r-*-*-*-120-*-*-*-*-iso8859-*;-hanyang-kodig-medium-r-normal--12-120-72-72-c-120-ksc5601.1987-0: ++!-*-*-medium-r-normal--*-120-*-*-*-*: + *preeditType: root + + *versionLocale: ko +@@ -5227,6 +5263,7 @@ + *localeCharset*ja_JP: x-euc-jp + *localeCharset*ko_KR.deckorean: euc-kr + *localeCharset*ko_KR.eucKR: euc-kr ++*localeCharset*ko_KR.EUC: euc-kr + *localeCharset*ko_KR: euc-kr + *localeCharset*nl_BE.ISO8859-1: iso-8859-1 + *localeCharset*nl_NL.ISO8859-1: iso-8859-1 diff --git a/korean/netscape48-communicator/pkg-descr b/korean/netscape48-communicator/pkg-descr index b283628ce888..558804dd9d41 100644 --- a/korean/netscape48-communicator/pkg-descr +++ b/korean/netscape48-communicator/pkg-descr @@ -1,8 +1,10 @@ -Netscape 3.01(Korean) +Netscape 3.04(Korean) --------------------- This is the netscape web-surfboard. Please read the file "/usr/local/lib/netscape/LICENSE" for the licensing terms. +And, read the file "/usr/local/lib/netscape/ko_KR.EUC/README" +for Korean version information. Note: If Java applets fail to display. Type this as root: cd /usr/X11R6/lib/X11/fonts/misc @@ -10,9 +12,9 @@ Note: If Java applets fail to display. Type this as root: chmod 444 fonts.dir And then exit and restart your X server. -This version of Netscape is some hack of Netscape 3.01 and international -supplementary file of Korean, OSF/1 2.0 version. Please check there is -no FreeBSD version of intl. It need Hanyang X11 fonts(KSC5601-1987.0) +This version of Netscape is some hack of Netscape 3.04 and international +supplementary file of Korean, OSF/1 version(3.01). +It need Hanyang X11 fonts(KSC5601-1987.0) -- Port By CHOI Junho <junker@jazz.snu.ac.kr> diff --git a/korean/netscape48-communicator/pkg-plist b/korean/netscape48-communicator/pkg-plist index 8ab3b8700c4e..8feff74848ae 100644 --- a/korean/netscape48-communicator/pkg-plist +++ b/korean/netscape48-communicator/pkg-plist @@ -1,12 +1,9 @@ @cwd /usr/local +@exec echo "Updating %D/bin/netscape"; mv %D/bin/netscape %D/bin/netscape.orig bin/netscape -lib/netscape/LICENSE -lib/netscape/README -lib/netscape/netscape.bin -lib/netscape/mailcap -lib/netscape/movemail -lib/netscape/java_301 -lib/netscape/Netscape.ad +@unexec echo "Recovering %D/bin/netscape"; mv %D/bin/netscape.orig %D/bin/netscape +lib/netscape/ko_KR.EUC/Netscape +lib/netscape/ko_KR.EUC/README lib/netscape/ko_KR.EUC/about lib/netscape/ko_KR.EUC/splash lib/netscape/ko_KR.EUC/license @@ -62,10 +59,21 @@ lib/netscape/ko_KR.EUC/TReload.pt.xpm lib/netscape/ko_KR.EUC/TStop.pt.i.xpm lib/netscape/ko_KR.EUC/TStop.pt.xpm @dirrm lib/netscape/ko_KR.EUC -@dirrm lib/netscape -@cwd /usr/X11R6 -lib/X11/nls/C -lib/X11/nls/ko_KR.euc -lib/X11/nls/nls.dir -lib/X11/nls/nls.alias -lib/X11/ko_KR.EUC/app-defaults/Netscape +lib/netscape/nls/C +lib/netscape/nls/ja_JP.jis7 +lib/netscape/nls/ja_JP.jis8 +lib/netscape/nls/ja_JP.mscode +lib/netscape/nls/ja_JP.ujis +lib/netscape/nls/ja_JP.pjis +lib/netscape/nls/ko_KR.euc +lib/netscape/nls/local_im_tbl/lt_LN.bit7 +lib/netscape/nls/local_im_tbl/lt_LN.bit8 +@dirrm lib/netscape/nls/local_im_tbl +lib/netscape/nls/lt_LN.bit7 +lib/netscape/nls/lt_LN.bit8 +lib/netscape/nls/nls.alias +lib/netscape/nls/nls.dir +lib/netscape/nls/wr_WR.ct +lib/netscape/nls/zh_CN.ugb +lib/netscape/nls/zh_TW.big5 +@dirrm lib/netscape/nls diff --git a/korean/netscape48-navigator/Makefile b/korean/netscape48-navigator/Makefile index 9384ebdb9eaf..21a9358fecd5 100644 --- a/korean/netscape48-navigator/Makefile +++ b/korean/netscape48-navigator/Makefile @@ -1,24 +1,61 @@ -# New ports collection makefile for: netscape-intl-ko -# Version required: 3.01intl/ko +# New ports collection makefile for: netscape3-intl-ko +# Version required: 3.04/ko # Date created: 6 Apr 1995 -# Whom: Choi Jun Ho <junker@jazz.snu.ac.kr> +# Whom: CHOI Junho <junker@jazz.snu.ac.kr> # # $Id: Makefile,v 1.4 1997/10/12 15:36:45 max Exp $ # -DISTNAME= netscape-3.01 -PKGNAME= ko-netscape-3.01intl +DISTNAME= netscape-3.04 +PKGNAME= ko-netscape-3.04 CATEGORIES= korean www -MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/3.01/unix/ \ - ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ -DISTFILES= netscape-v301-export.x86-unknown-bsd.tar.gz netscape-ko-v301.alpha-dec-osf2.0.tar.gz +MASTER_SITES= ftp://archive:oldies@archive.netscape.com/archive/navigator/intl/3.01/unix/ko/ \ + http://www.bpel.tutics.tut.ac.jp/~take/Netscape/etc/ +DISTFILES= netscape-ko-v301.alpha-dec-osf2.0.tar.gz NLS.tar.gz MAINTAINER= junker@jazz.snu.ac.kr -RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:$(PORTSDIR)/korean/hanyangfonts +RUN_DEPENDS+= ${PREFIX}/bin/netscape:${PORTSDIR}/www/netscape3 \ + ${X11BASE}/lib/X11/fonts/misc/hgm12.pcf.gz:${PORTSDIR}/korean/hanyangfonts -RESTRICTED= "Commercial software" +RESTRICTED= "Commercial Software" NO_WRKSUBDIR= yes +NO_BUILD= yes + +# This directory is hard-coded into the netscape binary +LIBDIR= /usr/local/lib/netscape +BINDIR= ${PREFIX}/bin +NLSDIR= ${LIBDIR}/nls +RESSUB= ko_KR.EUC +RESDIR= ${LIBDIR}/${RESSUB} + +NLSSRC= ${WRKDIR}/netscape-ko +MISCFILES= README about splash license mail.msg + +STARTFILE= netscape.sh +STARTFILE_SRC= ${FILESDIR}/netscape.sh + +do-configure: + @${SED} -e "s;@X11BASE@;${X11BASE};g" -e "s;@PREFIX@;${PREFIX};g" \ + ${STARTFILE_SRC} >${WRKDIR}/${STARTFILE} + +do-install: + -@${MV} ${BINDIR}/netscape ${BINDIR}/netscape.orig + @${INSTALL_SCRIPT} ${WRKDIR}/${STARTFILE} ${BINDIR}/netscape + @${MKDIR} ${NLSDIR}/local_im_tbl + @${INSTALL_DATA} ${WRKDIR}/nls/*.* ${LIBDIR}/nls + @${INSTALL_DATA} ${WRKDIR}/nls/C ${LIBDIR}/nls + @${RM} -f ${LIBDIR}/nls/*.orig + @${INSTALL_DATA} ${WRKDIR}/nls/local_im_tbl/* ${LIBDIR}/nls/local_im_tbl + @${MKDIR} ${RESDIR} + @${INSTALL_DATA} ${NLSSRC}/Netscape.ad-ko ${RESDIR}/Netscape + @for i in ${MISCFILES}; do \ + ${INSTALL_DATA} ${NLSSRC}/$$i ${RESDIR}; \ + done + ${INSTALL_DATA} ${NLSSRC}/icons/*.xpm ${RESDIR} + +# This port is based on 'japanese/netscape3.language(ja-netscape-3.04)' +# by sada@e-mail.ne.jp post-install: @${CAT} ${PKGDIR}/DESCR |