import gnote 0.7.4
Gnote is a port of Tomboy to C++. It is the same note taking application, including most of the add-ins (more are to come). Synchronization support is being worked on. This will replace tomboy in our tree, users can sync their tomboy notes with the TomboyImport addin. feedback/ok aja@
This commit is contained in:
parent
e47de786de
commit
f0492d1151
55
x11/gnome/gnote/Makefile
Normal file
55
x11/gnome/gnote/Makefile
Normal file
@ -0,0 +1,55 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT= desktop note-taking application written in C++
|
||||
|
||||
GNOME_PROJECT= gnote
|
||||
GNOME_VERSION= 0.7.4
|
||||
|
||||
HOMEPAGE= http://live.gnome.org/Gnote
|
||||
|
||||
# GPLv3
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MODULES= devel/gconf2 \
|
||||
devel/gettext \
|
||||
x11/gnome
|
||||
|
||||
WANTLIB += GL ORBit-2 X11 Xau Xcomposite Xcursor Xdamage Xdmcp
|
||||
WANTLIB += Xext Xfixes Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0
|
||||
WANTLIB += atkmm-1.6 c cairo cairomm-1.0 drm e2fs-uuid enchant
|
||||
WANTLIB += expat fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0
|
||||
WANTLIB += gdkmm-2.4 gio-2.0 giomm-2.4 glib-2.0 glibmm-2.4 gmodule-2.0
|
||||
WANTLIB += gobject-2.0 gthread-2.0 gtk-x11-2.0 gtkmm-2.4 gtkspell
|
||||
WANTLIB += m pango-1.0 pangocairo-1.0 pangoft2-1.0 pangomm-1.4
|
||||
WANTLIB += pcre pcrecpp pixman-1 png pthread pthread-stubs sigc-2.0
|
||||
WANTLIB += stdc++ xcb xcb-render xcb-shm xml2 xslt z
|
||||
|
||||
BUILD_DEPENDS= devel/boost>=1.42.0p6
|
||||
LIB_DEPENDS= sysutils/e2fsprogs \
|
||||
textproc/gtkspell \
|
||||
textproc/libxslt \
|
||||
x11/gtk2mm
|
||||
|
||||
MODGNOME_HELP_FILES= Yes
|
||||
DESKTOP_FILES= Yes
|
||||
MODGCONF2_SCHEMAS_DIR= gnote
|
||||
|
||||
LIBTOOL_FLAGS+= --tag=disable-static
|
||||
|
||||
AUTOCONF_VERSION= 2.65
|
||||
|
||||
CONFIGURE_STYLE= autoconf gnu
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
--disable-static
|
||||
# needs libpanelappletmm and dbus-c++
|
||||
CONFIGURE_ARGS+= --disable-applet \
|
||||
--disable-dbus
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
.include <bsd.port.mk>
|
5
x11/gnome/gnote/distinfo
Normal file
5
x11/gnome/gnote/distinfo
Normal file
@ -0,0 +1,5 @@
|
||||
MD5 (gnome/gnote-0.7.4.tar.bz2) = Hx7w1Q3DJW88uGB+qvJMfw==
|
||||
RMD160 (gnome/gnote-0.7.4.tar.bz2) = shm+2gVdUDMOJIxhCSVK91QXctw=
|
||||
SHA1 (gnome/gnote-0.7.4.tar.bz2) = PNoNewxA8rqlBmt9EbLc5tHMhgQ=
|
||||
SHA256 (gnome/gnote-0.7.4.tar.bz2) = Gb9kOXJ4uFcDl5/UlDaS9sRFeeWXutJ6zwSmTWgT5vI=
|
||||
SIZE (gnome/gnote-0.7.4.tar.bz2) = 1787015
|
23
x11/gnome/gnote/patches/patch-configure_ac
Normal file
23
x11/gnome/gnote/patches/patch-configure_ac
Normal file
@ -0,0 +1,23 @@
|
||||
$OpenBSD: patch-configure_ac,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
Use pkg-config to pickup uuid.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=649486
|
||||
|
||||
--- configure.ac.orig Sat Apr 30 20:39:54 2011
|
||||
+++ configure.ac Thu May 5 18:26:32 2011
|
||||
@@ -70,14 +70,11 @@ PKG_CHECK_MODULES(LIBXML, [libxml-2.0])
|
||||
PKG_CHECK_MODULES(LIBXSLT, [libxslt])
|
||||
PKG_CHECK_MODULES(GCONF, [gconf-2.0])
|
||||
PKG_CHECK_MODULES(PCRE, [libpcrecpp])
|
||||
+PKG_CHECK_MODULES(UUID, [e2fs-uuid])
|
||||
|
||||
PKG_CHECK_EXISTS(gtkmm-2.4 >= 2.14.0,
|
||||
[AC_DEFINE(HAVE_CLASS_GTK__WIDGET_SIGNAL_POPUP_MENU, 1, [Define to 1 if class Gtk::Widget has signal_popup_menu])],
|
||||
[])
|
||||
-
|
||||
-dnl check for the ext2 uuid library. TODO replace it with something more portable
|
||||
-AC_CHECK_HEADER(uuid/uuid.h,,[AC_MSG_ERROR("uuid header is missing")])
|
||||
-AC_CHECK_LIB(uuid,uuid_unparse_lower, ,[AC_MSG_ERROR("libuuid library is missing")])
|
||||
|
||||
AC_ARG_ENABLE([applet],
|
||||
AS_HELP_STRING([--disable-applet],[Disable panel applet]),
|
24
x11/gnome/gnote/patches/patch-src_Makefile_in
Normal file
24
x11/gnome/gnote/patches/patch-src_Makefile_in
Normal file
@ -0,0 +1,24 @@
|
||||
$OpenBSD: patch-src_Makefile_in,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
Use pkg-config to pickup uuid.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=649486
|
||||
|
||||
--- src/Makefile.in.orig Sat Apr 30 20:40:31 2011
|
||||
+++ src/Makefile.in Thu May 5 19:29:46 2011
|
||||
@@ -471,14 +471,14 @@ EXTRA_DIST = gnote-applet.in
|
||||
INCLUDES = -I$(top_srcdir)
|
||||
AM_CPPFLAGS = @LIBGTKMM_CFLAGS@ @LIBGLIBMM_CFLAGS@ @GCONF_CFLAGS@ \
|
||||
@GTK_CFLAGS@ @GTKSPELL_CFLAGS@ @LIBXML_CFLAGS@ \
|
||||
- @LIBXSLT_CFLAGS@ @PCRE_CFLAGS@ @DBUS_CFLAGS@ \
|
||||
+ @LIBXSLT_CFLAGS@ @PCRE_CFLAGS@ @DBUS_CFLAGS@ @UUID_CFLAGS@ \
|
||||
-DGNOTE_LOCALEDIR=\"@GNOTE_LOCALEDIR@\" \
|
||||
-DDATADIR=\"$(datadir)\" -DLIBDIR=\"$(libdir)\" \
|
||||
$(am__append_1)
|
||||
AM_LDFLAGS = -export-dynamic
|
||||
GNOTE_LIBS = libgnote.a $(top_builddir)/libtomboy/libtomboy.la \
|
||||
@LIBGLIBMM_LIBS@ @LIBGTKMM_LIBS@ @GCONF_LIBS@ @LIBXSLT_LIBS@ \
|
||||
- @PCRE_LIBS@ @DBUS_LIBS@ @GTKSPELL_LIBS@ @GTK_LIBS@ -luuid \
|
||||
+ @PCRE_LIBS@ @DBUS_LIBS@ @GTKSPELL_LIBS@ @GTK_LIBS@ @UUID_LIBS@ \
|
||||
$(am__append_2)
|
||||
noinst_LIBRARIES = libgnote.a
|
||||
trietest_SOURCES = test/trietest.cpp \
|
16
x11/gnome/gnote/patches/patch-src_debug_cpp
Normal file
16
x11/gnome/gnote/patches/patch-src_debug_cpp
Normal file
@ -0,0 +1,16 @@
|
||||
$OpenBSD: patch-src_debug_cpp,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
Incorrect explicit cast: error: cast from 'pthread*' to 'int' loses precision
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=649478
|
||||
|
||||
--- src/debug.cpp.orig Thu May 5 18:32:59 2011
|
||||
+++ src/debug.cpp Thu May 5 18:33:15 2011
|
||||
@@ -126,7 +126,7 @@ namespace utils {
|
||||
// static boost::recursive_mutex mutex;
|
||||
// boost::recursive_mutex::scoped_lock lock(mutex);
|
||||
char buf[128];
|
||||
- snprintf(buf, 128, "(%d) ", (int)pthread_self());
|
||||
+ snprintf(buf, 128, "(%ld) ", (pthread_t)pthread_self());
|
||||
fwrite(buf, 1, strlen(buf), stderr);
|
||||
fwrite(prefix, 1, strlen(prefix), stderr);
|
||||
|
25
x11/gnome/gnote/patches/patch-src_noterenamedialog_cpp
Normal file
25
x11/gnome/gnote/patches/patch-src_noterenamedialog_cpp
Normal file
@ -0,0 +1,25 @@
|
||||
$OpenBSD: patch-src_noterenamedialog_cpp,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
Incorrect ModelColumnRecord passing
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=649481
|
||||
|
||||
--- src/noterenamedialog.cpp.orig Thu May 5 18:55:11 2011
|
||||
+++ src/noterenamedialog.cpp Thu May 5 18:57:45 2011
|
||||
@@ -64,6 +64,8 @@ class ModelColumnRecord (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 Note::List &
|
||||
: Gtk::Dialog(_("Rename Note Links?"),
|
||||
*renamed_note->get_window(),
|
||||
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"))
|
57
x11/gnome/gnote/patches/patch-src_sharp_datetime_cpp
Normal file
57
x11/gnome/gnote/patches/patch-src_sharp_datetime_cpp
Normal file
@ -0,0 +1,57 @@
|
||||
$OpenBSD: patch-src_sharp_datetime_cpp,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
Incorrect arguments to localtime_r(3) break build
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=649472
|
||||
|
||||
--- src/sharp/datetime.cpp.orig Thu May 5 18:30:30 2011
|
||||
+++ src/sharp/datetime.cpp Thu May 5 18:31:41 2011
|
||||
@@ -70,28 +70,28 @@ namespace sharp {
|
||||
int DateTime::day() const
|
||||
{
|
||||
struct tm result;
|
||||
- localtime_r(&m_date.tv_sec, &result);
|
||||
+ localtime_r((const time_t *)&m_date.tv_sec, &result);
|
||||
return result.tm_mday;
|
||||
}
|
||||
|
||||
int DateTime::month() const
|
||||
{
|
||||
struct tm result;
|
||||
- localtime_r(&m_date.tv_sec, &result);
|
||||
+ localtime_r((const time_t *)&m_date.tv_sec, &result);
|
||||
return result.tm_mon + 1;
|
||||
}
|
||||
|
||||
int DateTime::year() const
|
||||
{
|
||||
struct tm result;
|
||||
- localtime_r(&m_date.tv_sec, &result);
|
||||
+ localtime_r((const time_t *)&m_date.tv_sec, &result);
|
||||
return result.tm_year + 1900;
|
||||
}
|
||||
|
||||
int DateTime::day_of_year() const
|
||||
{
|
||||
struct tm result;
|
||||
- localtime_r(&m_date.tv_sec, &result);
|
||||
+ localtime_r((const time_t *)&m_date.tv_sec, &result);
|
||||
return result.tm_yday;
|
||||
}
|
||||
|
||||
@@ -110,14 +110,14 @@ namespace sharp {
|
||||
std::string DateTime::to_string(const char * format) const
|
||||
{
|
||||
struct tm result;
|
||||
- return _to_string(format, localtime_r(&m_date.tv_sec, &result));
|
||||
+ return _to_string(format, localtime_r((const time_t *)&m_date.tv_sec, &result));
|
||||
}
|
||||
|
||||
|
||||
std::string DateTime::to_short_time_string() const
|
||||
{
|
||||
struct tm result;
|
||||
- return _to_string("%R", localtime_r(&m_date.tv_sec, &result));
|
||||
+ return _to_string("%R", localtime_r((const time_t *)&m_date.tv_sec, &result));
|
||||
}
|
||||
|
||||
std::string DateTime::to_iso8601() const
|
16
x11/gnome/gnote/patches/patch-src_sharp_uuid_hpp
Normal file
16
x11/gnome/gnote/patches/patch-src_sharp_uuid_hpp
Normal file
@ -0,0 +1,16 @@
|
||||
$OpenBSD: patch-src_sharp_uuid_hpp,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
|
||||
Use pkg-config to pickup uuid.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=649486
|
||||
|
||||
--- src/sharp/uuid.hpp.orig Thu May 5 19:18:28 2011
|
||||
+++ src/sharp/uuid.hpp Thu May 5 19:18:35 2011
|
||||
@@ -28,7 +28,7 @@
|
||||
#ifndef __SHARP_UUID_HPP_
|
||||
#define __SHARP_UUID_HPP_
|
||||
|
||||
-#include <uuid/uuid.h>
|
||||
+#include <uuid.h>
|
||||
#include <string>
|
||||
|
||||
namespace sharp {
|
4
x11/gnome/gnote/pkg/DESCR
Normal file
4
x11/gnome/gnote/pkg/DESCR
Normal file
@ -0,0 +1,4 @@
|
||||
Gnote is a port of Tomboy to C++.
|
||||
|
||||
It is the same note taking application, including most of the add-ins
|
||||
(more are to come). Synchronization support is being worked on.
|
304
x11/gnome/gnote/pkg/PLIST
Normal file
304
x11/gnome/gnote/pkg/PLIST
Normal file
@ -0,0 +1,304 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/06 11:25:46 jasper Exp $
|
||||
@pkgpath x11/gnome/tomboy
|
||||
@bin bin/gnote
|
||||
lib/gnote/
|
||||
lib/gnote/addins/
|
||||
lib/gnote/addins/0.7.4/
|
||||
@comment lib/gnote/addins/0.7.4/backlinks.la
|
||||
lib/gnote/addins/0.7.4/backlinks.so
|
||||
@comment lib/gnote/addins/0.7.4/bugzilla.la
|
||||
lib/gnote/addins/0.7.4/bugzilla.so
|
||||
@comment lib/gnote/addins/0.7.4/exporttohtml.la
|
||||
lib/gnote/addins/0.7.4/exporttohtml.so
|
||||
@comment lib/gnote/addins/0.7.4/fixedwidth.la
|
||||
lib/gnote/addins/0.7.4/fixedwidth.so
|
||||
@comment lib/gnote/addins/0.7.4/inserttimestamp.la
|
||||
lib/gnote/addins/0.7.4/inserttimestamp.so
|
||||
@comment lib/gnote/addins/0.7.4/noteoftheday.la
|
||||
lib/gnote/addins/0.7.4/noteoftheday.so
|
||||
@comment lib/gnote/addins/0.7.4/printnotes.la
|
||||
lib/gnote/addins/0.7.4/printnotes.so
|
||||
@comment lib/gnote/addins/0.7.4/stickynoteimport.la
|
||||
lib/gnote/addins/0.7.4/stickynoteimport.so
|
||||
@comment lib/gnote/addins/0.7.4/tomboyimport.la
|
||||
lib/gnote/addins/0.7.4/tomboyimport.so
|
||||
@comment lib/gnote/addins/0.7.4/underline.la
|
||||
lib/gnote/addins/0.7.4/underline.so
|
||||
@man man/man1/gnote.1
|
||||
share/applications/gnote.desktop
|
||||
share/gnome/help/gnote/
|
||||
share/gnome/help/gnote/C/
|
||||
share/gnome/help/gnote/C/figures/
|
||||
share/gnome/help/gnote/C/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/C/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/C/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/C/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/C/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/C/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/C/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/C/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/C/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/C/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/C/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/C/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/C/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/C/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/C/figures/new-notebook.png
|
||||
share/gnome/help/gnote/C/figures/note-template.png
|
||||
share/gnome/help/gnote/C/figures/notebook-icon.png
|
||||
share/gnome/help/gnote/C/gnote.xml
|
||||
share/gnome/help/gnote/C/legal.xml
|
||||
share/gnome/help/gnote/de/
|
||||
share/gnome/help/gnote/de/figures/
|
||||
share/gnome/help/gnote/de/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/de/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/de/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/de/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/de/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/de/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/de/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/de/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/de/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/de/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/de/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/de/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/de/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/de/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/de/figures/new-notebook.png
|
||||
share/gnome/help/gnote/de/figures/note-template.png
|
||||
share/gnome/help/gnote/de/figures/notebook-icon.png
|
||||
share/gnome/help/gnote/de/gnote.xml
|
||||
share/gnome/help/gnote/de/legal.xml
|
||||
share/gnome/help/gnote/el/
|
||||
share/gnome/help/gnote/el/figures/
|
||||
share/gnome/help/gnote/el/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/el/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/el/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/el/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/el/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/el/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/el/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/el/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/el/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/el/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/el/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/el/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/el/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/el/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/el/figures/new-notebook.png
|
||||
share/gnome/help/gnote/el/figures/note-template.png
|
||||
share/gnome/help/gnote/el/figures/notebook-icon.png
|
||||
share/gnome/help/gnote/el/gnote.xml
|
||||
share/gnome/help/gnote/el/legal.xml
|
||||
share/gnome/help/gnote/es/
|
||||
share/gnome/help/gnote/es/figures/
|
||||
share/gnome/help/gnote/es/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/es/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/es/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/es/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/es/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/es/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/es/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/es/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/es/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/es/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/es/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/es/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/es/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/es/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/es/figures/new-notebook.png
|
||||
share/gnome/help/gnote/es/figures/note-template.png
|
||||
share/gnome/help/gnote/es/figures/notebook-icon.png
|
||||
share/gnome/help/gnote/es/gnote.xml
|
||||
share/gnome/help/gnote/es/legal.xml
|
||||
share/gnome/help/gnote/fr/
|
||||
share/gnome/help/gnote/fr/figures/
|
||||
share/gnome/help/gnote/fr/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/fr/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/fr/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/fr/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/fr/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/fr/figures/new-notebook.png
|
||||
share/gnome/help/gnote/fr/figures/note-template.png
|
||||
share/gnome/help/gnote/fr/figures/notebook-icon.png
|
||||
share/gnome/help/gnote/fr/gnote.xml
|
||||
share/gnome/help/gnote/fr/legal.xml
|
||||
share/gnome/help/gnote/sl/
|
||||
share/gnome/help/gnote/sl/figures/
|
||||
share/gnome/help/gnote/sl/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/sl/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/sl/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/sl/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/sl/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/sl/figures/new-notebook.png
|
||||
share/gnome/help/gnote/sl/figures/note-template.png
|
||||
share/gnome/help/gnote/sl/figures/notebook-icon.png
|
||||
share/gnome/help/gnote/sl/gnote.xml
|
||||
share/gnome/help/gnote/sl/legal.xml
|
||||
share/gnome/help/gnote/sv/
|
||||
share/gnome/help/gnote/sv/figures/
|
||||
share/gnome/help/gnote/sv/figures/add-notebook-search.png
|
||||
share/gnome/help/gnote/sv/figures/add-to-notebook.png
|
||||
share/gnome/help/gnote/sv/figures/delete-notebook.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-main-menu.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-new-note.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-panel.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-pindown.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-pinup.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-preferences-add-ins.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-preferences-editing.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-preferences-hotkeys.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-preferences-synchronization.png
|
||||
share/gnome/help/gnote/sv/figures/gnote-tools.png
|
||||
share/gnome/help/gnote/sv/figures/move-notes-search.png
|
||||
share/gnome/help/gnote/sv/figures/new-notebook.png
|
||||
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/
|
||||
share/gnome/help/gnote/zh_CN/figures/
|
||||
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
|
||||
share/gnote/
|
||||
share/gnote/GNOME_GnoteApplet.xml
|
||||
share/gnote/UIManagerLayout.xml
|
||||
share/gnote/exporttohtml.xsl
|
||||
share/gnote/icons/
|
||||
share/gnote/icons/hicolor/
|
||||
share/gnote/icons/hicolor/16x16/
|
||||
share/gnote/icons/hicolor/16x16/actions/
|
||||
share/gnote/icons/hicolor/16x16/actions/note-new.png
|
||||
share/gnote/icons/hicolor/16x16/actions/notebook-new.png
|
||||
share/gnote/icons/hicolor/16x16/apps/
|
||||
share/gnote/icons/hicolor/16x16/apps/bug.png
|
||||
share/gnote/icons/hicolor/16x16/places/
|
||||
share/gnote/icons/hicolor/16x16/places/note.png
|
||||
share/gnote/icons/hicolor/16x16/places/notebook.png
|
||||
share/gnote/icons/hicolor/16x16/status/
|
||||
share/gnote/icons/hicolor/16x16/status/pin-active.png
|
||||
share/gnote/icons/hicolor/16x16/status/pin-down.png
|
||||
share/gnote/icons/hicolor/16x16/status/pin-up.png
|
||||
share/gnote/icons/hicolor/22x22/
|
||||
share/gnote/icons/hicolor/22x22/actions/
|
||||
share/gnote/icons/hicolor/22x22/actions/filter-note-all.png
|
||||
share/gnote/icons/hicolor/22x22/actions/filter-note-unfiled.png
|
||||
share/gnote/icons/hicolor/22x22/actions/note-new.png
|
||||
share/gnote/icons/hicolor/22x22/actions/notebook-new.png
|
||||
share/gnote/icons/hicolor/22x22/places/
|
||||
share/gnote/icons/hicolor/22x22/places/note.png
|
||||
share/gnote/icons/hicolor/22x22/places/notebook.png
|
||||
share/gnote/icons/hicolor/24x24/
|
||||
share/gnote/icons/hicolor/24x24/actions/
|
||||
share/gnote/icons/hicolor/24x24/actions/filter-note-all.png
|
||||
share/gnote/icons/hicolor/24x24/actions/filter-note-unfiled.png
|
||||
share/gnote/icons/hicolor/24x24/actions/note-new.png
|
||||
share/gnote/icons/hicolor/24x24/actions/notebook-new.png
|
||||
share/gnote/icons/hicolor/24x24/places/
|
||||
share/gnote/icons/hicolor/24x24/places/note.png
|
||||
share/gnote/icons/hicolor/24x24/places/notebook.png
|
||||
share/gnote/icons/hicolor/48x48/
|
||||
share/gnote/icons/hicolor/48x48/actions/
|
||||
share/gnote/icons/hicolor/48x48/actions/notebook-new.png
|
||||
share/gnote/icons/hicolor/scalable/
|
||||
share/gnote/icons/hicolor/scalable/actions/
|
||||
share/gnote/icons/hicolor/scalable/actions/notebook-new.svg
|
||||
share/icons/hicolor/16x16/apps/gnote.png
|
||||
share/icons/hicolor/22x22/apps/gnote.png
|
||||
share/icons/hicolor/24x24/apps/gnote.png
|
||||
share/icons/hicolor/32x32/apps/gnote.png
|
||||
share/icons/hicolor/48x48/apps/gnote.png
|
||||
share/icons/hicolor/scalable/apps/gnote.svg
|
||||
share/locale/ar/LC_MESSAGES/gnote.mo
|
||||
share/locale/as/LC_MESSAGES/gnote.mo
|
||||
share/locale/bg/LC_MESSAGES/gnote.mo
|
||||
share/locale/bn_IN/LC_MESSAGES/gnote.mo
|
||||
share/locale/ca/LC_MESSAGES/gnote.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/gnote.mo
|
||||
share/locale/cs/LC_MESSAGES/gnote.mo
|
||||
share/locale/da/LC_MESSAGES/gnote.mo
|
||||
share/locale/de/LC_MESSAGES/gnote.mo
|
||||
share/locale/el/LC_MESSAGES/gnote.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gnote.mo
|
||||
share/locale/es/LC_MESSAGES/gnote.mo
|
||||
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
|
||||
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/nb/LC_MESSAGES/gnote.mo
|
||||
share/locale/or/LC_MESSAGES/gnote.mo
|
||||
share/locale/pa/LC_MESSAGES/gnote.mo
|
||||
share/locale/pl/LC_MESSAGES/gnote.mo
|
||||
share/locale/pt/LC_MESSAGES/gnote.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/gnote.mo
|
||||
share/locale/ro/LC_MESSAGES/gnote.mo
|
||||
share/locale/ru/LC_MESSAGES/gnote.mo
|
||||
share/locale/sl/LC_MESSAGES/gnote.mo
|
||||
share/locale/sv/LC_MESSAGES/gnote.mo
|
||||
share/locale/ta/LC_MESSAGES/gnote.mo
|
||||
share/locale/te/LC_MESSAGES/gnote.mo
|
||||
share/locale/th/LC_MESSAGES/gnote.mo
|
||||
share/locale/uk/LC_MESSAGES/gnote.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/gnote.mo
|
||||
share/omf/gnote/
|
||||
share/omf/gnote/gnote-C.omf
|
||||
share/omf/gnote/gnote-de.omf
|
||||
share/omf/gnote/gnote-el.omf
|
||||
share/omf/gnote/gnote-es.omf
|
||||
share/omf/gnote/gnote-fr.omf
|
||||
share/omf/gnote/gnote-sl.omf
|
||||
share/omf/gnote/gnote-sv.omf
|
||||
share/omf/gnote/gnote-zh_CN.omf
|
||||
@unexec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-uninstall-rule %D/${SCHEMAS_INSTDIR}/*.schemas > /dev/null
|
||||
${SCHEMAS_INSTDIR}/
|
||||
${SCHEMAS_INSTDIR}/gnote.schemas
|
||||
@exec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-install-rule %D/${SCHEMAS_INSTDIR}/*.schemas > /dev/null
|
||||
@exec %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor 2> /dev/null || true
|
||||
@unexec-delete %D/bin/gtk-update-icon-cache -q -f -t %D/share/icons/hicolor 2> /dev/null || true
|
||||
@exec %D/bin/update-desktop-database
|
||||
@unexec-delete %D/bin/update-desktop-database
|
Loading…
Reference in New Issue
Block a user