From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 9 01:40:03 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EBA816A4E6 for ; Mon, 9 May 2005 01:40:03 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15E8243D7B for ; Mon, 9 May 2005 01:40:03 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j491e21w088166 for ; Mon, 9 May 2005 01:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j491e2gh088165; Mon, 9 May 2005 01:40:02 GMT (envelope-from gnats) Resent-Date: Mon, 9 May 2005 01:40:02 GMT Resent-Message-Id: <200505090140.j491e2gh088165@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, chinsan Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9592D16A4E6; Mon, 9 May 2005 01:31:32 +0000 (GMT) Received: from chinsan.twbbs.org (sw169-31-180.adsl.seed.net.tw [221.169.31.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB5F43D7C; Mon, 9 May 2005 01:31:32 +0000 (GMT) (envelope-from root@chinsan.twbbs.org) Received: by chinsan.twbbs.org (Postfix, from userid 0) id A0EE57301C; Mon, 9 May 2005 09:31:33 +0800 (CST) Message-Id: <20050509013133.A0EE57301C@chinsan.twbbs.org> Date: Mon, 9 May 2005 09:31:33 +0800 (CST) From: chinsan To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: marcus@FreeBSD.org Subject: ports/80801: [PATCH] net/gaim: fix the trouble of Chinese input X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: chinsan List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2005 01:40:03 -0000 >Number: 80801 >Category: ports >Synopsis: [PATCH] net/gaim: fix the trouble of Chinese input >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 09 01:40:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: chinsan >Release: FreeBSD 5.3-RELEASE i386 >Organization: FreeBSD Taiwan >Environment: System: FreeBSD chinsan.twbbs.org 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: - add option of Chinese user (even all CJK user) - port maintainer(marcus@FreeBSD.org) is CC'd Thanks. :) >How-To-Repeat: The default value in Gaim is ctrl_enter_sends = FALSE & enter_sends = TRUE But, it will confuse many people if they use this with their own XIM(or GTK_IM_MOUDULE). Especially, the IM users in Taiwan often talks with Gaim as their GUI IM client program. Also, I will sumimit the problem to Gaim developers as soon as possible. >Fix: --- gaim.patch begins here --- diff -ruN gaim.orig/Makefile gaim/Makefile --- gaim.orig/Makefile Wed Apr 6 11:46:38 2005 +++ gaim/Makefile Mon May 9 09:07:19 2005 @@ -33,7 +33,8 @@ MAN1= gaim.1 gaim-remote.1 -OPTIONS= SILC "Secure Internet Live Conferencing support" off \ +OPTIONS= BIG5 "With Big5 Chinese input fix" off \ + SILC "Secure Internet Live Conferencing support" off \ GTKSPELL "spell checking support" on \ AUDIO "audio support" on \ GNUTLS "GNUTLS encryption support" off \ @@ -128,5 +129,8 @@ -e 's|TCL_VERSION found but 8.3 required|TCL_VERSION found but ${TCLTK_VER} required|g' \ -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${TCLTK_VER:E}|' \ ${WRKSRC}/configure +.if defined(WITH_BIG5) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_gtkconv.c +.endif .include diff -ruN gaim.orig/files/extra-patch-src_gtkconv.c gaim/files/extra-patch-src_gtkconv.c --- gaim.orig/files/extra-patch-src_gtkconv.c Thu Jan 1 08:00:00 1970 +++ gaim/files/extra-patch-src_gtkconv.c Mon May 9 08:38:32 2005 @@ -0,0 +1,13 @@ +--- src.orig/gtkconv.c Mon May 9 08:36:54 2005 ++++ src/gtkconv.c Mon May 9 08:37:32 2005 +@@ -6369,8 +6369,8 @@ + /* Conversations */ + gaim_prefs_add_none("/gaim/gtk/conversations"); + gaim_prefs_add_bool("/gaim/gtk/conversations/close_on_tabs", TRUE); +- gaim_prefs_add_bool("/gaim/gtk/conversations/ctrl_enter_sends", FALSE); +- gaim_prefs_add_bool("/gaim/gtk/conversations/enter_sends", TRUE); ++ gaim_prefs_add_bool("/gaim/gtk/conversations/ctrl_enter_sends", TRUE); ++ gaim_prefs_add_bool("/gaim/gtk/conversations/enter_sends", FALSE); + gaim_prefs_add_bool("/gaim/gtk/conversations/escape_closes", FALSE); + gaim_prefs_add_bool("/gaim/gtk/conversations/send_formatting", FALSE); + gaim_prefs_add_bool("/gaim/gtk/conversations/send_bold", FALSE); --- gaim.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: