summaryrefslogtreecommitdiff
path: root/wm/weewm
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2008-04-25 02:28:24 +0000
committerreed <reed@pkgsrc.org>2008-04-25 02:28:24 +0000
commit2a66aa0b39fd0676e0e68d30ab7107ad2ff81e27 (patch)
tree73832fe4847cd70f8622eebd40dbe822b2c66dbf /wm/weewm
parent8fc3d7f7fec4a0353468de038f0398ae0cddd965 (diff)
downloadpkgsrc-2a66aa0b39fd0676e0e68d30ab7107ad2ff81e27.tar.gz
Update MASTER_SITES and HOMEPAGE as old ones no longer work.
Add patch-ac to fall back to "fixed" font instead of exiting. I submitted to upstream developers a couple weeks ago. I was told that WeeWM is no longer maintained. (If you use this window manager, please let me know.)
Diffstat (limited to 'wm/weewm')
-rw-r--r--wm/weewm/Makefile8
-rw-r--r--wm/weewm/distinfo3
-rw-r--r--wm/weewm/patches/patch-ac14
3 files changed, 20 insertions, 5 deletions
diff --git a/wm/weewm/Makefile b/wm/weewm/Makefile
index 662e8de46bf..8474b225563 100644
--- a/wm/weewm/Makefile
+++ b/wm/weewm/Makefile
@@ -1,14 +1,14 @@
-# $NetBSD: Makefile,v 1.8 2007/02/01 22:31:12 joerg Exp $
+# $NetBSD: Makefile,v 1.9 2008/04/25 02:28:24 reed Exp $
#
DISTNAME= weewm-0.0.2
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= wm
-MASTER_SITES= http://www.weewm.org/download/
+MASTER_SITES= http://weewm.flashtux.org/download.php
EXTRACT_SUFX= .tar.bz2
MAINTAINER= minskim@NetBSD.org
-HOMEPAGE= http://www.weewm.org/
+HOMEPAGE= http://weewm.flashtux.org/
COMMENT= Fast and ultra light windowmanager with total keyboard control
diff --git a/wm/weewm/distinfo b/wm/weewm/distinfo
index ac3a1304217..53bfe17d588 100644
--- a/wm/weewm/distinfo
+++ b/wm/weewm/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.3 2005/04/29 02:31:48 minskim Exp $
+$NetBSD: distinfo,v 1.4 2008/04/25 02:28:24 reed Exp $
SHA1 (weewm-0.0.2.tar.bz2) = 2ed619043f11bca71ef62caa255aa2dfb549532b
RMD160 (weewm-0.0.2.tar.bz2) = 8fe602c67e5fbe6ac2ee4a12a5a1704aba4de4e3
Size (weewm-0.0.2.tar.bz2) = 44051 bytes
SHA1 (patch-aa) = 9a7c9b1a5e85f51ed7c52ae39f5b08b95cbc1c08
SHA1 (patch-ab) = 14ebcb4169fd466057fb666cd86d5c4de361306e
+SHA1 (patch-ac) = 2251508931d9f1874a868fd83fd449cb181257d2
diff --git a/wm/weewm/patches/patch-ac b/wm/weewm/patches/patch-ac
new file mode 100644
index 00000000000..6652a5ed4ae
--- /dev/null
+++ b/wm/weewm/patches/patch-ac
@@ -0,0 +1,14 @@
+$NetBSD: patch-ac,v 1.1 2008/04/25 02:28:24 reed Exp $
+
+--- src/weewm.c.orig 2008-04-05 12:48:23.000000000 -0500
++++ src/weewm.c 2008-04-05 12:51:26.000000000 -0500
+@@ -305,7 +305,8 @@
+ if (!font)
+ {
+ fprintf(stderr, "error loading font\n");
+- exit(1);
++ font = XLoadQueryFont(display, "fixed");
++/* exit(1); */
+ }
+
+ sattr.event_mask = SubstructureRedirectMask | SubstructureNotifyMask | PropertyChangeMask | ButtonPressMask | ButtonReleaseMask;