pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/wm/evilwm Bring patch from development version to fix ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/beb044b5ac34
branches: trunk
changeset: 461852:beb044b5ac34
user: jmmv <jmmv%pkgsrc.org@localhost>
date: Mon Sep 22 20:30:27 2003 +0000
description:
Bring patch from development version to fix a race condition on old machines.
While here, avoid passing gcc specific flags to the compiler.
Bump PKGREVISION to 1. From Jonathan Perkin in PR pkg/22897.
diffstat:
wm/evilwm/Makefile | 3 ++-
wm/evilwm/distinfo | 5 +++--
wm/evilwm/patches/patch-aa | 18 +++++++++++++++---
wm/evilwm/patches/patch-ab | 14 ++++++++++++++
4 files changed, 34 insertions(+), 6 deletions(-)
diffs (77 lines):
diff -r 90fb8492ad95 -r beb044b5ac34 wm/evilwm/Makefile
--- a/wm/evilwm/Makefile Mon Sep 22 20:22:36 2003 +0000
+++ b/wm/evilwm/Makefile Mon Sep 22 20:30:27 2003 +0000
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.7 2003/09/16 19:23:34 xtraeme Exp $
+# $NetBSD: Makefile,v 1.8 2003/09/22 20:30:27 jmmv Exp $
#
DISTNAME= evilwm_0.99.15.orig
PKGNAME= ${DISTNAME:S/.orig//:S/_/-/}
+PKGREVISION= 1
WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/}
CATEGORIES= wm x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=evilwm/}
diff -r 90fb8492ad95 -r beb044b5ac34 wm/evilwm/distinfo
--- a/wm/evilwm/distinfo Mon Sep 22 20:22:36 2003 +0000
+++ b/wm/evilwm/distinfo Mon Sep 22 20:30:27 2003 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.8 2003/09/16 19:17:39 xtraeme Exp $
+$NetBSD: distinfo,v 1.9 2003/09/22 20:30:27 jmmv Exp $
SHA1 (evilwm_0.99.15.orig.tar.gz) = ce969f1f85042c6e3247bcddf0b6c3bbb8e7dbc0
Size (evilwm_0.99.15.orig.tar.gz) = 22966 bytes
-SHA1 (patch-aa) = b7c0c569cfd1fefdd9b6da3c5139558c19d0bfca
+SHA1 (patch-aa) = 00542a6b1c0f94ea43be5d73379ec16bc369bf80
+SHA1 (patch-ab) = c514ba478a478282298d2b4e8f9f1b7422a98e38
diff -r 90fb8492ad95 -r beb044b5ac34 wm/evilwm/patches/patch-aa
--- a/wm/evilwm/patches/patch-aa Mon Sep 22 20:22:36 2003 +0000
+++ b/wm/evilwm/patches/patch-aa Mon Sep 22 20:30:27 2003 +0000
@@ -1,7 +1,7 @@
-$NetBSD: patch-aa,v 1.8 2003/09/16 19:17:40 xtraeme Exp $
+$NetBSD: patch-aa,v 1.9 2003/09/22 20:30:28 jmmv Exp $
---- Makefile.orig 2003-09-16 21:09:49.000000000 +0200
-+++ Makefile 2003-09-16 21:11:16.000000000 +0200
+--- Makefile.orig Fri Jun 27 11:32:14 2003
++++ Makefile Mon Sep 22 20:07:06 2003
@@ -1,11 +1,11 @@
# If you don't use CC
-CC = gcc
@@ -26,6 +26,18 @@
# To support virtual desktops, uncomment one or both of the following 2 lines.
DEFINES += -DVWM
+@@ -66,9 +66,9 @@
+ #DEFINES += -DXDEBUG # show some X calls
+
+ DEFINES += -DVERSION=\"$(version).$(revision).$(subrev)\" $(DEBIAN)
+-CFLAGS += $(INCLUDES) $(DEFINES) -Os -Wall
++CFLAGS += $(INCLUDES) $(DEFINES)
+ #CFLAGS += $(INCLUDES) $(DEFINES) -g -Wall
+-CFLAGS += -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings -Wundef
++#CFLAGS += -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wcast-qual -Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings -Wundef
+ LDFLAGS += $(LDPATH) $(LIBS)
+
+ HEADERS = evilwm.h
@@ -90,9 +90,8 @@
doinstall:
diff -r 90fb8492ad95 -r beb044b5ac34 wm/evilwm/patches/patch-ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/wm/evilwm/patches/patch-ab Mon Sep 22 20:30:27 2003 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-ab,v 1.1 2003/09/22 20:30:28 jmmv Exp $
+
+--- screen.c.orig Mon Sep 22 20:04:18 2003
++++ screen.c Mon Sep 22 20:04:35 2003
+@@ -356,7 +356,8 @@
+ #endif
+
+ void unhide(Client *c, int raise) {
+- c->ignore_unmap = 0;
++ if (!c->ignore_unmap)
++ c->ignore_unmap = 0;
+ XMapWindow(dpy, c->window);
+ raise ? XMapRaised(dpy, c->parent) : XMapWindow(dpy, c->parent);
+ set_wm_state(c, NormalState);
Home |
Main Index |
Thread Index |
Old Index