summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Matteo Bernardini <ponce@slackbuilds.org>2014-12-07 19:19:13 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-12-13 10:35:58 +0700
commit1dc2929489321657474b625993ae16280f10d93a (patch)
tree5efe7232b7b42aa8edc194e682b0507a5c976057
parent450ecf29e13dddee5369d6c184451918a9965937 (diff)
downloadslackbuilds-1dc2929489321657474b625993ae16280f10d93a.tar.gz
slackbuilds-1dc2929489321657474b625993ae16280f10d93a.tar.xz
desktop/lxpanel: Updated for version 0.8.0.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r--desktop/lxpanel/lxpanel.SlackBuild5
-rw-r--r--desktop/lxpanel/lxpanel.info6
-rw-r--r--desktop/lxpanel/patches/0001-fix_crash_after_click_on_empty_part_of_panel.patch25
3 files changed, 4 insertions, 32 deletions
diff --git a/desktop/lxpanel/lxpanel.SlackBuild b/desktop/lxpanel/lxpanel.SlackBuild
index bc4f6cae32..cd0c413a6c 100644
--- a/desktop/lxpanel/lxpanel.SlackBuild
+++ b/desktop/lxpanel/lxpanel.SlackBuild
@@ -24,7 +24,7 @@
# Modified by Matteo Bernardini <ponce@slackbuilds.org>
PRGNAM=lxpanel
-VERSION=${VERSION:-0.7.0}
+VERSION=${VERSION:-0.8.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -72,9 +72,6 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
-# apply patches from upstream
-for i in $CWD/patches/* ; do patch -p1 < $i ; done
-
sh autogen.sh || true
CFLAGS="$SLKCFLAGS" \
diff --git a/desktop/lxpanel/lxpanel.info b/desktop/lxpanel/lxpanel.info
index 037093fc1e..3b7a5a2f99 100644
--- a/desktop/lxpanel/lxpanel.info
+++ b/desktop/lxpanel/lxpanel.info
@@ -1,8 +1,8 @@
PRGNAM="lxpanel"
-VERSION="0.7.0"
+VERSION="0.8.0"
HOMEPAGE="http://wiki.lxde.org/en/LXPanel"
-DOWNLOAD="http://downloads.sf.net/lxde/lxpanel-0.7.0.tar.xz"
-MD5SUM="39698de2c5eda2837607762c9f522cd0"
+DOWNLOAD="http://downloads.sf.net/lxde/lxpanel-0.8.0.tar.xz"
+MD5SUM="aa5bc73f4fe1d8006248a1f45f0a8a21"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="lxmenu-data libfm"
diff --git a/desktop/lxpanel/patches/0001-fix_crash_after_click_on_empty_part_of_panel.patch b/desktop/lxpanel/patches/0001-fix_crash_after_click_on_empty_part_of_panel.patch
deleted file mode 100644
index 5da82482f4..0000000000
--- a/desktop/lxpanel/patches/0001-fix_crash_after_click_on_empty_part_of_panel.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From d4943c80cded6325284be8b58003fe63dd6e8255 Mon Sep 17 00:00:00 2001
-From: Raimar <no@email.de>
-Date: Thu, 21 Aug 2014 23:21:28 +0200
-Subject: [PATCH] fix crash after click on empty part of panel
-
----
- src/panel.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/panel.c b/src/panel.c
-index 6b2ede6..87903d8 100644
---- a/src/panel.c
-+++ b/src/panel.c
-@@ -233,7 +233,7 @@ static gboolean lxpanel_button_press(GtkWidget *widget, GdkEventButton *event)
- gtk_menu_popup(popup, NULL, NULL, NULL, NULL, event->button, event->time);
- return TRUE;
- }
-- return GTK_WIDGET_CLASS(lxpanel_parent_class)->button_press_event(widget, event);
-+ return FALSE;
- }
-
- static void lxpanel_class_init(PanelToplevelClass *klass)
---
-1.7.10.4
-