summaryrefslogtreecommitdiff
path: root/wm
diff options
context:
space:
mode:
authorhauke <hauke>2008-06-16 14:55:03 +0000
committerhauke <hauke>2008-06-16 14:55:03 +0000
commit0b518d6bfa76ae71f1092c58f69a8e8a8f601c6e (patch)
tree90e55b20ef236871036af3369d6ae942dc7fc1c7 /wm
parent3e1a78f85fb2644f558f89be7f1ad3cdced9f965 (diff)
downloadpkgsrc-0b518d6bfa76ae71f1092c58f69a8e8a8f601c6e.tar.gz
Minor update to IceWM 1.2.35:
1.2.35: 2008-01-05 - Application tray bug fixes - Add encoding/language to about dialog While we're here, re-instate Beastie - the way icewm selects the start menu icon changed with 1.2.28. It's the little things that count. :)
Diffstat (limited to 'wm')
-rw-r--r--wm/icewm/Makefile.common4
-rw-r--r--wm/icewm/distinfo9
-rw-r--r--wm/icewm/patches/patch-ak16
3 files changed, 23 insertions, 6 deletions
diff --git a/wm/icewm/Makefile.common b/wm/icewm/Makefile.common
index 6775f96b30f..84a44049041 100644
--- a/wm/icewm/Makefile.common
+++ b/wm/icewm/Makefile.common
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile.common,v 1.61 2008/06/16 10:17:56 hauke Exp $
+# $NetBSD: Makefile.common,v 1.62 2008/06/16 14:55:03 hauke Exp $
-DISTNAME= icewm-1.2.34
+DISTNAME= icewm-1.2.35
CATEGORIES= x11 wm
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=icewm/}
diff --git a/wm/icewm/distinfo b/wm/icewm/distinfo
index 2017498c741..39bf9680315 100644
--- a/wm/icewm/distinfo
+++ b/wm/icewm/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.34 2008/06/16 10:17:56 hauke Exp $
+$NetBSD: distinfo,v 1.35 2008/06/16 14:55:03 hauke Exp $
-SHA1 (icewm-1.2.34.tar.gz) = 9cc7c47e47767eccf957561f1a166ffe631c3d42
-RMD160 (icewm-1.2.34.tar.gz) = f85a9332312134d22db19e806d9e7122ece76f07
-Size (icewm-1.2.34.tar.gz) = 830558 bytes
+SHA1 (icewm-1.2.35.tar.gz) = a0174901ca89aa091a58efedfec1536c5e477210
+RMD160 (icewm-1.2.35.tar.gz) = 19b044d9f88f860d3e25a3f419404e106162f40b
+Size (icewm-1.2.35.tar.gz) = 831087 bytes
SHA1 (patch-aa) = 28202bab4996d320843f811629301df1abd2608e
SHA1 (patch-ad) = 371c8939bcdcdb6c49cc8db2246370c95c9ff088
SHA1 (patch-aj) = a6cf8c8daeb54b1e75642dc846c3e6ce4a619fa2
+SHA1 (patch-ak) = 20917a172f8e2b05966109cd7fae62fed29688b6
diff --git a/wm/icewm/patches/patch-ak b/wm/icewm/patches/patch-ak
new file mode 100644
index 00000000000..3a9fae03a89
--- /dev/null
+++ b/wm/icewm/patches/patch-ak
@@ -0,0 +1,16 @@
+$NetBSD: patch-ak,v 1.3 2008/06/16 14:55:03 hauke Exp $
+
+--- src/wmtaskbar.cc.orig 2008-01-05 08:34:24.000000000 +0100
++++ src/wmtaskbar.cc
+@@ -81,7 +81,10 @@ static void initPixmaps() {
+ * filename. This will be unified and be a forced standard in
+ * icewm-2
+ */
+- startImage = themedirs.loadImage(base, "start.xpm");
++ /* pkgsrc *BSD: Try Beastie first */
++ startImage = subdirs.loadImage(base, START_PIXMAP);
++ if (startImage == null || !startImage->valid())
++ startImage = themedirs.loadImage(base, "start.xpm");
+ if (startImage == null || !startImage->valid())
+ startImage = themedirs.loadImage(base, "linux.xpm");
+ if (startImage == null || !startImage->valid())