diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2011-08-29 06:45:50 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2011-08-29 06:45:50 +0000 |
commit | fd26afe401980e7e9166a4fe13b13b2f14e2ab89 (patch) | |
tree | ff719a0f94029a1fb8c653413df9310891eab0cf /editors | |
parent | 24e9fd304480e660889c4958d1a03cfabe1bb5c4 (diff) |
- Mark as broken on < 800067. The port needs getline(3).
Notes
Notes:
svn path=/head/; revision=280681
Diffstat (limited to 'editors')
-rw-r--r-- | editors/fxite/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/fxite/Makefile b/editors/fxite/Makefile index 026ed47ff109..d8474c057fbe 100644 --- a/editors/fxite/Makefile +++ b/editors/fxite/Makefile @@ -24,10 +24,16 @@ CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lintl" CONFIGURE_ARGS+=--with-system-lua \ --with-lua-pkg=lua-${LUA_VER} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 800067 +BROKEN= needs getline(3) +.endif + PLIST_FILES= bin/fxite post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |