46e9ab0ca5
Please note that port revision for all the Haskell ports without version changes are also bumped. Other per-port updates are coming soon (in separate commits)! In addition to that, separate -docs ports are no longer needed so they are now removed. Thanks ashish@ for the assistance. Obtained from: FreeBSD Haskell
34 lines
749 B
Makefile
34 lines
749 B
Makefile
# New ports collection makefile for: hs-x11-ghc
|
|
# Date created: 2007-09-03
|
|
# Whom: Volker Stolz <vs@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= X11
|
|
PORTVERSION= 1.5.0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11 haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= X11 bindings for Haskell programs
|
|
|
|
LICENSE= BSD
|
|
|
|
CABAL_SETUP= Setup.hs
|
|
USE_CABAL= syb
|
|
USE_XORG= x11 xext sm
|
|
|
|
OPTIONS= XINERAMA "Build with Xinerama support" on
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_XINERAMA)
|
|
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>
|