ee8eda08fb
- Bump PORTREVISION for all affected ports PR: ports/138567, ports/138568 Submitted by: Ashish Shukla <wahjava (at) gmail.com> Approved by: maintainer
86 lines
2.2 KiB
Makefile
86 lines
2.2 KiB
Makefile
# New ports collection makefile for: hs-glut-ghc
|
|
# Date created: 2007-09-04
|
|
# Whom: Volker Stolz <vs@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= glut
|
|
PORTVERSION= 2.1.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits haskell
|
|
MASTER_SITES= http://hackage.haskell.org/packages/archive/GLUT/${PORTVERSION}/
|
|
PKGNAMEPREFIX= hs-
|
|
PKGNAMESUFFIX= -ghc
|
|
DISTNAME= GLUT-${PORTVERSION}
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= A Haskell binding for the OpenGL Utility Toolkit
|
|
|
|
USE_GL= glut
|
|
|
|
BUILD_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \
|
|
hs-opengl-ghc>=2.2:${PORTSDIR}/x11-toolkits/hs-opengl-ghc
|
|
RUN_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \
|
|
hs-opengl-ghc>=2.2:${PORTSDIR}/x11-toolkits/hs-opengl-ghc
|
|
LIB_DEPENDS+= gmp.8:${PORTSDIR}/math/libgmp4
|
|
|
|
GHC_VERSION= 6.10.4
|
|
HSGLUT_VERSION= ${PORTVERSION}
|
|
|
|
GHC_CMD= ${LOCALBASE}/bin/ghc
|
|
SETUP_CMD= ./setup
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${DISTNAME}
|
|
HSGLUT_LIBDIR_REL= lib/${DISTNAME}
|
|
|
|
PLIST_SUB= GHC_VERSION=${GHC_VERSION} \
|
|
HSGLUT_VERSION=${HSGLUT_VERSION} \
|
|
HSGLUT_LIBDIR_REL=${HSGLUT_LIBDIR_REL}
|
|
|
|
.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}
|
|
|
|
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}/${HSGLUT_LIBDIR_REL}/register.sh
|
|
|
|
post-install:
|
|
${RM} -f ${PREFIX}/lib/ghc-${GHC_VERSION}/package.conf.old
|
|
|
|
.include <bsd.port.mk>
|