+++ /dev/null
-FrankenWM
-"monsterwm's bastard child" or "not the wm your desktop needs, but the one
-it deserves".
-FrankenWM is a dynamic tiling WM (comparable to dwm or Awesome), featuring the
-v-stack, b-stack, grid, fibonacci, dualstack, equal and monocle layouts out of
-the box. If you want to, you can add gaps between the windows as well.
-
-It was once based on monsterwm but has undergone many greater changes including
-adding pieces from other WMs (hence the name) and porting all sorts of stuff
-from Xlib to XCB. Many of the original monsterwm patches have been ported as
-well.
-
-All settings must be set at compile time by editing `config.h` and it does not
-feature a status bar (but supports leaving preconfigured space for one).
+++ /dev/null
-# $NetBSD$
-
-DISTNAME= FrankenWM-1.0.22
-PKGNAME= frankenwm-1.0.22
-CATEGORIES= wm
-MASTER_SITES= ${MASTER_SITE_GITHUB:=sulami/}
-GITHUB_TAG= v${PKGVERSION_NOREV}
-
-MAINTAINER= pin@NetBSD.org
-HOMEPAGE= https://github.com/sulami/FrankenWM/
-COMMENT= Dynamic tiling window manager
-LICENSE= mit
-
-WRKSRC= ${WRKDIR}/FrankenWM-1.0.22
-USE_TOOLS+= pkg-config gmake
-USE_LANGUAGES= c99
-
-INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
-MAKE_ENV+= MANPREFIX=${PREFIX}/${PKGMANDIR}
-
-DEPENDS+= dmenu-[0-9]*:../../x11/dmenu
-
-.include "../../x11/libxcb/buildlink3.mk"
-.include "../../x11/xcb-util/buildlink3.mk"
-.include "../../x11/xcb-util-wm/buildlink3.mk"
-.include "../../x11/xcb-util-keysyms/buildlink3.mk"
-.include "../../x11/libX11/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
+++ /dev/null
-@comment $NetBSD$
-bin/frankenwm
-man/man1/frankenwm.1
+++ /dev/null
-$NetBSD$
-
-SHA1 (FrankenWM-1.0.22.tar.gz) = 4fe6bf6ba9e726696ff92fe40e80d98c1dbf43a3
-RMD160 (FrankenWM-1.0.22.tar.gz) = 8574b5ec4308fde772ba0d8d8c7ab223b075dd44
-SHA512 (FrankenWM-1.0.22.tar.gz) = bea5cbc94b34f3d55c7b9721906b7599fe3e8cfb93ce5f4727fc2f699db716eaa419865d611e4a68e9a63916b2c3a41196653d660b8672149e085d4c51d1cf83
-Size (FrankenWM-1.0.22.tar.gz) = 35588 bytes
-SHA1 (patch-Makefile) = 3ce05d6fe097aa80efbd2447c62dc7ab8bc35f73
-SHA1 (patch-frankenwm.c) = 4af49a8aef3694b5b8beb20a2849617ce5d174ac
+++ /dev/null
-$NetBSD$
-
-Allow custom man location
-Allow discovery of x11-base
-
---- Makefile.orig 2020-05-21 08:59:23.000000000 +0000
-+++ Makefile
-@@ -2,9 +2,9 @@ WMNAME = frankenwm
-
- PREFIX ?= /usr/local
- BINDIR ?= ${PREFIX}/bin
--MANPREFIX = ${PREFIX}/share/man
-+MANPREFIX ?= ${PREFIX}/share/man
-
--INCS = -I. -I${PREFIX}/include -I/usr/X11R6/include
-+INCS = -I. `pkg-config --cflags xcb xcb-aux xcb-icccm xcb-keysyms xcb-ewmh`
- LIBS = -lc -lX11 `pkg-config --libs xcb xcb-aux xcb-icccm xcb-keysyms xcb-ewmh`
-
- CFLAGS += -std=c99 -pedantic -Wall -Wextra ${INCS} ${CPPFLAGS}
+++ /dev/null
-$NetBSD$
-
-Move include into a reasonable place.
-Don't re-define things that are already in Xlib.h
-
---- frankenwm.c.orig 2020-05-21 08:59:23.000000000 +0000
-+++ frankenwm.c
-@@ -10,6 +10,7 @@
- #include <signal.h>
- #include <regex.h>
- #include <sys/wait.h>
-+#include <X11/Xlib.h>
- #include <X11/keysym.h>
- #include <xcb/xcb.h>
- #include <xcb/xcb_atom.h>
-@@ -27,16 +28,6 @@
- # define DEBUGP(x, ...);
- #endif
-
--/* upstream compatility */
--#define True true
--#define False false
--#define Mod1Mask XCB_MOD_MASK_1
--#define Mod4Mask XCB_MOD_MASK_4
--#define ShiftMask XCB_MOD_MASK_SHIFT
--#define ControlMask XCB_MOD_MASK_CONTROL
--#define Button1 XCB_BUTTON_INDEX_1
--#define Button2 XCB_BUTTON_INDEX_2
--#define Button3 XCB_BUTTON_INDEX_3
- #define XCB_MOVE_RESIZE XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT
- #define XCB_MOVE XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
- #define XCB_RESIZE XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT
-@@ -3582,7 +3573,6 @@ void xerror(xcb_generic_event_t *e)
-
- static void ungrab_focus(void)
- {
--#include <X11/Xlib.h>
- Display * dpy;
-
-