mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
efa1d78a46
in r309275 - Bump port revision for the port and for all of its dependents, especially xmonad, because it can only work in dual-monitor configurations with this setting enabled PR: ports/178336 Submitted by: Christopher J. Ruwe <cjr@cruwe.de> Obtained from: FreeBSD Haskell
35 lines
704 B
Makefile
35 lines
704 B
Makefile
# Created by: Volker Stolz <vs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= X11
|
|
PORTVERSION= 1.6.1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11 haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Binding to the X11 graphics library
|
|
|
|
LICENSE= BSD
|
|
|
|
CABAL_SETUP= Setup.hs
|
|
|
|
USE_CABAL= data-default
|
|
USE_XORG= x11 xrandr xext
|
|
|
|
OPTIONS_DEFINE= XINERAMA
|
|
OPTIONS_DEFAULT= XINERAMA
|
|
|
|
XINERAMA_DESC= Build with Xinerama support
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
|
|
.if ${PORT_OPTIONS:MXINERAMA}
|
|
USE_XORG+= xinerama
|
|
CONFIGURE_ARGS+= --configure-option="--with-xinerama"
|
|
.else
|
|
CONFIGURE_ARGS+= --configure-option="--without-xinerama"
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|