diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-04-12 04:03:55 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-04-12 04:03:55 +0000 |
commit | fbfaa7b274db7c312d7566ac636da9661135e15c (patch) | |
tree | bbdd88d9c90ffb2ef81ae0efa84e6be053b4e569 | |
parent | BROKEN on sparc64: Does not build (diff) |
BROKEN on sparc64: Does not compile
Notes
Notes:
svn path=/head/; revision=106781
-rw-r--r-- | audio/denemo/Makefile | 8 | ||||
-rw-r--r-- | lang/STk/Makefile | 8 | ||||
-rw-r--r-- | x11/mgapdesk/Makefile | 4 |
3 files changed, 18 insertions, 2 deletions
diff --git a/audio/denemo/Makefile b/audio/denemo/Makefile index 51c11bccf011..d2f624a848ee 100644 --- a/audio/denemo/Makefile +++ b/audio/denemo/Makefile @@ -28,6 +28,12 @@ USE_GETTEXT= yes USE_GNOME= gtk12 USE_X_PREFIX= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + pre-patch: .for ii in analysis_highlighting.c easylyparser.c easylyparser.y \ lyparserfuncs.c lyparserfuncs.h main.c playback.c print.c @@ -60,4 +66,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/lang/STk/Makefile b/lang/STk/Makefile index 15703c4024d2..a5b1668a092a 100644 --- a/lang/STk/Makefile +++ b/lang/STk/Makefile @@ -22,4 +22,10 @@ PLIST_SUB= STK_VERSION=${PORTVERSION} STK_ARCH=${STK_ARCH} STK_ARCH!= ${ECHO} "$$(uname)-$$(uname -r)-$$(uname -m)" -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + +.include <bsd.port.post.mk> diff --git a/x11/mgapdesk/Makefile b/x11/mgapdesk/Makefile index 8ae59194108c..f6f273de329f 100644 --- a/x11/mgapdesk/Makefile +++ b/x11/mgapdesk/Makefile @@ -29,6 +29,10 @@ WRKSRC= ${WRKDIR}/${PORTNAME} CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -lio" .endif +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + post-extract: @${RM} -f ${WRKSRC}/config.cache @${CHMOD} 750 ${WRKSRC}/missing |