diff options
author | Peter Johanson <latexer@gentoo.org> | 2005-05-05 17:51:24 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2005-05-05 17:51:24 +0000 |
commit | 0b4a28ae0e7cc24ab9ce150c2b851788cf55504e (patch) | |
tree | 9bf19672aa7d05c922cb22863b5bfc127b8fe8bf /app-misc/tomboy/files | |
parent | Version bump. (diff) | |
download | gentoo-2-0b4a28ae0e7cc24ab9ce150c2b851788cf55504e.tar.gz gentoo-2-0b4a28ae0e7cc24ab9ce150c2b851788cf55504e.tar.bz2 gentoo-2-0b4a28ae0e7cc24ab9ce150c2b851788cf55504e.zip |
Bump, and include some fixes for compilation with stricter mono-1.1.7
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'app-misc/tomboy/files')
-rw-r--r-- | app-misc/tomboy/files/digest-tomboy-0.3.2 | 1 | ||||
-rw-r--r-- | app-misc/tomboy/files/tomboy-0.3.2-1.1.x-compat.diff | 18 | ||||
-rw-r--r-- | app-misc/tomboy/files/tomboy-0.3.2-mono-1.1.7-compat.diff | 12 |
3 files changed, 31 insertions, 0 deletions
diff --git a/app-misc/tomboy/files/digest-tomboy-0.3.2 b/app-misc/tomboy/files/digest-tomboy-0.3.2 new file mode 100644 index 000000000000..14fa7d8e9823 --- /dev/null +++ b/app-misc/tomboy/files/digest-tomboy-0.3.2 @@ -0,0 +1 @@ +MD5 cb4c48860601e636e075644c40b973de tomboy-0.3.2.tar.gz 549963 diff --git a/app-misc/tomboy/files/tomboy-0.3.2-1.1.x-compat.diff b/app-misc/tomboy/files/tomboy-0.3.2-1.1.x-compat.diff new file mode 100644 index 000000000000..aba05f977ce7 --- /dev/null +++ b/app-misc/tomboy/files/tomboy-0.3.2-1.1.x-compat.diff @@ -0,0 +1,18 @@ +diff -aur tomboy-0.3.2-orig/Tomboy/Applet.cs tomboy-0.3.2/Tomboy/Applet.cs +--- tomboy-0.3.2-orig/Tomboy/Applet.cs 2005-03-30 22:09:25.000000000 -0500 ++++ tomboy-0.3.2/Tomboy/Applet.cs 2005-04-14 20:31:09.000000000 -0400 +@@ -62,6 +62,14 @@ + "GNOME_TomboyApplet.xml", + "Tomboy", + menu_verbs); ++ // This is needed as on mono-1.1.4, the whole ++ // applet gets reaped, including needed menu_verbs ++ GLib.Timeout.Add(1000, ImALIVE); ++ } ++ ++ bool ImALIVE() ++ { ++ return true; + } + + void ShowPreferencesVerb () diff --git a/app-misc/tomboy/files/tomboy-0.3.2-mono-1.1.7-compat.diff b/app-misc/tomboy/files/tomboy-0.3.2-mono-1.1.7-compat.diff new file mode 100644 index 000000000000..d6801141fc08 --- /dev/null +++ b/app-misc/tomboy/files/tomboy-0.3.2-mono-1.1.7-compat.diff @@ -0,0 +1,12 @@ +diff -aur tomboy-0.3.2-orig/Tomboy/Trie.cs tomboy-0.3.2/Tomboy/Trie.cs +--- tomboy-0.3.2-orig/Tomboy/Trie.cs 2005-01-18 02:33:54.000000000 -0500 ++++ tomboy-0.3.2/Tomboy/Trie.cs 2005-05-05 13:26:48.000000000 -0400 +@@ -186,7 +186,7 @@ + MatchHandler match_handler) + { + TrieState q = root; +- TrieMatch m; ++ TrieMatch m = null; + int idx = 0, start_idx = 0, last_idx = 0; + + while (idx < haystack.Length) { |