summaryrefslogtreecommitdiffstats
path: root/deskutils/gnote
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2010-03-14 13:52:37 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2010-03-14 13:52:37 +0800
commite283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d (patch)
tree93000b204b8c8684872b2f5c409abcd8ade39ce3 /deskutils/gnote
parent969e194ccc6500720f06321a2096ef0deb6d4600 (diff)
downloadmarcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.tar
marcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.tar.gz
marcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.tar.bz2
marcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.tar.lz
marcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.tar.xz
marcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.tar.zst
marcuscom-ports-e283021fa1b5b68b68ddcdb93f3a1411eb5d2c4d.zip
Update to 0.7.2.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13830 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils/gnote')
-rw-r--r--deskutils/gnote/Makefile5
-rw-r--r--deskutils/gnote/distinfo6
-rw-r--r--deskutils/gnote/files/patch-libtomboy_tomboyutil.c14
-rw-r--r--deskutils/gnote/files/patch-src_debug.cpp2
-rw-r--r--deskutils/gnote/files/patch-src_noterenamedialog.cpp20
-rw-r--r--deskutils/gnote/pkg-plist24
6 files changed, 64 insertions, 7 deletions
diff --git a/deskutils/gnote/Makefile b/deskutils/gnote/Makefile
index b6dc2383b..a72ef61fb 100644
--- a/deskutils/gnote/Makefile
+++ b/deskutils/gnote/Makefile
@@ -3,12 +3,11 @@
# Whom: Mezz <mezz@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/deskutils/gnote/Makefile,v 1.9 2010/01/06 01:12:43 kwm Exp $
+# $MCom: ports/deskutils/gnote/Makefile,v 1.10 2010/02/14 20:17:39 kwm Exp $
#
PORTNAME= gnote
-PORTVERSION= 0.7.1
-PORTREVISION= 1
+PORTVERSION= 0.7.2
CATEGORIES= deskutils gnome
MASTER_SITES= GNOME
diff --git a/deskutils/gnote/distinfo b/deskutils/gnote/distinfo
index 00933d75a..83b9f1491 100644
--- a/deskutils/gnote/distinfo
+++ b/deskutils/gnote/distinfo
@@ -1,3 +1,3 @@
-MD5 (gnote-0.7.1.tar.bz2) = 894ccd75570e576166ff50893abe75ab
-SHA256 (gnote-0.7.1.tar.bz2) = 2e11ba64e67d36adf6c968b315913ba071e9429bb6a7f8432be81081060570e1
-SIZE (gnote-0.7.1.tar.bz2) = 1304699
+MD5 (gnote-0.7.2.tar.bz2) = c4e1a93896cb8610d2e08c72d41f1777
+SHA256 (gnote-0.7.2.tar.bz2) = ef46a1bade7bf684615b32e5bf35c100d646456e40ac2e9cab871e6dff0d2a4c
+SIZE (gnote-0.7.2.tar.bz2) = 1364579
diff --git a/deskutils/gnote/files/patch-libtomboy_tomboyutil.c b/deskutils/gnote/files/patch-libtomboy_tomboyutil.c
new file mode 100644
index 000000000..2252cd007
--- /dev/null
+++ b/deskutils/gnote/files/patch-libtomboy_tomboyutil.c
@@ -0,0 +1,14 @@
+--- libtomboy/tomboyutil.c.orig 2010-03-14 00:35:24.000000000 -0500
++++ libtomboy/tomboyutil.c 2010-03-14 00:36:19.000000000 -0500
+@@ -153,9 +153,9 @@ tomboy_window_override_user_time (GtkWin
+ void
+ tomboy_window_present_hardcore (GtkWindow *window)
+ {
+- if (!GTK_WIDGET_REALIZED (window))
++ if (!gtk_widget_get_realized (window))
+ gtk_widget_realize (GTK_WIDGET (window));
+- else if (GTK_WIDGET_VISIBLE (window))
++ else if (gtk_widget_get_visible (window))
+ tomboy_window_move_to_current_workspace (window);
+
+ tomboy_window_override_user_time (window);
diff --git a/deskutils/gnote/files/patch-src_debug.cpp b/deskutils/gnote/files/patch-src_debug.cpp
index cb2fe3805..69c81272c 100644
--- a/deskutils/gnote/files/patch-src_debug.cpp
+++ b/deskutils/gnote/files/patch-src_debug.cpp
@@ -5,7 +5,7 @@
// boost::recursive_mutex::scoped_lock lock(mutex);
char buf[128];
- snprintf(buf, 128, "(%d) ", (int)pthread_self());
-+ snprintf(buf, 128, "(%d) ", (pthread_t)pthread_self());
++ snprintf(buf, 128, "(%ld) ", (pthread_t)pthread_self());
fwrite(buf, 1, strlen(buf), stderr);
fwrite(prefix, 1, strlen(prefix), stderr);
diff --git a/deskutils/gnote/files/patch-src_noterenamedialog.cpp b/deskutils/gnote/files/patch-src_noterenamedialog.cpp
new file mode 100644
index 000000000..0e7002990
--- /dev/null
+++ b/deskutils/gnote/files/patch-src_noterenamedialog.cpp
@@ -0,0 +1,20 @@
+--- src/noterenamedialog.cpp.orig 2010-03-14 00:32:43.000000000 -0500
++++ src/noterenamedialog.cpp 2010-03-14 00:33:46.000000000 -0500
+@@ -63,6 +63,8 @@ private:
+ Gtk::TreeModelColumn<Note::Ptr> m_column_note;
+ };
+
++ModelColumnRecord model_column_record;
++
+ ModelColumnRecord::ModelColumnRecord()
+ : Gtk::TreeModelColumnRecord()
+ , m_column_selected()
+@@ -152,7 +154,7 @@ NoteRenameDialog::NoteRenameDialog(const
+ *renamed_note->get_window(),
+ false,
+ false)
+- , m_notes_model(Gtk::ListStore::create(ModelColumnRecord()))
++ , m_notes_model(Gtk::ListStore::create(model_column_record))
+ , m_dont_rename_button(_("_Don't Rename Links"), true)
+ , m_rename_button(_("_Rename Links"), true)
+ , m_select_all_button(_("Select All"))
diff --git a/deskutils/gnote/pkg-plist b/deskutils/gnote/pkg-plist
index 44a19b259..524f1ea07 100644
--- a/deskutils/gnote/pkg-plist
+++ b/deskutils/gnote/pkg-plist
@@ -133,6 +133,25 @@ share/gnome/help/gnote/sv/figures/note-template.png
share/gnome/help/gnote/sv/figures/notebook-icon.png
share/gnome/help/gnote/sv/gnote.xml
share/gnome/help/gnote/sv/legal.xml
+share/gnome/help/gnote/zh_CN/figures/add-notebook-search.png
+share/gnome/help/gnote/zh_CN/figures/add-to-notebook.png
+share/gnome/help/gnote/zh_CN/figures/delete-notebook.png
+share/gnome/help/gnote/zh_CN/figures/gnote-main-menu.png
+share/gnome/help/gnote/zh_CN/figures/gnote-new-note.png
+share/gnome/help/gnote/zh_CN/figures/gnote-panel.png
+share/gnome/help/gnote/zh_CN/figures/gnote-pindown.png
+share/gnome/help/gnote/zh_CN/figures/gnote-pinup.png
+share/gnome/help/gnote/zh_CN/figures/gnote-preferences-add-ins.png
+share/gnome/help/gnote/zh_CN/figures/gnote-preferences-editing.png
+share/gnome/help/gnote/zh_CN/figures/gnote-preferences-hotkeys.png
+share/gnome/help/gnote/zh_CN/figures/gnote-preferences-synchronization.png
+share/gnome/help/gnote/zh_CN/figures/gnote-tools.png
+share/gnome/help/gnote/zh_CN/figures/move-notes-search.png
+share/gnome/help/gnote/zh_CN/figures/new-notebook.png
+share/gnome/help/gnote/zh_CN/figures/note-template.png
+share/gnome/help/gnote/zh_CN/figures/notebook-icon.png
+share/gnome/help/gnote/zh_CN/gnote.xml
+share/gnome/help/gnote/zh_CN/legal.xml
%%DATADIR%%/GNOME_GnoteApplet.xml
%%DATADIR%%/UIManagerLayout.xml
%%DATADIR%%/exporttohtml.xsl
@@ -179,6 +198,7 @@ share/locale/fr/LC_MESSAGES/gnote.mo
share/locale/gl/LC_MESSAGES/gnote.mo
share/locale/gu/LC_MESSAGES/gnote.mo
share/locale/he/LC_MESSAGES/gnote.mo
+share/locale/hi/LC_MESSAGES/gnote.mo
share/locale/hu/LC_MESSAGES/gnote.mo
share/locale/id/LC_MESSAGES/gnote.mo
share/locale/it/LC_MESSAGES/gnote.mo
@@ -186,6 +206,7 @@ share/locale/ja/LC_MESSAGES/gnote.mo
share/locale/kn/LC_MESSAGES/gnote.mo
share/locale/ko/LC_MESSAGES/gnote.mo
share/locale/lt/LC_MESSAGES/gnote.mo
+share/locale/ml/LC_MESSAGES/gnote.mo
share/locale/mr/LC_MESSAGES/gnote.mo
share/locale/or/LC_MESSAGES/gnote.mo
share/locale/pa/LC_MESSAGES/gnote.mo
@@ -204,6 +225,7 @@ share/omf/gnote/gnote-de.omf
share/omf/gnote/gnote-el.omf
share/omf/gnote/gnote-es.omf
share/omf/gnote/gnote-sv.omf
+share/omf/gnote/gnote-zh_CN.omf
@dirrm share/omf/gnote
@dirrmtry share/locale/te/LC_MESSAGES
@dirrmtry share/locale/te
@@ -231,6 +253,8 @@ share/omf/gnote/gnote-sv.omf
@dirrm %%DATADIR%%/icons/hicolor
@dirrm %%DATADIR%%/icons
@dirrm %%DATADIR%%
+@dirrm share/gnome/help/gnote/zh_CN/figures
+@dirrm share/gnome/help/gnote/zh_CN
@dirrm share/gnome/help/gnote/sv/figures
@dirrm share/gnome/help/gnote/sv
@dirrm share/gnome/help/gnote/es/figures