diff options
author | kris <kris@FreeBSD.org> | 2005-07-21 07:58:25 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-07-21 07:58:25 +0800 |
commit | 5bde6db19cffed259d102cdf1ba2605b59b0698f (patch) | |
tree | 6891f9f934c89580ee2c0790cbc33a2e6ff55e8a /net/cnet | |
parent | 7d859075ebd151ede844d4f4395b7313fc3868df (diff) | |
download | freebsd-ports-gnome-5bde6db19cffed259d102cdf1ba2605b59b0698f.tar.gz freebsd-ports-gnome-5bde6db19cffed259d102cdf1ba2605b59b0698f.tar.zst freebsd-ports-gnome-5bde6db19cffed259d102cdf1ba2605b59b0698f.zip |
BROKEN on amd64 and ia64: Does not compile
Diffstat (limited to 'net/cnet')
-rw-r--r-- | net/cnet/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/cnet/Makefile b/net/cnet/Makefile index fcefdc67c72a..ccbe81cd68e3 100644 --- a/net/cnet/Makefile +++ b/net/cnet/Makefile @@ -22,6 +22,12 @@ USE_GMAKE= yes ALL_TARGET= # empty MAN1= cnet.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64 or ia64" +.endif + post-patch: @${REINPLACE_CMD} -e 's|8.3|8.4|g ; \ s|83|84|g' ${WRKSRC}/src/Makefile.freebsd @@ -43,4 +49,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/DOC/images/* ${DOCSDIR}/images .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |