summaryrefslogtreecommitdiff
path: root/community/osmo
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/osmo
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/osmo')
-rw-r--r--community/osmo/ChangeLog12
-rw-r--r--community/osmo/PKGBUILD36
-rw-r--r--community/osmo/osmo-0.2.10-libnotify-0.7.patch48
-rw-r--r--community/osmo/osmo.install12
4 files changed, 0 insertions, 108 deletions
diff --git a/community/osmo/ChangeLog b/community/osmo/ChangeLog
deleted file mode 100644
index d6c25b63f..000000000
--- a/community/osmo/ChangeLog
+++ /dev/null
@@ -1,12 +0,0 @@
-2010-04-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * FS#18941 solved
-
-2010-04-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * Update to major release 0.2.10
-
-2009-03-26 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * FS#13879 solved
-
-2009-03-17 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
- * Updated to major version 0.2.6
-
diff --git a/community/osmo/PKGBUILD b/community/osmo/PKGBUILD
deleted file mode 100644
index d63f21c05..000000000
--- a/community/osmo/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 90853 2013-05-14 21:40:39Z andrea $
-# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
-# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
-# Contributor: Benzo <mb_benzo@yahoo.es>
-
-pkgname=osmo
-pkgver=0.2.10
-pkgrel=8
-pkgdesc="A handy personal organizer"
-arch=('i686' 'x86_64')
-url="http://clayo.org/osmo/"
-license=('GPL')
-depends=('gtk2>=2.12' 'gtkspell' 'hicolor-icon-theme' 'libical' 'libnotify' 'libgtkhtml' 'libgringotts>=1.2.1' 'libxml2')
-makedepends=('pkgconfig' 'libtar')
-optdepends=('sox: to play sounds')
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/osmo-pim/$pkgname-$pkgver.tar.gz"
- 'osmo-0.2.10-libnotify-0.7.patch')
-md5sums=('a774db748228efee96186158d553ade9'
- '0b146a548f2d3208dc88e6501a8f3448')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- patch -Np0 -i "$srcdir/osmo-0.2.10-libnotify-0.7.patch"
-
- #libical 0.4.4 workaround
- LIBICAL_CFLAGS='-I/usr/include/libical' ./configure --prefix=/usr
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-}
diff --git a/community/osmo/osmo-0.2.10-libnotify-0.7.patch b/community/osmo/osmo-0.2.10-libnotify-0.7.patch
deleted file mode 100644
index d626ba2f1..000000000
--- a/community/osmo/osmo-0.2.10-libnotify-0.7.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-http://pkgs.fedoraproject.org/gitweb/?p=osmo.git;a=blob_plain;f=osmo-0.2.10-libnotify-0.7.0.patch;hb=HEAD
-
---- src/check_events.c
-+++ src/check_events.c
-@@ -454,9 +454,9 @@
- a->date = 0;
-
- if (textdesc != NULL)
-- a->notify = notify_notification_new (item->summary, textdesc, GTK_STOCK_DIALOG_WARNING, NULL);
-+ a->notify = notify_notification_new (item->summary, textdesc, GTK_STOCK_DIALOG_WARNING);
- else
-- a->notify = notify_notification_new (item->summary, text, GTK_STOCK_DIALOG_WARNING, NULL);
-+ a->notify = notify_notification_new (item->summary, text, GTK_STOCK_DIALOG_WARNING);
-
- g_free (textdesc);
- g_free (text);
-@@ -483,9 +483,6 @@
- #endif /* HAVE_LIBNOTIFY */
-
- if (gtk_status_icon_get_visible (appGUI->osmo_trayicon)) {
--#ifdef HAVE_LIBNOTIFY
-- notify_notification_attach_to_status_icon (a->notify, appGUI->osmo_trayicon);
--#endif /* HAVE_LIBNOTIFY */
- gtk_status_icon_set_from_stock (appGUI->osmo_trayicon, OSMO_STOCK_SYSTRAY_TASK);
-
- if (config.blink_on_events) {
-@@ -532,9 +529,9 @@
- a->time = -1;
- a->date = 0;
- if (textdesc != NULL)
-- a->notify = notify_notification_new (_("Alarm warning!"), textdesc, GTK_STOCK_DIALOG_INFO, NULL);
-+ a->notify = notify_notification_new (_("Alarm warning!"), textdesc, GTK_STOCK_DIALOG_INFO);
- else
-- a->notify = notify_notification_new (_("Alarm warning!"), text, GTK_STOCK_DIALOG_INFO, NULL);
-+ a->notify = notify_notification_new (_("Alarm warning!"), text, GTK_STOCK_DIALOG_INFO);
-
- notify_notification_set_timeout (a->notify, NOTIFY_EXPIRES_NEVER);
- notify_notification_set_urgency (a->notify, NOTIFY_URGENCY_NORMAL);
-@@ -545,9 +542,6 @@
- #endif /* HAVE_LIBNOTIFY */
-
- if (gtk_status_icon_get_visible (appGUI->osmo_trayicon)) {
--#ifdef HAVE_LIBNOTIFY
-- notify_notification_attach_to_status_icon (a->notify, appGUI->osmo_trayicon);
--#endif /* HAVE_LIBNOTIFY */
- gtk_status_icon_set_from_stock (appGUI->osmo_trayicon, OSMO_STOCK_SYSTRAY_TASK);
-
- if (config.blink_on_events) {
diff --git a/community/osmo/osmo.install b/community/osmo/osmo.install
deleted file mode 100644
index 66b9463d4..000000000
--- a/community/osmo/osmo.install
+++ /dev/null
@@ -1,12 +0,0 @@
-post_install() {
- which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
-}
-