From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/gnote/PKGBUILD | 33 +++++++++++++++++++++++++++++++++ community/gnote/gnote.install | 22 ++++++++++++++++++++++ community/gnote/gtk2.20.patch | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100644 community/gnote/PKGBUILD create mode 100644 community/gnote/gnote.install create mode 100644 community/gnote/gtk2.20.patch (limited to 'community/gnote') diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD new file mode 100644 index 000000000..d2fb73ada --- /dev/null +++ b/community/gnote/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 41039 2011-03-03 11:13:48Z ibiru $ +# Maintainer: Ionut Biru +# Contributor: uastasi +pkgname=gnote +pkgver=0.7.3 +pkgrel=3 +pkgdesc="Experimental port of Tomboy to C++ " +arch=('i686' 'x86_64') +url="http://live.gnome.org/Gnote" +license=('GPL') +depends=('boost-libs' 'gtkspell' 'libpanelappletmm' 'libxslt') +makedepends=('intltool' 'gnome-doc-utils' 'boost') +options=('!libtool') +install=gnote.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('4853315711baf7647cdae4c2f7d23e22e2b13322605efe3dd98796a06f928321') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=2" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/lib/gnote \ + --disable-scrollkeeper \ + --disable-schemas-install \ + --disable-static + make + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/gconf/schemas" + gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnote ${pkgdir}/etc/gconf/schemas/*.schemas + rm -f ${pkgdir}/etc/gconf/schemas/*.schemas +} diff --git a/community/gnote/gnote.install b/community/gnote/gnote.install new file mode 100644 index 000000000..780fae868 --- /dev/null +++ b/community/gnote/gnote.install @@ -0,0 +1,22 @@ +pkgname=gnote + +post_install() { + usr/sbin/gconfpkg --install ${pkgname} + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install +} + +pre_remove() { + usr/sbin/gconfpkg --uninstall ${pkgname} +} + +post_remove() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} diff --git a/community/gnote/gtk2.20.patch b/community/gnote/gtk2.20.patch new file mode 100644 index 000000000..13b3ee1a9 --- /dev/null +++ b/community/gnote/gtk2.20.patch @@ -0,0 +1,40 @@ +From b2e62adb1ed94f9a3f681bd6d0b8117b2ec3c1f9 Mon Sep 17 00:00:00 2001 +From: Debarshi Ray +Date: Sun, 14 Mar 2010 21:24:21 +0000 +Subject: Replaced deprecated macros -- GTK_WIDGET_REALIZED & GTK_WIDGET_VISIBLE + +These macros have been deprecated since Gtk+ 2.20, and their +replacements were introduced in Gtk+ 2.18. Thus, the minimum Gtk+ +version has been bumped accordingly. +--- +diff --git a/configure.ac b/configure.ac +index 564c0b0..0189b88 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -23,7 +23,7 @@ AC_SUBST(GNOTE_VERSION) + dnl all the library version. + dnl if one is harcoded elsewhere, it is a bug + +-GTK_VERSION=2.12 ++GTK_VERSION=2.18 + LIBGLIBMM_VERSION=2.0 + LIBGTKMM_VERSION=2.12.0 + LIBGCONF_VERSION=2.0.0 +diff --git a/libtomboy/tomboyutil.c b/libtomboy/tomboyutil.c +index 162e4a2..9de7e62 100644 +--- a/libtomboy/tomboyutil.c ++++ b/libtomboy/tomboyutil.c +@@ -153,9 +153,9 @@ tomboy_window_override_user_time (GtkWindow *window) + void + tomboy_window_present_hardcore (GtkWindow *window) + { +- if (!GTK_WIDGET_REALIZED (window)) ++ if (!gtk_widget_get_realized (GTK_WIDGET (window))) + gtk_widget_realize (GTK_WIDGET (window)); +- else if (GTK_WIDGET_VISIBLE (window)) ++ else if (gtk_widget_get_visible (GTK_WIDGET (window))) + tomboy_window_move_to_current_workspace (window); + + tomboy_window_override_user_time (window); +-- +cgit v0.8.3.1 -- cgit v1.2.3-54-g00ecf