f4fb3d948c
- Update x11-wm/xmonad to 0.9.1 - Update x11-wm/xmonad-contrib to 0.9.1 PR: ports/142106, ports/142121 Submitted by: Jacula Modyun <jacula(at)gmail.com> Approved by: maintainer timeout (for xmonad and xmonad-contrib)
95 lines
2.3 KiB
Makefile
95 lines
2.3 KiB
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.0
|
|
CATEGORIES= x11 haskell
|
|
MASTER_SITES= http://hackage.haskell.org/packages/archive/X11/${PORTVERSION}/
|
|
PKGNAMEPREFIX= hs-
|
|
PKGNAMESUFFIX= -ghc
|
|
DISTNAME= X11-${PORTVERSION}
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= X11 bindings for Haskell programs
|
|
|
|
BUILD_DEPENDS+= ghc:${PORTSDIR}/lang/ghc
|
|
LIB_DEPENDS+= gmp.8:${PORTSDIR}/math/libgmp4
|
|
RUN_DEPENDS+= ghc:${PORTSDIR}/lang/ghc
|
|
|
|
USE_XORG= x11 xext sm
|
|
|
|
GHC_VERSION= 6.10.4
|
|
HSX11_VERSION= ${PORTVERSION}
|
|
|
|
GHC_CMD= ${LOCALBASE}/bin/ghc
|
|
SETUP_CMD= ./setup
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${DISTNAME}
|
|
HSX11_LIBDIR_REL= lib/${DISTNAME}
|
|
|
|
PLIST_SUB= GHC_VERSION=${GHC_VERSION} \
|
|
HSX11_VERSION=${HSX11_VERSION} \
|
|
HSX11_LIBDIR_REL=${HSX11_LIBDIR_REL}
|
|
|
|
OPTIONS= XINERAMA "Build with Xinerama support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_XINERAMA)
|
|
USE_XORG+= xinerama
|
|
CONFIGURE_ARGS+= --configure-option=--with-xinerama
|
|
.else
|
|
CONFIGURE_ARGS+= --configure-option=--without-xinerama
|
|
.endif
|
|
|
|
.if defined(NOPORTDOCS)
|
|
PLIST_SUB+= NOPORTDOCS=""
|
|
.else
|
|
PLIST_SUB+= NOPORTDOCS="@comment "
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
PORT_HADDOCK!= (cd ${.CURDIR}/../../lang/ghc && ${MAKE} -V PORT_HADDOCK)
|
|
.if !empty(PORT_HADDOCK:M?0)
|
|
BUILD_DEPENDS+= haddock:${PORTSDIR}/devel/hs-haddock
|
|
.endif
|
|
BUILD_DEPENDS+= HsColour:${PORTSDIR}/print/hs-hscolour
|
|
|
|
HSCOLOUR_VERSION= 1.15
|
|
HSCOLOUR_DATADIR= ${PREFIX}/share/hscolour-${HSCOLOUR_VERSION}
|
|
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
.SILENT:
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|/usr/local/include|${LOCALBASE}/include|g' \
|
|
${WRKSRC}/configure
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${GHC_CMD} --make Setup.hs -o setup -package Cabal \
|
|
&& ${SETUP_CMD} configure --haddock-options=-w --prefix=${PREFIX} \
|
|
${CONFIGURE_ARGS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${SETUP_CMD} build \
|
|
&& ${SETUP_CMD} register --gen-script
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
cd ${WRKSRC} && ${SETUP_CMD} haddock --hyperlink-source \
|
|
--hscolour-css=${HSCOLOUR_DATADIR}/hscolour.css
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${SETUP_CMD} install \
|
|
&& ${INSTALL_SCRIPT} register.sh ${PREFIX}/${HSX11_LIBDIR_REL}/register.sh
|
|
|
|
post-install:
|
|
${RM} -f ${PREFIX}/lib/ghc-${GHC_VERSION}/package.conf.old
|
|
|
|
.include <bsd.port.post.mk>
|