diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-03-27 02:04:16 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-03-27 02:04:16 +0000 |
commit | d9870d9697b173daebf1f8fc0cdf21e878c51a65 (patch) | |
tree | 47b23fb2df162ff134924341bcd7241bbef5d809 | |
parent | 9ccbf5a92263edbf1fc8de72a23c8398c1173acc (diff) | |
download | ports-d9870d9697b173daebf1f8fc0cdf21e878c51a65.tar.gz ports-d9870d9697b173daebf1f8fc0cdf21e878c51a65.zip |
Notes
-rw-r--r-- | net/pypvm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/pypvm/Makefile b/net/pypvm/Makefile index a207121b8ba1..227329a6a5db 100644 --- a/net/pypvm/Makefile +++ b/net/pypvm/Makefile @@ -32,6 +32,12 @@ PORTDOCS= ChangeLog \ README .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "pvm port needs to provide shared libraries" +.endif + post-install: ${MKDIR} ${EXAMPLESDIR} ${INSTALL_SCRIPT} ${EXAMPLEFILES:S|^|${WRKSRC}/|} ${EXAMPLESDIR} @@ -40,4 +46,4 @@ post-install: ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |