aboutsummaryrefslogtreecommitdiff
path: root/japanese/gtkicq
diff options
context:
space:
mode:
authorSeiichirou Hiraoka <flathill@FreeBSD.org>1999-08-27 07:30:17 +0000
committerSeiichirou Hiraoka <flathill@FreeBSD.org>1999-08-27 07:30:17 +0000
commit732998a22e337a785eea4c8f3be27de53513e8fb (patch)
treebdc1b8558512db1ec31e2d87bc9a9354820f187c /japanese/gtkicq
parent862f18ef8badee3f49e32eeb0c90f0313862e95d (diff)
downloadports-732998a22e337a785eea4c8f3be27de53513e8fb.tar.gz
ports-732998a22e337a785eea4c8f3be27de53513e8fb.zip
Notes
Diffstat (limited to 'japanese/gtkicq')
-rw-r--r--japanese/gtkicq/files/patch-aa111
-rw-r--r--japanese/gtkicq/files/patch-ab23
2 files changed, 134 insertions, 0 deletions
diff --git a/japanese/gtkicq/files/patch-aa b/japanese/gtkicq/files/patch-aa
new file mode 100644
index 000000000000..0bcbd31e66b4
--- /dev/null
+++ b/japanese/gtkicq/files/patch-aa
@@ -0,0 +1,111 @@
+*** src/histadd.c.orig Tue Aug 17 01:17:01 1999
+--- src/histadd.c Tue Aug 17 01:22:06 1999
+***************
+*** 13,22 ****
+ time_t timedate;
+ struct tm *my_tm;
+ char pdate[46];
+- int cx, cy, cz;
+ char *halves[] = { "AM", "PM" };
+ int half = 0;
+- char buf[ 1024 ];
+
+ char *filename;
+ int file;
+--- 13,20 ----
+***************
+*** 53,84 ****
+
+ write( file, pdate, strlen( pdate ) );
+
+! strcpy( buf, "" );
+! cy = cz = 0;
+! for( cx = 0; cx < strlen( strings[ 2 ] ); cx ++ )
+! {
+! cy ++;
+! if( strings[ 2 ][cx] == '\n' || cy == 70 ||
+! ( cy >= 60 && strings[ 2 ][cx] == ' ' ) )
+! {
+! write( file, ( strings[ 2 ] + cz ), cy );
+! if( cy >= 60 && cy != 70 )
+! {
+! write( file, "\n", 1 );
+! }
+! if( cy == 70 )
+! {
+! write( file, "-\n", 2 );
+! }
+! cz += cy;
+! cy = 0;
+! }
+! }
+!
+! if( cz != strlen( strings[ 2 ] ) )
+! {
+! write( file, ( strings[ 2 ] + cz ), strlen( strings[ 2 ] ) - cz );
+! }
+
+ write( file, "\n", 1 );
+
+--- 51,57 ----
+
+ write( file, pdate, strlen( pdate ) );
+
+! write( file, strings[ 2 ], strlen( strings[ 2 ] ) );
+
+ write( file, "\n", 1 );
+
+***************
+*** 92,101 ****
+ time_t timedate;
+ struct tm *my_tm;
+ char pdate[42];
+- int cx, cy, cz;
+ char *halves[] = { "AM", "PM" };
+ int half = 0;
+- char buf[ 1024 ];
+
+ char *filename;
+ int file;
+--- 65,72 ----
+***************
+*** 132,163 ****
+
+ write( file, pdate, strlen( pdate ) );
+
+! strcpy( buf, "" );
+! cy = cz = 0;
+! for( cx = 0; cx < strlen( strings[ 2 ] ); cx ++ )
+! {
+! cy ++;
+! if( strings[ 2 ][cx] == '\n' || cy == 70 ||
+! ( cy >= 60 && strings[ 2 ][cx] == ' ' ) )
+! {
+! write( file, ( strings[ 2 ] + cz ), cy );
+! if( cy >= 60 && cy != 70 )
+! {
+! write( file, "\n", 1 );
+! }
+! if( cy == 70 )
+! {
+! write( file, "-\n", 2 );
+! }
+! cz += cy;
+! cy = 0;
+! }
+! }
+!
+! if( cz != strlen( strings[ 2 ] ) )
+! {
+! write( file, ( strings[ 2 ] + cz ), strlen( strings[ 2 ] ) - cz );
+! }
+
+ write( file, "\n", 1 );
+
+--- 103,109 ----
+
+ write( file, pdate, strlen( pdate ) );
+
+! write( file, strings[ 2 ], strlen( strings[ 2 ] ) );
+
+ write( file, "\n", 1 );
diff --git a/japanese/gtkicq/files/patch-ab b/japanese/gtkicq/files/patch-ab
new file mode 100644
index 000000000000..7e7ef2a69898
--- /dev/null
+++ b/japanese/gtkicq/files/patch-ab
@@ -0,0 +1,23 @@
+*** src/l10n_conv.c.orig Tue Aug 17 01:17:43 1999
+--- src/l10n_conv.c Tue Aug 17 01:17:59 1999
+***************
+*** 10,18 ****
+ #ifdef L10N
+ #ifdef JAPANESE
+ if(!strcmp(to, "toLocal")){
+! return toStringEUC( t_in );
+ }else if(!strcmp(to, "toNet")){
+! return toStringSJIS( t_in );
+ }
+ #else ifdef RUSSIAN
+ if(!strcmp(to, "toLocal")){
+--- 10,18 ----
+ #ifdef L10N
+ #ifdef JAPANESE
+ if(!strcmp(to, "toLocal")){
+! return toStringEUCfromSJIS( t_in );
+ }else if(!strcmp(to, "toNet")){
+! return toStringSJISfromEUC( t_in );
+ }
+ #else ifdef RUSSIAN
+ if(!strcmp(to, "toLocal")){