diff options
author | Olivier Crête <tester@gentoo.org> | 2007-05-27 20:05:49 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2007-05-27 20:05:49 +0000 |
commit | 5b8fd377748699e44d4ca5e696001b5e0a8aa96b (patch) | |
tree | b6f19abeecc009a70546a1d43eff7c54fbb00543 /net-im/pidgin/files | |
parent | Make BSF support optional via new local USE flag and minor style tweaks; rest... (diff) | |
download | historical-5b8fd377748699e44d4ca5e696001b5e0a8aa96b.tar.gz historical-5b8fd377748699e44d4ca5e696001b5e0a8aa96b.tar.bz2 historical-5b8fd377748699e44d4ca5e696001b5e0a8aa96b.zip |
Add patch to fix purple-remote, bug #179958
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'net-im/pidgin/files')
-rw-r--r-- | net-im/pidgin/files/pidgin-2.0.1-purple-remote-syntax-fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-im/pidgin/files/pidgin-2.0.1-purple-remote-syntax-fix.patch b/net-im/pidgin/files/pidgin-2.0.1-purple-remote-syntax-fix.patch new file mode 100644 index 000000000000..f410eab53d53 --- /dev/null +++ b/net-im/pidgin/files/pidgin-2.0.1-purple-remote-syntax-fix.patch @@ -0,0 +1,11 @@ +--- ./libpurple/purple-remote.orig 2007-05-27 01:16:26.000000000 -0400 ++++ ./libpurple/purple-remote 2007-05-27 01:16:34.000000000 -0400 +@@ -94,7 +94,7 @@ + def execute(uri): + match = re.match(urlregexp, uri) + protocol = match.group(2) +- if protocol == "xmpp" ++ if protocol == "xmpp": + protocol = "jabber" + if protocol == "aim" or protocol == "icq": + protocol = "oscar" |