diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-23 21:03:37 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-23 21:03:37 +0000 |
commit | 231fb9f78b6c21637609017a674a08b391b9801c (patch) | |
tree | 159efdf8880c49cf098940afa4dea7b344d6c6b5 /net/tn3270/Makefile | |
parent | 1d859308de32f712aaa6f8a1c9626fd8dc0f354b (diff) |
Mark as broken on recent 5.x due to install problems (Makefile-related?)
Informed maintainer.
Notes
Notes:
svn path=/head/; revision=96493
Diffstat (limited to 'net/tn3270/Makefile')
-rw-r--r-- | net/tn3270/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/tn3270/Makefile b/net/tn3270/Makefile index 42ed3b6bb1f8..74baea13412e 100644 --- a/net/tn3270/Makefile +++ b/net/tn3270/Makefile @@ -22,6 +22,12 @@ MANCOMPRESSED= maybe LIBTELNETDIR?= /usr/src/lib/libtelnet +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + post-extract: @if [ ! -d ${LIBTELNETDIR} ]; then \ ${ECHO} "You need libtelnet sources in"; \ @@ -39,4 +45,4 @@ do-build: ${MAKE} depend; \ ${MAKE} all -.include <bsd.port.mk> +.include <bsd.port.post.mk> |