diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-08-17 01:31:13 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-08-17 01:31:13 +0000 |
commit | ba5d4a9a5cf2e4e16ec23bbfb37e24cf8a13f952 (patch) | |
tree | ebabb6a934a1b276096a45ac30259ec308a90740 /net | |
parent | 3ed58afe47f55a46b51e2f2d845ba4c22a2a1eb5 (diff) | |
download | ports-ba5d4a9a5cf2e4e16ec23bbfb37e24cf8a13f952.tar.gz ports-ba5d4a9a5cf2e4e16ec23bbfb37e24cf8a13f952.zip |
Mark BROKEN on -current.
tty.c wants a readline_echoing_p symbol that doesn't seem to exist in
readline from ports.
Notes
Notes:
svn path=/head/; revision=365148
Diffstat (limited to 'net')
-rw-r--r-- | net/pmf/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/pmf/Makefile b/net/pmf/Makefile index 108883038576..a9e240645529 100644 --- a/net/pmf/Makefile +++ b/net/pmf/Makefile @@ -20,6 +20,12 @@ SUB_FILES= pmfrc.default OPTIONS_DEFINE= DOCS EXAMPLES +.include <bsd.port.pre.mk> + +.if !exists(/usr/lib/libreadline.so) +BROKEN= Does not build with modern readline from ports +.endif + post-build: @${LN} -sf .pmfrc ${WRKSRC}/examples/dot.pmfrc @@ -34,4 +40,4 @@ do-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |