On 2011-09-25 21:16, Joe Wingbermuehle wrote:
| 
| I finally made a new release (it's only been 4 years!).
| There certainly are still bugs, but at least the bug reports should match up 
more closely with a recent code base.

Good to hear. Could you also apply the attached patch to SVN. the
Makefile needs DESTDIR for packaging purposes.

Could you comment which of the bugs are alrady fixed in the latest:

    Look at the ones that contain "->" forwarded marks:
    http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=jwm

Collected from the above link. Those with "!" I know are in the SVN
and can be closed, but about the rest?

    #582841 [i|  |↝] [jwm] jwm: EXEC: is not working from .jwmrc 
    #589376 [i|  |↝] [jwm] jwm: iceweasel cannot be expanded fullscreen (works 
in other WM) 
    #590621 [i|  |↝] [jwm] jwm: altgr not working under JWM @, }] keys and so 
on!!
    #458826 [n|U+|↝] [jwm] jwm: Multibytes characters title cannot be displayed 
    #636842 [n|  |↝] [jwm] jwm: Browser's javascript steals focus (works in 
other WMs)
    #497465 [w|  |↝] [jwm] jwm: The mouse bindings are not configurable 
!   #559166 [w|U+|↝] [jwm] jwm: [man] Hyphen fix 
!   #559167 [w|U+|↝] [jwm] jwm: [man] empty comments in manual page 
!   #559169 [w|U+|↝] [jwm] jwm: [man] warning: macro `layer:#' not defined 
    #560836 [w|+|↝] [jwm] jwm: [PATCH] Makefile.in -- add DESTDIR support 
    #567557 [w|  |↝] [jwm] jwm: It could be great that JWM has an edge 
resistance null when pressing ALT+holding left mouse click

Thanks,
Jari
>From 0917eae4ef5d0ed0f8f07c4b94283a8dea90fbe5 Mon Sep 17 00:00:00 2001
From: Jari Aalto <jari.aa...@cante.net>
Date: Mon, 26 Sep 2011 11:28:27 +0300
Subject: [PATCH] Makefile.in: Use DESTDIR
Organization: Private
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit


Signed-off-by: Jari Aalto <jari.aa...@cante.net>
---
 Makefile.in |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 464867e..80ec139 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,6 +1,6 @@
-
-SYSCONF = @SYSCONF@
-MANDIR = @MANDIR@
+PACKAGE = jwm
+SYSCONF = $(DESTDIR)@SYSCONF@
+MANDIR = $(DESTDIR)@MANDIR@
 VERSION ?= @VERSION@
 
 all:
@@ -8,9 +8,9 @@ all:
 
 install: all
 	cd src ; $(MAKE) install ; cd ..
-	install -d $(SYSCONF)
+	install -d -m 0755 $(SYSCONF)
 	install -m 644 example.jwmrc $(SYSCONF)/system.jwmrc
-	install -d $(MANDIR)/man1
+	install -d -m 0755 $(MANDIR)/man1
 	install -m 644 jwm.1 $(MANDIR)/man1/jwm.1
 
 depend:
@@ -30,8 +30,9 @@ clean:
 	rm -rf doc
 
 distclean: clean
-	rm -f *~ config.cache config.log config.status config.h ;
-	rm -f Makefile src/Makefile jwm.tardist jwm.1 ;
+	rm -f *[~#] config.cache config.log config.status config.h
+	rm -f Makefile src/Makefile jwm.tardist jwm.1
+	rm -fr autom4te.cache
 	rm -f Makefile.bak src/Makefile.bak ;
 	rm -fr autom4te.cache ;
 	rm -fr `find . \( -name .svn -o -name .gdb_history \) -print` ;
-- 
1.7.5.4

Reply via email to