diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-03 15:23:06 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-03 15:23:06 +0000 |
commit | 62cbde7cec9b3d5fcfea090d32fb32df3830d419 (patch) | |
tree | a78d65191865070d7db4309859cf3707950a940e /x11-wm | |
parent | This port is now obsolete, and should no longer be used. Direct users to the (diff) |
- Mark BROKEN on amd64: runaway cc
PR: ports/66174
Submitted by: Greg J. <xcas@cox.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=108274
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/kahakai/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-wm/kahakai/Makefile b/x11-wm/kahakai/Makefile index 36f461b17b62..734ae55a83d7 100644 --- a/x11-wm/kahakai/Makefile +++ b/x11-wm/kahakai/Makefile @@ -37,8 +37,14 @@ CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \ LDFLAGS=-L${X11BASE}/lib \ LIBS=${PTHREAD_LIBS} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + post-patch: @${REINPLACE_CMD} -e 's|/tmp/ktest|${X11BASE}|' \ ${WRKSRC}/data/styles/Default.kastyle.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |