diff options
author | 2007-01-27 00:47:05 +0000 | |
---|---|---|
committer | 2007-01-27 00:47:05 +0000 | |
commit | ce4e86d874538c63e5d412161ef23e19de77ef95 (patch) | |
tree | ea4ff122f1dd64ca411431773d9945ad001ea1f7 /net-im/gaim/files | |
parent | whitespace (diff) | |
download | historical-ce4e86d874538c63e5d412161ef23e19de77ef95.tar.gz historical-ce4e86d874538c63e5d412161ef23e19de77ef95.tar.bz2 historical-ce4e86d874538c63e5d412161ef23e19de77ef95.zip |
Add patch to fix mono from SF.net bug #1639901 and gentoo bug #162930
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'net-im/gaim/files')
-rw-r--r-- | net-im/gaim/files/gaim-2.0.0_beta6-mono-api-change-update.patch | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/net-im/gaim/files/gaim-2.0.0_beta6-mono-api-change-update.patch b/net-im/gaim/files/gaim-2.0.0_beta6-mono-api-change-update.patch new file mode 100644 index 000000000000..22866bad6537 --- /dev/null +++ b/net-im/gaim/files/gaim-2.0.0_beta6-mono-api-change-update.patch @@ -0,0 +1,58 @@ +--- libgaim/plugins/mono/MPlugin.cs.orig 2007-01-19 15:23:33.000000000 -0600 ++++ libgaim/plugins/mono/MPlugin.cs 2007-01-19 15:36:15.000000000 -0600 +@@ -1,7 +1,14 @@ + using Gaim; + +-public class MPlugin : GaimPlugin ++public class MPlugin : Plugin + { ++ private static PluginInfo info = new PluginInfo("C# Plugin", "0.1", "Test C# Plugin", "Longer Description", "Eoin Coffey", "urled"); ++ ++ public MPlugin() ++ : base(info) ++ { ++ } ++ + public void HandleSig(object[] args) + { + Buddy buddy = (Buddy)args[0]; +@@ -28,9 +35,4 @@ + { + Debug.debug(Debug.INFO, "mplug", "destroying...\n"); + } +- +- public override GaimPluginInfo Info() +- { +- return new GaimPluginInfo("C# Plugin", "0.1", "Test C# Plugin", "Longer Description", "Eoin Coffey", "urled"); +- } + } +--- libgaim/plugins/mono/GetBuddyBack.cs.orig 2007-01-19 15:36:33.000000000 -0600 ++++ libgaim/plugins/mono/GetBuddyBack.cs 2007-01-19 15:37:58.000000000 -0600 +@@ -1,7 +1,14 @@ + using Gaim; + +-public class GetBuddyBack : GaimPlugin ++public class GetBuddyBack : Plugin + { ++ private static PluginInfo info = new PluginInfo("C# Get Buddy Back", "0.1", "Prints when a Buddy returns", "Longer Description", "Eoin Coffey", "urled"); ++ ++ public GetBuddyBack() ++ : base (info) ++ { ++ } ++ + public void HandleSig(object[] args) + { + Buddy buddy = (Buddy)args[0]; +@@ -24,9 +31,4 @@ + public override void Destroy() + { + } +- +- public override GaimPluginInfo Info() +- { +- return new GaimPluginInfo("C# Get Buddy Back", "0.1", "Prints when a Buddy returns", "Longer Description", "Eoin Coffey", "urled"); +- } + } + + |