pkgsrc/wm/evilwm/Makefile
sketch 9397085f7c Update to evilwm-1.0.1
*** Changes between 1.0.0 and 1.0.1:

Wed Mar 11 15:41:02 GMT 2009  Ciaran Anscomb <evilwm@6809.org.uk>
  * XFlush() shouldn't be required in interruptibleXNextEvent()

Thu Nov 20 11:17:07 GMT 2008  Larry Doolittle <>
  * Fix interaction with X and signal handler
  Larry Doolittle encountered a problem with the signal handler's
  interaction with later versions of X.org and submitted this patch.  It
  adds an interruptible version of XNextEvent() borrowed from the Blender
  source code (copyright Mark J. Kilgard) that allows a more graceful
  exit from the main event loop rather than getting the signal handler to
  do it.
2010-08-13 19:15:53 +00:00

27 lines
820 B
Makefile

# $NetBSD: Makefile,v 1.29 2010/08/13 19:15:53 sketch Exp $
#
DISTNAME= evilwm-1.0.1
CATEGORIES= wm x11
MASTER_SITES= http://www.6809.org.uk/evilwm/
MAINTAINER= sketch@NetBSD.org
HOMEPAGE= http://www.6809.org.uk/evilwm/
COMMENT= Minimalist Window Manager for X
PKG_DESTDIR_SUPPORT= user-destdir
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/evilwm
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/evilwm ${DESTDIR}${PREFIX}/bin/evilwm
${INSTALL_MAN} ${WRKSRC}/evilwm.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/evilwm.1
for docfile in ChangeLog README TODO; \
do \
${INSTALL_DATA} ${WRKSRC}/$$docfile ${DESTDIR}${PREFIX}/share/doc/evilwm/; \
done
.include "../../x11/libXext/buildlink3.mk"
.include "../../x11/libXrandr/buildlink3.mk"
.include "../../x11/xextproto/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"