diff options
author | obraun <obraun@FreeBSD.org> | 2002-08-21 15:28:54 +0000 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2002-08-21 15:28:54 +0000 |
commit | edce368ce8c1250792e5d3903a97aa47691bfeba (patch) | |
tree | 4f20682ae87260cc71fcaba82788e9437aa3a41d /devel/hat/Makefile | |
parent | 2f3369b4f61e25333148536d39bc779177a335d8 (diff) | |
download | FreeBSD-ports-edce368ce8c1250792e5d3903a97aa47691bfeba.zip FreeBSD-ports-edce368ce8c1250792e5d3903a97aa47691bfeba.tar.gz |
Change MAINTAINER to my FreeBSD address.
Do not allow building with ghc-5.04 due to errors.
Add patch to fix build on bento.
PR: ports/40828
Approved by: dwcjr (mentor)
Diffstat (limited to 'devel/hat/Makefile')
-rw-r--r-- | devel/hat/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/devel/hat/Makefile b/devel/hat/Makefile index 140c647..204daf5 100644 --- a/devel/hat/Makefile +++ b/devel/hat/Makefile @@ -10,7 +10,15 @@ PORTVERSION= 2.00 CATEGORIES= devel MASTER_SITES= ftp://ftp.cs.york.ac.uk/pub/haskell/${PORTNAME}/ -MAINTAINER= obraun@informatik.unibw-muenchen.de +MAINTAINER= obraun@FreeBSD.org + +.if defined(WITHOUT_NHC98) +FORBIDDEN= does not build with ghc-5.04 for the time being +.endif + +.if defined(WITH_GHC) +.undef WITH_GHC +.endif .if !defined(WITHOUT_NHC98) BUILD_DEPENDS= nhc98:${PORTSDIR}/lang/nhc98 @@ -63,8 +71,9 @@ pre-everything:: @${ECHO_CMD} " HAT will be built and installed for ghc only." .else @${ECHO_CMD} " HAT will be built and installed for nhc98 only." - @${ECHO_CMD} " Define WITH_GHC to install for ghc, too." - @${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only." +# @${ECHO_CMD} " Define WITH_GHC to install for ghc, too." +# @${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only." + @${ECHO_CMD} " HAT does not build with ghc-5.04 for the time being." .endif @${ECHO_CMD} "" |