b5f37a01e1
For the details, please see the related bug report or issue #576 in the xmonad bug tracker [1]. [1] https://code.google.com/p/xmonad/issues/detail?id=576 PR: 181049 Submitted by: Dominik Ernst <de@dernst.org> Obtained from: FreeBSD Haskell MFH: 2015Q1
34 lines
651 B
Makefile
34 lines
651 B
Makefile
# Created by: Matthieu Guegan <matt.guegan@free.fr>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xmonad
|
|
PORTVERSION= 0.11
|
|
PORTREVISION= 10
|
|
CATEGORIES= x11-wm haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Tiling window manager
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USE_CABAL= extensible-exceptions mtl utf8-string>=0.3 X11>=1.5
|
|
USE_XORG= x11
|
|
|
|
MAN1PAGES= xmonad.1
|
|
MAN1SRC= man
|
|
|
|
EXECUTABLE= xmonad
|
|
|
|
OPTIONS_DEFINE+= XFORK_FIX
|
|
OPTIONS_DEFAULT+= XFORK_FIX
|
|
|
|
XFORK_FIX_DESC= Apply workaround for losing hotkeys (XMonad \#576)
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
|
|
.if ${PORT_OPTIONS:MXFORK_FIX}
|
|
EXTRA_PATCHES+= ${PATCHDIR}/nopatch-XMonad_Core.hs
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|