diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 18:03:39 +0800 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-25 18:03:39 +0800 |
commit | 52e00c1aaaa44821cec2c31131401a295e53f28b (patch) | |
tree | bc5318b67d43abc995a9b371bd2a31fe68612751 /lang | |
parent | 071c5db2529c689a2d9423a9f3e3bacc2e8cd43e (diff) | |
download | freebsd-ports-gnome-52e00c1aaaa44821cec2c31131401a295e53f28b.tar.gz freebsd-ports-gnome-52e00c1aaaa44821cec2c31131401a295e53f28b.tar.zst freebsd-ports-gnome-52e00c1aaaa44821cec2c31131401a295e53f28b.zip |
BROKEN on !i386 and !sparc64: Does not compile
Diffstat (limited to 'lang')
-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> |