diff options
author | obraun <obraun@FreeBSD.org> | 2003-10-29 17:22:30 +0000 |
---|---|---|
committer | obraun <obraun@FreeBSD.org> | 2003-10-29 17:22:30 +0000 |
commit | f345286ae299254c00f835d34b37011c90fdbda2 (patch) | |
tree | b96aefead428ffb435d5b42ce24855f413d34a80 /lang | |
parent | 2fd74547800a1a8c071840aafb0eb5ddeb52b3ea (diff) | |
download | FreeBSD-ports-f345286ae299254c00f835d34b37011c90fdbda2.zip FreeBSD-ports-f345286ae299254c00f835d34b37011c90fdbda2.tar.gz |
* Remove old post-patch target. It's fixed in 1.1 and with this post-patch
target runtime problems occur.
* Bumb PORTREVISION accordingly.
* Mark (temporary) BROKEN on -current. This seems to be a gcc3 issue.
Pointed out by: Lutz Bichler <Lutz.Bichler@unibw-muenchen.de>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/helium/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lang/helium/Makefile b/lang/helium/Makefile index b8bc7c1..1778ee0 100644 --- a/lang/helium/Makefile +++ b/lang/helium/Makefile @@ -7,6 +7,7 @@ PORTNAME= helium PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= lang haskell MASTER_SITES= http://www.cs.uu.nl/helium/distr/ DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -14,16 +15,17 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= obraun@FreeBSD.org COMMENT= Functional programming compiler for a subset of Haskell +.include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500035 +BROKEN= does not compile +.endif + BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_REINPLACE= yes USE_GMAKE= yes -post-patch: - @${REINPLACE_CMD} -e '/#include "math.h"/d' \ - ${WRKSRC}/lvm/src/runtime/core/primfloat.c - do-configure: @(cd ${WRKSRC}/lvm/src/ && ./configure) @(cd ${WRKSRC}/heliumNT/ && ./configure) @@ -36,4 +38,4 @@ do-install: @(cd ${WRKSRC}/heliumNT/src && ${GMAKE} install) @${CAT} ${PKGMESSAGE} | ${SED} -e 's,%%PREFIX%%,${PREFIX},g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |