diff options
author | Philippe Audeoud <jadawin@FreeBSD.org> | 2008-05-30 20:06:29 +0000 |
---|---|---|
committer | Philippe Audeoud <jadawin@FreeBSD.org> | 2008-05-30 20:06:29 +0000 |
commit | 0dcc1af51583d66d68f8710b3e8458a362dfc3c4 (patch) | |
tree | 23287e613ee2c435c1a837c20053699a008b4470 | |
parent | d9c41a97a535dcb2c7346787c572dbf09642fa26 (diff) | |
download | ports-0dcc1af51583d66d68f8710b3e8458a362dfc3c4.tar.gz ports-0dcc1af51583d66d68f8710b3e8458a362dfc3c4.zip |
Notes
-rw-r--r-- | devel/dyncall/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/dyncall/Makefile b/devel/dyncall/Makefile index fa957f42af3c..eaa553a44312 100644 --- a/devel/dyncall/Makefile +++ b/devel/dyncall/Makefile @@ -21,6 +21,12 @@ MAKEFILE= ${WRKSRC}/BSDmakefile # There is no install target in the BSD makefile of version 0.2 of the dyncall library, so # install it manually. +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= Does not install +.endif + do-install: ${CP} ${WRKSRC}/dyncall/dyncall.h ${PREFIX}/include/dyncall.h ${CP} ${WRKSRC}/dyncall/dyncall_callf.h ${PREFIX}/include/dyncall_callf.h @@ -36,4 +42,4 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/doc/${f3} ${MAN3PREFIX}/man/man3 .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> |