diff options
Diffstat (limited to 'lang/squeak3/Makefile')
-rw-r--r-- | lang/squeak3/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/squeak3/Makefile b/lang/squeak3/Makefile index b3f23d8bb70a..692132aa1240 100644 --- a/lang/squeak3/Makefile +++ b/lang/squeak3/Makefile @@ -66,6 +66,12 @@ MAKE_ARGS+= CC=${CC} MAKE_ARGS+= CCFLAGS="${CFLAGS}" .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "sparc64" +BROKEN= "Does not compile on !i386 and !sparc64" +.endif + pre-configure: @${MKDIR} ${BUILD_WRKSRC} @cd ${WRKSRC}/platforms/unix/npsqueak && ${REINPLACE_CMD} -e 's|include|include -I${X11BASE}/include|g' Makefile @@ -94,4 +100,4 @@ post-install: ${STRIP_CMD} ${PREFIX}/share/squeak/${SQUEAK_VERSION}/squeak ${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |