5fcd531bf7
Christian Garbs (1): call XFreeDeviceList() after XListInputDevices() (#46) Graham Gower (1): Rescan the input devices when a device is (un)plugged. (#41) Oleksandr Motsak (1): Add -a option to always hide mouse pointer joshua stein (9): Add DPRINTF macro to make debugging printfs easier Makefile: always add -W flags to CFLAGS Makefile: releases are handled through git tags Add an -m option to move the cursor to a corner when hiding XQueryPointer's final arg needs an unsigned int usage: don't depend on __progname hide_cursor: return early snoop_xinput: close the device after probing it to avoid leaking mem xinput: ignore duplicate XDevicePresenceNotifyEvents
20 lines
611 B
Makefile
20 lines
611 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/11/24 10:28:44 nia Exp $
|
|
|
|
DISTNAME= xbanish-1.7
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=jcs/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
HOMEPAGE= https://github.com/jcs/xbanish
|
|
COMMENT= Banish the mouse cursor when typing
|
|
LICENSE= modified-bsd
|
|
|
|
MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR}/man1
|
|
MAKE_FLAGS+= LDPATH=${X11_LDFLAGS:Q}\ ${LDFLAGS:Q}
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../x11/libXfixes/buildlink3.mk"
|
|
.include "../../x11/libXi/buildlink3.mk"
|
|
.include "../../x11/libXt/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|