summaryrefslogtreecommitdiff
path: root/wm/windowlab
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2005-10-19 06:44:48 +0000
committerxtraeme <xtraeme>2005-10-19 06:44:48 +0000
commitfd1a0ea7f3bd877ddaa00a3be4929678431de2d0 (patch)
tree9356cd9249b2bd0608394cd642cf65b48a5bfa45 /wm/windowlab
parent0301986735775f6174479bd4ab12d109414639f2 (diff)
downloadpkgsrc-fd1a0ea7f3bd877ddaa00a3be4929678431de2d0.tar.gz
Update to 1.33
Changes: * integrated changes from Dushkin (thanks!): * scrolling the mouse wheel in the taskbar now task switches * integrated changes from Antti Nykänen (thanks!): * fixed a crash that occurred on the BSDs (and presumably on other systems without /proc/self/exe) * integrated changes from Gregor Imboden (thanks!): * fixed a crash that ocurrred when there are no focused windows and alt + F12 is pressed was fixed * events are always replayed rather than sometimes being eaten * new windows are no longer given focus
Diffstat (limited to 'wm/windowlab')
-rw-r--r--wm/windowlab/Makefile7
-rw-r--r--wm/windowlab/distinfo9
-rw-r--r--wm/windowlab/patches/patch-ab20
3 files changed, 6 insertions, 30 deletions
diff --git a/wm/windowlab/Makefile b/wm/windowlab/Makefile
index 5ce82f103e0..70908bcab8b 100644
--- a/wm/windowlab/Makefile
+++ b/wm/windowlab/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.11 2005/09/04 06:05:20 xtraeme Exp $
+# $NetBSD: Makefile,v 1.12 2005/10/19 06:44:48 xtraeme Exp $
#
-DISTNAME= windowlab-1.32
+DISTNAME= windowlab-1.33
CATEGORIES= wm
MASTER_SITES= http://www.nickgravgaard.com/windowlab/
EXTRACT_SUFX= .tar
@@ -20,9 +20,6 @@ CONF_FILES= ${EGDIR}/windowlab.menurc ${PKG_SYSCONFDIR}/windowlab.menurc
INSTALLATION_DIRS= share/examples/windowlab
-post-extract:
- @${CHMOD} -R +x ${WRKSRC}
-
post-install:
${INSTALL_DATA_DIR} ${EGDIR}
${INSTALL_DATA} ${WRKSRC}/windowlab.menurc ${EGDIR}
diff --git a/wm/windowlab/distinfo b/wm/windowlab/distinfo
index 6c23e89e744..d6d6c944044 100644
--- a/wm/windowlab/distinfo
+++ b/wm/windowlab/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.3 2005/09/04 06:05:20 xtraeme Exp $
+$NetBSD: distinfo,v 1.4 2005/10/19 06:44:48 xtraeme Exp $
-SHA1 (windowlab-1.32.tar) = 3927f214a0411d725aa14afc4f881d9bbda9ed81
-RMD160 (windowlab-1.32.tar) = ad192bf1a7ceddaf6ac078cebfafaeb582248923
-Size (windowlab-1.32.tar) = 163840 bytes
+SHA1 (windowlab-1.33.tar) = 2b57873de149a73116dfa27ac951f230fd452c71
+RMD160 (windowlab-1.33.tar) = 4a4a93406e80e926c0b9adcc4ea388f849c3f8e6
+Size (windowlab-1.33.tar) = 163840 bytes
SHA1 (patch-aa) = 028b6297d880e293845e01a20ee58d6a4db808f1
-SHA1 (patch-ab) = 3a631fadc8a9a15a1175c41bf0d6ce394578b9fd
diff --git a/wm/windowlab/patches/patch-ab b/wm/windowlab/patches/patch-ab
deleted file mode 100644
index 56297b6540e..00000000000
--- a/wm/windowlab/patches/patch-ab
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/09/04 06:05:20 xtraeme Exp $
-
---- menufile.c.orig 2005-09-04 07:57:21.000000000 +0200
-+++ menufile.c 2005-09-04 07:57:40.000000000 +0200
-@@ -44,6 +44,7 @@
- #endif
- if ((menufile = fopen(menurcpath, "r")) == NULL)
- {
-+#ifdef __linux__
- // get location of the executable
- if (readlink("/proc/self/exe", menurcpath, PATH_MAX) == -1)
- {
-@@ -51,6 +52,7 @@
- menurcpath[0] = '.';
- menurcpath[1] = '\0';
- }
-+#endif
- *(strrchr(menurcpath, '/')) = '\0';
- *(strrchr(menurcpath, '/')) = '\0';
- strncat(menurcpath, "/etc/windowlab.menurc", PATH_MAX);