diff options
author | kris <kris@FreeBSD.org> | 2005-03-27 10:08:50 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-03-27 10:08:50 +0800 |
commit | e3b951c417e65b8e33c05bb1fda98872e0f9aca5 (patch) | |
tree | d1e1e41010e0dec575cb1012a60e3b4243c90276 /math/ses | |
parent | f41b26c099af386221681698ce4c331ab7fe223a (diff) | |
download | freebsd-ports-gnome-e3b951c417e65b8e33c05bb1fda98872e0f9aca5.tar.gz freebsd-ports-gnome-e3b951c417e65b8e33c05bb1fda98872e0f9aca5.tar.zst freebsd-ports-gnome-e3b951c417e65b8e33c05bb1fda98872e0f9aca5.zip |
BROKEN on ia64: Does not build
Approved by: portmgr (self)
Diffstat (limited to 'math/ses')
-rw-r--r-- | math/ses/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/ses/Makefile b/math/ses/Makefile index e6f99e4ec08b..6d69abc3fa67 100644 --- a/math/ses/Makefile +++ b/math/ses/Makefile @@ -29,6 +29,12 @@ PLIST_FILES= ${ELISP_FILES:S/^/${ELISP_DIR}\//} \ ${DOC_FILES:S/^/${DOC_DIR}\//} PLIST_DIRS= ${ELISP_DIR} ${DOC_DIR} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" +BROKEN= "Does not build on ia64" +.endif + do-build: .for __f in ${ELISP_FILES} cd ${WRKSRC} && echo '(setq load-path (cons "." load-path)) \ @@ -47,4 +53,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${__f} ${PREFIX}/${DOC_DIR} .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> |