summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Matteo Bernardini2013-11-16 20:09:18 +0100
committer Robby Workman2013-11-16 20:58:39 +0100
commit47a98f7eae0d072914b21b8e5f8c1dbd75640e5e (patch)
treebe8263e3c726277d9202fe694a2af2aa699aeaec /desktop
parentd51cbb07a79a1dbc544180fab045d310f7ec59fc (diff)
downloadslackbuilds-47a98f7eae0d072914b21b8e5f8c1dbd75640e5e.tar.gz
desktop/pidgin-libnotify: Added a patch for the newer libnotify.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/pidgin-libnotify/pidgin-libnotify-0.14-libnotify-0.7.patch18
-rw-r--r--desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild6
2 files changed, 23 insertions, 1 deletions
diff --git a/desktop/pidgin-libnotify/pidgin-libnotify-0.14-libnotify-0.7.patch b/desktop/pidgin-libnotify/pidgin-libnotify-0.14-libnotify-0.7.patch
new file mode 100644
index 0000000000..40e6c02b81
--- /dev/null
+++ b/desktop/pidgin-libnotify/pidgin-libnotify-0.14-libnotify-0.7.patch
@@ -0,0 +1,18 @@
+--- src/pidgin-libnotify.c
++++ src/pidgin-libnotify.c
+@@ -286,7 +286,15 @@
+ g_free (tr_body);
+ return;
+ }
++#ifdef NOTIFY_CHECK_VERSION
++#if NOTIFY_CHECK_VERSION (0, 7, 0)
++ notification = notify_notification_new (title, tr_body, NULL);
++#else
+ notification = notify_notification_new (title, tr_body, NULL, NULL);
++#endif
++#else
++ notification = notify_notification_new (title, tr_body, NULL, NULL);
++#endif
+ purple_debug_info (PLUGIN_ID, "notify(), new: "
+ "title: '%s', body: '%s', buddy: '%s'\n",
+ title, tr_body, best_name (buddy));
diff --git a/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild b/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild
index 25d1880cf7..4fa784c39f 100644
--- a/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild
+++ b/desktop/pidgin-libnotify/pidgin-libnotify.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=pidgin-libnotify
VERSION=0.14
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
@@ -73,6 +73,9 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
+# Thanks Gentoo
+patch -p0 < $CWD/pidgin-libnotify-0.14-libnotify-0.7.patch
+
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
@@ -81,6 +84,7 @@ CXXFLAGS="$SLKCFLAGS" \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
+ --disable-static \
--build=$ARCH-slackware-linux
make