1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00

BROKEN on sparc64: Does not compile

This commit is contained in:
Kris Kennaway 2004-04-12 04:26:27 +00:00
parent aebc899d79
commit ff18bffd91
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106784
4 changed files with 23 additions and 5 deletions

View File

@ -24,6 +24,12 @@ EXTRACT_CMD= ${MKDIR} ${WRKSRC}; cd ${WRKSRC}; ${GZIP_CMD}
MAKEFILE= mk.stdx
MAKE_ENV= DORE_LOC=${WRKDIR}
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= "Does not compile on sparc64"
.endif
post-extract:
@${MKDIR} ${WRKSRC}/lib
@ -33,4 +39,4 @@ post-patch:
pre-install:
@${MKDIR} ${PREFIX}/share/dore
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View File

@ -44,8 +44,14 @@ INFO= gcl gcl-si gcl-tk
PLIST_SUB= GCL_VER=${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= "Does not compile on sparc64"
.endif
pre-configure:
${RM} -f ${WRKSRC}/configure
${SED} -i '.PRE-SED' -e 's|@@CFLAGS@@|${CFLAGS}|' ${WRKSRC}/h/FreeBSD.defs
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View File

@ -46,8 +46,8 @@ MAKE_ENV= PVM_INCLUDE=${LOCALBASE}/include
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102
BROKEN= "Does not compile on alpha 5.x"
.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102 || ${ARCH} == "sparc64"
BROKEN= "Does not compile on alpha 5.x or sparc64"
.endif
post-patch:

View File

@ -32,6 +32,12 @@ USE_GNOME= gtk12
MAKE_ARGS= GTK1=yes
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= "Build fails on sparc64"
.endif
do-install:
${MKDIR} ${PREFIX}/include/scintilla
${INSTALL_DATA} ${WRKSRC}/../include/*.h ${PREFIX}/include/scintilla
@ -40,4 +46,4 @@ do-install:
${INSTALL_PROGRAM} ${WRKSRC}/../bin/libscintilla_lexers.so.1 ${PREFIX}/lib
${LN} -sf ${PREFIX}/lib/libscintilla_lexers.so.1 ${PREFIX}/lib/libscintilla_lexers.so
.include <bsd.port.mk>
.include <bsd.port.post.mk>