head 1.3; access; symbols pkgsrc-2013Q4:1.2.0.2 pkgsrc-2013Q4-base:1.2 pkgsrc-2013Q3:1.1.0.2 pkgsrc-2013Q3-base:1.1; locks; strict; comment @# @; 1.3 date 2014.03.12.18.14.41; author wiz; state dead; branches; next 1.2; commitid 2Y53AOejmRtZdrsx; 1.2 date 2013.11.29.23.30.47; author wiz; state Exp; branches; next 1.1; commitid uGALqOkF813Lhefx; 1.1 date 2013.07.26.17.55.37; author wiz; state Exp; branches; next ; commitid aIxqq2UwP4DYt0Zw; desc @@ 1.3 log @Update to 2.5.0, provided by Lokesh Mandvekar on pkgsrc-users. Changes since previous version: Fix text rendering issue in search_win. The depth of the indicator window must match the depth of the allocated text color. To ensure this is always the case, copy from root instead of parent. Ignore EnterNotify when entering from an inferior window. Fix floating windows remaining borderless after being fullscreen. Fix window border colors when moving windows to hidden workspaces. Add new OBEYAPPFOCUSREQ quirk. When an application requests focus on the window via a _NET_ACTIVE_WINDOW client message (source indication of 1), comply with the request. Improve support for Extended Window Manager Hints (EWMH). Add support for _NET_CURRENT DESKTOP, _NET_DESKTOP_NAMES, _NET_NUMBER_OF_DESKTOPS and _NET_CLIENT_LIST. Windows are sorted according to _NET_CLIENT_LIST at start. Change iconify to use _NET_WM_STATE_HIDDEN instead of _SWM_ICONIC. Add _NET_WM_FULL_PLACEMENT to _NET_SUPPORTED. Improve handling of _NET_WM_STATE_FULLSCREEN. Improve general handling of EWMH. Fix focus issues when a window maps/unmaps on an unfocused region. Fix calls to get property length that did not adjust for item size. Fix stacking issues. Fix segfault. Disable swapwin on fullscreen layout. Remove floating property from ws_win struct. Add new macros for accessing ewmh_flags. @ text @$NetBSD: patch-linux_Makefile,v 1.2 2013/11/29 23:30:47 wiz Exp $ Find installed library. --- linux/Makefile.orig 2013-11-24 00:09:06.031887162 -0600 +++ linux/Makefile 2013-11-24 00:09:46.706760816 -0600 @@@@ -1,5 +1,5 @@@@ CFLAGS+= -std=c99 -Wmissing-prototypes -Wall -Wextra -Wshadow -Wno-uninitialized -g -CFLAGS+= -D_GNU_SOURCE -I. -I/usr/include/freetype2 -DSWM_LIB=\"libswmhack.so.$(LVERS)\" +CFLAGS+= -D_GNU_SOURCE -I. -I/usr/include/freetype2 -DSWM_LIB=\"$(LIBDIR)/libswmhack.so.$(LVERS)\" LDADD+= -lX11 -lX11-xcb -lxcb -lxcb-icccm -lxcb-randr -lxcb-keysyms -lxcb-util -lxcb-xtest -lXft -lXcursor PREFIX?= /usr/local @ 1.2 log @Update to 2.4.0, based on patch by Lokesh Mandvekar on pkgsrc-users. Changes not documented. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Import spectrwm-2.2.0 as wm/spectrwm. Based on a package by Lokesh Mandvekar and wm/scrotwm. Spectrwm is a small dynamic tiling window manager for X11. It tries to stay out of the way so that valuable screen real estate can be used for much more important stuff. It has sane defaults and does not require one to learn a language to do any configuration. It was written by hackers for hackers and it strives to be small, compact and fast. It was largely inspired by xmonad and dwm. Both are fine products but suffer from things like: crazy-unportable-language-syndrome, silly defaults, asymmetrical window layout, "how hard can it be?" and good old NIH. Nevertheless dwm was a phenomenal resource and many good ideas and code was borrowed from it. On the other hand xmonad has great defaults, key bindings and xinerama support but is crippled by not being written in C. Spectrwm is a beautiful pearl! For it too, was created by grinding irritation. Nothing is a bigger waste of time than moving windows around until they are the right size-ish or having just about any relevant key combination being eaten for some task one never needs. The path of agony is too long to quote and in classical OpenBSD fashion (put up, or hack up) a brand new window manager was whooped up to serve no other purpose than to obey its masters. It was written by Marco Peereboom & Ryan Thomas McBride and it is released under the ISC license. @ text @d3 1 a3 1 Add rpath. d5 7 a11 4 --- linux/Makefile.orig 2013-03-23 14:04:01.000000000 +0000 +++ linux/Makefile @@@@ -32,7 +32,7 @@@@ spectrwm: spectrwm.o linux.o $(CC) $(CFLAGS) -c -fpic -DPIC $+ -o $@@ d13 1 a13 6 libswmhack.so.$(LVERS): swm_hack.so - $(CC) -shared -fpic -o libswmhack.so.$(LVERS) swm_hack.so $(LDADD) + $(CC) $(LDFLAGS) -shared -fpic -o libswmhack.so.$(LVERS) swm_hack.so $(LDADD) install: all install -m 755 -d $(DESTDIR)$(BINDIR) @