diff options
author | pav <pav@FreeBSD.org> | 2012-01-16 05:39:34 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2012-01-16 05:39:34 +0800 |
commit | 7f473de80380266e75ff6006d4b2919a5825a883 (patch) | |
tree | 814429e5d3da3e1559df0e23bf2b0bb7fdb2f436 /devel/nant | |
parent | 35959313e2863da5e6288b5b4e7cc40b62b89101 (diff) | |
download | freebsd-ports-gnome-7f473de80380266e75ff6006d4b2919a5825a883.tar.gz freebsd-ports-gnome-7f473de80380266e75ff6006d4b2919a5825a883.tar.zst freebsd-ports-gnome-7f473de80380266e75ff6006d4b2919a5825a883.zip |
- Mark BROKEN on amd64/9:
Unhandled Exception: System.ArgumentException: failed to convert parameters
Reported by: pointyhat
Diffstat (limited to 'devel/nant')
-rw-r--r-- | devel/nant/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/nant/Makefile b/devel/nant/Makefile index 73c18c037be9..4d668f3e145f 100644 --- a/devel/nant/Makefile +++ b/devel/nant/Makefile @@ -25,6 +25,12 @@ MAKE_JOBS_UNSAFE= yes USE_GMAKE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 900000 && ${ARCH} == "amd64" +BROKEN= fails to build on 9.X +.endif + post-patch: @${REINPLACE_CMD} -e 's|MCS=mcs|MCS=dmcs|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|lib/pkgconfig|libdata/pkgconfig|' ${WRKSRC}/NAnt.build @@ -38,4 +44,4 @@ post-install: cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}/ .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |