diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2010-05-12 16:33:59 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2010-05-12 16:33:59 +0000 |
commit | ec29a59ec3d0472e808e9907b2f18dce2e9fe68c (patch) | |
tree | bd2ff04188a74e09a51bfecae86236b3684491e5 /devel/hs-cpphs/Makefile | |
parent | ba00ef6b8cc071eb53bf9287bfbc328da82f7eb8 (diff) |
Notes
Diffstat (limited to 'devel/hs-cpphs/Makefile')
-rw-r--r-- | devel/hs-cpphs/Makefile | 71 |
1 files changed, 8 insertions, 63 deletions
diff --git a/devel/hs-cpphs/Makefile b/devel/hs-cpphs/Makefile index 8b0481815a0b..9413525b2c68 100644 --- a/devel/hs-cpphs/Makefile +++ b/devel/hs-cpphs/Makefile @@ -9,75 +9,20 @@ PORTNAME= cpphs PORTVERSION= 1.9 PORTREVISION= 1 CATEGORIES= devel haskell -MASTER_SITES= http://www.cs.york.ac.uk/fp/cpphs/ -PKGNAMEPREFIX= hs- MAINTAINER= haskell@FreeBSD.org COMMENT= A simplified re-implementation of cpp in Haskell -BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc -RUN_DEPENDS= ghc:${PORTSDIR}/lang/ghc -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp +CABAL_SETUP= Setup.hs -GHC_VERSION= 6.10.4 -CPPHS_VERSION= ${PORTVERSION} +MAN1= cpphs.1 +MAN1SRC= docs -GHC_CMD= ${LOCALBASE}/bin/ghc -SETUP_CMD= ./setup +EXECUTABLE= cpphs -DATADIR= ${PREFIX}/share/${DISTNAME} -DOCSDIR= ${PREFIX}/share/doc/${DISTNAME} -CPPHS_LIBDIR_REL= lib/${DISTNAME} - -PLIST_SUB= GHC_VERSION=${GHC_VERSION} \ - CPPHS_VERSION=${CPPHS_VERSION} \ - CPPHS_LIBDIR_REL=${CPPHS_LIBDIR_REL} - -MAN1= cpphs.1 - -.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: - -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 --executables \ - --hscolour-css=${HSCOLOUR_DATADIR}/hscolour.css -.endif - -do-install: - cd ${WRKSRC} && ${SETUP_CMD} install \ - && ${INSTALL_SCRIPT} register.sh ${PREFIX}/${CPPHS_LIBDIR_REL}/register.sh - @${INSTALL_MAN} ${WRKSRC}/docs/cpphs.1 ${PREFIX}/man/man1 - @${MKDIR} ${DATADIR} && ${INSTALL_DATA} ${WRKSRC}/docs/index.html ${DATADIR} \ - && ${INSTALL_DATA} ${WRKSRC}/docs/design ${DATADIR} - -post-install: - ${RM} -f ${PREFIX}/lib/ghc-${GHC_VERSION}/package.conf.old +PORTDATA= * +INSTALL_PORTDATA= ${INSTALL_DATA} ${WRKSRC}/docs/index.html ${DATADIR} \ + && ${INSTALL_DATA} ${WRKSRC}/docs/design ${DATADIR} +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" .include <bsd.port.mk> |