diff options
author | Markus Ullmann <jokey@gentoo.org> | 2006-07-05 07:40:15 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2006-07-05 07:40:15 +0000 |
commit | d67442087d420aeda677d5767367203407f60ed9 (patch) | |
tree | 429d49a20ebbdea312048408ea9f64afaaee7967 /net-irc/xchat/files | |
parent | Stable on ppc. (diff) | |
download | gentoo-2-d67442087d420aeda677d5767367203407f60ed9.tar.gz gentoo-2-d67442087d420aeda677d5767367203407f60ed9.tar.bz2 gentoo-2-d67442087d420aeda677d5767367203407f60ed9.zip |
Version bump wrt bug #136124
(Portage version: 2.1.1_pre2-r2)
Diffstat (limited to 'net-irc/xchat/files')
-rw-r--r-- | net-irc/xchat/files/digest-xchat-2.6.4 | 6 | ||||
-rw-r--r-- | net-irc/xchat/files/xchat-2.6.4-fix-cursor.patch | 19 | ||||
-rw-r--r-- | net-irc/xchat/files/xchat-2.6.4-fix-proxy.patch | 17 |
3 files changed, 42 insertions, 0 deletions
diff --git a/net-irc/xchat/files/digest-xchat-2.6.4 b/net-irc/xchat/files/digest-xchat-2.6.4 new file mode 100644 index 000000000000..0563907073f0 --- /dev/null +++ b/net-irc/xchat/files/digest-xchat-2.6.4 @@ -0,0 +1,6 @@ +MD5 358f6cec635eab49fca99d324f76e065 xchat-2.6.4.tar.bz2 1083938 +RMD160 998069aa49e7b26dd98d53173e9dc67f947f95a2 xchat-2.6.4.tar.bz2 1083938 +SHA256 76e67fc03d3318d6159d1f22408c607bfa72e5e7687ddcb8969c95a01bcf4222 xchat-2.6.4.tar.bz2 1083938 +MD5 c0220456a4df8ee54ae02e7704a6e024 xchat-dccserver-0.6.patch.bz2 49320 +RMD160 24cc9bd414b1dd0e7e38ba9a49d12257aeb89e68 xchat-dccserver-0.6.patch.bz2 49320 +SHA256 90a49a8d810380020c507c1a36f02e7d972cf92b5e4802dcd5cc518cba29078f xchat-dccserver-0.6.patch.bz2 49320 diff --git a/net-irc/xchat/files/xchat-2.6.4-fix-cursor.patch b/net-irc/xchat/files/xchat-2.6.4-fix-cursor.patch new file mode 100644 index 000000000000..342ab77869e5 --- /dev/null +++ b/net-irc/xchat/files/xchat-2.6.4-fix-cursor.patch @@ -0,0 +1,19 @@ +# +# Fixes the invisible cursor color when using GTKSpell and a black +# input box (when "Use the text box font & colors" is ON). +# +diff -u -r1.66 fe-gtk.c +--- xchat-2.6.4/src/fe-gtk/fe-gtk.c 7 Jun 2006 06:16:51 -0000 1.66 ++++ xchat-2.6.4p1/src/fe-gtk/fe-gtk.c 12 Jun 2006 03:13:24 -0000 +@@ -225,7 +225,11 @@ + const char cursor_color_rc[] = + "style \"xc-ib-st\"" + "{" ++#ifdef USE_GTKSPELL ++ "GtkTextView::cursor-color=\"#%02x%02x%02x\"" ++#else + "GtkEntry::cursor-color=\"#%02x%02x%02x\"" ++#endif + "}" + "widget \"*.xchat-inputbox\" style : application \"xc-ib-st\""; + diff --git a/net-irc/xchat/files/xchat-2.6.4-fix-proxy.patch b/net-irc/xchat/files/xchat-2.6.4-fix-proxy.patch new file mode 100644 index 000000000000..566464c35003 --- /dev/null +++ b/net-irc/xchat/files/xchat-2.6.4-fix-proxy.patch @@ -0,0 +1,17 @@ +# +# Fix proxy +# +diff -u -r1.71 server.c +--- xchat-2.6.4/src/common/server.c 29 May 2006 06:53:25 -0000 1.71 ++++ xchat-2.6.4p1/src/common/server.c 8 Jun 2006 15:22:07 -0000 +@@ -1534,7 +1534,10 @@ + if (!serv->dont_use_proxy && (prefs.proxy_type == 5)) + error = net_connect (ns_server, serv->proxy_sok4, serv->proxy_sok6, &psok); + else ++ { + error = net_connect (ns_server, serv->sok4, serv->sok6, &sok); ++ psok = sok; ++ } + + if (error != 0) + { |