diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-30 09:49:45 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-30 09:49:45 +0000 |
commit | b571d0eab5f1bd2eec1266faf4e7a28ff462c946 (patch) | |
tree | 67d00112c335f90ca0e90ff72827294878df18f0 | |
parent | 9eab953e6064989849d337cf5fd9661b6f9c8c0c (diff) | |
download | ports-b571d0eab5f1bd2eec1266faf4e7a28ff462c946.tar.gz ports-b571d0eab5f1bd2eec1266faf4e7a28ff462c946.zip |
Notes
-rw-r--r-- | lang/scheme48/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lang/scheme48/Makefile b/lang/scheme48/Makefile index e2e2987dee49..26869d9c28b9 100644 --- a/lang/scheme48/Makefile +++ b/lang/scheme48/Makefile @@ -14,8 +14,12 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= The Scheme Underground's implementation of R4RS -.if ${MACHINE_ARCH} != i386 -BROKEN= "fails to install on ${MACHINE_ARCH}" +CONFLICTS= scsh-* + +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= "fails to install on ${ARCH}" .endif GNU_CONFIGURE= yes @@ -23,4 +27,4 @@ ALL_TARGET= enough STRIP= MAN1= scheme48.1 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |