An sj3 frontend.

Submitted by:	Hidekazu Kuroki <hidekazu@cs.titech.ac.jp>
This commit is contained in:
Satoshi Asami 1996-08-19 11:40:50 +00:00
parent 5aa0a228c4
commit cf19655c70
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3652
6 changed files with 305 additions and 0 deletions

20
japanese/sjxa/Makefile Normal file
View file

@ -0,0 +1,20 @@
# New ports collection makefile for: SJXA
# Version required: 1.5.11
# Date created: 10 Aug 1996
# Whom: Hidekazu Kuroki <hidekazu@cs.titech.ac.jp>
#
# $Id$
#
DISTNAME= sjxa-1.5.11
CATEGORIES+= japanese x11
MASTER_SITES= ftp://ftp.sony.co.jp/pub/unsupported/src/ \
ftp://ftp.cs.titech.ac.jp/pub/japanese/sj3/
MAINTAINER= hidekazu@cs.titech.ac.jp
RUN_DEPENDS= sj3serv:${PORTSDIR}/japanese/sj3
USE_IMAKE= yes
.include <bsd.port.mk>

1
japanese/sjxa/distinfo Normal file
View file

@ -0,0 +1 @@
MD5 (sjxa-1.5.11.tar.gz) = 45e52e08c6d2e4ce1db1315c6d5a6216

View file

@ -0,0 +1,266 @@
diff -arcN ../sjxa-1.5.11.org/CONFIG ./CONFIG
*** ../sjxa-1.5.11.org/CONFIG Wed Jun 21 14:20:18 1995
--- ./CONFIG Mon Aug 12 17:23:42 1996
***************
*** 94,105 ****
#elif defined(FreeBSDArchitecture) /**/
#define HasSjisLocale NO
#define HasJlsFunction NO
#define UseXIMCP YES
#define UseXIMP YES
#define UseXLC YES
! #define ManDir /usr/share/man/man1
#elif defined(SGIArchitecture) /**/
--- 94,117 ----
#elif defined(FreeBSDArchitecture) /**/
+ /*
+ * Change some default value and add some variables.
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
+ /* #define UseInstalledSj3Lib YES */
+ /* #define Sj3LibDir /usr/local/lib */
#define HasSjisLocale NO
#define HasJlsFunction NO
#define UseXIMCP YES
#define UseXIMP YES
#define UseXLC YES
! #define UseSJX NO
! #define JapaneseManLocale eucJP
! #define JapaneseManDir /usr/X11R6/man/ja_JP.EUC/man1
! #define ManDir /usr/X11R6/man/man1
! #define SjxaBinDir /usr/X11R6/bin
! #define SjxaAppDir /usr/X11R6/lib/X11
! #define SjxarkDir /usr/X11R6/lib/X11/sjxa
#elif defined(SGIArchitecture) /**/
diff -arcN ../sjxa-1.5.11.org/Imakefile ./Imakefile
*** ../sjxa-1.5.11.org/Imakefile Tue Apr 11 21:11:07 1995
--- ./Imakefile Mon Aug 12 18:28:43 1996
***************
*** 27,32 ****
--- 27,37 ----
Sony Corporation.
*/
+ /*
+ * Change some make rules.
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
+
#ifdef ManDir
#undef ManDir
#endif
***************
*** 70,76 ****
SJ3LIBOBJ = Sj3lib.o
#endif
#ifdef Sj3LibDir
! SJ3LIB_DIR = Concat(-L,Sj3LibDir)
#endif
#if UseXIMCP
USE_XIMCP = -DUSE_XIMCP
--- 75,83 ----
SJ3LIBOBJ = Sj3lib.o
#endif
#ifdef Sj3LibDir
! /* SJ3LIB_DIR = Concat(-L,Sj3LibDir) */
! SJ3LIB_DIR = Sj3LibDir
! SJ3LIB_LDFLAG = -L$(SJ3LIB_DIR)
#endif
#if UseXIMCP
USE_XIMCP = -DUSE_XIMCP
***************
*** 108,119 ****
DEFINES = $(PROTOCOL_DEFINES) $(HEADER_DEFINES)
INCLUDES = -I. -I$(LIBSRC) -I$(TOOLKITSRC) -I$(AWIDGETSRC)
! LOCAL_LDFLAGS = $(SJ3LIB_DIR) -LXmw
DEPLIBS = Xmw/libXmw.a XawClientDepLibs
#if UseInstalledSj3Lib || defined(Sj3LibDir)
LOCAL_LIBRARIES = -lsj3lib -lXmw XawClientLibs
#else
LOCAL_LIBRARIES = -lXmw XawClientLibs
#endif
MANSUFFIX = 1
--- 115,140 ----
DEFINES = $(PROTOCOL_DEFINES) $(HEADER_DEFINES)
INCLUDES = -I. -I$(LIBSRC) -I$(TOOLKITSRC) -I$(AWIDGETSRC)
! LOCAL_LDFLAGS = $(SJ3LIB_LDFLAG) -LXmw
DEPLIBS = Xmw/libXmw.a XawClientDepLibs
#if UseInstalledSj3Lib || defined(Sj3LibDir)
+ /*
+ * Change for FreeBSD.
+ * Because When the LANG variable is EUC, setlocale function in library libc
+ * return NULL, use it in library libxpg4
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
+ #if defined(FreeBSDArchitecture)
+ LOCAL_LIBRARIES = -lxpg4 -lsj3lib -lXmw XawClientLibs
+ #else
LOCAL_LIBRARIES = -lsj3lib -lXmw XawClientLibs
+ #endif
+ #else
+ #if defined(FreeBSDArchitecture)
+ LOCAL_LIBRARIES = -lxpg4 -lXmw XawClientLibs
#else
LOCAL_LIBRARIES = -lXmw XawClientLibs
+ #endif
#endif
MANSUFFIX = 1
diff -arcN ../sjxa-1.5.11.org/SjString.h ./SjString.h
*** ../sjxa-1.5.11.org/SjString.h Tue Apr 11 21:11:12 1995
--- ./SjString.h Mon Aug 12 17:21:43 1996
***************
*** 45,50 ****
--- 45,56 ----
#define iseuc(c) ((unsigned char)(c) >= 0xa1 && \
(unsigned char)(c) <= 0xfe)
+ /*
+ * Add isjjis() function.
+ * Because is used in this sources, but it is undefined!!
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
+ #define isjjis(c) ((0x21 <= (c)) && ((c) <= 0x7e))
#define issjis1(c) (((unsigned char)(c) >= 0x81 && \
(unsigned char)(c) <= 0x9f) || \
((unsigned char)(c) >= 0xe0 && \
diff -arcN ../sjxa-1.5.11.org/man/Imakefile ./man/Imakefile
*** ../sjxa-1.5.11.org/man/Imakefile Mon May 30 22:07:32 1994
--- ./man/Imakefile Mon Aug 12 17:58:35 1996
***************
*** 27,32 ****
--- 27,37 ----
Sony Corporation.
*/
+ /*
+ * Change some make rules.
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
+
#ifdef ManDir
#undef ManDir
#endif
***************
*** 40,49 ****
#define JapaneseManLocale eucJP
#endif
#ifndef JapaneseManDir
! #define JapaneseManDir /usr/local/man/man1
#endif
#ifndef ManDir
! #define ManDir /usr/local/man/man1
#endif
JMANLOCALE = JapaneseManLocale
--- 45,54 ----
#define JapaneseManLocale eucJP
#endif
#ifndef JapaneseManDir
! #define JapaneseManDir /usr/X11R6/man/ja_JP.EUC/man1
#endif
#ifndef ManDir
! #define ManDir /usr/X11R6/man/man1
#endif
JMANLOCALE = JapaneseManLocale
diff -arcN ../sjxa-1.5.11.org/resource/Imakefile ./resource/Imakefile
*** ../sjxa-1.5.11.org/resource/Imakefile Wed Mar 29 15:33:35 1995
--- ./resource/Imakefile Mon Aug 12 17:58:49 1996
***************
*** 27,32 ****
--- 27,37 ----
Sony Corporation.
*/
+ /*
+ * Change some make rules.
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
+
#ifdef ManDir
#undef ManDir
#endif
***************
*** 39,45 ****
#ifdef SjxaAppDir
#define SJXAAPPDIR SjxaAppDir
#else
! #define SJXAAPPDIR $(LIBDIR)
#endif
#ifdef SjxarkDir
--- 44,50 ----
#ifdef SjxaAppDir
#define SJXAAPPDIR SjxaAppDir
#else
! #define SJXAAPPDIR $(LIBDIR)/X11
#endif
#ifdef SjxarkDir
diff -arcN ../sjxa-1.5.11.org/resource/eucJP.ad ./resource/eucJP.ad
*** ../sjxa-1.5.11.org/resource/eucJP.ad Mon May 30 22:07:55 1994
--- ./resource/eucJP.ad Mon Aug 12 17:17:35 1996
***************
*** 44,50 ****
!*kanaMode: True
*wrapToSelect: 3
*initialMode: ZenkakuHiragana
! *defaultCode: sjis
Sjxa.XmwPreedit.borderWidth: 0
--- 44,54 ----
!*kanaMode: True
*wrapToSelect: 3
*initialMode: ZenkakuHiragana
! !
! ! Change default code sjjis -> euc.
! ! Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
! !
! *defaultCode: euc
Sjxa.XmwPreedit.borderWidth: 0
diff -arcN ../sjxa-1.5.11.org/sjxa.c ./sjxa.c
*** ../sjxa-1.5.11.org/sjxa.c Mon Jun 19 19:55:19 1995
--- ./sjxa.c Mon Aug 12 17:26:55 1996
***************
*** 145,153 ****
program_name = ss + 1;
/* get user locale */
if( (locale_name = setlocale( LC_CTYPE, "" )) == NULL ) {
! fprintf( stderr, "%s error: locale could not be set.\n", program_name );
! exit( 1 );
}
if( strcmp( locale_name, "ja_JP.SJIS" ) == 0 )
user_locale = LC_CTYPE_SHIFTJIS;
--- 145,160 ----
program_name = ss + 1;
/* get user locale */
+ /*
+ * If the setlocale functione return NULL,
+ * try to get user locale by LANG variables again.
+ * Patched by Hidekazu Kuroki(hidekazu@cs.titech.ac.jp) 1996/8/10
+ */
if( (locale_name = setlocale( LC_CTYPE, "" )) == NULL ) {
! if( (locale_name = getenv("LANG")) == NULL ) {
! fprintf( stderr, "%s error: locale could not be set.\n", program_name );
! exit( 1 );
! }
}
if( strcmp( locale_name, "ja_JP.SJIS" ) == 0 )
user_locale = LC_CTYPE_SHIFTJIS;

View file

@ -0,0 +1 @@
A X11 frontend of Japanese input method SJ3.

12
japanese/sjxa/pkg-descr Normal file
View file

@ -0,0 +1,12 @@
This is SJ3 1.5.11, a X11 frontend for a Japanese input method SJ3.
This system developed by Sony Corporation.
SJ3 is composed of Kana-Kanji conversion server(sj3serv),
Kana-Kanji conversion client for terminal(sj3) and Kana-Kanji
conversion library(sj3lib).
To use SJXA, it is necessary to install SJ3.
This also include many patches for FreeBSD ports on SJ3.
If there are any problem in this patches, please know me via E-mail.
Hidekazu Kuroki
(hidekazu@cs.titech.ac.jp)

5
japanese/sjxa/pkg-plist Normal file
View file

@ -0,0 +1,5 @@
bin/sjxa
lib/X11/ja_JP.EUC/app-defaults/Sjxa
lib/X11/sjxa/sjxark
man/man1/sjxa.1.gz
man/ja_JP.EUC/man1/sjxa.1.gz